From 5cf30dc2edb64c8e07fb74a628b02bd27c85905a Mon Sep 17 00:00:00 2001 From: mrdgo Date: Thu, 21 Nov 2024 16:22:53 +0100 Subject: [PATCH 1/3] chore: migrate to new tree-sitter.json --- package.json | 12 +----------- tree-sitter.json | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 11 deletions(-) create mode 100644 tree-sitter.json diff --git a/package.json b/package.json index 5c6f536..d6a2654 100644 --- a/package.json +++ b/package.json @@ -29,16 +29,6 @@ "tree-sitter-cli": "^0.22.5", "prebuildify": "^6.0.0" }, - "tree-sitter": [ - { - "scope": "source.nu", - "file-types": [ - "nu" - ], - "highlights": "queries/nu/highlights.scm", - "injections": "queries/nu/injections.scm" - } - ], "files": [ "grammar.js", "binding.gyp", @@ -47,4 +37,4 @@ "queries/*", "src/**" ] -} +} \ No newline at end of file diff --git a/tree-sitter.json b/tree-sitter.json new file mode 100644 index 0000000..9df0dd6 --- /dev/null +++ b/tree-sitter.json @@ -0,0 +1,36 @@ +{ + "grammars": [ + { + "name": "nu", + "camelcase": "Nu", + "scope": "source.nu", + "path": ".", + "file-types": [ + "nu" + ], + "highlights": "queries/nu/highlights.scm", + "injections": "queries/nu/injections.scm" + } + ], + "metadata": { + "version": "0.0.1", + "license": "MIT", + "description": "nu-lang", + "authors": [ + { + "name": "The Nushell Contributors" + } + ], + "links": { + "repository": "https://github.com/tree-sitter/tree-sitter-nu" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} \ No newline at end of file From 54936b0647e3154aa0cbad53d6b6e93041ee1c25 Mon Sep 17 00:00:00 2001 From: zc he Date: Fri, 22 Nov 2024 20:44:39 +0800 Subject: [PATCH 2/3] Precedence tuning (#153) This PR 1. fixes several corner cases, such as: ```nushell # empty list [,,,] # record with leading comment # previously parsed as closure { # foo echo : 1 } ``` 2. generalizes `general_body_rule` to cover more rules within the same pattern 3. makes anonymous tokens more friendly for topiary to format --- grammar.js | 185 +- src/grammar.json | 2614 +- src/node-types.json | 4 +- src/parser.c | 547021 +++++++++++++++++----------------- test/corpus/ctrl/match.nu | 23 + test/corpus/expr/list.nu | 17 + test/corpus/expr/record.nu | 2 + 7 files changed, 276555 insertions(+), 273311 deletions(-) diff --git a/grammar.js b/grammar.js index 66e19dc..9297354 100644 --- a/grammar.js +++ b/grammar.js @@ -24,21 +24,22 @@ module.exports = grammar({ conflicts: ($) => [ [$._binary_predicate_parenthesized], + [$._block_body, $.record_body, $.val_closure], + [$._block_body, $.shebang], + [$._block_body, $.val_closure], [$._expression_parenthesized, $._expr_binary_expression_parenthesized], [$._match_pattern_list, $.val_list], [$._match_pattern_record, $.val_record], [$._match_pattern_record_variable, $._value], [$._match_pattern_value, $._value], [$._parenthesized_body], - [$._block_body, $.record_body], - [$._block_body, $.shebang], [$._val_number_decimal], [$.block, $.val_closure], [$.block, $.val_record], [$.ctrl_if_parenthesized], - [$.ctrl_match], [$.ctrl_try_parenthesized], [$.expr_binary_parenthesized], + [$.list_body, $.val_table], [$.parameter, $.param_type, $.param_value], [$.pipeline], [$.pipeline_parenthesized], @@ -53,22 +54,16 @@ module.exports = grammar({ ...block_body_rules(), - // Because everything inside of the parentheses are treated as if they were written together, - // terminator must be semicolon. ...parenthesized_body_rules(), _block_body: ($) => - choice( - seq( - repeat($._terminator), - prec.right( - repeat(seq($._block_body_statement, repeat1($._terminator))), - ), - $._block_body_statement, - repeat($._terminator), - ), - // empty blocks - repeat1($._terminator), + general_body_rules( + "", + $._block_body_statement, + $._terminator, + null, + null, + $._terminator, ), /// Identifiers @@ -188,7 +183,9 @@ module.exports = grammar({ _multiple_types: ($) => seq( BRACK().open_brack, - optional(general_body_rules("", "_one_type", "_entry_separator")($)), + optional( + general_body_rules("", $._one_type, $._entry_separator, $._newline), + ), BRACK().close_brack, ), @@ -441,9 +438,15 @@ module.exports = grammar({ "scrutinee", choice($._item_expression, alias($.unquoted, $.val_string)), ), - open_brace(), - optional(general_body_rules("", "match_arm", "_entry_separator")($)), - optional($.default_arm), + BRACK().open_brace, + optional( + general_body_rules( + "", + choice($.match_arm, $.default_arm), + $._entry_separator, + $._newline, + ), + ), BRACK().close_brace, ), @@ -459,7 +462,6 @@ module.exports = grammar({ field("default_pattern", PUNC().underscore), PUNC().fat_arrow, field("expression", $._match_expression), - repeat($._entry_separator), ), _match_expression: ($) => @@ -531,7 +533,7 @@ module.exports = grammar({ _match_pattern_record: ($) => seq( - open_brace(), + BRACK().open_brace, repeat( field( "entry", @@ -679,7 +681,12 @@ module.exports = grammar({ seq( BRACK().open_brack, optional( - general_body_rules("cmd", "_command_name", "_entry_separator")($), + general_body_rules( + "cmd", + $._command_name, + $._entry_separator, + $._newline, + ), ), BRACK().close_brack, ), @@ -687,7 +694,7 @@ module.exports = grammar({ /// Block block: ($) => - seq(open_brace(), optional($._block_body), BRACK().close_brace), + seq(BRACK().open_brace, optional($._block_body), BRACK().close_brace), _blosure: ($) => choice(prec.dynamic(10, $.block), $.val_closure), @@ -828,22 +835,16 @@ module.exports = grammar({ ), _parenthesized_body: ($) => - choice( - seq( - repeat($._terminator), - repeat( - seq( - $._block_body_statement_parenthesized, - // at least one ; - repeat1(seq(repeat($._newline), PUNC().semicolon)), - ), - ), + general_body_rules( + "", + $._block_body_statement_parenthesized, + $._terminator, + null, + [ + repeat1(seq(repeat($._newline), PUNC().semicolon)), repeat($._newline), - $._block_body_statement_parenthesized, - repeat($._terminator), - ), - // empty body - repeat1($._terminator), + ], + $._terminator, ), val_range: _range_rule(false), @@ -1091,7 +1092,15 @@ module.exports = grammar({ alias($._spread_parenthesized, $.expr_parenthesized), ), - list_body: general_body_rules("entry", "val_entry", "_entry_separator"), + list_body: ($) => + general_body_rules( + "entry", + $.val_entry, + $._entry_separator, + $._newline, + null, + choice($._newline, PUNC().comma), + ), val_entry: ($) => prec( @@ -1112,7 +1121,7 @@ module.exports = grammar({ val_record: ($) => seq( - open_brace(), + BRACK().open_brace, optional($.record_body), BRACK().close_brace, optional($.cell_path), @@ -1133,11 +1142,13 @@ module.exports = grammar({ alias($._spread_parenthesized, $.expr_parenthesized), ), - record_body: general_body_rules( - "entry", - "record_entry", - "_entry_separator", - ), + record_body: ($) => + general_body_rules( + "entry", + $.record_entry, + $._entry_separator, + $._newline, + ), _entry_separator: (_$) => token(prec(PREC().higher, choice(PUNC().comma, /\s/))), @@ -1194,15 +1205,19 @@ module.exports = grammar({ seq( BRACK().open_brack, repeat($._newline), - field("head", seq($.val_list, $._table_head_separator)), - optional(general_body_rules("row", "val_list", "_entry_separator")($)), + field("head", $.val_list), + alias($._table_head_separator, PUNC().semicolon), + optional( + general_body_rules("row", $.val_list, $._entry_separator, $._newline), + ), BRACK().close_brack, optional($.cell_path), ), val_closure: ($) => seq( - open_brace(), + BRACK().open_brace, + repeat($._newline), optional(field("parameters", $.parameter_pipes)), $._block_body, BRACK().close_brace, @@ -1338,40 +1353,47 @@ function _identifier_rules(immediate) { } /** + * for rules of repeated pattern that require separator in-between + * e.g. list, record, blocks * @param {string} field_name - * @param {string} entry - * @param {string} separator + * @param {any} entry base build block + * @param {any} separator separator between entries + * @param {any} preceding separator before first entry, defaults to separator + * @param {array} alt_sep array of rules to override default separator + * @param {any} empty_unit optional for empty body */ -function general_body_rules(field_name, entry, separator) { - return (/** @type {{ [x: string]: RuleOrLiteral; }} */ $) => { - const field_entry = - field_name.length == 0 ? $[entry] : field(field_name, $[entry]); - return prec( - PREC().higher, - seq( - repeat($._newline), - // Normal entries MUST have a separator - repeat(seq(field_entry, repeat1($[separator]))), - // Final entry may or may not have separator - seq(field_entry, repeat($[separator])), - ), - ); - }; +function general_body_rules( + field_name, + entry, + separator, + preceding = null, + alt_sep = null, + empty_unit = null, +) { + const field_entry = field_name.length == 0 ? entry : field(field_name, entry); + const prec_sep = preceding || separator; + // Normal entries MUST have a separator + const sep_array = alt_sep || [repeat1(separator)]; + const rule = prec( + PREC().higher, + seq( + repeat(prec_sep), + repeat(seq(field_entry, ...sep_array)), + field_entry, + // Final entry may or may not have separator + repeat(separator), + ), + ); + return empty_unit ? choice(repeat1(empty_unit), rule) : rule; } -/** - * @param {string} suffix - * @param {{ (_$: any): string; (_$: any): ChoiceRule; (arg0: any): RuleOrLiteral; }} terminator - */ function parenthesized_body_rules() { return { ..._block_body_rules("_parenthesized"), /// pipeline - pipeline_parenthesized: ( - /** @type {{ pipe_element_parenthesized: RuleOrLiteral; pipe_element: string; }} */ $, - ) => + pipeline_parenthesized: ($) => seq( repeat( seq( @@ -1385,17 +1407,13 @@ function parenthesized_body_rules() { }; } -/** - * @param {string} suffix - * @param {{ ($: { _terminator: any; }): any; ($: { _terminator: RuleOrLiteral; }): ChoiceRule; (arg0: any): RuleOrLiteral; }} terminator - */ function block_body_rules() { return { ..._block_body_rules(""), /// pipeline - pipeline: (/** @type {any} */ $) => + pipeline: ($) => seq( repeat(seq($.pipe_element, $._pipe_separator, optional($._newline))), $.pipe_element, @@ -1574,7 +1592,7 @@ function _command_rule(parenthesized) { field("head", seq(optional(PUNC().caret), $.cmd_identifier)), field("head", seq(PUNC().caret, $._stringish)), ), - prec.dynamic(10, repeat(seq(sep, optional($._cmd_arg)))), + repeat(seq(sep, optional($._cmd_arg))), ), ); }; @@ -1825,6 +1843,7 @@ function _range_rule(anonymous, with_end_decimal = false) { } /** + * For expressions like: foo('bar')baz * @param {string} type */ function _unquoted_with_expr_rule(type) { @@ -2052,12 +2071,6 @@ function BRACK() { }; } -// group open_brace and following whitespace/newline together -// so they won't participate in conflicts resolving between record and block -function open_brace() { - return alias(token(seq(BRACK().open_brace, /\s*/)), BRACK().open_brace); -} - /** * group operator and its preceding/succeeding whitespace/newline * @param {string} opr @@ -2065,7 +2078,7 @@ function open_brace() { */ function operator_with_separator(opr, parenthesized) { const sep = parenthesized ? choice(/[ \t]/, /\r?\n/) : /[ \t]/; - return alias(token(seq(repeat1(sep), opr, repeat1(sep))), opr); + return alias(token(seq(sep, opr, sep)), opr); } /** diff --git a/src/grammar.json b/src/grammar.json index 9e841ac..a44761b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -786,19 +786,26 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminator" - } - }, - { - "type": "PREC_RIGHT", - "value": 0, - "content": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_terminator" + } + }, + { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_terminator" + } + }, + { "type": "REPEAT", "content": { "type": "SEQ", @@ -816,26 +823,19 @@ } ] } - } - }, - { - "type": "SYMBOL", - "name": "_block_body_statement" - }, - { - "type": "REPEAT", - "content": { + }, + { "type": "SYMBOL", - "name": "_terminator" + "name": "_block_body_statement" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_terminator" + } } - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_terminator" + ] } } ] @@ -2366,20 +2366,15 @@ } }, { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_one_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] + "type": "SYMBOL", + "name": "_one_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } @@ -3855,24 +3850,7 @@ } }, { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "PATTERN", - "value": "\\s*" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "{" }, { @@ -3897,8 +3875,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "match_arm" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "match_arm" + }, + { + "type": "SYMBOL", + "name": "default_arm" + } + ] }, { "type": "REPEAT1", @@ -3911,20 +3898,24 @@ } }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "match_arm" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } + "type": "SYMBOL", + "name": "default_arm" } ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } @@ -3934,18 +3925,6 @@ } ] }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "default_arm" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": "}" @@ -3999,13 +3978,6 @@ "type": "SYMBOL", "name": "_match_expression" } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } } ] }, @@ -4315,24 +4287,7 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "PATTERN", - "value": "\\s*" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "{" }, { @@ -5109,24 +5064,19 @@ } }, { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "cmd", - "content": { - "type": "SYMBOL", - "name": "_command_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] + "type": "FIELD", + "name": "cmd", + "content": { + "type": "SYMBOL", + "name": "_command_name" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } @@ -5146,24 +5096,7 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "PATTERN", - "value": "\\s*" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "{" }, { @@ -6865,22 +6798,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "**" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -6948,22 +6875,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "++" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7031,22 +6952,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "*" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7114,22 +7029,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "/" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7197,22 +7106,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "mod" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7280,22 +7183,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "//" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7363,22 +7260,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "+" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7446,22 +7337,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "-" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7529,22 +7414,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "bit-shl" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7612,22 +7491,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "bit-shr" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7695,22 +7568,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "=~" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7778,22 +7645,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "!~" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7861,22 +7722,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "bit-and" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -7944,22 +7799,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "bit-xor" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8027,22 +7876,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "bit-or" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8110,22 +7953,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "and" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8193,22 +8030,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "xor" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8276,22 +8107,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "or" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8359,22 +8184,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "in" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8442,22 +8261,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "not-in" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8525,22 +8338,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "starts-with" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8608,22 +8415,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "ends-with" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8691,22 +8492,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "==" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8774,22 +8569,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "!=" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8857,22 +8646,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "<" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -8940,22 +8723,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "<=" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -9023,22 +8800,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": ">" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -9106,22 +8877,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": ">=" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -9189,22 +8954,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "=~" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -9272,22 +9031,16 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" }, { "type": "STRING", "value": "!~" }, { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[ \\t]" - } + "type": "PATTERN", + "value": "[ \\t]" } ] } @@ -9367,40 +9120,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "**" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -9489,40 +9236,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "++" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -9611,40 +9352,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "*" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -9733,40 +9468,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "/" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -9855,40 +9584,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "mod" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -9977,40 +9700,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "//" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10099,40 +9816,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "+" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10221,40 +9932,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "-" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10343,40 +10048,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "bit-shl" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10465,40 +10164,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "bit-shr" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10587,40 +10280,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "=~" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10709,40 +10396,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "!~" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10831,40 +10512,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "bit-and" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -10953,40 +10628,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "bit-xor" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11075,44 +10744,38 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "bit-or" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - } - ] - } - }, + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + ] + } + }, "named": false, "value": "bit-or" } @@ -11197,40 +10860,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "and" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11319,40 +10976,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "xor" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11441,40 +11092,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "or" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11563,40 +11208,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "in" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11685,40 +11324,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "not-in" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11807,40 +11440,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "starts-with" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -11929,40 +11556,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "ends-with" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12051,40 +11672,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "==" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12173,40 +11788,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "!=" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12295,40 +11904,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "<" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12417,40 +12020,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "<=" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12539,40 +12136,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": ">" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12660,41 +12251,35 @@ "content": { "type": "SEQ", "members": [ - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": ">=" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12783,40 +12368,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "=~" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -12905,40 +12484,34 @@ "type": "SEQ", "members": [ { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] }, { "type": "STRING", "value": "!~" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] } ] } @@ -13149,73 +12722,77 @@ "_parenthesized_body": { "type": "CHOICE", "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminator" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_block_body_statement_parenthesized" - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "STRING", - "value": ";" - } - ] - } - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "SYMBOL", - "name": "_block_body_statement_parenthesized" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminator" - } - } - ] - }, { "type": "REPEAT1", "content": { "type": "SYMBOL", "name": "_terminator" } + }, + { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_terminator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_terminator" + } + } + ] + } } ] }, @@ -15665,44 +15242,60 @@ ] }, "list_body": { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "SYMBOL", - "name": "val_entry" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, - { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "PREC", + "value": 20, + "content": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "val_entry" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, { "type": "FIELD", "name": "entry", @@ -15720,8 +15313,8 @@ } ] } - ] - } + } + ] }, "val_entry": { "type": "PREC", @@ -15787,24 +15380,7 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "PATTERN", - "value": "\\s*" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "{" }, { @@ -15943,24 +15519,19 @@ } }, { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "SYMBOL", - "name": "record_entry" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "record_entry" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } @@ -16507,19 +16078,19 @@ "type": "FIELD", "name": "head", "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "val_list" - }, - { - "type": "SYMBOL", - "name": "_table_head_separator" - } - ] + "type": "SYMBOL", + "name": "val_list" } }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_table_head_separator" + }, + "named": false, + "value": ";" + }, { "type": "CHOICE", "members": [ @@ -16560,24 +16131,19 @@ } }, { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "row", - "content": { - "type": "SYMBOL", - "name": "val_list" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] + "type": "FIELD", + "name": "row", + "content": { + "type": "SYMBOL", + "name": "val_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } @@ -16609,26 +16175,16 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "PATTERN", - "value": "\\s*" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "{" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, { "type": "CHOICE", "members": [ @@ -16883,31 +16439,27 @@ ] }, { - "type": "PREC_DYNAMIC", - "value": 10, + "type": "REPEAT", "content": { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_space" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_cmd_arg" - }, - { - "type": "BLANK" - } - ] - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_space" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_cmd_arg" + }, + { + "type": "BLANK" + } + ] + } + ] } } ] @@ -16967,31 +16519,27 @@ ] }, { - "type": "PREC_DYNAMIC", - "value": 10, + "type": "REPEAT", "content": { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_separator" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_cmd_arg" - }, - { - "type": "BLANK" - } - ] - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_separator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_cmd_arg" + }, + { + "type": "BLANK" + } + ] + } + ] } } ] @@ -18262,6 +17810,19 @@ [ "_binary_predicate_parenthesized" ], + [ + "_block_body", + "record_body", + "val_closure" + ], + [ + "_block_body", + "shebang" + ], + [ + "_block_body", + "val_closure" + ], [ "_expression_parenthesized", "_expr_binary_expression_parenthesized" @@ -18285,14 +17846,6 @@ [ "_parenthesized_body" ], - [ - "_block_body", - "record_body" - ], - [ - "_block_body", - "shebang" - ], [ "_val_number_decimal" ], @@ -18307,15 +17860,16 @@ [ "ctrl_if_parenthesized" ], - [ - "ctrl_match" - ], [ "ctrl_try_parenthesized" ], [ "expr_binary_parenthesized" ], + [ + "list_body", + "val_table" + ], [ "parameter", "param_type", diff --git a/src/node-types.json b/src/node-types.json index 7b1d90d..f1c3299 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2524,7 +2524,7 @@ "fields": { "entry": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "val_entry", @@ -4818,7 +4818,7 @@ "named": true, "fields": { "head": { - "multiple": true, + "multiple": false, "required": true, "types": [ { diff --git a/src/parser.c b/src/parser.c index afdb11e..4ba08bc 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7817 -#define LARGE_STATE_COUNT 1474 +#define STATE_COUNT 7727 +#define LARGE_STATE_COUNT 1506 #define SYMBOL_COUNT 526 #define ALIAS_COUNT 4 #define TOKEN_COUNT 320 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 272 +#define PRODUCTION_ID_COUNT 273 enum ts_symbol_identifiers { sym_identifier = 1, @@ -162,7 +162,7 @@ enum ts_symbol_identifiers { anon_sym_if = 136, anon_sym_else = 137, anon_sym_match = 138, - aux_sym_ctrl_match_token1 = 139, + anon_sym_LBRACE = 139, anon_sym_RBRACE = 140, anon_sym_EQ_GT = 141, anon_sym__ = 142, @@ -695,7 +695,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_if] = "if", [anon_sym_else] = "else", [anon_sym_match] = "match", - [aux_sym_ctrl_match_token1] = "{", + [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_EQ_GT] = "=>", [anon_sym__] = "_", @@ -835,7 +835,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_record_entry_token1] = ":", [anon_sym_PLUS] = "+", [aux_sym__record_key_token1] = "_record_key_token1", - [sym__table_head_separator] = "_table_head_separator", + [sym__table_head_separator] = ";", [aux_sym_path_token1] = "path_token1", [aux_sym_env_var_token1] = "identifier", [aux_sym_env_var_token2] = "val_string", @@ -1228,7 +1228,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_if] = anon_sym_if, [anon_sym_else] = anon_sym_else, [anon_sym_match] = anon_sym_match, - [aux_sym_ctrl_match_token1] = aux_sym_ctrl_match_token1, + [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym__] = anon_sym__, @@ -1368,7 +1368,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_record_entry_token1] = anon_sym_COLON, [anon_sym_PLUS] = anon_sym_PLUS, [aux_sym__record_key_token1] = aux_sym__record_key_token1, - [sym__table_head_separator] = sym__table_head_separator, + [sym__table_head_separator] = anon_sym_SEMI, [aux_sym_path_token1] = aux_sym_path_token1, [aux_sym_env_var_token1] = sym_identifier, [aux_sym_env_var_token2] = sym_val_string, @@ -2178,7 +2178,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_ctrl_match_token1] = { + [anon_sym_LBRACE] = { .visible = true, .named = false, }, @@ -2739,8 +2739,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [sym__table_head_separator] = { - .visible = false, - .named = true, + .visible = true, + .named = false, }, [aux_sym_path_token1] = { .visible = false, @@ -3995,173 +3995,174 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [100] = {.index = 190, .length = 5}, [101] = {.index = 195, .length = 1}, [102] = {.index = 195, .length = 1}, - [103] = {.index = 196, .length = 2}, - [105] = {.index = 198, .length = 2}, - [106] = {.index = 200, .length = 1}, - [107] = {.index = 201, .length = 4}, - [108] = {.index = 205, .length = 1}, - [109] = {.index = 206, .length = 1}, - [110] = {.index = 207, .length = 1}, - [111] = {.index = 208, .length = 2}, - [112] = {.index = 210, .length = 1}, - [113] = {.index = 207, .length = 1}, - [114] = {.index = 211, .length = 2}, - [115] = {.index = 213, .length = 1}, - [116] = {.index = 214, .length = 2}, - [117] = {.index = 216, .length = 2}, - [118] = {.index = 218, .length = 1}, - [119] = {.index = 211, .length = 2}, - [120] = {.index = 219, .length = 2}, - [121] = {.index = 219, .length = 2}, - [122] = {.index = 219, .length = 2}, - [123] = {.index = 219, .length = 2}, - [124] = {.index = 221, .length = 2}, - [125] = {.index = 223, .length = 1}, - [126] = {.index = 224, .length = 9}, - [127] = {.index = 233, .length = 2}, - [128] = {.index = 235, .length = 1}, - [129] = {.index = 236, .length = 2}, - [130] = {.index = 238, .length = 1}, - [131] = {.index = 239, .length = 2}, - [132] = {.index = 239, .length = 2}, - [133] = {.index = 239, .length = 2}, - [134] = {.index = 239, .length = 2}, - [135] = {.index = 241, .length = 4}, - [136] = {.index = 245, .length = 5}, - [137] = {.index = 250, .length = 5}, - [138] = {.index = 255, .length = 2}, - [139] = {.index = 257, .length = 1}, - [140] = {.index = 258, .length = 5}, - [141] = {.index = 263, .length = 2}, - [142] = {.index = 263, .length = 2}, - [143] = {.index = 265, .length = 6}, - [144] = {.index = 271, .length = 3}, - [145] = {.index = 274, .length = 3}, - [146] = {.index = 277, .length = 6}, - [147] = {.index = 283, .length = 2}, - [148] = {.index = 283, .length = 2}, - [149] = {.index = 285, .length = 3}, - [150] = {.index = 288, .length = 1}, - [151] = {.index = 289, .length = 2}, - [152] = {.index = 291, .length = 2}, - [153] = {.index = 293, .length = 2}, - [154] = {.index = 295, .length = 2}, - [155] = {.index = 297, .length = 3}, - [156] = {.index = 297, .length = 3}, - [157] = {.index = 300, .length = 3}, - [158] = {.index = 300, .length = 3}, - [159] = {.index = 303, .length = 5}, - [160] = {.index = 308, .length = 3}, - [161] = {.index = 311, .length = 3}, - [162] = {.index = 314, .length = 1}, - [163] = {.index = 315, .length = 1}, - [164] = {.index = 316, .length = 4}, - [165] = {.index = 320, .length = 3}, - [166] = {.index = 320, .length = 3}, - [167] = {.index = 320, .length = 3}, - [168] = {.index = 320, .length = 3}, - [169] = {.index = 320, .length = 3}, - [170] = {.index = 320, .length = 3}, - [171] = {.index = 320, .length = 3}, - [172] = {.index = 320, .length = 3}, - [173] = {.index = 323, .length = 6}, - [174] = {.index = 329, .length = 5}, - [175] = {.index = 334, .length = 1}, - [176] = {.index = 334, .length = 1}, - [177] = {.index = 335, .length = 2}, - [178] = {.index = 337, .length = 1}, - [179] = {.index = 338, .length = 2}, - [180] = {.index = 340, .length = 2}, - [181] = {.index = 342, .length = 3}, - [182] = {.index = 345, .length = 6}, - [183] = {.index = 351, .length = 3}, - [184] = {.index = 354, .length = 4}, - [185] = {.index = 358, .length = 3}, - [187] = {.index = 361, .length = 2}, - [188] = {.index = 363, .length = 2}, - [189] = {.index = 365, .length = 2}, - [190] = {.index = 367, .length = 9}, - [191] = {.index = 376, .length = 9}, - [192] = {.index = 385, .length = 3}, - [193] = {.index = 385, .length = 3}, - [194] = {.index = 388, .length = 5}, - [195] = {.index = 393, .length = 5}, - [196] = {.index = 398, .length = 5}, - [197] = {.index = 403, .length = 1}, - [198] = {.index = 404, .length = 2}, - [199] = {.index = 406, .length = 1}, - [200] = {.index = 407, .length = 2}, - [201] = {.index = 409, .length = 1}, - [202] = {.index = 410, .length = 2}, - [203] = {.index = 412, .length = 2}, - [204] = {.index = 414, .length = 1}, - [205] = {.index = 415, .length = 4}, - [206] = {.index = 419, .length = 4}, - [207] = {.index = 423, .length = 6}, - [208] = {.index = 429, .length = 3}, - [209] = {.index = 432, .length = 6}, - [210] = {.index = 438, .length = 2}, - [211] = {.index = 440, .length = 1}, - [212] = {.index = 441, .length = 2}, - [213] = {.index = 443, .length = 2}, - [214] = {.index = 445, .length = 6}, - [215] = {.index = 451, .length = 4}, - [216] = {.index = 455, .length = 3}, - [217] = {.index = 458, .length = 4}, - [218] = {.index = 462, .length = 3}, - [219] = {.index = 465, .length = 3}, - [220] = {.index = 468, .length = 3}, - [221] = {.index = 471, .length = 3}, - [222] = {.index = 474, .length = 3}, - [223] = {.index = 477, .length = 3}, - [224] = {.index = 480, .length = 2}, - [225] = {.index = 482, .length = 2}, - [226] = {.index = 484, .length = 9}, - [227] = {.index = 493, .length = 5}, - [228] = {.index = 498, .length = 5}, - [229] = {.index = 503, .length = 5}, - [230] = {.index = 508, .length = 5}, - [231] = {.index = 513, .length = 2}, - [232] = {.index = 515, .length = 1}, - [233] = {.index = 516, .length = 4}, - [234] = {.index = 520, .length = 2}, - [235] = {.index = 520, .length = 2}, - [236] = {.index = 522, .length = 3}, - [237] = {.index = 525, .length = 2}, - [238] = {.index = 527, .length = 4}, - [239] = {.index = 531, .length = 3}, - [240] = {.index = 534, .length = 3}, - [241] = {.index = 537, .length = 3}, - [242] = {.index = 540, .length = 3}, - [243] = {.index = 543, .length = 3}, - [244] = {.index = 546, .length = 3}, - [245] = {.index = 549, .length = 3}, - [246] = {.index = 552, .length = 3}, - [247] = {.index = 555, .length = 2}, - [248] = {.index = 557, .length = 2}, - [249] = {.index = 559, .length = 5}, - [250] = {.index = 564, .length = 5}, - [251] = {.index = 569, .length = 5}, - [252] = {.index = 574, .length = 3}, - [253] = {.index = 574, .length = 3}, - [254] = {.index = 577, .length = 3}, - [255] = {.index = 580, .length = 3}, - [256] = {.index = 583, .length = 3}, - [257] = {.index = 586, .length = 3}, - [258] = {.index = 589, .length = 3}, - [259] = {.index = 592, .length = 3}, - [260] = {.index = 595, .length = 3}, - [261] = {.index = 598, .length = 3}, - [262] = {.index = 601, .length = 2}, - [263] = {.index = 603, .length = 5}, - [264] = {.index = 608, .length = 3}, - [265] = {.index = 611, .length = 3}, - [266] = {.index = 614, .length = 3}, - [267] = {.index = 617, .length = 3}, - [268] = {.index = 620, .length = 3}, - [269] = {.index = 623, .length = 3}, - [270] = {.index = 626, .length = 3}, - [271] = {.index = 629, .length = 3}, + [103] = {.index = 196, .length = 1}, + [105] = {.index = 197, .length = 2}, + [106] = {.index = 199, .length = 1}, + [107] = {.index = 200, .length = 4}, + [108] = {.index = 204, .length = 1}, + [109] = {.index = 205, .length = 1}, + [110] = {.index = 206, .length = 1}, + [111] = {.index = 207, .length = 2}, + [112] = {.index = 209, .length = 1}, + [113] = {.index = 206, .length = 1}, + [114] = {.index = 210, .length = 2}, + [115] = {.index = 212, .length = 1}, + [116] = {.index = 213, .length = 2}, + [117] = {.index = 215, .length = 2}, + [118] = {.index = 217, .length = 1}, + [119] = {.index = 210, .length = 2}, + [120] = {.index = 218, .length = 2}, + [121] = {.index = 218, .length = 2}, + [122] = {.index = 218, .length = 2}, + [123] = {.index = 218, .length = 2}, + [124] = {.index = 220, .length = 2}, + [125] = {.index = 222, .length = 1}, + [126] = {.index = 223, .length = 9}, + [127] = {.index = 232, .length = 2}, + [128] = {.index = 234, .length = 1}, + [129] = {.index = 235, .length = 2}, + [130] = {.index = 237, .length = 1}, + [131] = {.index = 238, .length = 2}, + [132] = {.index = 238, .length = 2}, + [133] = {.index = 238, .length = 2}, + [134] = {.index = 238, .length = 2}, + [135] = {.index = 240, .length = 4}, + [136] = {.index = 244, .length = 5}, + [137] = {.index = 249, .length = 5}, + [138] = {.index = 254, .length = 2}, + [139] = {.index = 256, .length = 1}, + [140] = {.index = 257, .length = 5}, + [141] = {.index = 262, .length = 2}, + [142] = {.index = 262, .length = 2}, + [143] = {.index = 264, .length = 6}, + [144] = {.index = 270, .length = 3}, + [145] = {.index = 273, .length = 3}, + [146] = {.index = 276, .length = 6}, + [147] = {.index = 282, .length = 2}, + [148] = {.index = 282, .length = 2}, + [149] = {.index = 284, .length = 2}, + [150] = {.index = 286, .length = 1}, + [151] = {.index = 287, .length = 2}, + [152] = {.index = 289, .length = 1}, + [153] = {.index = 290, .length = 2}, + [154] = {.index = 292, .length = 2}, + [155] = {.index = 294, .length = 3}, + [156] = {.index = 294, .length = 3}, + [157] = {.index = 297, .length = 3}, + [158] = {.index = 297, .length = 3}, + [159] = {.index = 300, .length = 5}, + [160] = {.index = 305, .length = 3}, + [161] = {.index = 308, .length = 3}, + [162] = {.index = 311, .length = 1}, + [163] = {.index = 312, .length = 1}, + [164] = {.index = 313, .length = 1}, + [165] = {.index = 314, .length = 4}, + [166] = {.index = 318, .length = 3}, + [167] = {.index = 318, .length = 3}, + [168] = {.index = 318, .length = 3}, + [169] = {.index = 318, .length = 3}, + [170] = {.index = 318, .length = 3}, + [171] = {.index = 318, .length = 3}, + [172] = {.index = 318, .length = 3}, + [173] = {.index = 318, .length = 3}, + [174] = {.index = 321, .length = 6}, + [175] = {.index = 327, .length = 5}, + [176] = {.index = 332, .length = 1}, + [177] = {.index = 332, .length = 1}, + [178] = {.index = 333, .length = 2}, + [179] = {.index = 335, .length = 1}, + [180] = {.index = 336, .length = 2}, + [181] = {.index = 338, .length = 2}, + [182] = {.index = 340, .length = 3}, + [183] = {.index = 343, .length = 6}, + [184] = {.index = 349, .length = 2}, + [185] = {.index = 351, .length = 3}, + [186] = {.index = 354, .length = 2}, + [188] = {.index = 356, .length = 2}, + [189] = {.index = 358, .length = 2}, + [190] = {.index = 360, .length = 2}, + [191] = {.index = 362, .length = 9}, + [192] = {.index = 371, .length = 9}, + [193] = {.index = 380, .length = 3}, + [194] = {.index = 380, .length = 3}, + [195] = {.index = 383, .length = 5}, + [196] = {.index = 388, .length = 5}, + [197] = {.index = 393, .length = 5}, + [198] = {.index = 398, .length = 1}, + [199] = {.index = 399, .length = 2}, + [200] = {.index = 401, .length = 1}, + [201] = {.index = 402, .length = 2}, + [202] = {.index = 404, .length = 1}, + [203] = {.index = 405, .length = 2}, + [204] = {.index = 407, .length = 2}, + [205] = {.index = 409, .length = 1}, + [206] = {.index = 410, .length = 4}, + [207] = {.index = 414, .length = 4}, + [208] = {.index = 418, .length = 6}, + [209] = {.index = 424, .length = 3}, + [210] = {.index = 427, .length = 6}, + [211] = {.index = 433, .length = 2}, + [212] = {.index = 435, .length = 1}, + [213] = {.index = 436, .length = 2}, + [214] = {.index = 438, .length = 2}, + [215] = {.index = 440, .length = 6}, + [216] = {.index = 446, .length = 3}, + [217] = {.index = 449, .length = 2}, + [218] = {.index = 451, .length = 3}, + [219] = {.index = 454, .length = 3}, + [220] = {.index = 457, .length = 3}, + [221] = {.index = 460, .length = 3}, + [222] = {.index = 463, .length = 3}, + [223] = {.index = 466, .length = 3}, + [224] = {.index = 469, .length = 3}, + [225] = {.index = 472, .length = 2}, + [226] = {.index = 474, .length = 2}, + [227] = {.index = 476, .length = 9}, + [228] = {.index = 485, .length = 5}, + [229] = {.index = 490, .length = 5}, + [230] = {.index = 495, .length = 5}, + [231] = {.index = 500, .length = 5}, + [232] = {.index = 505, .length = 2}, + [233] = {.index = 507, .length = 1}, + [234] = {.index = 508, .length = 4}, + [235] = {.index = 512, .length = 2}, + [236] = {.index = 512, .length = 2}, + [237] = {.index = 514, .length = 3}, + [238] = {.index = 517, .length = 2}, + [239] = {.index = 519, .length = 3}, + [240] = {.index = 522, .length = 3}, + [241] = {.index = 525, .length = 3}, + [242] = {.index = 528, .length = 3}, + [243] = {.index = 531, .length = 3}, + [244] = {.index = 534, .length = 3}, + [245] = {.index = 537, .length = 3}, + [246] = {.index = 540, .length = 3}, + [247] = {.index = 543, .length = 3}, + [248] = {.index = 546, .length = 2}, + [249] = {.index = 548, .length = 2}, + [250] = {.index = 550, .length = 5}, + [251] = {.index = 555, .length = 5}, + [252] = {.index = 560, .length = 5}, + [253] = {.index = 565, .length = 3}, + [254] = {.index = 565, .length = 3}, + [255] = {.index = 568, .length = 3}, + [256] = {.index = 571, .length = 3}, + [257] = {.index = 574, .length = 3}, + [258] = {.index = 577, .length = 3}, + [259] = {.index = 580, .length = 3}, + [260] = {.index = 583, .length = 3}, + [261] = {.index = 586, .length = 3}, + [262] = {.index = 589, .length = 3}, + [263] = {.index = 592, .length = 2}, + [264] = {.index = 594, .length = 5}, + [265] = {.index = 599, .length = 3}, + [266] = {.index = 602, .length = 3}, + [267] = {.index = 605, .length = 3}, + [268] = {.index = 608, .length = 3}, + [269] = {.index = 611, .length = 3}, + [270] = {.index = 614, .length = 3}, + [271] = {.index = 617, .length = 3}, + [272] = {.index = 620, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4451,50 +4452,49 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_raw_path, 1}, [196] = {field_head, 1}, - {field_head, 2}, - [198] = + [197] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [200] = + [199] = {field_try_branch, 2}, - [201] = + [200] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [205] = + [204] = {field_predicate, 2}, - [206] = + [205] = {field_error_record, 3}, - [207] = + [206] = {field_scrutinee, 1}, - [208] = + [207] = {field_item, 0, .inherited = true}, {field_rest, 0, .inherited = true}, - [210] = + [209] = {field_entry, 0, .inherited = true}, - [211] = + [210] = {field_key, 0}, {field_value, 2}, - [213] = + [212] = {field_name, 0}, - [214] = + [213] = {field_param_name, 0}, {field_param_name, 1}, - [216] = + [215] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [218] = + [217] = {field_parameters, 1}, - [219] = + [218] = {field_end, 3}, {field_step, 1}, - [221] = + [220] = {field_catch_branch, 3}, {field_try_branch, 1}, - [223] = + [222] = {field_overlay, 3}, - [224] = + [223] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4504,188 +4504,185 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [233] = + [232] = {field_digit, 0}, {field_digit, 1}, - [235] = + [234] = {field_digit, 2, .inherited = true}, - [236] = + [235] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [238] = + [237] = {field_file_path, 2}, - [239] = + [238] = {field_start, 0}, {field_step, 2}, - [241] = + [240] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [245] = + [244] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [250] = + [249] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [255] = + [254] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [257] = + [256] = {field_type, 2, .inherited = true}, - [258] = + [257] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [263] = + [262] = {field_name, 1}, {field_value, 3}, - [265] = + [264] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [271] = + [270] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [274] = + [273] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [277] = + [276] = {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}, - [283] = + [282] = {field_protected_path, 1}, {field_protected_path, 2}, - [285] = + [284] = {field_head, 1}, - {field_head, 2}, {field_row, 3}, - [288] = + [286] = {field_row, 0}, - [289] = + [287] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [291] = + [289] = {field_head, 2}, - {field_head, 3}, - [293] = + [290] = {field_condition, 1}, {field_then_branch, 3}, - [295] = + [292] = {field_condition, 2}, {field_then_branch, 3}, - [297] = + [294] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [300] = + [297] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [303] = + [300] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [308] = + [305] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [311] = + [308] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [314] = + [311] = {field_name, 2}, - [315] = + [312] = {field_param_value, 1}, - [316] = + [313] = + {field_parameters, 2}, + [314] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [320] = + [318] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [323] = + [321] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [329] = + [327] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [334] = + [332] = {field_key, 0}, - [335] = + [333] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [337] = + [335] = {field_type, 3, .inherited = true}, - [338] = + [336] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [340] = + [338] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [342] = + [340] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [345] = + [343] = {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}, - [351] = + [349] = {field_head, 1}, - {field_head, 2}, {field_row, 4}, - [354] = + [351] = {field_head, 1}, - {field_head, 2}, {field_row, 3, .inherited = true}, {field_row, 4}, - [358] = + [354] = {field_head, 2}, - {field_head, 3}, {field_row, 4}, - [361] = + [356] = {field_condition, 2}, {field_then_branch, 4}, - [363] = + [358] = {field_catch_branch, 4}, {field_try_branch, 1}, - [365] = + [360] = {field_catch_branch, 4}, {field_try_branch, 2}, - [367] = + [362] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4695,7 +4692,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [376] = + [371] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4705,139 +4702,136 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [385] = + [380] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [388] = + [383] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [393] = + [388] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [398] = + [393] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [403] = + [398] = {field_rest, 1}, - [404] = + [399] = {field_item, 0}, {field_item, 1}, - [406] = + [401] = {field_item, 1, .inherited = true}, - [407] = + [402] = {field_item, 0, .inherited = true}, {field_item, 1, .inherited = true}, - [409] = + [404] = {field_entry, 1, .inherited = true}, - [410] = + [405] = {field_default_pattern, 0}, {field_expression, 2}, - [412] = + [407] = {field_expression, 2}, {field_pattern, 0}, - [414] = + [409] = {field_param_value, 2}, - [415] = + [410] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [419] = + [414] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [423] = + [418] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [429] = + [424] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [432] = + [427] = {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}, - [438] = + [433] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [440] = + [435] = {field_completion, 2}, - [441] = + [436] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [443] = + [438] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [445] = + [440] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [451] = + [446] = {field_head, 1}, - {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [455] = + [449] = {field_head, 2}, - {field_head, 3}, {field_row, 5}, - [458] = + [451] = {field_head, 2}, - {field_head, 3}, {field_row, 4, .inherited = true}, {field_row, 5}, - [462] = + [454] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [465] = + [457] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [468] = + [460] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [471] = + [463] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [474] = + [466] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [477] = + [469] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [480] = + [472] = {field_catch_branch, 5}, {field_try_branch, 1}, - [482] = + [474] = {field_catch_branch, 5}, {field_try_branch, 2}, - [484] = + [476] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4847,185 +4841,184 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [493] = + [485] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [498] = + [490] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [503] = + [495] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [508] = + [500] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [513] = + [505] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [515] = + [507] = {field_param_value, 3}, - [516] = + [508] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [520] = + [512] = {field_key, 0}, {field_type, 2, .inherited = true}, - [522] = + [514] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [525] = + [517] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [527] = + [519] = {field_head, 2}, - {field_head, 3}, {field_row, 5, .inherited = true}, {field_row, 6}, - [531] = + [522] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [534] = + [525] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [537] = + [528] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [540] = + [531] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [543] = + [534] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [546] = + [537] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [549] = + [540] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [552] = + [543] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [555] = + [546] = {field_catch_branch, 6}, {field_try_branch, 1}, - [557] = + [548] = {field_catch_branch, 6}, {field_try_branch, 2}, - [559] = + [550] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [564] = + [555] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [569] = + [560] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [574] = + [565] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [577] = + [568] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [580] = + [571] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [583] = + [574] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [586] = + [577] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [589] = + [580] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [592] = + [583] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [595] = + [586] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [598] = + [589] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [601] = + [592] = {field_catch_branch, 7}, {field_try_branch, 2}, - [603] = + [594] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [608] = + [599] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [611] = + [602] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [614] = + [605] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [617] = + [608] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [620] = + [611] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [623] = + [614] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [626] = + [617] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [629] = + [620] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -5123,45 +5116,45 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [158] = { [3] = sym_val_string, }, - [166] = { + [167] = { [4] = sym_val_number, }, - [167] = { + [168] = { [2] = sym_val_number, }, - [168] = { + [169] = { [2] = sym_val_number, [4] = sym_val_number, }, - [169] = { + [170] = { [0] = sym_val_number, }, - [170] = { + [171] = { [0] = sym_val_number, [4] = sym_val_number, }, - [171] = { + [172] = { [0] = sym_val_number, [2] = sym_val_number, }, - [172] = { + [173] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [176] = { + [177] = { [0] = sym_identifier, }, - [186] = { + [187] = { [1] = sym_val_string, }, - [193] = { + [194] = { [4] = sym_val_string, }, - [235] = { + [236] = { [0] = sym_identifier, }, - [253] = { + [254] = { [0] = sym_identifier, }, }; @@ -5201,14 +5194,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 3, - [6] = 4, - [7] = 3, - [8] = 4, - [9] = 3, - [10] = 4, - [11] = 3, + [4] = 3, + [5] = 5, + [6] = 3, + [7] = 5, + [8] = 3, + [9] = 5, + [10] = 3, + [11] = 5, [12] = 3, [13] = 3, [14] = 3, @@ -5224,278 +5217,278 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [24] = 3, [25] = 3, [26] = 26, - [27] = 27, + [27] = 26, [28] = 26, - [29] = 27, - [30] = 27, - [31] = 27, + [29] = 26, + [30] = 26, + [31] = 26, [32] = 26, - [33] = 27, + [33] = 26, [34] = 26, - [35] = 27, - [36] = 27, - [37] = 27, - [38] = 27, - [39] = 27, - [40] = 27, - [41] = 27, - [42] = 27, - [43] = 27, - [44] = 27, - [45] = 27, - [46] = 27, - [47] = 27, - [48] = 27, - [49] = 27, - [50] = 27, - [51] = 27, - [52] = 27, - [53] = 27, - [54] = 54, - [55] = 55, - [56] = 54, - [57] = 55, - [58] = 58, - [59] = 59, - [60] = 54, - [61] = 55, - [62] = 58, - [63] = 58, - [64] = 59, - [65] = 54, - [66] = 55, - [67] = 58, - [68] = 54, - [69] = 55, - [70] = 54, - [71] = 58, - [72] = 54, - [73] = 58, - [74] = 54, - [75] = 58, - [76] = 54, - [77] = 58, - [78] = 54, - [79] = 58, - [80] = 54, - [81] = 58, - [82] = 54, - [83] = 58, - [84] = 58, - [85] = 58, - [86] = 58, - [87] = 58, - [88] = 58, - [89] = 58, - [90] = 58, - [91] = 58, - [92] = 58, - [93] = 58, - [94] = 94, + [35] = 26, + [36] = 26, + [37] = 26, + [38] = 26, + [39] = 26, + [40] = 40, + [41] = 40, + [42] = 40, + [43] = 40, + [44] = 44, + [45] = 45, + [46] = 45, + [47] = 44, + [48] = 45, + [49] = 45, + [50] = 50, + [51] = 50, + [52] = 50, + [53] = 50, + [54] = 50, + [55] = 50, + [56] = 50, + [57] = 50, + [58] = 50, + [59] = 50, + [60] = 50, + [61] = 50, + [62] = 50, + [63] = 50, + [64] = 50, + [65] = 50, + [66] = 50, + [67] = 50, + [68] = 50, + [69] = 50, + [70] = 50, + [71] = 50, + [72] = 50, + [73] = 73, + [74] = 74, + [75] = 73, + [76] = 74, + [77] = 73, + [78] = 78, + [79] = 74, + [80] = 74, + [81] = 73, + [82] = 74, + [83] = 73, + [84] = 74, + [85] = 74, + [86] = 74, + [87] = 74, + [88] = 74, + [89] = 74, + [90] = 74, + [91] = 73, + [92] = 74, + [93] = 74, + [94] = 74, [95] = 95, - [96] = 95, - [97] = 97, - [98] = 98, - [99] = 95, - [100] = 97, - [101] = 101, - [102] = 102, - [103] = 102, - [104] = 102, - [105] = 105, - [106] = 94, - [107] = 105, - [108] = 105, - [109] = 102, - [110] = 105, - [111] = 102, - [112] = 105, - [113] = 102, - [114] = 102, - [115] = 102, - [116] = 102, - [117] = 102, - [118] = 102, - [119] = 102, - [120] = 102, - [121] = 102, - [122] = 102, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 130, - [131] = 130, - [132] = 129, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 149, - [151] = 151, - [152] = 152, + [96] = 96, + [97] = 78, + [98] = 73, + [99] = 73, + [100] = 78, + [101] = 74, + [102] = 95, + [103] = 74, + [104] = 73, + [105] = 73, + [106] = 78, + [107] = 74, + [108] = 73, + [109] = 78, + [110] = 74, + [111] = 74, + [112] = 95, + [113] = 113, + [114] = 73, + [115] = 74, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 116, + [122] = 120, + [123] = 116, + [124] = 117, + [125] = 119, + [126] = 120, + [127] = 116, + [128] = 119, + [129] = 120, + [130] = 116, + [131] = 119, + [132] = 119, + [133] = 116, + [134] = 119, + [135] = 116, + [136] = 119, + [137] = 116, + [138] = 119, + [139] = 116, + [140] = 119, + [141] = 116, + [142] = 119, + [143] = 116, + [144] = 119, + [145] = 119, + [146] = 116, + [147] = 119, + [148] = 116, + [149] = 119, + [150] = 116, + [151] = 96, + [152] = 120, [153] = 153, [154] = 154, [155] = 154, - [156] = 147, + [156] = 156, [157] = 157, - [158] = 148, + [158] = 158, [159] = 159, - [160] = 160, - [161] = 160, + [160] = 153, + [161] = 161, [162] = 162, [163] = 163, [164] = 164, [165] = 165, - [166] = 163, + [166] = 166, [167] = 167, [168] = 168, - [169] = 168, - [170] = 168, - [171] = 167, + [169] = 169, + [170] = 170, + [171] = 171, [172] = 172, [173] = 173, [174] = 174, [175] = 175, - [176] = 174, + [176] = 176, [177] = 177, - [178] = 175, - [179] = 179, + [178] = 178, + [179] = 174, [180] = 180, - [181] = 181, + [181] = 175, [182] = 182, [183] = 183, [184] = 184, [185] = 185, - [186] = 182, - [187] = 187, - [188] = 188, + [186] = 185, + [187] = 178, + [188] = 180, [189] = 189, [190] = 190, [191] = 191, - [192] = 183, - [193] = 193, + [192] = 192, + [193] = 191, [194] = 194, - [195] = 188, - [196] = 185, - [197] = 184, - [198] = 187, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 197, [199] = 199, - [200] = 200, - [201] = 201, + [200] = 197, + [201] = 196, [202] = 202, [203] = 203, [204] = 204, - [205] = 205, - [206] = 206, - [207] = 134, + [205] = 203, + [206] = 202, + [207] = 207, [208] = 208, [209] = 209, [210] = 210, [211] = 211, [212] = 212, - [213] = 194, - [214] = 193, - [215] = 189, + [213] = 213, + [214] = 214, + [215] = 211, [216] = 216, - [217] = 191, - [218] = 199, - [219] = 200, - [220] = 190, - [221] = 203, - [222] = 222, - [223] = 212, - [224] = 134, - [225] = 135, - [226] = 208, - [227] = 136, - [228] = 172, - [229] = 229, - [230] = 216, - [231] = 206, - [232] = 232, - [233] = 210, - [234] = 211, - [235] = 201, - [236] = 204, - [237] = 205, - [238] = 238, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 213, + [223] = 217, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 216, + [228] = 214, + [229] = 212, + [230] = 230, + [231] = 220, + [232] = 221, + [233] = 218, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 161, [239] = 239, - [240] = 209, - [241] = 202, + [240] = 225, + [241] = 224, [242] = 242, - [243] = 137, - [244] = 139, - [245] = 140, - [246] = 141, - [247] = 222, - [248] = 232, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 203, - [255] = 206, - [256] = 256, - [257] = 229, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 219, + [248] = 248, + [249] = 226, + [250] = 194, + [251] = 163, + [252] = 244, + [253] = 230, + [254] = 254, + [255] = 237, + [256] = 239, + [257] = 242, [258] = 258, [259] = 259, - [260] = 260, - [261] = 261, - [262] = 138, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 134, - [268] = 268, - [269] = 269, - [270] = 270, + [260] = 234, + [261] = 248, + [262] = 262, + [263] = 236, + [264] = 245, + [265] = 243, + [266] = 194, + [267] = 195, + [268] = 235, + [269] = 246, + [270] = 161, [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, + [272] = 162, + [273] = 271, + [274] = 262, [275] = 275, [276] = 276, [277] = 277, [278] = 278, [279] = 279, - [280] = 172, + [280] = 280, [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, + [282] = 244, + [283] = 245, + [284] = 259, [285] = 285, - [286] = 286, - [287] = 135, - [288] = 136, + [286] = 167, + [287] = 199, + [288] = 288, [289] = 289, - [290] = 252, - [291] = 222, - [292] = 144, - [293] = 232, - [294] = 206, - [295] = 206, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, [296] = 296, - [297] = 253, - [298] = 203, + [297] = 297, + [298] = 298, [299] = 299, [300] = 300, [301] = 301, @@ -5503,23 +5496,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [303] = 303, [304] = 304, [305] = 305, - [306] = 142, + [306] = 306, [307] = 307, - [308] = 250, - [309] = 309, + [308] = 308, + [309] = 161, [310] = 310, [311] = 311, - [312] = 251, + [312] = 312, [313] = 313, [314] = 314, - [315] = 135, - [316] = 316, - [317] = 136, - [318] = 318, - [319] = 139, - [320] = 320, - [321] = 140, - [322] = 141, + [315] = 162, + [316] = 163, + [317] = 168, + [318] = 166, + [319] = 164, + [320] = 165, + [321] = 321, + [322] = 275, [323] = 323, [324] = 324, [325] = 325, @@ -5527,449 +5520,449 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [327] = 327, [328] = 328, [329] = 329, - [330] = 285, + [330] = 330, [331] = 331, - [332] = 286, + [332] = 332, [333] = 333, - [334] = 203, + [334] = 334, [335] = 335, - [336] = 134, + [336] = 336, [337] = 337, - [338] = 138, - [339] = 137, - [340] = 143, + [338] = 338, + [339] = 339, + [340] = 340, [341] = 341, [342] = 342, [343] = 343, - [344] = 344, - [345] = 345, - [346] = 342, - [347] = 222, - [348] = 252, - [349] = 349, - [350] = 307, - [351] = 325, - [352] = 302, - [353] = 309, - [354] = 145, - [355] = 355, - [356] = 134, - [357] = 326, - [358] = 310, - [359] = 311, - [360] = 139, - [361] = 253, + [344] = 245, + [345] = 276, + [346] = 346, + [347] = 244, + [348] = 348, + [349] = 162, + [350] = 163, + [351] = 168, + [352] = 352, + [353] = 167, + [354] = 166, + [355] = 277, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 321, + [360] = 360, + [361] = 361, [362] = 362, - [363] = 355, + [363] = 161, [364] = 364, - [365] = 365, - [366] = 327, - [367] = 328, - [368] = 329, - [369] = 203, - [370] = 222, - [371] = 303, - [372] = 372, - [373] = 206, - [374] = 313, - [375] = 333, - [376] = 140, - [377] = 345, - [378] = 335, - [379] = 318, - [380] = 304, - [381] = 135, - [382] = 250, - [383] = 383, + [365] = 164, + [366] = 165, + [367] = 259, + [368] = 244, + [369] = 169, + [370] = 293, + [371] = 262, + [372] = 245, + [373] = 296, + [374] = 170, + [375] = 171, + [376] = 376, + [377] = 171, + [378] = 378, + [379] = 275, + [380] = 244, + [381] = 381, + [382] = 352, + [383] = 321, [384] = 384, [385] = 385, - [386] = 141, - [387] = 305, - [388] = 143, - [389] = 232, - [390] = 337, - [391] = 391, - [392] = 138, - [393] = 232, - [394] = 144, - [395] = 142, - [396] = 137, - [397] = 323, - [398] = 398, - [399] = 399, - [400] = 343, - [401] = 344, - [402] = 251, - [403] = 314, + [386] = 386, + [387] = 387, + [388] = 357, + [389] = 362, + [390] = 364, + [391] = 259, + [392] = 392, + [393] = 276, + [394] = 277, + [395] = 262, + [396] = 396, + [397] = 397, + [398] = 172, + [399] = 168, + [400] = 400, + [401] = 167, + [402] = 245, + [403] = 166, [404] = 404, [405] = 405, - [406] = 399, - [407] = 407, - [408] = 299, - [409] = 409, - [410] = 300, - [411] = 301, - [412] = 136, - [413] = 413, - [414] = 383, - [415] = 384, - [416] = 385, - [417] = 391, + [406] = 346, + [407] = 323, + [408] = 164, + [409] = 165, + [410] = 324, + [411] = 411, + [412] = 325, + [413] = 411, + [414] = 262, + [415] = 404, + [416] = 161, + [417] = 356, [418] = 418, - [419] = 419, - [420] = 404, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 398, - [425] = 407, - [426] = 409, - [427] = 364, - [428] = 405, - [429] = 429, - [430] = 145, - [431] = 143, - [432] = 144, - [433] = 142, - [434] = 135, - [435] = 136, - [436] = 436, - [437] = 365, - [438] = 438, - [439] = 439, - [440] = 138, - [441] = 137, - [442] = 139, - [443] = 140, - [444] = 141, - [445] = 445, - [446] = 446, + [419] = 326, + [420] = 420, + [421] = 327, + [422] = 328, + [423] = 329, + [424] = 330, + [425] = 162, + [426] = 163, + [427] = 331, + [428] = 169, + [429] = 332, + [430] = 333, + [431] = 334, + [432] = 335, + [433] = 170, + [434] = 336, + [435] = 337, + [436] = 338, + [437] = 339, + [438] = 340, + [439] = 341, + [440] = 342, + [441] = 343, + [442] = 259, + [443] = 277, + [444] = 444, + [445] = 418, + [446] = 420, [447] = 447, - [448] = 222, - [449] = 232, - [450] = 250, - [451] = 251, - [452] = 252, - [453] = 253, + [448] = 396, + [449] = 397, + [450] = 450, + [451] = 451, + [452] = 400, + [453] = 453, [454] = 454, - [455] = 455, - [456] = 456, - [457] = 250, - [458] = 251, - [459] = 252, - [460] = 253, - [461] = 203, - [462] = 206, - [463] = 362, + [455] = 172, + [456] = 169, + [457] = 170, + [458] = 171, + [459] = 162, + [460] = 163, + [461] = 461, + [462] = 462, + [463] = 463, [464] = 464, - [465] = 138, - [466] = 466, - [467] = 145, - [468] = 468, - [469] = 469, + [465] = 164, + [466] = 165, + [467] = 168, + [468] = 167, + [469] = 166, [470] = 470, - [471] = 471, - [472] = 436, - [473] = 137, - [474] = 418, - [475] = 139, - [476] = 140, - [477] = 141, - [478] = 464, - [479] = 438, - [480] = 439, - [481] = 481, - [482] = 143, - [483] = 483, - [484] = 144, - [485] = 485, - [486] = 486, - [487] = 445, - [488] = 419, - [489] = 421, - [490] = 250, - [491] = 422, - [492] = 251, - [493] = 252, - [494] = 253, + [471] = 259, + [472] = 262, + [473] = 275, + [474] = 321, + [475] = 381, + [476] = 387, + [477] = 275, + [478] = 321, + [479] = 276, + [480] = 277, + [481] = 244, + [482] = 245, + [483] = 384, + [484] = 385, + [485] = 386, + [486] = 392, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 405, + [494] = 276, [495] = 495, - [496] = 203, - [497] = 423, - [498] = 498, - [499] = 499, - [500] = 222, - [501] = 232, - [502] = 206, + [496] = 321, + [497] = 166, + [498] = 276, + [499] = 277, + [500] = 462, + [501] = 501, + [502] = 463, [503] = 503, [504] = 504, - [505] = 413, - [506] = 429, - [507] = 446, - [508] = 447, - [509] = 454, - [510] = 455, + [505] = 244, + [506] = 464, + [507] = 490, + [508] = 508, + [509] = 509, + [510] = 444, [511] = 511, - [512] = 142, - [513] = 511, + [512] = 512, + [513] = 513, [514] = 514, - [515] = 515, + [515] = 450, [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, + [517] = 451, + [518] = 453, + [519] = 454, [520] = 520, [521] = 521, [522] = 522, [523] = 523, [524] = 524, [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, + [526] = 259, + [527] = 169, + [528] = 262, + [529] = 245, [530] = 530, [531] = 531, [532] = 532, [533] = 533, [534] = 534, [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 364, - [547] = 405, - [548] = 145, + [536] = 487, + [537] = 164, + [538] = 170, + [539] = 171, + [540] = 488, + [541] = 489, + [542] = 491, + [543] = 492, + [544] = 165, + [545] = 470, + [546] = 172, + [547] = 547, + [548] = 168, [549] = 549, - [550] = 143, - [551] = 324, - [552] = 144, - [553] = 553, - [554] = 466, + [550] = 550, + [551] = 461, + [552] = 275, + [553] = 167, + [554] = 554, [555] = 555, [556] = 556, [557] = 557, [558] = 558, - [559] = 139, - [560] = 140, - [561] = 561, - [562] = 141, + [559] = 559, + [560] = 560, + [561] = 396, + [562] = 397, [563] = 563, [564] = 564, - [565] = 565, + [565] = 259, [566] = 566, [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, + [568] = 533, + [569] = 262, + [570] = 547, [571] = 571, [572] = 572, [573] = 573, [574] = 574, [575] = 575, - [576] = 576, - [577] = 222, - [578] = 578, - [579] = 232, - [580] = 250, - [581] = 251, - [582] = 252, - [583] = 253, - [584] = 584, + [576] = 530, + [577] = 577, + [578] = 169, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 170, + [584] = 171, [585] = 585, - [586] = 586, - [587] = 468, - [588] = 483, - [589] = 589, - [590] = 142, - [591] = 569, - [592] = 521, + [586] = 275, + [587] = 587, + [588] = 588, + [589] = 321, + [590] = 276, + [591] = 277, + [592] = 592, [593] = 593, - [594] = 553, - [595] = 364, - [596] = 405, - [597] = 573, - [598] = 372, - [599] = 522, - [600] = 523, - [601] = 576, - [602] = 524, - [603] = 503, - [604] = 578, - [605] = 525, - [606] = 526, - [607] = 527, - [608] = 145, + [594] = 195, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, [609] = 609, - [610] = 574, - [611] = 528, - [612] = 529, - [613] = 530, - [614] = 139, - [615] = 531, - [616] = 532, - [617] = 140, - [618] = 556, - [619] = 141, - [620] = 533, - [621] = 250, - [622] = 561, - [623] = 564, - [624] = 534, - [625] = 251, - [626] = 535, - [627] = 571, - [628] = 252, - [629] = 568, - [630] = 549, - [631] = 555, - [632] = 536, - [633] = 537, - [634] = 584, - [635] = 586, - [636] = 572, - [637] = 538, - [638] = 558, - [639] = 575, - [640] = 539, - [641] = 570, - [642] = 540, - [643] = 563, - [644] = 516, - [645] = 589, - [646] = 557, - [647] = 541, - [648] = 542, - [649] = 498, - [650] = 519, - [651] = 567, - [652] = 543, - [653] = 514, - [654] = 544, - [655] = 545, - [656] = 515, - [657] = 499, - [658] = 565, - [659] = 517, - [660] = 518, - [661] = 471, - [662] = 520, - [663] = 253, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 664, - [675] = 675, - [676] = 669, - [677] = 670, - [678] = 671, - [679] = 675, - [680] = 665, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 324, - [685] = 685, - [686] = 686, - [687] = 372, - [688] = 688, - [689] = 689, - [690] = 324, - [691] = 691, - [692] = 691, - [693] = 372, - [694] = 691, - [695] = 695, - [696] = 696, - [697] = 691, - [698] = 695, - [699] = 691, - [700] = 691, - [701] = 691, - [702] = 691, - [703] = 691, - [704] = 691, - [705] = 691, - [706] = 691, - [707] = 691, - [708] = 691, - [709] = 696, - [710] = 691, - [711] = 691, - [712] = 691, - [713] = 691, - [714] = 691, - [715] = 691, - [716] = 691, - [717] = 695, + [610] = 168, + [611] = 167, + [612] = 166, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 503, + [622] = 172, + [623] = 623, + [624] = 525, + [625] = 549, + [626] = 550, + [627] = 522, + [628] = 617, + [629] = 199, + [630] = 595, + [631] = 596, + [632] = 597, + [633] = 598, + [634] = 599, + [635] = 600, + [636] = 601, + [637] = 602, + [638] = 603, + [639] = 604, + [640] = 605, + [641] = 606, + [642] = 607, + [643] = 608, + [644] = 609, + [645] = 618, + [646] = 172, + [647] = 495, + [648] = 616, + [649] = 275, + [650] = 168, + [651] = 167, + [652] = 396, + [653] = 166, + [654] = 397, + [655] = 321, + [656] = 656, + [657] = 531, + [658] = 567, + [659] = 532, + [660] = 588, + [661] = 524, + [662] = 556, + [663] = 521, + [664] = 276, + [665] = 277, + [666] = 523, + [667] = 501, + [668] = 508, + [669] = 511, + [670] = 512, + [671] = 514, + [672] = 614, + [673] = 592, + [674] = 534, + [675] = 593, + [676] = 535, + [677] = 613, + [678] = 615, + [679] = 619, + [680] = 559, + [681] = 560, + [682] = 563, + [683] = 564, + [684] = 557, + [685] = 566, + [686] = 572, + [687] = 573, + [688] = 574, + [689] = 575, + [690] = 577, + [691] = 579, + [692] = 580, + [693] = 581, + [694] = 582, + [695] = 585, + [696] = 587, + [697] = 571, + [698] = 698, + [699] = 698, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 702, + [711] = 708, + [712] = 701, + [713] = 706, + [714] = 700, + [715] = 715, + [716] = 716, + [717] = 717, [718] = 718, - [719] = 718, - [720] = 718, + [719] = 195, + [720] = 720, [721] = 721, - [722] = 718, - [723] = 718, - [724] = 718, - [725] = 718, - [726] = 718, - [727] = 718, - [728] = 718, - [729] = 718, - [730] = 718, - [731] = 718, - [732] = 718, - [733] = 718, - [734] = 718, - [735] = 718, - [736] = 718, - [737] = 718, - [738] = 718, - [739] = 718, - [740] = 718, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, + [722] = 199, + [723] = 723, + [724] = 724, + [725] = 724, + [726] = 724, + [727] = 727, + [728] = 724, + [729] = 724, + [730] = 724, + [731] = 724, + [732] = 727, + [733] = 724, + [734] = 724, + [735] = 724, + [736] = 724, + [737] = 724, + [738] = 724, + [739] = 727, + [740] = 724, + [741] = 724, + [742] = 724, + [743] = 724, + [744] = 724, + [745] = 724, [746] = 746, - [747] = 747, - [748] = 748, - [749] = 744, - [750] = 750, + [747] = 746, + [748] = 724, + [749] = 195, + [750] = 199, [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, + [752] = 751, + [753] = 751, + [754] = 751, [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, + [756] = 751, + [757] = 751, + [758] = 751, + [759] = 751, + [760] = 751, + [761] = 751, + [762] = 751, + [763] = 751, + [764] = 751, + [765] = 751, + [766] = 751, + [767] = 751, + [768] = 751, + [769] = 751, + [770] = 751, + [771] = 751, + [772] = 751, [773] = 773, [774] = 774, [775] = 775, @@ -5978,7 +5971,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [778] = 778, [779] = 779, [780] = 780, - [781] = 756, + [781] = 781, [782] = 782, [783] = 783, [784] = 784, @@ -5992,1238 +5985,1238 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [792] = 792, [793] = 793, [794] = 794, - [795] = 795, - [796] = 789, - [797] = 782, - [798] = 771, - [799] = 790, + [795] = 792, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, [800] = 800, [801] = 801, - [802] = 745, - [803] = 746, - [804] = 747, - [805] = 748, - [806] = 772, - [807] = 750, - [808] = 751, - [809] = 752, - [810] = 753, - [811] = 754, - [812] = 755, - [813] = 757, - [814] = 758, - [815] = 759, - [816] = 760, - [817] = 761, - [818] = 762, - [819] = 763, - [820] = 764, - [821] = 765, - [822] = 766, - [823] = 767, - [824] = 768, - [825] = 769, - [826] = 770, - [827] = 771, - [828] = 770, - [829] = 773, - [830] = 774, - [831] = 775, - [832] = 776, - [833] = 777, - [834] = 778, - [835] = 779, - [836] = 780, - [837] = 756, - [838] = 782, - [839] = 783, - [840] = 784, - [841] = 785, - [842] = 786, - [843] = 787, - [844] = 788, - [845] = 789, - [846] = 790, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 785, + [813] = 787, + [814] = 789, + [815] = 790, + [816] = 791, + [817] = 794, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 776, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 788, + [835] = 793, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 777, + [840] = 778, + [841] = 779, + [842] = 780, + [843] = 781, + [844] = 782, + [845] = 783, + [846] = 784, [847] = 791, - [848] = 792, - [849] = 793, - [850] = 794, - [851] = 795, - [852] = 764, - [853] = 791, - [854] = 792, - [855] = 773, - [856] = 759, - [857] = 760, - [858] = 774, - [859] = 765, - [860] = 775, - [861] = 761, - [862] = 762, - [863] = 776, - [864] = 777, - [865] = 763, - [866] = 766, - [867] = 800, - [868] = 801, - [869] = 745, - [870] = 746, - [871] = 747, - [872] = 748, - [873] = 744, - [874] = 793, - [875] = 750, - [876] = 794, - [877] = 795, - [878] = 751, - [879] = 757, - [880] = 758, - [881] = 752, - [882] = 753, - [883] = 754, - [884] = 884, - [885] = 755, - [886] = 767, - [887] = 778, - [888] = 768, - [889] = 783, - [890] = 784, - [891] = 785, - [892] = 786, - [893] = 787, - [894] = 788, - [895] = 769, - [896] = 779, - [897] = 780, - [898] = 800, - [899] = 801, - [900] = 772, - [901] = 901, - [902] = 901, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 904, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 905, - [919] = 906, - [920] = 907, - [921] = 908, - [922] = 909, - [923] = 910, - [924] = 911, - [925] = 910, - [926] = 914, - [927] = 917, - [928] = 905, - [929] = 906, - [930] = 907, - [931] = 915, - [932] = 912, - [933] = 904, - [934] = 914, - [935] = 915, - [936] = 916, - [937] = 917, - [938] = 905, - [939] = 906, - [940] = 907, - [941] = 908, - [942] = 909, - [943] = 910, - [944] = 911, - [945] = 903, - [946] = 912, - [947] = 904, - [948] = 914, - [949] = 915, - [950] = 916, - [951] = 917, - [952] = 905, - [953] = 906, - [954] = 907, - [955] = 908, - [956] = 909, - [957] = 910, - [958] = 911, - [959] = 908, - [960] = 912, - [961] = 912, - [962] = 911, - [963] = 912, - [964] = 916, - [965] = 904, - [966] = 914, - [967] = 915, - [968] = 916, - [969] = 917, - [970] = 905, - [971] = 906, - [972] = 907, - [973] = 908, - [974] = 909, - [975] = 910, - [976] = 911, - [977] = 904, - [978] = 914, - [979] = 915, - [980] = 916, - [981] = 912, - [982] = 904, - [983] = 914, - [984] = 915, - [985] = 916, - [986] = 917, - [987] = 905, - [988] = 906, - [989] = 907, - [990] = 908, - [991] = 909, - [992] = 910, - [993] = 911, - [994] = 917, - [995] = 909, - [996] = 996, - [997] = 997, - [998] = 997, - [999] = 996, - [1000] = 1000, - [1001] = 1000, - [1002] = 1002, - [1003] = 1003, - [1004] = 1003, - [1005] = 1002, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1010, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1014, - [1017] = 1015, - [1018] = 1018, - [1019] = 1013, - [1020] = 1013, - [1021] = 1015, - [1022] = 324, - [1023] = 1023, - [1024] = 1023, - [1025] = 182, - [1026] = 1026, - [1027] = 1026, - [1028] = 134, + [848] = 818, + [849] = 819, + [850] = 820, + [851] = 836, + [852] = 821, + [853] = 837, + [854] = 796, + [855] = 838, + [856] = 777, + [857] = 778, + [858] = 779, + [859] = 780, + [860] = 797, + [861] = 794, + [862] = 798, + [863] = 822, + [864] = 799, + [865] = 800, + [866] = 801, + [867] = 781, + [868] = 802, + [869] = 782, + [870] = 808, + [871] = 823, + [872] = 824, + [873] = 825, + [874] = 783, + [875] = 826, + [876] = 803, + [877] = 804, + [878] = 827, + [879] = 784, + [880] = 828, + [881] = 829, + [882] = 776, + [883] = 831, + [884] = 832, + [885] = 833, + [886] = 805, + [887] = 818, + [888] = 806, + [889] = 809, + [890] = 807, + [891] = 810, + [892] = 819, + [893] = 820, + [894] = 821, + [895] = 792, + [896] = 796, + [897] = 797, + [898] = 798, + [899] = 799, + [900] = 800, + [901] = 801, + [902] = 802, + [903] = 803, + [904] = 804, + [905] = 805, + [906] = 806, + [907] = 807, + [908] = 808, + [909] = 809, + [910] = 810, + [911] = 811, + [912] = 822, + [913] = 785, + [914] = 823, + [915] = 824, + [916] = 825, + [917] = 826, + [918] = 827, + [919] = 787, + [920] = 828, + [921] = 829, + [922] = 789, + [923] = 831, + [924] = 832, + [925] = 833, + [926] = 811, + [927] = 788, + [928] = 793, + [929] = 836, + [930] = 837, + [931] = 838, + [932] = 790, + [933] = 933, + [934] = 934, + [935] = 934, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 938, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 943, + [947] = 947, + [948] = 947, + [949] = 949, + [950] = 937, + [951] = 937, + [952] = 940, + [953] = 936, + [954] = 954, + [955] = 942, + [956] = 943, + [957] = 949, + [958] = 954, + [959] = 944, + [960] = 960, + [961] = 940, + [962] = 939, + [963] = 942, + [964] = 938, + [965] = 944, + [966] = 945, + [967] = 933, + [968] = 936, + [969] = 947, + [970] = 943, + [971] = 947, + [972] = 949, + [973] = 937, + [974] = 954, + [975] = 960, + [976] = 939, + [977] = 938, + [978] = 944, + [979] = 943, + [980] = 940, + [981] = 942, + [982] = 944, + [983] = 945, + [984] = 938, + [985] = 954, + [986] = 960, + [987] = 939, + [988] = 960, + [989] = 943, + [990] = 947, + [991] = 949, + [992] = 947, + [993] = 937, + [994] = 949, + [995] = 937, + [996] = 960, + [997] = 949, + [998] = 945, + [999] = 936, + [1000] = 940, + [1001] = 954, + [1002] = 960, + [1003] = 945, + [1004] = 937, + [1005] = 942, + [1006] = 936, + [1007] = 939, + [1008] = 938, + [1009] = 943, + [1010] = 947, + [1011] = 949, + [1012] = 940, + [1013] = 942, + [1014] = 939, + [1015] = 940, + [1016] = 942, + [1017] = 944, + [1018] = 945, + [1019] = 936, + [1020] = 944, + [1021] = 945, + [1022] = 936, + [1023] = 954, + [1024] = 960, + [1025] = 954, + [1026] = 939, + [1027] = 938, + [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, + [1031] = 1029, + [1032] = 1030, + [1033] = 1028, [1034] = 1034, - [1035] = 182, + [1035] = 1035, [1036] = 1036, [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 372, - [1041] = 184, + [1040] = 1037, + [1041] = 1038, [1042] = 1042, - [1043] = 134, - [1044] = 1039, - [1045] = 187, - [1046] = 1034, - [1047] = 134, - [1048] = 188, - [1049] = 135, - [1050] = 1037, - [1051] = 1051, - [1052] = 183, - [1053] = 136, - [1054] = 185, - [1055] = 1036, - [1056] = 1038, - [1057] = 140, - [1058] = 136, - [1059] = 141, + [1043] = 1043, + [1044] = 1043, + [1045] = 1042, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1048, + [1051] = 1049, + [1052] = 1048, + [1053] = 1049, + [1054] = 161, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, [1060] = 1060, - [1061] = 199, - [1062] = 190, - [1063] = 188, - [1064] = 185, - [1065] = 135, - [1066] = 200, - [1067] = 134, - [1068] = 193, - [1069] = 138, - [1070] = 136, - [1071] = 185, - [1072] = 183, - [1073] = 137, - [1074] = 135, - [1075] = 184, - [1076] = 183, - [1077] = 191, - [1078] = 189, - [1079] = 139, - [1080] = 187, - [1081] = 1081, - [1082] = 189, - [1083] = 193, - [1084] = 191, - [1085] = 139, - [1086] = 140, - [1087] = 141, - [1088] = 138, - [1089] = 137, - [1090] = 199, - [1091] = 216, - [1092] = 202, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 200, - [1097] = 190, - [1098] = 1081, - [1099] = 1094, - [1100] = 203, - [1101] = 1101, - [1102] = 201, - [1103] = 208, - [1104] = 1093, - [1105] = 135, - [1106] = 1093, - [1107] = 204, - [1108] = 205, - [1109] = 1095, - [1110] = 1081, - [1111] = 134, - [1112] = 206, - [1113] = 1094, - [1114] = 183, - [1115] = 185, - [1116] = 143, - [1117] = 1081, - [1118] = 1095, - [1119] = 1093, - [1120] = 1095, - [1121] = 1081, - [1122] = 1094, - [1123] = 1093, - [1124] = 1095, - [1125] = 1081, - [1126] = 1094, - [1127] = 1093, - [1128] = 1095, - [1129] = 1093, - [1130] = 1094, - [1131] = 1093, - [1132] = 1095, - [1133] = 1081, - [1134] = 1094, - [1135] = 1095, - [1136] = 1093, - [1137] = 1095, - [1138] = 1081, - [1139] = 1094, - [1140] = 1060, - [1141] = 1081, - [1142] = 1093, - [1143] = 1095, - [1144] = 1081, - [1145] = 1094, - [1146] = 136, - [1147] = 1093, - [1148] = 1095, - [1149] = 1081, - [1150] = 1094, - [1151] = 144, - [1152] = 142, - [1153] = 1094, - [1154] = 1093, - [1155] = 1095, - [1156] = 1081, - [1157] = 1094, - [1158] = 1093, - [1159] = 1095, - [1160] = 1081, - [1161] = 1094, - [1162] = 1093, - [1163] = 1095, - [1164] = 1081, - [1165] = 1094, - [1166] = 1101, - [1167] = 1093, - [1168] = 193, - [1169] = 191, - [1170] = 139, - [1171] = 140, - [1172] = 141, - [1173] = 138, - [1174] = 137, - [1175] = 1081, - [1176] = 208, - [1177] = 144, - [1178] = 204, - [1179] = 139, - [1180] = 140, - [1181] = 141, - [1182] = 144, - [1183] = 138, - [1184] = 135, - [1185] = 136, - [1186] = 137, - [1187] = 193, - [1188] = 222, - [1189] = 191, - [1190] = 142, - [1191] = 205, - [1192] = 232, - [1193] = 216, - [1194] = 202, - [1195] = 1195, - [1196] = 203, - [1197] = 201, - [1198] = 134, - [1199] = 208, - [1200] = 201, - [1201] = 204, - [1202] = 1202, - [1203] = 205, - [1204] = 145, - [1205] = 143, - [1206] = 143, - [1207] = 206, - [1208] = 142, - [1209] = 222, - [1210] = 141, - [1211] = 206, - [1212] = 137, - [1213] = 135, - [1214] = 252, - [1215] = 203, - [1216] = 285, - [1217] = 185, - [1218] = 253, - [1219] = 1219, - [1220] = 144, - [1221] = 142, - [1222] = 139, - [1223] = 250, - [1224] = 145, - [1225] = 145, - [1226] = 183, - [1227] = 136, - [1228] = 208, - [1229] = 1229, - [1230] = 183, - [1231] = 204, - [1232] = 205, - [1233] = 140, - [1234] = 1234, - [1235] = 138, - [1236] = 185, - [1237] = 1195, - [1238] = 143, - [1239] = 286, - [1240] = 145, - [1241] = 232, - [1242] = 251, - [1243] = 201, - [1244] = 203, - [1245] = 202, - [1246] = 285, - [1247] = 203, - [1248] = 193, - [1249] = 191, - [1250] = 253, - [1251] = 183, - [1252] = 143, - [1253] = 193, - [1254] = 144, - [1255] = 142, - [1256] = 206, - [1257] = 342, - [1258] = 343, - [1259] = 222, - [1260] = 185, - [1261] = 216, - [1262] = 299, - [1263] = 300, - [1264] = 301, - [1265] = 302, - [1266] = 303, + [1061] = 195, + [1062] = 1055, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1057, + [1067] = 1067, + [1068] = 211, + [1069] = 1069, + [1070] = 1070, + [1071] = 1069, + [1072] = 1058, + [1073] = 1059, + [1074] = 1064, + [1075] = 1075, + [1076] = 214, + [1077] = 216, + [1078] = 162, + [1079] = 163, + [1080] = 213, + [1081] = 217, + [1082] = 211, + [1083] = 199, + [1084] = 161, + [1085] = 212, + [1086] = 161, + [1087] = 1075, + [1088] = 1088, + [1089] = 213, + [1090] = 226, + [1091] = 167, + [1092] = 166, + [1093] = 164, + [1094] = 212, + [1095] = 165, + [1096] = 214, + [1097] = 216, + [1098] = 224, + [1099] = 162, + [1100] = 218, + [1101] = 214, + [1102] = 216, + [1103] = 163, + [1104] = 217, + [1105] = 221, + [1106] = 1106, + [1107] = 161, + [1108] = 220, + [1109] = 225, + [1110] = 162, + [1111] = 163, + [1112] = 168, + [1113] = 1113, + [1114] = 246, + [1115] = 1115, + [1116] = 230, + [1117] = 218, + [1118] = 237, + [1119] = 239, + [1120] = 242, + [1121] = 161, + [1122] = 245, + [1123] = 214, + [1124] = 216, + [1125] = 1125, + [1126] = 224, + [1127] = 218, + [1128] = 164, + [1129] = 165, + [1130] = 168, + [1131] = 167, + [1132] = 166, + [1133] = 164, + [1134] = 165, + [1135] = 169, + [1136] = 226, + [1137] = 168, + [1138] = 167, + [1139] = 166, + [1140] = 1140, + [1141] = 1141, + [1142] = 1115, + [1143] = 1113, + [1144] = 1141, + [1145] = 1113, + [1146] = 170, + [1147] = 1125, + [1148] = 1106, + [1149] = 1140, + [1150] = 1141, + [1151] = 171, + [1152] = 1115, + [1153] = 221, + [1154] = 220, + [1155] = 1113, + [1156] = 1140, + [1157] = 1141, + [1158] = 1115, + [1159] = 1113, + [1160] = 1140, + [1161] = 1141, + [1162] = 1115, + [1163] = 1113, + [1164] = 1140, + [1165] = 1141, + [1166] = 1115, + [1167] = 1113, + [1168] = 1140, + [1169] = 1141, + [1170] = 1115, + [1171] = 1113, + [1172] = 1140, + [1173] = 1141, + [1174] = 1115, + [1175] = 1113, + [1176] = 1140, + [1177] = 1141, + [1178] = 1115, + [1179] = 1113, + [1180] = 1140, + [1181] = 1141, + [1182] = 1115, + [1183] = 1113, + [1184] = 1140, + [1185] = 1141, + [1186] = 1115, + [1187] = 1113, + [1188] = 1140, + [1189] = 162, + [1190] = 1140, + [1191] = 1141, + [1192] = 1115, + [1193] = 1113, + [1194] = 1140, + [1195] = 1141, + [1196] = 1115, + [1197] = 1140, + [1198] = 1115, + [1199] = 1141, + [1200] = 225, + [1201] = 1140, + [1202] = 224, + [1203] = 1115, + [1204] = 163, + [1205] = 235, + [1206] = 1113, + [1207] = 244, + [1208] = 235, + [1209] = 218, + [1210] = 242, + [1211] = 230, + [1212] = 169, + [1213] = 237, + [1214] = 239, + [1215] = 237, + [1216] = 242, + [1217] = 172, + [1218] = 170, + [1219] = 169, + [1220] = 171, + [1221] = 239, + [1222] = 259, + [1223] = 245, + [1224] = 170, + [1225] = 171, + [1226] = 168, + [1227] = 167, + [1228] = 166, + [1229] = 244, + [1230] = 162, + [1231] = 246, + [1232] = 1232, + [1233] = 1233, + [1234] = 163, + [1235] = 224, + [1236] = 230, + [1237] = 161, + [1238] = 262, + [1239] = 164, + [1240] = 165, + [1241] = 171, + [1242] = 259, + [1243] = 277, + [1244] = 242, + [1245] = 245, + [1246] = 169, + [1247] = 276, + [1248] = 321, + [1249] = 168, + [1250] = 1233, + [1251] = 275, + [1252] = 1252, + [1253] = 214, + [1254] = 172, + [1255] = 164, + [1256] = 172, + [1257] = 172, + [1258] = 162, + [1259] = 165, + [1260] = 244, + [1261] = 166, + [1262] = 230, + [1263] = 216, + [1264] = 293, + [1265] = 167, + [1266] = 163, [1267] = 1267, - [1268] = 232, - [1269] = 304, - [1270] = 1270, - [1271] = 1234, - [1272] = 252, - [1273] = 307, - [1274] = 139, - [1275] = 309, - [1276] = 310, - [1277] = 134, - [1278] = 206, - [1279] = 140, - [1280] = 311, - [1281] = 313, - [1282] = 191, - [1283] = 141, - [1284] = 345, - [1285] = 318, - [1286] = 323, - [1287] = 333, - [1288] = 335, - [1289] = 337, - [1290] = 183, - [1291] = 344, - [1292] = 286, - [1293] = 185, - [1294] = 185, - [1295] = 138, - [1296] = 137, - [1297] = 314, - [1298] = 183, - [1299] = 250, - [1300] = 183, - [1301] = 251, - [1302] = 185, - [1303] = 305, - [1304] = 183, - [1305] = 252, - [1306] = 398, - [1307] = 253, - [1308] = 409, - [1309] = 314, - [1310] = 1270, - [1311] = 405, - [1312] = 201, - [1313] = 407, - [1314] = 193, - [1315] = 333, - [1316] = 343, - [1317] = 232, - [1318] = 216, - [1319] = 409, - [1320] = 202, - [1321] = 202, - [1322] = 344, - [1323] = 203, - [1324] = 391, - [1325] = 191, - [1326] = 206, - [1327] = 193, - [1328] = 185, - [1329] = 204, - [1330] = 201, + [1268] = 1268, + [1269] = 237, + [1270] = 296, + [1271] = 214, + [1272] = 216, + [1273] = 262, + [1274] = 239, + [1275] = 170, + [1276] = 246, + [1277] = 214, + [1278] = 216, + [1279] = 224, + [1280] = 168, + [1281] = 161, + [1282] = 245, + [1283] = 167, + [1284] = 166, + [1285] = 164, + [1286] = 165, + [1287] = 1287, + [1288] = 218, + [1289] = 244, + [1290] = 224, + [1291] = 218, + [1292] = 169, + [1293] = 275, + [1294] = 170, + [1295] = 171, + [1296] = 245, + [1297] = 321, + [1298] = 214, + [1299] = 276, + [1300] = 259, + [1301] = 262, + [1302] = 277, + [1303] = 1303, + [1304] = 296, + [1305] = 216, + [1306] = 235, + [1307] = 216, + [1308] = 346, + [1309] = 323, + [1310] = 326, + [1311] = 327, + [1312] = 328, + [1313] = 329, + [1314] = 330, + [1315] = 331, + [1316] = 332, + [1317] = 333, + [1318] = 334, + [1319] = 335, + [1320] = 336, + [1321] = 337, + [1322] = 338, + [1323] = 339, + [1324] = 340, + [1325] = 341, + [1326] = 342, + [1327] = 343, + [1328] = 214, + [1329] = 324, + [1330] = 1268, [1331] = 216, - [1332] = 250, - [1333] = 318, - [1334] = 193, - [1335] = 208, - [1336] = 191, - [1337] = 222, - [1338] = 342, - [1339] = 204, - [1340] = 1340, - [1341] = 143, - [1342] = 300, - [1343] = 205, - [1344] = 345, - [1345] = 299, - [1346] = 301, - [1347] = 1270, - [1348] = 144, - [1349] = 142, - [1350] = 323, - [1351] = 222, - [1352] = 335, - [1353] = 364, - [1354] = 191, - [1355] = 134, - [1356] = 232, - [1357] = 251, - [1358] = 302, - [1359] = 407, - [1360] = 303, - [1361] = 304, - [1362] = 193, - [1363] = 305, - [1364] = 208, - [1365] = 307, - [1366] = 309, - [1367] = 310, - [1368] = 383, - [1369] = 384, - [1370] = 313, - [1371] = 385, - [1372] = 311, - [1373] = 136, - [1374] = 135, - [1375] = 145, - [1376] = 337, - [1377] = 191, - [1378] = 205, - [1379] = 1379, - [1380] = 1380, - [1381] = 205, - [1382] = 201, - [1383] = 251, - [1384] = 409, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 139, - [1390] = 193, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 205, - [1396] = 252, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 222, - [1402] = 364, - [1403] = 1340, - [1404] = 253, - [1405] = 436, - [1406] = 398, - [1407] = 201, - [1408] = 405, - [1409] = 1409, - [1410] = 141, - [1411] = 191, - [1412] = 204, - [1413] = 205, - [1414] = 208, - [1415] = 391, - [1416] = 139, + [1332] = 325, + [1333] = 293, + [1334] = 244, + [1335] = 214, + [1336] = 218, + [1337] = 340, + [1338] = 325, + [1339] = 239, + [1340] = 259, + [1341] = 262, + [1342] = 242, + [1343] = 230, + [1344] = 237, + [1345] = 239, + [1346] = 242, + [1347] = 161, + [1348] = 216, + [1349] = 343, + [1350] = 235, + [1351] = 246, + [1352] = 384, + [1353] = 385, + [1354] = 386, + [1355] = 275, + [1356] = 321, + [1357] = 276, + [1358] = 277, + [1359] = 230, + [1360] = 341, + [1361] = 214, + [1362] = 262, + [1363] = 224, + [1364] = 392, + [1365] = 224, + [1366] = 244, + [1367] = 218, + [1368] = 346, + [1369] = 342, + [1370] = 405, + [1371] = 418, + [1372] = 323, + [1373] = 218, + [1374] = 326, + [1375] = 420, + [1376] = 169, + [1377] = 324, + [1378] = 224, + [1379] = 170, + [1380] = 171, + [1381] = 235, + [1382] = 237, + [1383] = 162, + [1384] = 224, + [1385] = 246, + [1386] = 1287, + [1387] = 396, + [1388] = 218, + [1389] = 397, + [1390] = 245, + [1391] = 418, + [1392] = 327, + [1393] = 328, + [1394] = 329, + [1395] = 420, + [1396] = 330, + [1397] = 331, + [1398] = 332, + [1399] = 333, + [1400] = 334, + [1401] = 1401, + [1402] = 1287, + [1403] = 259, + [1404] = 335, + [1405] = 336, + [1406] = 337, + [1407] = 338, + [1408] = 163, + [1409] = 339, + [1410] = 172, + [1411] = 275, + [1412] = 1412, + [1413] = 1413, + [1414] = 230, + [1415] = 166, + [1416] = 259, [1417] = 1417, - [1418] = 445, - [1419] = 419, - [1420] = 421, - [1421] = 140, - [1422] = 208, - [1423] = 141, - [1424] = 205, - [1425] = 232, - [1426] = 204, - [1427] = 464, - [1428] = 422, - [1429] = 208, - [1430] = 250, - [1431] = 138, - [1432] = 206, - [1433] = 1433, - [1434] = 1409, - [1435] = 407, - [1436] = 145, - [1437] = 135, - [1438] = 438, - [1439] = 439, - [1440] = 423, - [1441] = 1441, - [1442] = 1442, - [1443] = 251, - [1444] = 1444, - [1445] = 1442, - [1446] = 136, - [1447] = 1417, - [1448] = 1448, - [1449] = 383, - [1450] = 252, - [1451] = 204, - [1452] = 253, - [1453] = 250, - [1454] = 137, - [1455] = 201, - [1456] = 140, - [1457] = 216, - [1458] = 1458, - [1459] = 202, - [1460] = 418, - [1461] = 398, - [1462] = 138, - [1463] = 137, - [1464] = 203, - [1465] = 384, - [1466] = 1441, - [1467] = 208, - [1468] = 385, - [1469] = 201, - [1470] = 1470, - [1471] = 204, - [1472] = 1472, - [1473] = 1472, - [1474] = 1474, - [1475] = 251, + [1418] = 168, + [1419] = 237, + [1420] = 230, + [1421] = 224, + [1422] = 1422, + [1423] = 492, + [1424] = 1412, + [1425] = 239, + [1426] = 262, + [1427] = 242, + [1428] = 276, + [1429] = 1413, + [1430] = 392, + [1431] = 1431, + [1432] = 239, + [1433] = 246, + [1434] = 237, + [1435] = 488, + [1436] = 1436, + [1437] = 242, + [1438] = 1438, + [1439] = 277, + [1440] = 396, + [1441] = 239, + [1442] = 321, + [1443] = 1401, + [1444] = 163, + [1445] = 1445, + [1446] = 405, + [1447] = 397, + [1448] = 168, + [1449] = 470, + [1450] = 167, + [1451] = 166, + [1452] = 230, + [1453] = 385, + [1454] = 218, + [1455] = 405, + [1456] = 489, + [1457] = 276, + [1458] = 230, + [1459] = 237, + [1460] = 1460, + [1461] = 167, + [1462] = 242, + [1463] = 487, + [1464] = 237, + [1465] = 1436, + [1466] = 164, + [1467] = 418, + [1468] = 172, + [1469] = 239, + [1470] = 164, + [1471] = 165, + [1472] = 420, + [1473] = 277, + [1474] = 242, + [1475] = 461, [1476] = 1476, - [1477] = 423, - [1478] = 1409, - [1479] = 206, - [1480] = 1444, - [1481] = 1481, - [1482] = 466, - [1483] = 138, - [1484] = 407, - [1485] = 464, - [1486] = 436, - [1487] = 137, - [1488] = 142, + [1477] = 165, + [1478] = 1417, + [1479] = 1422, + [1480] = 491, + [1481] = 462, + [1482] = 244, + [1483] = 1483, + [1484] = 235, + [1485] = 1485, + [1486] = 1486, + [1487] = 275, + [1488] = 1488, [1489] = 1489, - [1490] = 445, - [1491] = 1491, - [1492] = 464, - [1493] = 1493, - [1494] = 1494, - [1495] = 142, - [1496] = 1493, - [1497] = 1442, + [1490] = 1490, + [1491] = 386, + [1492] = 245, + [1493] = 162, + [1494] = 463, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, [1498] = 1498, - [1499] = 419, - [1500] = 144, - [1501] = 1441, - [1502] = 204, - [1503] = 141, - [1504] = 208, - [1505] = 1417, - [1506] = 1400, - [1507] = 1474, - [1508] = 253, - [1509] = 1509, - [1510] = 250, - [1511] = 439, - [1512] = 1442, - [1513] = 205, - [1514] = 1514, - [1515] = 252, - [1516] = 139, - [1517] = 1517, - [1518] = 1518, - [1519] = 438, - [1520] = 466, - [1521] = 439, - [1522] = 445, - [1523] = 222, - [1524] = 1491, - [1525] = 232, - [1526] = 140, - [1527] = 421, - [1528] = 1379, - [1529] = 1472, - [1530] = 143, - [1531] = 201, - [1532] = 143, - [1533] = 409, - [1534] = 436, - [1535] = 418, - [1536] = 203, - [1537] = 1514, - [1538] = 144, - [1539] = 422, - [1540] = 438, - [1541] = 311, - [1542] = 516, - [1543] = 140, - [1544] = 557, - [1545] = 503, - [1546] = 519, - [1547] = 141, - [1548] = 564, - [1549] = 522, - [1550] = 523, - [1551] = 524, - [1552] = 525, - [1553] = 526, - [1554] = 527, - [1555] = 528, - [1556] = 529, - [1557] = 530, - [1558] = 531, - [1559] = 532, - [1560] = 533, - [1561] = 534, - [1562] = 535, - [1563] = 536, - [1564] = 537, - [1565] = 538, - [1566] = 539, - [1567] = 540, - [1568] = 541, - [1569] = 542, - [1570] = 216, - [1571] = 589, - [1572] = 202, - [1573] = 553, - [1574] = 514, - [1575] = 515, - [1576] = 549, - [1577] = 517, - [1578] = 518, - [1579] = 145, - [1580] = 364, - [1581] = 520, - [1582] = 521, - [1583] = 555, - [1584] = 558, - [1585] = 563, - [1586] = 567, - [1587] = 405, - [1588] = 568, - [1589] = 569, - [1590] = 570, - [1591] = 571, - [1592] = 572, - [1593] = 573, - [1594] = 574, - [1595] = 575, - [1596] = 576, - [1597] = 578, - [1598] = 134, - [1599] = 143, - [1600] = 144, - [1601] = 142, - [1602] = 222, - [1603] = 232, - [1604] = 1493, - [1605] = 1514, - [1606] = 1606, - [1607] = 1517, - [1608] = 1608, - [1609] = 1609, - [1610] = 1474, - [1611] = 1611, - [1612] = 1612, - [1613] = 436, - [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 464, - [1622] = 1622, - [1623] = 1623, - [1624] = 438, - [1625] = 439, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 445, - [1634] = 1634, - [1635] = 1635, - [1636] = 216, - [1637] = 202, - [1638] = 1476, - [1639] = 1639, - [1640] = 250, - [1641] = 251, - [1642] = 252, - [1643] = 253, - [1644] = 1644, - [1645] = 445, - [1646] = 1493, - [1647] = 344, - [1648] = 342, - [1649] = 1649, - [1650] = 1518, - [1651] = 1514, - [1652] = 314, - [1653] = 1498, - [1654] = 343, - [1655] = 299, - [1656] = 1656, - [1657] = 139, - [1658] = 301, - [1659] = 302, - [1660] = 303, - [1661] = 304, - [1662] = 305, - [1663] = 307, - [1664] = 309, - [1665] = 310, - [1666] = 311, - [1667] = 313, - [1668] = 345, - [1669] = 318, - [1670] = 323, - [1671] = 333, - [1672] = 335, - [1673] = 337, - [1674] = 541, - [1675] = 556, - [1676] = 542, - [1677] = 516, - [1678] = 1509, - [1679] = 1679, - [1680] = 589, - [1681] = 557, - [1682] = 503, - [1683] = 519, - [1684] = 553, - [1685] = 561, - [1686] = 564, - [1687] = 522, - [1688] = 523, - [1689] = 524, - [1690] = 525, - [1691] = 526, - [1692] = 527, - [1693] = 528, - [1694] = 529, - [1695] = 530, - [1696] = 531, - [1697] = 532, - [1698] = 533, - [1699] = 534, - [1700] = 535, - [1701] = 536, - [1702] = 537, - [1703] = 538, - [1704] = 539, - [1705] = 540, - [1706] = 466, - [1707] = 139, - [1708] = 514, - [1709] = 515, - [1710] = 140, - [1711] = 517, - [1712] = 518, - [1713] = 141, - [1714] = 520, - [1715] = 521, - [1716] = 1474, - [1717] = 134, - [1718] = 561, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 134, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1639, - [1731] = 1634, - [1732] = 1635, - [1733] = 1725, - [1734] = 344, - [1735] = 342, - [1736] = 314, - [1737] = 343, - [1738] = 299, - [1739] = 300, - [1740] = 301, - [1741] = 302, - [1742] = 303, - [1743] = 304, - [1744] = 305, - [1745] = 307, - [1746] = 309, - [1747] = 310, - [1748] = 313, - [1749] = 345, - [1750] = 318, - [1751] = 323, - [1752] = 333, - [1753] = 335, - [1754] = 337, - [1755] = 556, - [1756] = 300, - [1757] = 578, - [1758] = 1758, - [1759] = 314, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1771, - [1772] = 1493, - [1773] = 342, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 464, + [1504] = 321, + [1505] = 384, + [1506] = 1506, + [1507] = 1483, + [1508] = 166, + [1509] = 462, + [1510] = 461, + [1511] = 491, + [1512] = 245, + [1513] = 503, + [1514] = 168, + [1515] = 461, + [1516] = 1516, + [1517] = 170, + [1518] = 171, + [1519] = 1519, + [1520] = 1520, + [1521] = 170, + [1522] = 463, + [1523] = 1523, + [1524] = 464, + [1525] = 503, + [1526] = 463, + [1527] = 464, + [1528] = 1528, + [1529] = 487, + [1530] = 1520, + [1531] = 1412, + [1532] = 1436, + [1533] = 1533, + [1534] = 171, + [1535] = 244, + [1536] = 1519, + [1537] = 1413, + [1538] = 259, + [1539] = 165, + [1540] = 262, + [1541] = 230, + [1542] = 277, + [1543] = 167, + [1544] = 1544, + [1545] = 239, + [1546] = 1546, + [1547] = 1438, + [1548] = 418, + [1549] = 470, + [1550] = 164, + [1551] = 169, + [1552] = 1523, + [1553] = 1460, + [1554] = 1554, + [1555] = 276, + [1556] = 470, + [1557] = 321, + [1558] = 420, + [1559] = 1559, + [1560] = 492, + [1561] = 275, + [1562] = 462, + [1563] = 242, + [1564] = 1564, + [1565] = 1417, + [1566] = 1422, + [1567] = 488, + [1568] = 1436, + [1569] = 489, + [1570] = 169, + [1571] = 1559, + [1572] = 237, + [1573] = 461, + [1574] = 601, + [1575] = 602, + [1576] = 603, + [1577] = 604, + [1578] = 605, + [1579] = 606, + [1580] = 607, + [1581] = 608, + [1582] = 609, + [1583] = 495, + [1584] = 556, + [1585] = 524, + [1586] = 525, + [1587] = 325, + [1588] = 1554, + [1589] = 172, + [1590] = 396, + [1591] = 531, + [1592] = 532, + [1593] = 1544, + [1594] = 1546, + [1595] = 397, + [1596] = 166, + [1597] = 531, + [1598] = 532, + [1599] = 1599, + [1600] = 1600, + [1601] = 323, + [1602] = 161, + [1603] = 169, + [1604] = 170, + [1605] = 171, + [1606] = 1516, + [1607] = 259, + [1608] = 326, + [1609] = 262, + [1610] = 1610, + [1611] = 1519, + [1612] = 1523, + [1613] = 327, + [1614] = 328, + [1615] = 329, + [1616] = 330, + [1617] = 331, + [1618] = 332, + [1619] = 333, + [1620] = 334, + [1621] = 335, + [1622] = 336, + [1623] = 462, + [1624] = 508, + [1625] = 512, + [1626] = 463, + [1627] = 464, + [1628] = 337, + [1629] = 338, + [1630] = 339, + [1631] = 514, + [1632] = 340, + [1633] = 1633, + [1634] = 341, + [1635] = 342, + [1636] = 343, + [1637] = 1637, + [1638] = 1638, + [1639] = 587, + [1640] = 1640, + [1641] = 470, + [1642] = 1642, + [1643] = 521, + [1644] = 235, + [1645] = 246, + [1646] = 1646, + [1647] = 588, + [1648] = 592, + [1649] = 161, + [1650] = 1528, + [1651] = 1651, + [1652] = 534, + [1653] = 275, + [1654] = 470, + [1655] = 321, + [1656] = 276, + [1657] = 277, + [1658] = 1519, + [1659] = 523, + [1660] = 501, + [1661] = 593, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 324, + [1666] = 1666, + [1667] = 1667, + [1668] = 535, + [1669] = 508, + [1670] = 511, + [1671] = 512, + [1672] = 613, + [1673] = 521, + [1674] = 1674, + [1675] = 168, + [1676] = 592, + [1677] = 1559, + [1678] = 161, + [1679] = 167, + [1680] = 615, + [1681] = 514, + [1682] = 523, + [1683] = 501, + [1684] = 619, + [1685] = 593, + [1686] = 166, + [1687] = 1687, + [1688] = 559, + [1689] = 560, + [1690] = 563, + [1691] = 564, + [1692] = 511, + [1693] = 1693, + [1694] = 1694, + [1695] = 1559, + [1696] = 613, + [1697] = 557, + [1698] = 566, + [1699] = 615, + [1700] = 572, + [1701] = 573, + [1702] = 619, + [1703] = 574, + [1704] = 575, + [1705] = 577, + [1706] = 559, + [1707] = 579, + [1708] = 560, + [1709] = 563, + [1710] = 580, + [1711] = 581, + [1712] = 564, + [1713] = 582, + [1714] = 557, + [1715] = 585, + [1716] = 346, + [1717] = 1717, + [1718] = 566, + [1719] = 572, + [1720] = 573, + [1721] = 574, + [1722] = 575, + [1723] = 503, + [1724] = 577, + [1725] = 168, + [1726] = 579, + [1727] = 580, + [1728] = 581, + [1729] = 495, + [1730] = 582, + [1731] = 585, + [1732] = 556, + [1733] = 587, + [1734] = 588, + [1735] = 1735, + [1736] = 235, + [1737] = 1737, + [1738] = 1738, + [1739] = 1739, + [1740] = 1740, + [1741] = 595, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1674, + [1746] = 534, + [1747] = 1747, + [1748] = 1599, + [1749] = 1600, + [1750] = 1662, + [1751] = 324, + [1752] = 346, + [1753] = 325, + [1754] = 323, + [1755] = 326, + [1756] = 327, + [1757] = 328, + [1758] = 329, + [1759] = 330, + [1760] = 331, + [1761] = 332, + [1762] = 333, + [1763] = 334, + [1764] = 335, + [1765] = 336, + [1766] = 337, + [1767] = 338, + [1768] = 339, + [1769] = 340, + [1770] = 341, + [1771] = 342, + [1772] = 343, + [1773] = 246, [1774] = 1774, - [1775] = 1775, - [1776] = 1632, - [1777] = 1777, - [1778] = 549, - [1779] = 303, - [1780] = 304, - [1781] = 305, - [1782] = 466, + [1775] = 167, + [1776] = 1776, + [1777] = 524, + [1778] = 1778, + [1779] = 525, + [1780] = 1780, + [1781] = 1781, + [1782] = 596, [1783] = 1783, - [1784] = 1611, - [1785] = 576, - [1786] = 1719, - [1787] = 568, - [1788] = 569, - [1789] = 570, - [1790] = 1612, + [1784] = 1784, + [1785] = 597, + [1786] = 1786, + [1787] = 598, + [1788] = 599, + [1789] = 1523, + [1790] = 535, [1791] = 1791, - [1792] = 302, - [1793] = 1720, - [1794] = 1721, - [1795] = 300, - [1796] = 301, + [1792] = 600, + [1793] = 327, + [1794] = 162, + [1795] = 1795, + [1796] = 1796, [1797] = 1797, - [1798] = 1722, - [1799] = 1723, - [1800] = 1800, - [1801] = 344, - [1802] = 307, - [1803] = 309, - [1804] = 310, - [1805] = 311, - [1806] = 313, + [1798] = 1798, + [1799] = 1799, + [1800] = 588, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 418, + [1805] = 166, + [1806] = 531, [1807] = 1807, - [1808] = 1808, - [1809] = 345, - [1810] = 343, - [1811] = 1726, - [1812] = 1727, - [1813] = 1813, - [1814] = 1728, - [1815] = 1729, - [1816] = 250, - [1817] = 1817, - [1818] = 251, - [1819] = 252, - [1820] = 253, - [1821] = 1821, - [1822] = 556, - [1823] = 555, - [1824] = 516, - [1825] = 1825, - [1826] = 558, - [1827] = 563, - [1828] = 567, - [1829] = 1829, - [1830] = 1830, - [1831] = 557, - [1832] = 503, - [1833] = 519, - [1834] = 318, - [1835] = 323, - [1836] = 333, - [1837] = 335, - [1838] = 1838, - [1839] = 561, - [1840] = 564, - [1841] = 522, - [1842] = 1842, - [1843] = 523, - [1844] = 524, - [1845] = 1845, - [1846] = 525, - [1847] = 526, - [1848] = 527, + [1808] = 532, + [1809] = 163, + [1810] = 1642, + [1811] = 1811, + [1812] = 420, + [1813] = 333, + [1814] = 334, + [1815] = 335, + [1816] = 336, + [1817] = 337, + [1818] = 338, + [1819] = 235, + [1820] = 1820, + [1821] = 1735, + [1822] = 1519, + [1823] = 1823, + [1824] = 1824, + [1825] = 1666, + [1826] = 1667, + [1827] = 597, + [1828] = 613, + [1829] = 1737, + [1830] = 1523, + [1831] = 615, + [1832] = 514, + [1833] = 339, + [1834] = 340, + [1835] = 341, + [1836] = 342, + [1837] = 534, + [1838] = 346, + [1839] = 1839, + [1840] = 619, + [1841] = 343, + [1842] = 246, + [1843] = 323, + [1844] = 396, + [1845] = 324, + [1846] = 1846, + [1847] = 1847, + [1848] = 559, [1849] = 1849, - [1850] = 528, - [1851] = 529, - [1852] = 530, - [1853] = 531, - [1854] = 1854, - [1855] = 532, - [1856] = 533, - [1857] = 534, - [1858] = 535, - [1859] = 536, - [1860] = 537, - [1861] = 538, - [1862] = 539, - [1863] = 540, + [1850] = 503, + [1851] = 560, + [1852] = 535, + [1853] = 563, + [1854] = 593, + [1855] = 397, + [1856] = 1856, + [1857] = 275, + [1858] = 1791, + [1859] = 564, + [1860] = 1860, + [1861] = 321, + [1862] = 557, + [1863] = 1863, [1864] = 1864, - [1865] = 541, - [1866] = 542, - [1867] = 1867, - [1868] = 216, + [1865] = 523, + [1866] = 276, + [1867] = 508, + [1868] = 1868, [1869] = 1869, - [1870] = 589, - [1871] = 1871, + [1870] = 172, + [1871] = 277, [1872] = 1872, - [1873] = 202, - [1874] = 364, - [1875] = 1875, - [1876] = 553, - [1877] = 337, - [1878] = 405, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 145, + [1873] = 1637, + [1874] = 600, + [1875] = 601, + [1876] = 602, + [1877] = 1877, + [1878] = 566, + [1879] = 572, + [1880] = 1638, + [1881] = 573, + [1882] = 574, + [1883] = 162, [1884] = 1884, [1885] = 1885, - [1886] = 1886, - [1887] = 1887, + [1886] = 1651, + [1887] = 521, [1888] = 1888, - [1889] = 1493, - [1890] = 1890, + [1889] = 599, + [1890] = 575, [1891] = 1891, - [1892] = 1514, - [1893] = 136, - [1894] = 299, - [1895] = 1774, - [1896] = 1608, + [1892] = 325, + [1893] = 1519, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, [1897] = 1897, - [1898] = 1514, - [1899] = 1609, - [1900] = 1679, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, - [1904] = 407, - [1905] = 1905, - [1906] = 409, + [1898] = 511, + [1899] = 1899, + [1900] = 1900, + [1901] = 595, + [1902] = 598, + [1903] = 577, + [1904] = 512, + [1905] = 592, + [1906] = 1523, [1907] = 1907, - [1908] = 135, - [1909] = 136, - [1910] = 139, - [1911] = 514, - [1912] = 515, - [1913] = 571, - [1914] = 140, - [1915] = 517, - [1916] = 518, - [1917] = 135, - [1918] = 572, - [1919] = 573, - [1920] = 141, - [1921] = 520, - [1922] = 521, - [1923] = 136, - [1924] = 574, - [1925] = 575, - [1926] = 135, + [1908] = 579, + [1909] = 580, + [1910] = 1847, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 581, + [1916] = 582, + [1917] = 163, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 585, + [1922] = 1922, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, [1927] = 1927, [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 438, - [1932] = 439, - [1933] = 140, - [1934] = 398, - [1935] = 541, - [1936] = 445, - [1937] = 542, - [1938] = 398, - [1939] = 516, - [1940] = 134, - [1941] = 1472, - [1942] = 1409, - [1943] = 1441, - [1944] = 1417, - [1945] = 519, - [1946] = 139, - [1947] = 140, - [1948] = 141, - [1949] = 141, - [1950] = 522, - [1951] = 523, - [1952] = 524, - [1953] = 407, - [1954] = 525, - [1955] = 526, - [1956] = 464, + [1929] = 326, + [1930] = 501, + [1931] = 587, + [1932] = 1663, + [1933] = 1933, + [1934] = 603, + [1935] = 604, + [1936] = 605, + [1937] = 606, + [1938] = 607, + [1939] = 1664, + [1940] = 608, + [1941] = 609, + [1942] = 162, + [1943] = 163, + [1944] = 168, + [1945] = 495, + [1946] = 556, + [1947] = 329, + [1948] = 330, + [1949] = 331, + [1950] = 332, + [1951] = 1640, + [1952] = 1693, + [1953] = 1633, + [1954] = 1954, + [1955] = 167, + [1956] = 524, [1957] = 1957, - [1958] = 528, - [1959] = 529, - [1960] = 138, + [1958] = 525, + [1959] = 1959, + [1960] = 1694, [1961] = 1961, [1962] = 1962, - [1963] = 530, - [1964] = 531, - [1965] = 141, - [1966] = 532, - [1967] = 137, - [1968] = 533, - [1969] = 534, - [1970] = 436, - [1971] = 1458, - [1972] = 139, - [1973] = 535, - [1974] = 1974, - [1975] = 536, - [1976] = 537, - [1977] = 538, - [1978] = 539, - [1979] = 140, - [1980] = 540, - [1981] = 1981, - [1982] = 409, - [1983] = 216, - [1984] = 139, - [1985] = 202, - [1986] = 138, - [1987] = 137, - [1988] = 527, - [1989] = 1989, + [1963] = 1963, + [1964] = 596, + [1965] = 328, + [1966] = 166, + [1967] = 463, + [1968] = 464, + [1969] = 592, + [1970] = 167, + [1971] = 235, + [1972] = 168, + [1973] = 167, + [1974] = 166, + [1975] = 168, + [1976] = 619, + [1977] = 470, + [1978] = 461, + [1979] = 246, + [1980] = 593, + [1981] = 559, + [1982] = 560, + [1983] = 161, + [1984] = 563, + [1985] = 587, + [1986] = 564, + [1987] = 164, + [1988] = 165, + [1989] = 557, [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 202, - [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1474, - [1999] = 1999, - [2000] = 2000, + [1991] = 566, + [1992] = 572, + [1993] = 573, + [1994] = 405, + [1995] = 575, + [1996] = 1417, + [1997] = 577, + [1998] = 1422, + [1999] = 579, + [2000] = 580, [2001] = 2001, - [2002] = 2002, - [2003] = 144, - [2004] = 2004, + [2002] = 168, + [2003] = 581, + [2004] = 1445, [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 142, - [2011] = 2011, + [2006] = 582, + [2007] = 585, + [2008] = 166, + [2009] = 167, + [2010] = 420, + [2011] = 613, [2012] = 2012, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, + [2013] = 405, + [2014] = 588, + [2015] = 164, + [2016] = 165, + [2017] = 1412, + [2018] = 418, [2019] = 2019, - [2020] = 2020, + [2020] = 1413, [2021] = 2021, - [2022] = 2022, - [2023] = 185, - [2024] = 2024, + [2022] = 615, + [2023] = 2023, + [2024] = 462, [2025] = 2025, - [2026] = 2026, + [2026] = 574, [2027] = 2027, [2028] = 2028, [2029] = 2029, @@ -7231,83 +7224,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2031] = 2031, [2032] = 2032, [2033] = 2033, - [2034] = 1472, - [2035] = 1409, + [2034] = 2034, + [2035] = 2035, [2036] = 2036, [2037] = 2037, [2038] = 2038, [2039] = 2039, [2040] = 2040, [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, + [2042] = 169, + [2043] = 195, + [2044] = 463, [2045] = 2045, [2046] = 2046, [2047] = 2047, - [2048] = 1441, - [2049] = 1417, + [2048] = 2048, + [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 2052, + [2052] = 161, [2053] = 2053, [2054] = 2054, - [2055] = 2055, - [2056] = 1392, - [2057] = 464, - [2058] = 2058, + [2055] = 464, + [2056] = 2056, + [2057] = 2057, + [2058] = 1412, [2059] = 2059, - [2060] = 436, - [2061] = 2061, - [2062] = 324, + [2060] = 2060, + [2061] = 1413, + [2062] = 2062, [2063] = 2063, [2064] = 2064, [2065] = 2065, [2066] = 2066, [2067] = 2067, - [2068] = 135, + [2068] = 2068, [2069] = 2069, [2070] = 2070, - [2071] = 2071, - [2072] = 136, - [2073] = 2073, + [2071] = 1559, + [2072] = 2072, + [2073] = 1422, [2074] = 2074, [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 445, - [2079] = 2079, - [2080] = 464, - [2081] = 445, - [2082] = 436, - [2083] = 2083, + [2076] = 170, + [2077] = 171, + [2078] = 2078, + [2079] = 170, + [2080] = 171, + [2081] = 216, + [2082] = 2062, + [2083] = 470, [2084] = 2084, [2085] = 2085, [2086] = 2086, [2087] = 2087, [2088] = 2088, - [2089] = 438, - [2090] = 439, - [2091] = 1393, - [2092] = 438, - [2093] = 439, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, [2094] = 2094, - [2095] = 1433, - [2096] = 1380, - [2097] = 2073, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, [2098] = 2098, [2099] = 2099, [2100] = 2100, [2101] = 2101, - [2102] = 1388, + [2102] = 2102, [2103] = 2103, - [2104] = 1493, - [2105] = 183, - [2106] = 1385, - [2107] = 216, - [2108] = 1386, + [2104] = 2104, + [2105] = 2105, + [2106] = 2106, + [2107] = 169, + [2108] = 2108, [2109] = 2109, - [2110] = 2110, + [2110] = 470, [2111] = 2111, [2112] = 2112, [2113] = 2113, @@ -7315,57 +7308,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 2061, - [2119] = 2070, + [2118] = 1519, + [2119] = 2119, [2120] = 2120, - [2121] = 1394, - [2122] = 2122, - [2123] = 1397, - [2124] = 134, - [2125] = 2125, - [2126] = 143, - [2127] = 2098, - [2128] = 2099, + [2121] = 2121, + [2122] = 235, + [2123] = 2123, + [2124] = 2124, + [2125] = 162, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, [2129] = 2129, - [2130] = 2130, - [2131] = 1391, - [2132] = 1387, - [2133] = 2133, - [2134] = 2134, + [2130] = 1485, + [2131] = 163, + [2132] = 2132, + [2133] = 1486, + [2134] = 1488, [2135] = 2135, - [2136] = 2136, - [2137] = 2137, + [2136] = 1489, + [2137] = 2123, [2138] = 2138, - [2139] = 2139, + [2139] = 1523, [2140] = 2140, - [2141] = 143, + [2141] = 2141, [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, + [2143] = 462, + [2144] = 461, + [2145] = 1490, + [2146] = 462, + [2147] = 246, [2148] = 2148, - [2149] = 2149, + [2149] = 461, [2150] = 2150, [2151] = 2151, [2152] = 2152, - [2153] = 144, - [2154] = 142, - [2155] = 1398, - [2156] = 1399, - [2157] = 1514, - [2158] = 2158, - [2159] = 1995, - [2160] = 141, + [2153] = 1495, + [2154] = 1496, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2075, + [2159] = 2105, + [2160] = 2106, [2161] = 2161, - [2162] = 2162, - [2163] = 2070, + [2162] = 463, + [2163] = 2163, [2164] = 2164, - [2165] = 193, - [2166] = 2142, - [2167] = 2143, - [2168] = 556, + [2165] = 2165, + [2166] = 2166, + [2167] = 464, + [2168] = 2168, [2169] = 2169, [2170] = 2170, [2171] = 2171, @@ -7376,82 +7369,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2176] = 2176, [2177] = 2177, [2178] = 2178, - [2179] = 2142, - [2180] = 1996, - [2181] = 2181, - [2182] = 589, + [2179] = 2179, + [2180] = 2180, + [2181] = 214, + [2182] = 2182, [2183] = 2183, - [2184] = 557, - [2185] = 503, + [2184] = 2184, + [2185] = 2185, [2186] = 2186, - [2187] = 2187, + [2187] = 1497, [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, + [2189] = 1417, + [2190] = 1498, + [2191] = 1499, + [2192] = 1500, + [2193] = 1501, + [2194] = 1502, [2195] = 2195, [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2199, + [2199] = 501, [2200] = 2200, - [2201] = 553, + [2201] = 2201, [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 2205, - [2206] = 561, - [2207] = 564, + [2205] = 2086, + [2206] = 2206, + [2207] = 2094, [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 2211, - [2212] = 191, + [2211] = 1717, + [2212] = 2212, [2213] = 2213, [2214] = 2214, [2215] = 2215, [2216] = 2216, - [2217] = 2142, - [2218] = 514, - [2219] = 515, - [2220] = 466, - [2221] = 2143, - [2222] = 1474, - [2223] = 517, - [2224] = 518, - [2225] = 2070, - [2226] = 138, - [2227] = 137, - [2228] = 2228, + [2217] = 2095, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 521, + [2222] = 2222, + [2223] = 535, + [2224] = 2224, + [2225] = 2225, + [2226] = 164, + [2227] = 168, + [2228] = 165, [2229] = 2229, - [2230] = 520, - [2231] = 521, + [2230] = 2230, + [2231] = 167, [2232] = 2232, - [2233] = 2233, + [2233] = 166, [2234] = 2234, - [2235] = 182, - [2236] = 1644, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 1493, - [2243] = 372, + [2235] = 2235, + [2236] = 2236, + [2237] = 587, + [2238] = 512, + [2239] = 495, + [2240] = 2094, + [2241] = 2095, + [2242] = 588, + [2243] = 556, [2244] = 2244, [2245] = 2245, [2246] = 2246, [2247] = 2247, [2248] = 2248, - [2249] = 2249, - [2250] = 1514, - [2251] = 135, + [2249] = 1559, + [2250] = 2250, + [2251] = 2251, [2252] = 2252, [2253] = 2253, - [2254] = 1649, + [2254] = 162, [2255] = 2255, [2256] = 2256, [2257] = 2257, @@ -7460,19 +7453,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2260] = 2260, [2261] = 2261, [2262] = 2262, - [2263] = 136, - [2264] = 541, - [2265] = 2265, - [2266] = 542, - [2267] = 2267, + [2263] = 2263, + [2264] = 524, + [2265] = 525, + [2266] = 2266, + [2267] = 1519, [2268] = 2268, [2269] = 2269, - [2270] = 2270, + [2270] = 508, [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 1995, - [2275] = 1996, + [2274] = 2274, + [2275] = 2275, [2276] = 2276, [2277] = 2277, [2278] = 2278, @@ -7487,2050 +7480,2050 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2287] = 2287, [2288] = 2288, [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 445, + [2290] = 218, + [2291] = 2287, + [2292] = 2292, [2293] = 2293, [2294] = 2294, [2295] = 2295, - [2296] = 2296, + [2296] = 2288, [2297] = 2297, [2298] = 2298, [2299] = 2299, [2300] = 2300, [2301] = 2301, [2302] = 2302, - [2303] = 2303, + [2303] = 2283, [2304] = 2304, [2305] = 2305, - [2306] = 1474, + [2306] = 2306, [2307] = 2307, [2308] = 2308, [2309] = 2309, [2310] = 2310, [2311] = 2311, [2312] = 2312, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, + [2313] = 1559, + [2314] = 2094, + [2315] = 2095, + [2316] = 2310, [2317] = 2317, [2318] = 2318, - [2319] = 2319, + [2319] = 211, [2320] = 2320, [2321] = 2321, - [2322] = 1995, - [2323] = 1996, + [2322] = 2123, + [2323] = 2323, [2324] = 2324, - [2325] = 2297, - [2326] = 2301, - [2327] = 2161, - [2328] = 2215, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, [2329] = 2329, - [2330] = 2320, - [2331] = 2321, - [2332] = 2277, - [2333] = 2143, - [2334] = 1656, + [2330] = 2330, + [2331] = 2331, + [2332] = 2332, + [2333] = 503, + [2334] = 2334, [2335] = 2335, - [2336] = 2329, - [2337] = 2213, - [2338] = 2335, - [2339] = 2162, - [2340] = 2234, - [2341] = 139, - [2342] = 140, - [2343] = 528, - [2344] = 185, - [2345] = 445, - [2346] = 2197, - [2347] = 1649, - [2348] = 556, - [2349] = 1626, - [2350] = 139, - [2351] = 2194, - [2352] = 518, - [2353] = 1631, - [2354] = 2193, - [2355] = 557, - [2356] = 541, - [2357] = 503, - [2358] = 208, - [2359] = 140, - [2360] = 522, - [2361] = 144, - [2362] = 1627, - [2363] = 142, - [2364] = 1623, - [2365] = 2195, - [2366] = 1630, - [2367] = 561, - [2368] = 523, - [2369] = 1628, - [2370] = 2196, - [2371] = 524, - [2372] = 553, - [2373] = 141, - [2374] = 187, - [2375] = 526, - [2376] = 527, - [2377] = 2198, - [2378] = 516, - [2379] = 184, - [2380] = 564, - [2381] = 1606, - [2382] = 2191, - [2383] = 530, - [2384] = 517, - [2385] = 531, - [2386] = 2386, - [2387] = 2192, - [2388] = 529, - [2389] = 205, - [2390] = 532, - [2391] = 1629, - [2392] = 519, - [2393] = 534, - [2394] = 520, - [2395] = 204, - [2396] = 521, - [2397] = 535, - [2398] = 1644, - [2399] = 525, - [2400] = 183, - [2401] = 542, - [2402] = 1614, - [2403] = 1615, - [2404] = 514, - [2405] = 1616, - [2406] = 2187, - [2407] = 515, - [2408] = 536, - [2409] = 1617, - [2410] = 537, - [2411] = 2188, - [2412] = 188, - [2413] = 1618, - [2414] = 2189, - [2415] = 538, - [2416] = 138, - [2417] = 1619, - [2418] = 137, - [2419] = 539, - [2420] = 1195, - [2421] = 1656, - [2422] = 201, - [2423] = 2190, - [2424] = 1620, - [2425] = 143, - [2426] = 540, - [2427] = 1622, - [2428] = 589, - [2429] = 533, - [2430] = 1493, - [2431] = 2431, - [2432] = 409, - [2433] = 2433, - [2434] = 191, - [2435] = 200, - [2436] = 1514, - [2437] = 520, - [2438] = 521, - [2439] = 2439, - [2440] = 2440, - [2441] = 2431, - [2442] = 2442, - [2443] = 1974, - [2444] = 1962, - [2445] = 1929, - [2446] = 1930, - [2447] = 2447, - [2448] = 189, - [2449] = 518, - [2450] = 2450, - [2451] = 2450, - [2452] = 2440, - [2453] = 199, - [2454] = 144, - [2455] = 143, - [2456] = 2456, - [2457] = 2442, - [2458] = 2458, - [2459] = 193, - [2460] = 145, - [2461] = 1928, - [2462] = 142, - [2463] = 514, - [2464] = 515, - [2465] = 184, - [2466] = 407, - [2467] = 2447, - [2468] = 2468, - [2469] = 2439, - [2470] = 517, - [2471] = 190, + [2336] = 2336, + [2337] = 511, + [2338] = 2304, + [2339] = 2311, + [2340] = 2312, + [2341] = 2341, + [2342] = 2342, + [2343] = 224, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 2347, + [2348] = 514, + [2349] = 199, + [2350] = 531, + [2351] = 2351, + [2352] = 532, + [2353] = 2353, + [2354] = 2354, + [2355] = 2085, + [2356] = 2085, + [2357] = 2086, + [2358] = 2085, + [2359] = 2123, + [2360] = 2360, + [2361] = 2086, + [2362] = 2362, + [2363] = 2363, + [2364] = 534, + [2365] = 2365, + [2366] = 2366, + [2367] = 470, + [2368] = 1610, + [2369] = 1523, + [2370] = 2370, + [2371] = 2371, + [2372] = 2230, + [2373] = 2373, + [2374] = 2224, + [2375] = 2272, + [2376] = 2286, + [2377] = 1646, + [2378] = 2378, + [2379] = 523, + [2380] = 2380, + [2381] = 163, + [2382] = 2222, + [2383] = 1776, + [2384] = 495, + [2385] = 588, + [2386] = 1717, + [2387] = 2387, + [2388] = 1786, + [2389] = 212, + [2390] = 556, + [2391] = 214, + [2392] = 592, + [2393] = 216, + [2394] = 230, + [2395] = 237, + [2396] = 587, + [2397] = 239, + [2398] = 514, + [2399] = 521, + [2400] = 1610, + [2401] = 242, + [2402] = 619, + [2403] = 559, + [2404] = 168, + [2405] = 167, + [2406] = 166, + [2407] = 508, + [2408] = 511, + [2409] = 560, + [2410] = 563, + [2411] = 535, + [2412] = 512, + [2413] = 564, + [2414] = 557, + [2415] = 613, + [2416] = 566, + [2417] = 572, + [2418] = 573, + [2419] = 574, + [2420] = 575, + [2421] = 577, + [2422] = 615, + [2423] = 523, + [2424] = 1784, + [2425] = 579, + [2426] = 580, + [2427] = 581, + [2428] = 582, + [2429] = 585, + [2430] = 1687, + [2431] = 525, + [2432] = 1646, + [2433] = 534, + [2434] = 593, + [2435] = 531, + [2436] = 169, + [2437] = 532, + [2438] = 1738, + [2439] = 1739, + [2440] = 1740, + [2441] = 2330, + [2442] = 1742, + [2443] = 2297, + [2444] = 1743, + [2445] = 170, + [2446] = 171, + [2447] = 2201, + [2448] = 1744, + [2449] = 2202, + [2450] = 1747, + [2451] = 2215, + [2452] = 1774, + [2453] = 2232, + [2454] = 164, + [2455] = 165, + [2456] = 524, + [2457] = 1233, + [2458] = 213, + [2459] = 2208, + [2460] = 1778, + [2461] = 470, + [2462] = 2219, + [2463] = 217, + [2464] = 1780, + [2465] = 2302, + [2466] = 2250, + [2467] = 1781, + [2468] = 2263, + [2469] = 1783, + [2470] = 2363, + [2471] = 501, [2472] = 2472, - [2473] = 2473, - [2474] = 2474, - [2475] = 2474, - [2476] = 2476, - [2477] = 514, - [2478] = 515, - [2479] = 2476, - [2480] = 139, + [2473] = 524, + [2474] = 525, + [2475] = 221, + [2476] = 2001, + [2477] = 2477, + [2478] = 169, + [2479] = 2479, + [2480] = 1519, [2481] = 2481, - [2482] = 2482, - [2483] = 2483, - [2484] = 517, - [2485] = 518, - [2486] = 201, - [2487] = 208, - [2488] = 2488, - [2489] = 204, - [2490] = 140, - [2491] = 205, - [2492] = 2482, - [2493] = 2483, - [2494] = 206, - [2495] = 2488, - [2496] = 2481, - [2497] = 2497, - [2498] = 407, - [2499] = 2499, - [2500] = 520, - [2501] = 521, - [2502] = 134, - [2503] = 145, - [2504] = 2481, - [2505] = 2505, - [2506] = 2506, - [2507] = 134, - [2508] = 342, - [2509] = 141, - [2510] = 343, - [2511] = 299, - [2512] = 2512, - [2513] = 2505, - [2514] = 190, - [2515] = 301, - [2516] = 302, - [2517] = 303, - [2518] = 304, - [2519] = 305, - [2520] = 307, - [2521] = 309, - [2522] = 310, - [2523] = 311, - [2524] = 313, - [2525] = 345, - [2526] = 318, - [2527] = 323, - [2528] = 333, - [2529] = 335, - [2530] = 337, - [2531] = 344, - [2532] = 183, - [2533] = 314, - [2534] = 2534, - [2535] = 2473, - [2536] = 185, - [2537] = 2537, - [2538] = 2538, - [2539] = 216, - [2540] = 202, - [2541] = 409, - [2542] = 2537, - [2543] = 2534, - [2544] = 2538, - [2545] = 2472, - [2546] = 2497, - [2547] = 2499, - [2548] = 189, - [2549] = 203, - [2550] = 199, - [2551] = 200, - [2552] = 300, - [2553] = 137, - [2554] = 232, - [2555] = 136, - [2556] = 136, - [2557] = 193, - [2558] = 504, - [2559] = 222, - [2560] = 216, - [2561] = 135, - [2562] = 134, - [2563] = 202, - [2564] = 135, - [2565] = 138, - [2566] = 191, - [2567] = 251, - [2568] = 2568, - [2569] = 2569, - [2570] = 139, - [2571] = 135, - [2572] = 2572, - [2573] = 140, - [2574] = 2574, - [2575] = 141, - [2576] = 206, - [2577] = 2577, - [2578] = 2578, - [2579] = 2579, - [2580] = 139, - [2581] = 2577, - [2582] = 140, - [2583] = 1379, - [2584] = 286, - [2585] = 141, - [2586] = 324, - [2587] = 2574, - [2588] = 203, - [2589] = 585, - [2590] = 143, - [2591] = 203, - [2592] = 2592, - [2593] = 2578, - [2594] = 2579, - [2595] = 2595, - [2596] = 138, - [2597] = 137, - [2598] = 252, - [2599] = 253, - [2600] = 136, - [2601] = 138, - [2602] = 201, - [2603] = 504, - [2604] = 137, - [2605] = 136, - [2606] = 2606, - [2607] = 208, - [2608] = 2608, - [2609] = 144, - [2610] = 142, - [2611] = 204, - [2612] = 285, - [2613] = 205, - [2614] = 206, - [2615] = 250, - [2616] = 135, - [2617] = 335, - [2618] = 445, - [2619] = 203, - [2620] = 1728, - [2621] = 1729, - [2622] = 206, - [2623] = 2595, - [2624] = 222, - [2625] = 2625, - [2626] = 232, - [2627] = 140, - [2628] = 464, - [2629] = 436, - [2630] = 585, - [2631] = 206, - [2632] = 438, - [2633] = 439, - [2634] = 134, - [2635] = 139, - [2636] = 2636, - [2637] = 140, - [2638] = 466, - [2639] = 143, - [2640] = 203, - [2641] = 141, - [2642] = 138, - [2643] = 139, - [2644] = 2644, - [2645] = 299, - [2646] = 141, - [2647] = 144, - [2648] = 142, - [2649] = 143, - [2650] = 300, - [2651] = 301, - [2652] = 137, - [2653] = 333, - [2654] = 589, - [2655] = 303, - [2656] = 1509, - [2657] = 304, - [2658] = 1474, - [2659] = 2659, - [2660] = 553, - [2661] = 144, - [2662] = 372, - [2663] = 2663, - [2664] = 2644, - [2665] = 305, - [2666] = 142, - [2667] = 2659, - [2668] = 307, + [2482] = 2472, + [2483] = 531, + [2484] = 2005, + [2485] = 212, + [2486] = 532, + [2487] = 2487, + [2488] = 2477, + [2489] = 2481, + [2490] = 1523, + [2491] = 218, + [2492] = 2487, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 170, + [2497] = 171, + [2498] = 495, + [2499] = 2012, + [2500] = 2494, + [2501] = 1990, + [2502] = 556, + [2503] = 2503, + [2504] = 420, + [2505] = 224, + [2506] = 418, + [2507] = 2495, + [2508] = 2508, + [2509] = 2025, + [2510] = 225, + [2511] = 172, + [2512] = 226, + [2513] = 220, + [2514] = 2514, + [2515] = 327, + [2516] = 2516, + [2517] = 328, + [2518] = 2518, + [2519] = 166, + [2520] = 495, + [2521] = 556, + [2522] = 2522, + [2523] = 2523, + [2524] = 329, + [2525] = 330, + [2526] = 331, + [2527] = 332, + [2528] = 2522, + [2529] = 2529, + [2530] = 172, + [2531] = 524, + [2532] = 525, + [2533] = 2533, + [2534] = 333, + [2535] = 334, + [2536] = 335, + [2537] = 336, + [2538] = 337, + [2539] = 2539, + [2540] = 2540, + [2541] = 338, + [2542] = 230, + [2543] = 339, + [2544] = 340, + [2545] = 341, + [2546] = 342, + [2547] = 2547, + [2548] = 343, + [2549] = 2518, + [2550] = 168, + [2551] = 2533, + [2552] = 418, + [2553] = 2553, + [2554] = 235, + [2555] = 324, + [2556] = 161, + [2557] = 531, + [2558] = 532, + [2559] = 2539, + [2560] = 2547, + [2561] = 2561, + [2562] = 225, + [2563] = 2514, + [2564] = 2561, + [2565] = 2553, + [2566] = 2516, + [2567] = 2523, + [2568] = 239, + [2569] = 346, + [2570] = 2570, + [2571] = 2571, + [2572] = 242, + [2573] = 2573, + [2574] = 214, + [2575] = 2540, + [2576] = 226, + [2577] = 221, + [2578] = 220, + [2579] = 245, + [2580] = 2516, + [2581] = 325, + [2582] = 167, + [2583] = 323, + [2584] = 216, + [2585] = 161, + [2586] = 2529, + [2587] = 420, + [2588] = 244, + [2589] = 2589, + [2590] = 2570, + [2591] = 2571, + [2592] = 326, + [2593] = 246, + [2594] = 237, + [2595] = 218, + [2596] = 163, + [2597] = 224, + [2598] = 259, + [2599] = 161, + [2600] = 262, + [2601] = 165, + [2602] = 235, + [2603] = 164, + [2604] = 162, + [2605] = 162, + [2606] = 163, + [2607] = 246, + [2608] = 168, + [2609] = 504, + [2610] = 162, + [2611] = 168, + [2612] = 167, + [2613] = 166, + [2614] = 2614, + [2615] = 2615, + [2616] = 163, + [2617] = 504, + [2618] = 2618, + [2619] = 2619, + [2620] = 2614, + [2621] = 2621, + [2622] = 2622, + [2623] = 2615, + [2624] = 167, + [2625] = 166, + [2626] = 2626, + [2627] = 2627, + [2628] = 244, + [2629] = 1460, + [2630] = 2630, + [2631] = 165, + [2632] = 162, + [2633] = 230, + [2634] = 170, + [2635] = 171, + [2636] = 237, + [2637] = 239, + [2638] = 2618, + [2639] = 2619, + [2640] = 242, + [2641] = 245, + [2642] = 163, + [2643] = 275, + [2644] = 244, + [2645] = 321, + [2646] = 276, + [2647] = 277, + [2648] = 2648, + [2649] = 245, + [2650] = 164, + [2651] = 165, + [2652] = 293, + [2653] = 296, + [2654] = 2654, + [2655] = 169, + [2656] = 164, + [2657] = 2657, + [2658] = 169, + [2659] = 2654, + [2660] = 470, + [2661] = 2661, + [2662] = 461, + [2663] = 167, + [2664] = 259, + [2665] = 2665, + [2666] = 558, + [2667] = 262, + [2668] = 2668, [2669] = 2669, - [2670] = 2670, - [2671] = 309, - [2672] = 337, - [2673] = 2669, - [2674] = 310, - [2675] = 1727, - [2676] = 311, - [2677] = 313, - [2678] = 345, - [2679] = 318, - [2680] = 324, - [2681] = 1726, - [2682] = 222, - [2683] = 232, - [2684] = 323, - [2685] = 302, - [2686] = 542, - [2687] = 515, - [2688] = 556, - [2689] = 516, - [2690] = 557, - [2691] = 503, - [2692] = 519, - [2693] = 333, - [2694] = 2694, - [2695] = 2695, - [2696] = 143, - [2697] = 564, - [2698] = 251, - [2699] = 522, - [2700] = 523, - [2701] = 335, - [2702] = 520, - [2703] = 524, - [2704] = 2704, - [2705] = 2705, - [2706] = 525, - [2707] = 526, - [2708] = 527, - [2709] = 232, - [2710] = 2710, - [2711] = 528, - [2712] = 529, - [2713] = 405, - [2714] = 530, - [2715] = 531, - [2716] = 364, - [2717] = 532, - [2718] = 533, - [2719] = 534, - [2720] = 535, - [2721] = 536, - [2722] = 537, - [2723] = 538, - [2724] = 539, - [2725] = 540, - [2726] = 541, - [2727] = 409, + [2670] = 245, + [2671] = 2671, + [2672] = 170, + [2673] = 558, + [2674] = 1559, + [2675] = 2675, + [2676] = 166, + [2677] = 535, + [2678] = 245, + [2679] = 503, + [2680] = 171, + [2681] = 463, + [2682] = 326, + [2683] = 464, + [2684] = 164, + [2685] = 165, + [2686] = 259, + [2687] = 1528, + [2688] = 327, + [2689] = 328, + [2690] = 329, + [2691] = 195, + [2692] = 330, + [2693] = 331, + [2694] = 462, + [2695] = 333, + [2696] = 334, + [2697] = 335, + [2698] = 336, + [2699] = 337, + [2700] = 338, + [2701] = 339, + [2702] = 340, + [2703] = 341, + [2704] = 342, + [2705] = 343, + [2706] = 2706, + [2707] = 262, + [2708] = 244, + [2709] = 161, + [2710] = 2706, + [2711] = 169, + [2712] = 2665, + [2713] = 244, + [2714] = 534, + [2715] = 1663, + [2716] = 195, + [2717] = 1664, + [2718] = 168, + [2719] = 170, + [2720] = 1666, + [2721] = 167, + [2722] = 166, + [2723] = 171, + [2724] = 1667, + [2725] = 168, + [2726] = 332, + [2727] = 328, [2728] = 2728, - [2729] = 2704, - [2730] = 383, - [2731] = 252, - [2732] = 300, - [2733] = 301, - [2734] = 324, - [2735] = 521, - [2736] = 517, - [2737] = 324, - [2738] = 134, - [2739] = 385, - [2740] = 253, - [2741] = 561, - [2742] = 2742, - [2743] = 2743, - [2744] = 232, - [2745] = 2745, - [2746] = 323, - [2747] = 145, - [2748] = 302, - [2749] = 518, - [2750] = 303, - [2751] = 384, - [2752] = 2695, - [2753] = 2753, - [2754] = 144, - [2755] = 304, - [2756] = 391, - [2757] = 142, - [2758] = 305, - [2759] = 222, - [2760] = 307, - [2761] = 309, - [2762] = 136, - [2763] = 139, - [2764] = 140, - [2765] = 145, - [2766] = 141, - [2767] = 183, - [2768] = 1493, - [2769] = 372, - [2770] = 310, - [2771] = 337, - [2772] = 311, - [2773] = 313, - [2774] = 250, - [2775] = 407, - [2776] = 250, - [2777] = 1514, - [2778] = 222, - [2779] = 185, - [2780] = 345, - [2781] = 251, - [2782] = 252, - [2783] = 253, - [2784] = 299, - [2785] = 318, - [2786] = 2705, - [2787] = 514, - [2788] = 135, - [2789] = 253, - [2790] = 421, - [2791] = 138, - [2792] = 409, - [2793] = 250, - [2794] = 364, - [2795] = 185, - [2796] = 2796, + [2729] = 593, + [2730] = 339, + [2731] = 168, + [2732] = 340, + [2733] = 420, + [2734] = 2734, + [2735] = 321, + [2736] = 392, + [2737] = 337, + [2738] = 199, + [2739] = 341, + [2740] = 2740, + [2741] = 167, + [2742] = 172, + [2743] = 508, + [2744] = 166, + [2745] = 276, + [2746] = 214, + [2747] = 514, + [2748] = 512, + [2749] = 619, + [2750] = 2750, + [2751] = 216, + [2752] = 587, + [2753] = 172, + [2754] = 169, + [2755] = 1519, + [2756] = 559, + [2757] = 321, + [2758] = 588, + [2759] = 560, + [2760] = 563, + [2761] = 162, + [2762] = 259, + [2763] = 195, + [2764] = 511, + [2765] = 564, + [2766] = 161, + [2767] = 557, + [2768] = 262, + [2769] = 170, + [2770] = 1523, + [2771] = 2771, + [2772] = 259, + [2773] = 343, + [2774] = 342, + [2775] = 566, + [2776] = 572, + [2777] = 521, + [2778] = 276, + [2779] = 396, + [2780] = 573, + [2781] = 574, + [2782] = 575, + [2783] = 2783, + [2784] = 613, + [2785] = 592, + [2786] = 577, + [2787] = 495, + [2788] = 556, + [2789] = 277, + [2790] = 579, + [2791] = 277, + [2792] = 524, + [2793] = 525, + [2794] = 615, + [2795] = 199, + [2796] = 262, [2797] = 2797, - [2798] = 2798, - [2799] = 2796, - [2800] = 135, - [2801] = 2801, - [2802] = 203, - [2803] = 251, - [2804] = 372, - [2805] = 136, - [2806] = 137, - [2807] = 139, - [2808] = 206, - [2809] = 253, - [2810] = 419, - [2811] = 405, - [2812] = 183, - [2813] = 372, - [2814] = 2814, - [2815] = 203, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 251, - [2820] = 140, - [2821] = 466, - [2822] = 383, - [2823] = 384, - [2824] = 445, - [2825] = 2818, - [2826] = 464, - [2827] = 385, - [2828] = 2797, - [2829] = 391, - [2830] = 422, - [2831] = 145, - [2832] = 423, - [2833] = 141, - [2834] = 185, - [2835] = 1270, - [2836] = 2836, - [2837] = 2837, - [2838] = 250, - [2839] = 206, - [2840] = 2836, - [2841] = 252, - [2842] = 439, - [2843] = 185, - [2844] = 191, - [2845] = 438, - [2846] = 2801, - [2847] = 252, - [2848] = 183, - [2849] = 183, - [2850] = 418, - [2851] = 2814, - [2852] = 2852, - [2853] = 407, - [2854] = 193, - [2855] = 204, - [2856] = 191, - [2857] = 203, - [2858] = 569, - [2859] = 549, - [2860] = 324, - [2861] = 2861, - [2862] = 570, - [2863] = 572, - [2864] = 232, - [2865] = 504, - [2866] = 526, - [2867] = 530, - [2868] = 555, - [2869] = 527, - [2870] = 222, - [2871] = 193, - [2872] = 2872, - [2873] = 516, - [2874] = 528, - [2875] = 558, - [2876] = 573, - [2877] = 522, - [2878] = 536, - [2879] = 183, - [2880] = 2880, - [2881] = 531, - [2882] = 539, - [2883] = 185, - [2884] = 574, - [2885] = 191, - [2886] = 532, - [2887] = 575, - [2888] = 1270, - [2889] = 232, - [2890] = 576, - [2891] = 540, - [2892] = 183, - [2893] = 139, - [2894] = 193, - [2895] = 185, - [2896] = 193, - [2897] = 534, - [2898] = 578, - [2899] = 201, - [2900] = 563, - [2901] = 567, - [2902] = 140, - [2903] = 222, - [2904] = 144, - [2905] = 142, - [2906] = 529, - [2907] = 542, - [2908] = 541, - [2909] = 206, - [2910] = 138, - [2911] = 191, - [2912] = 208, - [2913] = 519, - [2914] = 141, - [2915] = 524, - [2916] = 535, - [2917] = 1270, - [2918] = 571, - [2919] = 537, - [2920] = 205, - [2921] = 538, - [2922] = 137, - [2923] = 525, - [2924] = 143, - [2925] = 523, - [2926] = 568, - [2927] = 533, - [2928] = 439, - [2929] = 1442, - [2930] = 201, - [2931] = 139, - [2932] = 464, - [2933] = 232, - [2934] = 205, - [2935] = 143, - [2936] = 144, - [2937] = 2937, - [2938] = 208, - [2939] = 204, - [2940] = 205, - [2941] = 251, - [2942] = 193, - [2943] = 140, - [2944] = 364, - [2945] = 252, - [2946] = 2946, - [2947] = 438, - [2948] = 372, - [2949] = 201, - [2950] = 324, - [2951] = 2951, - [2952] = 253, - [2953] = 2953, - [2954] = 208, - [2955] = 145, - [2956] = 2956, - [2957] = 2957, - [2958] = 2958, - [2959] = 251, - [2960] = 204, - [2961] = 142, - [2962] = 205, - [2963] = 208, - [2964] = 2964, + [2798] = 338, + [2799] = 2799, + [2800] = 531, + [2801] = 532, + [2802] = 384, + [2803] = 385, + [2804] = 580, + [2805] = 386, + [2806] = 275, + [2807] = 171, + [2808] = 581, + [2809] = 523, + [2810] = 327, + [2811] = 501, + [2812] = 397, + [2813] = 336, + [2814] = 582, + [2815] = 585, + [2816] = 329, + [2817] = 330, + [2818] = 331, + [2819] = 2819, + [2820] = 332, + [2821] = 275, + [2822] = 2771, + [2823] = 163, + [2824] = 333, + [2825] = 2799, + [2826] = 195, + [2827] = 2734, + [2828] = 418, + [2829] = 334, + [2830] = 335, + [2831] = 2831, + [2832] = 326, + [2833] = 492, + [2834] = 216, + [2835] = 199, + [2836] = 418, + [2837] = 396, + [2838] = 218, + [2839] = 245, + [2840] = 420, + [2841] = 397, + [2842] = 470, + [2843] = 245, + [2844] = 275, + [2845] = 321, + [2846] = 2846, + [2847] = 276, + [2848] = 277, + [2849] = 275, + [2850] = 321, + [2851] = 2851, + [2852] = 276, + [2853] = 2853, + [2854] = 277, + [2855] = 244, + [2856] = 164, + [2857] = 214, + [2858] = 172, + [2859] = 214, + [2860] = 462, + [2861] = 162, + [2862] = 463, + [2863] = 464, + [2864] = 503, + [2865] = 384, + [2866] = 385, + [2867] = 163, + [2868] = 386, + [2869] = 168, + [2870] = 167, + [2871] = 166, + [2872] = 244, + [2873] = 1287, + [2874] = 214, + [2875] = 392, + [2876] = 216, + [2877] = 216, + [2878] = 199, + [2879] = 487, + [2880] = 488, + [2881] = 224, + [2882] = 489, + [2883] = 491, + [2884] = 2884, + [2885] = 2885, + [2886] = 165, + [2887] = 2887, + [2888] = 168, + [2889] = 216, + [2890] = 169, + [2891] = 2887, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2895, + [2896] = 2896, + [2897] = 242, + [2898] = 170, + [2899] = 602, + [2900] = 171, + [2901] = 195, + [2902] = 575, + [2903] = 557, + [2904] = 2895, + [2905] = 2896, + [2906] = 580, + [2907] = 581, + [2908] = 262, + [2909] = 224, + [2910] = 218, + [2911] = 577, + [2912] = 218, + [2913] = 587, + [2914] = 579, + [2915] = 588, + [2916] = 585, + [2917] = 164, + [2918] = 165, + [2919] = 2919, + [2920] = 2920, + [2921] = 592, + [2922] = 595, + [2923] = 259, + [2924] = 560, + [2925] = 504, + [2926] = 259, + [2927] = 563, + [2928] = 2892, + [2929] = 214, + [2930] = 615, + [2931] = 262, + [2932] = 613, + [2933] = 601, + [2934] = 224, + [2935] = 593, + [2936] = 600, + [2937] = 1287, + [2938] = 166, + [2939] = 218, + [2940] = 603, + [2941] = 245, + [2942] = 604, + [2943] = 1287, + [2944] = 605, + [2945] = 606, + [2946] = 216, + [2947] = 607, + [2948] = 608, + [2949] = 609, + [2950] = 230, + [2951] = 566, + [2952] = 572, + [2953] = 239, + [2954] = 619, + [2955] = 559, + [2956] = 237, + [2957] = 573, + [2958] = 2893, + [2959] = 596, + [2960] = 597, + [2961] = 598, + [2962] = 599, + [2963] = 2894, + [2964] = 574, [2965] = 2965, - [2966] = 193, - [2967] = 252, - [2968] = 222, - [2969] = 585, - [2970] = 253, - [2971] = 250, - [2972] = 405, - [2973] = 141, + [2966] = 214, + [2967] = 564, + [2968] = 167, + [2969] = 582, + [2970] = 224, + [2971] = 244, + [2972] = 2972, + [2973] = 195, [2974] = 2974, - [2975] = 204, - [2976] = 445, - [2977] = 466, - [2978] = 201, - [2979] = 250, - [2980] = 191, - [2981] = 2861, - [2982] = 191, - [2983] = 540, - [2984] = 519, - [2985] = 522, - [2986] = 523, - [2987] = 524, - [2988] = 525, - [2989] = 526, - [2990] = 527, - [2991] = 528, - [2992] = 529, - [2993] = 530, - [2994] = 531, - [2995] = 532, - [2996] = 533, - [2997] = 534, - [2998] = 535, - [2999] = 536, - [3000] = 537, - [3001] = 538, - [3002] = 539, - [3003] = 364, - [3004] = 405, - [3005] = 2880, - [3006] = 1442, - [3007] = 139, - [3008] = 140, - [3009] = 2872, - [3010] = 141, - [3011] = 145, - [3012] = 1442, - [3013] = 549, - [3014] = 555, - [3015] = 558, - [3016] = 563, - [3017] = 567, - [3018] = 568, - [3019] = 569, - [3020] = 570, - [3021] = 571, - [3022] = 572, - [3023] = 542, - [3024] = 574, - [3025] = 575, - [3026] = 576, - [3027] = 578, - [3028] = 3028, - [3029] = 3029, - [3030] = 3030, - [3031] = 3031, - [3032] = 201, - [3033] = 208, - [3034] = 204, - [3035] = 205, - [3036] = 201, - [3037] = 250, - [3038] = 3038, - [3039] = 208, - [3040] = 251, - [3041] = 204, - [3042] = 252, - [3043] = 205, - [3044] = 253, - [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 3048, - [3049] = 3049, - [3050] = 3050, - [3051] = 372, + [2975] = 262, + [2976] = 462, + [2977] = 237, + [2978] = 230, + [2979] = 218, + [2980] = 239, + [2981] = 2981, + [2982] = 242, + [2983] = 275, + [2984] = 2965, + [2985] = 2985, + [2986] = 276, + [2987] = 170, + [2988] = 171, + [2989] = 259, + [2990] = 239, + [2991] = 199, + [2992] = 1436, + [2993] = 2993, + [2994] = 463, + [2995] = 168, + [2996] = 237, + [2997] = 275, + [2998] = 321, + [2999] = 218, + [3000] = 169, + [3001] = 558, + [3002] = 321, + [3003] = 464, + [3004] = 470, + [3005] = 242, + [3006] = 166, + [3007] = 276, + [3008] = 3008, + [3009] = 224, + [3010] = 172, + [3011] = 503, + [3012] = 239, + [3013] = 167, + [3014] = 242, + [3015] = 3015, + [3016] = 277, + [3017] = 224, + [3018] = 396, + [3019] = 237, + [3020] = 3020, + [3021] = 397, + [3022] = 3022, + [3023] = 230, + [3024] = 230, + [3025] = 3025, + [3026] = 277, + [3027] = 600, + [3028] = 321, + [3029] = 559, + [3030] = 239, + [3031] = 605, + [3032] = 606, + [3033] = 560, + [3034] = 563, + [3035] = 601, + [3036] = 276, + [3037] = 242, + [3038] = 607, + [3039] = 564, + [3040] = 277, + [3041] = 557, + [3042] = 609, + [3043] = 566, + [3044] = 572, + [3045] = 573, + [3046] = 574, + [3047] = 575, + [3048] = 577, + [3049] = 579, + [3050] = 580, + [3051] = 581, [3052] = 3052, - [3053] = 516, - [3054] = 541, - [3055] = 573, - [3056] = 3056, - [3057] = 3057, + [3053] = 582, + [3054] = 585, + [3055] = 2920, + [3056] = 168, + [3057] = 167, [3058] = 3058, - [3059] = 3059, + [3059] = 595, [3060] = 3060, - [3061] = 3061, + [3061] = 166, [3062] = 3062, - [3063] = 3063, - [3064] = 2837, + [3063] = 199, + [3064] = 2919, [3065] = 3065, - [3066] = 3066, - [3067] = 3062, - [3068] = 3063, - [3069] = 3065, - [3070] = 3066, - [3071] = 184, - [3072] = 3072, - [3073] = 3073, - [3074] = 3057, - [3075] = 3056, - [3076] = 3072, - [3077] = 3073, - [3078] = 3078, - [3079] = 200, - [3080] = 3058, - [3081] = 3058, - [3082] = 189, - [3083] = 199, - [3084] = 190, - [3085] = 445, - [3086] = 135, - [3087] = 3087, - [3088] = 464, - [3089] = 438, - [3090] = 136, - [3091] = 145, - [3092] = 436, - [3093] = 439, + [3066] = 230, + [3067] = 396, + [3068] = 596, + [3069] = 597, + [3070] = 1436, + [3071] = 613, + [3072] = 172, + [3073] = 237, + [3074] = 598, + [3075] = 599, + [3076] = 397, + [3077] = 239, + [3078] = 230, + [3079] = 615, + [3080] = 593, + [3081] = 3081, + [3082] = 603, + [3083] = 587, + [3084] = 275, + [3085] = 604, + [3086] = 602, + [3087] = 237, + [3088] = 588, + [3089] = 3089, + [3090] = 3090, + [3091] = 242, + [3092] = 619, + [3093] = 3093, [3094] = 3094, - [3095] = 203, - [3096] = 140, - [3097] = 141, - [3098] = 439, - [3099] = 2142, - [3100] = 2143, - [3101] = 464, - [3102] = 438, - [3103] = 439, - [3104] = 1474, - [3105] = 3105, - [3106] = 436, - [3107] = 134, - [3108] = 134, - [3109] = 438, - [3110] = 436, - [3111] = 464, - [3112] = 206, - [3113] = 138, - [3114] = 137, - [3115] = 445, - [3116] = 2070, - [3117] = 1995, - [3118] = 1996, - [3119] = 445, - [3120] = 139, - [3121] = 2142, - [3122] = 143, - [3123] = 144, - [3124] = 142, - [3125] = 1474, - [3126] = 2070, - [3127] = 3127, - [3128] = 1995, - [3129] = 1996, - [3130] = 2070, - [3131] = 222, - [3132] = 2143, - [3133] = 3133, - [3134] = 3134, - [3135] = 1632, + [3095] = 3095, + [3096] = 3096, + [3097] = 1436, + [3098] = 592, + [3099] = 608, + [3100] = 3100, + [3101] = 3101, + [3102] = 3102, + [3103] = 3103, + [3104] = 3104, + [3105] = 3102, + [3106] = 3106, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, + [3110] = 2846, + [3111] = 3111, + [3112] = 3104, + [3113] = 3108, + [3114] = 3109, + [3115] = 3115, + [3116] = 212, + [3117] = 3115, + [3118] = 3118, + [3119] = 3101, + [3120] = 3118, + [3121] = 3103, + [3122] = 3122, + [3123] = 3106, + [3124] = 225, + [3125] = 3106, + [3126] = 221, + [3127] = 226, + [3128] = 220, + [3129] = 461, + [3130] = 172, + [3131] = 163, + [3132] = 162, + [3133] = 463, + [3134] = 464, + [3135] = 470, [3136] = 3136, - [3137] = 3137, - [3138] = 232, - [3139] = 2187, - [3140] = 2188, - [3141] = 2189, - [3142] = 2190, - [3143] = 2191, - [3144] = 2192, - [3145] = 2193, - [3146] = 2194, - [3147] = 2195, - [3148] = 2196, - [3149] = 2197, - [3150] = 2198, - [3151] = 2262, - [3152] = 2267, - [3153] = 2270, - [3154] = 2278, - [3155] = 2280, - [3156] = 2282, - [3157] = 2286, - [3158] = 2288, - [3159] = 2294, - [3160] = 2296, - [3161] = 2303, - [3162] = 2312, - [3163] = 3133, - [3164] = 2232, - [3165] = 2239, - [3166] = 2244, - [3167] = 2245, - [3168] = 2247, - [3169] = 2249, - [3170] = 2253, - [3171] = 2255, - [3172] = 2257, - [3173] = 2258, - [3174] = 2265, - [3175] = 2268, - [3176] = 2272, - [3177] = 2276, - [3178] = 2279, - [3179] = 2281, - [3180] = 2283, - [3181] = 2284, - [3182] = 2287, - [3183] = 2289, - [3184] = 2290, - [3185] = 2291, - [3186] = 2293, - [3187] = 2295, - [3188] = 2298, - [3189] = 2300, - [3190] = 2302, - [3191] = 2304, - [3192] = 2305, - [3193] = 2309, - [3194] = 2311, - [3195] = 2313, - [3196] = 2315, - [3197] = 1474, - [3198] = 2317, - [3199] = 2319, - [3200] = 2216, - [3201] = 2229, - [3202] = 2248, - [3203] = 2271, - [3204] = 2307, - [3205] = 2164, - [3206] = 2172, - [3207] = 2175, - [3208] = 2181, - [3209] = 2209, - [3210] = 2211, - [3211] = 2214, - [3212] = 2237, - [3213] = 2241, - [3214] = 2246, - [3215] = 2252, - [3216] = 2261, - [3217] = 2269, - [3218] = 2273, - [3219] = 2285, - [3220] = 2299, - [3221] = 2308, - [3222] = 2314, - [3223] = 2318, - [3224] = 2170, - [3225] = 2174, - [3226] = 2199, - [3227] = 2203, - [3228] = 2208, - [3229] = 2210, - [3230] = 2228, - [3231] = 2233, - [3232] = 2238, - [3233] = 2240, - [3234] = 2256, - [3235] = 2260, - [3236] = 2169, - [3237] = 2171, - [3238] = 2173, - [3239] = 2176, - [3240] = 2177, - [3241] = 2178, - [3242] = 2183, - [3243] = 2186, - [3244] = 2200, - [3245] = 2202, - [3246] = 2204, - [3247] = 2205, + [3137] = 462, + [3138] = 461, + [3139] = 245, + [3140] = 462, + [3141] = 464, + [3142] = 463, + [3143] = 464, + [3144] = 463, + [3145] = 167, + [3146] = 166, + [3147] = 470, + [3148] = 3148, + [3149] = 2094, + [3150] = 161, + [3151] = 470, + [3152] = 244, + [3153] = 3153, + [3154] = 161, + [3155] = 2095, + [3156] = 461, + [3157] = 164, + [3158] = 1559, + [3159] = 168, + [3160] = 2085, + [3161] = 165, + [3162] = 2086, + [3163] = 462, + [3164] = 2123, + [3165] = 171, + [3166] = 2323, + [3167] = 2345, + [3168] = 2378, + [3169] = 2236, + [3170] = 2297, + [3171] = 2247, + [3172] = 2256, + [3173] = 2262, + [3174] = 2276, + [3175] = 2301, + [3176] = 2210, + [3177] = 2307, + [3178] = 2317, + [3179] = 2202, + [3180] = 2321, + [3181] = 2327, + [3182] = 2331, + [3183] = 2215, + [3184] = 2334, + [3185] = 2232, + [3186] = 2209, + [3187] = 2248, + [3188] = 2266, + [3189] = 2284, + [3190] = 2294, + [3191] = 2320, + [3192] = 2326, + [3193] = 2336, + [3194] = 2347, + [3195] = 2362, + [3196] = 2268, + [3197] = 2325, + [3198] = 2282, + [3199] = 2346, + [3200] = 2274, + [3201] = 2305, + [3202] = 2212, + [3203] = 2255, + [3204] = 2328, + [3205] = 2198, + [3206] = 2213, + [3207] = 2234, + [3208] = 2258, + [3209] = 2271, + [3210] = 2293, + [3211] = 2306, + [3212] = 2335, + [3213] = 2371, + [3214] = 2204, + [3215] = 2229, + [3216] = 2235, + [3217] = 2252, + [3218] = 2260, + [3219] = 2269, + [3220] = 2279, + [3221] = 2298, + [3222] = 2245, + [3223] = 2251, + [3224] = 2253, + [3225] = 2257, + [3226] = 2259, + [3227] = 2273, + [3228] = 2275, + [3229] = 2278, + [3230] = 2281, + [3231] = 2289, + [3232] = 2292, + [3233] = 2197, + [3234] = 2208, + [3235] = 2219, + [3236] = 2250, + [3237] = 2263, + [3238] = 2363, + [3239] = 2302, + [3240] = 1559, + [3241] = 3241, + [3242] = 169, + [3243] = 3243, + [3244] = 259, + [3245] = 2094, + [3246] = 2095, + [3247] = 3247, [3248] = 3248, - [3249] = 3133, - [3250] = 2142, - [3251] = 2143, - [3252] = 3252, - [3253] = 3253, - [3254] = 1995, - [3255] = 1996, - [3256] = 3256, - [3257] = 3257, - [3258] = 2316, - [3259] = 405, - [3260] = 3260, - [3261] = 251, - [3262] = 252, - [3263] = 183, - [3264] = 1632, - [3265] = 185, + [3249] = 2085, + [3250] = 2086, + [3251] = 2329, + [3252] = 2342, + [3253] = 2354, + [3254] = 2203, + [3255] = 3255, + [3256] = 2365, + [3257] = 2370, + [3258] = 2123, + [3259] = 2123, + [3260] = 2094, + [3261] = 2206, + [3262] = 2220, + [3263] = 2225, + [3264] = 2308, + [3265] = 2353, [3266] = 3266, - [3267] = 3078, - [3268] = 3059, - [3269] = 3269, - [3270] = 3061, - [3271] = 1632, - [3272] = 253, - [3273] = 250, - [3274] = 3274, - [3275] = 3269, - [3276] = 3274, - [3277] = 2187, - [3278] = 2188, - [3279] = 2189, - [3280] = 2190, - [3281] = 2191, - [3282] = 2192, - [3283] = 3266, - [3284] = 2193, - [3285] = 2194, - [3286] = 3286, - [3287] = 2195, - [3288] = 2196, - [3289] = 3289, - [3290] = 2197, - [3291] = 2198, - [3292] = 3292, - [3293] = 364, - [3294] = 3260, - [3295] = 3295, - [3296] = 183, - [3297] = 185, - [3298] = 206, - [3299] = 183, - [3300] = 1270, - [3301] = 185, - [3302] = 3295, - [3303] = 134, - [3304] = 183, - [3305] = 191, - [3306] = 185, - [3307] = 193, - [3308] = 216, - [3309] = 202, - [3310] = 391, - [3311] = 3105, - [3312] = 193, - [3313] = 193, - [3314] = 1270, - [3315] = 201, - [3316] = 191, - [3317] = 3317, + [3267] = 3267, + [3268] = 2366, + [3269] = 170, + [3270] = 3270, + [3271] = 3271, + [3272] = 3272, + [3273] = 1791, + [3274] = 2085, + [3275] = 2086, + [3276] = 2330, + [3277] = 3247, + [3278] = 2095, + [3279] = 3247, + [3280] = 2214, + [3281] = 2218, + [3282] = 2244, + [3283] = 2261, + [3284] = 2280, + [3285] = 262, + [3286] = 2285, + [3287] = 2295, + [3288] = 2300, + [3289] = 2318, + [3290] = 2324, + [3291] = 2332, + [3292] = 2360, + [3293] = 2380, + [3294] = 2246, + [3295] = 2277, + [3296] = 2216, + [3297] = 2299, + [3298] = 1559, + [3299] = 2309, + [3300] = 2341, + [3301] = 2200, + [3302] = 2201, + [3303] = 3303, + [3304] = 2302, + [3305] = 3305, + [3306] = 216, + [3307] = 1791, + [3308] = 3308, + [3309] = 3309, + [3310] = 1791, + [3311] = 3311, + [3312] = 3312, + [3313] = 275, + [3314] = 321, + [3315] = 396, + [3316] = 214, + [3317] = 277, [3318] = 3318, - [3319] = 383, - [3320] = 135, - [3321] = 136, - [3322] = 183, - [3323] = 191, - [3324] = 193, - [3325] = 205, - [3326] = 191, - [3327] = 185, - [3328] = 3328, - [3329] = 3328, - [3330] = 184, - [3331] = 384, - [3332] = 385, - [3333] = 208, - [3334] = 204, - [3335] = 3335, - [3336] = 3335, - [3337] = 1270, - [3338] = 204, - [3339] = 3339, - [3340] = 208, - [3341] = 201, - [3342] = 204, - [3343] = 205, - [3344] = 549, - [3345] = 208, - [3346] = 139, - [3347] = 140, - [3348] = 141, - [3349] = 204, - [3350] = 138, - [3351] = 137, - [3352] = 205, - [3353] = 504, - [3354] = 571, - [3355] = 572, - [3356] = 573, - [3357] = 3357, - [3358] = 575, - [3359] = 576, - [3360] = 578, - [3361] = 199, - [3362] = 200, - [3363] = 190, - [3364] = 3127, - [3365] = 208, - [3366] = 558, - [3367] = 563, - [3368] = 201, - [3369] = 567, - [3370] = 1195, - [3371] = 191, - [3372] = 3372, - [3373] = 189, - [3374] = 3374, - [3375] = 1270, - [3376] = 193, - [3377] = 3248, - [3378] = 205, - [3379] = 555, - [3380] = 568, - [3381] = 569, - [3382] = 201, - [3383] = 570, - [3384] = 574, - [3385] = 318, - [3386] = 144, - [3387] = 142, - [3388] = 309, - [3389] = 201, - [3390] = 337, - [3391] = 299, - [3392] = 310, - [3393] = 585, - [3394] = 216, - [3395] = 202, - [3396] = 208, - [3397] = 300, - [3398] = 303, - [3399] = 311, - [3400] = 134, - [3401] = 205, - [3402] = 305, - [3403] = 345, - [3404] = 304, - [3405] = 203, - [3406] = 301, - [3407] = 206, - [3408] = 323, + [3319] = 3303, + [3320] = 397, + [3321] = 3107, + [3322] = 2330, + [3323] = 2297, + [3324] = 2201, + [3325] = 3318, + [3326] = 2202, + [3327] = 2215, + [3328] = 2232, + [3329] = 2208, + [3330] = 2219, + [3331] = 2250, + [3332] = 276, + [3333] = 3309, + [3334] = 2263, + [3335] = 3122, + [3336] = 3100, + [3337] = 2363, + [3338] = 3305, + [3339] = 214, + [3340] = 214, + [3341] = 3341, + [3342] = 216, + [3343] = 161, + [3344] = 3341, + [3345] = 224, + [3346] = 1287, + [3347] = 218, + [3348] = 216, + [3349] = 214, + [3350] = 216, + [3351] = 246, + [3352] = 245, + [3353] = 235, + [3354] = 214, + [3355] = 224, + [3356] = 3356, + [3357] = 3153, + [3358] = 3358, + [3359] = 242, + [3360] = 218, + [3361] = 1287, + [3362] = 212, + [3363] = 218, + [3364] = 163, + [3365] = 230, + [3366] = 386, + [3367] = 392, + [3368] = 218, + [3369] = 239, + [3370] = 216, + [3371] = 162, + [3372] = 3358, + [3373] = 237, + [3374] = 3356, + [3375] = 3375, + [3376] = 224, + [3377] = 384, + [3378] = 3378, + [3379] = 385, + [3380] = 224, + [3381] = 603, + [3382] = 237, + [3383] = 1287, + [3384] = 224, + [3385] = 239, + [3386] = 239, + [3387] = 230, + [3388] = 242, + [3389] = 3248, + [3390] = 504, + [3391] = 1233, + [3392] = 242, + [3393] = 599, + [3394] = 239, + [3395] = 602, + [3396] = 596, + [3397] = 226, + [3398] = 595, + [3399] = 3399, + [3400] = 237, + [3401] = 609, + [3402] = 597, + [3403] = 1287, + [3404] = 230, + [3405] = 221, + [3406] = 164, + [3407] = 165, + [3408] = 230, [3409] = 3409, - [3410] = 344, - [3411] = 342, - [3412] = 307, - [3413] = 204, - [3414] = 302, - [3415] = 333, - [3416] = 314, - [3417] = 335, - [3418] = 143, - [3419] = 343, - [3420] = 313, - [3421] = 3421, - [3422] = 2837, - [3423] = 304, - [3424] = 307, - [3425] = 310, - [3426] = 232, - [3427] = 541, - [3428] = 309, - [3429] = 305, - [3430] = 299, - [3431] = 323, - [3432] = 311, - [3433] = 222, - [3434] = 345, - [3435] = 342, + [3410] = 3410, + [3411] = 220, + [3412] = 3412, + [3413] = 225, + [3414] = 242, + [3415] = 600, + [3416] = 3255, + [3417] = 601, + [3418] = 168, + [3419] = 604, + [3420] = 166, + [3421] = 605, + [3422] = 218, + [3423] = 606, + [3424] = 237, + [3425] = 607, + [3426] = 608, + [3427] = 598, + [3428] = 167, + [3429] = 330, + [3430] = 242, + [3431] = 237, + [3432] = 326, + [3433] = 230, + [3434] = 169, + [3435] = 336, [3436] = 335, - [3437] = 542, - [3438] = 3438, - [3439] = 318, - [3440] = 145, - [3441] = 337, - [3442] = 135, - [3443] = 300, - [3444] = 301, - [3445] = 343, - [3446] = 302, - [3447] = 136, - [3448] = 313, - [3449] = 303, - [3450] = 134, - [3451] = 344, - [3452] = 333, - [3453] = 314, - [3454] = 2837, - [3455] = 135, - [3456] = 136, - [3457] = 250, - [3458] = 253, - [3459] = 252, - [3460] = 405, - [3461] = 251, - [3462] = 364, - [3463] = 3463, - [3464] = 2837, - [3465] = 398, - [3466] = 3466, - [3467] = 436, - [3468] = 464, - [3469] = 438, - [3470] = 439, - [3471] = 139, - [3472] = 140, - [3473] = 141, + [3437] = 327, + [3438] = 239, + [3439] = 337, + [3440] = 338, + [3441] = 343, + [3442] = 331, + [3443] = 235, + [3444] = 323, + [3445] = 334, + [3446] = 244, + [3447] = 171, + [3448] = 340, + [3449] = 341, + [3450] = 161, + [3451] = 329, + [3452] = 324, + [3453] = 3453, + [3454] = 558, + [3455] = 325, + [3456] = 246, + [3457] = 333, + [3458] = 339, + [3459] = 332, + [3460] = 245, + [3461] = 346, + [3462] = 342, + [3463] = 328, + [3464] = 170, + [3465] = 588, + [3466] = 337, + [3467] = 341, + [3468] = 161, + [3469] = 324, + [3470] = 343, + [3471] = 342, + [3472] = 172, + [3473] = 331, [3474] = 3474, - [3475] = 445, - [3476] = 138, - [3477] = 137, - [3478] = 134, - [3479] = 3479, - [3480] = 206, - [3481] = 1961, - [3482] = 1379, - [3483] = 135, - [3484] = 3484, - [3485] = 3485, - [3486] = 3486, - [3487] = 136, - [3488] = 138, - [3489] = 1474, - [3490] = 464, - [3491] = 144, - [3492] = 142, - [3493] = 438, - [3494] = 445, - [3495] = 464, - [3496] = 438, - [3497] = 439, - [3498] = 439, - [3499] = 3499, - [3500] = 464, - [3501] = 445, - [3502] = 438, - [3503] = 439, - [3504] = 143, - [3505] = 398, - [3506] = 216, - [3507] = 202, - [3508] = 466, - [3509] = 139, - [3510] = 140, - [3511] = 141, - [3512] = 1458, - [3513] = 445, - [3514] = 1474, - [3515] = 436, - [3516] = 137, - [3517] = 3517, - [3518] = 1458, - [3519] = 398, - [3520] = 436, - [3521] = 1498, - [3522] = 1509, - [3523] = 2273, - [3524] = 436, - [3525] = 1721, - [3526] = 557, - [3527] = 445, - [3528] = 202, - [3529] = 391, - [3530] = 3421, - [3531] = 561, - [3532] = 564, - [3533] = 556, - [3534] = 541, - [3535] = 542, - [3536] = 383, - [3537] = 384, - [3538] = 385, - [3539] = 3438, - [3540] = 1726, - [3541] = 407, - [3542] = 589, - [3543] = 409, - [3544] = 1727, - [3545] = 553, - [3546] = 143, - [3547] = 438, - [3548] = 439, - [3549] = 2262, - [3550] = 2267, - [3551] = 2270, - [3552] = 2278, - [3553] = 2280, - [3554] = 2282, - [3555] = 2286, - [3556] = 2288, - [3557] = 2294, - [3558] = 2296, - [3559] = 2303, - [3560] = 2312, - [3561] = 145, - [3562] = 2232, - [3563] = 2239, - [3564] = 2244, - [3565] = 2245, - [3566] = 2247, - [3567] = 2249, - [3568] = 2253, - [3569] = 2255, - [3570] = 2257, - [3571] = 2258, - [3572] = 2265, - [3573] = 2268, - [3574] = 2272, - [3575] = 2276, - [3576] = 2279, - [3577] = 2281, - [3578] = 2283, - [3579] = 2284, - [3580] = 2287, - [3581] = 2289, - [3582] = 2290, - [3583] = 2291, - [3584] = 2293, - [3585] = 2295, - [3586] = 2298, - [3587] = 2300, - [3588] = 2302, - [3589] = 2304, - [3590] = 2305, - [3591] = 2309, - [3592] = 2311, - [3593] = 2313, - [3594] = 2315, - [3595] = 2316, - [3596] = 2317, - [3597] = 2319, - [3598] = 2216, - [3599] = 2229, - [3600] = 2248, - [3601] = 2271, - [3602] = 2307, - [3603] = 2164, - [3604] = 2172, - [3605] = 2175, - [3606] = 2181, - [3607] = 2209, - [3608] = 2211, - [3609] = 2214, - [3610] = 2237, - [3611] = 2241, - [3612] = 2246, - [3613] = 2252, - [3614] = 2261, - [3615] = 2269, - [3616] = 436, - [3617] = 2285, - [3618] = 2299, - [3619] = 2308, - [3620] = 2314, - [3621] = 2318, - [3622] = 2170, - [3623] = 2174, - [3624] = 2199, - [3625] = 2203, - [3626] = 2208, - [3627] = 2210, - [3628] = 2228, - [3629] = 2233, - [3630] = 1514, - [3631] = 2240, - [3632] = 2256, - [3633] = 2260, - [3634] = 2169, - [3635] = 2171, - [3636] = 2173, - [3637] = 2176, - [3638] = 2177, - [3639] = 2178, - [3640] = 2183, - [3641] = 2186, - [3642] = 2200, - [3643] = 2202, - [3644] = 2204, - [3645] = 2205, - [3646] = 1493, - [3647] = 144, - [3648] = 514, - [3649] = 515, - [3650] = 516, - [3651] = 517, - [3652] = 518, - [3653] = 519, - [3654] = 520, - [3655] = 521, - [3656] = 522, - [3657] = 523, - [3658] = 524, - [3659] = 525, - [3660] = 526, - [3661] = 527, - [3662] = 528, - [3663] = 529, - [3664] = 530, - [3665] = 531, - [3666] = 532, - [3667] = 533, - [3668] = 534, - [3669] = 535, - [3670] = 536, - [3671] = 537, - [3672] = 538, - [3673] = 539, - [3674] = 540, - [3675] = 503, - [3676] = 2187, - [3677] = 2188, - [3678] = 2189, - [3679] = 2190, - [3680] = 2191, - [3681] = 2192, - [3682] = 2193, - [3683] = 2194, - [3684] = 2195, - [3685] = 2196, - [3686] = 2197, - [3687] = 2198, - [3688] = 1728, - [3689] = 1719, - [3690] = 1729, - [3691] = 142, - [3692] = 216, - [3693] = 1720, - [3694] = 1474, - [3695] = 1722, - [3696] = 1723, - [3697] = 464, - [3698] = 2238, - [3699] = 3699, - [3700] = 3700, - [3701] = 3701, - [3702] = 3702, - [3703] = 3703, - [3704] = 3704, - [3705] = 3059, - [3706] = 3706, - [3707] = 3061, - [3708] = 3708, - [3709] = 3709, - [3710] = 3710, - [3711] = 3711, - [3712] = 3712, - [3713] = 3713, - [3714] = 3714, - [3715] = 3078, - [3716] = 1474, - [3717] = 3717, - [3718] = 3718, - [3719] = 3719, - [3720] = 3720, - [3721] = 3721, - [3722] = 3722, - [3723] = 3723, - [3724] = 3724, - [3725] = 3725, - [3726] = 409, - [3727] = 3722, - [3728] = 3728, - [3729] = 3729, - [3730] = 1474, - [3731] = 3731, - [3732] = 3732, - [3733] = 3731, - [3734] = 3728, - [3735] = 3731, - [3736] = 3728, - [3737] = 407, - [3738] = 3738, - [3739] = 3739, - [3740] = 2191, - [3741] = 2196, - [3742] = 2197, - [3743] = 2198, - [3744] = 3744, - [3745] = 2192, - [3746] = 2191, - [3747] = 2193, - [3748] = 3748, - [3749] = 2190, - [3750] = 2194, - [3751] = 2197, - [3752] = 2195, + [3475] = 323, + [3476] = 162, + [3477] = 327, + [3478] = 335, + [3479] = 346, + [3480] = 259, + [3481] = 328, + [3482] = 336, + [3483] = 587, + [3484] = 329, + [3485] = 340, + [3486] = 338, + [3487] = 333, + [3488] = 334, + [3489] = 325, + [3490] = 163, + [3491] = 3491, + [3492] = 332, + [3493] = 2846, + [3494] = 326, + [3495] = 262, + [3496] = 339, + [3497] = 330, + [3498] = 276, + [3499] = 277, + [3500] = 162, + [3501] = 321, + [3502] = 3502, + [3503] = 396, + [3504] = 2846, + [3505] = 397, + [3506] = 163, + [3507] = 2846, + [3508] = 275, + [3509] = 3509, + [3510] = 167, + [3511] = 165, + [3512] = 168, + [3513] = 163, + [3514] = 470, + [3515] = 463, + [3516] = 462, + [3517] = 464, + [3518] = 2023, + [3519] = 166, + [3520] = 3520, + [3521] = 245, + [3522] = 461, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 405, + [3527] = 3527, + [3528] = 161, + [3529] = 164, + [3530] = 1460, + [3531] = 162, + [3532] = 167, + [3533] = 461, + [3534] = 462, + [3535] = 463, + [3536] = 464, + [3537] = 462, + [3538] = 463, + [3539] = 464, + [3540] = 470, + [3541] = 3541, + [3542] = 461, + [3543] = 169, + [3544] = 170, + [3545] = 171, + [3546] = 470, + [3547] = 462, + [3548] = 1559, + [3549] = 464, + [3550] = 470, + [3551] = 168, + [3552] = 166, + [3553] = 235, + [3554] = 246, + [3555] = 1554, + [3556] = 1445, + [3557] = 164, + [3558] = 165, + [3559] = 405, + [3560] = 503, + [3561] = 1528, + [3562] = 1559, + [3563] = 3563, + [3564] = 1445, + [3565] = 405, + [3566] = 463, + [3567] = 559, + [3568] = 470, + [3569] = 384, + [3570] = 385, + [3571] = 386, + [3572] = 3474, + [3573] = 1559, + [3574] = 420, + [3575] = 2329, + [3576] = 2342, + [3577] = 2354, + [3578] = 2203, + [3579] = 2365, + [3580] = 2370, + [3581] = 2206, + [3582] = 2220, + [3583] = 2225, + [3584] = 2308, + [3585] = 2353, + [3586] = 2366, + [3587] = 2214, + [3588] = 2218, + [3589] = 2244, + [3590] = 2261, + [3591] = 2280, + [3592] = 2285, + [3593] = 2295, + [3594] = 2300, + [3595] = 2318, + [3596] = 2324, + [3597] = 2332, + [3598] = 2360, + [3599] = 2380, + [3600] = 2246, + [3601] = 2277, + [3602] = 2216, + [3603] = 2299, + [3604] = 2309, + [3605] = 2341, + [3606] = 2200, + [3607] = 2210, + [3608] = 2323, + [3609] = 2345, + [3610] = 2378, + [3611] = 2236, + [3612] = 2247, + [3613] = 2256, + [3614] = 2262, + [3615] = 2276, + [3616] = 2301, + [3617] = 2307, + [3618] = 2317, + [3619] = 2321, + [3620] = 2327, + [3621] = 2331, + [3622] = 2334, + [3623] = 2209, + [3624] = 2248, + [3625] = 2266, + [3626] = 2284, + [3627] = 2294, + [3628] = 2320, + [3629] = 2326, + [3630] = 2336, + [3631] = 2347, + [3632] = 2362, + [3633] = 2268, + [3634] = 2325, + [3635] = 2282, + [3636] = 2346, + [3637] = 2274, + [3638] = 2305, + [3639] = 2212, + [3640] = 2255, + [3641] = 2328, + [3642] = 2198, + [3643] = 2213, + [3644] = 2234, + [3645] = 2258, + [3646] = 2271, + [3647] = 2293, + [3648] = 2306, + [3649] = 2335, + [3650] = 2371, + [3651] = 2204, + [3652] = 2229, + [3653] = 2235, + [3654] = 2252, + [3655] = 2260, + [3656] = 2269, + [3657] = 2279, + [3658] = 2298, + [3659] = 2245, + [3660] = 2251, + [3661] = 2253, + [3662] = 2257, + [3663] = 464, + [3664] = 2273, + [3665] = 2275, + [3666] = 2278, + [3667] = 2281, + [3668] = 2289, + [3669] = 2292, + [3670] = 2197, + [3671] = 1633, + [3672] = 172, + [3673] = 461, + [3674] = 587, + [3675] = 521, + [3676] = 588, + [3677] = 169, + [3678] = 523, + [3679] = 501, + [3680] = 1637, + [3681] = 508, + [3682] = 511, + [3683] = 512, + [3684] = 1638, + [3685] = 170, + [3686] = 171, + [3687] = 514, + [3688] = 1640, + [3689] = 1642, + [3690] = 1519, + [3691] = 1523, + [3692] = 534, + [3693] = 535, + [3694] = 462, + [3695] = 2330, + [3696] = 2297, + [3697] = 2201, + [3698] = 2202, + [3699] = 2215, + [3700] = 2232, + [3701] = 2208, + [3702] = 2219, + [3703] = 2250, + [3704] = 2263, + [3705] = 2363, + [3706] = 2302, + [3707] = 461, + [3708] = 235, + [3709] = 495, + [3710] = 556, + [3711] = 592, + [3712] = 524, + [3713] = 525, + [3714] = 593, + [3715] = 531, + [3716] = 532, + [3717] = 246, + [3718] = 613, + [3719] = 392, + [3720] = 615, + [3721] = 3491, + [3722] = 619, + [3723] = 560, + [3724] = 563, + [3725] = 564, + [3726] = 557, + [3727] = 566, + [3728] = 572, + [3729] = 418, + [3730] = 573, + [3731] = 574, + [3732] = 575, + [3733] = 1663, + [3734] = 577, + [3735] = 579, + [3736] = 580, + [3737] = 581, + [3738] = 1664, + [3739] = 582, + [3740] = 585, + [3741] = 1666, + [3742] = 1667, + [3743] = 463, + [3744] = 2259, + [3745] = 418, + [3746] = 3746, + [3747] = 3747, + [3748] = 1559, + [3749] = 3749, + [3750] = 420, + [3751] = 3751, + [3752] = 3752, [3753] = 3753, - [3754] = 2198, - [3755] = 2187, - [3756] = 2187, - [3757] = 2188, - [3758] = 2189, - [3759] = 2190, - [3760] = 3725, - [3761] = 2196, - [3762] = 2192, - [3763] = 2193, - [3764] = 2194, - [3765] = 2195, - [3766] = 3729, - [3767] = 2188, - [3768] = 2189, + [3754] = 3754, + [3755] = 3755, + [3756] = 3756, + [3757] = 3757, + [3758] = 3758, + [3759] = 3759, + [3760] = 3760, + [3761] = 3759, + [3762] = 3762, + [3763] = 3122, + [3764] = 3764, + [3765] = 3765, + [3766] = 3100, + [3767] = 3767, + [3768] = 3107, [3769] = 3769, - [3770] = 3770, - [3771] = 3484, - [3772] = 3485, - [3773] = 3486, - [3774] = 3774, - [3775] = 3474, - [3776] = 3774, + [3770] = 1559, + [3771] = 3771, + [3772] = 3772, + [3773] = 3773, + [3774] = 3749, + [3775] = 3775, + [3776] = 3776, [3777] = 3777, - [3778] = 3778, + [3778] = 3746, [3779] = 3779, - [3780] = 3769, - [3781] = 3774, + [3780] = 3780, + [3781] = 3781, [3782] = 3782, - [3783] = 3783, - [3784] = 3774, - [3785] = 3774, - [3786] = 3774, - [3787] = 3479, - [3788] = 3774, - [3789] = 3783, - [3790] = 3782, - [3791] = 3778, - [3792] = 3466, - [3793] = 3779, - [3794] = 3770, - [3795] = 182, - [3796] = 3777, - [3797] = 187, - [3798] = 182, - [3799] = 188, - [3800] = 187, - [3801] = 182, - [3802] = 185, - [3803] = 188, - [3804] = 184, - [3805] = 183, - [3806] = 185, - [3807] = 200, - [3808] = 190, - [3809] = 183, - [3810] = 193, - [3811] = 191, - [3812] = 189, - [3813] = 342, - [3814] = 343, - [3815] = 299, - [3816] = 300, - [3817] = 199, - [3818] = 184, - [3819] = 302, - [3820] = 303, - [3821] = 304, - [3822] = 305, - [3823] = 307, - [3824] = 309, - [3825] = 310, - [3826] = 311, - [3827] = 313, - [3828] = 345, - [3829] = 318, - [3830] = 323, - [3831] = 333, - [3832] = 335, - [3833] = 337, - [3834] = 187, - [3835] = 344, - [3836] = 188, - [3837] = 1060, - [3838] = 182, - [3839] = 314, - [3840] = 301, - [3841] = 184, - [3842] = 200, - [3843] = 188, - [3844] = 190, - [3845] = 201, - [3846] = 205, - [3847] = 189, - [3848] = 206, - [3849] = 208, - [3850] = 183, - [3851] = 193, - [3852] = 187, - [3853] = 204, - [3854] = 199, - [3855] = 203, - [3856] = 191, - [3857] = 185, - [3858] = 202, - [3859] = 216, - [3860] = 1060, - [3861] = 309, - [3862] = 182, - [3863] = 204, - [3864] = 342, - [3865] = 222, - [3866] = 189, - [3867] = 201, - [3868] = 216, - [3869] = 1060, - [3870] = 134, - [3871] = 299, - [3872] = 190, - [3873] = 205, - [3874] = 191, - [3875] = 202, - [3876] = 185, - [3877] = 183, - [3878] = 343, - [3879] = 300, - [3880] = 301, - [3881] = 314, - [3882] = 302, - [3883] = 199, - [3884] = 303, - [3885] = 304, - [3886] = 305, - [3887] = 307, - [3888] = 203, - [3889] = 310, - [3890] = 311, - [3891] = 313, - [3892] = 193, - [3893] = 345, - [3894] = 318, - [3895] = 323, - [3896] = 333, - [3897] = 335, - [3898] = 206, - [3899] = 337, - [3900] = 208, - [3901] = 344, - [3902] = 134, - [3903] = 200, - [3904] = 232, - [3905] = 201, - [3906] = 222, - [3907] = 185, - [3908] = 193, - [3909] = 286, - [3910] = 216, - [3911] = 1514, - [3912] = 203, - [3913] = 187, - [3914] = 466, - [3915] = 250, - [3916] = 135, - [3917] = 145, - [3918] = 1060, - [3919] = 206, - [3920] = 136, - [3921] = 134, - [3922] = 251, - [3923] = 184, - [3924] = 252, - [3925] = 191, - [3926] = 202, - [3927] = 1493, - [3928] = 205, - [3929] = 253, - [3930] = 285, - [3931] = 232, - [3932] = 183, - [3933] = 208, - [3934] = 188, - [3935] = 204, - [3936] = 137, - [3937] = 136, - [3938] = 514, - [3939] = 556, - [3940] = 516, - [3941] = 191, - [3942] = 203, - [3943] = 203, - [3944] = 557, - [3945] = 503, - [3946] = 519, - [3947] = 285, - [3948] = 216, - [3949] = 139, - [3950] = 140, - [3951] = 138, - [3952] = 561, - [3953] = 564, - [3954] = 520, - [3955] = 521, - [3956] = 522, - [3957] = 324, - [3958] = 206, - [3959] = 523, - [3960] = 251, - [3961] = 208, - [3962] = 141, - [3963] = 524, - [3964] = 232, - [3965] = 525, - [3966] = 515, - [3967] = 526, - [3968] = 527, - [3969] = 189, - [3970] = 528, - [3971] = 529, - [3972] = 201, - [3973] = 1195, - [3974] = 553, - [3975] = 530, - [3976] = 531, - [3977] = 517, - [3978] = 532, - [3979] = 533, - [3980] = 534, - [3981] = 199, - [3982] = 200, - [3983] = 535, - [3984] = 190, - [3985] = 536, - [3986] = 537, - [3987] = 204, - [3988] = 538, - [3989] = 539, - [3990] = 205, - [3991] = 540, - [3992] = 286, - [3993] = 252, - [3994] = 202, - [3995] = 222, - [3996] = 134, - [3997] = 206, - [3998] = 135, - [3999] = 193, - [4000] = 250, - [4001] = 589, - [4002] = 253, - [4003] = 2468, - [4004] = 518, - [4005] = 398, - [4006] = 1493, - [4007] = 203, - [4008] = 203, - [4009] = 208, - [4010] = 285, - [4011] = 216, - [4012] = 372, - [4013] = 286, - [4014] = 144, - [4015] = 1195, - [4016] = 204, - [4017] = 466, - [4018] = 253, - [4019] = 4019, - [4020] = 251, - [4021] = 138, - [4022] = 142, - [4023] = 136, - [4024] = 232, - [4025] = 206, - [4026] = 135, - [4027] = 205, - [4028] = 206, - [4029] = 202, - [4030] = 134, - [4031] = 4031, - [4032] = 139, - [4033] = 232, - [4034] = 252, - [4035] = 201, - [4036] = 1514, - [4037] = 137, - [4038] = 222, - [4039] = 4039, - [4040] = 250, - [4041] = 143, - [4042] = 141, - [4043] = 4043, - [4044] = 222, - [4045] = 140, - [4046] = 328, - [4047] = 337, - [4048] = 134, - [4049] = 344, - [4050] = 250, - [4051] = 139, - [4052] = 140, - [4053] = 141, - [4054] = 314, - [4055] = 232, - [4056] = 251, - [4057] = 206, - [4058] = 252, - [4059] = 144, - [4060] = 1472, - [4061] = 1409, - [4062] = 142, - [4063] = 253, - [4064] = 1441, - [4065] = 1417, - [4066] = 222, - [4067] = 445, - [4068] = 398, - [4069] = 232, - [4070] = 285, - [4071] = 327, - [4072] = 4072, - [4073] = 137, - [4074] = 250, - [4075] = 4075, - [4076] = 138, - [4077] = 251, - [4078] = 135, - [4079] = 136, - [4080] = 520, - [4081] = 4081, - [4082] = 222, - [4083] = 252, - [4084] = 436, - [4085] = 329, - [4086] = 4086, - [4087] = 286, - [4088] = 556, - [4089] = 4031, - [4090] = 516, - [4091] = 4019, - [4092] = 4043, - [4093] = 253, - [4094] = 557, - [4095] = 503, - [4096] = 143, - [4097] = 519, - [4098] = 464, - [4099] = 438, - [4100] = 439, - [4101] = 521, - [4102] = 561, - [4103] = 564, - [4104] = 522, - [4105] = 523, - [4106] = 342, - [4107] = 524, - [4108] = 525, - [4109] = 418, - [4110] = 526, - [4111] = 527, - [4112] = 528, - [4113] = 529, - [4114] = 530, - [4115] = 531, - [4116] = 532, - [4117] = 533, - [4118] = 534, - [4119] = 145, - [4120] = 535, - [4121] = 536, - [4122] = 537, - [4123] = 538, - [4124] = 343, - [4125] = 539, - [4126] = 540, - [4127] = 541, - [4128] = 542, - [4129] = 216, - [4130] = 589, - [4131] = 202, - [4132] = 203, - [4133] = 553, - [4134] = 419, - [4135] = 421, - [4136] = 299, - [4137] = 391, - [4138] = 383, - [4139] = 384, - [4140] = 385, - [4141] = 422, - [4142] = 300, - [4143] = 301, - [4144] = 423, - [4145] = 302, - [4146] = 303, - [4147] = 304, - [4148] = 305, - [4149] = 307, - [4150] = 309, - [4151] = 310, - [4152] = 311, - [4153] = 313, - [4154] = 345, - [4155] = 514, - [4156] = 515, - [4157] = 318, - [4158] = 323, - [4159] = 517, - [4160] = 518, - [4161] = 333, - [4162] = 335, - [4163] = 4163, - [4164] = 407, - [4165] = 299, - [4166] = 418, - [4167] = 314, - [4168] = 409, - [4169] = 445, - [4170] = 419, - [4171] = 421, - [4172] = 329, - [4173] = 4173, - [4174] = 364, - [4175] = 302, - [4176] = 303, - [4177] = 422, - [4178] = 304, - [4179] = 138, - [4180] = 137, - [4181] = 4181, - [4182] = 4182, - [4183] = 4183, - [4184] = 252, - [4185] = 206, - [4186] = 250, - [4187] = 464, - [4188] = 423, - [4189] = 343, - [4190] = 438, - [4191] = 4075, - [4192] = 1474, - [4193] = 439, - [4194] = 135, - [4195] = 4195, - [4196] = 286, - [4197] = 4081, - [4198] = 4086, - [4199] = 136, - [4200] = 139, - [4201] = 436, - [4202] = 305, - [4203] = 4163, - [4204] = 405, - [4205] = 140, - [4206] = 141, - [4207] = 307, - [4208] = 309, + [3783] = 3749, + [3784] = 3784, + [3785] = 3746, + [3786] = 2201, + [3787] = 2263, + [3788] = 2330, + [3789] = 3789, + [3790] = 2297, + [3791] = 2219, + [3792] = 2201, + [3793] = 3793, + [3794] = 2202, + [3795] = 2215, + [3796] = 3796, + [3797] = 2232, + [3798] = 2330, + [3799] = 3773, + [3800] = 2232, + [3801] = 2208, + [3802] = 2219, + [3803] = 2363, + [3804] = 2250, + [3805] = 2263, + [3806] = 2363, + [3807] = 3782, + [3808] = 2302, + [3809] = 2215, + [3810] = 2302, + [3811] = 2250, + [3812] = 2297, + [3813] = 2202, + [3814] = 2208, + [3815] = 3509, + [3816] = 3816, + [3817] = 3525, + [3818] = 3524, + [3819] = 3819, + [3820] = 3819, + [3821] = 3520, + [3822] = 3819, + [3823] = 3819, + [3824] = 3824, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3523, + [3831] = 3824, + [3832] = 3819, + [3833] = 3819, + [3834] = 3825, + [3835] = 3527, + [3836] = 3819, + [3837] = 3816, + [3838] = 3826, + [3839] = 3827, + [3840] = 3828, + [3841] = 3829, + [3842] = 211, + [3843] = 213, + [3844] = 211, + [3845] = 217, + [3846] = 213, + [3847] = 217, + [3848] = 211, + [3849] = 216, + [3850] = 214, + [3851] = 212, + [3852] = 214, + [3853] = 323, + [3854] = 325, + [3855] = 336, + [3856] = 218, + [3857] = 213, + [3858] = 337, + [3859] = 339, + [3860] = 340, + [3861] = 341, + [3862] = 326, + [3863] = 342, + [3864] = 343, + [3865] = 216, + [3866] = 334, + [3867] = 211, + [3868] = 335, + [3869] = 225, + [3870] = 338, + [3871] = 327, + [3872] = 328, + [3873] = 329, + [3874] = 330, + [3875] = 331, + [3876] = 346, + [3877] = 1106, + [3878] = 332, + [3879] = 333, + [3880] = 224, + [3881] = 226, + [3882] = 221, + [3883] = 220, + [3884] = 217, + [3885] = 212, + [3886] = 324, + [3887] = 216, + [3888] = 230, + [3889] = 237, + [3890] = 214, + [3891] = 224, + [3892] = 239, + [3893] = 218, + [3894] = 245, + [3895] = 212, + [3896] = 242, + [3897] = 226, + [3898] = 221, + [3899] = 220, + [3900] = 213, + [3901] = 244, + [3902] = 217, + [3903] = 235, + [3904] = 246, + [3905] = 225, + [3906] = 1106, + [3907] = 342, + [3908] = 325, + [3909] = 237, + [3910] = 218, + [3911] = 239, + [3912] = 220, + [3913] = 334, + [3914] = 330, + [3915] = 335, + [3916] = 331, + [3917] = 332, + [3918] = 333, + [3919] = 214, + [3920] = 262, + [3921] = 225, + [3922] = 242, + [3923] = 326, + [3924] = 226, + [3925] = 336, + [3926] = 161, + [3927] = 211, + [3928] = 161, + [3929] = 337, + [3930] = 338, + [3931] = 246, + [3932] = 339, + [3933] = 340, + [3934] = 341, + [3935] = 1106, + [3936] = 221, + [3937] = 216, + [3938] = 244, + [3939] = 323, + [3940] = 224, + [3941] = 346, + [3942] = 343, + [3943] = 230, + [3944] = 327, + [3945] = 245, + [3946] = 328, + [3947] = 324, + [3948] = 329, + [3949] = 259, + [3950] = 235, + [3951] = 162, + [3952] = 259, + [3953] = 172, + [3954] = 239, + [3955] = 262, + [3956] = 244, + [3957] = 275, + [3958] = 321, + [3959] = 242, + [3960] = 1519, + [3961] = 1523, + [3962] = 503, + [3963] = 213, + [3964] = 276, + [3965] = 245, + [3966] = 277, + [3967] = 296, + [3968] = 235, + [3969] = 217, + [3970] = 246, + [3971] = 214, + [3972] = 216, + [3973] = 230, + [3974] = 224, + [3975] = 237, + [3976] = 163, + [3977] = 212, + [3978] = 293, + [3979] = 1106, + [3980] = 161, + [3981] = 218, + [3982] = 245, + [3983] = 167, + [3984] = 166, + [3985] = 277, + [3986] = 235, + [3987] = 221, + [3988] = 523, + [3989] = 501, + [3990] = 246, + [3991] = 593, + [3992] = 535, + [3993] = 244, + [3994] = 276, + [3995] = 508, + [3996] = 511, + [3997] = 512, + [3998] = 613, + [3999] = 2493, + [4000] = 615, + [4001] = 514, + [4002] = 619, + [4003] = 259, + [4004] = 559, + [4005] = 560, + [4006] = 563, + [4007] = 220, + [4008] = 564, + [4009] = 557, + [4010] = 162, + [4011] = 495, + [4012] = 566, + [4013] = 293, + [4014] = 572, + [4015] = 573, + [4016] = 574, + [4017] = 575, + [4018] = 242, + [4019] = 577, + [4020] = 224, + [4021] = 579, + [4022] = 580, + [4023] = 581, + [4024] = 226, + [4025] = 582, + [4026] = 585, + [4027] = 524, + [4028] = 230, + [4029] = 218, + [4030] = 525, + [4031] = 296, + [4032] = 244, + [4033] = 163, + [4034] = 164, + [4035] = 245, + [4036] = 237, + [4037] = 165, + [4038] = 1233, + [4039] = 195, + [4040] = 534, + [4041] = 161, + [4042] = 521, + [4043] = 225, + [4044] = 531, + [4045] = 532, + [4046] = 592, + [4047] = 168, + [4048] = 275, + [4049] = 262, + [4050] = 239, + [4051] = 321, + [4052] = 556, + [4053] = 4053, + [4054] = 503, + [4055] = 405, + [4056] = 244, + [4057] = 168, + [4058] = 167, + [4059] = 166, + [4060] = 275, + [4061] = 4061, + [4062] = 4062, + [4063] = 321, + [4064] = 244, + [4065] = 199, + [4066] = 1519, + [4067] = 4067, + [4068] = 1233, + [4069] = 276, + [4070] = 262, + [4071] = 293, + [4072] = 277, + [4073] = 246, + [4074] = 245, + [4075] = 1523, + [4076] = 296, + [4077] = 164, + [4078] = 230, + [4079] = 259, + [4080] = 237, + [4081] = 169, + [4082] = 239, + [4083] = 242, + [4084] = 165, + [4085] = 161, + [4086] = 262, + [4087] = 245, + [4088] = 170, + [4089] = 171, + [4090] = 162, + [4091] = 163, + [4092] = 235, + [4093] = 259, + [4094] = 167, + [4095] = 246, + [4096] = 4096, + [4097] = 592, + [4098] = 523, + [4099] = 501, + [4100] = 343, + [4101] = 244, + [4102] = 342, + [4103] = 4103, + [4104] = 321, + [4105] = 334, + [4106] = 593, + [4107] = 535, + [4108] = 335, + [4109] = 330, + [4110] = 508, + [4111] = 511, + [4112] = 331, + [4113] = 338, + [4114] = 531, + [4115] = 512, + [4116] = 332, + [4117] = 170, + [4118] = 588, + [4119] = 613, + [4120] = 166, + [4121] = 615, + [4122] = 470, + [4123] = 276, + [4124] = 514, + [4125] = 245, + [4126] = 275, + [4127] = 235, + [4128] = 532, + [4129] = 327, + [4130] = 521, + [4131] = 619, + [4132] = 491, + [4133] = 336, + [4134] = 1417, + [4135] = 1422, + [4136] = 277, + [4137] = 1412, + [4138] = 1413, + [4139] = 324, + [4140] = 559, + [4141] = 171, + [4142] = 560, + [4143] = 563, + [4144] = 275, + [4145] = 564, + [4146] = 259, + [4147] = 557, + [4148] = 587, + [4149] = 328, + [4150] = 162, + [4151] = 325, + [4152] = 169, + [4153] = 566, + [4154] = 329, + [4155] = 340, + [4156] = 556, + [4157] = 572, + [4158] = 461, + [4159] = 163, + [4160] = 262, + [4161] = 326, + [4162] = 321, + [4163] = 534, + [4164] = 364, + [4165] = 4165, + [4166] = 405, + [4167] = 296, + [4168] = 337, + [4169] = 462, + [4170] = 333, + [4171] = 573, + [4172] = 574, + [4173] = 575, + [4174] = 463, + [4175] = 464, + [4176] = 4176, + [4177] = 392, + [4178] = 492, + [4179] = 524, + [4180] = 384, + [4181] = 385, + [4182] = 386, + [4183] = 525, + [4184] = 577, + [4185] = 293, + [4186] = 276, + [4187] = 262, + [4188] = 579, + [4189] = 4061, + [4190] = 580, + [4191] = 581, + [4192] = 357, + [4193] = 346, + [4194] = 4053, + [4195] = 4062, + [4196] = 259, + [4197] = 487, + [4198] = 277, + [4199] = 172, + [4200] = 323, + [4201] = 164, + [4202] = 165, + [4203] = 339, + [4204] = 362, + [4205] = 582, + [4206] = 585, + [4207] = 168, + [4208] = 341, [4209] = 4209, - [4210] = 310, - [4211] = 145, - [4212] = 203, - [4213] = 216, - [4214] = 311, - [4215] = 313, - [4216] = 345, - [4217] = 253, - [4218] = 250, - [4219] = 202, - [4220] = 337, - [4221] = 344, - [4222] = 318, - [4223] = 142, - [4224] = 4224, - [4225] = 222, - [4226] = 342, - [4227] = 251, - [4228] = 144, - [4229] = 232, - [4230] = 383, - [4231] = 384, - [4232] = 327, - [4233] = 323, - [4234] = 333, - [4235] = 328, - [4236] = 251, - [4237] = 335, - [4238] = 4072, - [4239] = 252, - [4240] = 1472, - [4241] = 1409, - [4242] = 4242, - [4243] = 253, - [4244] = 134, - [4245] = 1441, - [4246] = 1417, - [4247] = 300, - [4248] = 391, - [4249] = 143, - [4250] = 301, - [4251] = 285, - [4252] = 385, - [4253] = 398, - [4254] = 307, - [4255] = 4255, - [4256] = 1417, - [4257] = 4257, - [4258] = 337, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 304, - [4263] = 4263, - [4264] = 4264, - [4265] = 4265, - [4266] = 1644, + [4210] = 488, + [4211] = 161, + [4212] = 489, + [4213] = 495, + [4214] = 163, + [4215] = 162, + [4216] = 165, + [4217] = 4217, + [4218] = 321, + [4219] = 245, + [4220] = 329, + [4221] = 346, + [4222] = 330, + [4223] = 491, + [4224] = 392, + [4225] = 168, + [4226] = 167, + [4227] = 321, + [4228] = 492, + [4229] = 326, + [4230] = 161, + [4231] = 463, + [4232] = 464, + [4233] = 1422, + [4234] = 4234, + [4235] = 331, + [4236] = 332, + [4237] = 4237, + [4238] = 4238, + [4239] = 385, + [4240] = 487, + [4241] = 4241, + [4242] = 277, + [4243] = 276, + [4244] = 277, + [4245] = 262, + [4246] = 259, + [4247] = 325, + [4248] = 1413, + [4249] = 461, + [4250] = 166, + [4251] = 333, + [4252] = 4252, + [4253] = 384, + [4254] = 275, + [4255] = 324, + [4256] = 275, + [4257] = 293, + [4258] = 357, + [4259] = 334, + [4260] = 4176, + [4261] = 362, + [4262] = 1559, + [4263] = 235, + [4264] = 4209, + [4265] = 335, + [4266] = 420, [4267] = 4267, - [4268] = 301, - [4269] = 4269, - [4270] = 4270, - [4271] = 1472, - [4272] = 4272, - [4273] = 4273, - [4274] = 4274, - [4275] = 4275, - [4276] = 383, - [4277] = 384, - [4278] = 4278, - [4279] = 138, - [4280] = 137, - [4281] = 232, - [4282] = 4282, - [4283] = 4283, - [4284] = 4284, - [4285] = 4285, - [4286] = 4286, - [4287] = 4287, - [4288] = 4288, - [4289] = 4289, - [4290] = 4290, - [4291] = 305, - [4292] = 421, - [4293] = 4293, - [4294] = 1474, - [4295] = 4295, - [4296] = 206, - [4297] = 4297, - [4298] = 4298, - [4299] = 4299, + [4268] = 327, + [4269] = 328, + [4270] = 418, + [4271] = 336, + [4272] = 172, + [4273] = 4096, + [4274] = 462, + [4275] = 4103, + [4276] = 337, + [4277] = 296, + [4278] = 338, + [4279] = 244, + [4280] = 169, + [4281] = 276, + [4282] = 246, + [4283] = 364, + [4284] = 339, + [4285] = 1417, + [4286] = 1412, + [4287] = 397, + [4288] = 170, + [4289] = 171, + [4290] = 323, + [4291] = 470, + [4292] = 386, + [4293] = 340, + [4294] = 341, + [4295] = 342, + [4296] = 164, + [4297] = 488, + [4298] = 343, + [4299] = 4165, [4300] = 4300, - [4301] = 4301, - [4302] = 4302, - [4303] = 4303, + [4301] = 489, + [4302] = 396, + [4303] = 405, [4304] = 4304, - [4305] = 4305, - [4306] = 206, + [4305] = 346, + [4306] = 491, [4307] = 4307, - [4308] = 4308, - [4309] = 4309, - [4310] = 4310, + [4308] = 1417, + [4309] = 1422, + [4310] = 492, [4311] = 4311, - [4312] = 4312, - [4313] = 422, + [4312] = 1412, + [4313] = 1413, [4314] = 4314, [4315] = 4315, - [4316] = 409, + [4316] = 4316, [4317] = 4317, [4318] = 4318, [4319] = 4319, [4320] = 4320, - [4321] = 139, + [4321] = 4321, [4322] = 4322, - [4323] = 323, - [4324] = 135, - [4325] = 1409, - [4326] = 4195, - [4327] = 134, - [4328] = 309, + [4323] = 4323, + [4324] = 4324, + [4325] = 4325, + [4326] = 323, + [4327] = 4327, + [4328] = 4328, [4329] = 4329, [4330] = 4330, [4331] = 4331, [4332] = 4332, - [4333] = 145, + [4333] = 4333, [4334] = 4334, [4335] = 4335, [4336] = 4336, @@ -9543,3477 +9536,3387 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4343] = 4343, [4344] = 4344, [4345] = 4345, - [4346] = 203, - [4347] = 343, - [4348] = 136, - [4349] = 140, + [4346] = 4346, + [4347] = 4347, + [4348] = 4348, + [4349] = 244, [4350] = 4350, [4351] = 4351, [4352] = 4352, [4353] = 4353, [4354] = 4354, - [4355] = 1649, + [4355] = 4355, [4356] = 4356, [4357] = 4357, - [4358] = 134, + [4358] = 1646, [4359] = 4359, [4360] = 4360, - [4361] = 333, - [4362] = 310, + [4361] = 4361, + [4362] = 4362, [4363] = 4363, [4364] = 4364, - [4365] = 302, + [4365] = 4365, [4366] = 4366, [4367] = 4367, [4368] = 4368, [4369] = 4369, [4370] = 4370, [4371] = 4371, - [4372] = 299, + [4372] = 4372, [4373] = 4373, [4374] = 4374, [4375] = 4375, [4376] = 4376, - [4377] = 464, - [4378] = 364, - [4379] = 1400, - [4380] = 445, - [4381] = 4381, - [4382] = 438, - [4383] = 143, - [4384] = 1379, - [4385] = 141, - [4386] = 250, + [4377] = 4377, + [4378] = 4378, + [4379] = 4379, + [4380] = 4380, + [4381] = 392, + [4382] = 4382, + [4383] = 4383, + [4384] = 4384, + [4385] = 1717, + [4386] = 4386, [4387] = 4387, [4388] = 4388, - [4389] = 419, - [4390] = 391, + [4389] = 4389, + [4390] = 4390, [4391] = 4391, [4392] = 4392, [4393] = 4393, [4394] = 4394, [4395] = 4395, - [4396] = 436, + [4396] = 4396, [4397] = 4397, - [4398] = 251, - [4399] = 311, - [4400] = 313, - [4401] = 1929, - [4402] = 1930, + [4398] = 4398, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, + [4402] = 4402, [4403] = 4403, [4404] = 4404, - [4405] = 398, - [4406] = 300, + [4405] = 4405, + [4406] = 324, [4407] = 4407, [4408] = 4408, - [4409] = 423, + [4409] = 4409, [4410] = 4410, - [4411] = 252, - [4412] = 439, - [4413] = 303, - [4414] = 405, + [4411] = 325, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, [4415] = 4415, - [4416] = 385, - [4417] = 407, - [4418] = 4418, - [4419] = 335, + [4416] = 262, + [4417] = 4417, + [4418] = 326, + [4419] = 4419, [4420] = 4420, [4421] = 4421, [4422] = 4422, - [4423] = 253, - [4424] = 418, - [4425] = 345, - [4426] = 4426, + [4423] = 4423, + [4424] = 4424, + [4425] = 327, + [4426] = 328, [4427] = 4427, - [4428] = 4428, - [4429] = 314, - [4430] = 4430, - [4431] = 344, - [4432] = 1656, - [4433] = 4433, - [4434] = 4434, - [4435] = 144, - [4436] = 4436, - [4437] = 222, - [4438] = 142, - [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 318, - [4443] = 4443, + [4428] = 329, + [4429] = 330, + [4430] = 331, + [4431] = 332, + [4432] = 333, + [4433] = 334, + [4434] = 335, + [4435] = 336, + [4436] = 337, + [4437] = 338, + [4438] = 397, + [4439] = 339, + [4440] = 340, + [4441] = 341, + [4442] = 342, + [4443] = 343, [4444] = 4444, - [4445] = 4445, - [4446] = 4446, - [4447] = 4447, - [4448] = 185, - [4449] = 4449, - [4450] = 4450, - [4451] = 342, - [4452] = 4452, + [4445] = 487, + [4446] = 1559, + [4447] = 2012, + [4448] = 162, + [4449] = 1460, + [4450] = 163, + [4451] = 245, + [4452] = 1990, [4453] = 4453, - [4454] = 4454, - [4455] = 4455, - [4456] = 1441, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 445, - [4462] = 139, - [4463] = 385, - [4464] = 567, - [4465] = 4290, - [4466] = 407, + [4454] = 470, + [4455] = 462, + [4456] = 461, + [4457] = 405, + [4458] = 4217, + [4459] = 470, + [4460] = 384, + [4461] = 385, + [4462] = 386, + [4463] = 275, + [4464] = 161, + [4465] = 216, + [4466] = 4466, [4467] = 4467, - [4468] = 4468, - [4469] = 419, - [4470] = 421, - [4471] = 183, - [4472] = 1400, - [4473] = 4329, - [4474] = 4474, - [4475] = 250, - [4476] = 445, - [4477] = 391, - [4478] = 143, + [4468] = 161, + [4469] = 169, + [4470] = 1610, + [4471] = 463, + [4472] = 464, + [4473] = 4473, + [4474] = 418, + [4475] = 4475, + [4476] = 1438, + [4477] = 4477, + [4478] = 4478, [4479] = 4479, - [4480] = 4388, - [4481] = 222, - [4482] = 4410, - [4483] = 4440, - [4484] = 4441, - [4485] = 144, - [4486] = 142, - [4487] = 1679, + [4480] = 4480, + [4481] = 321, + [4482] = 170, + [4483] = 171, + [4484] = 4484, + [4485] = 4485, + [4486] = 4486, + [4487] = 4487, [4488] = 4488, - [4489] = 4489, - [4490] = 4366, - [4491] = 418, - [4492] = 422, - [4493] = 4457, - [4494] = 4397, - [4495] = 568, - [4496] = 4408, - [4497] = 569, - [4498] = 251, - [4499] = 140, - [4500] = 1472, - [4501] = 1409, - [4502] = 570, - [4503] = 4503, - [4504] = 409, - [4505] = 232, - [4506] = 466, - [4507] = 1493, - [4508] = 4489, - [4509] = 4259, - [4510] = 4260, - [4511] = 4264, - [4512] = 4269, - [4513] = 4272, - [4514] = 4273, - [4515] = 4274, - [4516] = 445, + [4489] = 420, + [4490] = 4490, + [4491] = 164, + [4492] = 165, + [4493] = 276, + [4494] = 259, + [4495] = 4495, + [4496] = 277, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, + [4501] = 168, + [4502] = 4502, + [4503] = 488, + [4504] = 167, + [4505] = 245, + [4506] = 489, + [4507] = 172, + [4508] = 396, + [4509] = 166, + [4510] = 4510, + [4511] = 4511, + [4512] = 4366, + [4513] = 1519, + [4514] = 4514, + [4515] = 4515, + [4516] = 1523, [4517] = 4517, - [4518] = 364, - [4519] = 145, - [4520] = 423, - [4521] = 4489, - [4522] = 571, - [4523] = 572, - [4524] = 573, - [4525] = 574, - [4526] = 4526, - [4527] = 191, - [4528] = 138, - [4529] = 575, - [4530] = 137, - [4531] = 4531, - [4532] = 576, - [4533] = 1441, - [4534] = 1417, - [4535] = 141, - [4536] = 578, - [4537] = 4275, - [4538] = 4538, - [4539] = 4539, + [4518] = 277, + [4519] = 1438, + [4520] = 418, + [4521] = 598, + [4522] = 405, + [4523] = 262, + [4524] = 596, + [4525] = 384, + [4526] = 4480, + [4527] = 214, + [4528] = 167, + [4529] = 4486, + [4530] = 600, + [4531] = 386, + [4532] = 1559, + [4533] = 601, + [4534] = 4534, + [4535] = 602, + [4536] = 216, + [4537] = 487, + [4538] = 420, + [4539] = 1417, [4540] = 4540, - [4541] = 183, - [4542] = 4467, - [4543] = 252, - [4544] = 206, - [4545] = 4283, - [4546] = 4284, - [4547] = 4547, - [4548] = 405, - [4549] = 4531, - [4550] = 4286, - [4551] = 4538, - [4552] = 4288, - [4553] = 398, - [4554] = 135, - [4555] = 1474, - [4556] = 1656, - [4557] = 136, - [4558] = 4558, - [4559] = 4559, - [4560] = 1644, - [4561] = 4561, - [4562] = 464, - [4563] = 436, - [4564] = 1379, - [4565] = 185, - [4566] = 1649, - [4567] = 4539, - [4568] = 1514, - [4569] = 4569, - [4570] = 193, - [4571] = 549, - [4572] = 4489, - [4573] = 253, - [4574] = 1498, - [4575] = 1509, - [4576] = 4576, - [4577] = 4468, - [4578] = 555, - [4579] = 383, - [4580] = 438, - [4581] = 439, - [4582] = 384, - [4583] = 558, - [4584] = 563, - [4585] = 4585, - [4586] = 541, - [4587] = 4587, - [4588] = 4588, - [4589] = 4589, - [4590] = 141, + [4541] = 4541, + [4542] = 1422, + [4543] = 4543, + [4544] = 4544, + [4545] = 218, + [4546] = 595, + [4547] = 599, + [4548] = 166, + [4549] = 462, + [4550] = 463, + [4551] = 464, + [4552] = 4552, + [4553] = 1646, + [4554] = 4554, + [4555] = 276, + [4556] = 385, + [4557] = 4409, + [4558] = 597, + [4559] = 603, + [4560] = 1412, + [4561] = 1413, + [4562] = 461, + [4563] = 604, + [4564] = 4564, + [4565] = 396, + [4566] = 169, + [4567] = 605, + [4568] = 606, + [4569] = 170, + [4570] = 171, + [4571] = 164, + [4572] = 4572, + [4573] = 4573, + [4574] = 275, + [4575] = 488, + [4576] = 1460, + [4577] = 470, + [4578] = 489, + [4579] = 392, + [4580] = 4543, + [4581] = 4544, + [4582] = 4554, + [4583] = 245, + [4584] = 470, + [4585] = 397, + [4586] = 4586, + [4587] = 1717, + [4588] = 607, + [4589] = 4541, + [4590] = 608, [4591] = 4591, [4592] = 4592, - [4593] = 4593, - [4594] = 251, - [4595] = 4595, - [4596] = 418, - [4597] = 193, - [4598] = 4598, - [4599] = 4599, - [4600] = 419, - [4601] = 4479, - [4602] = 4602, + [4593] = 4478, + [4594] = 491, + [4595] = 4479, + [4596] = 1651, + [4597] = 503, + [4598] = 609, + [4599] = 4360, + [4600] = 1554, + [4601] = 1528, + [4602] = 321, [4603] = 4603, - [4604] = 252, - [4605] = 466, - [4606] = 4606, - [4607] = 556, - [4608] = 143, - [4609] = 4609, - [4610] = 2386, - [4611] = 1727, - [4612] = 4612, - [4613] = 4613, - [4614] = 1722, - [4615] = 253, - [4616] = 4616, - [4617] = 250, - [4618] = 537, - [4619] = 514, - [4620] = 515, - [4621] = 1723, - [4622] = 445, - [4623] = 422, - [4624] = 140, - [4625] = 438, - [4626] = 206, - [4627] = 1719, - [4628] = 421, - [4629] = 1962, - [4630] = 538, - [4631] = 516, - [4632] = 439, - [4633] = 536, - [4634] = 4634, - [4635] = 4635, - [4636] = 4636, - [4637] = 498, - [4638] = 4638, - [4639] = 553, - [4640] = 204, - [4641] = 499, - [4642] = 4642, - [4643] = 571, - [4644] = 555, - [4645] = 517, - [4646] = 518, - [4647] = 1679, - [4648] = 4540, - [4649] = 561, - [4650] = 423, - [4651] = 572, - [4652] = 4652, - [4653] = 573, - [4654] = 141, - [4655] = 574, - [4656] = 549, - [4657] = 208, - [4658] = 557, - [4659] = 4659, - [4660] = 503, + [4604] = 4363, + [4605] = 4364, + [4606] = 4541, + [4607] = 214, + [4608] = 224, + [4609] = 492, + [4610] = 4365, + [4611] = 172, + [4612] = 162, + [4613] = 4404, + [4614] = 259, + [4615] = 4615, + [4616] = 1610, + [4617] = 4379, + [4618] = 4380, + [4619] = 4387, + [4620] = 4388, + [4621] = 4552, + [4622] = 163, + [4623] = 4623, + [4624] = 4389, + [4625] = 4623, + [4626] = 168, + [4627] = 4541, + [4628] = 4397, + [4629] = 4398, + [4630] = 4399, + [4631] = 4401, + [4632] = 4402, + [4633] = 4633, + [4634] = 4403, + [4635] = 165, + [4636] = 2001, + [4637] = 1559, + [4638] = 2001, + [4639] = 245, + [4640] = 4640, + [4641] = 170, + [4642] = 171, + [4643] = 214, + [4644] = 492, + [4645] = 321, + [4646] = 560, + [4647] = 230, + [4648] = 582, + [4649] = 4649, + [4650] = 4650, + [4651] = 164, + [4652] = 165, + [4653] = 488, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 275, + [4658] = 216, + [4659] = 596, + [4660] = 4660, [4661] = 4661, - [4662] = 575, - [4663] = 576, - [4664] = 466, - [4665] = 578, - [4666] = 4666, - [4667] = 4667, - [4668] = 4668, - [4669] = 4669, - [4670] = 1974, - [4671] = 520, - [4672] = 4672, - [4673] = 521, - [4674] = 144, - [4675] = 142, - [4676] = 4676, - [4677] = 138, - [4678] = 137, - [4679] = 4561, - [4680] = 1962, - [4681] = 4681, - [4682] = 4682, - [4683] = 589, + [4662] = 4662, + [4663] = 4663, + [4664] = 4633, + [4665] = 613, + [4666] = 619, + [4667] = 2005, + [4668] = 597, + [4669] = 598, + [4670] = 489, + [4671] = 599, + [4672] = 2025, + [4673] = 237, + [4674] = 1528, + [4675] = 4603, + [4676] = 581, + [4677] = 4677, + [4678] = 535, + [4679] = 1637, + [4680] = 168, + [4681] = 1638, + [4682] = 167, + [4683] = 166, [4684] = 4684, - [4685] = 205, - [4686] = 140, + [4685] = 587, + [4686] = 508, [4687] = 4687, - [4688] = 1974, - [4689] = 1493, - [4690] = 139, - [4691] = 4526, - [4692] = 4692, - [4693] = 4693, - [4694] = 4694, - [4695] = 464, - [4696] = 564, - [4697] = 436, + [4688] = 4688, + [4689] = 511, + [4690] = 2005, + [4691] = 463, + [4692] = 1663, + [4693] = 1664, + [4694] = 464, + [4695] = 239, + [4696] = 1519, + [4697] = 4697, [4698] = 4698, - [4699] = 201, - [4700] = 1474, - [4701] = 539, - [4702] = 4702, - [4703] = 4703, - [4704] = 139, - [4705] = 540, - [4706] = 4706, - [4707] = 4707, - [4708] = 1514, - [4709] = 4517, - [4710] = 522, - [4711] = 4558, + [4699] = 4699, + [4700] = 600, + [4701] = 4701, + [4702] = 224, + [4703] = 601, + [4704] = 602, + [4705] = 4705, + [4706] = 512, + [4707] = 579, + [4708] = 4708, + [4709] = 4709, + [4710] = 564, + [4711] = 276, [4712] = 4712, - [4713] = 558, - [4714] = 523, - [4715] = 563, - [4716] = 4716, - [4717] = 1728, + [4713] = 4713, + [4714] = 4714, + [4715] = 585, + [4716] = 1633, + [4717] = 1554, [4718] = 4718, - [4719] = 567, - [4720] = 524, - [4721] = 1928, - [4722] = 525, - [4723] = 4723, - [4724] = 542, - [4725] = 526, - [4726] = 527, - [4727] = 528, - [4728] = 4728, - [4729] = 529, - [4730] = 4585, - [4731] = 4731, - [4732] = 4732, - [4733] = 191, - [4734] = 530, - [4735] = 1928, - [4736] = 183, - [4737] = 531, - [4738] = 1729, - [4739] = 1498, - [4740] = 4488, - [4741] = 532, - [4742] = 185, - [4743] = 1720, - [4744] = 533, - [4745] = 4745, - [4746] = 1721, - [4747] = 534, - [4748] = 471, - [4749] = 1509, - [4750] = 568, - [4751] = 569, + [4719] = 4719, + [4720] = 242, + [4721] = 4591, + [4722] = 1640, + [4723] = 277, + [4724] = 218, + [4725] = 470, + [4726] = 1642, + [4727] = 166, + [4728] = 595, + [4729] = 4729, + [4730] = 549, + [4731] = 1651, + [4732] = 550, + [4733] = 4733, + [4734] = 4734, + [4735] = 4735, + [4736] = 603, + [4737] = 604, + [4738] = 4738, + [4739] = 4739, + [4740] = 605, + [4741] = 4741, + [4742] = 606, + [4743] = 607, + [4744] = 168, + [4745] = 557, + [4746] = 1523, + [4747] = 559, + [4748] = 608, + [4749] = 4749, + [4750] = 4750, + [4751] = 534, [4752] = 4752, - [4753] = 570, - [4754] = 535, - [4755] = 1726, + [4753] = 4753, + [4754] = 4754, + [4755] = 4755, [4756] = 4756, - [4757] = 519, + [4757] = 4757, [4758] = 4758, - [4759] = 4759, - [4760] = 553, + [4759] = 1666, + [4760] = 522, [4761] = 4761, - [4762] = 2872, - [4763] = 182, - [4764] = 532, + [4762] = 1667, + [4763] = 4763, + [4764] = 521, [4765] = 4765, - [4766] = 2458, - [4767] = 143, - [4768] = 516, - [4769] = 589, - [4770] = 516, - [4771] = 184, - [4772] = 532, - [4773] = 4773, - [4774] = 498, - [4775] = 514, - [4776] = 561, - [4777] = 533, - [4778] = 515, + [4766] = 4564, + [4767] = 495, + [4768] = 556, + [4769] = 4769, + [4770] = 462, + [4771] = 487, + [4772] = 2025, + [4773] = 566, + [4774] = 592, + [4775] = 4515, + [4776] = 572, + [4777] = 4777, + [4778] = 503, [4779] = 4779, - [4780] = 4780, - [4781] = 515, - [4782] = 589, - [4783] = 4783, - [4784] = 556, - [4785] = 4785, + [4780] = 573, + [4781] = 167, + [4782] = 574, + [4783] = 575, + [4784] = 524, + [4785] = 525, [4786] = 4786, - [4787] = 4787, - [4788] = 517, - [4789] = 533, - [4790] = 518, - [4791] = 534, - [4792] = 4792, - [4793] = 4793, - [4794] = 527, - [4795] = 204, - [4796] = 4796, - [4797] = 535, - [4798] = 557, - [4799] = 4799, - [4800] = 1722, - [4801] = 144, - [4802] = 4756, - [4803] = 520, - [4804] = 4804, - [4805] = 573, - [4806] = 142, - [4807] = 536, - [4808] = 537, - [4809] = 1723, - [4810] = 564, - [4811] = 4642, - [4812] = 574, - [4813] = 572, - [4814] = 575, - [4815] = 576, - [4816] = 4816, - [4817] = 517, - [4818] = 4818, - [4819] = 578, - [4820] = 534, - [4821] = 499, - [4822] = 524, - [4823] = 538, - [4824] = 518, - [4825] = 539, - [4826] = 540, - [4827] = 521, - [4828] = 4716, - [4829] = 1719, - [4830] = 4759, - [4831] = 4831, - [4832] = 4832, - [4833] = 4833, - [4834] = 1729, - [4835] = 4666, - [4836] = 1195, - [4837] = 549, - [4838] = 1974, - [4839] = 4839, - [4840] = 4672, - [4841] = 4831, - [4842] = 519, - [4843] = 4752, - [4844] = 3105, - [4845] = 519, - [4846] = 522, - [4847] = 4847, - [4848] = 208, - [4849] = 1720, - [4850] = 4850, + [4787] = 461, + [4788] = 4788, + [4789] = 577, + [4790] = 580, + [4791] = 4572, + [4792] = 523, + [4793] = 501, + [4794] = 4540, + [4795] = 588, + [4796] = 609, + [4797] = 593, + [4798] = 491, + [4799] = 531, + [4800] = 532, + [4801] = 4514, + [4802] = 615, + [4803] = 4803, + [4804] = 169, + [4805] = 563, + [4806] = 4806, + [4807] = 2387, + [4808] = 514, + [4809] = 503, + [4810] = 4810, + [4811] = 4708, + [4812] = 4812, + [4813] = 607, + [4814] = 511, + [4815] = 4815, + [4816] = 508, + [4817] = 577, + [4818] = 619, + [4819] = 579, + [4820] = 512, + [4821] = 4806, + [4822] = 4822, + [4823] = 580, + [4824] = 581, + [4825] = 4825, + [4826] = 575, + [4827] = 593, + [4828] = 559, + [4829] = 2387, + [4830] = 211, + [4831] = 577, + [4832] = 579, + [4833] = 593, + [4834] = 582, + [4835] = 1633, + [4836] = 585, + [4837] = 1663, + [4838] = 239, + [4839] = 4640, + [4840] = 4840, + [4841] = 4650, + [4842] = 4677, + [4843] = 521, + [4844] = 514, + [4845] = 550, + [4846] = 1664, + [4847] = 2479, + [4848] = 531, + [4849] = 169, + [4850] = 2919, [4851] = 4851, - [4852] = 201, - [4853] = 535, - [4854] = 205, + [4852] = 4852, + [4853] = 532, + [4854] = 4854, [4855] = 4855, - [4856] = 2433, - [4857] = 525, - [4858] = 4676, + [4856] = 4851, + [4857] = 4812, + [4858] = 4733, [4859] = 4859, - [4860] = 4851, - [4861] = 4861, - [4862] = 4862, - [4863] = 4863, - [4864] = 4716, - [4865] = 539, - [4866] = 4866, - [4867] = 536, - [4868] = 184, - [4869] = 564, - [4870] = 537, - [4871] = 4731, - [4872] = 530, - [4873] = 538, + [4860] = 495, + [4861] = 580, + [4862] = 4763, + [4863] = 522, + [4864] = 4761, + [4865] = 563, + [4866] = 495, + [4867] = 218, + [4868] = 581, + [4869] = 582, + [4870] = 4859, + [4871] = 592, + [4872] = 556, + [4873] = 2005, [4874] = 4874, - [4875] = 184, + [4875] = 613, [4876] = 4876, [4877] = 4877, [4878] = 4878, - [4879] = 514, - [4880] = 568, - [4881] = 1928, - [4882] = 531, - [4883] = 569, - [4884] = 541, - [4885] = 524, - [4886] = 525, - [4887] = 2861, - [4888] = 540, + [4879] = 585, + [4880] = 608, + [4881] = 212, + [4882] = 534, + [4883] = 595, + [4884] = 587, + [4885] = 4885, + [4886] = 557, + [4887] = 4887, + [4888] = 4888, [4889] = 4889, - [4890] = 520, - [4891] = 4891, - [4892] = 542, - [4893] = 1721, - [4894] = 1728, + [4890] = 4662, + [4891] = 609, + [4892] = 523, + [4893] = 596, + [4894] = 560, [4895] = 4895, - [4896] = 1726, - [4897] = 182, - [4898] = 4898, - [4899] = 1727, - [4900] = 523, - [4901] = 521, - [4902] = 528, + [4896] = 563, + [4897] = 212, + [4898] = 564, + [4899] = 4899, + [4900] = 534, + [4901] = 557, + [4902] = 4902, [4903] = 4903, [4904] = 4904, - [4905] = 503, - [4906] = 553, - [4907] = 526, - [4908] = 561, - [4909] = 4895, - [4910] = 4861, - [4911] = 527, - [4912] = 4668, - [4913] = 4669, - [4914] = 193, - [4915] = 4866, - [4916] = 4916, - [4917] = 4687, - [4918] = 1962, - [4919] = 571, - [4920] = 4920, - [4921] = 2386, - [4922] = 526, - [4923] = 528, + [4905] = 592, + [4906] = 4906, + [4907] = 2965, + [4908] = 501, + [4909] = 556, + [4910] = 605, + [4911] = 560, + [4912] = 4912, + [4913] = 514, + [4914] = 598, + [4915] = 564, + [4916] = 599, + [4917] = 1233, + [4918] = 566, + [4919] = 4919, + [4920] = 242, + [4921] = 615, + [4922] = 511, + [4923] = 4662, [4924] = 4924, - [4925] = 529, - [4926] = 530, - [4927] = 2880, - [4928] = 529, - [4929] = 557, - [4930] = 4930, - [4931] = 4833, - [4932] = 191, - [4933] = 4681, - [4934] = 471, - [4935] = 570, - [4936] = 531, - [4937] = 503, - [4938] = 555, + [4925] = 4925, + [4926] = 602, + [4927] = 572, + [4928] = 588, + [4929] = 573, + [4930] = 170, + [4931] = 566, + [4932] = 549, + [4933] = 572, + [4934] = 613, + [4935] = 1640, + [4936] = 4936, + [4937] = 1642, + [4938] = 230, [4939] = 4939, - [4940] = 523, - [4941] = 522, - [4942] = 558, - [4943] = 563, - [4944] = 4944, - [4945] = 556, - [4946] = 567, - [4947] = 4947, - [4948] = 4948, - [4949] = 4939, + [4940] = 4940, + [4941] = 4941, + [4942] = 2920, + [4943] = 4943, + [4944] = 4687, + [4945] = 4945, + [4946] = 573, + [4947] = 4887, + [4948] = 574, + [4949] = 4949, [4950] = 4950, - [4951] = 4951, - [4952] = 4952, - [4953] = 541, - [4954] = 4954, - [4955] = 542, - [4956] = 4804, - [4957] = 4957, - [4958] = 4958, - [4959] = 4959, - [4960] = 4960, - [4961] = 4961, - [4962] = 4962, - [4963] = 4963, - [4964] = 4964, - [4965] = 4903, - [4966] = 4966, - [4967] = 188, + [4951] = 523, + [4952] = 531, + [4953] = 521, + [4954] = 603, + [4955] = 524, + [4956] = 4956, + [4957] = 1637, + [4958] = 525, + [4959] = 575, + [4960] = 171, + [4961] = 4956, + [4962] = 224, + [4963] = 524, + [4964] = 4925, + [4965] = 1638, + [4966] = 619, + [4967] = 4967, [4968] = 4968, [4969] = 4969, - [4970] = 4970, - [4971] = 4971, + [4970] = 501, + [4971] = 4750, [4972] = 4972, - [4973] = 4779, - [4974] = 183, - [4975] = 4975, - [4976] = 4816, - [4977] = 4818, - [4978] = 4780, - [4979] = 185, - [4980] = 3105, + [4973] = 2001, + [4974] = 512, + [4975] = 525, + [4976] = 4976, + [4977] = 615, + [4978] = 532, + [4979] = 4979, + [4980] = 574, [4981] = 4981, - [4982] = 2458, + [4982] = 1666, [4983] = 4983, - [4984] = 4984, - [4985] = 4985, - [4986] = 4986, - [4987] = 4987, - [4988] = 4988, - [4989] = 4989, - [4990] = 4990, - [4991] = 4991, - [4992] = 4916, - [4993] = 4993, - [4994] = 4994, - [4995] = 4859, - [4996] = 4863, - [4997] = 201, - [4998] = 2433, - [4999] = 4999, - [5000] = 208, + [4984] = 1667, + [4985] = 237, + [4986] = 4895, + [4987] = 211, + [4988] = 4769, + [4989] = 2503, + [4990] = 559, + [4991] = 606, + [4992] = 535, + [4993] = 600, + [4994] = 535, + [4995] = 604, + [4996] = 508, + [4997] = 2025, + [4998] = 601, + [4999] = 597, + [5000] = 5000, [5001] = 5001, [5002] = 5002, [5003] = 5003, - [5004] = 204, - [5005] = 5005, - [5006] = 5006, - [5007] = 5007, - [5008] = 5008, - [5009] = 205, + [5004] = 5004, + [5005] = 4924, + [5006] = 4906, + [5007] = 4919, + [5008] = 214, + [5009] = 5009, [5010] = 5010, - [5011] = 4876, - [5012] = 4877, + [5011] = 4943, + [5012] = 216, [5013] = 5013, [5014] = 5014, - [5015] = 5015, + [5015] = 3153, [5016] = 5016, [5017] = 5017, [5018] = 5018, [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 3248, - [5023] = 187, - [5024] = 187, + [5022] = 5022, + [5023] = 4950, + [5024] = 5024, [5025] = 5025, - [5026] = 5021, - [5027] = 5025, - [5028] = 3127, - [5029] = 188, - [5030] = 189, - [5031] = 4944, - [5032] = 4765, + [5026] = 2503, + [5027] = 4902, + [5028] = 4876, + [5029] = 5029, + [5030] = 5030, + [5031] = 5031, + [5032] = 5032, [5033] = 5033, - [5034] = 4855, + [5034] = 5034, [5035] = 5035, [5036] = 5036, - [5037] = 4874, + [5037] = 5037, [5038] = 5038, [5039] = 5039, - [5040] = 5033, + [5040] = 5040, [5041] = 5041, [5042] = 5042, [5043] = 5043, - [5044] = 5036, - [5045] = 189, - [5046] = 199, - [5047] = 200, - [5048] = 190, - [5049] = 5049, - [5050] = 5050, - [5051] = 549, - [5052] = 4796, - [5053] = 5053, + [5044] = 5044, + [5045] = 5045, + [5046] = 2479, + [5047] = 5047, + [5048] = 2648, + [5049] = 230, + [5050] = 213, + [5051] = 237, + [5052] = 239, + [5053] = 242, [5054] = 5054, - [5055] = 5055, - [5056] = 5056, - [5057] = 183, - [5058] = 2386, - [5059] = 555, - [5060] = 558, - [5061] = 563, - [5062] = 567, - [5063] = 185, - [5064] = 4850, - [5065] = 568, - [5066] = 569, - [5067] = 570, - [5068] = 4839, - [5069] = 199, - [5070] = 200, - [5071] = 190, - [5072] = 571, - [5073] = 572, - [5074] = 573, - [5075] = 574, - [5076] = 575, - [5077] = 576, - [5078] = 578, - [5079] = 5079, - [5080] = 5080, - [5081] = 4793, - [5082] = 5082, - [5083] = 1962, - [5084] = 4799, - [5085] = 1974, - [5086] = 5086, - [5087] = 5087, - [5088] = 5088, - [5089] = 5089, - [5090] = 5090, + [5055] = 213, + [5056] = 225, + [5057] = 4945, + [5058] = 4899, + [5059] = 217, + [5060] = 5060, + [5061] = 4939, + [5062] = 4852, + [5063] = 5063, + [5064] = 5064, + [5065] = 5065, + [5066] = 5047, + [5067] = 5054, + [5068] = 5068, + [5069] = 5069, + [5070] = 5070, + [5071] = 1233, + [5072] = 5072, + [5073] = 5073, + [5074] = 5074, + [5075] = 5075, + [5076] = 5060, + [5077] = 5077, + [5078] = 5078, + [5079] = 2387, + [5080] = 4840, + [5081] = 4912, + [5082] = 595, + [5083] = 4972, + [5084] = 5084, + [5085] = 5085, + [5086] = 226, + [5087] = 221, + [5088] = 220, + [5089] = 4888, + [5090] = 596, [5091] = 5091, - [5092] = 1928, - [5093] = 5093, - [5094] = 4773, + [5092] = 598, + [5093] = 599, + [5094] = 5094, [5095] = 5095, - [5096] = 4891, - [5097] = 5093, - [5098] = 183, + [5096] = 600, + [5097] = 601, + [5098] = 602, [5099] = 5099, - [5100] = 185, - [5101] = 189, - [5102] = 3105, - [5103] = 199, - [5104] = 200, - [5105] = 190, - [5106] = 5106, - [5107] = 184, - [5108] = 4716, - [5109] = 4904, - [5110] = 5110, - [5111] = 1195, - [5112] = 5112, - [5113] = 2433, - [5114] = 5114, + [5100] = 5100, + [5101] = 5101, + [5102] = 603, + [5103] = 604, + [5104] = 605, + [5105] = 606, + [5106] = 607, + [5107] = 608, + [5108] = 609, + [5109] = 5109, + [5110] = 214, + [5111] = 216, + [5112] = 2001, + [5113] = 4854, + [5114] = 2005, [5115] = 5115, - [5116] = 5116, + [5116] = 4976, [5117] = 5117, [5118] = 5118, - [5119] = 5119, - [5120] = 5120, - [5121] = 4592, - [5122] = 4602, - [5123] = 5120, - [5124] = 193, - [5125] = 3127, - [5126] = 5126, - [5127] = 5127, - [5128] = 2458, + [5119] = 2025, + [5120] = 4941, + [5121] = 5121, + [5122] = 5122, + [5123] = 4662, + [5124] = 5124, + [5125] = 5084, + [5126] = 4979, + [5127] = 4981, + [5128] = 214, [5129] = 5129, - [5130] = 191, - [5131] = 193, + [5130] = 216, + [5131] = 5131, [5132] = 5132, - [5133] = 134, - [5134] = 183, - [5135] = 184, - [5136] = 191, - [5137] = 5120, - [5138] = 3248, - [5139] = 183, - [5140] = 5140, - [5141] = 183, - [5142] = 5120, - [5143] = 185, + [5133] = 5133, + [5134] = 5115, + [5135] = 5135, + [5136] = 225, + [5137] = 3153, + [5138] = 226, + [5139] = 221, + [5140] = 220, + [5141] = 5141, + [5142] = 212, + [5143] = 4904, [5144] = 5144, [5145] = 5145, - [5146] = 5120, - [5147] = 5119, - [5148] = 193, - [5149] = 3105, - [5150] = 185, - [5151] = 191, - [5152] = 216, - [5153] = 202, - [5154] = 5120, - [5155] = 5120, - [5156] = 3248, - [5157] = 3127, - [5158] = 189, - [5159] = 199, - [5160] = 200, - [5161] = 190, - [5162] = 3105, - [5163] = 185, - [5164] = 205, - [5165] = 3248, - [5166] = 5166, + [5146] = 5146, + [5147] = 5147, + [5148] = 5148, + [5149] = 5149, + [5150] = 4810, + [5151] = 587, + [5152] = 588, + [5153] = 217, + [5154] = 5154, + [5155] = 597, + [5156] = 2479, + [5157] = 5157, + [5158] = 5158, + [5159] = 5159, + [5160] = 3153, + [5161] = 5161, + [5162] = 5162, + [5163] = 224, + [5164] = 3255, + [5165] = 216, + [5166] = 212, [5167] = 5167, - [5168] = 5168, + [5168] = 218, [5169] = 5169, [5170] = 5170, - [5171] = 5169, - [5172] = 5170, - [5173] = 204, - [5174] = 205, - [5175] = 135, - [5176] = 199, - [5177] = 200, - [5178] = 5178, - [5179] = 5179, - [5180] = 190, - [5181] = 201, - [5182] = 5129, - [5183] = 5178, - [5184] = 5179, - [5185] = 185, - [5186] = 5186, + [5171] = 224, + [5172] = 5162, + [5173] = 5173, + [5174] = 5174, + [5175] = 3153, + [5176] = 5176, + [5177] = 3248, + [5178] = 218, + [5179] = 5170, + [5180] = 5180, + [5181] = 4718, + [5182] = 214, + [5183] = 4719, + [5184] = 216, + [5185] = 214, + [5186] = 214, [5187] = 5187, - [5188] = 208, - [5189] = 136, - [5190] = 204, - [5191] = 201, - [5192] = 205, - [5193] = 5193, - [5194] = 3127, - [5195] = 1195, - [5196] = 4947, - [5197] = 208, - [5198] = 193, - [5199] = 5199, - [5200] = 189, - [5201] = 4758, - [5202] = 191, - [5203] = 183, - [5204] = 5178, - [5205] = 5169, - [5206] = 5170, - [5207] = 5179, - [5208] = 4761, - [5209] = 194, - [5210] = 206, - [5211] = 135, - [5212] = 183, + [5188] = 216, + [5189] = 5170, + [5190] = 5170, + [5191] = 5170, + [5192] = 5192, + [5193] = 5170, + [5194] = 5170, + [5195] = 2503, + [5196] = 5196, + [5197] = 3248, + [5198] = 3255, + [5199] = 225, + [5200] = 226, + [5201] = 221, + [5202] = 220, + [5203] = 224, + [5204] = 218, + [5205] = 161, + [5206] = 5206, + [5207] = 5174, + [5208] = 5208, + [5209] = 5209, + [5210] = 4936, + [5211] = 4815, + [5212] = 1233, [5213] = 5213, [5214] = 5214, - [5215] = 193, - [5216] = 5140, - [5217] = 4862, - [5218] = 5169, - [5219] = 5170, - [5220] = 5169, - [5221] = 5170, - [5222] = 191, - [5223] = 324, - [5224] = 5224, - [5225] = 185, - [5226] = 185, - [5227] = 1195, - [5228] = 5166, - [5229] = 5126, - [5230] = 5127, - [5231] = 5214, - [5232] = 5186, - [5233] = 5114, - [5234] = 4783, - [5235] = 4785, - [5236] = 2468, - [5237] = 5187, - [5238] = 201, - [5239] = 5166, - [5240] = 5213, - [5241] = 208, - [5242] = 3248, - [5243] = 3127, - [5244] = 5167, - [5245] = 5168, - [5246] = 5167, - [5247] = 193, - [5248] = 5168, - [5249] = 204, - [5250] = 136, - [5251] = 5169, - [5252] = 5170, - [5253] = 203, - [5254] = 183, - [5255] = 4792, - [5256] = 216, - [5257] = 202, - [5258] = 134, - [5259] = 191, - [5260] = 204, - [5261] = 5261, - [5262] = 5262, - [5263] = 5262, - [5264] = 206, - [5265] = 1400, - [5266] = 183, - [5267] = 222, - [5268] = 208, - [5269] = 5269, - [5270] = 5270, - [5271] = 185, - [5272] = 191, - [5273] = 5269, - [5274] = 140, - [5275] = 5270, - [5276] = 204, - [5277] = 5277, - [5278] = 193, - [5279] = 5269, - [5280] = 205, - [5281] = 5270, - [5282] = 205, - [5283] = 5269, - [5284] = 5270, - [5285] = 5270, + [5215] = 214, + [5216] = 5208, + [5217] = 5209, + [5218] = 216, + [5219] = 163, + [5220] = 237, + [5221] = 5221, + [5222] = 224, + [5223] = 225, + [5224] = 242, + [5225] = 226, + [5226] = 221, + [5227] = 220, + [5228] = 230, + [5229] = 235, + [5230] = 246, + [5231] = 5213, + [5232] = 5214, + [5233] = 218, + [5234] = 5234, + [5235] = 5235, + [5236] = 5206, + [5237] = 219, + [5238] = 5238, + [5239] = 5208, + [5240] = 5209, + [5241] = 230, + [5242] = 162, + [5243] = 5243, + [5244] = 237, + [5245] = 5213, + [5246] = 5214, + [5247] = 239, + [5248] = 242, + [5249] = 5249, + [5250] = 5234, + [5251] = 245, + [5252] = 4825, + [5253] = 224, + [5254] = 218, + [5255] = 195, + [5256] = 5256, + [5257] = 224, + [5258] = 5180, + [5259] = 5157, + [5260] = 5158, + [5261] = 218, + [5262] = 5208, + [5263] = 5209, + [5264] = 2493, + [5265] = 214, + [5266] = 5243, + [5267] = 5208, + [5268] = 5209, + [5269] = 5208, + [5270] = 5209, + [5271] = 235, + [5272] = 5235, + [5273] = 5206, + [5274] = 3248, + [5275] = 230, + [5276] = 237, + [5277] = 239, + [5278] = 246, + [5279] = 242, + [5280] = 161, + [5281] = 4967, + [5282] = 4968, + [5283] = 4969, + [5284] = 5284, + [5285] = 216, [5286] = 5286, - [5287] = 5269, - [5288] = 5270, - [5289] = 201, - [5290] = 372, - [5291] = 5269, - [5292] = 5270, - [5293] = 5269, - [5294] = 5270, - [5295] = 5295, - [5296] = 1195, - [5297] = 5269, - [5298] = 5270, - [5299] = 206, - [5300] = 5261, - [5301] = 191, - [5302] = 5270, - [5303] = 5286, - [5304] = 5261, - [5305] = 5286, - [5306] = 232, - [5307] = 5269, - [5308] = 208, - [5309] = 203, - [5310] = 138, - [5311] = 5262, - [5312] = 1379, - [5313] = 5262, - [5314] = 5314, - [5315] = 5262, - [5316] = 203, - [5317] = 208, - [5318] = 137, - [5319] = 5319, - [5320] = 191, - [5321] = 203, - [5322] = 5286, - [5323] = 5270, - [5324] = 201, - [5325] = 5269, - [5326] = 5326, - [5327] = 205, - [5328] = 5270, - [5329] = 5269, - [5330] = 5277, - [5331] = 138, - [5332] = 5326, - [5333] = 137, - [5334] = 5326, - [5335] = 5261, - [5336] = 5262, - [5337] = 5270, - [5338] = 206, - [5339] = 5261, - [5340] = 5270, - [5341] = 5286, - [5342] = 193, - [5343] = 5286, - [5344] = 5269, - [5345] = 139, - [5346] = 5270, - [5347] = 5286, - [5348] = 193, - [5349] = 141, - [5350] = 204, - [5351] = 5270, - [5352] = 201, - [5353] = 5262, - [5354] = 5270, - [5355] = 5261, - [5356] = 5326, - [5357] = 5261, - [5358] = 2837, - [5359] = 345, - [5360] = 301, - [5361] = 5361, - [5362] = 232, - [5363] = 318, - [5364] = 205, - [5365] = 5365, - [5366] = 299, - [5367] = 300, - [5368] = 301, - [5369] = 302, - [5370] = 303, - [5371] = 304, - [5372] = 305, - [5373] = 307, - [5374] = 309, - [5375] = 310, - [5376] = 311, - [5377] = 313, - [5378] = 345, - [5379] = 318, - [5380] = 323, - [5381] = 333, - [5382] = 335, - [5383] = 337, - [5384] = 342, - [5385] = 1379, - [5386] = 343, - [5387] = 134, - [5388] = 342, - [5389] = 343, - [5390] = 299, - [5391] = 300, - [5392] = 301, - [5393] = 302, - [5394] = 303, - [5395] = 304, - [5396] = 305, - [5397] = 307, - [5398] = 309, - [5399] = 310, - [5400] = 311, - [5401] = 313, - [5402] = 345, - [5403] = 318, - [5404] = 323, - [5405] = 333, - [5406] = 335, - [5407] = 337, - [5408] = 344, - [5409] = 314, - [5410] = 1195, - [5411] = 252, - [5412] = 299, - [5413] = 323, - [5414] = 333, - [5415] = 335, - [5416] = 201, - [5417] = 337, - [5418] = 144, - [5419] = 142, - [5420] = 1720, - [5421] = 1721, - [5422] = 5129, - [5423] = 253, - [5424] = 206, - [5425] = 143, - [5426] = 208, - [5427] = 1726, - [5428] = 5428, - [5429] = 232, - [5430] = 193, - [5431] = 204, - [5432] = 1727, - [5433] = 205, - [5434] = 134, - [5435] = 1400, - [5436] = 344, - [5437] = 216, - [5438] = 222, - [5439] = 302, - [5440] = 436, - [5441] = 206, - [5442] = 5442, - [5443] = 5443, - [5444] = 344, - [5445] = 232, - [5446] = 144, - [5447] = 142, - [5448] = 303, - [5449] = 314, - [5450] = 304, - [5451] = 250, - [5452] = 1719, - [5453] = 1722, - [5454] = 1723, - [5455] = 203, - [5456] = 222, - [5457] = 314, - [5458] = 202, - [5459] = 305, - [5460] = 300, - [5461] = 5428, - [5462] = 5462, - [5463] = 5129, - [5464] = 5464, - [5465] = 143, - [5466] = 203, - [5467] = 307, - [5468] = 201, - [5469] = 445, - [5470] = 1195, - [5471] = 208, - [5472] = 204, - [5473] = 5428, - [5474] = 343, - [5475] = 205, - [5476] = 1498, - [5477] = 309, - [5478] = 1728, - [5479] = 1729, - [5480] = 1509, - [5481] = 134, - [5482] = 251, - [5483] = 216, - [5484] = 310, - [5485] = 202, - [5486] = 201, - [5487] = 342, - [5488] = 5295, - [5489] = 464, - [5490] = 191, - [5491] = 5443, - [5492] = 222, - [5493] = 208, - [5494] = 438, - [5495] = 439, - [5496] = 5443, - [5497] = 343, - [5498] = 1474, - [5499] = 311, - [5500] = 313, - [5501] = 204, - [5502] = 5502, - [5503] = 252, - [5504] = 5504, - [5505] = 134, - [5506] = 436, - [5507] = 300, - [5508] = 301, - [5509] = 253, - [5510] = 5510, - [5511] = 2742, - [5512] = 342, - [5513] = 250, - [5514] = 3058, - [5515] = 1195, - [5516] = 286, - [5517] = 205, - [5518] = 232, - [5519] = 253, - [5520] = 201, - [5521] = 299, - [5522] = 5522, - [5523] = 5523, - [5524] = 208, - [5525] = 5525, - [5526] = 1011, - [5527] = 464, - [5528] = 300, - [5529] = 445, - [5530] = 5295, - [5531] = 5531, + [5287] = 3248, + [5288] = 3255, + [5289] = 5169, + [5290] = 1233, + [5291] = 244, + [5292] = 5221, + [5293] = 5284, + [5294] = 239, + [5295] = 5249, + [5296] = 5234, + [5297] = 5235, + [5298] = 3255, + [5299] = 4940, + [5300] = 224, + [5301] = 239, + [5302] = 242, + [5303] = 1233, + [5304] = 5304, + [5305] = 5305, + [5306] = 5306, + [5307] = 1438, + [5308] = 5306, + [5309] = 5309, + [5310] = 5310, + [5311] = 5306, + [5312] = 5310, + [5313] = 5313, + [5314] = 259, + [5315] = 164, + [5316] = 5306, + [5317] = 5310, + [5318] = 245, + [5319] = 244, + [5320] = 5309, + [5321] = 163, + [5322] = 5306, + [5323] = 5310, + [5324] = 5306, + [5325] = 5310, + [5326] = 245, + [5327] = 5306, + [5328] = 5310, + [5329] = 244, + [5330] = 5306, + [5331] = 5310, + [5332] = 218, + [5333] = 5306, + [5334] = 5310, + [5335] = 5305, + [5336] = 5306, + [5337] = 5310, + [5338] = 5306, + [5339] = 230, + [5340] = 1460, + [5341] = 237, + [5342] = 224, + [5343] = 5343, + [5344] = 5304, + [5345] = 5305, + [5346] = 230, + [5347] = 199, + [5348] = 5310, + [5349] = 237, + [5350] = 5304, + [5351] = 5310, + [5352] = 5313, + [5353] = 262, + [5354] = 239, + [5355] = 242, + [5356] = 5310, + [5357] = 5313, + [5358] = 5313, + [5359] = 5359, + [5360] = 218, + [5361] = 5309, + [5362] = 5362, + [5363] = 165, + [5364] = 5304, + [5365] = 230, + [5366] = 5366, + [5367] = 5304, + [5368] = 5305, + [5369] = 5310, + [5370] = 5304, + [5371] = 5305, + [5372] = 5306, + [5373] = 162, + [5374] = 214, + [5375] = 239, + [5376] = 216, + [5377] = 244, + [5378] = 5310, + [5379] = 5310, + [5380] = 5313, + [5381] = 5310, + [5382] = 5313, + [5383] = 245, + [5384] = 5305, + [5385] = 237, + [5386] = 5309, + [5387] = 5343, + [5388] = 242, + [5389] = 1637, + [5390] = 1667, + [5391] = 1233, + [5392] = 259, + [5393] = 5393, + [5394] = 244, + [5395] = 262, + [5396] = 5393, + [5397] = 262, + [5398] = 1233, + [5399] = 1438, + [5400] = 5169, + [5401] = 276, + [5402] = 230, + [5403] = 5403, + [5404] = 1633, + [5405] = 5405, + [5406] = 325, + [5407] = 275, + [5408] = 259, + [5409] = 237, + [5410] = 170, + [5411] = 171, + [5412] = 246, + [5413] = 168, + [5414] = 259, + [5415] = 245, + [5416] = 164, + [5417] = 165, + [5418] = 462, + [5419] = 326, + [5420] = 327, + [5421] = 328, + [5422] = 329, + [5423] = 330, + [5424] = 331, + [5425] = 332, + [5426] = 333, + [5427] = 334, + [5428] = 335, + [5429] = 336, + [5430] = 337, + [5431] = 338, + [5432] = 339, + [5433] = 340, + [5434] = 341, + [5435] = 342, + [5436] = 343, + [5437] = 230, + [5438] = 5362, + [5439] = 346, + [5440] = 1638, + [5441] = 323, + [5442] = 161, + [5443] = 346, + [5444] = 323, + [5445] = 326, + [5446] = 327, + [5447] = 328, + [5448] = 329, + [5449] = 330, + [5450] = 331, + [5451] = 332, + [5452] = 333, + [5453] = 346, + [5454] = 334, + [5455] = 335, + [5456] = 5393, + [5457] = 336, + [5458] = 338, + [5459] = 339, + [5460] = 340, + [5461] = 341, + [5462] = 342, + [5463] = 343, + [5464] = 463, + [5465] = 324, + [5466] = 5466, + [5467] = 323, + [5468] = 325, + [5469] = 5169, + [5470] = 5470, + [5471] = 167, + [5472] = 326, + [5473] = 1559, + [5474] = 237, + [5475] = 5475, + [5476] = 1554, + [5477] = 5477, + [5478] = 239, + [5479] = 1528, + [5480] = 5405, + [5481] = 239, + [5482] = 242, + [5483] = 464, + [5484] = 235, + [5485] = 1663, + [5486] = 246, + [5487] = 1664, + [5488] = 327, + [5489] = 328, + [5490] = 321, + [5491] = 329, + [5492] = 330, + [5493] = 331, + [5494] = 332, + [5495] = 1640, + [5496] = 1642, + [5497] = 333, + [5498] = 334, + [5499] = 335, + [5500] = 336, + [5501] = 337, + [5502] = 338, + [5503] = 339, + [5504] = 277, + [5505] = 340, + [5506] = 341, + [5507] = 342, + [5508] = 224, + [5509] = 343, + [5510] = 461, + [5511] = 262, + [5512] = 470, + [5513] = 169, + [5514] = 218, + [5515] = 324, + [5516] = 235, + [5517] = 161, + [5518] = 1460, + [5519] = 166, + [5520] = 5405, + [5521] = 242, + [5522] = 1666, + [5523] = 337, + [5524] = 162, + [5525] = 330, + [5526] = 331, + [5527] = 342, + [5528] = 161, + [5529] = 332, + [5530] = 1233, + [5531] = 321, [5532] = 5532, - [5533] = 222, - [5534] = 405, - [5535] = 301, - [5536] = 252, - [5537] = 302, - [5538] = 5538, - [5539] = 5502, - [5540] = 303, - [5541] = 135, - [5542] = 304, - [5543] = 5543, - [5544] = 305, - [5545] = 302, - [5546] = 303, - [5547] = 1498, - [5548] = 5525, - [5549] = 304, - [5550] = 232, - [5551] = 136, - [5552] = 307, - [5553] = 2745, - [5554] = 309, - [5555] = 310, - [5556] = 311, - [5557] = 313, - [5558] = 345, - [5559] = 314, - [5560] = 438, - [5561] = 318, - [5562] = 323, - [5563] = 333, - [5564] = 305, - [5565] = 335, - [5566] = 5543, - [5567] = 439, - [5568] = 307, - [5569] = 5569, - [5570] = 337, - [5571] = 309, - [5572] = 310, - [5573] = 5573, - [5574] = 5574, - [5575] = 145, - [5576] = 2753, - [5577] = 407, - [5578] = 1928, - [5579] = 5510, - [5580] = 364, - [5581] = 251, - [5582] = 250, - [5583] = 311, - [5584] = 313, - [5585] = 5569, - [5586] = 409, - [5587] = 5587, - [5588] = 135, - [5589] = 136, - [5590] = 345, - [5591] = 251, - [5592] = 318, - [5593] = 1962, - [5594] = 323, - [5595] = 285, - [5596] = 1195, - [5597] = 5574, - [5598] = 5598, - [5599] = 5504, - [5600] = 1474, - [5601] = 134, - [5602] = 135, - [5603] = 136, - [5604] = 327, - [5605] = 5129, - [5606] = 1974, - [5607] = 5523, - [5608] = 328, - [5609] = 5531, - [5610] = 5532, - [5611] = 5538, - [5612] = 1509, - [5613] = 299, - [5614] = 250, - [5615] = 5615, - [5616] = 252, - [5617] = 253, - [5618] = 204, - [5619] = 333, - [5620] = 335, - [5621] = 5621, - [5622] = 337, - [5623] = 5623, - [5624] = 329, - [5625] = 222, - [5626] = 285, - [5627] = 286, - [5628] = 2837, - [5629] = 251, - [5630] = 2694, - [5631] = 344, - [5632] = 5522, - [5633] = 5633, + [5533] = 293, + [5534] = 262, + [5535] = 1559, + [5536] = 5536, + [5537] = 5537, + [5538] = 275, + [5539] = 324, + [5540] = 462, + [5541] = 5541, + [5542] = 321, + [5543] = 5536, + [5544] = 5544, + [5545] = 343, + [5546] = 2750, + [5547] = 5547, + [5548] = 5548, + [5549] = 325, + [5550] = 5550, + [5551] = 5547, + [5552] = 325, + [5553] = 161, + [5554] = 5554, + [5555] = 162, + [5556] = 163, + [5557] = 276, + [5558] = 169, + [5559] = 5548, + [5560] = 324, + [5561] = 5554, + [5562] = 2001, + [5563] = 326, + [5564] = 1046, + [5565] = 2783, + [5566] = 5566, + [5567] = 333, + [5568] = 334, + [5569] = 327, + [5570] = 275, + [5571] = 2819, + [5572] = 5572, + [5573] = 328, + [5574] = 5537, + [5575] = 461, + [5576] = 5576, + [5577] = 335, + [5578] = 161, + [5579] = 296, + [5580] = 1528, + [5581] = 170, + [5582] = 5582, + [5583] = 171, + [5584] = 336, + [5585] = 5169, + [5586] = 2846, + [5587] = 337, + [5588] = 5588, + [5589] = 5589, + [5590] = 338, + [5591] = 1554, + [5592] = 276, + [5593] = 5593, + [5594] = 464, + [5595] = 470, + [5596] = 5596, + [5597] = 5597, + [5598] = 2831, + [5599] = 346, + [5600] = 277, + [5601] = 329, + [5602] = 463, + [5603] = 230, + [5604] = 1233, + [5605] = 275, + [5606] = 323, + [5607] = 5566, + [5608] = 2005, + [5609] = 296, + [5610] = 237, + [5611] = 5593, + [5612] = 293, + [5613] = 339, + [5614] = 239, + [5615] = 5572, + [5616] = 2025, + [5617] = 242, + [5618] = 321, + [5619] = 276, + [5620] = 5588, + [5621] = 5589, + [5622] = 5541, + [5623] = 357, + [5624] = 277, + [5625] = 362, + [5626] = 340, + [5627] = 277, + [5628] = 341, + [5629] = 5362, + [5630] = 259, + [5631] = 5532, + [5632] = 364, + [5633] = 163, [5634] = 5634, - [5635] = 5635, - [5636] = 5636, + [5635] = 162, + [5636] = 275, [5637] = 5637, - [5638] = 5634, - [5639] = 5636, - [5640] = 5637, - [5641] = 325, + [5638] = 5638, + [5639] = 2783, + [5640] = 464, + [5641] = 321, [5642] = 5642, - [5643] = 5643, - [5644] = 5633, - [5645] = 5645, - [5646] = 5646, + [5643] = 163, + [5644] = 384, + [5645] = 385, + [5646] = 386, [5647] = 5647, [5648] = 5648, [5649] = 5649, - [5650] = 5635, - [5651] = 4072, + [5650] = 5650, + [5651] = 276, [5652] = 5652, - [5653] = 5653, - [5654] = 5634, - [5655] = 5635, - [5656] = 5636, - [5657] = 5637, - [5658] = 1728, - [5659] = 5642, - [5660] = 250, - [5661] = 5633, - [5662] = 5662, - [5663] = 5648, - [5664] = 5635, - [5665] = 140, - [5666] = 4086, - [5667] = 5634, - [5668] = 5636, - [5669] = 5637, - [5670] = 206, - [5671] = 5642, - [5672] = 5633, - [5673] = 5673, + [5653] = 470, + [5654] = 5654, + [5655] = 277, + [5656] = 5656, + [5657] = 5657, + [5658] = 5658, + [5659] = 5659, + [5660] = 5660, + [5661] = 5661, + [5662] = 5634, + [5663] = 5663, + [5664] = 397, + [5665] = 5665, + [5666] = 214, + [5667] = 2884, + [5668] = 2885, + [5669] = 5665, + [5670] = 244, + [5671] = 4209, + [5672] = 5672, + [5673] = 4165, [5674] = 5674, - [5675] = 5675, - [5676] = 5648, - [5677] = 5635, - [5678] = 5678, + [5675] = 5672, + [5676] = 1438, + [5677] = 5652, + [5678] = 5654, [5679] = 5679, - [5680] = 5634, - [5681] = 5681, - [5682] = 5636, - [5683] = 5637, - [5684] = 5642, - [5685] = 5633, - [5686] = 251, - [5687] = 383, - [5688] = 5648, - [5689] = 5635, + [5680] = 5680, + [5681] = 5642, + [5682] = 5582, + [5683] = 5680, + [5684] = 5637, + [5685] = 5638, + [5686] = 5642, + [5687] = 392, + [5688] = 352, + [5689] = 5689, [5690] = 5690, - [5691] = 326, - [5692] = 5634, - [5693] = 5636, - [5694] = 5637, - [5695] = 5642, - [5696] = 5633, - [5697] = 5697, - [5698] = 5648, - [5699] = 5635, - [5700] = 5700, - [5701] = 5642, - [5702] = 5635, - [5703] = 5634, - [5704] = 138, - [5705] = 5642, - [5706] = 137, - [5707] = 5633, - [5708] = 5642, - [5709] = 5648, - [5710] = 5648, - [5711] = 5633, - [5712] = 5635, - [5713] = 2816, + [5691] = 5691, + [5692] = 356, + [5693] = 244, + [5694] = 5694, + [5695] = 216, + [5696] = 1633, + [5697] = 244, + [5698] = 172, + [5699] = 162, + [5700] = 1070, + [5701] = 5701, + [5702] = 5702, + [5703] = 5665, + [5704] = 5704, + [5705] = 2819, + [5706] = 163, + [5707] = 5672, + [5708] = 5652, + [5709] = 5654, + [5710] = 5679, + [5711] = 5680, + [5712] = 5712, + [5713] = 1637, [5714] = 5714, - [5715] = 5634, - [5716] = 5635, - [5717] = 5642, - [5718] = 5633, - [5719] = 1720, - [5720] = 252, - [5721] = 5648, - [5722] = 1721, - [5723] = 5635, - [5724] = 5724, - [5725] = 5725, - [5726] = 203, - [5727] = 5634, - [5728] = 5642, - [5729] = 5633, - [5730] = 5648, - [5731] = 5635, - [5732] = 5634, - [5733] = 5642, - [5734] = 5633, - [5735] = 5648, - [5736] = 5635, - [5737] = 1400, - [5738] = 253, - [5739] = 5634, - [5740] = 5642, - [5741] = 5633, - [5742] = 5648, - [5743] = 5635, - [5744] = 5634, - [5745] = 5642, - [5746] = 5633, - [5747] = 5648, - [5748] = 5635, - [5749] = 5633, - [5750] = 5648, - [5751] = 5635, - [5752] = 1722, - [5753] = 1723, - [5754] = 2817, - [5755] = 5633, - [5756] = 5648, - [5757] = 5635, - [5758] = 141, - [5759] = 206, - [5760] = 5633, - [5761] = 5648, - [5762] = 5635, - [5763] = 5633, - [5764] = 5648, - [5765] = 5635, - [5766] = 203, - [5767] = 5635, - [5768] = 5648, - [5769] = 5635, - [5770] = 5635, - [5771] = 5635, - [5772] = 5635, - [5773] = 5635, - [5774] = 5635, - [5775] = 5635, - [5776] = 5635, - [5777] = 5635, - [5778] = 5635, - [5779] = 5635, - [5780] = 5635, - [5781] = 5648, - [5782] = 5635, - [5783] = 5635, - [5784] = 5635, - [5785] = 5635, - [5786] = 5635, - [5787] = 5635, - [5788] = 5635, - [5789] = 5635, - [5790] = 5635, - [5791] = 5633, - [5792] = 385, - [5793] = 206, - [5794] = 398, - [5795] = 5598, - [5796] = 384, - [5797] = 5662, + [5715] = 5642, + [5716] = 245, + [5717] = 5665, + [5718] = 1638, + [5719] = 405, + [5720] = 1640, + [5721] = 1642, + [5722] = 5672, + [5723] = 5652, + [5724] = 5654, + [5725] = 1460, + [5726] = 5679, + [5727] = 5680, + [5728] = 5665, + [5729] = 5642, + [5730] = 5665, + [5731] = 5731, + [5732] = 5672, + [5733] = 5652, + [5734] = 5654, + [5735] = 5679, + [5736] = 5736, + [5737] = 5680, + [5738] = 5738, + [5739] = 5642, + [5740] = 5665, + [5741] = 1438, + [5742] = 5672, + [5743] = 5743, + [5744] = 5652, + [5745] = 5654, + [5746] = 5679, + [5747] = 5680, + [5748] = 5642, + [5749] = 5665, + [5750] = 5672, + [5751] = 5652, + [5752] = 5654, + [5753] = 5679, + [5754] = 5680, + [5755] = 5642, + [5756] = 5665, + [5757] = 5672, + [5758] = 5652, + [5759] = 5654, + [5760] = 5679, + [5761] = 5680, + [5762] = 5642, + [5763] = 5665, + [5764] = 245, + [5765] = 5672, + [5766] = 5652, + [5767] = 5654, + [5768] = 5679, + [5769] = 5680, + [5770] = 5642, + [5771] = 5665, + [5772] = 5672, + [5773] = 5652, + [5774] = 5654, + [5775] = 5679, + [5776] = 5680, + [5777] = 5642, + [5778] = 5665, + [5779] = 5672, + [5780] = 5679, + [5781] = 5680, + [5782] = 5642, + [5783] = 5665, + [5784] = 5784, + [5785] = 5672, + [5786] = 5679, + [5787] = 5787, + [5788] = 5680, + [5789] = 5642, + [5790] = 5665, + [5791] = 5672, + [5792] = 5679, + [5793] = 5680, + [5794] = 5642, + [5795] = 5665, + [5796] = 5672, + [5797] = 5797, [5798] = 5679, - [5799] = 5700, - [5800] = 2742, - [5801] = 139, - [5802] = 203, - [5803] = 5803, - [5804] = 464, - [5805] = 5674, - [5806] = 436, - [5807] = 5675, - [5808] = 398, - [5809] = 5809, - [5810] = 5634, + [5799] = 5680, + [5800] = 5642, + [5801] = 5665, + [5802] = 5672, + [5803] = 5679, + [5804] = 5680, + [5805] = 5642, + [5806] = 5665, + [5807] = 418, + [5808] = 5680, + [5809] = 5642, + [5810] = 5665, [5811] = 5811, - [5812] = 5636, - [5813] = 5637, - [5814] = 5642, - [5815] = 135, - [5816] = 2753, - [5817] = 1379, - [5818] = 1379, - [5819] = 391, - [5820] = 391, - [5821] = 5633, - [5822] = 5822, - [5823] = 251, - [5824] = 383, - [5825] = 384, - [5826] = 385, - [5827] = 5827, - [5828] = 3421, - [5829] = 438, - [5830] = 439, - [5831] = 5648, - [5832] = 5648, - [5833] = 1727, - [5834] = 5811, - [5835] = 5635, - [5836] = 5836, - [5837] = 5837, - [5838] = 5634, - [5839] = 5839, - [5840] = 5674, - [5841] = 5636, - [5842] = 5842, - [5843] = 5675, - [5844] = 5636, - [5845] = 1400, - [5846] = 5637, - [5847] = 5847, - [5848] = 252, - [5849] = 5849, - [5850] = 5637, - [5851] = 5851, - [5852] = 253, - [5853] = 1729, - [5854] = 5854, - [5855] = 445, - [5856] = 5856, - [5857] = 5847, - [5858] = 5642, - [5859] = 136, - [5860] = 5635, - [5861] = 5634, - [5862] = 1719, - [5863] = 5863, - [5864] = 5648, - [5865] = 5636, - [5866] = 5637, + [5812] = 5680, + [5813] = 5642, + [5814] = 5665, + [5815] = 5680, + [5816] = 5642, + [5817] = 5665, + [5818] = 5680, + [5819] = 5642, + [5820] = 5665, + [5821] = 5665, + [5822] = 5665, + [5823] = 5665, + [5824] = 5665, + [5825] = 5665, + [5826] = 5665, + [5827] = 5665, + [5828] = 5665, + [5829] = 5665, + [5830] = 5665, + [5831] = 5665, + [5832] = 5665, + [5833] = 5665, + [5834] = 5665, + [5835] = 5665, + [5836] = 5665, + [5837] = 5665, + [5838] = 5665, + [5839] = 5665, + [5840] = 5665, + [5841] = 5665, + [5842] = 5665, + [5843] = 5665, + [5844] = 5665, + [5845] = 5731, + [5846] = 5736, + [5847] = 5738, + [5848] = 5672, + [5849] = 1663, + [5850] = 1664, + [5851] = 5679, + [5852] = 1666, + [5853] = 1460, + [5854] = 1667, + [5855] = 396, + [5856] = 5652, + [5857] = 5654, + [5858] = 5656, + [5859] = 3106, + [5860] = 463, + [5861] = 5861, + [5862] = 5862, + [5863] = 420, + [5864] = 5679, + [5865] = 5865, + [5866] = 5866, [5867] = 5867, - [5868] = 5868, + [5868] = 5680, [5869] = 5642, - [5870] = 5633, - [5871] = 5871, - [5872] = 5827, - [5873] = 5673, - [5874] = 391, - [5875] = 5875, - [5876] = 185, - [5877] = 5634, - [5878] = 383, - [5879] = 384, - [5880] = 385, - [5881] = 5881, - [5882] = 250, - [5883] = 5648, - [5884] = 5635, - [5885] = 5633, - [5886] = 5634, - [5887] = 5636, - [5888] = 5637, - [5889] = 5642, - [5890] = 5633, - [5891] = 1029, - [5892] = 5892, - [5893] = 183, + [5870] = 5870, + [5871] = 245, + [5872] = 5784, + [5873] = 5873, + [5874] = 5637, + [5875] = 5638, + [5876] = 462, + [5877] = 461, + [5878] = 5647, + [5879] = 392, + [5880] = 5680, + [5881] = 384, + [5882] = 385, + [5883] = 386, + [5884] = 5884, + [5885] = 5885, + [5886] = 5674, + [5887] = 5887, + [5888] = 5887, + [5889] = 5889, + [5890] = 5885, + [5891] = 5891, + [5892] = 224, + [5893] = 5893, [5894] = 5894, - [5895] = 1726, - [5896] = 3438, - [5897] = 5635, + [5895] = 5895, + [5896] = 5887, + [5897] = 5885, [5898] = 5898, - [5899] = 5899, - [5900] = 1719, - [5901] = 5901, - [5902] = 5902, - [5903] = 5690, - [5904] = 5697, - [5905] = 5875, - [5906] = 5881, - [5907] = 5907, + [5899] = 5885, + [5900] = 168, + [5901] = 166, + [5902] = 5582, + [5903] = 2783, + [5904] = 5887, + [5905] = 5893, + [5906] = 5885, + [5907] = 5887, [5908] = 5908, - [5909] = 344, - [5910] = 342, - [5911] = 5898, - [5912] = 314, - [5913] = 343, - [5914] = 5914, - [5915] = 5901, + [5909] = 259, + [5910] = 5910, + [5911] = 5889, + [5912] = 5885, + [5913] = 5887, + [5914] = 324, + [5915] = 346, [5916] = 5916, [5917] = 5917, - [5918] = 134, - [5919] = 206, - [5920] = 1726, - [5921] = 5921, - [5922] = 1727, - [5923] = 5923, - [5924] = 222, - [5925] = 206, - [5926] = 5926, + [5918] = 387, + [5919] = 245, + [5920] = 5649, + [5921] = 325, + [5922] = 5887, + [5923] = 5704, + [5924] = 167, + [5925] = 5925, + [5926] = 259, [5927] = 5927, - [5928] = 5928, + [5928] = 5885, [5929] = 5929, - [5930] = 5927, - [5931] = 193, - [5932] = 232, - [5933] = 5933, - [5934] = 2753, - [5935] = 206, - [5936] = 5936, - [5937] = 1720, - [5938] = 1721, - [5939] = 222, - [5940] = 1493, - [5941] = 5839, - [5942] = 5942, - [5943] = 5598, - [5944] = 5944, - [5945] = 5945, + [5930] = 5712, + [5931] = 323, + [5932] = 1666, + [5933] = 5887, + [5934] = 262, + [5935] = 1640, + [5936] = 244, + [5937] = 3491, + [5938] = 5885, + [5939] = 1642, + [5940] = 5940, + [5941] = 1667, + [5942] = 5714, + [5943] = 5689, + [5944] = 5885, + [5945] = 5887, [5946] = 5946, - [5947] = 1728, - [5948] = 1729, - [5949] = 222, - [5950] = 2742, - [5951] = 203, + [5947] = 1519, + [5948] = 1663, + [5949] = 5885, + [5950] = 262, + [5951] = 5951, [5952] = 5952, - [5953] = 344, - [5954] = 314, - [5955] = 5955, - [5956] = 5927, - [5957] = 5907, - [5958] = 5842, - [5959] = 5914, - [5960] = 5929, - [5961] = 1514, - [5962] = 232, - [5963] = 362, - [5964] = 5927, + [5953] = 1664, + [5954] = 166, + [5955] = 1523, + [5956] = 244, + [5957] = 5887, + [5958] = 5958, + [5959] = 5959, + [5960] = 5887, + [5961] = 5961, + [5962] = 5908, + [5963] = 1554, + [5964] = 245, [5965] = 5965, - [5966] = 5966, + [5966] = 3474, [5967] = 5967, - [5968] = 5927, - [5969] = 5929, - [5970] = 5970, - [5971] = 5927, - [5972] = 5929, - [5973] = 5927, - [5974] = 232, - [5975] = 5929, - [5976] = 5929, - [5977] = 206, - [5978] = 143, - [5979] = 5927, - [5980] = 5929, - [5981] = 5981, - [5982] = 5927, + [5968] = 161, + [5969] = 5885, + [5970] = 5952, + [5971] = 1528, + [5972] = 1438, + [5973] = 324, + [5974] = 5974, + [5975] = 325, + [5976] = 164, + [5977] = 165, + [5978] = 5978, + [5979] = 5979, + [5980] = 5887, + [5981] = 2819, + [5982] = 5648, [5983] = 5983, - [5984] = 5929, - [5985] = 5927, - [5986] = 5986, - [5987] = 5929, - [5988] = 1722, - [5989] = 1723, - [5990] = 5927, - [5991] = 5929, - [5992] = 5678, - [5993] = 5927, - [5994] = 5929, - [5995] = 365, - [5996] = 5927, - [5997] = 5997, - [5998] = 5929, - [5999] = 5902, - [6000] = 5927, - [6001] = 5929, - [6002] = 6002, - [6003] = 5927, - [6004] = 139, - [6005] = 5929, - [6006] = 6006, - [6007] = 5929, - [6008] = 144, - [6009] = 142, - [6010] = 5927, - [6011] = 5929, - [6012] = 216, - [6013] = 6013, - [6014] = 1474, - [6015] = 140, - [6016] = 202, - [6017] = 5967, - [6018] = 6006, - [6019] = 141, - [6020] = 5942, - [6021] = 5952, - [6022] = 6022, - [6023] = 6002, - [6024] = 1498, - [6025] = 5945, - [6026] = 5898, - [6027] = 1509, - [6028] = 1400, - [6029] = 5966, - [6030] = 203, - [6031] = 191, - [6032] = 3438, - [6033] = 1474, - [6034] = 6034, - [6035] = 134, - [6036] = 3421, - [6037] = 1498, - [6038] = 5945, - [6039] = 5898, - [6040] = 1379, - [6041] = 1509, - [6042] = 5945, - [6043] = 5898, - [6044] = 5945, - [6045] = 5898, - [6046] = 5945, - [6047] = 5898, - [6048] = 5955, - [6049] = 5945, - [6050] = 5898, - [6051] = 5945, - [6052] = 5898, - [6053] = 5945, - [6054] = 5898, - [6055] = 5945, - [6056] = 5898, - [6057] = 5945, - [6058] = 5898, - [6059] = 6059, - [6060] = 5945, - [6061] = 5945, - [6062] = 5898, - [6063] = 5945, - [6064] = 5898, - [6065] = 5945, - [6066] = 5898, - [6067] = 5945, - [6068] = 5898, - [6069] = 5945, - [6070] = 5898, - [6071] = 5945, - [6072] = 5898, - [6073] = 5945, - [6074] = 5898, - [6075] = 5945, - [6076] = 5898, - [6077] = 5945, - [6078] = 5898, - [6079] = 5945, - [6080] = 5898, - [6081] = 138, - [6082] = 6082, - [6083] = 137, - [6084] = 6084, + [5984] = 167, + [5985] = 246, + [5986] = 5885, + [5987] = 262, + [5988] = 161, + [5989] = 5965, + [5990] = 5887, + [5991] = 218, + [5992] = 5885, + [5993] = 5887, + [5994] = 164, + [5995] = 1554, + [5996] = 5965, + [5997] = 5967, + [5998] = 1460, + [5999] = 1528, + [6000] = 5885, + [6001] = 5965, + [6002] = 5967, + [6003] = 6003, + [6004] = 5965, + [6005] = 5967, + [6006] = 1637, + [6007] = 1559, + [6008] = 1638, + [6009] = 5965, + [6010] = 5967, + [6011] = 5965, + [6012] = 5967, + [6013] = 5965, + [6014] = 5967, + [6015] = 5965, + [6016] = 5967, + [6017] = 5965, + [6018] = 5967, + [6019] = 5965, + [6020] = 5967, + [6021] = 5959, + [6022] = 168, + [6023] = 5965, + [6024] = 5967, + [6025] = 6025, + [6026] = 5965, + [6027] = 5967, + [6028] = 6028, + [6029] = 5965, + [6030] = 5967, + [6031] = 5965, + [6032] = 5967, + [6033] = 5965, + [6034] = 5967, + [6035] = 5965, + [6036] = 5967, + [6037] = 5965, + [6038] = 5967, + [6039] = 5965, + [6040] = 5967, + [6041] = 5965, + [6042] = 5967, + [6043] = 5965, + [6044] = 5967, + [6045] = 381, + [6046] = 1633, + [6047] = 6047, + [6048] = 5887, + [6049] = 5690, + [6050] = 6050, + [6051] = 6051, + [6052] = 5885, + [6053] = 259, + [6054] = 5885, + [6055] = 392, + [6056] = 6056, + [6057] = 3491, + [6058] = 3474, + [6059] = 384, + [6060] = 385, + [6061] = 386, + [6062] = 235, + [6063] = 245, + [6064] = 6064, + [6065] = 5967, + [6066] = 6050, + [6067] = 1559, + [6068] = 165, + [6069] = 5887, + [6070] = 4779, + [6071] = 6071, + [6072] = 6072, + [6073] = 6073, + [6074] = 6074, + [6075] = 6075, + [6076] = 4660, + [6077] = 6077, + [6078] = 259, + [6079] = 6079, + [6080] = 230, + [6081] = 6081, + [6082] = 464, + [6083] = 6083, + [6084] = 3008, [6085] = 6085, - [6086] = 391, - [6087] = 3421, - [6088] = 3438, - [6089] = 383, - [6090] = 384, - [6091] = 385, - [6092] = 6022, - [6093] = 5929, - [6094] = 5681, - [6095] = 5927, - [6096] = 6096, - [6097] = 3438, - [6098] = 252, + [6086] = 3015, + [6087] = 6003, + [6088] = 6088, + [6089] = 6071, + [6090] = 6090, + [6091] = 6091, + [6092] = 6092, + [6093] = 6093, + [6094] = 6071, + [6095] = 6072, + [6096] = 6073, + [6097] = 6074, + [6098] = 6075, [6099] = 6099, - [6100] = 6100, - [6101] = 6101, - [6102] = 6102, - [6103] = 6103, - [6104] = 6104, + [6100] = 6072, + [6101] = 6077, + [6102] = 6079, + [6103] = 6073, + [6104] = 6074, [6105] = 6105, [6106] = 6106, - [6107] = 6107, + [6107] = 6085, [6108] = 6108, - [6109] = 419, + [6109] = 487, [6110] = 6110, - [6111] = 3134, - [6112] = 253, - [6113] = 6113, - [6114] = 6114, - [6115] = 1379, - [6116] = 3136, - [6117] = 6117, - [6118] = 421, - [6119] = 138, - [6120] = 438, - [6121] = 6121, + [6111] = 463, + [6112] = 6112, + [6113] = 6091, + [6114] = 6092, + [6115] = 6093, + [6116] = 6071, + [6117] = 6072, + [6118] = 6073, + [6119] = 6074, + [6120] = 6075, + [6121] = 470, [6122] = 6122, - [6123] = 6123, - [6124] = 1400, - [6125] = 6125, - [6126] = 553, - [6127] = 6127, - [6128] = 6114, - [6129] = 250, - [6130] = 439, - [6131] = 1474, + [6123] = 6077, + [6124] = 6124, + [6125] = 6079, + [6126] = 6126, + [6127] = 170, + [6128] = 470, + [6129] = 6129, + [6130] = 6085, + [6131] = 242, [6132] = 6132, - [6133] = 6133, - [6134] = 6123, - [6135] = 6135, - [6136] = 137, - [6137] = 6137, - [6138] = 6138, - [6139] = 6099, - [6140] = 6101, - [6141] = 6102, - [6142] = 6103, - [6143] = 6104, - [6144] = 6105, - [6145] = 6106, - [6146] = 6107, - [6147] = 6123, - [6148] = 6114, - [6149] = 136, - [6150] = 3252, - [6151] = 3253, - [6152] = 6133, - [6153] = 4591, - [6154] = 6154, + [6133] = 171, + [6134] = 6075, + [6135] = 464, + [6136] = 6136, + [6137] = 6091, + [6138] = 6092, + [6139] = 6093, + [6140] = 6071, + [6141] = 6072, + [6142] = 6073, + [6143] = 6074, + [6144] = 6075, + [6145] = 6145, + [6146] = 6146, + [6147] = 6147, + [6148] = 6077, + [6149] = 6079, + [6150] = 6150, + [6151] = 3266, + [6152] = 6152, + [6153] = 6153, + [6154] = 6085, [6155] = 6155, - [6156] = 6156, - [6157] = 6099, - [6158] = 6101, - [6159] = 6102, - [6160] = 6103, - [6161] = 6104, - [6162] = 6105, - [6163] = 6106, - [6164] = 6107, - [6165] = 6165, - [6166] = 6123, + [6156] = 6091, + [6157] = 3267, + [6158] = 6158, + [6159] = 6091, + [6160] = 6092, + [6161] = 6093, + [6162] = 6071, + [6163] = 6072, + [6164] = 6073, + [6165] = 6074, + [6166] = 6075, [6167] = 6167, - [6168] = 6114, - [6169] = 6114, + [6168] = 6077, + [6169] = 6079, [6170] = 6170, - [6171] = 6099, - [6172] = 6133, + [6171] = 6171, + [6172] = 6085, [6173] = 6173, - [6174] = 6133, + [6174] = 321, [6175] = 6175, - [6176] = 252, + [6176] = 6176, [6177] = 6177, - [6178] = 6099, - [6179] = 6101, - [6180] = 6102, - [6181] = 6103, - [6182] = 6104, - [6183] = 6105, - [6184] = 6106, - [6185] = 6107, - [6186] = 6186, - [6187] = 6187, - [6188] = 6188, - [6189] = 6123, - [6190] = 6114, - [6191] = 464, - [6192] = 232, - [6193] = 208, - [6194] = 6194, - [6195] = 6133, - [6196] = 6101, - [6197] = 6133, - [6198] = 422, - [6199] = 6199, - [6200] = 6200, + [6178] = 245, + [6179] = 6091, + [6180] = 6092, + [6181] = 6093, + [6182] = 6071, + [6183] = 6072, + [6184] = 6073, + [6185] = 6074, + [6186] = 6075, + [6187] = 3491, + [6188] = 6077, + [6189] = 392, + [6190] = 6079, + [6191] = 6191, + [6192] = 237, + [6193] = 275, + [6194] = 6085, + [6195] = 6195, + [6196] = 6196, + [6197] = 6197, + [6198] = 6198, + [6199] = 462, + [6200] = 3474, [6201] = 6201, - [6202] = 6202, - [6203] = 6099, - [6204] = 6101, - [6205] = 6102, - [6206] = 6103, - [6207] = 6104, - [6208] = 6105, - [6209] = 6106, - [6210] = 6107, - [6211] = 391, - [6212] = 6212, - [6213] = 6123, - [6214] = 6214, - [6215] = 6114, - [6216] = 6103, - [6217] = 6105, - [6218] = 6133, - [6219] = 6102, - [6220] = 6099, - [6221] = 6101, - [6222] = 6102, - [6223] = 6103, - [6224] = 6104, - [6225] = 6105, - [6226] = 6106, - [6227] = 6107, - [6228] = 6201, - [6229] = 6229, - [6230] = 6123, - [6231] = 6114, - [6232] = 6103, - [6233] = 253, - [6234] = 251, - [6235] = 2956, - [6236] = 6133, - [6237] = 6101, + [6202] = 6091, + [6203] = 6092, + [6204] = 6093, + [6205] = 6071, + [6206] = 6072, + [6207] = 6073, + [6208] = 6074, + [6209] = 6075, + [6210] = 1460, + [6211] = 6077, + [6212] = 6079, + [6213] = 6075, + [6214] = 2985, + [6215] = 461, + [6216] = 6085, + [6217] = 275, + [6218] = 6218, + [6219] = 6219, + [6220] = 259, + [6221] = 1438, + [6222] = 6091, + [6223] = 6092, + [6224] = 6093, + [6225] = 6071, + [6226] = 6072, + [6227] = 6073, + [6228] = 6074, + [6229] = 6075, + [6230] = 6230, + [6231] = 6077, + [6232] = 6079, + [6233] = 6092, + [6234] = 6093, + [6235] = 6071, + [6236] = 6085, + [6237] = 6237, [6238] = 6238, [6239] = 6239, - [6240] = 201, - [6241] = 6241, - [6242] = 423, - [6243] = 6243, - [6244] = 6099, - [6245] = 6101, - [6246] = 6102, - [6247] = 6103, - [6248] = 6104, - [6249] = 6105, - [6250] = 6106, - [6251] = 6107, - [6252] = 6252, - [6253] = 6123, + [6240] = 6240, + [6241] = 6091, + [6242] = 6092, + [6243] = 6093, + [6244] = 6071, + [6245] = 6072, + [6246] = 6073, + [6247] = 6074, + [6248] = 6075, + [6249] = 321, + [6250] = 463, + [6251] = 6077, + [6252] = 464, + [6253] = 6079, [6254] = 6254, - [6255] = 6114, - [6256] = 6104, + [6255] = 6255, + [6256] = 6085, [6257] = 6257, - [6258] = 6133, - [6259] = 6105, + [6258] = 6258, + [6259] = 6259, [6260] = 6260, - [6261] = 6261, - [6262] = 6099, - [6263] = 6101, - [6264] = 6102, - [6265] = 6103, - [6266] = 6104, - [6267] = 6105, - [6268] = 6106, - [6269] = 6107, - [6270] = 252, - [6271] = 6271, + [6261] = 6091, + [6262] = 6092, + [6263] = 6093, + [6264] = 6071, + [6265] = 6072, + [6266] = 6073, + [6267] = 6074, + [6268] = 6075, + [6269] = 6269, + [6270] = 276, + [6271] = 6077, [6272] = 6272, - [6273] = 6123, - [6274] = 6114, - [6275] = 556, - [6276] = 6133, - [6277] = 253, - [6278] = 520, - [6279] = 6279, - [6280] = 464, - [6281] = 6281, - [6282] = 6099, - [6283] = 6101, - [6284] = 6102, - [6285] = 6103, - [6286] = 6104, - [6287] = 6105, - [6288] = 6106, - [6289] = 6107, - [6290] = 6123, - [6291] = 436, - [6292] = 6114, - [6293] = 6293, - [6294] = 6294, - [6295] = 6133, - [6296] = 2965, - [6297] = 521, - [6298] = 436, - [6299] = 6099, - [6300] = 6101, - [6301] = 6102, - [6302] = 6103, - [6303] = 6104, - [6304] = 6105, - [6305] = 6106, - [6306] = 6107, - [6307] = 6307, - [6308] = 6308, - [6309] = 6123, - [6310] = 6114, - [6311] = 2951, - [6312] = 6312, - [6313] = 6133, - [6314] = 6314, + [6273] = 6079, + [6274] = 6077, + [6275] = 6085, + [6276] = 488, + [6277] = 6277, + [6278] = 6091, + [6279] = 6092, + [6280] = 6093, + [6281] = 6071, + [6282] = 6072, + [6283] = 6073, + [6284] = 6074, + [6285] = 6075, + [6286] = 489, + [6287] = 6077, + [6288] = 6079, + [6289] = 6289, + [6290] = 6085, + [6291] = 277, + [6292] = 169, + [6293] = 6091, + [6294] = 6092, + [6295] = 6093, + [6296] = 6071, + [6297] = 6072, + [6298] = 6073, + [6299] = 6074, + [6300] = 6075, + [6301] = 6301, + [6302] = 6077, + [6303] = 6079, + [6304] = 6085, + [6305] = 6305, + [6306] = 6306, + [6307] = 6091, + [6308] = 6092, + [6309] = 6093, + [6310] = 6071, + [6311] = 6072, + [6312] = 6073, + [6313] = 6074, + [6314] = 6075, [6315] = 6315, - [6316] = 6316, - [6317] = 6099, - [6318] = 6101, - [6319] = 6102, - [6320] = 6103, - [6321] = 6104, - [6322] = 6105, - [6323] = 6106, - [6324] = 6107, - [6325] = 6325, - [6326] = 6326, - [6327] = 6123, - [6328] = 6328, - [6329] = 6114, - [6330] = 6330, - [6331] = 6331, - [6332] = 6133, + [6316] = 6077, + [6317] = 6079, + [6318] = 6085, + [6319] = 6319, + [6320] = 6320, + [6321] = 6091, + [6322] = 6092, + [6323] = 6093, + [6324] = 6071, + [6325] = 6072, + [6326] = 6073, + [6327] = 6074, + [6328] = 6075, + [6329] = 6329, + [6330] = 6077, + [6331] = 6079, + [6332] = 6085, [6333] = 6333, - [6334] = 445, - [6335] = 6335, - [6336] = 6099, - [6337] = 6101, - [6338] = 6102, - [6339] = 6103, - [6340] = 6104, - [6341] = 6105, - [6342] = 6106, - [6343] = 6107, - [6344] = 6344, - [6345] = 6123, - [6346] = 6114, - [6347] = 5997, - [6348] = 6348, - [6349] = 6133, - [6350] = 561, - [6351] = 6351, - [6352] = 6352, - [6353] = 6099, - [6354] = 6101, - [6355] = 6102, - [6356] = 6103, - [6357] = 6104, - [6358] = 6105, - [6359] = 6106, - [6360] = 6107, - [6361] = 6361, - [6362] = 6123, - [6363] = 6363, - [6364] = 6114, - [6365] = 6365, - [6366] = 6133, - [6367] = 6367, - [6368] = 564, - [6369] = 6099, - [6370] = 6101, - [6371] = 6102, - [6372] = 6103, - [6373] = 6104, - [6374] = 6105, - [6375] = 6106, - [6376] = 6107, - [6377] = 6377, - [6378] = 6123, - [6379] = 6379, - [6380] = 6114, - [6381] = 6099, - [6382] = 6133, - [6383] = 6099, - [6384] = 6101, - [6385] = 6102, - [6386] = 6103, - [6387] = 6104, - [6388] = 6105, - [6389] = 6106, - [6390] = 6107, - [6391] = 6123, - [6392] = 6114, - [6393] = 6133, - [6394] = 6106, - [6395] = 6099, - [6396] = 6101, - [6397] = 6102, - [6398] = 6103, - [6399] = 6104, - [6400] = 6105, - [6401] = 6106, - [6402] = 6107, - [6403] = 6123, - [6404] = 6114, - [6405] = 6133, + [6334] = 6072, + [6335] = 6077, + [6336] = 6079, + [6337] = 6085, + [6338] = 6073, + [6339] = 6077, + [6340] = 6079, + [6341] = 6085, + [6342] = 6074, + [6343] = 6077, + [6344] = 6079, + [6345] = 6085, + [6346] = 6346, + [6347] = 6077, + [6348] = 6079, + [6349] = 6085, + [6350] = 6350, + [6351] = 6077, + [6352] = 6079, + [6353] = 6085, + [6354] = 6093, + [6355] = 6077, + [6356] = 6079, + [6357] = 6085, + [6358] = 6358, + [6359] = 6077, + [6360] = 6079, + [6361] = 6085, + [6362] = 5958, + [6363] = 6077, + [6364] = 6079, + [6365] = 6085, + [6366] = 1438, + [6367] = 6077, + [6368] = 6079, + [6369] = 6085, + [6370] = 1559, + [6371] = 6077, + [6372] = 6079, + [6373] = 6085, + [6374] = 6075, + [6375] = 6077, + [6376] = 6079, + [6377] = 6085, + [6378] = 6378, + [6379] = 6077, + [6380] = 6079, + [6381] = 6085, + [6382] = 276, + [6383] = 6077, + [6384] = 6079, + [6385] = 6085, + [6386] = 6386, + [6387] = 6077, + [6388] = 6079, + [6389] = 6085, + [6390] = 6390, + [6391] = 6077, + [6392] = 6079, + [6393] = 6085, + [6394] = 6394, + [6395] = 6077, + [6396] = 6079, + [6397] = 6085, + [6398] = 6398, + [6399] = 6077, + [6400] = 6079, + [6401] = 6085, + [6402] = 6092, + [6403] = 6077, + [6404] = 6079, + [6405] = 6085, [6406] = 6406, - [6407] = 6099, - [6408] = 6101, - [6409] = 6102, - [6410] = 6103, - [6411] = 6104, - [6412] = 6412, - [6413] = 6106, - [6414] = 6107, - [6415] = 6279, - [6416] = 6123, - [6417] = 6114, - [6418] = 6133, - [6419] = 418, - [6420] = 6099, - [6421] = 6101, - [6422] = 6102, - [6423] = 6103, - [6424] = 6104, - [6425] = 6105, - [6426] = 6106, - [6427] = 6107, - [6428] = 6428, - [6429] = 6123, - [6430] = 6114, - [6431] = 6133, - [6432] = 6123, - [6433] = 6114, - [6434] = 6133, - [6435] = 6123, - [6436] = 6114, - [6437] = 6133, - [6438] = 6123, - [6439] = 6114, - [6440] = 6133, - [6441] = 6123, - [6442] = 6114, - [6443] = 6133, - [6444] = 6123, - [6445] = 6114, - [6446] = 6133, - [6447] = 6123, - [6448] = 6114, - [6449] = 6133, - [6450] = 6123, - [6451] = 6114, - [6452] = 6133, - [6453] = 6453, - [6454] = 6123, - [6455] = 6114, - [6456] = 6133, + [6407] = 6077, + [6408] = 6079, + [6409] = 6085, + [6410] = 321, + [6411] = 6077, + [6412] = 6079, + [6413] = 6085, + [6414] = 6306, + [6415] = 6077, + [6416] = 6079, + [6417] = 6085, + [6418] = 6418, + [6419] = 6077, + [6420] = 6079, + [6421] = 6085, + [6422] = 3241, + [6423] = 6077, + [6424] = 6079, + [6425] = 6085, + [6426] = 491, + [6427] = 6077, + [6428] = 6079, + [6429] = 6085, + [6430] = 6077, + [6431] = 6079, + [6432] = 6085, + [6433] = 6079, + [6434] = 6085, + [6435] = 6079, + [6436] = 6085, + [6437] = 6079, + [6438] = 6085, + [6439] = 6079, + [6440] = 6085, + [6441] = 6079, + [6442] = 6085, + [6443] = 3243, + [6444] = 2974, + [6445] = 6445, + [6446] = 6446, + [6447] = 6088, + [6448] = 6254, + [6449] = 3270, + [6450] = 6450, + [6451] = 6451, + [6452] = 384, + [6453] = 6079, + [6454] = 6077, + [6455] = 385, + [6456] = 386, [6457] = 6457, - [6458] = 6123, - [6459] = 6114, - [6460] = 6133, - [6461] = 6123, - [6462] = 6114, - [6463] = 6133, + [6458] = 6079, + [6459] = 462, + [6460] = 6460, + [6461] = 6315, + [6462] = 462, + [6463] = 6463, [6464] = 6464, - [6465] = 6123, - [6466] = 6114, - [6467] = 6133, - [6468] = 6123, - [6469] = 6114, - [6470] = 6133, - [6471] = 6123, - [6472] = 6114, - [6473] = 6133, - [6474] = 6123, - [6475] = 6114, - [6476] = 6133, - [6477] = 6477, - [6478] = 6123, - [6479] = 6114, - [6480] = 6133, - [6481] = 6123, - [6482] = 6114, - [6483] = 6133, - [6484] = 6123, - [6485] = 6114, - [6486] = 6133, - [6487] = 6106, - [6488] = 6123, - [6489] = 6114, - [6490] = 6133, - [6491] = 445, - [6492] = 6123, - [6493] = 6114, - [6494] = 6133, - [6495] = 6123, - [6496] = 6114, - [6497] = 6133, - [6498] = 6123, - [6499] = 6114, - [6500] = 6133, - [6501] = 6123, - [6502] = 6114, - [6503] = 6133, - [6504] = 6123, - [6505] = 6114, - [6506] = 6133, - [6507] = 6123, - [6508] = 6114, - [6509] = 6133, - [6510] = 6114, - [6511] = 6133, - [6512] = 6114, - [6513] = 6133, - [6514] = 6114, - [6515] = 6133, - [6516] = 6114, - [6517] = 6133, - [6518] = 6114, - [6519] = 6133, - [6520] = 6520, + [6465] = 6465, + [6466] = 6406, + [6467] = 6072, + [6468] = 6468, + [6469] = 6073, + [6470] = 6470, + [6471] = 487, + [6472] = 6074, + [6473] = 6473, + [6474] = 6085, + [6475] = 462, + [6476] = 3020, + [6477] = 6218, + [6478] = 461, + [6479] = 6077, + [6480] = 3022, + [6481] = 3271, + [6482] = 4649, + [6483] = 6483, + [6484] = 277, + [6485] = 6485, + [6486] = 6091, + [6487] = 6487, + [6488] = 6092, + [6489] = 6093, + [6490] = 6490, + [6491] = 6491, + [6492] = 6492, + [6493] = 6071, + [6494] = 6494, + [6495] = 162, + [6496] = 163, + [6497] = 6085, + [6498] = 6072, + [6499] = 6073, + [6500] = 6074, + [6501] = 6075, + [6502] = 6502, + [6503] = 6503, + [6504] = 6504, + [6505] = 6505, + [6506] = 6506, + [6507] = 6507, + [6508] = 239, + [6509] = 6509, + [6510] = 6510, + [6511] = 6091, + [6512] = 6092, + [6513] = 6093, + [6514] = 6071, + [6515] = 6072, + [6516] = 6073, + [6517] = 6074, + [6518] = 6075, + [6519] = 6077, + [6520] = 6077, [6521] = 6521, - [6522] = 6522, + [6522] = 6085, [6523] = 6523, - [6524] = 6524, - [6525] = 6194, - [6526] = 6102, - [6527] = 6527, - [6528] = 6528, - [6529] = 250, + [6524] = 170, + [6525] = 171, + [6526] = 262, + [6527] = 1460, + [6528] = 1554, + [6529] = 6077, [6530] = 6530, - [6531] = 2964, - [6532] = 6132, - [6533] = 6412, + [6531] = 1528, + [6532] = 6079, + [6533] = 6446, [6534] = 6534, [6535] = 6535, - [6536] = 464, - [6537] = 6133, - [6538] = 445, - [6539] = 514, - [6540] = 515, - [6541] = 557, - [6542] = 464, - [6543] = 438, - [6544] = 439, - [6545] = 5863, - [6546] = 222, - [6547] = 6547, - [6548] = 143, - [6549] = 6099, + [6536] = 470, + [6537] = 488, + [6538] = 162, + [6539] = 6085, + [6540] = 489, + [6541] = 6153, + [6542] = 463, + [6543] = 464, + [6544] = 491, + [6545] = 461, + [6546] = 492, + [6547] = 262, + [6548] = 164, + [6549] = 165, [6550] = 6550, - [6551] = 6551, - [6552] = 6552, - [6553] = 6553, - [6554] = 6554, - [6555] = 6555, - [6556] = 4693, - [6557] = 6557, - [6558] = 6558, - [6559] = 6559, - [6560] = 6560, - [6561] = 1379, - [6562] = 204, - [6563] = 6563, - [6564] = 6523, - [6565] = 445, - [6566] = 135, - [6567] = 136, - [6568] = 5933, - [6569] = 206, - [6570] = 1400, - [6571] = 589, - [6572] = 6101, - [6573] = 6127, - [6574] = 222, - [6575] = 232, - [6576] = 6099, - [6577] = 6101, - [6578] = 6102, - [6579] = 6103, - [6580] = 6104, - [6581] = 6105, - [6582] = 6106, - [6583] = 6107, - [6584] = 6123, - [6585] = 6123, - [6586] = 6102, - [6587] = 6103, - [6588] = 383, - [6589] = 436, - [6590] = 419, - [6591] = 418, + [6551] = 6091, + [6552] = 5894, + [6553] = 6092, + [6554] = 6093, + [6555] = 6071, + [6556] = 6072, + [6557] = 6073, + [6558] = 6074, + [6559] = 4822, + [6560] = 6075, + [6561] = 163, + [6562] = 6562, + [6563] = 6077, + [6564] = 6079, + [6565] = 6565, + [6566] = 276, + [6567] = 6092, + [6568] = 6077, + [6569] = 6085, + [6570] = 463, + [6571] = 6079, + [6572] = 6093, + [6573] = 6071, + [6574] = 492, + [6575] = 277, + [6576] = 6576, + [6577] = 6091, + [6578] = 6092, + [6579] = 6093, + [6580] = 6071, + [6581] = 6072, + [6582] = 6091, + [6583] = 6073, + [6584] = 6074, + [6585] = 6550, + [6586] = 3491, + [6587] = 3474, + [6588] = 6075, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, [6592] = 6592, - [6593] = 1498, - [6594] = 421, - [6595] = 2974, - [6596] = 1509, - [6597] = 384, - [6598] = 205, - [6599] = 385, - [6600] = 144, + [6593] = 6077, + [6594] = 6079, + [6595] = 6595, + [6596] = 6460, + [6597] = 275, + [6598] = 6091, + [6599] = 6085, + [6600] = 6085, [6601] = 6601, - [6602] = 6602, - [6603] = 6603, - [6604] = 6535, - [6605] = 438, - [6606] = 517, - [6607] = 439, - [6608] = 6123, - [6609] = 518, - [6610] = 6610, - [6611] = 6611, - [6612] = 6104, - [6613] = 6105, - [6614] = 6106, + [6602] = 1559, + [6603] = 169, + [6604] = 6079, + [6605] = 470, + [6606] = 4786, + [6607] = 6607, + [6608] = 6608, + [6609] = 6609, + [6610] = 6091, + [6611] = 6092, + [6612] = 6093, + [6613] = 6398, + [6614] = 6614, [6615] = 6615, - [6616] = 466, - [6617] = 6617, + [6616] = 6616, + [6617] = 3081, [6618] = 6618, [6619] = 6619, - [6620] = 142, - [6621] = 3256, - [6622] = 3257, + [6620] = 6615, + [6621] = 6621, + [6622] = 6618, [6623] = 6623, [6624] = 6624, [6625] = 6625, - [6626] = 6107, - [6627] = 251, + [6626] = 276, + [6627] = 6627, [6628] = 6628, [6629] = 6629, [6630] = 6630, - [6631] = 4732, - [6632] = 250, - [6633] = 4786, - [6634] = 6114, + [6631] = 6619, + [6632] = 6632, + [6633] = 167, + [6634] = 3089, [6635] = 6635, - [6636] = 6636, - [6637] = 423, - [6638] = 6107, - [6639] = 5908, - [6640] = 6110, - [6641] = 251, - [6642] = 6406, - [6643] = 3421, - [6644] = 3438, - [6645] = 422, - [6646] = 6123, - [6647] = 438, - [6648] = 6648, - [6649] = 6114, - [6650] = 439, - [6651] = 1474, - [6652] = 6107, - [6653] = 6104, - [6654] = 2946, - [6655] = 6133, - [6656] = 3421, - [6657] = 4588, - [6658] = 135, - [6659] = 6659, - [6660] = 6123, - [6661] = 6648, - [6662] = 6105, - [6663] = 6663, - [6664] = 6664, - [6665] = 6665, - [6666] = 6666, - [6667] = 6667, - [6668] = 6668, - [6669] = 6667, - [6670] = 6670, - [6671] = 6671, - [6672] = 6672, - [6673] = 6673, - [6674] = 6674, - [6675] = 252, - [6676] = 6676, - [6677] = 6677, - [6678] = 6678, - [6679] = 6670, - [6680] = 6121, - [6681] = 6671, - [6682] = 6674, - [6683] = 526, - [6684] = 6678, + [6636] = 6615, + [6637] = 166, + [6638] = 6638, + [6639] = 6136, + [6640] = 6240, + [6641] = 3090, + [6642] = 6618, + [6643] = 6619, + [6644] = 461, + [6645] = 6132, + [6646] = 6615, + [6647] = 6647, + [6648] = 6623, + [6649] = 6624, + [6650] = 6625, + [6651] = 6627, + [6652] = 6652, + [6653] = 6530, + [6654] = 6628, + [6655] = 6629, + [6656] = 3008, + [6657] = 6630, + [6658] = 6658, + [6659] = 6145, + [6660] = 6173, + [6661] = 6269, + [6662] = 6627, + [6663] = 1554, + [6664] = 6628, + [6665] = 6629, + [6666] = 470, + [6667] = 6638, + [6668] = 277, + [6669] = 6147, + [6670] = 6152, + [6671] = 6619, + [6672] = 6615, + [6673] = 6219, + [6674] = 6623, + [6675] = 6624, + [6676] = 6625, + [6677] = 2965, + [6678] = 6627, + [6679] = 6628, + [6680] = 6629, + [6681] = 6630, + [6682] = 1554, + [6683] = 6683, + [6684] = 6684, [6685] = 6685, - [6686] = 6686, - [6687] = 6664, - [6688] = 6665, - [6689] = 6666, - [6690] = 527, - [6691] = 6668, - [6692] = 6667, - [6693] = 6670, - [6694] = 6122, - [6695] = 6117, - [6696] = 6671, - [6697] = 1474, - [6698] = 6698, - [6699] = 2861, - [6700] = 6700, - [6701] = 6677, - [6702] = 6165, - [6703] = 6703, - [6704] = 6671, - [6705] = 6674, - [6706] = 6678, - [6707] = 6167, - [6708] = 6686, - [6709] = 6664, - [6710] = 6665, - [6711] = 528, - [6712] = 6666, - [6713] = 1498, - [6714] = 6668, - [6715] = 6667, - [6716] = 529, - [6717] = 6314, - [6718] = 6670, - [6719] = 6125, - [6720] = 6331, - [6721] = 143, - [6722] = 6135, - [6723] = 6723, + [6686] = 6083, + [6687] = 6638, + [6688] = 6623, + [6689] = 6624, + [6690] = 6099, + [6691] = 6625, + [6692] = 6619, + [6693] = 462, + [6694] = 6632, + [6695] = 6615, + [6696] = 6696, + [6697] = 6623, + [6698] = 6624, + [6699] = 6625, + [6700] = 6627, + [6701] = 6150, + [6702] = 6230, + [6703] = 6628, + [6704] = 6629, + [6705] = 1438, + [6706] = 6630, + [6707] = 6112, + [6708] = 6483, + [6709] = 461, + [6710] = 6710, + [6711] = 6638, + [6712] = 6272, + [6713] = 6713, + [6714] = 6619, + [6715] = 6615, + [6716] = 6619, + [6717] = 6623, + [6718] = 6624, + [6719] = 6625, + [6720] = 6627, + [6721] = 6721, + [6722] = 6628, + [6723] = 6629, [6724] = 6724, - [6725] = 6624, - [6726] = 6677, - [6727] = 6527, - [6728] = 6530, - [6729] = 6154, - [6730] = 6674, - [6731] = 1379, - [6732] = 6175, - [6733] = 6678, - [6734] = 6187, - [6735] = 6261, - [6736] = 2965, - [6737] = 6686, - [6738] = 6664, - [6739] = 6665, - [6740] = 4598, - [6741] = 6666, - [6742] = 6686, - [6743] = 6664, - [6744] = 6668, - [6745] = 6667, - [6746] = 6665, - [6747] = 6138, - [6748] = 6670, - [6749] = 6188, - [6750] = 6636, - [6751] = 6252, - [6752] = 6752, - [6753] = 6333, - [6754] = 6677, - [6755] = 6755, - [6756] = 2951, - [6757] = 3474, - [6758] = 6674, - [6759] = 6241, - [6760] = 6625, - [6761] = 6678, - [6762] = 6671, - [6763] = 1400, - [6764] = 6764, - [6765] = 6686, - [6766] = 6664, - [6767] = 6665, - [6768] = 6768, - [6769] = 6666, - [6770] = 6520, - [6771] = 6668, - [6772] = 6667, - [6773] = 144, - [6774] = 142, - [6775] = 6670, - [6776] = 6312, - [6777] = 6521, - [6778] = 6628, - [6779] = 571, - [6780] = 6665, - [6781] = 555, - [6782] = 6677, - [6783] = 6522, - [6784] = 5314, - [6785] = 572, - [6786] = 5319, - [6787] = 6674, - [6788] = 6524, - [6789] = 6678, - [6790] = 558, - [6791] = 6315, - [6792] = 6686, - [6793] = 6664, - [6794] = 6665, - [6795] = 6100, - [6796] = 6666, - [6797] = 6108, - [6798] = 6668, - [6799] = 6667, - [6800] = 6670, - [6801] = 6801, - [6802] = 6755, - [6803] = 6170, - [6804] = 6316, - [6805] = 563, - [6806] = 6677, - [6807] = 6610, - [6808] = 6603, - [6809] = 6674, - [6810] = 6674, - [6811] = 6678, - [6812] = 6377, - [6813] = 6686, - [6814] = 6664, - [6815] = 6665, - [6816] = 530, - [6817] = 6666, - [6818] = 6755, - [6819] = 6668, - [6820] = 6667, - [6821] = 531, - [6822] = 6670, - [6823] = 6666, - [6824] = 573, - [6825] = 532, - [6826] = 6668, - [6827] = 6667, - [6828] = 567, - [6829] = 533, - [6830] = 3038, - [6831] = 534, - [6832] = 6677, - [6833] = 6833, - [6834] = 1509, - [6835] = 6674, - [6836] = 535, - [6837] = 6678, - [6838] = 6838, - [6839] = 6325, - [6840] = 6686, - [6841] = 6664, - [6842] = 6665, - [6843] = 6843, - [6844] = 6666, - [6845] = 574, - [6846] = 536, - [6847] = 6668, - [6848] = 6667, - [6849] = 6670, - [6850] = 537, - [6851] = 538, - [6852] = 6615, - [6853] = 172, - [6854] = 2974, - [6855] = 575, - [6856] = 539, - [6857] = 6857, + [6725] = 6630, + [6726] = 6726, + [6727] = 6727, + [6728] = 6728, + [6729] = 6729, + [6730] = 6730, + [6731] = 6638, + [6732] = 6619, + [6733] = 6615, + [6734] = 6589, + [6735] = 6623, + [6736] = 6624, + [6737] = 6625, + [6738] = 6627, + [6739] = 6590, + [6740] = 6628, + [6741] = 6629, + [6742] = 1559, + [6743] = 6630, + [6744] = 6744, + [6745] = 6745, + [6746] = 6277, + [6747] = 6647, + [6748] = 1559, + [6749] = 6627, + [6750] = 6750, + [6751] = 6638, + [6752] = 6696, + [6753] = 6628, + [6754] = 6629, + [6755] = 6305, + [6756] = 6619, + [6757] = 6726, + [6758] = 6289, + [6759] = 6623, + [6760] = 6624, + [6761] = 6625, + [6762] = 6627, + [6763] = 3020, + [6764] = 6628, + [6765] = 6629, + [6766] = 6614, + [6767] = 6647, + [6768] = 6630, + [6769] = 6630, + [6770] = 6770, + [6771] = 3093, + [6772] = 3094, + [6773] = 6638, + [6774] = 3095, + [6775] = 4718, + [6776] = 3096, + [6777] = 4719, + [6778] = 6619, + [6779] = 6615, + [6780] = 6780, + [6781] = 6623, + [6782] = 6624, + [6783] = 6625, + [6784] = 6081, + [6785] = 6627, + [6786] = 6124, + [6787] = 6628, + [6788] = 6629, + [6789] = 2985, + [6790] = 6630, + [6791] = 6237, + [6792] = 6627, + [6793] = 6146, + [6794] = 6238, + [6795] = 6638, + [6796] = 6630, + [6797] = 6619, + [6798] = 6615, + [6799] = 6623, + [6800] = 6624, + [6801] = 6625, + [6802] = 6627, + [6803] = 6628, + [6804] = 6629, + [6805] = 3022, + [6806] = 6630, + [6807] = 6727, + [6808] = 6490, + [6809] = 6809, + [6810] = 6810, + [6811] = 6811, + [6812] = 6491, + [6813] = 6615, + [6814] = 6492, + [6815] = 6623, + [6816] = 6624, + [6817] = 6625, + [6818] = 6627, + [6819] = 6494, + [6820] = 6820, + [6821] = 6628, + [6822] = 6629, + [6823] = 6630, + [6824] = 6811, + [6825] = 6505, + [6826] = 6510, + [6827] = 6615, + [6828] = 6506, + [6829] = 6623, + [6830] = 6624, + [6831] = 6625, + [6832] = 6627, + [6833] = 3065, + [6834] = 6595, + [6835] = 6628, + [6836] = 6629, + [6837] = 6630, + [6838] = 4777, + [6839] = 2974, + [6840] = 6239, + [6841] = 6257, + [6842] = 6177, + [6843] = 6601, + [6844] = 6844, + [6845] = 6122, + [6846] = 6615, + [6847] = 6191, + [6848] = 6623, + [6849] = 6624, + [6850] = 6625, + [6851] = 6627, + [6852] = 1528, + [6853] = 6628, + [6854] = 6629, + [6855] = 6630, + [6856] = 6607, + [6857] = 6105, [6858] = 6858, - [6859] = 6677, - [6860] = 6678, - [6861] = 3028, - [6862] = 3029, - [6863] = 519, - [6864] = 6674, - [6865] = 6678, - [6866] = 6686, - [6867] = 6664, - [6868] = 6665, - [6869] = 540, - [6870] = 6666, - [6871] = 6871, - [6872] = 1498, - [6873] = 6668, - [6874] = 6667, - [6875] = 6670, - [6876] = 6876, - [6877] = 445, - [6878] = 541, - [6879] = 6879, - [6880] = 4592, - [6881] = 4602, - [6882] = 542, - [6883] = 6677, - [6884] = 6670, - [6885] = 6885, - [6886] = 6674, - [6887] = 6678, - [6888] = 3030, - [6889] = 6686, - [6890] = 6664, - [6891] = 6665, - [6892] = 6666, - [6893] = 576, - [6894] = 4659, - [6895] = 6668, - [6896] = 6667, - [6897] = 6330, - [6898] = 6464, - [6899] = 6670, - [6900] = 6096, - [6901] = 139, - [6902] = 6254, - [6903] = 140, - [6904] = 6363, - [6905] = 6677, - [6906] = 141, - [6907] = 6674, - [6908] = 6678, - [6909] = 6909, - [6910] = 6686, - [6911] = 6664, - [6912] = 6665, - [6913] = 6913, - [6914] = 6666, - [6915] = 3031, - [6916] = 6916, - [6917] = 6668, - [6918] = 6667, - [6919] = 6919, - [6920] = 6670, - [6921] = 6328, - [6922] = 6752, - [6923] = 6923, - [6924] = 6924, - [6925] = 6678, - [6926] = 6926, - [6927] = 6686, - [6928] = 6664, - [6929] = 6665, - [6930] = 6666, - [6931] = 6272, - [6932] = 6668, - [6933] = 6667, + [6859] = 463, + [6860] = 6860, + [6861] = 6861, + [6862] = 6615, + [6863] = 6863, + [6864] = 6623, + [6865] = 6624, + [6866] = 6625, + [6867] = 6867, + [6868] = 6627, + [6869] = 6628, + [6870] = 6629, + [6871] = 6630, + [6872] = 6638, + [6873] = 464, + [6874] = 6623, + [6875] = 6624, + [6876] = 6625, + [6877] = 6877, + [6878] = 6618, + [6879] = 6619, + [6880] = 6628, + [6881] = 6615, + [6882] = 1559, + [6883] = 6623, + [6884] = 6624, + [6885] = 6625, + [6886] = 6886, + [6887] = 6629, + [6888] = 6627, + [6889] = 3052, + [6890] = 6890, + [6891] = 6628, + [6892] = 6629, + [6893] = 6893, + [6894] = 6630, + [6895] = 6895, + [6896] = 6507, + [6897] = 5359, + [6898] = 6638, + [6899] = 6899, + [6900] = 5366, + [6901] = 6901, + [6902] = 6902, + [6903] = 6903, + [6904] = 6860, + [6905] = 6619, + [6906] = 6195, + [6907] = 6196, + [6908] = 6197, + [6909] = 6319, + [6910] = 535, + [6911] = 6911, + [6912] = 6320, + [6913] = 6858, + [6914] = 3058, + [6915] = 6198, + [6916] = 169, + [6917] = 6638, + [6918] = 275, + [6919] = 1460, + [6920] = 6615, + [6921] = 6618, + [6922] = 6619, + [6923] = 462, + [6924] = 534, + [6925] = 6615, + [6926] = 6901, + [6927] = 1460, + [6928] = 6450, + [6929] = 6929, + [6930] = 321, + [6931] = 6464, + [6932] = 6623, + [6933] = 6624, [6934] = 6934, - [6935] = 6670, - [6936] = 6678, - [6937] = 6629, - [6938] = 589, - [6939] = 6678, - [6940] = 4703, - [6941] = 6941, - [6942] = 6686, - [6943] = 6664, - [6944] = 6665, - [6945] = 6945, - [6946] = 6666, - [6947] = 251, - [6948] = 578, - [6949] = 6668, - [6950] = 6667, - [6951] = 6670, - [6952] = 6257, - [6953] = 6953, - [6954] = 2946, - [6955] = 6618, - [6956] = 6956, - [6957] = 6957, - [6958] = 6678, - [6959] = 6686, - [6960] = 6664, - [6961] = 6665, - [6962] = 6953, - [6963] = 6666, - [6964] = 6668, - [6965] = 6667, - [6966] = 3048, - [6967] = 6670, - [6968] = 6552, - [6969] = 6678, + [6935] = 6638, + [6936] = 463, + [6937] = 464, + [6938] = 6938, + [6939] = 4754, + [6940] = 6940, + [6941] = 6468, + [6942] = 6350, + [6943] = 6258, + [6944] = 6259, + [6945] = 3062, + [6946] = 6627, + [6947] = 4755, + [6948] = 6948, + [6949] = 170, + [6950] = 6684, + [6951] = 6260, + [6952] = 6628, + [6953] = 6629, + [6954] = 6618, + [6955] = 6809, + [6956] = 171, + [6957] = 6473, + [6958] = 6630, + [6959] = 533, + [6960] = 6960, + [6961] = 6301, + [6962] = 6962, + [6963] = 6963, + [6964] = 6964, + [6965] = 6390, + [6966] = 6966, + [6967] = 6630, + [6968] = 6968, + [6969] = 6886, [6970] = 6970, - [6971] = 511, - [6972] = 6686, - [6973] = 6664, - [6974] = 6665, - [6975] = 6677, - [6976] = 6666, - [6977] = 6724, - [6978] = 6668, - [6979] = 6667, - [6980] = 6670, - [6981] = 6981, - [6982] = 6982, - [6983] = 6547, - [6984] = 1379, - [6985] = 6671, - [6986] = 6674, - [6987] = 6987, - [6988] = 6678, - [6989] = 3049, - [6990] = 3479, - [6991] = 6686, - [6992] = 6664, - [6993] = 6665, - [6994] = 6686, - [6995] = 6995, - [6996] = 6666, - [6997] = 4599, - [6998] = 6668, - [6999] = 6667, - [7000] = 6670, - [7001] = 6365, - [7002] = 7002, - [7003] = 6344, - [7004] = 6137, - [7005] = 6348, - [7006] = 3050, - [7007] = 553, - [7008] = 7008, - [7009] = 7009, - [7010] = 6528, - [7011] = 445, - [7012] = 7012, - [7013] = 7013, - [7014] = 6664, - [7015] = 6686, - [7016] = 6953, - [7017] = 522, - [7018] = 6666, - [7019] = 6670, - [7020] = 6630, - [7021] = 6351, - [7022] = 6953, - [7023] = 6668, - [7024] = 6307, - [7025] = 6667, - [7026] = 1474, - [7027] = 6677, - [7028] = 523, - [7029] = 6379, - [7030] = 436, - [7031] = 6663, - [7032] = 6553, - [7033] = 7033, - [7034] = 3485, - [7035] = 6953, - [7036] = 6981, - [7037] = 6554, - [7038] = 6555, - [7039] = 7039, - [7040] = 7040, - [7041] = 7041, - [7042] = 6557, - [7043] = 6558, - [7044] = 7044, - [7045] = 7013, - [7046] = 6671, - [7047] = 7047, - [7048] = 6663, - [7049] = 6677, - [7050] = 6674, - [7051] = 7051, - [7052] = 6335, - [7053] = 6916, - [7054] = 6550, - [7055] = 7055, - [7056] = 6678, - [7057] = 6871, - [7058] = 1474, - [7059] = 7059, - [7060] = 6619, - [7061] = 7002, - [7062] = 6833, - [7063] = 7063, - [7064] = 6686, - [7065] = 6664, - [7066] = 7066, - [7067] = 7067, - [7068] = 6665, - [7069] = 1509, - [7070] = 250, - [7071] = 445, - [7072] = 7033, - [7073] = 7047, - [7074] = 6666, - [7075] = 6611, - [7076] = 6686, - [7077] = 6674, - [7078] = 6664, - [7079] = 6665, - [7080] = 7080, - [7081] = 568, - [7082] = 569, - [7083] = 570, - [7084] = 6668, - [7085] = 6667, - [7086] = 549, - [7087] = 7087, - [7088] = 6670, - [7089] = 6260, - [7090] = 6995, - [7091] = 1400, - [7092] = 6199, - [7093] = 6200, - [7094] = 6202, - [7095] = 464, - [7096] = 251, - [7097] = 436, - [7098] = 7040, - [7099] = 6212, - [7100] = 464, - [7101] = 6551, - [7102] = 3059, - [7103] = 3061, - [7104] = 6953, - [7105] = 7044, - [7106] = 6294, - [7107] = 6308, - [7108] = 6563, - [7109] = 250, - [7110] = 6113, - [7111] = 6678, - [7112] = 6686, - [7113] = 6664, - [7114] = 6665, - [7115] = 6666, - [7116] = 6668, - [7117] = 6667, - [7118] = 6352, - [7119] = 6677, - [7120] = 6670, - [7121] = 524, - [7122] = 6477, - [7123] = 6663, - [7124] = 438, - [7125] = 439, - [7126] = 7051, - [7127] = 1632, - [7128] = 6871, - [7129] = 7002, - [7130] = 6833, - [7131] = 7066, - [7132] = 6623, - [7133] = 252, - [7134] = 6663, - [7135] = 6671, - [7136] = 7051, - [7137] = 6871, - [7138] = 7002, - [7139] = 6674, - [7140] = 6833, - [7141] = 7066, - [7142] = 6326, - [7143] = 6663, - [7144] = 3466, - [7145] = 7051, - [7146] = 6871, - [7147] = 7002, - [7148] = 6833, - [7149] = 7066, - [7150] = 6663, - [7151] = 7151, - [7152] = 7051, - [7153] = 6678, - [7154] = 6871, - [7155] = 7002, - [7156] = 6833, - [7157] = 7066, - [7158] = 6663, - [7159] = 3078, - [7160] = 7051, - [7161] = 6871, - [7162] = 7002, - [7163] = 6833, - [7164] = 7066, - [7165] = 6663, - [7166] = 6601, - [7167] = 7051, - [7168] = 6677, - [7169] = 6871, - [7170] = 7002, - [7171] = 6686, - [7172] = 6833, - [7173] = 7066, - [7174] = 6663, - [7175] = 6664, - [7176] = 7051, - [7177] = 6665, - [7178] = 6871, - [7179] = 7002, - [7180] = 6833, - [7181] = 7066, - [7182] = 6663, - [7183] = 7051, - [7184] = 6155, - [7185] = 6871, - [7186] = 7002, - [7187] = 6666, - [7188] = 6833, - [7189] = 7066, - [7190] = 6663, - [7191] = 7051, - [7192] = 6871, - [7193] = 7002, - [7194] = 6833, - [7195] = 7066, - [7196] = 6663, - [7197] = 6668, - [7198] = 7051, - [7199] = 6667, - [7200] = 6871, - [7201] = 7002, - [7202] = 6833, - [7203] = 7066, - [7204] = 6663, - [7205] = 6666, - [7206] = 7051, - [7207] = 6670, - [7208] = 6871, - [7209] = 7002, - [7210] = 6833, - [7211] = 7066, - [7212] = 6663, - [7213] = 7051, - [7214] = 6871, - [7215] = 7002, - [7216] = 7051, - [7217] = 6833, - [7218] = 7066, - [7219] = 6663, - [7220] = 2964, - [7221] = 7051, - [7222] = 6871, - [7223] = 7002, - [7224] = 6833, - [7225] = 7066, - [7226] = 7051, - [7227] = 525, - [7228] = 6871, - [7229] = 7002, - [7230] = 6833, - [7231] = 7066, - [7232] = 6663, - [7233] = 7051, - [7234] = 6156, - [7235] = 6871, - [7236] = 7002, - [7237] = 6833, - [7238] = 7066, - [7239] = 6663, - [7240] = 7051, - [7241] = 6871, - [7242] = 7002, - [7243] = 6833, - [7244] = 7066, - [7245] = 6663, - [7246] = 7051, - [7247] = 6871, - [7248] = 7002, - [7249] = 6953, - [7250] = 6833, - [7251] = 7066, - [7252] = 6663, - [7253] = 7051, - [7254] = 6871, - [7255] = 7002, - [7256] = 6833, - [7257] = 7066, - [7258] = 6663, - [7259] = 7051, - [7260] = 6243, - [7261] = 6871, - [7262] = 7002, - [7263] = 6833, - [7264] = 7066, - [7265] = 6663, - [7266] = 7051, - [7267] = 6871, - [7268] = 7002, - [7269] = 6833, - [7270] = 7066, - [7271] = 438, - [7272] = 439, + [6971] = 6858, + [6972] = 6615, + [6973] = 6521, + [6974] = 6858, + [6975] = 6155, + [6976] = 6329, + [6977] = 6962, + [6978] = 6960, + [6979] = 6394, + [6980] = 6445, + [6981] = 6451, + [6982] = 6504, + [6983] = 6509, + [6984] = 6638, + [6985] = 6418, + [6986] = 1438, + [6987] = 6638, + [6988] = 6158, + [6989] = 6333, + [6990] = 6618, + [6991] = 6619, + [6992] = 6992, + [6993] = 6615, + [6994] = 6615, + [6995] = 6623, + [6996] = 6624, + [6997] = 6625, + [6998] = 6627, + [6999] = 6628, + [7000] = 6629, + [7001] = 6858, + [7002] = 6630, + [7003] = 6623, + [7004] = 6624, + [7005] = 6625, + [7006] = 6901, + [7007] = 3015, + [7008] = 6934, + [7009] = 6684, + [7010] = 277, + [7011] = 4752, + [7012] = 6562, + [7013] = 6627, + [7014] = 6962, + [7015] = 6964, + [7016] = 6966, + [7017] = 6886, + [7018] = 6167, + [7019] = 6628, + [7020] = 6629, + [7021] = 6901, + [7022] = 6487, + [7023] = 6861, + [7024] = 6684, + [7025] = 321, + [7026] = 6502, + [7027] = 6863, + [7028] = 195, + [7029] = 6962, + [7030] = 6964, + [7031] = 6630, + [7032] = 6966, + [7033] = 6886, + [7034] = 6901, + [7035] = 6684, + [7036] = 6346, + [7037] = 6962, + [7038] = 6964, + [7039] = 6618, + [7040] = 6966, + [7041] = 6886, + [7042] = 6901, + [7043] = 6684, + [7044] = 6592, + [7045] = 6962, + [7046] = 6964, + [7047] = 6966, + [7048] = 6886, + [7049] = 6901, + [7050] = 6170, + [7051] = 6684, + [7052] = 6962, + [7053] = 6964, + [7054] = 6858, + [7055] = 6966, + [7056] = 6886, + [7057] = 6901, + [7058] = 6938, + [7059] = 6684, + [7060] = 6962, + [7061] = 6964, + [7062] = 6966, + [7063] = 6886, + [7064] = 6901, + [7065] = 6684, + [7066] = 6962, + [7067] = 6964, + [7068] = 6966, + [7069] = 6886, + [7070] = 6901, + [7071] = 276, + [7072] = 6110, + [7073] = 6684, + [7074] = 6962, + [7075] = 6964, + [7076] = 6966, + [7077] = 6886, + [7078] = 6901, + [7079] = 6090, + [7080] = 6684, + [7081] = 6962, + [7082] = 6964, + [7083] = 6638, + [7084] = 6966, + [7085] = 6886, + [7086] = 6901, + [7087] = 6684, + [7088] = 6638, + [7089] = 6962, + [7090] = 6964, + [7091] = 6966, + [7092] = 6886, + [7093] = 6901, + [7094] = 6858, + [7095] = 6684, + [7096] = 6358, + [7097] = 6962, + [7098] = 6964, + [7099] = 6618, + [7100] = 6966, + [7101] = 6886, + [7102] = 6901, + [7103] = 6684, + [7104] = 6503, + [7105] = 6962, + [7106] = 6964, + [7107] = 6966, + [7108] = 6886, + [7109] = 6901, + [7110] = 6684, + [7111] = 6619, + [7112] = 6962, + [7113] = 6964, + [7114] = 6929, + [7115] = 6966, + [7116] = 6886, + [7117] = 6901, + [7118] = 6684, + [7119] = 6962, + [7120] = 6964, + [7121] = 7121, + [7122] = 6966, + [7123] = 6886, + [7124] = 6901, + [7125] = 6684, + [7126] = 6615, + [7127] = 6962, + [7128] = 6964, + [7129] = 6523, + [7130] = 6966, + [7131] = 6886, + [7132] = 6901, + [7133] = 6684, + [7134] = 6962, + [7135] = 6964, + [7136] = 6966, + [7137] = 6886, + [7138] = 6901, + [7139] = 6684, + [7140] = 6962, + [7141] = 6964, + [7142] = 6966, + [7143] = 6886, + [7144] = 6901, + [7145] = 6684, + [7146] = 6962, + [7147] = 6964, + [7148] = 6623, + [7149] = 6966, + [7150] = 6886, + [7151] = 6901, + [7152] = 6684, + [7153] = 6624, + [7154] = 6962, + [7155] = 6964, + [7156] = 6625, + [7157] = 6966, + [7158] = 6886, + [7159] = 6627, + [7160] = 6623, + [7161] = 6628, + [7162] = 6629, + [7163] = 6630, + [7164] = 6171, + [7165] = 7165, + [7166] = 470, + [7167] = 6616, + [7168] = 168, + [7169] = 6129, + [7170] = 1528, + [7171] = 275, + [7172] = 6820, + [7173] = 6534, + [7174] = 7174, + [7175] = 6609, + [7176] = 7176, + [7177] = 6964, + [7178] = 6624, + [7179] = 7179, + [7180] = 7180, + [7181] = 6625, + [7182] = 6966, + [7183] = 6658, + [7184] = 7184, + [7185] = 7185, + [7186] = 6625, + [7187] = 7187, + [7188] = 7188, + [7189] = 7189, + [7190] = 7190, + [7191] = 4733, + [7192] = 7190, + [7193] = 1554, + [7194] = 7194, + [7195] = 7195, + [7196] = 7196, + [7197] = 2123, + [7198] = 7198, + [7199] = 7187, + [7200] = 7200, + [7201] = 7201, + [7202] = 470, + [7203] = 7203, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, + [7207] = 7207, + [7208] = 2012, + [7209] = 1990, + [7210] = 7203, + [7211] = 7211, + [7212] = 7212, + [7213] = 2025, + [7214] = 7214, + [7215] = 4936, + [7216] = 7216, + [7217] = 4940, + [7218] = 7188, + [7219] = 7219, + [7220] = 7207, + [7221] = 470, + [7222] = 7222, + [7223] = 7194, + [7224] = 7224, + [7225] = 7225, + [7226] = 3524, + [7227] = 7227, + [7228] = 7228, + [7229] = 7224, + [7230] = 7225, + [7231] = 7231, + [7232] = 7204, + [7233] = 7233, + [7234] = 7234, + [7235] = 7235, + [7236] = 7236, + [7237] = 7187, + [7238] = 7238, + [7239] = 7200, + [7240] = 4967, + [7241] = 4968, + [7242] = 4969, + [7243] = 7196, + [7244] = 7244, + [7245] = 2001, + [7246] = 4815, + [7247] = 7224, + [7248] = 7212, + [7249] = 7249, + [7250] = 7250, + [7251] = 3523, + [7252] = 7252, + [7253] = 7253, + [7254] = 7224, + [7255] = 3527, + [7256] = 4822, + [7257] = 7225, + [7258] = 7258, + [7259] = 7259, + [7260] = 7260, + [7261] = 7261, + [7262] = 7225, + [7263] = 7263, + [7264] = 2005, + [7265] = 3020, + [7266] = 7187, + [7267] = 7231, + [7268] = 7268, + [7269] = 7269, + [7270] = 7270, + [7271] = 7271, + [7272] = 3122, [7273] = 7273, - [7274] = 3045, - [7275] = 6677, - [7276] = 6677, - [7277] = 6668, - [7278] = 253, - [7279] = 3486, - [7280] = 253, - [7281] = 6671, - [7282] = 6674, - [7283] = 7066, - [7284] = 516, - [7285] = 3046, - [7286] = 6678, - [7287] = 7287, - [7288] = 3047, - [7289] = 324, - [7290] = 6602, + [7274] = 7274, + [7275] = 7200, + [7276] = 3100, + [7277] = 7277, + [7278] = 7270, + [7279] = 7279, + [7280] = 7280, + [7281] = 7224, + [7282] = 7224, + [7283] = 7225, + [7284] = 7258, + [7285] = 7285, + [7286] = 7225, + [7287] = 7214, + [7288] = 1791, + [7289] = 7200, + [7290] = 7263, [7291] = 7291, - [7292] = 7292, - [7293] = 2956, - [7294] = 1498, + [7292] = 7212, + [7293] = 3022, + [7294] = 3525, [7295] = 7295, - [7296] = 7296, - [7297] = 7297, - [7298] = 7298, - [7299] = 7299, + [7296] = 462, + [7297] = 7219, + [7298] = 7187, + [7299] = 7224, [7300] = 7300, [7301] = 7301, - [7302] = 7302, - [7303] = 7303, + [7302] = 7212, + [7303] = 7187, [7304] = 7304, [7305] = 7305, - [7306] = 464, - [7307] = 7301, - [7308] = 7304, - [7309] = 7309, + [7306] = 7212, + [7307] = 1528, + [7308] = 7225, + [7309] = 7200, [7310] = 7310, - [7311] = 1498, - [7312] = 7312, - [7313] = 7313, - [7314] = 4758, - [7315] = 7315, - [7316] = 2956, - [7317] = 7317, - [7318] = 7318, + [7311] = 2985, + [7312] = 7212, + [7313] = 4825, + [7314] = 463, + [7315] = 464, + [7316] = 3107, + [7317] = 7212, + [7318] = 7273, [7319] = 7319, - [7320] = 4947, - [7321] = 7297, - [7322] = 4862, - [7323] = 7323, - [7324] = 7324, + [7320] = 7212, + [7321] = 7274, + [7322] = 7227, + [7323] = 7252, + [7324] = 3008, [7325] = 7325, - [7326] = 7315, - [7327] = 7327, - [7328] = 7328, + [7326] = 1528, + [7327] = 1559, + [7328] = 7212, [7329] = 7329, - [7330] = 7319, - [7331] = 4792, - [7332] = 7317, + [7330] = 4761, + [7331] = 7253, + [7332] = 7259, [7333] = 7333, - [7334] = 1929, - [7335] = 1930, - [7336] = 7336, - [7337] = 7299, - [7338] = 7318, - [7339] = 7317, - [7340] = 7323, - [7341] = 7341, - [7342] = 7318, - [7343] = 7305, + [7334] = 7285, + [7335] = 7310, + [7336] = 7260, + [7337] = 3509, + [7338] = 7338, + [7339] = 7277, + [7340] = 7340, + [7341] = 7269, + [7342] = 7271, + [7343] = 7343, [7344] = 7344, [7345] = 7345, - [7346] = 7346, - [7347] = 7309, + [7346] = 7200, + [7347] = 7224, [7348] = 7348, - [7349] = 4786, - [7350] = 7350, - [7351] = 7345, - [7352] = 7346, - [7353] = 7345, - [7354] = 7348, - [7355] = 7310, - [7356] = 372, - [7357] = 7333, - [7358] = 4642, - [7359] = 7359, - [7360] = 4783, - [7361] = 4785, - [7362] = 7328, - [7363] = 7363, - [7364] = 7364, - [7365] = 445, - [7366] = 7366, - [7367] = 7367, - [7368] = 438, - [7369] = 439, - [7370] = 7370, - [7371] = 7317, - [7372] = 7296, - [7373] = 7373, - [7374] = 7374, - [7375] = 1962, - [7376] = 7318, - [7377] = 7363, + [7349] = 7349, + [7350] = 7333, + [7351] = 461, + [7352] = 7225, + [7353] = 199, + [7354] = 7304, + [7355] = 7355, + [7356] = 1554, + [7357] = 1559, + [7358] = 7205, + [7359] = 7187, + [7360] = 7200, + [7361] = 7216, + [7362] = 7228, + [7363] = 7300, + [7364] = 7187, + [7365] = 7200, + [7366] = 7234, + [7367] = 7250, + [7368] = 7368, + [7369] = 7224, + [7370] = 7225, + [7371] = 7207, + [7372] = 7372, + [7373] = 2974, + [7374] = 7206, + [7375] = 7200, + [7376] = 7187, + [7377] = 7377, [7378] = 7378, [7379] = 7379, [7380] = 7380, - [7381] = 7381, - [7382] = 436, - [7383] = 7329, - [7384] = 7345, + [7381] = 7379, + [7382] = 7382, + [7383] = 7382, + [7384] = 7384, [7385] = 7385, - [7386] = 1474, + [7386] = 7386, [7387] = 7387, - [7388] = 4761, - [7389] = 2965, - [7390] = 7318, - [7391] = 7329, - [7392] = 7392, - [7393] = 7346, - [7394] = 2964, + [7388] = 7388, + [7389] = 7389, + [7390] = 7390, + [7391] = 7391, + [7392] = 7385, + [7393] = 7393, + [7394] = 7394, [7395] = 7395, - [7396] = 7396, - [7397] = 7329, - [7398] = 7378, - [7399] = 7399, - [7400] = 2951, - [7401] = 7401, - [7402] = 7329, - [7403] = 7317, - [7404] = 7401, - [7405] = 7318, + [7396] = 7385, + [7397] = 7397, + [7398] = 7398, + [7399] = 7395, + [7400] = 7400, + [7401] = 7386, + [7402] = 7389, + [7403] = 7380, + [7404] = 7404, + [7405] = 7380, [7406] = 7406, [7407] = 7407, - [7408] = 7345, + [7408] = 7408, [7409] = 7409, - [7410] = 7329, - [7411] = 7317, - [7412] = 7412, - [7413] = 7318, - [7414] = 7385, + [7410] = 7410, + [7411] = 7394, + [7412] = 396, + [7413] = 7413, + [7414] = 7414, [7415] = 7415, - [7416] = 7329, - [7417] = 7346, - [7418] = 7346, - [7419] = 7329, - [7420] = 7345, - [7421] = 7346, - [7422] = 7312, - [7423] = 1928, - [7424] = 7341, - [7425] = 7345, - [7426] = 7426, - [7427] = 7317, - [7428] = 7318, - [7429] = 7429, - [7430] = 7430, - [7431] = 7346, - [7432] = 7426, + [7416] = 7385, + [7417] = 7395, + [7418] = 7380, + [7419] = 7419, + [7420] = 7420, + [7421] = 7391, + [7422] = 7379, + [7423] = 7382, + [7424] = 7389, + [7425] = 7425, + [7426] = 7379, + [7427] = 7382, + [7428] = 7428, + [7429] = 7389, + [7430] = 7387, + [7431] = 7431, + [7432] = 7432, [7433] = 7433, - [7434] = 7329, - [7435] = 7359, + [7434] = 7419, + [7435] = 7435, [7436] = 7436, - [7437] = 7341, - [7438] = 2070, - [7439] = 7364, - [7440] = 7374, - [7441] = 7441, - [7442] = 1509, - [7443] = 7380, - [7444] = 7387, - [7445] = 7445, - [7446] = 1474, - [7447] = 2946, - [7448] = 7429, - [7449] = 7396, - [7450] = 1974, + [7437] = 7380, + [7438] = 7387, + [7439] = 396, + [7440] = 7380, + [7441] = 7387, + [7442] = 7442, + [7443] = 7382, + [7444] = 7435, + [7445] = 7393, + [7446] = 396, + [7447] = 7447, + [7448] = 7448, + [7449] = 7449, + [7450] = 7391, [7451] = 7451, - [7452] = 7367, - [7453] = 7317, - [7454] = 7318, - [7455] = 7370, - [7456] = 7456, - [7457] = 7366, - [7458] = 7298, - [7459] = 4752, - [7460] = 7345, - [7461] = 7346, - [7462] = 7462, - [7463] = 7345, - [7464] = 7346, - [7465] = 1509, - [7466] = 7451, - [7467] = 7373, - [7468] = 7468, - [7469] = 7317, - [7470] = 7470, - [7471] = 7471, + [7452] = 7394, + [7453] = 7453, + [7454] = 7454, + [7455] = 7455, + [7456] = 7449, + [7457] = 7387, + [7458] = 7393, + [7459] = 7391, + [7460] = 7395, + [7461] = 7420, + [7462] = 7391, + [7463] = 7420, + [7464] = 7464, + [7465] = 7391, + [7466] = 7431, + [7467] = 7393, + [7468] = 7420, + [7469] = 7378, + [7470] = 7428, + [7471] = 7379, [7472] = 7472, - [7473] = 7473, - [7474] = 7474, + [7473] = 7419, + [7474] = 7436, [7475] = 7475, - [7476] = 7476, - [7477] = 7477, - [7478] = 7478, - [7479] = 7479, - [7480] = 7480, - [7481] = 7481, - [7482] = 7482, + [7476] = 7379, + [7477] = 7382, + [7478] = 7389, + [7479] = 7386, + [7480] = 7420, + [7481] = 7389, + [7482] = 7380, [7483] = 7483, - [7484] = 7475, + [7484] = 7393, [7485] = 7485, [7486] = 7486, - [7487] = 7475, - [7488] = 7477, - [7489] = 7480, - [7490] = 7490, + [7487] = 7487, + [7488] = 7414, + [7489] = 7489, + [7490] = 7387, [7491] = 7491, - [7492] = 7486, - [7493] = 7493, - [7494] = 7480, - [7495] = 7481, - [7496] = 7496, - [7497] = 7497, - [7498] = 7481, - [7499] = 7482, - [7500] = 7500, - [7501] = 7501, - [7502] = 7477, - [7503] = 7503, + [7492] = 7492, + [7493] = 7382, + [7494] = 7494, + [7495] = 7387, + [7496] = 7483, + [7497] = 7420, + [7498] = 7393, + [7499] = 7420, + [7500] = 7378, + [7501] = 7379, + [7502] = 7386, + [7503] = 7420, [7504] = 7483, - [7505] = 7505, - [7506] = 7506, - [7507] = 7501, - [7508] = 7508, - [7509] = 7480, - [7510] = 7480, - [7511] = 7481, - [7512] = 7481, + [7505] = 7382, + [7506] = 7379, + [7507] = 7492, + [7508] = 7377, + [7509] = 7379, + [7510] = 7382, + [7511] = 7393, + [7512] = 7382, [7513] = 7513, - [7514] = 7479, - [7515] = 7515, - [7516] = 7481, - [7517] = 7486, - [7518] = 7483, - [7519] = 7519, - [7520] = 7471, - [7521] = 7508, - [7522] = 7515, - [7523] = 7523, - [7524] = 7524, - [7525] = 7485, - [7526] = 7480, - [7527] = 7481, - [7528] = 7483, - [7529] = 7529, - [7530] = 7483, - [7531] = 7477, - [7532] = 7480, - [7533] = 7496, - [7534] = 7524, - [7535] = 7535, - [7536] = 7481, - [7537] = 7537, - [7538] = 7482, - [7539] = 7483, - [7540] = 7496, - [7541] = 7541, - [7542] = 364, - [7543] = 7471, - [7544] = 7496, - [7545] = 7545, - [7546] = 7515, - [7547] = 7482, - [7548] = 7479, - [7549] = 7501, - [7550] = 7550, - [7551] = 7486, + [7514] = 7387, + [7515] = 7386, + [7516] = 7449, + [7517] = 7407, + [7518] = 7428, + [7519] = 7389, + [7520] = 7390, + [7521] = 7521, + [7522] = 7389, + [7523] = 7386, + [7524] = 7393, + [7525] = 7379, + [7526] = 7382, + [7527] = 7420, + [7528] = 7389, + [7529] = 7382, + [7530] = 7487, + [7531] = 7395, + [7532] = 7389, + [7533] = 7279, + [7534] = 7385, + [7535] = 7410, + [7536] = 7380, + [7537] = 7393, + [7538] = 7538, + [7539] = 7420, + [7540] = 397, + [7541] = 7379, + [7542] = 7382, + [7543] = 7386, + [7544] = 7483, + [7545] = 7391, + [7546] = 7546, + [7547] = 7379, + [7548] = 7548, + [7549] = 7483, + [7550] = 7393, + [7551] = 7432, [7552] = 7552, - [7553] = 7553, - [7554] = 7554, - [7555] = 7535, - [7556] = 7556, - [7557] = 7500, - [7558] = 7552, - [7559] = 7483, - [7560] = 7471, - [7561] = 7561, - [7562] = 7562, - [7563] = 7485, - [7564] = 7564, - [7565] = 7562, - [7566] = 7486, + [7553] = 7384, + [7554] = 7385, + [7555] = 7389, + [7556] = 7382, + [7557] = 7395, + [7558] = 7380, + [7559] = 7386, + [7560] = 7483, + [7561] = 7379, + [7562] = 7393, + [7563] = 7382, + [7564] = 7389, + [7565] = 7407, + [7566] = 7386, [7567] = 7567, - [7568] = 7501, - [7569] = 7569, - [7570] = 7570, - [7571] = 7545, - [7572] = 7562, - [7573] = 7471, - [7574] = 7567, - [7575] = 7496, - [7576] = 7480, - [7577] = 7481, - [7578] = 7483, - [7579] = 7553, - [7580] = 7471, + [7568] = 7379, + [7569] = 7380, + [7570] = 7379, + [7571] = 7571, + [7572] = 7387, + [7573] = 7393, + [7574] = 7379, + [7575] = 7389, + [7576] = 7389, + [7577] = 7382, + [7578] = 7578, + [7579] = 7389, + [7580] = 7420, [7581] = 7581, - [7582] = 7501, - [7583] = 7496, - [7584] = 7496, - [7585] = 7585, - [7586] = 7496, - [7587] = 405, - [7588] = 7588, - [7589] = 7523, + [7582] = 7407, + [7583] = 7583, + [7584] = 7380, + [7585] = 7393, + [7586] = 7382, + [7587] = 7587, + [7588] = 7386, + [7589] = 7385, [7590] = 7590, - [7591] = 7471, - [7592] = 7486, - [7593] = 7593, - [7594] = 7501, - [7595] = 7481, + [7591] = 7428, + [7592] = 7483, + [7593] = 7395, + [7594] = 7594, + [7595] = 7379, [7596] = 7596, - [7597] = 7496, - [7598] = 7598, - [7599] = 7599, - [7600] = 7503, - [7601] = 7601, - [7602] = 7599, - [7603] = 7603, - [7604] = 7475, - [7605] = 7501, - [7606] = 7606, - [7607] = 7515, - [7608] = 7552, - [7609] = 7554, + [7597] = 7393, + [7598] = 7382, + [7599] = 7385, + [7600] = 7600, + [7601] = 7386, + [7602] = 7389, + [7603] = 7395, + [7604] = 7604, + [7605] = 7483, + [7606] = 7380, + [7607] = 7600, + [7608] = 7391, + [7609] = 7393, [7610] = 7610, - [7611] = 7471, + [7611] = 7428, [7612] = 7612, - [7613] = 7471, - [7614] = 7496, - [7615] = 7496, - [7616] = 7501, - [7617] = 7617, - [7618] = 7480, - [7619] = 7481, - [7620] = 405, - [7621] = 7483, - [7622] = 7524, - [7623] = 7623, - [7624] = 7480, - [7625] = 7496, - [7626] = 7477, - [7627] = 7501, - [7628] = 7480, - [7629] = 7629, - [7630] = 7481, - [7631] = 7588, - [7632] = 7632, - [7633] = 7486, - [7634] = 7480, - [7635] = 7612, - [7636] = 7481, - [7637] = 7482, - [7638] = 7501, - [7639] = 7483, - [7640] = 7640, - [7641] = 7482, - [7642] = 7483, - [7643] = 7585, - [7644] = 7561, - [7645] = 7645, - [7646] = 7646, - [7647] = 7569, - [7648] = 7501, - [7649] = 405, - [7650] = 7629, - [7651] = 7651, - [7652] = 364, - [7653] = 7486, + [7613] = 7387, + [7614] = 7420, + [7615] = 7379, + [7616] = 7382, + [7617] = 7492, + [7618] = 7393, + [7619] = 7389, + [7620] = 7620, + [7621] = 7391, + [7622] = 7380, + [7623] = 7394, + [7624] = 7624, + [7625] = 7483, + [7626] = 7447, + [7627] = 7380, + [7628] = 7385, + [7629] = 7420, + [7630] = 7379, + [7631] = 7492, + [7632] = 7379, + [7633] = 7382, + [7634] = 7386, + [7635] = 7382, + [7636] = 7386, + [7637] = 7612, + [7638] = 7389, + [7639] = 7389, + [7640] = 7435, + [7641] = 7641, + [7642] = 7380, + [7643] = 7394, + [7644] = 7604, + [7645] = 7428, + [7646] = 7413, + [7647] = 7382, + [7648] = 7387, + [7649] = 7649, + [7650] = 7650, + [7651] = 7380, + [7652] = 7407, + [7653] = 7407, [7654] = 7654, - [7655] = 7655, - [7656] = 7480, - [7657] = 7481, - [7658] = 7501, - [7659] = 7659, - [7660] = 7660, - [7661] = 7471, - [7662] = 7496, - [7663] = 7663, - [7664] = 7479, - [7665] = 7515, - [7666] = 7588, - [7667] = 7501, - [7668] = 7668, - [7669] = 7669, - [7670] = 7503, - [7671] = 7471, - [7672] = 7486, - [7673] = 7471, - [7674] = 7524, - [7675] = 7480, - [7676] = 7477, - [7677] = 7501, - [7678] = 7477, - [7679] = 7486, - [7680] = 7482, - [7681] = 7663, - [7682] = 7471, - [7683] = 7477, - [7684] = 7601, - [7685] = 7685, - [7686] = 7475, - [7687] = 7501, - [7688] = 7480, - [7689] = 7481, - [7690] = 7481, - [7691] = 7482, - [7692] = 7496, - [7693] = 7482, - [7694] = 7483, + [7655] = 7610, + [7656] = 7380, + [7657] = 7382, + [7658] = 7435, + [7659] = 397, + [7660] = 7394, + [7661] = 7442, + [7662] = 7382, + [7663] = 7387, + [7664] = 7436, + [7665] = 7385, + [7666] = 7395, + [7667] = 7380, + [7668] = 7594, + [7669] = 7610, + [7670] = 7513, + [7671] = 7671, + [7672] = 7672, + [7673] = 7382, + [7674] = 7380, + [7675] = 7395, + [7676] = 7641, + [7677] = 7610, + [7678] = 7464, + [7679] = 7672, + [7680] = 7672, + [7681] = 7420, + [7682] = 7682, + [7683] = 7428, + [7684] = 7385, + [7685] = 7391, + [7686] = 7382, + [7687] = 7420, + [7688] = 7385, + [7689] = 7395, + [7690] = 7610, + [7691] = 7385, + [7692] = 7380, + [7693] = 7382, + [7694] = 7395, [7695] = 7483, - [7696] = 7496, - [7697] = 7501, - [7698] = 7640, + [7696] = 7380, + [7697] = 397, + [7698] = 7654, [7699] = 7699, - [7700] = 7553, - [7701] = 7480, - [7702] = 7588, - [7703] = 7703, - [7704] = 7481, - [7705] = 7629, - [7706] = 7501, - [7707] = 7482, - [7708] = 7550, - [7709] = 7709, - [7710] = 7529, - [7711] = 7663, - [7712] = 7588, - [7713] = 7713, - [7714] = 7714, - [7715] = 7479, - [7716] = 7481, - [7717] = 7483, - [7718] = 7381, - [7719] = 7524, - [7720] = 7588, - [7721] = 7490, - [7722] = 7550, - [7723] = 7552, - [7724] = 7477, - [7725] = 7515, - [7726] = 7481, - [7727] = 7562, - [7728] = 7728, - [7729] = 7483, - [7730] = 7480, - [7731] = 7537, - [7732] = 7481, - [7733] = 7486, - [7734] = 7651, - [7735] = 7479, - [7736] = 7562, - [7737] = 7471, - [7738] = 7496, - [7739] = 7481, - [7740] = 7740, - [7741] = 7477, - [7742] = 7486, - [7743] = 7588, - [7744] = 7496, - [7745] = 7481, - [7746] = 7746, - [7747] = 7747, - [7748] = 7480, - [7749] = 7477, - [7750] = 7481, - [7751] = 7481, - [7752] = 7480, - [7753] = 7486, - [7754] = 7754, - [7755] = 7480, - [7756] = 7541, - [7757] = 7757, - [7758] = 7481, - [7759] = 7668, - [7760] = 7481, - [7761] = 7482, - [7762] = 7483, - [7763] = 7481, - [7764] = 7493, - [7765] = 7765, - [7766] = 7590, - [7767] = 7482, - [7768] = 7483, - [7769] = 7769, - [7770] = 7481, - [7771] = 7771, - [7772] = 7486, - [7773] = 7479, - [7774] = 7486, - [7775] = 7483, - [7776] = 7480, - [7777] = 364, - [7778] = 7660, - [7779] = 7515, - [7780] = 7780, - [7781] = 7483, - [7782] = 7481, - [7783] = 7588, - [7784] = 7486, - [7785] = 7496, - [7786] = 7552, - [7787] = 7481, - [7788] = 7588, - [7789] = 7789, - [7790] = 7541, - [7791] = 7496, - [7792] = 7541, - [7793] = 7793, - [7794] = 7541, - [7795] = 7795, - [7796] = 7757, - [7797] = 7562, - [7798] = 7472, - [7799] = 7603, - [7800] = 7800, - [7801] = 7606, - [7802] = 7780, - [7803] = 7481, - [7804] = 7482, - [7805] = 7610, - [7806] = 7806, - [7807] = 7588, - [7808] = 7808, - [7809] = 7496, - [7810] = 7482, - [7811] = 7471, - [7812] = 7483, - [7813] = 7519, - [7814] = 7477, - [7815] = 7496, - [7816] = 7816, + [7700] = 7387, + [7701] = 7594, + [7702] = 7382, + [7703] = 7594, + [7704] = 7704, + [7705] = 7594, + [7706] = 7420, + [7707] = 7707, + [7708] = 7407, + [7709] = 7492, + [7710] = 7385, + [7711] = 7382, + [7712] = 7435, + [7713] = 7483, + [7714] = 7379, + [7715] = 7395, + [7716] = 7382, + [7717] = 7704, + [7718] = 7386, + [7719] = 7389, + [7720] = 7483, + [7721] = 7382, + [7722] = 7387, + [7723] = 7395, + [7724] = 7724, + [7725] = 7384, + [7726] = 7726, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13459,1014 +13362,1008 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2874, + '\n', 2865, '\r', 2, - '!', 3000, - '"', 3524, - '#', 4824, - '$', 3126, - '&', 2995, - '\'', 3541, - '(', 3232, - ')', 3400, - '*', 3200, - '+', 3555, - ',', 2928, - '-', 2971, - '.', 3317, - '/', 3001, - '0', 3007, - ':', 3553, - ';', 2879, - '<', 2957, - '=', 3694, - '>', 2959, - '?', 2964, - '@', 2960, - 'B', 3028, - 'E', 2996, - 'G', 3005, - 'I', 3026, - 'K', 3005, - 'M', 3005, - 'N', 3025, - 'P', 3005, - 'T', 3005, - '[', 3484, - '\\', 2999, - ']', 2925, - '^', 3637, - '_', 3115, - '`', 3009, - 'a', 3020, - 'b', 3022, - 'c', 3010, - 'd', 3011, - 'e', 2997, - 'f', 3012, - 'g', 3004, - 'h', 3019, - 'i', 3006, - 'k', 3004, - 'l', 3014, - 'm', 3002, - 'n', 3015, - 'o', 2998, - 'p', 3004, - 'r', 3016, - 's', 3017, - 't', 3003, - 'u', 3024, - 'v', 3013, - 'w', 3018, - 'x', 3021, - '{', 3027, - '|', 2880, - '}', 3110, - 0xb5, 3023, + '!', 2991, + '"', 3491, + '#', 4791, + '$', 3114, + '&', 2986, + '\'', 3508, + '(', 3220, + ')', 3367, + '*', 3188, + '+', 3522, + ',', 2919, + '-', 2962, + '.', 3284, + '/', 2992, + '0', 2998, + ':', 3520, + ';', 2870, + '<', 2948, + '=', 3661, + '>', 2950, + '?', 2955, + '@', 2951, + 'B', 3018, + 'E', 2987, + 'G', 2996, + 'I', 3017, + 'K', 2996, + 'M', 2996, + 'N', 3016, + 'P', 2996, + 'T', 2996, + '[', 3451, + '\\', 2990, + ']', 2916, + '^', 3604, + '_', 3104, + '`', 3000, + 'a', 3011, + 'b', 3013, + 'c', 3001, + 'd', 3002, + 'e', 2988, + 'f', 3003, + 'g', 2995, + 'h', 3010, + 'i', 2997, + 'k', 2995, + 'l', 3005, + 'm', 2993, + 'n', 3006, + 'o', 2989, + 'p', 2995, + 'r', 3007, + 's', 3008, + 't', 2994, + 'u', 3015, + 'v', 3004, + 'w', 3009, + 'x', 3012, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3014, '\t', 1, ' ', 1, - 0x0b, 586, - '\f', 586, - 'A', 3028, - 'C', 3028, - 'D', 3028, - 'F', 3028, + 0x0b, 578, + '\f', 578, + 'A', 3018, + 'C', 3018, + 'D', 3018, + 'F', 3018, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3008); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3029); - if (lookahead != 0) ADVANCE(2661); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2999); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3019); + if (lookahead != 0) ADVANCE(2652); END_STATE(); case 1: ADVANCE_MAP( - '\n', 2874, + '\n', 2865, '\r', 2, - '!', 1147, - '"', 3524, - '#', 4824, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '*', 3199, - '+', 3554, - ',', 2928, - '-', 2972, - '.', 1139, - '/', 2307, - '0', 2364, - ':', 3553, - ';', 2879, - '<', 3225, - '=', 1083, - '>', 2959, - '?', 3201, - 'I', 2648, - 'N', 2644, - '[', 2924, - ']', 2925, - '^', 3637, - '_', 3116, - '`', 634, - 'a', 2497, - 'b', 2463, - 'c', 2391, - 'd', 2430, - 'e', 2316, - 'f', 2377, - 'h', 2465, - 'i', 2359, - 'l', 2438, - 'm', 2389, - 'n', 2431, - 'o', 2315, - 'r', 2449, - 's', 2528, - 't', 2547, - 'u', 2582, - 'v', 2386, - 'w', 2460, - 'x', 2518, - '{', 3109, - '|', 2880, - '}', 3110, + '!', 1138, + '"', 3491, + '#', 4791, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '*', 3187, + '+', 3521, + ',', 2919, + '-', 2963, + '.', 1130, + '/', 2298, + '0', 2355, + ':', 3520, + ';', 2870, + '<', 3213, + '=', 1074, + '>', 2950, + '?', 3189, + 'I', 2639, + 'N', 2635, + '[', 2915, + ']', 2916, + '^', 3604, + '_', 3105, + '`', 624, + 'a', 2488, + 'b', 2454, + 'c', 2382, + 'd', 2421, + 'e', 2307, + 'f', 2368, + 'h', 2456, + 'i', 2350, + 'l', 2429, + 'm', 2380, + 'n', 2422, + 'o', 2306, + 'r', 2440, + 's', 2519, + 't', 2538, + 'u', 2573, + 'v', 2377, + 'w', 2451, + 'x', 2509, + '{', 3099, + '|', 2871, + '}', 3100, '\t', 1, ' ', 1, - '&', 1340, - '@', 1340, - 0x0b, 586, - '\f', 586, + '&', 1331, + '@', 1331, + 0x0b, 578, + '\f', 578, ); - if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2656); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2372); - if (lookahead != 0) ADVANCE(2661); + if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2647); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2363); + if (lookahead != 0) ADVANCE(2652); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(2874); - if (lookahead == ':') ADVANCE(3553); + if (lookahead == '\n') ADVANCE(2865); + if (lookahead == ':') ADVANCE(3520); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(586); + lookahead == ' ') ADVANCE(578); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(166); - if (lookahead == ':') ADVANCE(3553); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(586); + if (lookahead == '\n') ADVANCE(3255); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(3288); + if (lookahead == '\n') ADVANCE(3252); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(3285); + if (lookahead == '\n') ADVANCE(3272); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(3305); + if (lookahead == '\n') ADVANCE(3260); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(3293); + if (lookahead == '\n') ADVANCE(3249); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(3282); + if (lookahead == '\n') ADVANCE(3254); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(3287); + if (lookahead == '\n') ADVANCE(3271); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(3304); + if (lookahead == '\n') ADVANCE(3259); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(3292); + if (lookahead == '\n') ADVANCE(3267); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(3300); + if (lookahead == '\n') ADVANCE(3266); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(3299); + if (lookahead == '\n') ADVANCE(3264); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(3297); + if (lookahead == '\n') ADVANCE(3253); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(3286); + if (lookahead == '\n') ADVANCE(3265); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(3298); + if (lookahead == '\n') ADVANCE(3263); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(3296); + if (lookahead == '\n') ADVANCE(3268); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(3301); + if (lookahead == '\n') ADVANCE(3261); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(3294); + if (lookahead == '\n') ADVANCE(3257); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(3290); + if (lookahead == '\n') ADVANCE(3258); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(3291); + if (lookahead == '\n') ADVANCE(3262); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(3295); + if (lookahead == '\n') ADVANCE(3270); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(3303); + if (lookahead == '\n') ADVANCE(3269); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(3302); + if (lookahead == '\n') ADVANCE(2864); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(2873); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '!', 589, + '#', 4789, + ')', 2918, + '*', 519, + '+', 523, + '-', 585, + '/', 574, + ';', 2870, + '<', 592, + '=', 1075, + '>', 595, + '?', 3189, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 25, + ' ', 25, + ); END_STATE(); case 26: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 597, - '#', 4822, - ')', 2927, - '*', 527, - '+', 531, - '-', 593, - '/', 582, - ';', 2879, - '<', 600, - '=', 1084, - '>', 603, - '?', 3201, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 589, + '#', 4789, + ')', 2918, + '*', 520, + '+', 544, + '-', 2970, + '/', 575, + ';', 2870, + '<', 592, + '=', 593, + '>', 595, + '?', 3189, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '{', 3099, + '|', 2871, + '}', 3100, '\t', 26, ' ', 26, ); END_STATE(); case 27: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 597, - '#', 4822, - ')', 2927, - '*', 528, - '+', 552, - '-', 2979, - '/', 583, - ';', 2879, - '<', 600, - '=', 601, - '>', 603, - '?', 3201, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 589, + '#', 4789, + ')', 2918, + '*', 520, + '+', 544, + '-', 2970, + '/', 575, + ';', 2870, + '<', 592, + '=', 593, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '{', 3099, + '|', 2871, + '}', 3100, '\t', 27, ' ', 27, ); END_STATE(); case 28: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 597, - '#', 4822, - ')', 2927, - '*', 528, - '+', 552, - '-', 2979, - '/', 583, - ';', 2879, - '<', 600, - '=', 601, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 589, + '#', 4789, + ')', 2918, + '*', 520, + '+', 544, + '-', 861, + '/', 575, + ';', 2870, + '<', 592, + '=', 594, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '|', 2871, + '}', 3100, '\t', 28, ' ', 28, ); END_STATE(); case 29: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 597, - '#', 4822, - ')', 2927, - '*', 528, - '+', 552, - '-', 873, - '/', 583, - ';', 2879, - '<', 600, - '=', 602, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 589, + '#', 4789, + ')', 2918, + '*', 520, + '+', 544, + '-', 861, + '/', 575, + ';', 2870, + '<', 592, + '=', 594, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 531, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 526, + 's', 830, + 'x', 746, + '|', 2871, + '}', 3100, '\t', 29, ' ', 29, ); END_STATE(); case 30: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 597, - '#', 4822, - ')', 2927, - '*', 528, - '+', 552, - '-', 873, - '/', 583, - ';', 2879, - '<', 600, - '=', 602, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 539, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 534, - 's', 842, - 'x', 757, - '|', 2880, - '}', 3110, - '\t', 30, - ' ', 30, - ); - END_STATE(); - case 31: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - ';', 2879, - '=', 3694, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1464, - 'b', 1509, - 'c', 1369, - 'd', 1395, - 'e', 1473, - 'f', 1372, - 'h', 1449, - 'i', 1365, - 'l', 1417, - 'm', 1374, - 'n', 1396, - 'o', 1569, - 'r', 1397, - 's', 1487, - 't', 1501, - 'u', 1529, - 'w', 1442, - '{', 3109, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + ';', 2870, + '=', 3661, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1455, + 'b', 1500, + 'c', 1360, + 'd', 1386, + 'e', 1464, + 'f', 1363, + 'h', 1440, + 'i', 1356, + 'l', 1408, + 'm', 1365, + 'n', 1387, + 'o', 1560, + 'r', 1388, + 's', 1478, + 't', 1492, + 'u', 1520, + 'w', 1433, + '{', 3099, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); + lookahead == ' ') SKIP(31); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 32: + case 31: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - ';', 2879, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1464, - 'b', 1509, - 'c', 1369, - 'd', 1395, - 'e', 1473, - 'f', 1372, - 'h', 1449, - 'i', 1365, - 'l', 1417, - 'm', 1374, - 'n', 1396, - 'o', 1569, - 'r', 1397, - 's', 1487, - 't', 1501, - 'u', 1529, - 'w', 1442, - '{', 3109, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + ';', 2870, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1455, + 'b', 1500, + 'c', 1360, + 'd', 1386, + 'e', 1464, + 'f', 1363, + 'h', 1440, + 'i', 1356, + 'l', 1408, + 'm', 1365, + 'n', 1387, + 'o', 1560, + 'r', 1388, + 's', 1478, + 't', 1492, + 'u', 1520, + 'w', 1433, + '{', 3099, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); + lookahead == ' ') SKIP(31); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 33: + case 32: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 574, - '-', 2987, - '.', 575, - '0', 2366, - ':', 2921, - ';', 2879, - '=', 1082, - '>', 2958, - '@', 2960, - 'I', 2648, - 'N', 2644, - '[', 2924, - '_', 2370, - '`', 634, - 'a', 2500, - 'c', 2387, - 'e', 2319, - 'f', 2383, - 'i', 2498, - 'l', 2467, - 'n', 2519, - 'o', 2320, - 't', 2574, - 'v', 2388, - 'x', 2516, - '{', 3109, - '|', 2880, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 566, + '-', 2978, + '.', 567, + '0', 2357, + ':', 2912, + ';', 2870, + '=', 1073, + '>', 2949, + '@', 2951, + 'I', 2639, + 'N', 2635, + '[', 2915, + '_', 2361, + '`', 624, + 'a', 2491, + 'c', 2378, + 'e', 2310, + 'f', 2374, + 'i', 2489, + 'l', 2458, + 'n', 2510, + 'o', 2311, + 't', 2565, + 'v', 2379, + 'x', 2507, + '{', 3099, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2373); + lookahead == ' ') SKIP(33); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2364); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 34: + case 33: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 574, - '-', 2987, - '.', 575, - '0', 2366, - ':', 2921, - ';', 2879, - '=', 1082, - '>', 2958, - 'I', 2648, - 'N', 2644, - '[', 2924, - '_', 2370, - '`', 634, - 'a', 2500, - 'c', 2387, - 'e', 2319, - 'f', 2383, - 'i', 2498, - 'l', 2467, - 'n', 2519, - 'o', 2320, - 't', 2574, - 'v', 2388, - 'x', 2516, - '{', 3109, - '|', 2880, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 566, + '-', 2978, + '.', 567, + '0', 2357, + ':', 2912, + ';', 2870, + '=', 1073, + '>', 2949, + 'I', 2639, + 'N', 2635, + '[', 2915, + '_', 2361, + '`', 624, + 'a', 2491, + 'c', 2378, + 'e', 2310, + 'f', 2374, + 'i', 2489, + 'l', 2458, + 'n', 2510, + 'o', 2311, + 't', 2565, + 'v', 2379, + 'x', 2507, + '{', 3099, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2373); + lookahead == ' ') SKIP(33); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2364); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 35: + case 34: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - '=', 3694, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1475, - 'b', 1523, - 'c', 1371, - 'd', 1420, - 'e', 1474, - 'f', 1373, - 'h', 1452, - 'i', 1367, - 'l', 1426, - 'm', 1384, - 'n', 1396, - 'o', 1570, - 'r', 1435, - 's', 1496, - 't', 1510, - 'u', 1539, - 'w', 1447, - '{', 3109, - '\t', 2878, - ' ', 2878, - '!', 1884, - '&', 1884, - '*', 1884, - ',', 1884, - '?', 1884, - '@', 1884, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + '=', 3661, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1466, + 'b', 1514, + 'c', 1362, + 'd', 1411, + 'e', 1465, + 'f', 1364, + 'h', 1443, + 'i', 1358, + 'l', 1417, + 'm', 1375, + 'n', 1387, + 'o', 1561, + 'r', 1426, + 's', 1487, + 't', 1501, + 'u', 1530, + 'w', 1438, + '{', 3099, + '\t', 2869, + ' ', 2869, + '!', 1875, + '&', 1875, + '*', 1875, + ',', 1875, + '?', 1875, + '@', 1875, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 36: + case 35: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1475, - 'b', 1509, - 'c', 1370, - 'd', 1419, - 'e', 1128, - 'f', 1373, - 'h', 1452, - 'i', 1365, - 'l', 1426, - 'm', 1375, - 'n', 1396, - 'o', 1129, - 'r', 1436, - 's', 1496, - 't', 1501, - 'u', 1539, - 'w', 1448, - '{', 3109, - '|', 2880, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1466, + 'b', 1500, + 'c', 1361, + 'd', 1410, + 'e', 1119, + 'f', 1364, + 'h', 1443, + 'i', 1356, + 'l', 1417, + 'm', 1366, + 'n', 1387, + 'o', 1120, + 'r', 1427, + 's', 1487, + 't', 1492, + 'u', 1530, + 'w', 1439, + '{', 3099, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); + lookahead == ' ') SKIP(35); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 37: + case 36: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - 'I', 1870, - 'N', 1865, - '[', 2924, - '^', 3637, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1600, - 'l', 1680, - 'm', 1627, - 'n', 1672, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + 'I', 1861, + 'N', 1856, + '[', 2915, + '^', 3604, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1591, + 'l', 1671, + 'm', 1618, + 'n', 1663, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == ' ') SKIP(36); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 38: + case 37: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 556, - '.', 1602, - '=', 3694, - 'I', 1870, - 'N', 1865, - '[', 3484, - ']', 2925, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 548, + '.', 1593, + '=', 3661, + 'I', 1861, + 'N', 1856, + '[', 3451, + ']', 2916, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 39: + case 38: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 556, - '.', 1602, - 'I', 1870, - 'N', 1865, - ']', 2925, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 548, + '.', 1593, + 'I', 1861, + 'N', 1856, + ']', 2916, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 40: + case 39: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3797, - '-', 2987, - '.', 3794, - '0', 3411, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3836, - 'o', 3778, - 't', 3839, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3764, + '-', 2978, + '.', 3761, + '0', 3378, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3803, + 'o', 3745, + 't', 3806, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); + lookahead == ' ') SKIP(39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 41: + case 40: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3852, - 'o', 3778, - 't', 3839, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3819, + 'o', 3745, + 't', 3806, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(41); + lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 42: + case 41: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4235, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(42); + lookahead == ' ') SKIP(41); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 43: + case 42: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 4267, - '-', 4266, - '.', 4268, - '0', 3412, - ';', 2879, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(43); + lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 44: + case 43: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 3341, - ':', 2921, - '<', 2956, - '=', 1082, - '>', 2958, - '?', 3201, - '@', 2960, - '[', 3484, - ']', 2925, - '`', 634, - '{', 3109, - '|', 2880, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 3308, + ':', 2912, + '<', 2947, + '=', 1073, + '>', 2949, + '?', 3189, + '@', 2951, + '[', 3451, + ']', 2916, + '`', 624, + '{', 3099, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(44); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && @@ -14474,9613 +14371,9467 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ':' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 45: + case 44: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 580, - ':', 2921, - '=', 1082, - '>', 2958, - '?', 3201, - ']', 2925, - '`', 634, - '{', 3109, - '|', 2880, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 572, + ':', 2912, + '=', 1073, + '>', 2949, + '?', 3189, + ']', 2916, + '`', 624, + '{', 3099, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(44); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 46: + case 45: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1349, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1340, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(45); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 47: + case 46: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3797, - '-', 572, - '.', 3794, - '0', 3411, - 'N', 3856, - '[', 2924, - '_', 3114, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3852, - 'o', 3778, - 't', 3839, - '{', 3109, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3764, + '-', 564, + '.', 3761, + '0', 3378, + 'N', 3823, + '[', 2915, + '_', 3103, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3819, + 'o', 3745, + 't', 3806, + '{', 3099, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); + lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 48: + case 47: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1141, - '0', 3418, - 'I', 1327, - 'N', 1322, - '[', 3484, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1132, + '0', 3385, + 'I', 1318, + 'N', 1313, + '[', 3451, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(45); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 49: + case 48: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - ',', 2928, - '-', 2970, - '.', 3316, - ':', 2921, - '=', 1082, - '>', 2958, - '?', 3201, - '`', 634, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + ',', 2919, + '-', 2961, + '.', 3283, + ':', 2912, + '=', 1073, + '>', 2949, + '?', 3189, + '`', 624, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(50); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(49); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 50: + case 49: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - ',', 2928, - '-', 2970, - ':', 2921, - '=', 1082, - '>', 2958, - '?', 3201, - '`', 634, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + ',', 2919, + '-', 2961, + ':', 2912, + '=', 1073, + '>', 2949, + '?', 3189, + '`', 624, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(50); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(49); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 51: + case 50: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '\'', 525, - ')', 2927, - '*', 3198, - '+', 1346, - '-', 573, - '.', 1602, - ';', 2879, - '=', 610, - 'I', 1870, - 'N', 1865, - '[', 2924, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '\'', 517, + ')', 2918, + '*', 3186, + '+', 1337, + '-', 565, + '.', 1593, + ';', 2870, + '=', 602, + 'I', 1861, + 'N', 1856, + '[', 2915, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1884); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); + END_STATE(); + case 51: + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '+', 4331, + ',', 2919, + '-', 2968, + '.', 4327, + ':', 2912, + '=', 1073, + ']', 2916, + '_', 2354, + '|', 2871, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(66); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 52: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '+', 4364, - ',', 2928, - '-', 2977, - '.', 4360, - ':', 2921, - '=', 1082, - ']', 2925, - '_', 2363, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '+', 4331, + ',', 2919, + '-', 2968, + '.', 3304, + ':', 2912, + '=', 1073, + ']', 2916, + '_', 2354, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(66); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 53: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '+', 4364, - ',', 2928, - '-', 2977, - '.', 3337, - ':', 2921, - '=', 1082, - ']', 2925, - '_', 2363, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 3308, + ':', 2912, + '=', 1073, + 'E', 2304, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + ']', 2916, + 'd', 2371, + 'e', 2303, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + '|', 2871, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(70); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 54: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 3341, - ':', 2921, - '=', 1082, - 'E', 2311, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - ']', 2925, - 'd', 2380, - 'e', 2310, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - '|', 2880, - 0xb5, 2576, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 3308, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == ' ') SKIP(70); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 55: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 3341, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4332, + ':', 2912, + '=', 1073, + 'E', 2304, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + ']', 2916, + '_', 2354, + 'd', 2371, + 'e', 2303, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + '|', 2871, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); + lookahead == ' ') SKIP(70); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 56: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4365, - ':', 2921, - '=', 1082, - 'E', 2311, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - ']', 2925, - '_', 2363, - 'd', 2380, - 'e', 2310, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - '|', 2880, - 0xb5, 2576, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4332, + ':', 2912, + '=', 1073, + 'E', 2304, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + ']', 2916, + 'd', 2371, + 'e', 2303, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + '|', 2871, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 57: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4365, - ':', 2921, - '=', 1082, - 'E', 2311, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - ']', 2925, - 'd', 2380, - 'e', 2310, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - '|', 2880, - 0xb5, 2576, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4332, + ':', 2912, + '=', 1073, + 'E', 2348, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + ']', 2916, + 'd', 2371, + 'e', 2347, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + '|', 2871, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 58: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4365, - ':', 2921, - '=', 1082, - 'E', 2357, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - ']', 2925, - 'd', 2380, - 'e', 2356, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - '|', 2880, - 0xb5, 2576, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4332, + ':', 2912, + '=', 1073, + ']', 2916, + '_', 2354, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == ' ') SKIP(70); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 59: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4365, - ':', 2921, - '=', 1082, - ']', 2925, - '_', 2363, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4332, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 60: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4365, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4332, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); + lookahead == ' ') SKIP(70); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 61: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4365, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4328, + ':', 2912, + '=', 1073, + ']', 2916, + '_', 2354, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 62: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4361, - ':', 2921, - '=', 1082, - ']', 2925, - '_', 2363, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4328, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 63: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4361, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 4328, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); + lookahead == ' ') SKIP(70); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 64: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 4361, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 3303, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 65: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 3336, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 2917, + '+', 566, + '-', 2978, + '.', 613, + '0', 2356, + 'N', 2635, + '_', 2361, + 'f', 2375, + 'n', 2511, + 't', 2565, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2312); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(65); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2361); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 66: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 2926, - '+', 574, - '-', 2987, - '.', 623, - '0', 2365, - 'N', 2644, - '_', 2370, - 'f', 2384, - 'n', 2520, - 't', 2574, - '{', 3109, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + '+', 571, + ',', 2919, + '-', 2966, + '.', 573, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || lookahead == ' ') SKIP(66); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2648); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 67: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - '+', 579, - ',', 2928, - '-', 2975, - '.', 581, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 3306, + ':', 2912, + '=', 1073, + '?', 3189, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 68: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 3339, - ':', 2921, - '=', 1082, - '?', 3201, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 572, + ':', 2912, + '=', 1073, + '?', 2955, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || lookahead == ' ') SKIP(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 69: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 580, - ':', 2921, - '=', 1082, - '?', 2964, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 572, + ':', 2912, + '=', 1073, + '?', 3189, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 70: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 580, - ':', 2921, - '=', 1082, - '?', 3201, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + ',', 2919, + '-', 2961, + '.', 572, + ':', 2912, + '=', 1073, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || lookahead == ' ') SKIP(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 71: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - ',', 2928, - '-', 2970, - '.', 580, - ':', 2921, - '=', 1082, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '-', 2961, + '.', 568, + ';', 2870, + '=', 602, + 'E', 609, + 'G', 609, + 'K', 609, + 'M', 609, + 'P', 609, + 'T', 609, + '[', 3451, + 'd', 627, + 'e', 535, + 'g', 608, + 'h', 762, + 'k', 608, + 'm', 610, + 'n', 785, + 'o', 543, + 'p', 608, + 's', 667, + 't', 608, + 'u', 785, + 'w', 708, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 785, + '\t', 27, + ' ', 27, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 72: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - '-', 2970, - '.', 576, - ':', 2921, - ';', 2879, - '=', 1082, - 'a', 738, - 'e', 547, - 'i', 735, - 'o', 548, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, - ); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3297); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(84); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 73: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - '-', 2970, - ':', 2921, - ';', 2879, - '=', 1082, - 'a', 738, - 'e', 547, - 'i', 735, - 'o', 548, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, - ); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(84); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 74: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '-', 2970, - '.', 576, - ';', 2879, - '=', 610, - 'E', 619, - 'G', 619, - 'K', 619, - 'M', 619, - 'P', 619, - 'T', 619, - '[', 3484, - 'd', 637, - 'e', 543, - 'g', 618, - 'h', 773, - 'k', 618, - 'm', 620, - 'n', 796, - 'o', 551, - 'p', 618, - 's', 678, - 't', 618, - 'u', 796, - 'w', 719, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 796, - '\t', 28, - ' ', 28, - 'B', 3462, - 'b', 3462, - ); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '{') ADVANCE(3099); + if (lookahead == '\t' || + lookahead == ' ') SKIP(84); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3330); - if (lookahead == '{') ADVANCE(3109); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(84); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '{') ADVANCE(3109); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 603, + '.', 3283, + ':', 2912, + ';', 2870, + '=', 1073, + '>', 2949, + '@', 2951, + '[', 2915, + ']', 2916, + 'c', 2441, + 'e', 2560, + 'f', 2627, + 'i', 2490, + 'l', 2458, + 'o', 2500, + 'v', 2379, + '{', 3099, + '}', 3100, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(77); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '{') ADVANCE(3109); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 603, + ':', 2912, + ';', 2870, + '=', 1073, + '>', 2949, + '[', 2915, + ']', 2916, + 'c', 2441, + 'e', 2560, + 'f', 2627, + 'i', 2490, + 'l', 2458, + 'o', 2500, + 'v', 2379, + '{', 3099, + '}', 3100, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(77); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '{') ADVANCE(3109); - if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '.', 3297, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 79: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 611, - '.', 3316, - ':', 2921, - ';', 2879, - '=', 1082, - '>', 2958, - '@', 2960, - '[', 2924, - ']', 2925, - 'c', 2450, - 'e', 2569, - 'f', 2636, - 'i', 2499, - 'l', 2467, - 'o', 2509, - 'v', 2388, - '{', 3109, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(80); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 80: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 611, - ':', 2921, - ';', 2879, - '=', 1082, - '>', 2958, - '[', 2924, - ']', 2925, - 'c', 2450, - 'e', 2569, - 'f', 2636, - 'i', 2499, - 'l', 2467, - 'o', 2509, - 'v', 2388, - '{', 3109, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(80); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 81: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '.', 3330, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '.', 3879, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 82: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2869); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); END_STATE(); case 83: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2869); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 84: - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '.', 3912, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '{') ADVANCE(3099); + if (lookahead == '\t' || + lookahead == ' ') SKIP(84); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3694); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2878); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + lookahead == ' ') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3694); + if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '(') ADVANCE(3220); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2878); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == ' ') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '{') ADVANCE(3109); - if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - END_STATE(); - case 88: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); - END_STATE(); - case 89: - if (lookahead == '\n') ADVANCE(2873); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 90: ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4828, - '$', 2934, - '(', 3232, - ')', 2927, - ',', 2928, - '-', 2984, - '.', 4473, - ':', 2922, - '=', 1086, - ']', 2925, - '|', 2880, + '\n', 2864, + '\r', 24, + '#', 4795, + '$', 2925, + '(', 3220, + ')', 2918, + ',', 2919, + '-', 2975, + '.', 4440, + ':', 2913, + '=', 1077, + ']', 2916, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(70); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4541); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4525); + lookahead == '^') ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4492); END_STATE(); - case 91: + case 88: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 1585, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '*', 1123, - '+', 3556, - ',', 2928, - '-', 2985, - '.', 1349, - '/', 1355, - '0', 3417, - ':', 3553, - ';', 2879, - '<', 600, - '=', 1084, - '>', 603, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1720, - 'b', 1704, - 'c', 1614, - 'd', 1654, - 'e', 1124, - 'f', 1615, - 'h', 1700, - 'i', 1599, - 'l', 1668, - 'm', 1618, - 'n', 1655, - 'o', 1126, - 'r', 1657, - 's', 1745, - 't', 1765, - 'u', 1796, - 'w', 1695, - 'x', 1751, - '|', 2880, - '}', 3110, - '\t', 91, - ' ', 91, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '!', 1576, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '*', 1114, + '+', 3523, + ',', 2919, + '-', 2976, + '.', 1340, + '/', 1346, + '0', 3384, + ':', 3520, + ';', 2870, + '<', 592, + '=', 1075, + '>', 595, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1711, + 'b', 1695, + 'c', 1605, + 'd', 1645, + 'e', 1115, + 'f', 1606, + 'h', 1691, + 'i', 1590, + 'l', 1659, + 'm', 1609, + 'n', 1646, + 'o', 1117, + 'r', 1648, + 's', 1736, + 't', 1756, + 'u', 1787, + 'w', 1686, + 'x', 1742, + '|', 2871, + '}', 3100, + '\t', 88, + ' ', 88, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 92: + case 89: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 1585, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '*', 1123, - '+', 3556, - ',', 2928, - '-', 2985, - '.', 1349, - '/', 1355, - '0', 3417, - ':', 3553, - ';', 2879, - '<', 600, - '=', 1084, - '>', 603, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1720, - 'b', 1704, - 'c', 1614, - 'd', 1654, - 'e', 1124, - 'f', 1615, - 'h', 1700, - 'i', 1599, - 'l', 1668, - 'm', 1618, - 'n', 1655, - 'o', 1126, - 'r', 1657, - 's', 1745, - 't', 1765, - 'u', 1796, - 'w', 1695, - 'x', 1751, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 92, - ' ', 92, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '!', 1576, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '*', 1114, + '+', 3523, + ',', 2919, + '-', 2976, + '.', 1340, + '/', 1346, + '0', 3384, + ':', 3520, + ';', 2870, + '<', 592, + '=', 1075, + '>', 595, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1711, + 'b', 1695, + 'c', 1605, + 'd', 1645, + 'e', 1115, + 'f', 1606, + 'h', 1691, + 'i', 1590, + 'l', 1659, + 'm', 1609, + 'n', 1646, + 'o', 1117, + 'r', 1648, + 's', 1736, + 't', 1756, + 'u', 1787, + 'w', 1686, + 'x', 1742, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 89, + ' ', 89, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1884); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); END_STATE(); - case 93: + case 90: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 1585, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '*', 1123, - '+', 3556, - ',', 2928, - '-', 2985, - '.', 1349, - '/', 1355, - '0', 3417, - ':', 3553, - ';', 2879, - '<', 600, - '=', 1084, - '>', 603, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1720, - 'b', 1704, - 'c', 1614, - 'd', 1654, - 'e', 1124, - 'f', 1615, - 'h', 1700, - 'i', 1599, - 'l', 1668, - 'm', 1618, - 'n', 1655, - 'o', 1126, - 'r', 1657, - 's', 1745, - 't', 1765, - 'u', 1796, - 'w', 1695, - 'x', 1751, - '|', 2880, - '}', 3110, - '\t', 93, - ' ', 93, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '!', 1576, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '*', 1114, + '+', 3523, + ',', 2919, + '-', 2976, + '.', 1340, + '/', 1346, + '0', 3384, + ':', 3520, + ';', 2870, + '<', 592, + '=', 1075, + '>', 595, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1711, + 'b', 1695, + 'c', 1605, + 'd', 1645, + 'e', 1115, + 'f', 1606, + 'h', 1691, + 'i', 1590, + 'l', 1659, + 'm', 1609, + 'n', 1646, + 'o', 1117, + 'r', 1648, + 's', 1736, + 't', 1756, + 'u', 1787, + 'w', 1686, + 'x', 1742, + '|', 2871, + '}', 3100, + '\t', 90, + ' ', 90, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + END_STATE(); + case 91: + ADVANCE_MAP( + '\n', 2867, + '\r', 108, + '!', 589, + '#', 4789, + '*', 519, + '+', 523, + '-', 585, + '/', 574, + ':', 3520, + ';', 2870, + '<', 592, + '=', 1075, + '>', 595, + '?', 3189, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 91, + ' ', 91, + 0x0b, 578, + '\f', 578, + ); + END_STATE(); + case 92: + ADVANCE_MAP( + '\n', 2867, + '\r', 108, + '!', 589, + '#', 4789, + '*', 520, + '+', 544, + '-', 2970, + '/', 575, + ':', 3520, + ';', 2870, + '<', 592, + '=', 593, + '>', 595, + '?', 3189, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 677, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 92, + ' ', 92, + 0x0b, 578, + '\f', 578, + ); + END_STATE(); + case 93: + ADVANCE_MAP( + '\n', 2867, + '\r', 108, + '!', 589, + '#', 4789, + '*', 520, + '+', 544, + '-', 861, + '/', 575, + ':', 3520, + ';', 2870, + '<', 592, + '=', 593, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '|', 2871, + '}', 3100, + '\t', 93, + ' ', 93, + 0x0b, 578, + '\f', 578, + ); END_STATE(); case 94: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 597, - '#', 4822, - '*', 527, - '+', 531, - '-', 593, - '/', 582, - ':', 3553, - ';', 2879, - '<', 600, - '=', 1084, - '>', 603, - '?', 3201, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2867, + '\r', 108, + '!', 589, + '#', 4789, + '*', 520, + '+', 544, + '-', 861, + '/', 575, + ':', 3520, + ';', 2870, + '<', 592, + '=', 594, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 537, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 542, + 's', 830, + 'x', 746, + '|', 2871, + '}', 3100, '\t', 94, ' ', 94, - 0x0b, 586, - '\f', 586, + 0x0b, 578, + '\f', 578, ); END_STATE(); case 95: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 597, - '#', 4822, - '*', 528, - '+', 552, - '-', 2979, - '/', 583, - ':', 3553, - ';', 2879, - '<', 600, - '=', 601, - '>', 603, - '?', 3201, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 688, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2867, + '\r', 108, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 566, + '-', 2978, + '.', 567, + '0', 3380, + ':', 3520, + ';', 2870, + '=', 602, + 'I', 893, + 'N', 884, + '[', 2915, + '_', 616, + '`', 624, + 'a', 713, + 'c', 744, + 'd', 665, + 'e', 533, + 'f', 628, + 'h', 695, + 'i', 678, + 'l', 694, + 'm', 625, + 'n', 664, + 'o', 527, + 't', 763, + 'u', 789, + '{', 3099, + '|', 2871, + '}', 3100, '\t', 95, ' ', 95, - 0x0b, 586, - '\f', 586, + 0x0b, 578, + '\f', 578, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); case 96: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 597, - '#', 4822, - '*', 528, - '+', 552, - '-', 873, - '/', 583, - ':', 3553, - ';', 2879, - '<', 600, - '=', 601, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '|', 2880, - '}', 3110, - '\t', 96, - ' ', 96, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '*', 1348, + '+', 3524, + ',', 2919, + '-', 2977, + '.', 3305, + '/', 1349, + '0', 3384, + ':', 3520, + ';', 2870, + '=', 1073, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1116, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1118, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '|', 2871, + '}', 3100, + '\t', 88, + ' ', 88, + 0x0b, 578, + '\f', 578, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); case 97: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '!', 597, - '#', 4822, - '*', 528, - '+', 552, - '-', 873, - '/', 583, - ':', 3553, - ';', 2879, - '<', 600, - '=', 602, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 545, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 550, - 's', 842, - 'x', 757, - '|', 2880, - '}', 3110, - '\t', 97, - ' ', 97, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '*', 1348, + '+', 3524, + ',', 2919, + '-', 2977, + '.', 3305, + '/', 1349, + '0', 3384, + ':', 3520, + ';', 2870, + '=', 1073, + 'I', 1861, + 'N', 1856, + '[', 3451, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1116, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1118, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 89, + ' ', 89, + 0x0b, 578, + '\f', 578, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); END_STATE(); case 98: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 574, - '-', 2987, - '.', 575, - '0', 3413, - ':', 3553, - ';', 2879, - '?', 3201, - 'I', 905, - 'N', 896, - '[', 2924, - '_', 626, - '`', 634, - 'a', 723, - 'c', 755, - 'd', 676, - 'e', 541, - 'f', 639, - 'h', 705, - 'i', 689, - 'l', 706, - 'm', 635, - 'n', 675, - 'o', 535, - 't', 774, - 'u', 800, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 98, - ' ', 98, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '*', 1348, + '+', 3524, + ',', 2919, + '-', 2977, + '.', 1343, + '/', 1349, + '0', 3384, + ':', 3520, + ';', 2870, + '=', 1073, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1116, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1118, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '|', 2871, + '}', 3100, + '\t', 90, + ' ', 90, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); case 99: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 574, - '-', 2987, - '.', 3318, - '0', 3413, - ':', 3553, - ';', 2879, - '=', 3694, - '?', 3201, - 'I', 905, - 'N', 896, - '[', 2924, - '_', 626, - '`', 634, - 'a', 723, - 'c', 755, - 'd', 676, - 'e', 541, - 'f', 639, - 'h', 705, - 'i', 689, - 'l', 706, - 'm', 635, - 'n', 675, - 'o', 535, - 't', 774, - 'u', 800, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 98, - ' ', 98, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4789, + '*', 583, + '+', 528, + '-', 584, + '.', 3297, + '/', 586, + ':', 3520, + ';', 2870, + '=', 1073, + '?', 3189, + 'E', 609, + 'G', 609, + 'K', 609, + 'M', 609, + 'P', 609, + 'T', 609, + 'd', 627, + 'e', 535, + 'g', 608, + 'h', 762, + 'k', 608, + 'm', 610, + 'n', 785, + 'o', 543, + 'p', 608, + 's', 667, + 't', 608, + 'u', 785, + 'w', 708, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 785, + '\t', 91, + ' ', 91, + 'B', 3429, + 'b', 3429, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); case 100: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '*', 1357, - '+', 3557, - ',', 2928, - '-', 2986, - '.', 3338, - '/', 1358, - '0', 3417, - ':', 3553, - ';', 2879, - '=', 1082, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1125, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1127, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '|', 2880, - '}', 3110, - '\t', 91, - ' ', 91, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4789, + '-', 2961, + '.', 3297, + ':', 3520, + ';', 2870, + '=', 602, + '?', 3189, + 'e', 539, + 'i', 674, + 'o', 543, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 92, + ' ', 92, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 101: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '*', 1357, - '+', 3557, - ',', 2928, - '-', 2986, - '.', 3338, - '/', 1358, - '0', 3417, - ':', 3553, - ';', 2879, - '=', 1082, - 'I', 1870, - 'N', 1865, - '[', 3484, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1125, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1127, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2867, + '\r', 108, + '#', 4789, + '-', 2961, + '.', 3283, + ':', 3520, + ';', 2870, + '=', 602, + '?', 3189, + 'e', 539, + 'i', 674, + 'o', 543, + '{', 3099, + '|', 2871, + '}', 3100, '\t', 92, ' ', 92, - 0x0b, 586, - '\f', 586, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1884); END_STATE(); case 102: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '*', 1357, - '+', 3557, - ',', 2928, - '-', 2986, - '.', 1352, - '/', 1358, - '0', 3417, - ':', 3553, - ';', 2879, - '=', 1082, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1125, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1127, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '|', 2880, - '}', 3110, + '\n', 2867, + '\r', 108, + '#', 4789, + '.', 3297, + ':', 3520, + ';', 2870, + '=', 602, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, '\t', 93, ' ', 93, - 0x0b, 586, - '\f', 586, + 'B', 3429, + 'b', 3429, + 0x0b, 578, + '\f', 578, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 103: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '*', 591, - '+', 536, - '-', 592, - '.', 3330, - '/', 594, - ':', 3553, - ';', 2879, - '=', 1082, - '?', 3201, - 'E', 619, - 'G', 619, - 'K', 619, - 'M', 619, - 'P', 619, - 'T', 619, - 'd', 637, - 'e', 543, - 'g', 618, - 'h', 773, - 'k', 618, - 'm', 620, - 'n', 796, - 'o', 551, - 'p', 618, - 's', 678, - 't', 618, - 'u', 796, - 'w', 719, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 796, - '\t', 94, - ' ', 94, - 'B', 3462, - 'b', 3462, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4789, + '.', 2248, + ':', 3520, + ';', 2870, + '=', 602, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + '_', 2265, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 93, + ' ', 93, + 'B', 3429, + 'b', 3429, + 0x0b, 578, + '\f', 578, ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 104: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '-', 2970, - '.', 3330, - ':', 3553, - ';', 2879, - '=', 610, - '?', 3201, - 'e', 547, - 'i', 685, - 'o', 551, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 95, - ' ', 95, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4789, + '.', 2248, + ':', 3520, + ';', 2870, + '=', 602, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 93, + ' ', 93, + 'B', 3429, + 'b', 3429, + 0x0b, 578, + '\f', 578, ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 105: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '-', 2970, - '.', 3316, - ':', 3553, - ';', 2879, - '=', 610, - '?', 3201, - 'e', 547, - 'i', 685, - 'o', 551, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 95, - ' ', 95, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4789, + '.', 2248, + ':', 3520, + ';', 2870, + '=', 602, + 'E', 2260, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2237, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 93, + ' ', 93, + 'B', 3429, + 'b', 3429, + 0x0b, 578, + '\f', 578, ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 106: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '.', 3330, - ':', 3553, - ';', 2879, - '=', 610, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 96, - ' ', 96, - 'B', 3462, - 'b', 3462, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4789, + ':', 3520, + ';', 2870, + 'e', 532, + 'o', 527, + '|', 2871, + '}', 3100, + '\t', 2868, + ' ', 2868, + 0x0b, 578, + '\f', 578, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 107: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '.', 2257, - ':', 3553, - ';', 2879, - '=', 610, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - '_', 2274, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 96, - ' ', 96, - 'B', 3462, - 'b', 3462, - 0x0b, 586, - '\f', 586, + '\n', 2867, + '\r', 108, + '#', 4792, + ':', 3520, + ';', 2870, + 'e', 2158, + 'o', 2159, + '|', 2871, + '}', 3100, + '\t', 94, + ' ', 94, + 0x0b, 578, + '\f', 578, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 108: - ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '.', 2257, - ':', 3553, - ';', 2879, - '=', 610, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 96, - ' ', 96, - 'B', 3462, - 'b', 3462, - 0x0b, 586, - '\f', 586, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '\n') ADVANCE(2867); + if (lookahead == ':') ADVANCE(3520); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(578); END_STATE(); case 109: - ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - '.', 2257, - ':', 3553, - ';', 2879, - '=', 610, - 'E', 2269, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2246, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 96, - ' ', 96, - 'B', 3462, - 'b', 3462, - 0x0b, 586, - '\f', 586, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '\n') ADVANCE(2866); END_STATE(); case 110: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4822, - ':', 3553, - ';', 2879, - 'e', 540, - 'o', 535, - '|', 2880, - '}', 3110, - '\t', 2877, - ' ', 2877, - 0x0b, 586, - '\f', 586, + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + '$', 2920, + ')', 2918, + '*', 183, + '+', 158, + '-', 184, + '.', 621, + '/', 162, + ';', 2870, + '<', 187, + '=', 596, + '>', 188, + 'a', 720, + 'b', 693, + 'e', 536, + 'i', 676, + 'm', 752, + 'n', 742, + 'o', 541, + 's', 799, + 'x', 751, + '{', 3099, + '|', 2871, + '\t', 110, + ' ', 110, ); END_STATE(); case 111: ADVANCE_MAP( - '\n', 2876, - '\r', 112, - '#', 4825, - ':', 3553, - ';', 2879, - 'e', 2167, - 'o', 2168, - '|', 2880, - '}', 3110, - '\t', 97, - ' ', 97, - 0x0b, 586, - '\f', 586, + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + ')', 2918, + '*', 183, + '+', 159, + '-', 186, + '/', 162, + ';', 2870, + '<', 187, + '=', 596, + '>', 188, + '?', 3189, + 'a', 720, + 'b', 693, + 'e', 536, + 'i', 676, + 'm', 752, + 'n', 742, + 'o', 541, + 's', 799, + 'x', 751, + '{', 3099, + '|', 2871, + '\t', 111, + ' ', 111, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(2876); - if (lookahead == ':') ADVANCE(3553); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(586); + ADVANCE_MAP( + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + ')', 2918, + '*', 183, + '+', 159, + '-', 186, + '/', 162, + ';', 2870, + '<', 187, + '=', 597, + '>', 188, + 'a', 720, + 'b', 693, + 'e', 530, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 525, + 's', 799, + 'x', 751, + '|', 2871, + '\t', 112, + ' ', 112, + ); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(2875); + ADVANCE_MAP( + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + ')', 2918, + '*', 183, + '+', 159, + '-', 186, + '/', 162, + ';', 2870, + '<', 187, + '=', 597, + '>', 188, + 'a', 720, + 'b', 693, + 'e', 536, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 541, + 's', 799, + 'x', 751, + '{', 3099, + '|', 2871, + '\t', 113, + ' ', 113, + ); END_STATE(); case 114: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - '$', 2929, - ')', 2927, - '*', 190, - '+', 163, - '-', 191, - '.', 631, - '/', 168, - ';', 2879, - '<', 194, - '=', 604, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 544, - 'i', 687, - 'm', 763, - 'n', 753, - 'o', 549, - 's', 810, - 'x', 762, - '{', 3109, - '|', 2880, + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + ')', 2918, + '*', 183, + '+', 159, + '-', 186, + '/', 162, + ';', 2870, + '<', 187, + '=', 597, + '>', 188, + 'a', 720, + 'b', 693, + 'e', 536, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 541, + 's', 799, + 'x', 751, + '|', 2871, '\t', 114, ' ', 114, ); END_STATE(); case 115: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - ')', 2927, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - ';', 2879, - '<', 194, - '=', 604, - '>', 195, - '?', 3201, - 'a', 730, - 'b', 704, - 'e', 544, - 'i', 687, - 'm', 763, - 'n', 753, - 'o', 549, - 's', 810, - 'x', 762, - '{', 3109, - '|', 2880, + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + ')', 2918, + '*', 182, + '+', 157, + '-', 185, + '/', 161, + ';', 2870, + '<', 187, + '=', 1076, + '>', 188, + '?', 3189, + 'a', 720, + 'b', 693, + 'e', 536, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 541, + 's', 799, + 'x', 751, + '{', 3099, + '|', 2871, '\t', 115, ' ', 115, ); END_STATE(); case 116: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - ')', 2927, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - ';', 2879, - '<', 194, - '=', 605, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 538, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 533, - 's', 810, - 'x', 762, - '|', 2880, + '\n', 2866, + '\r', 109, + '!', 591, + '#', 4789, + '*', 183, + '+', 159, + '-', 186, + '/', 162, + '<', 187, + '=', 597, + '>', 188, + 'a', 720, + 'b', 693, + 'e', 726, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 772, + 's', 799, + 'x', 751, + '{', 3099, '\t', 116, ' ', 116, ); END_STATE(); case 117: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - ')', 2927, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - ';', 2879, - '<', 194, - '=', 605, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 544, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 549, - 's', 810, - 'x', 762, - '{', 3109, - '|', 2880, - '\t', 117, - ' ', 117, + '\n', 2866, + '\r', 109, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '.', 569, + ';', 2870, + '=', 602, + '[', 3451, + '_', 620, + 'e', 539, + 'i', 674, + 'o', 543, + '{', 3099, + '|', 2871, + '\t', 110, + ' ', 110, + '+', 571, + '-', 571, ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); case 118: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - ')', 2927, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - ';', 2879, - '<', 194, - '=', 605, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 544, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 549, - 's', 810, - 'x', 762, - '|', 2880, - '\t', 118, - ' ', 118, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '*', 583, + '+', 528, + '-', 584, + '.', 3297, + '/', 586, + ';', 2870, + '=', 1073, + '?', 3189, + 'E', 609, + 'G', 609, + 'K', 609, + 'M', 609, + 'P', 609, + 'T', 609, + 'd', 627, + 'e', 535, + 'g', 608, + 'h', 762, + 'k', 608, + 'm', 610, + 'n', 785, + 'o', 543, + 'p', 608, + 's', 667, + 't', 608, + 'u', 785, + 'w', 708, + '{', 3099, + '|', 2871, + 0xb5, 785, + '\t', 115, + ' ', 115, + 'B', 3429, + 'b', 3429, ); END_STATE(); case 119: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - ')', 2927, - '*', 189, - '+', 162, - '-', 192, - '/', 167, - ';', 2879, - '<', 194, - '=', 1085, - '>', 195, - '?', 3201, - 'a', 730, - 'b', 704, - 'e', 544, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 549, - 's', 810, - 'x', 762, - '{', 3109, - '|', 2880, - '\t', 119, - ' ', 119, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3850, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 114, + ' ', 114, + 'B', 3429, + 'b', 3429, ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 120: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '!', 599, - '#', 4822, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - '<', 194, - '=', 605, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 736, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 784, - 's', 810, - 'x', 762, - '{', 3109, - '\t', 120, - ' ', 120, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 121: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '.', 577, - ';', 2879, - '=', 610, - '[', 3484, - '_', 630, - 'e', 547, - 'i', 685, - 'o', 551, - '{', 3109, - '|', 2880, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3850, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, '\t', 114, ' ', 114, - '+', 579, - '-', 579, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 122: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '*', 591, - '+', 536, - '-', 592, - '.', 3330, - '/', 594, - ';', 2879, - '=', 1082, - '?', 3201, - 'E', 619, - 'G', 619, - 'K', 619, - 'M', 619, - 'P', 619, - 'T', 619, - 'd', 637, - 'e', 543, - 'g', 618, - 'h', 773, - 'k', 618, - 'm', 620, - 'n', 796, - 'o', 551, - 'p', 618, - 's', 678, - 't', 618, - 'u', 796, - 'w', 719, - '{', 3109, - '|', 2880, - 0xb5, 796, - '\t', 119, - ' ', 119, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 123: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3883, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 118, - ' ', 118, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3850, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 114, + ' ', 114, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 124: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 116, - ' ', 116, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 125: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3883, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 118, - ' ', 118, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3847, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 114, + ' ', 114, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 126: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 116, - ' ', 116, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3856, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 127: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3883, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 118, - ' ', 118, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + '.', 3297, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 116, + ' ', 116, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 128: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, '\t', 116, ' ', 116, - 'B', 3462, - 'b', 3462, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 129: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3880, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 118, - ' ', 118, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 116, + ' ', 116, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 130: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3889, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, + '\n', 2866, + '\r', 109, + '#', 4789, + '(', 3220, + '.', 3879, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, '\t', 116, ' ', 116, - 'B', 3462, - 'b', 3462, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 131: - ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - '.', 3330, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 120, - ' ', 120, - 'B', 3462, - 'b', 3462, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\n') ADVANCE(2866); + if (lookahead == '\r') ADVANCE(109); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '{') ADVANCE(3099); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(116); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 132: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 120, - ' ', 120, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '{', 3099, + '|', 2871, + 0xb5, 2287, + '\t', 113, + ' ', 113, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 133: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 120, - ' ', 120, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2242, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + 0xb5, 2287, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 134: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - '(', 3232, - '.', 3912, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 120, - ' ', 120, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + '_', 2265, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '{', 3099, + '|', 2871, + 0xb5, 2287, + '\t', 113, + ' ', 113, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 135: - if (lookahead == '\n') ADVANCE(2875); - if (lookahead == '\r') ADVANCE(113); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '{') ADVANCE(3109); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ADVANCE_MAP( + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + '_', 2265, + 'd', 2266, + 'e', 2242, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + 0xb5, 2287, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 136: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '{', 3109, - '|', 2880, - 0xb5, 2296, - '\t', 117, - ' ', 117, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '{', 3099, + '|', 2871, + 0xb5, 2287, + '\t', 113, + ' ', 113, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 137: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2251, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - 0xb5, 2296, - '\t', 116, - ' ', 116, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2242, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + 0xb5, 2287, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 138: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - '_', 2274, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '{', 3109, - '|', 2880, - 0xb5, 2296, - '\t', 117, - ' ', 117, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2260, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2237, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '{', 3099, + '|', 2871, + 0xb5, 2287, + '\t', 113, + ' ', 113, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 139: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - '_', 2274, - 'd', 2275, - 'e', 2251, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - 0xb5, 2296, - '\t', 116, - ' ', 116, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2260, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2240, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + 0xb5, 2287, + '\t', 112, + ' ', 112, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 140: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '{', 3109, - '|', 2880, - 0xb5, 2296, - '\t', 117, - ' ', 117, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + '.', 3283, + ';', 2870, + '=', 602, + '?', 3189, + 'e', 539, + 'i', 674, + 'o', 543, + '{', 3099, + '|', 2871, + '\t', 111, + ' ', 111, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 141: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2251, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - 0xb5, 2296, - '\t', 116, - ' ', 116, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 3848, + 'o', 3849, + '|', 2871, + '\t', 114, + ' ', 114, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 142: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2269, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2246, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '{', 3109, - '|', 2880, - 0xb5, 2296, - '\t', 117, - ' ', 117, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 2238, + 'o', 2236, + '|', 2871, + '\t', 114, + ' ', 114, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 143: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2269, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2249, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - 0xb5, 2296, - '\t', 116, - ' ', 116, - 'B', 3462, - 'b', 3462, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 3857, + 'o', 3859, + '|', 2871, + '\t', 112, + ' ', 112, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 144: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - '.', 3316, - ';', 2879, - '=', 610, - '?', 3201, - 'e', 547, - 'i', 685, - 'o', 551, - '{', 3109, - '|', 2880, - '\t', 115, - ' ', 115, + '\n', 2866, + '\r', 109, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 2241, + 'o', 2243, + '|', 2871, + '\t', 112, + ' ', 112, ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 145: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 3881, - 'o', 3882, - '|', 2880, - '\t', 118, - ' ', 118, + '\n', 2866, + '\r', 109, + '#', 4796, + '(', 3220, + ')', 2918, + ';', 2870, + 'e', 4012, + 'o', 4013, + '|', 2871, + '\t', 114, + ' ', 114, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 146: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 2247, - 'o', 2245, - '|', 2880, - '\t', 118, - ' ', 118, + '\n', 2866, + '\r', 109, + '#', 4796, + '(', 3220, + ')', 2918, + ';', 2870, + 'e', 4016, + 'o', 4018, + '|', 2871, + '\t', 112, + ' ', 112, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 147: - ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 3890, - 'o', 3892, - '|', 2880, - '\t', 116, - ' ', 116, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\n') ADVANCE(2866); + if (lookahead == '\r') ADVANCE(109); + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '{') ADVANCE(3099); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(116); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 148: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 2250, - 'o', 2252, - '|', 2880, - '\t', 116, - ' ', 116, + '\n', 2866, + '\r', 109, + '#', 4792, + ')', 2918, + ';', 2870, + 'e', 2158, + 'o', 2159, + '|', 2871, + '\t', 114, + ' ', 114, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 149: ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4829, - '(', 3232, - ')', 2927, - ';', 2879, - 'e', 4045, - 'o', 4046, - '|', 2880, - '\t', 118, - ' ', 118, + '\n', 2866, + '\r', 109, + '#', 4792, + ')', 2918, + ';', 2870, + 'e', 2162, + 'o', 2163, + '|', 2871, + '\t', 112, + ' ', 112, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 150: - ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4829, - '(', 3232, - ')', 2927, - ';', 2879, - 'e', 4049, - 'o', 4051, - '|', 2880, - '\t', 116, - ' ', 116, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '\n') ADVANCE(3251); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(2875); - if (lookahead == '\r') ADVANCE(113); - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '{') ADVANCE(3109); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '\n') ADVANCE(3256); END_STATE(); case 152: - ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4825, - ')', 2927, - ';', 2879, - 'e', 2167, - 'o', 2168, - '|', 2880, - '\t', 118, - ' ', 118, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '\n') ADVANCE(3273); END_STATE(); case 153: - ADVANCE_MAP( - '\n', 2875, - '\r', 113, - '#', 4825, - ')', 2927, - ';', 2879, - 'e', 2171, - 'o', 2172, - '|', 2880, - '\t', 116, - ' ', 116, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '\n') ADVANCE(3275); END_STATE(); case 154: - if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\n') ADVANCE(3250); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(3284); + if (lookahead == '\n') ADVANCE(3274); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(3289); + if (lookahead == '\n') ADVANCE(3276); END_STATE(); case 157: - if (lookahead == '\n') ADVANCE(3306); + if (lookahead == '\r') ADVANCE(3); + if (lookahead == '+') ADVANCE(189); + if (lookahead == '=') ADVANCE(1101); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3255); END_STATE(); case 158: - if (lookahead == '\n') ADVANCE(3308); + if (lookahead == '\r') ADVANCE(3); + if (lookahead == '+') ADVANCE(190); + if (lookahead == '.') ADVANCE(612); + if (lookahead == '_') ADVANCE(571); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(3283); + if (lookahead == '\r') ADVANCE(3); + if (lookahead == '+') ADVANCE(190); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3255); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(3307); + if (lookahead == '\r') ADVANCE(3); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3255); END_STATE(); case 161: - if (lookahead == '\n') ADVANCE(3309); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '/') ADVANCE(166); + if (lookahead == '=') ADVANCE(1104); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3252); END_STATE(); case 162: if (lookahead == '\r') ADVANCE(4); - if (lookahead == '+') ADVANCE(196); - if (lookahead == '=') ADVANCE(1110); + if (lookahead == '/') ADVANCE(166); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3288); + lookahead == ' ') ADVANCE(3252); END_STATE(); case 163: - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '.') ADVANCE(622); - if (lookahead == '_') ADVANCE(579); + if (lookahead == '\r') ADVANCE(5); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == ' ') ADVANCE(3272); END_STATE(); case 164: - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '+') ADVANCE(197); + if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3288); + lookahead == ' ') ADVANCE(3260); END_STATE(); case 165: - if (lookahead == '\r') ADVANCE(4); + if (lookahead == '\r') ADVANCE(7); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3288); + lookahead == ' ') ADVANCE(3249); END_STATE(); case 166: - ADVANCE_MAP( - '\r', 3, - '!', 599, - '*', 526, - '+', 165, - '/', 168, - ':', 3553, - '=', 605, - 'a', 730, - 'b', 704, - 'e', 736, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 784, - 's', 810, - 'x', 762, - 0x0b, 586, - '\f', 586, - '\t', 166, - '\n', 166, - ' ', 166, - ); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3254); END_STATE(); case 167: - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '/') ADVANCE(172); - if (lookahead == '=') ADVANCE(1113); + if (lookahead == '\r') ADVANCE(9); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3285); + lookahead == ' ') ADVANCE(3271); END_STATE(); case 168: - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '/') ADVANCE(172); + if (lookahead == '\r') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3285); + lookahead == ' ') ADVANCE(3259); END_STATE(); case 169: - if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\r') ADVANCE(11); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3305); + lookahead == ' ') ADVANCE(3267); END_STATE(); case 170: - if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3293); + lookahead == ' ') ADVANCE(3266); END_STATE(); case 171: - if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3282); + lookahead == ' ') ADVANCE(3264); END_STATE(); case 172: - if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\r') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3287); + lookahead == ' ') ADVANCE(3253); END_STATE(); case 173: - if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3304); + lookahead == ' ') ADVANCE(3265); END_STATE(); case 174: - if (lookahead == '\r') ADVANCE(11); + if (lookahead == '\r') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3292); + lookahead == ' ') ADVANCE(3263); END_STATE(); case 175: - if (lookahead == '\r') ADVANCE(12); + if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3300); + lookahead == ' ') ADVANCE(3268); END_STATE(); case 176: - if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3299); + lookahead == ' ') ADVANCE(3261); END_STATE(); case 177: - if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\r') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3297); + lookahead == ' ') ADVANCE(3257); END_STATE(); case 178: - if (lookahead == '\r') ADVANCE(15); + if (lookahead == '\r') ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3286); + lookahead == ' ') ADVANCE(3258); END_STATE(); case 179: - if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\r') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3298); + lookahead == ' ') ADVANCE(3262); END_STATE(); case 180: - if (lookahead == '\r') ADVANCE(17); + if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3296); + lookahead == ' ') ADVANCE(3270); END_STATE(); case 181: - if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3301); + lookahead == ' ') ADVANCE(3269); END_STATE(); case 182: - if (lookahead == '\r') ADVANCE(19); + if (lookahead == '\r') ADVANCE(150); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '=') ADVANCE(1103); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3294); + lookahead == ' ') ADVANCE(3251); END_STATE(); case 183: - if (lookahead == '\r') ADVANCE(20); + if (lookahead == '\r') ADVANCE(150); + if (lookahead == '*') ADVANCE(165); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3290); + lookahead == ' ') ADVANCE(3251); END_STATE(); case 184: - if (lookahead == '\r') ADVANCE(21); + if (lookahead == '\r') ADVANCE(151); + if (lookahead == '.') ADVANCE(612); + if (lookahead == '_') ADVANCE(571); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3291); + lookahead == ' ') ADVANCE(3256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); case 185: - if (lookahead == '\r') ADVANCE(22); + if (lookahead == '\r') ADVANCE(151); + if (lookahead == '=') ADVANCE(1102); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3295); + lookahead == ' ') ADVANCE(3256); END_STATE(); case 186: - if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\r') ADVANCE(151); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3303); + lookahead == ' ') ADVANCE(3256); END_STATE(); case 187: - if (lookahead == '\r') ADVANCE(24); + if (lookahead == '\r') ADVANCE(152); + if (lookahead == '=') ADVANCE(191); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3302); + lookahead == ' ') ADVANCE(3273); END_STATE(); case 188: - ADVANCE_MAP( - '\r', 154, - '!', 599, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - '<', 194, - '=', 605, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 736, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 784, - 's', 810, - 'x', 762, - '\t', 188, - '\n', 188, - ' ', 188, - ); + if (lookahead == '\r') ADVANCE(153); + if (lookahead == '=') ADVANCE(192); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3275); END_STATE(); case 189: - if (lookahead == '\r') ADVANCE(155); - if (lookahead == '*') ADVANCE(171); - if (lookahead == '=') ADVANCE(1112); + if (lookahead == '\r') ADVANCE(154); + if (lookahead == '=') ADVANCE(1105); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3284); + lookahead == ' ') ADVANCE(3250); END_STATE(); case 190: - if (lookahead == '\r') ADVANCE(155); - if (lookahead == '*') ADVANCE(171); + if (lookahead == '\r') ADVANCE(154); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3284); + lookahead == ' ') ADVANCE(3250); END_STATE(); case 191: - if (lookahead == '\r') ADVANCE(156); - if (lookahead == '.') ADVANCE(622); - if (lookahead == '_') ADVANCE(579); + if (lookahead == '\r') ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == ' ') ADVANCE(3274); END_STATE(); case 192: if (lookahead == '\r') ADVANCE(156); - if (lookahead == '=') ADVANCE(1111); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3289); + lookahead == ' ') ADVANCE(3276); END_STATE(); case 193: - if (lookahead == '\r') ADVANCE(156); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3289); - END_STATE(); - case 194: - if (lookahead == '\r') ADVANCE(157); - if (lookahead == '=') ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3306); - END_STATE(); - case 195: - if (lookahead == '\r') ADVANCE(158); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3308); - END_STATE(); - case 196: - if (lookahead == '\r') ADVANCE(159); - if (lookahead == '=') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3283); - END_STATE(); - case 197: - if (lookahead == '\r') ADVANCE(159); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3283); - END_STATE(); - case 198: - if (lookahead == '\r') ADVANCE(160); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3307); - END_STATE(); - case 199: - if (lookahead == '\r') ADVANCE(161); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3309); - END_STATE(); - case 200: ADVANCE_MAP( - '!', 597, - '#', 4822, - '*', 528, - '+', 552, - '-', 2979, - '/', 583, - '<', 600, - '=', 602, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 747, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 785, - 's', 842, - 'x', 757, - '{', 3109, - '\t', 200, - ' ', 200, + '!', 589, + '#', 4789, + '*', 520, + '+', 544, + '-', 2970, + '/', 575, + '<', 592, + '=', 594, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 737, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 774, + 's', 830, + 'x', 746, + '{', 3099, + '\t', 193, + ' ', 193, ); END_STATE(); - case 201: + case 194: ADVANCE_MAP( - '!', 597, - '#', 4822, - '*', 528, - '+', 552, - '-', 873, - '/', 583, - '<', 600, - '=', 601, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 747, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 785, - 's', 842, - 'x', 757, - '|', 2880, - '\t', 201, - ' ', 201, + '!', 589, + '#', 4789, + '*', 520, + '+', 544, + '-', 861, + '/', 575, + '<', 592, + '=', 593, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 737, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 774, + 's', 830, + 'x', 746, + '|', 2871, + '\t', 194, + ' ', 194, ); END_STATE(); - case 202: + case 195: ADVANCE_MAP( - '!', 597, - '#', 4822, - '*', 528, - '+', 552, - '-', 873, - '/', 583, - '<', 600, - '=', 602, - '>', 603, - 'a', 739, - 'b', 715, - 'e', 747, - 'i', 741, - 'm', 765, - 'n', 760, - 'o', 785, - 's', 842, - 'x', 757, - '{', 3109, - '\t', 202, - ' ', 202, + '!', 589, + '#', 4789, + '*', 520, + '+', 544, + '-', 861, + '/', 575, + '<', 592, + '=', 594, + '>', 595, + 'a', 729, + 'b', 704, + 'e', 737, + 'i', 731, + 'm', 754, + 'n', 749, + 'o', 774, + 's', 830, + 'x', 746, + '{', 3099, + '\t', 195, + ' ', 195, ); END_STATE(); - case 203: + case 196: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - '+', 574, - '-', 2988, - '.', 575, - '0', 3713, - '=', 3694, - 'N', 3739, - '[', 2924, - '_', 3714, - '`', 634, - 'f', 3721, - 'n', 3728, - 't', 3729, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + '+', 566, + '-', 2979, + '.', 567, + '0', 3680, + '=', 3661, + 'N', 3706, + '[', 2915, + '_', 3681, + '`', 624, + 'f', 3688, + 'n', 3695, + 't', 3696, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3744); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3720); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == 'i') ADVANCE(3711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3687); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 204: + case 197: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - ';', 3565, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1475, - 'b', 1509, - 'c', 1370, - 'd', 1419, - 'e', 1474, - 'f', 1373, - 'h', 1452, - 'i', 1365, - 'l', 1426, - 'm', 1375, - 'n', 1396, - 'o', 1570, - 'r', 1436, - 's', 1496, - 't', 1501, - 'u', 1539, - 'w', 1448, - '{', 3109, - '\t', 204, - ' ', 204, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + ';', 3532, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1466, + 'b', 1500, + 'c', 1361, + 'd', 1410, + 'e', 1465, + 'f', 1364, + 'h', 1443, + 'i', 1356, + 'l', 1417, + 'm', 1366, + 'n', 1387, + 'o', 1561, + 'r', 1427, + 's', 1487, + 't', 1492, + 'u', 1530, + 'w', 1439, + '{', 3099, + '\t', 197, + ' ', 197, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(581); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 205: + case 198: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1475, - 'b', 1523, - 'c', 1371, - 'd', 1420, - 'e', 1474, - 'f', 1373, - 'h', 1452, - 'i', 1367, - 'l', 1426, - 'm', 1384, - 'n', 1396, - 'o', 1570, - 'r', 1435, - 's', 1496, - 't', 1510, - 'u', 1539, - 'w', 1447, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1466, + 'b', 1514, + 'c', 1362, + 'd', 1411, + 'e', 1465, + 'f', 1364, + 'h', 1443, + 'i', 1358, + 'l', 1417, + 'm', 1375, + 'n', 1387, + 'o', 1561, + 'r', 1426, + 's', 1487, + 't', 1501, + 'u', 1530, + 'w', 1438, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); + lookahead == ' ') SKIP(198); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 206: + case 199: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 574, - '-', 2987, - '.', 575, - '0', 3413, - 'N', 896, - '[', 3484, - '_', 626, - '`', 634, - 'f', 639, - 'n', 759, - 't', 779, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 566, + '-', 2978, + '.', 567, + '0', 3380, + 'N', 884, + '[', 3451, + '_', 616, + '`', 624, + 'f', 628, + 'n', 748, + 't', 768, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(905); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); + lookahead == 'i') ADVANCE(893); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); - case 207: + case 200: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 574, - '-', 2987, - '.', 575, - '0', 3413, - 'N', 896, - '[', 2924, - '_', 626, - '`', 634, - 'f', 639, - 'n', 759, - 't', 779, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 566, + '-', 2978, + '.', 567, + '0', 3380, + 'N', 884, + '[', 2915, + '_', 616, + '`', 624, + 'f', 628, + 'n', 748, + 't', 768, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(905); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); + lookahead == 'i') ADVANCE(893); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); - case 208: + case 201: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 574, - '-', 2987, - '.', 575, - '0', 2684, - '=', 3694, - 'N', 2809, - '[', 2924, - '_', 2685, - '`', 634, - 'f', 2693, - 'n', 2757, - 't', 2762, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 566, + '-', 2978, + '.', 567, + '0', 2675, + '=', 3661, + 'N', 2800, + '[', 2915, + '_', 2676, + '`', 624, + 'f', 2684, + 'n', 2748, + 't', 2753, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2691); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + lookahead == 'i') ADVANCE(2808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); END_STATE(); - case 209: + case 202: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 574, - '-', 2973, - '.', 575, - '0', 3413, - 'N', 896, - '[', 2924, - '_', 626, - '`', 634, - 'f', 639, - 'n', 759, - 't', 779, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 566, + '-', 2964, + '.', 567, + '0', 3380, + 'N', 884, + '[', 2915, + '_', 616, + '`', 624, + 'f', 628, + 'n', 748, + 't', 768, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(209); + lookahead == ' ') SKIP(202); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(905); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); + lookahead == 'i') ADVANCE(893); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); - case 210: + case 203: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3797, - '-', 573, - '.', 3794, - '0', 3411, - ':', 3553, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3852, - 'o', 3778, - 't', 3839, - '{', 3109, - '\t', 210, - ' ', 210, - 'I', 3860, - 'i', 3860, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3764, + '-', 565, + '.', 3761, + '0', 3378, + ':', 3520, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3819, + 'o', 3745, + 't', 3806, + '{', 3099, + '\t', 203, + ' ', 203, + 'I', 3827, + 'i', 3827, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 211: + case 204: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3797, - '-', 573, - '.', 3794, - ':', 3553, - 'N', 3856, - '_', 3811, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3852, - 'o', 3778, - 't', 3839, - '\t', 211, - ' ', 211, - 'I', 3860, - 'i', 3860, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3764, + '-', 565, + '.', 3761, + ':', 3520, + 'N', 3823, + '_', 3778, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3819, + 'o', 3745, + 't', 3806, + '\t', 204, + ' ', 204, + 'I', 3827, + 'i', 3827, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 212: + case 205: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3797, - '-', 573, - '.', 3794, - 'N', 3856, - '_', 3811, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3852, - 'o', 3778, - 't', 3839, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3764, + '-', 565, + '.', 3761, + 'N', 3823, + '_', 3778, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3819, + 'o', 3745, + 't', 3806, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(212); + lookahead == ' ') SKIP(205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 213: + case 206: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 4267, - '-', 4266, - '.', 4268, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 4234, + '-', 4233, + '.', 4235, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3519, + ' ', 3519, + 'I', 4292, + 'i', 4292, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == ',') ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 214: + case 207: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 4549, - '-', 4548, - '.', 4547, - '0', 3414, - 'N', 4580, - '[', 2924, - '_', 4555, - '`', 634, - 'e', 4542, - 'f', 4560, - 'n', 4577, - 'o', 4543, - 't', 4570, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 4516, + '-', 4515, + '.', 4514, + '0', 3381, + 'N', 4547, + '[', 2915, + '_', 4522, + '`', 624, + 'e', 4509, + 'f', 4527, + 'n', 4544, + 'o', 4510, + 't', 4537, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(214); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3437); + lookahead == 'i') ADVANCE(4553); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3404); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4600); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4567); END_STATE(); - case 215: + case 208: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3914, - '-', 2994, - '.', 3911, - '0', 3364, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3933, - '`', 634, - 'd', 3948, - 'e', 3927, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3969, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3881, + '-', 2985, + '.', 3878, + '0', 3331, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3900, + '`', 624, + 'd', 3915, + 'e', 3894, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3936, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); END_STATE(); - case 216: + case 209: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3914, - '-', 2994, - '.', 3911, - '0', 3415, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3927, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3969, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3881, + '-', 2985, + '.', 3878, + '0', 3382, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3894, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3936, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); END_STATE(); - case 217: + case 210: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3914, - '-', 2994, - '.', 3911, - '0', 3415, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3930, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3969, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3881, + '-', 2985, + '.', 3878, + '0', 3382, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3897, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3936, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); END_STATE(); - case 218: + case 211: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3914, - '-', 2994, - '.', 3910, - '0', 3415, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'f', 3947, - 'n', 3970, - 't', 3976, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3881, + '-', 2985, + '.', 3877, + '0', 3382, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'f', 3914, + 'n', 3937, + 't', 3943, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); END_STATE(); - case 219: + case 212: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 3914, - '-', 2994, - '.', 3335, - '0', 3415, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3927, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3969, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 3881, + '-', 2985, + '.', 3301, + '0', 3382, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3894, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3936, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); END_STATE(); - case 220: + case 213: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4263, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4230, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 221: + case 214: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4364, - ',', 2928, - '-', 4363, - '.', 4356, - '0', 3366, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4331, + ',', 2919, + '-', 4330, + '.', 4323, + '0', 3333, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(342); + lookahead == ' ') SKIP(335); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 222: + case 215: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4364, - ',', 2928, - '-', 4363, - '.', 3322, - '0', 3366, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4331, + ',', 2919, + '-', 4330, + '.', 3289, + '0', 3333, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(342); + lookahead == ' ') SKIP(335); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 223: + case 216: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4364, - ',', 3548, - '-', 4363, - '.', 4356, - '0', 3366, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4331, + ',', 3515, + '-', 4330, + '.', 4323, + '0', 3333, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 224: + case 217: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4364, - ',', 3548, - '-', 4363, - '.', 3322, - '0', 3366, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4331, + ',', 3515, + '-', 4330, + '.', 3289, + '0', 3333, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 225: + case 218: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1141, - '0', 3369, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1132, + '0', 3336, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 226: + case 219: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1141, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1132, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 227: + case 220: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1141, - '0', 3418, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1132, + '0', 3385, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 228: + case 221: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 3340, - '0', 3418, - 'B', 3462, - 'E', 1149, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1148, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 3307, + '0', 3385, + 'B', 3429, + 'E', 1140, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1139, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 229: + case 222: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 3340, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 3307, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 230: + case 223: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1143, - '0', 3369, - 'B', 3462, - 'E', 1149, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1148, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 3296, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 231: + case 224: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1143, - '0', 3369, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1134, + '0', 3336, + 'B', 3429, + 'E', 1140, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1139, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 232: + case 225: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1143, - '0', 3418, - 'B', 3462, - 'E', 1149, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1148, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1134, + '0', 3336, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 233: + case 226: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1143, - '0', 3418, - 'B', 3462, - 'E', 1154, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1151, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1134, + '0', 3385, + 'B', 3429, + 'E', 1140, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1139, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 234: + case 227: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1143, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1134, + '0', 3385, + 'B', 3429, + 'E', 1145, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1142, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 235: + case 228: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 1143, - '0', 3418, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1134, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 236: + case 229: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 1884, - '-', 2989, - '.', 3329, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 1875, + '-', 2980, + '.', 1134, + '0', 3385, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 237: + case 230: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1141, - '0', 3369, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1132, + '0', 3336, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 238: + case 231: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1141, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1132, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 239: + case 232: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1141, - '0', 3418, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1132, + '0', 3385, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 240: + case 233: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 3340, - '0', 3418, - 'B', 3462, - 'E', 1149, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1148, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 3307, + '0', 3385, + 'B', 3429, + 'E', 1140, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1139, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 241: + case 234: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 3340, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 3307, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 242: + case 235: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1143, - '0', 3369, - 'B', 3462, - 'E', 1149, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1148, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 3296, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 243: + case 236: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1143, - '0', 3369, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1134, + '0', 3336, + 'B', 3429, + 'E', 1140, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1139, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 244: + case 237: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1143, - '0', 3418, - 'B', 3462, - 'E', 1149, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1148, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1134, + '0', 3336, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 245: + case 238: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1143, - '0', 3418, - 'B', 3462, - 'E', 1154, - 'G', 1154, - 'I', 1327, - 'K', 1154, - 'M', 1154, - 'N', 1322, - 'P', 1154, - 'T', 1154, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 3463, - 'c', 1177, - 'd', 1175, - 'e', 1151, - 'f', 1174, - 'g', 1153, - 'h', 1227, - 'i', 1155, - 'k', 1153, - 'l', 1209, - 'm', 1150, - 'n', 1202, - 'o', 1314, - 'p', 1153, - 'r', 1193, - 's', 1206, - 't', 1152, - 'u', 1286, - 'w', 1223, - '}', 3110, - 0xb5, 1285, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1134, + '0', 3385, + 'B', 3429, + 'E', 1140, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1139, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 246: + case 239: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1143, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1134, + '0', 3385, + 'B', 3429, + 'E', 1145, + 'G', 1145, + 'I', 1318, + 'K', 1145, + 'M', 1145, + 'N', 1313, + 'P', 1145, + 'T', 1145, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 3430, + 'c', 1168, + 'd', 1166, + 'e', 1142, + 'f', 1165, + 'g', 1144, + 'h', 1218, + 'i', 1146, + 'k', 1144, + 'l', 1200, + 'm', 1141, + 'n', 1193, + 'o', 1305, + 'p', 1144, + 'r', 1184, + 's', 1197, + 't', 1143, + 'u', 1277, + 'w', 1214, + '}', 3100, + 0xb5, 1276, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 247: + case 240: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1143, - '0', 3418, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1134, + '0', 3385, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 248: + case 241: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 3329, - '0', 3418, - 'E', 1167, - 'I', 1327, - 'N', 1322, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1166, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1134, + '0', 3385, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 249: + case 242: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4358, - '0', 3366, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'd', 4395, - 'e', 4351, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, - '\t', 3549, - ' ', 3549, - 'B', 3462, - 'b', 3462, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4325, + '0', 3333, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'd', 4362, + 'e', 4318, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, + '\t', 3516, + ' ', 3516, + 'B', 3429, + 'b', 3429, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 250: + case 243: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4358, - '0', 3366, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4325, + '0', 3333, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 251: + case 244: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4358, - '0', 3416, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'd', 4395, - 'e', 4351, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, - '\t', 3549, - ' ', 3549, - 'B', 3462, - 'b', 3462, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4325, + '0', 3383, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'd', 4362, + 'e', 4318, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, + '\t', 3516, + ' ', 3516, + 'B', 3429, + 'b', 3429, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 252: + case 245: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4358, - '0', 3416, - 'E', 4379, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'd', 4395, - 'e', 4348, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, - '\t', 3549, - ' ', 3549, - 'B', 3462, - 'b', 3462, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4325, + '0', 3383, + 'E', 4346, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'd', 4362, + 'e', 4315, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, + '\t', 3516, + ' ', 3516, + 'B', 3429, + 'b', 3429, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 253: + case 246: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4358, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4325, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 254: + case 247: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4358, - '0', 3416, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4325, + '0', 3383, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 255: + case 248: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4357, - '0', 3366, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4324, + '0', 3333, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 256: + case 249: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4357, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4324, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 257: + case 250: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4357, - '0', 3416, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4324, + '0', 3383, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 258: + case 251: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 3334, - '0', 3416, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'd', 4395, - 'e', 4351, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, - '\t', 3549, - ' ', 3549, - 'B', 3462, - 'b', 3462, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 3302, + '0', 3383, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'd', 4362, + 'e', 4318, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, + '\t', 3516, + ' ', 3516, + 'B', 3429, + 'b', 3429, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 259: + case 252: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 3334, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 3302, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 260: + case 253: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 3324, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 3293, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 261: + case 254: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3558, - ',', 1884, - '-', 2993, - '.', 3328, - '0', 3369, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3525, + ',', 1875, + '-', 2984, + '.', 3295, + '0', 3336, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(334); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 262: + case 255: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3558, - ',', 1884, - '-', 2993, - '.', 1140, - '0', 3369, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3525, + ',', 1875, + '-', 2984, + '.', 1131, + '0', 3336, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(334); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 263: + case 256: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3558, - ',', 3548, - '-', 2993, - '.', 3328, - '0', 3369, - 'I', 1327, - 'N', 1322, - '[', 2924, - ']', 2925, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3525, + ',', 3515, + '-', 2984, + '.', 3295, + '0', 3336, + 'I', 1318, + 'N', 1313, + '[', 2915, + ']', 2916, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 264: + case 257: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 3558, - ',', 3548, - '-', 2993, - '.', 1140, - '0', 3369, - 'I', 1327, - 'N', 1322, - '_', 1165, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 3525, + ',', 3515, + '-', 2984, + '.', 1131, + '0', 3336, + 'I', 1318, + 'N', 1313, + '_', 1156, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 265: + case 258: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4270, - ',', 2928, - '-', 4269, - '.', 4264, - '0', 3367, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4237, + ',', 2919, + '-', 4236, + '.', 4231, + '0', 3334, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(342); + lookahead == ' ') SKIP(335); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 266: + case 259: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4270, - ',', 2928, - '-', 4269, - '.', 3325, - '0', 3367, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4237, + ',', 2919, + '-', 4236, + '.', 3291, + '0', 3334, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(342); + lookahead == ' ') SKIP(335); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 267: + case 260: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4270, - ',', 3548, - '-', 4269, - '.', 4264, - '0', 3367, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4237, + ',', 3515, + '-', 4236, + '.', 4231, + '0', 3334, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 268: + case 261: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 3232, - '+', 4270, - ',', 3548, - '-', 4269, - '.', 3325, - '0', 3367, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 3220, + '+', 4237, + ',', 3515, + '-', 4236, + '.', 3291, + '0', 3334, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 269: + case 262: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 2928, - '-', 2987, - '.', 1349, - '0', 3417, - ':', 3553, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 269, - ' ', 269, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 2919, + '-', 2978, + '.', 1340, + '0', 3384, + ':', 3520, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 262, + ' ', 262, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 270: + case 263: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 2928, - '-', 2987, - '.', 1349, - '0', 3417, - ':', 3553, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 270, - ' ', 270, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 2919, + '-', 2978, + '.', 1340, + '0', 3384, + ':', 3520, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 263, + ' ', 263, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 271: + case 264: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 2928, - '-', 2987, - '.', 3327, - '0', 3417, - ':', 3553, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 269, - ' ', 269, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 2919, + '-', 2978, + '.', 3294, + '0', 3384, + ':', 3520, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 262, + ' ', 262, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 272: + case 265: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 2928, - '-', 2987, - '.', 3327, - '0', 3417, - ':', 3553, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 270, - ' ', 270, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 2919, + '-', 2978, + '.', 3294, + '0', 3384, + ':', 3520, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 263, + ' ', 263, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 273: + case 266: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 3338, - '0', 3417, - '<', 2956, - 'I', 1870, - 'N', 1865, - ']', 2925, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 3305, + '0', 3384, + '<', 2947, + 'I', 1861, + 'N', 1856, + ']', 2916, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 274: + case 267: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 3338, - '0', 3417, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 3305, + '0', 3384, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 275: + case 268: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 3338, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 3305, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 276: + case 269: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 1349, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 1340, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 277: + case 270: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 1349, - '0', 3368, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1610, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 1340, + '0', 3335, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1601, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 278: + case 271: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 3327, - '0', 3417, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 3294, + '0', 3384, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 279: + case 272: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 3327, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 3294, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 280: + case 273: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 3327, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 3294, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 281: + case 274: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 1352, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 1343, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 282: + case 275: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 1352, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 1343, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 283: + case 276: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - ',', 3548, - '-', 2987, - '.', 1352, - '0', 3368, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1610, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + ',', 3515, + '-', 2978, + '.', 1343, + '0', 3335, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1601, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 284: + case 277: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 3338, - '0', 3417, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 3305, + '0', 3384, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 285: + case 278: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 3338, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 3305, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 286: + case 279: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 3338, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 3305, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 287: + case 280: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1349, - '0', 3417, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1340, + '0', 3384, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 288: + case 281: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1349, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1340, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 289: + case 282: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1349, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1340, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 290: + case 283: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1349, - '0', 3368, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1610, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1340, + '0', 3335, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1601, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 291: + case 284: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 3327, - '0', 3417, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 3294, + '0', 3384, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 292: + case 285: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 3327, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 3294, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 293: + case 286: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 3327, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 3294, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 294: + case 287: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1352, - '0', 3417, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1343, + '0', 3384, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 295: + case 288: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1352, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1343, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 296: + case 289: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3559, - '-', 2987, - '.', 1352, - '0', 3368, - 'E', 1612, - 'I', 1870, - 'N', 1865, - '_', 1610, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1611, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3526, + '-', 2978, + '.', 1343, + '0', 3335, + 'E', 1603, + 'I', 1861, + 'N', 1856, + '_', 1601, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1602, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 297: + case 290: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3797, - ',', 3548, - '-', 573, - '.', 3794, - '0', 3411, - 'N', 3856, - '[', 2924, - ']', 2925, - '_', 3114, - '`', 634, - 'e', 3777, - 'f', 3824, - 'n', 3852, - 'o', 3778, - 't', 3839, - '{', 3109, - '}', 3110, - '\t', 3549, - ' ', 3549, - 'I', 3860, - 'i', 3860, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3764, + ',', 3515, + '-', 565, + '.', 3761, + '0', 3378, + 'N', 3823, + '[', 2915, + '_', 3103, + '`', 624, + 'e', 3744, + 'f', 3791, + 'n', 3819, + 'o', 3745, + 't', 3806, + '{', 3099, + '}', 3100, + '\t', 3516, + ' ', 3516, + 'I', 3827, + 'i', 3827, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); END_STATE(); - case 298: + case 291: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3412, - ';', 3565, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 298, - ' ', 298, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3379, + ';', 3532, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 291, + ' ', 291, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(589); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(581); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 299: + case 292: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3412, - '?', 3201, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3379, + '?', 3189, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(299); + lookahead == ' ') SKIP(292); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 300: + case 293: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 301: + case 294: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3412, - 'N', 4319, - '[', 3484, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3379, + 'N', 4286, + '[', 3451, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 302: + case 295: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 303: + case 296: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4263, - '0', 3367, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4230, + '0', 3334, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 304: + case 297: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4265, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4232, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 305: + case 298: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4265, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4232, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 306: + case 299: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 4265, - '0', 3367, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 4232, + '0', 3334, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 307: + case 300: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 3333, - '0', 3412, - '?', 3201, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 3300, + '0', 3379, + '?', 3189, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(299); + lookahead == ' ') SKIP(292); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 308: + case 301: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 3333, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 3300, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 309: + case 302: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 3333, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 3300, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 310: + case 303: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 3320, - '0', 3412, - ';', 3565, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 298, - ' ', 298, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 3287, + '0', 3379, + ';', 3532, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 291, + ' ', 291, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(589); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(581); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 311: + case 304: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 3320, - '0', 3412, - '?', 3201, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 3287, + '0', 3379, + '?', 3189, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(299); + lookahead == ' ') SKIP(292); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 312: + case 305: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 2928, - '-', 4266, - '.', 3320, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 2919, + '-', 4233, + '.', 3287, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 313: + case 306: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4263, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4230, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 314: + case 307: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4263, - '0', 3412, - 'N', 4319, - '[', 3484, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '}', 3110, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4230, + '0', 3379, + 'N', 4286, + '[', 3451, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '}', 3100, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 315: + case 308: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4263, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '}', 3110, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4230, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '}', 3100, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 316: + case 309: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4263, - '0', 3367, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4230, + '0', 3334, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 317: + case 310: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4265, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4232, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 318: + case 311: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4265, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4232, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 319: + case 312: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 4265, - '0', 3367, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4291, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 4232, + '0', 3334, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4262, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 320: + case 313: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3333, - '0', 3412, - '?', 3201, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3300, + '0', 3379, + '?', 3189, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 321: + case 314: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3333, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3300, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 322: + case 315: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3333, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3300, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 323: + case 316: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3320, - '0', 3412, - ';', 3565, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3550, - ' ', 3550, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3287, + '0', 3379, + ';', 3532, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3517, + ' ', 3517, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3551); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3518); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 324: + case 317: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3320, - '0', 3412, - '?', 3201, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3287, + '0', 3379, + '?', 3189, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 325: + case 318: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3320, - '0', 3412, - 'E', 4297, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4258, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3287, + '0', 3379, + 'E', 4264, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4225, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 326: + case 319: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4267, - ',', 3548, - '-', 4266, - '.', 3320, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4325, - 'i', 4325, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4234, + ',', 3515, + '-', 4233, + '.', 3287, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4292, + 'i', 4292, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 327: + case 320: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3561, - ',', 3548, - '-', 2989, - '.', 1141, - '0', 3418, - 'I', 1327, - 'N', 1322, - '[', 3484, - ']', 2925, - '_', 1160, - '`', 634, - 'a', 1241, - 'b', 1276, - 'c', 1177, - 'd', 1205, - 'e', 1246, - 'f', 1174, - 'h', 1228, - 'i', 1155, - 'l', 1209, - 'm', 1170, - 'n', 1203, - 'o', 1314, - 'r', 1193, - 's', 1257, - 't', 1270, - 'u', 1287, - 'w', 1224, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3528, + ',', 3515, + '-', 2980, + '.', 1132, + '0', 3385, + 'I', 1318, + 'N', 1313, + '[', 3451, + ']', 2916, + '_', 1151, + '`', 624, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1237, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4633); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4600); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 328: + case 321: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4358, - '0', 3366, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'd', 4395, - 'e', 4351, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4325, + '0', 3333, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'd', 4362, + 'e', 4318, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 329: + case 322: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4358, - '0', 3366, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4325, + '0', 3333, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 330: + case 323: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4358, - '0', 3416, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'd', 4395, - 'e', 4351, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4325, + '0', 3383, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'd', 4362, + 'e', 4318, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 331: + case 324: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4358, - '0', 3416, - 'E', 4379, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'd', 4395, - 'e', 4348, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4325, + '0', 3383, + 'E', 4346, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'd', 4362, + 'e', 4315, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 332: + case 325: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4358, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4325, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 333: + case 326: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4358, - '0', 3416, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4325, + '0', 3383, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 334: + case 327: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4357, - '0', 3366, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4381, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4324, + '0', 3333, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4348, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 335: + case 328: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4357, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4324, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 336: + case 329: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 4357, - '0', 3416, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 4324, + '0', 3383, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 337: + case 330: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 3334, - '0', 3416, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'N', 4424, - 'P', 4379, - 'T', 4379, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'd', 4395, - 'e', 4351, - 'f', 4394, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4415, - 'o', 4350, - 'p', 4378, - 's', 4400, - 't', 4377, - 'u', 4416, - 'w', 4403, - '{', 3109, - 0xb5, 4416, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 3302, + '0', 3383, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'N', 4391, + 'P', 4346, + 'T', 4346, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'd', 4362, + 'e', 4318, + 'f', 4361, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4382, + 'o', 4317, + 'p', 4345, + 's', 4367, + 't', 4344, + 'u', 4383, + 'w', 4370, + '{', 3099, + 0xb5, 4383, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 338: + case 331: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 3334, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 3302, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 339: + case 332: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 2928, - '-', 4366, - '.', 3324, - '0', 3416, - 'E', 4389, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4352, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 2919, + '-', 4333, + '.', 3293, + '0', 3383, + 'E', 4357, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4319, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + lookahead == 'i') ADVANCE(4398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 340: + case 333: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4367, - ',', 3548, - '-', 4366, - '.', 4357, - '0', 3416, - 'N', 4424, - '[', 2924, - ']', 2925, - '_', 4393, - '`', 634, - 'e', 4349, - 'f', 4394, - 'n', 4420, - 'o', 4350, - 't', 4411, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4431, - 'i', 4431, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4334, + ',', 3515, + '-', 4333, + '.', 4324, + '0', 3383, + 'N', 4391, + '[', 2915, + ']', 2916, + '_', 4353, + '`', 624, + 'e', 4316, + 'f', 4361, + 'n', 4387, + 'o', 4317, + 't', 4378, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4398, + 'i', 4398, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 341: + case 334: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 3562, - '-', 2992, - '.', 1350, - '0', 3417, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1721, - 'b', 1770, - 'c', 1614, - 'd', 1654, - 'e', 1730, - 'f', 1615, - 'h', 1700, - 'i', 1598, - 'l', 1668, - 'm', 1617, - 'n', 1656, - 'o', 1842, - 'r', 1657, - 's', 1746, - 't', 1765, - 'u', 1796, - 'w', 1695, - '}', 3110, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 3529, + '-', 2983, + '.', 1341, + '0', 3384, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1712, + 'b', 1761, + 'c', 1605, + 'd', 1645, + 'e', 1721, + 'f', 1606, + 'h', 1691, + 'i', 1589, + 'l', 1659, + 'm', 1608, + 'n', 1647, + 'o', 1833, + 'r', 1648, + 's', 1737, + 't', 1756, + 'u', 1787, + 'w', 1686, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(334); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 342: + case 335: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - '(', 2926, - '+', 4270, - ',', 2928, - '-', 4269, - '.', 4264, - '0', 3412, - 'N', 4319, - '[', 2924, - ']', 2925, - '_', 4286, - '`', 634, - 'e', 4256, - 'f', 4299, - 'n', 4316, - 'o', 4257, - 't', 4309, - '{', 3109, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + '(', 2917, + '+', 4237, + ',', 2919, + '-', 4236, + '.', 4231, + '0', 3379, + 'N', 4286, + '[', 2915, + ']', 2916, + '_', 4253, + '`', 624, + 'e', 4223, + 'f', 4266, + 'n', 4283, + 'o', 4224, + 't', 4276, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(342); + lookahead == ' ') SKIP(335); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4325); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + lookahead == 'i') ADVANCE(4292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); END_STATE(); - case 343: + case 336: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - ',', 2928, - '-', 2970, - '.', 3316, - ':', 3553, - ';', 3565, - '=', 3694, - '>', 2958, - '?', 3201, - '`', 634, - '{', 3109, - '\t', 344, - ' ', 344, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + ',', 2919, + '-', 2961, + '.', 3283, + ':', 3520, + ';', 3532, + '=', 3661, + '>', 2949, + '?', 3189, + '`', 624, + '{', 3099, + '\t', 337, + ' ', 337, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(585); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(577); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -24088,26 +23839,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 344: + case 337: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '$', 2929, - '\'', 525, - ',', 2928, - '-', 2970, - ':', 3553, - ';', 3565, - '>', 2958, - '?', 3201, - '`', 634, - '{', 3109, - '\t', 344, - ' ', 344, + '"', 3491, + '#', 4789, + '$', 2920, + '\'', 517, + ',', 2919, + '-', 2961, + ':', 3520, + ';', 3532, + '>', 2949, + '?', 3189, + '`', 624, + '{', 3099, + '\t', 337, + ' ', 337, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(585); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(577); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -24115,1004 +23866,986 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 345: + case 338: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - ',', 3548, - '-', 573, - '.', 1602, - 'I', 1870, - 'N', 1865, - ']', 2925, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + ',', 3515, + '-', 565, + '.', 1593, + 'I', 1861, + 'N', 1856, + ']', 2916, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '\t', 3516, + ' ', 3516, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 346: + case 339: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 556, - '.', 3342, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 548, + '.', 3309, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); + lookahead == ' ') SKIP(343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 347: + case 340: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 556, - '.', 3342, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 548, + '.', 3309, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); + lookahead == ' ') SKIP(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 348: + case 341: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 556, - '.', 1602, - ':', 3553, - ';', 3565, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '\t', 348, - ' ', 348, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 548, + '.', 1593, + ':', 3520, + ';', 3532, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '\t', 341, + ' ', 341, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 349: + case 342: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 556, - '.', 1602, - '=', 3694, - 'I', 2817, - 'N', 2809, - '_', 2685, - '`', 634, - 'a', 2740, - 'b', 2769, - 'c', 2697, - 'd', 2706, - 'e', 2743, - 'f', 2692, - 'h', 2731, - 'i', 2680, - 'l', 2713, - 'm', 2694, - 'n', 2707, - 'o', 2801, - 'r', 2708, - 's', 2756, - 't', 2764, - 'u', 2779, - 'w', 2728, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 548, + '.', 1593, + '=', 3661, + 'I', 2808, + 'N', 2800, + '_', 2676, + '`', 624, + 'a', 2731, + 'b', 2760, + 'c', 2688, + 'd', 2697, + 'e', 2734, + 'f', 2683, + 'h', 2722, + 'i', 2671, + 'l', 2704, + 'm', 2685, + 'n', 2698, + 'o', 2792, + 'r', 2699, + 's', 2747, + 't', 2755, + 'u', 2770, + 'w', 2719, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + lookahead == ' ') SKIP(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1884); + (lookahead < ']' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 350: + case 343: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 556, - '.', 1602, - '?', 3201, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 548, + '.', 1593, + '?', 3189, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); + lookahead == ' ') SKIP(343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 351: + case 344: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 556, - '.', 1602, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 548, + '.', 1593, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); + lookahead == ' ') SKIP(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 352: + case 345: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 3907, - '.', 1602, - 'I', 1870, - 'N', 1865, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 3874, + '.', 1593, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); + lookahead == ' ') SKIP(344); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 353: + case 346: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 3907, - '.', 1351, - 'B', 3462, - 'E', 1591, - 'G', 1596, - 'I', 1870, - 'K', 1596, - 'M', 1596, - 'N', 1865, - 'P', 1596, - 'T', 1596, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 3464, - 'c', 1629, - 'd', 1624, - 'e', 1590, - 'f', 1616, - 'g', 1595, - 'h', 1707, - 'i', 1597, - 'k', 1595, - 'l', 1680, - 'm', 1592, - 'n', 1673, - 'o', 1843, - 'p', 1595, - 'r', 1685, - 's', 1675, - 't', 1594, - 'u', 1794, - 'w', 1698, - 0xb5, 1793, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 3874, + '.', 1342, + 'B', 3429, + 'E', 1582, + 'G', 1587, + 'I', 1861, + 'K', 1587, + 'M', 1587, + 'N', 1856, + 'P', 1587, + 'T', 1587, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 3431, + 'c', 1620, + 'd', 1615, + 'e', 1581, + 'f', 1607, + 'g', 1586, + 'h', 1698, + 'i', 1588, + 'k', 1586, + 'l', 1671, + 'm', 1583, + 'n', 1664, + 'o', 1834, + 'p', 1586, + 'r', 1676, + 's', 1666, + 't', 1585, + 'u', 1785, + 'w', 1689, + 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); + lookahead == ' ') SKIP(344); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 354: + case 347: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 3907, - '.', 1351, - 'B', 3462, - 'E', 1591, - 'G', 1596, - 'I', 1870, - 'K', 1596, - 'M', 1596, - 'N', 1865, - 'P', 1596, - 'T', 1596, - '_', 1610, - '`', 634, - 'a', 1731, - 'b', 3464, - 'c', 1629, - 'd', 1624, - 'e', 1590, - 'f', 1616, - 'g', 1595, - 'h', 1707, - 'i', 1597, - 'k', 1595, - 'l', 1680, - 'm', 1592, - 'n', 1673, - 'o', 1843, - 'p', 1595, - 'r', 1685, - 's', 1675, - 't', 1594, - 'u', 1794, - 'w', 1698, - 0xb5, 1793, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 3874, + '.', 1342, + 'B', 3429, + 'E', 1582, + 'G', 1587, + 'I', 1861, + 'K', 1587, + 'M', 1587, + 'N', 1856, + 'P', 1587, + 'T', 1587, + '_', 1601, + '`', 624, + 'a', 1722, + 'b', 3431, + 'c', 1620, + 'd', 1615, + 'e', 1581, + 'f', 1607, + 'g', 1586, + 'h', 1698, + 'i', 1588, + 'k', 1586, + 'l', 1671, + 'm', 1583, + 'n', 1664, + 'o', 1834, + 'p', 1586, + 'r', 1676, + 's', 1666, + 't', 1585, + 'u', 1785, + 'w', 1689, + 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); + lookahead == ' ') SKIP(344); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == '^') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 355: + case 348: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 3907, - '.', 1351, - 'B', 3462, - 'E', 1596, - 'G', 1596, - 'I', 1870, - 'K', 1596, - 'M', 1596, - 'N', 1865, - 'P', 1596, - 'T', 1596, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 3464, - 'c', 1629, - 'd', 1624, - 'e', 1593, - 'f', 1616, - 'g', 1595, - 'h', 1707, - 'i', 1597, - 'k', 1595, - 'l', 1680, - 'm', 1592, - 'n', 1673, - 'o', 1843, - 'p', 1595, - 'r', 1685, - 's', 1675, - 't', 1594, - 'u', 1794, - 'w', 1698, - 0xb5, 1793, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 3874, + '.', 1342, + 'B', 3429, + 'E', 1587, + 'G', 1587, + 'I', 1861, + 'K', 1587, + 'M', 1587, + 'N', 1856, + 'P', 1587, + 'T', 1587, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 3431, + 'c', 1620, + 'd', 1615, + 'e', 1584, + 'f', 1607, + 'g', 1586, + 'h', 1698, + 'i', 1588, + 'k', 1586, + 'l', 1671, + 'm', 1583, + 'n', 1664, + 'o', 1834, + 'p', 1586, + 'r', 1676, + 's', 1666, + 't', 1585, + 'u', 1785, + 'w', 1689, + 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); + lookahead == ' ') SKIP(344); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 356: + case 349: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - '+', 1346, - '-', 3907, - '.', 3331, - 'B', 3462, - 'E', 1591, - 'G', 1596, - 'I', 1870, - 'K', 1596, - 'M', 1596, - 'N', 1865, - 'P', 1596, - 'T', 1596, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 3464, - 'c', 1629, - 'd', 1624, - 'e', 1590, - 'f', 1616, - 'g', 1595, - 'h', 1707, - 'i', 1597, - 'k', 1595, - 'l', 1680, - 'm', 1592, - 'n', 1673, - 'o', 1843, - 'p', 1595, - 'r', 1685, - 's', 1675, - 't', 1594, - 'u', 1794, - 'w', 1698, - 0xb5, 1793, + '"', 3491, + '#', 4789, + '\'', 517, + '+', 1337, + '-', 3874, + '.', 3298, + 'B', 3429, + 'E', 1582, + 'G', 1587, + 'I', 1861, + 'K', 1587, + 'M', 1587, + 'N', 1856, + 'P', 1587, + 'T', 1587, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 3431, + 'c', 1620, + 'd', 1615, + 'e', 1581, + 'f', 1607, + 'g', 1586, + 'h', 1698, + 'i', 1588, + 'k', 1586, + 'l', 1671, + 'm', 1583, + 'n', 1664, + 'o', 1834, + 'p', 1586, + 'r', 1676, + 's', 1666, + 't', 1585, + 'u', 1785, + 'w', 1689, + 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); + lookahead == ' ') SKIP(344); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == '^') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 357: + case 350: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - ',', 2928, - '-', 611, - '<', 2956, - '=', 1082, - '>', 2958, - '@', 2960, - '`', 634, - '{', 3109, + '"', 3491, + '#', 4789, + '\'', 517, + ',', 2919, + '-', 603, + '<', 2947, + '=', 1073, + '>', 2949, + '@', 2951, + '`', 624, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(358); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(351); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 358: + case 351: ADVANCE_MAP( - '"', 3524, - '#', 4822, - '\'', 525, - ',', 2928, - '-', 611, - '=', 1082, - '>', 2958, - '`', 634, - '{', 3109, + '"', 3491, + '#', 4789, + '\'', 517, + ',', 2919, + '-', 603, + '=', 1073, + '>', 2949, + '`', 624, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(358); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(351); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 359: - if (lookahead == '"') ADVANCE(3524); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '\'') ADVANCE(525); - if (lookahead == '`') ADVANCE(634); + case 352: + if (lookahead == '"') ADVANCE(3491); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '\'') ADVANCE(517); + if (lookahead == '`') ADVANCE(624); if (lookahead == '\t' || - lookahead == ' ') SKIP(359); + lookahead == ' ') SKIP(352); END_STATE(); - case 360: - if (lookahead == '"') ADVANCE(3524); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '\'') ADVANCE(3566); - if (lookahead == '`') ADVANCE(3625); + case 353: + if (lookahead == '"') ADVANCE(3491); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '\'') ADVANCE(3533); + if (lookahead == '`') ADVANCE(3592); if (lookahead == '\t' || - lookahead == ' ') SKIP(359); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3634); + lookahead == ' ') SKIP(352); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3601); END_STATE(); - case 361: + case 354: ADVANCE_MAP( - '"', 3524, - '#', 4826, - '$', 2933, - '\'', 525, - '(', 3232, - '+', 3560, - ',', 1884, - '-', 2990, - '.', 4694, - '0', 4697, - 'I', 4803, - 'N', 4795, - '_', 4699, - '`', 634, - 'a', 4745, - 'b', 4766, - 'c', 4703, - 'd', 4714, - 'e', 4750, - 'f', 4704, - 'h', 4737, - 'i', 4696, - 'l', 4727, - 'm', 4705, - 'n', 4715, - 'o', 4792, - 'r', 4716, - 's', 4756, - 't', 4762, - 'u', 4774, - 'w', 4736, - '}', 3110, + '"', 3491, + '#', 4793, + '$', 2924, + '\'', 517, + '(', 3220, + '+', 3527, + ',', 1875, + '-', 2981, + '.', 4661, + '0', 4664, + 'I', 4770, + 'N', 4762, + '_', 4666, + '`', 624, + 'a', 4712, + 'b', 4733, + 'c', 4670, + 'd', 4681, + 'e', 4717, + 'f', 4671, + 'h', 4704, + 'i', 4663, + 'l', 4694, + 'm', 4672, + 'n', 4682, + 'o', 4759, + 'r', 4683, + 's', 4723, + 't', 4729, + 'u', 4741, + 'w', 4703, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(282); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4815); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4699); + lookahead == '^') ADVANCE(4782); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4814); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4781); END_STATE(); - case 362: + case 355: ADVANCE_MAP( - '"', 3524, - '#', 4826, - '$', 2933, - '\'', 525, - '(', 3232, - '+', 3560, - ',', 3548, - '-', 2990, - '.', 4694, - '0', 4697, - 'I', 4803, - 'N', 4795, - '_', 4699, - '`', 634, - 'a', 4745, - 'b', 4766, - 'c', 4703, - 'd', 4714, - 'e', 4750, - 'f', 4704, - 'h', 4737, - 'i', 4696, - 'l', 4727, - 'm', 4705, - 'n', 4715, - 'o', 4792, - 'r', 4716, - 's', 4756, - 't', 4762, - 'u', 4774, - 'w', 4736, - '}', 3110, - '\t', 3549, - ' ', 3549, + '"', 3491, + '#', 4793, + '$', 2924, + '\'', 517, + '(', 3220, + '+', 3527, + ',', 3515, + '-', 2981, + '.', 4661, + '0', 4664, + 'I', 4770, + 'N', 4762, + '_', 4666, + '`', 624, + 'a', 4712, + 'b', 4733, + 'c', 4670, + 'd', 4681, + 'e', 4717, + 'f', 4671, + 'h', 4704, + 'i', 4663, + 'l', 4694, + 'm', 4672, + 'n', 4682, + 'o', 4759, + 'r', 4683, + 's', 4723, + 't', 4729, + 'u', 4741, + 'w', 4703, + '}', 3100, + '\t', 3516, + ' ', 3516, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4815); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4699); + lookahead == '^') ADVANCE(4782); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4666); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4814); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4781); END_STATE(); - case 363: + case 356: ADVANCE_MAP( - '"', 3524, - '#', 4829, - '$', 2931, - '\'', 525, - '(', 2926, - '+', 4058, - '-', 2991, - '.', 4059, - '0', 4077, - 'N', 4215, - '[', 2924, - '_', 4079, - '`', 634, - 'f', 4089, - 'n', 4152, - 't', 4160, - '{', 3109, + '"', 3491, + '#', 4796, + '$', 2922, + '\'', 517, + '(', 2917, + '+', 4025, + '-', 2982, + '.', 4026, + '0', 4044, + 'N', 4182, + '[', 2915, + '_', 4046, + '`', 624, + 'f', 4056, + 'n', 4119, + 't', 4127, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(200); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4224); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4082); + lookahead == 'i') ADVANCE(4191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4049); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4254); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4221); END_STATE(); - case 364: + case 357: ADVANCE_MAP( - '"', 3524, - '#', 4829, - '\'', 525, - '+', 4060, - '-', 4054, - '.', 4084, - 'I', 4226, - 'N', 4216, - '_', 4088, - '`', 634, - 'a', 4136, - 'b', 4165, - 'c', 4090, - 'd', 4104, - 'e', 4134, - 'f', 4091, - 'h', 4125, - 'i', 4075, - 'l', 4111, - 'm', 4092, - 'n', 4105, - 'o', 4203, - 'r', 4106, - 's', 4149, - 't', 4163, - 'u', 4181, - 'w', 4124, + '"', 3491, + '#', 4796, + '\'', 517, + '+', 4027, + '-', 4021, + '.', 4051, + 'I', 4193, + 'N', 4183, + '_', 4055, + '`', 624, + 'a', 4103, + 'b', 4132, + 'c', 4057, + 'd', 4071, + 'e', 4101, + 'f', 4058, + 'h', 4092, + 'i', 4042, + 'l', 4078, + 'm', 4059, + 'n', 4072, + 'o', 4170, + 'r', 4073, + 's', 4116, + 't', 4130, + 'u', 4148, + 'w', 4091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(351); + lookahead == ' ') SKIP(344); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + lookahead == '^') ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4234); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4201); END_STATE(); - case 365: + case 358: ADVANCE_MAP( - '"', 3524, - '#', 4828, - '$', 2934, - '\'', 525, - '(', 3232, - '+', 4470, - ',', 3548, - '-', 4469, - '.', 4471, - '0', 4484, - 'N', 4513, - '[', 2924, - ']', 2925, - '_', 4486, - '`', 634, - 'e', 4463, - 'f', 4492, - 'n', 4509, - 'o', 4464, - 't', 4502, - '{', 3109, - '\t', 3549, - ' ', 3549, - 'I', 4518, - 'i', 4518, + '"', 3491, + '#', 4795, + '$', 2925, + '\'', 517, + '(', 3220, + '+', 4437, + ',', 3515, + '-', 4436, + '.', 4438, + '0', 4451, + 'N', 4480, + '[', 2915, + ']', 2916, + '_', 4453, + '`', 624, + 'e', 4430, + 'f', 4459, + 'n', 4476, + 'o', 4431, + 't', 4469, + '{', 3099, + '\t', 3516, + ' ', 3516, + 'I', 4485, + 'i', 4485, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4489); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4456); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4541); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4508); END_STATE(); - case 366: + case 359: ADVANCE_MAP( - '"', 3524, - '#', 4828, - '$', 2934, - '\'', 525, - '(', 2926, - '+', 4470, - ',', 2928, - '-', 4469, - '.', 4471, - '0', 4484, - 'N', 4513, - '[', 2924, - ']', 2925, - '_', 4486, - '`', 634, - 'e', 4463, - 'f', 4492, - 'n', 4509, - 'o', 4464, - 't', 4502, - '{', 3109, + '"', 3491, + '#', 4795, + '$', 2925, + '\'', 517, + '(', 2917, + '+', 4437, + ',', 2919, + '-', 4436, + '.', 4438, + '0', 4451, + 'N', 4480, + '[', 2915, + ']', 2916, + '_', 4453, + '`', 624, + 'e', 4430, + 'f', 4459, + 'n', 4476, + 'o', 4431, + 't', 4469, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(295); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4518); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4489); + lookahead == 'i') ADVANCE(4485); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4456); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4541); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4508); END_STATE(); - case 367: - if (lookahead == '"') ADVANCE(3524); - if (lookahead == '#') ADVANCE(3527); - if (lookahead == '\\') ADVANCE(850); + case 360: + if (lookahead == '"') ADVANCE(3491); + if (lookahead == '#') ADVANCE(3494); + if (lookahead == '\\') ADVANCE(838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3526); - if (lookahead != 0) ADVANCE(3527); + lookahead == ' ') ADVANCE(3493); + if (lookahead != 0) ADVANCE(3494); END_STATE(); - case 368: - if (lookahead == '"') ADVANCE(3525); - if (lookahead == '#') ADVANCE(4832); - if (lookahead == '$') ADVANCE(2932); - if (lookahead == '\'') ADVANCE(3766); - if (lookahead == '(') ADVANCE(2926); - if (lookahead == '`') ADVANCE(3767); + case 361: + if (lookahead == '"') ADVANCE(3492); + if (lookahead == '#') ADVANCE(4799); + if (lookahead == '$') ADVANCE(2923); + if (lookahead == '\'') ADVANCE(3733); + if (lookahead == '(') ADVANCE(2917); + if (lookahead == '`') ADVANCE(3734); if (lookahead == '\t' || - lookahead == ' ') SKIP(368); + lookahead == ' ') SKIP(361); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 369: - if (lookahead == '"') ADVANCE(3544); - if (lookahead == '#') ADVANCE(3535); - if (lookahead == '(') ADVANCE(2926); - if (lookahead == '\\') ADVANCE(844); + case 362: + if (lookahead == '"') ADVANCE(3511); + if (lookahead == '#') ADVANCE(3502); + if (lookahead == '(') ADVANCE(2917); + if (lookahead == '\\') ADVANCE(832); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3534); - if (lookahead != 0) ADVANCE(3535); + lookahead == ' ') ADVANCE(3501); + if (lookahead != 0) ADVANCE(3502); END_STATE(); - case 370: - ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 3346, - '[', 3484, - '_', 3117, - '}', 3110, - '\t', 3552, - ' ', 3552, - '+', 579, - '-', 579, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - END_STATE(); - case 371: + case 363: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 3935, - '=', 3922, - '_', 3933, - 'i', 3959, - '|', 2880, + '#', 4789, + '$', 2920, + '(', 3220, + '.', 3902, + '=', 3889, + '_', 3900, + 'i', 3926, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(396); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 372: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '|') ADVANCE(2880); + case 364: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3902); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(397); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 373: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '{') ADVANCE(3109); + case 365: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3902); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(399); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 374: + case 366: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 3343, - '=', 3922, - '_', 3933, - 'i', 3959, - '|', 2880, + '#', 4789, + '$', 2920, + '(', 3220, + '.', 3310, + '=', 3889, + '_', 3900, + 'i', 3926, + '|', 2871, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(396); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 375: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3343); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '|') ADVANCE(2880); + case 367: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3310); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(397); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 376: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3343); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '{') ADVANCE(3109); + case 368: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3310); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(399); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 377: + case 369: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 4383, - ']', 2925, - '_', 4381, - '\t', 3552, - ' ', 3552, - '+', 4364, - '-', 4364, + '#', 4789, + '$', 2920, + '(', 3220, + '.', 4350, + ']', 2916, + '_', 4348, + '\t', 3519, + ' ', 3519, + '+', 4331, + '-', 4331, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -25120,965 +24853,958 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 378: + case 370: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 4612, - '_', 4611, - '}', 3110, - '\t', 3552, - ' ', 3552, - '+', 4603, - '-', 4603, + '#', 4789, + '$', 2920, + '(', 3220, + '.', 4579, + '_', 4578, + '}', 3100, + '\t', 3519, + ' ', 3519, + '+', 4570, + '-', 4570, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4600); END_STATE(); - case 379: + case 371: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 3345, - ']', 2925, - '_', 4611, - '}', 3110, - '\t', 3552, - ' ', 3552, - '+', 4603, - '-', 4603, + '#', 4789, + '$', 2920, + '(', 3220, + '.', 3311, + ']', 2916, + '_', 4348, + '}', 3100, + '\t', 3519, + ' ', 3519, + '+', 4331, + '-', 4331, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + lookahead != ';' && lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4633); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 380: + case 372: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 3232, - '.', 3344, - ']', 2925, - '_', 4381, - '\t', 3552, - ' ', 3552, - '+', 4364, - '-', 4364, + '#', 4789, + '$', 2920, + '(', 3220, + '.', 3312, + '_', 4578, + '}', 3100, + '\t', 3519, + ' ', 3519, + '+', 4570, + '-', 4570, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4600); END_STATE(); - case 381: + case 373: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 2926, - '-', 2969, - '=', 3694, - 'f', 639, - 'i', 735, - 'n', 758, - 't', 779, + '#', 4789, + '$', 2920, + '(', 2917, + '-', 2960, + '=', 3661, + 'f', 628, + 'i', 725, + 'n', 747, + 't', 768, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(382); + lookahead == ' ') SKIP(374); END_STATE(); - case 382: + case 374: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '(', 2926, - '-', 2969, - 'f', 639, - 'i', 735, - 'n', 758, - 't', 779, + '#', 4789, + '$', 2920, + '(', 2917, + '-', 2960, + 'f', 628, + 'i', 725, + 'n', 747, + 't', 768, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(382); + lookahead == ' ') SKIP(374); END_STATE(); - case 383: + case 375: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3330, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3297, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); + lookahead == ' ') SKIP(385); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 384: + case 376: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3330, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3297, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 385: + case 377: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); + lookahead == ' ') SKIP(385); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 386: + case 378: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); + lookahead == ' ') SKIP(385); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 387: + case 379: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3912, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3879, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); + lookahead == ' ') SKIP(385); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 388: + case 380: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3912, - 'E', 2357, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2356, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3879, + 'E', 2348, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2347, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 389: + case 381: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3912, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - '_', 2363, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3879, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + '_', 2354, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 390: + case 382: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '-', 2970, - '.', 3912, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '-', 2961, + '.', 3879, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(389); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 391: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); - if (lookahead == '=') ADVANCE(3694); - if (lookahead == '{') ADVANCE(3109); + case 383: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + lookahead == ' ') SKIP(385); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); END_STATE(); - case 392: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); - if (lookahead == '=') ADVANCE(3694); + case 384: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); + if (lookahead == '=') ADVANCE(3661); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2808); + lookahead == ' ') SKIP(389); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2799); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2661); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 393: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); - if (lookahead == '{') ADVANCE(3109); + case 385: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); + lookahead == ' ') SKIP(385); END_STATE(); - case 394: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); - if (lookahead == '{') ADVANCE(3109); + case 386: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 395: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); - if (lookahead == '{') ADVANCE(3109); + case 387: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(387); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 396: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); + case 388: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(389); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 397: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2970); + case 389: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2961); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(389); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 398: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2981); - if (lookahead == '=') ADVANCE(3694); - if (lookahead == '{') ADVANCE(3109); + case 390: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2972); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == ' ') SKIP(385); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 399: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '-') ADVANCE(2981); - if (lookahead == '=') ADVANCE(3694); + case 391: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '-') ADVANCE(2972); + if (lookahead == '=') ADVANCE(3661); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(389); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(3765); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3748); + lookahead == '@') ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3715); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2661); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 400: + case 392: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '.', 3330, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '.', 3297, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 401: + case 393: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '.', 3912, - 'E', 2357, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2356, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '.', 3879, + 'E', 2348, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2347, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 402: + case 394: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '.', 3912, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - '_', 2363, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '.', 3879, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + '_', 2354, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 403: + case 395: ADVANCE_MAP( - '#', 4822, - '$', 2929, - '.', 3912, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '$', 2920, + '.', 3879, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 404: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '.') ADVANCE(631); - if (lookahead == '=') ADVANCE(610); - if (lookahead == 'i') ADVANCE(685); - if (lookahead == '|') ADVANCE(2880); + case 396: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '=') ADVANCE(602); + if (lookahead == 'i') ADVANCE(674); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(396); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 405: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '.') ADVANCE(631); - if (lookahead == '=') ADVANCE(610); - if (lookahead == '|') ADVANCE(2880); + case 397: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '=') ADVANCE(602); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(397); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 406: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '.') ADVANCE(631); - if (lookahead == ']') ADVANCE(2925); + case 398: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '.') ADVANCE(621); + if (lookahead == ']') ADVANCE(2916); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(398); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 407: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '.') ADVANCE(631); - if (lookahead == '{') ADVANCE(3109); + case 399: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(399); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 408: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '.') ADVANCE(631); + case 400: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '.') ADVANCE(621); if (lookahead == '\t' || - lookahead == ' ') SKIP(408); + lookahead == ' ') SKIP(400); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 409: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '=') ADVANCE(3694); + case 401: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '=') ADVANCE(3661); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == '!' || lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(3765); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3748); + lookahead == '@') ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3715); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2661); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2652); END_STATE(); - case 410: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); + case 402: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 411: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); + case 403: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(403); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 412: + case 404: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '-', 2970, - '.', 3330, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 200, - ' ', 200, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '-', 2961, + '.', 3297, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 193, + ' ', 193, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 413: + case 405: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '-', 2970, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 200, - ' ', 200, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '-', 2961, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 193, + ' ', 193, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 414: + case 406: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '-', 2970, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 200, - ' ', 200, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '-', 2961, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 193, + ' ', 193, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 415: + case 407: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '-', 2970, - '.', 3912, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 200, - ' ', 200, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '-', 2961, + '.', 3879, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 193, + ' ', 193, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 416: + case 408: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3330, - '=', 3922, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 201, - ' ', 201, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3297, + '=', 3889, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 194, + ' ', 194, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 417: + case 409: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3330, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 202, - ' ', 202, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3297, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 195, + ' ', 195, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 418: + case 410: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3330, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'P', 4379, - 'T', 4379, - ']', 2925, - 'd', 4395, - 'e', 4375, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4416, - 'p', 4378, - 's', 4400, - 't', 4378, - 'u', 4416, - 'w', 4403, - '}', 3110, - 0xb5, 4416, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3297, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'P', 4346, + 'T', 4346, + ']', 2916, + 'd', 4362, + 'e', 4342, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4383, + 'p', 4345, + 's', 4367, + 't', 4345, + 'u', 4383, + 'w', 4370, + '}', 3100, + 0xb5, 4383, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26086,56 +25812,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 419: + case 411: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3330, - 'E', 4605, - 'G', 4607, - 'K', 4607, - 'M', 4607, - 'P', 4607, - 'T', 4607, - 'd', 4617, - 'e', 4604, - 'g', 4606, - 'h', 4623, - 'k', 4606, - 'm', 4608, - 'n', 4624, - 'p', 4606, - 's', 4620, - 't', 4606, - 'u', 4624, - 'w', 4621, - '}', 3110, - 0xb5, 4624, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3297, + 'E', 4572, + 'G', 4574, + 'K', 4574, + 'M', 4574, + 'P', 4574, + 'T', 4574, + 'd', 4584, + 'e', 4571, + 'g', 4573, + 'h', 4590, + 'k', 4573, + 'm', 4575, + 'n', 4591, + 'p', 4573, + 's', 4587, + 't', 4573, + 'u', 4591, + 'w', 4588, + '}', 3100, + 0xb5, 4591, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 420: + case 412: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3330, - ']', 2925, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4389, - 'e', 4389, + '#', 4789, + '(', 3220, + '.', 3297, + ']', 2916, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4357, + 'e', 4357, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26143,452 +25869,461 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 421: + case 413: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3330, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4615, - 'e', 4615, + '#', 4789, + '(', 3220, + '.', 3297, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4582, + 'e', 4582, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 422: + case 414: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3912, - '=', 3922, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 201, - ' ', 201, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3879, + '=', 3889, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 194, + ' ', 194, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 423: + case 415: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3912, - '=', 3922, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 201, - ' ', 201, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3879, + '=', 3889, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 194, + ' ', 194, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 424: + case 416: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3912, - '=', 3922, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, - '\t', 201, - ' ', 201, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3879, + '=', 3889, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, + '\t', 194, + ' ', 194, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 425: + case 417: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 202, - ' ', 202, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 195, + ' ', 195, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 426: + case 418: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 202, - ' ', 202, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 195, + ' ', 195, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 427: + case 419: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3912, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '{', 3109, - 0xb5, 3984, - '\t', 202, - ' ', 202, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 3879, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '{', 3099, + 0xb5, 3951, + '\t', 195, + ' ', 195, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 428: + case 420: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3316, - ']', 2925, - '\t', 3552, - ' ', 3552, - 'E', 4389, - 'e', 4389, + '#', 4789, + '(', 3220, + '.', 3283, + ']', 2916, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4582, + 'e', 4582, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ':' && lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); - END_STATE(); - case 429: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(3316); - if (lookahead == '{') ADVANCE(3109); - if (lookahead == '\t' || - lookahead == ' ') SKIP(503); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4600); END_STATE(); - case 430: + case 421: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 3316, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4615, - 'e', 4615, + '#', 4789, + '(', 3220, + '.', 3283, + ']', 2916, + '\t', 3519, + ' ', 3519, + 'E', 4357, + 'e', 4357, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 431: + case 422: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(3283); + if (lookahead == '{') ADVANCE(3099); + if (lookahead == '\t' || + lookahead == ' ') SKIP(495); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 423: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4602, - 'E', 4605, - 'G', 4607, - 'K', 4607, - 'M', 4607, - 'P', 4607, - 'T', 4607, - '_', 4611, - 'd', 4617, - 'e', 4604, - 'g', 4606, - 'h', 4623, - 'k', 4606, - 'm', 4608, - 'n', 4624, - 'p', 4606, - 's', 4620, - 't', 4606, - 'u', 4624, - 'w', 4621, - '}', 3110, - 0xb5, 4624, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 4569, + 'E', 4572, + 'G', 4574, + 'K', 4574, + 'M', 4574, + 'P', 4574, + 'T', 4574, + '_', 4578, + 'd', 4584, + 'e', 4571, + 'g', 4573, + 'h', 4590, + 'k', 4573, + 'm', 4575, + 'n', 4591, + 'p', 4573, + 's', 4587, + 't', 4573, + 'u', 4591, + 'w', 4588, + '}', 3100, + 0xb5, 4591, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 432: + case 424: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4602, - 'E', 4605, - 'G', 4607, - 'K', 4607, - 'M', 4607, - 'P', 4607, - 'T', 4607, - 'd', 4617, - 'e', 4604, - 'g', 4606, - 'h', 4623, - 'k', 4606, - 'm', 4608, - 'n', 4624, - 'p', 4606, - 's', 4620, - 't', 4606, - 'u', 4624, - 'w', 4621, - '}', 3110, - 0xb5, 4624, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 4569, + 'E', 4572, + 'G', 4574, + 'K', 4574, + 'M', 4574, + 'P', 4574, + 'T', 4574, + 'd', 4584, + 'e', 4571, + 'g', 4573, + 'h', 4590, + 'k', 4573, + 'm', 4575, + 'n', 4591, + 'p', 4573, + 's', 4587, + 't', 4573, + 'u', 4591, + 'w', 4588, + '}', 3100, + 0xb5, 4591, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 433: + case 425: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4602, - 'E', 4607, - 'G', 4607, - 'K', 4607, - 'M', 4607, - 'P', 4607, - 'T', 4607, - 'd', 4617, - 'e', 4606, - 'g', 4606, - 'h', 4623, - 'k', 4606, - 'm', 4608, - 'n', 4624, - 'p', 4606, - 's', 4620, - 't', 4606, - 'u', 4624, - 'w', 4621, - '}', 3110, - 0xb5, 4624, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 4569, + 'E', 4574, + 'G', 4574, + 'K', 4574, + 'M', 4574, + 'P', 4574, + 'T', 4574, + 'd', 4584, + 'e', 4573, + 'g', 4573, + 'h', 4590, + 'k', 4573, + 'm', 4575, + 'n', 4591, + 'p', 4573, + 's', 4587, + 't', 4573, + 'u', 4591, + 'w', 4588, + '}', 3100, + 0xb5, 4591, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 434: + case 426: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4602, - '_', 4611, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4615, - 'e', 4615, + '#', 4789, + '(', 3220, + '.', 4569, + '_', 4578, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4582, + 'e', 4582, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 435: + case 427: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4602, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4615, - 'e', 4615, + '#', 4789, + '(', 3220, + '.', 4569, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4582, + 'e', 4582, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 436: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(4602); - if (lookahead == '}') ADVANCE(3110); + case 428: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(4569); + if (lookahead == '}') ADVANCE(3100); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 437: + case 429: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4359, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'P', 4379, - 'T', 4379, - ']', 2925, - '_', 4381, - 'd', 4395, - 'e', 4375, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4416, - 'p', 4378, - 's', 4400, - 't', 4378, - 'u', 4416, - 'w', 4403, - '}', 3110, - 0xb5, 4416, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 4326, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'P', 4346, + 'T', 4346, + ']', 2916, + '_', 4348, + 'd', 4362, + 'e', 4342, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4383, + 'p', 4345, + 's', 4367, + 't', 4345, + 'u', 4383, + 'w', 4370, + '}', 3100, + 0xb5, 4383, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26597,41 +26332,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 438: + case 430: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4359, - 'E', 4376, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'P', 4379, - 'T', 4379, - ']', 2925, - 'd', 4395, - 'e', 4375, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4416, - 'p', 4378, - 's', 4400, - 't', 4378, - 'u', 4416, - 'w', 4403, - '}', 3110, - 0xb5, 4416, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 4326, + 'E', 4343, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'P', 4346, + 'T', 4346, + ']', 2916, + 'd', 4362, + 'e', 4342, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4383, + 'p', 4345, + 's', 4367, + 't', 4345, + 'u', 4383, + 'w', 4370, + '}', 3100, + 0xb5, 4383, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26639,41 +26374,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 439: + case 431: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4359, - 'E', 4379, - 'G', 4379, - 'K', 4379, - 'M', 4379, - 'P', 4379, - 'T', 4379, - ']', 2925, - 'd', 4395, - 'e', 4378, - 'g', 4378, - 'h', 4410, - 'k', 4378, - 'm', 4380, - 'n', 4416, - 'p', 4378, - 's', 4400, - 't', 4378, - 'u', 4416, - 'w', 4403, - '}', 3110, - 0xb5, 4416, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, + '#', 4789, + '(', 3220, + '.', 4326, + 'E', 4346, + 'G', 4346, + 'K', 4346, + 'M', 4346, + 'P', 4346, + 'T', 4346, + ']', 2916, + 'd', 4362, + 'e', 4345, + 'g', 4345, + 'h', 4377, + 'k', 4345, + 'm', 4347, + 'n', 4383, + 'p', 4345, + 's', 4367, + 't', 4345, + 'u', 4383, + 'w', 4370, + '}', 3100, + 0xb5, 4383, + '\t', 3519, + ' ', 3519, + 'B', 3429, + 'b', 3429, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26681,24 +26416,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 440: + case 432: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4359, - ']', 2925, - '_', 4381, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4389, - 'e', 4389, + '#', 4789, + '(', 3220, + '.', 4326, + ']', 2916, + '_', 4348, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4357, + 'e', 4357, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26707,22 +26442,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 441: + case 433: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '.', 4359, - ']', 2925, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4389, - 'e', 4389, + '#', 4789, + '(', 3220, + '.', 4326, + ']', 2916, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4357, + 'e', 4357, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26730,18 +26465,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 442: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(4359); - if (lookahead == ']') ADVANCE(2925); - if (lookahead == '}') ADVANCE(3110); + case 434: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(4326); + if (lookahead == ']') ADVANCE(2916); + if (lookahead == '}') ADVANCE(3100); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26749,22 +26484,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 443: + case 435: ADVANCE_MAP( - '#', 4822, - '(', 3232, - ']', 2925, - '_', 4381, - '\t', 3552, - ' ', 3552, - 'E', 4389, - 'e', 4389, + '#', 4789, + '(', 3220, + ']', 2916, + '_', 4348, + '\t', 3519, + ' ', 3519, + 'E', 4357, + 'e', 4357, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26773,18 +26508,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 444: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == ']') ADVANCE(2925); + case 436: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == ']') ADVANCE(2916); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4389); + lookahead == 'e') ADVANCE(4357); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26792,16 +26527,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 445: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == ']') ADVANCE(2925); + case 437: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == ']') ADVANCE(2916); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26809,1170 +26544,1140 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); END_STATE(); - case 446: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '{') ADVANCE(3109); + case 438: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(503); + lookahead == ' ') SKIP(495); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 447: + case 439: ADVANCE_MAP( - '#', 4822, - '(', 3232, - '_', 4611, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 4615, - 'e', 4615, + '#', 4789, + '(', 3220, + '_', 4578, + '}', 3100, + '\t', 3519, + ' ', 3519, + 'E', 4582, + 'e', 4582, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 448: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '{') ADVANCE(3109); + case 440: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(503); + lookahead == ' ') SKIP(495); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 449: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '}') ADVANCE(3110); + case 441: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '}') ADVANCE(3100); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4615); + lookahead == 'e') ADVANCE(4582); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 450: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '}') ADVANCE(3110); + case 442: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '}') ADVANCE(3100); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 451: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == ',') ADVANCE(2928); - if (lookahead == ']') ADVANCE(2925); + case 443: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == ',') ADVANCE(2919); + if (lookahead == ']') ADVANCE(2916); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3485); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); END_STATE(); - case 452: + case 444: ADVANCE_MAP( - '#', 4822, - ',', 3548, - '.', 3316, - ';', 3565, - '?', 3201, - ']', 2925, - '\t', 3550, - ' ', 3550, + '#', 4789, + ',', 3515, + '.', 3283, + ';', 3532, + '?', 3189, + ']', 2916, + '\t', 3517, + ' ', 3517, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3551); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3518); END_STATE(); - case 453: + case 445: ADVANCE_MAP( - '#', 4822, - '-', 2970, - '.', 3330, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '-', 2961, + '.', 3297, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); + lookahead == ' ') SKIP(451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 454: + case 446: ADVANCE_MAP( - '#', 4822, - '-', 2970, - '.', 3912, - 'E', 2357, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2356, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '-', 2961, + '.', 3879, + 'E', 2348, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2347, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); + lookahead == ' ') SKIP(451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 455: + case 447: ADVANCE_MAP( - '#', 4822, - '-', 2970, - '.', 3912, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - '_', 2363, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '-', 2961, + '.', 3879, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + '_', 2354, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); + lookahead == ' ') SKIP(451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 456: + case 448: ADVANCE_MAP( - '#', 4822, - '-', 2970, - '.', 3912, - 'E', 2314, - 'G', 2357, - 'K', 2357, - 'M', 2357, - 'P', 2357, - 'T', 2357, - 'd', 2380, - 'e', 2313, - 'g', 2356, - 'h', 2536, - 'k', 2356, - 'm', 2358, - 'n', 2576, - 'p', 2356, - 's', 2409, - 't', 2356, - 'u', 2576, - 'w', 2470, - 0xb5, 2576, + '#', 4789, + '-', 2961, + '.', 3879, + 'E', 2302, + 'G', 2348, + 'K', 2348, + 'M', 2348, + 'P', 2348, + 'T', 2348, + 'd', 2371, + 'e', 2301, + 'g', 2347, + 'h', 2527, + 'k', 2347, + 'm', 2349, + 'n', 2567, + 'p', 2347, + 's', 2400, + 't', 2347, + 'u', 2567, + 'w', 2461, + 0xb5, 2567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); + lookahead == ' ') SKIP(451); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); + lookahead == 'b') ADVANCE(3433); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 457: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '-') ADVANCE(2970); - if (lookahead == '{') ADVANCE(3109); + case 449: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '-') ADVANCE(2961); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') ADVANCE(193); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 458: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '-') ADVANCE(2970); + case 450: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '-') ADVANCE(2961); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); + lookahead == ' ') SKIP(451); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + lookahead == '^') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 459: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '-') ADVANCE(2970); + case 451: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '-') ADVANCE(2961); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(451); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 460: + case 452: ADVANCE_MAP( - '#', 4822, - '.', 3330, - '=', 3922, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'i', 3959, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, + '#', 4789, + '.', 3297, + '=', 3889, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'i', 3926, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 461: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3330); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 453: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3297); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 462: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3330); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '|') ADVANCE(2880); + case 454: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3297); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 463: - ADVANCE_MAP( - '#', 4822, - '.', 3330, - '?', 3201, - 'E', 617, - 'G', 619, - 'K', 619, - 'M', 619, - 'P', 619, - 'T', 619, - ']', 2925, - '_', 3117, - 'd', 637, - 'e', 616, - 'g', 618, - 'h', 773, - 'k', 618, - 'm', 620, - 'n', 796, - 'p', 618, - 's', 678, - 't', 618, - 'u', 796, - 'w', 719, - '}', 3110, - 0xb5, 796, - '\t', 3552, - ' ', 3552, - 'B', 3462, - 'b', 3462, - ); + case 455: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3297); + if (lookahead == '?') ADVANCE(3189); + if (lookahead == ']') ADVANCE(2916); + if (lookahead == '}') ADVANCE(3100); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ',') ADVANCE(3515); END_STATE(); - case 464: + case 456: ADVANCE_MAP( - '#', 4822, - '.', 3330, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'i', 3965, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, + '#', 4789, + '.', 3297, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'i', 3932, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); + lookahead == ' ') SKIP(493); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 465: + case 457: ADVANCE_MAP( - '#', 4822, - '.', 3912, - '=', 3922, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'i', 3959, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, + '#', 4789, + '.', 3879, + '=', 3889, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'i', 3926, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 466: + case 458: ADVANCE_MAP( - '#', 4822, - '.', 3912, - '=', 3922, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'i', 3959, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, + '#', 4789, + '.', 3879, + '=', 3889, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'i', 3926, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 467: + case 459: ADVANCE_MAP( - '#', 4822, - '.', 3912, - '=', 3922, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'i', 3959, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - 0xb5, 3984, + '#', 4789, + '.', 3879, + '=', 3889, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'i', 3926, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 468: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 460: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 469: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '|') ADVANCE(2880); + case 461: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 470: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 462: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 471: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 463: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(483); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 472: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '|') ADVANCE(2880); + case 464: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 473: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3912); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '|') ADVANCE(2880); + case 465: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3879); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 474: + case 466: ADVANCE_MAP( - '#', 4822, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'i', 3965, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, + '#', 4789, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'i', 3932, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); + lookahead == ' ') SKIP(493); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 475: + case 467: ADVANCE_MAP( - '#', 4822, - '.', 3912, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'i', 3965, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, + '#', 4789, + '.', 3879, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'i', 3932, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); + lookahead == ' ') SKIP(493); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 476: + case 468: ADVANCE_MAP( - '#', 4822, - '.', 3912, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'i', 3965, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 0xb5, 3984, + '#', 4789, + '.', 3879, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'i', 3932, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); + lookahead == ' ') SKIP(493); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 477: + case 469: ADVANCE_MAP( - '#', 4822, - '.', 3316, - ':', 3553, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2266, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - 0xb5, 2296, - '\t', 487, - ' ', 487, - 'B', 3462, - 'b', 3462, + '#', 4789, + '.', 3283, + ':', 3520, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2257, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + 0xb5, 2287, + '\t', 479, + ' ', 479, + 'B', 3429, + 'b', 3429, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 478: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3316); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 470: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3283); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 479: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3316); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '|') ADVANCE(2880); + case 471: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3283); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 480: - ADVANCE_MAP( - '#', 4822, - '.', 3316, - '?', 3201, - ']', 2925, - '_', 3113, - '}', 3110, - '\t', 3552, - ' ', 3552, - 'E', 628, - 'e', 628, - ); + case 472: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3283); + if (lookahead == '?') ADVANCE(3189); + if (lookahead == ']') ADVANCE(2916); + if (lookahead == '}') ADVANCE(3100); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); END_STATE(); - case 481: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(3933); + case 473: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3902); + if (lookahead == '_') ADVANCE(3900); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(475); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 482: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(3343); - if (lookahead == '_') ADVANCE(3933); + case 474: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(3310); + if (lookahead == '_') ADVANCE(3900); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(475); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 483: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(631); + case 475: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(621); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(475); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 484: + case 476: ADVANCE_MAP( - '#', 4822, - ':', 3553, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - '_', 2274, - 'd', 2275, - 'e', 2266, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - 0xb5, 2296, - '\t', 487, - ' ', 487, - 'B', 3462, - 'b', 3462, + '#', 4789, + ':', 3520, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + '_', 2265, + 'd', 2266, + 'e', 2257, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + 0xb5, 2287, + '\t', 479, + ' ', 479, + 'B', 3429, + 'b', 3429, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 485: + case 477: ADVANCE_MAP( - '#', 4822, - ':', 3553, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2266, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - 0xb5, 2296, - '\t', 487, - ' ', 487, - 'B', 3462, - 'b', 3462, + '#', 4789, + ':', 3520, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2257, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + 0xb5, 2287, + '\t', 479, + ' ', 479, + 'B', 3429, + 'b', 3429, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 486: + case 478: ADVANCE_MAP( - '#', 4822, - ':', 3553, - 'E', 2269, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2268, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - 0xb5, 2296, - '\t', 487, - ' ', 487, - 'B', 3462, - 'b', 3462, + '#', 4789, + ':', 3520, + 'E', 2260, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2259, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + 0xb5, 2287, + '\t', 479, + ' ', 479, + 'B', 3429, + 'b', 3429, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 487: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == ':') ADVANCE(3553); + case 479: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == ':') ADVANCE(3520); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(487); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + lookahead == ' ') ADVANCE(479); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); END_STATE(); - case 488: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(3727); + case 480: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == 'i') ADVANCE(3694); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == ' ') SKIP(493); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 489: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(2748); + case 481: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == 'i') ADVANCE(2739); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + lookahead == ' ') SKIP(493); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); END_STATE(); - case 490: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3694); - if (lookahead == '{') ADVANCE(3109); + case 482: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3661); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(503); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == ' ') SKIP(495); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 491: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(610); - if (lookahead == 'i') ADVANCE(685); - if (lookahead == '|') ADVANCE(2880); + case 483: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(602); + if (lookahead == 'i') ADVANCE(674); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); END_STATE(); - case 492: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(610); - if (lookahead == '|') ADVANCE(2880); + case 484: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(602); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); END_STATE(); - case 493: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 485: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 494: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '_') ADVANCE(3933); - if (lookahead == '|') ADVANCE(2880); + case 486: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 495: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 487: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); + lookahead == ' ') SKIP(483); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 496: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == 'i') ADVANCE(3959); - if (lookahead == '|') ADVANCE(2880); + case 488: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == 'i') ADVANCE(3926); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(483); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 497: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '|') ADVANCE(2880); + case 489: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') ADVANCE(194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 498: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '=') ADVANCE(3922); - if (lookahead == '|') ADVANCE(2880); + case 490: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '=') ADVANCE(3889); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(492); + lookahead == ' ') SKIP(484); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'e') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 499: + case 491: ADVANCE_MAP( - '#', 4822, - ']', 2925, - 'c', 2450, - 'e', 2569, - 'f', 2636, - 'i', 2499, - 'l', 2467, - 'o', 2509, - 'v', 2388, - '\t', 3552, - ' ', 3552, + '#', 4789, + ']', 2916, + 'c', 2441, + 'e', 2560, + 'f', 2627, + 'i', 2490, + 'l', 2458, + 'o', 2500, + 'v', 2379, + '\t', 3519, + ' ', 3519, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 500: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == 'i') ADVANCE(3965); + case 492: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == 'i') ADVANCE(3932); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(493); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 501: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == 'i') ADVANCE(735); + case 493: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == 'i') ADVANCE(725); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); + lookahead == ' ') SKIP(493); END_STATE(); - case 502: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == 'i') ADVANCE(2507); + case 494: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == 'i') ADVANCE(2498); if (lookahead == '\t' || - lookahead == ' ') SKIP(502); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); + lookahead == ' ') SKIP(494); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); - case 503: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '{') ADVANCE(3109); + case 495: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(503); + lookahead == ' ') SKIP(495); END_STATE(); - case 504: - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '{') ADVANCE(3109); + case 496: + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') ADVANCE(195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 505: - if (lookahead == '#') ADVANCE(4822); + case 497: + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); + lookahead == ' ') SKIP(497); END_STATE(); - case 506: - if (lookahead == '#') ADVANCE(4822); + case 498: + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2995); + lookahead == ' ') SKIP(497); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2986); END_STATE(); - case 507: - if (lookahead == '#') ADVANCE(4822); + case 499: + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3636); + lookahead == ' ') SKIP(497); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3603); END_STATE(); - case 508: - if (lookahead == '#') ADVANCE(4822); + case 500: + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + lookahead == ' ') SKIP(497); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 509: - if (lookahead == '#') ADVANCE(4822); + case 501: + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + lookahead == ' ') SKIP(497); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); - case 510: - if (lookahead == '#') ADVANCE(4822); + case 502: + if (lookahead == '#') ADVANCE(4789); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + lookahead == ' ') SKIP(497); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); - case 511: - if (lookahead == '#') ADVANCE(4826); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '}') ADVANCE(3110); + case 503: + if (lookahead == '#') ADVANCE(4793); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '}') ADVANCE(3100); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == ',') ADVANCE(3515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 512: - if (lookahead == '#') ADVANCE(4826); - if (lookahead == '(') ADVANCE(3232); + case 504: + if (lookahead == '#') ADVANCE(4793); + if (lookahead == '(') ADVANCE(3220); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == ' ') SKIP(497); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 513: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '$') ADVANCE(2935); - if (lookahead == '-') ADVANCE(2983); - if (lookahead == '{') ADVANCE(3109); + case 505: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '$') ADVANCE(2926); + if (lookahead == '-') ADVANCE(2974); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); + lookahead == ' ') SKIP(387); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4254); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4238); + lookahead == '^') ADVANCE(4221); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4205); END_STATE(); - case 514: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '$') ADVANCE(2935); + case 506: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '$') ADVANCE(2926); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(403); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4254); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4238); + lookahead == '^') ADVANCE(4221); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4205); END_STATE(); - case 515: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '-') ADVANCE(2983); - if (lookahead == '{') ADVANCE(3109); + case 507: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '-') ADVANCE(2974); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == ' ') ADVANCE(193); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 516: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '=') ADVANCE(4070); - if (lookahead == '|') ADVANCE(2880); + case 508: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '=') ADVANCE(4037); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == ' ') ADVANCE(194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 517: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '{') ADVANCE(3109); + case 509: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '{') ADVANCE(3099); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == ' ') ADVANCE(195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 518: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '-') ADVANCE(2983); + case 510: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '-') ADVANCE(2974); if (lookahead == '\t' || - lookahead == ' ') SKIP(459); + lookahead == ' ') SKIP(451); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4254); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4238); + lookahead == '^') ADVANCE(4221); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4205); END_STATE(); - case 519: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == '=') ADVANCE(4070); - if (lookahead == 'i') ADVANCE(4121); - if (lookahead == '|') ADVANCE(2880); + case 511: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == '=') ADVANCE(4037); + if (lookahead == 'i') ADVANCE(4088); + if (lookahead == '|') ADVANCE(2871); if (lookahead == '\t' || - lookahead == ' ') SKIP(491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == ' ') SKIP(483); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 520: - if (lookahead == '#') ADVANCE(4829); - if (lookahead == 'i') ADVANCE(4145); + case 512: + if (lookahead == '#') ADVANCE(4796); + if (lookahead == 'i') ADVANCE(4112); if (lookahead == '\t' || - lookahead == ' ') SKIP(501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == ' ') SKIP(493); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 521: - if (lookahead == '#') ADVANCE(4825); - if (lookahead == ':') ADVANCE(3553); + case 513: + if (lookahead == '#') ADVANCE(4792); + if (lookahead == ':') ADVANCE(3520); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(487); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + lookahead == ' ') ADVANCE(479); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 522: - if (lookahead == '#') ADVANCE(4828); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == ']') ADVANCE(2925); + case 514: + if (lookahead == '#') ADVANCE(4795); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == ']') ADVANCE(2916); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -27980,1295 +27685,1320 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4541); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4508); + END_STATE(); + case 515: + if (lookahead == '#') ADVANCE(4795); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '\t' || + lookahead == ' ') SKIP(497); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + END_STATE(); + case 516: + if (lookahead == '#') ADVANCE(3504); + if (lookahead == '\'') ADVANCE(3507); + if (lookahead == '(') ADVANCE(2917); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3503); + if (lookahead != 0) ADVANCE(3504); + END_STATE(); + case 517: + if (lookahead == '\'') ADVANCE(3495); + if (lookahead != 0) ADVANCE(517); + END_STATE(); + case 518: + if (lookahead == '*') ADVANCE(165); + END_STATE(); + case 519: + if (lookahead == '*') ADVANCE(864); + if (lookahead == '=') ADVANCE(1103); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3223); + END_STATE(); + case 520: + if (lookahead == '*') ADVANCE(864); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3223); + END_STATE(); + case 521: + if (lookahead == '+') ADVANCE(617); + if (lookahead == '-') ADVANCE(619); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == '_') ADVANCE(619); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'r') ADVANCE(767); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + END_STATE(); + case 522: + if (lookahead == '+') ADVANCE(617); + if (lookahead == '-') ADVANCE(619); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == '_') ADVANCE(619); + if (lookahead == 'r') ADVANCE(767); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 523: - if (lookahead == '#') ADVANCE(4828); - if (lookahead == '(') ADVANCE(3232); + if (lookahead == '+') ADVANCE(588); + if (lookahead == '=') ADVANCE(1101); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + lookahead == ' ') ADVANCE(3227); END_STATE(); case 524: - if (lookahead == '#') ADVANCE(3537); - if (lookahead == '\'') ADVANCE(3540); - if (lookahead == '(') ADVANCE(2926); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3536); - if (lookahead != 0) ADVANCE(3537); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'r') ADVANCE(3200); + if (lookahead == 'u') ADVANCE(809); END_STATE(); case 525: - if (lookahead == '\'') ADVANCE(3528); - if (lookahead != 0) ADVANCE(525); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'r') ADVANCE(170); + if (lookahead == 'u') ADVANCE(809); END_STATE(); case 526: - if (lookahead == '*') ADVANCE(171); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'r') ADVANCE(870); + if (lookahead == 'u') ADVANCE(809); END_STATE(); case 527: - if (lookahead == '*') ADVANCE(877); - if (lookahead == '=') ADVANCE(1112); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'u') ADVANCE(809); END_STATE(); case 528: - if (lookahead == '*') ADVANCE(877); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); + if (lookahead == '+') ADVANCE(587); + if (lookahead == '=') ADVANCE(1101); END_STATE(); case 529: - if (lookahead == '+') ADVANCE(627); - if (lookahead == '-') ADVANCE(629); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == '_') ADVANCE(629); - if (lookahead == 'n') ADVANCE(665); - if (lookahead == 'r') ADVANCE(778); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'r') ADVANCE(764); + if (lookahead == 'x') ADVANCE(824); END_STATE(); case 530: - if (lookahead == '+') ADVANCE(627); - if (lookahead == '-') ADVANCE(629); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == '_') ADVANCE(629); - if (lookahead == 'r') ADVANCE(778); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'n') ADVANCE(643); + if (lookahead == 'r') ADVANCE(764); END_STATE(); case 531: - if (lookahead == '+') ADVANCE(596); - if (lookahead == '=') ADVANCE(1110); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3244); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'r') ADVANCE(764); END_STATE(); case 532: - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'r') ADVANCE(3212); - if (lookahead == 'u') ADVANCE(820); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'r') ADVANCE(764); END_STATE(); case 533: - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'r') ADVANCE(176); - if (lookahead == 'u') ADVANCE(820); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'r') ADVANCE(764); + if (lookahead == 'x') ADVANCE(824); END_STATE(); case 534: - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'r') ADVANCE(884); - if (lookahead == 'u') ADVANCE(820); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(854); END_STATE(); case 535: - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'u') ADVANCE(820); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'I') ADVANCE(885); + if (lookahead == 'i') ADVANCE(885); + if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); END_STATE(); case 536: - if (lookahead == '+') ADVANCE(595); - if (lookahead == '=') ADVANCE(1110); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'n') ADVANCE(643); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 537: - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'l') ADVANCE(802); - if (lookahead == 'r') ADVANCE(775); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 538: - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(3614); if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'r') ADVANCE(775); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 539: - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'n') ADVANCE(664); - if (lookahead == 'r') ADVANCE(775); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 540: - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'r') ADVANCE(775); + if (lookahead == '+') ADVANCE(668); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'r') ADVANCE(3200); + if (lookahead == 'u') ADVANCE(812); END_STATE(); case 541: - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(836); + if (lookahead == '+') ADVANCE(668); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'r') ADVANCE(170); + if (lookahead == 'u') ADVANCE(812); END_STATE(); case 542: - if (lookahead == '+') ADVANCE(752); - if (lookahead == '>') ADVANCE(866); + if (lookahead == '+') ADVANCE(668); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'r') ADVANCE(870); + if (lookahead == 'u') ADVANCE(812); END_STATE(); case 543: - if (lookahead == '+') ADVANCE(754); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'I') ADVANCE(897); - if (lookahead == 'i') ADVANCE(897); - if (lookahead == 'r') ADVANCE(778); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + if (lookahead == '+') ADVANCE(668); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(812); END_STATE(); case 544: - if (lookahead == '+') ADVANCE(754); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'r') ADVANCE(778); + if (lookahead == '+') ADVANCE(865); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3227); END_STATE(); case 545: - if (lookahead == '+') ADVANCE(754); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'n') ADVANCE(664); - if (lookahead == 'r') ADVANCE(778); + if (lookahead == '+') ADVANCE(753); + if (lookahead == '>') ADVANCE(3606); END_STATE(); case 546: - if (lookahead == '+') ADVANCE(754); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'n') ADVANCE(665); - if (lookahead == 'r') ADVANCE(778); + if (lookahead == '+') ADVANCE(670); + if (lookahead == '>') ADVANCE(856); END_STATE(); case 547: - if (lookahead == '+') ADVANCE(754); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(778); + if (lookahead == '+') ADVANCE(672); + if (lookahead == '>') ADVANCE(3610); END_STATE(); case 548: - if (lookahead == '+') ADVANCE(679); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'r') ADVANCE(3212); - if (lookahead == 'u') ADVANCE(823); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(566); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); case 549: - if (lookahead == '+') ADVANCE(679); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'r') ADVANCE(176); - if (lookahead == 'u') ADVANCE(823); + if (lookahead == '-') ADVANCE(635); END_STATE(); case 550: - if (lookahead == '+') ADVANCE(679); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'r') ADVANCE(884); - if (lookahead == 'u') ADVANCE(823); + if (lookahead == '-') ADVANCE(840); END_STATE(); case 551: - if (lookahead == '+') ADVANCE(679); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(823); + if (lookahead == '-') ADVANCE(703); END_STATE(); case 552: - if (lookahead == '+') ADVANCE(874); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3244); + if (lookahead == '-') ADVANCE(634); END_STATE(); case 553: - if (lookahead == '+') ADVANCE(764); - if (lookahead == '>') ADVANCE(3639); + if (lookahead == '-') ADVANCE(740); END_STATE(); case 554: - if (lookahead == '+') ADVANCE(681); - if (lookahead == '>') ADVANCE(868); + if (lookahead == '-') ADVANCE(706); END_STATE(); case 555: - if (lookahead == '+') ADVANCE(683); - if (lookahead == '>') ADVANCE(3643); + if (lookahead == '-') ADVANCE(699); END_STATE(); case 556: - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(574); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '-') ADVANCE(801); END_STATE(); case 557: - if (lookahead == '-') ADVANCE(646); + if (lookahead == '-') ADVANCE(911); END_STATE(); case 558: - if (lookahead == '-') ADVANCE(852); + if (lookahead == '-') ADVANCE(841); END_STATE(); case 559: - if (lookahead == '-') ADVANCE(714); + if (lookahead == '-') ADVANCE(761); END_STATE(); case 560: - if (lookahead == '-') ADVANCE(645); + if (lookahead == '-') ADVANCE(843); END_STATE(); case 561: - if (lookahead == '-') ADVANCE(751); + if (lookahead == '-') ADVANCE(844); END_STATE(); case 562: - if (lookahead == '-') ADVANCE(717); + if (lookahead == '-') ADVANCE(845); END_STATE(); case 563: - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(846); END_STATE(); case 564: - if (lookahead == '-') ADVANCE(812); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '>') ADVANCE(2914); + if (lookahead == '_') ADVANCE(566); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); case 565: - if (lookahead == '-') ADVANCE(923); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(566); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); case 566: - if (lookahead == '-') ADVANCE(853); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); case 567: - if (lookahead == '-') ADVANCE(772); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); END_STATE(); case 568: - if (lookahead == '-') ADVANCE(855); + if (lookahead == '.') ADVANCE(3282); END_STATE(); case 569: - if (lookahead == '-') ADVANCE(856); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); END_STATE(); case 570: - if (lookahead == '-') ADVANCE(857); + if (lookahead == '.') ADVANCE(2952); END_STATE(); case 571: - if (lookahead == '-') ADVANCE(858); + if (lookahead == '.') ADVANCE(612); + if (lookahead == '_') ADVANCE(571); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); case 572: - if (lookahead == '.') ADVANCE(621); - if (lookahead == '>') ADVANCE(2923); - if (lookahead == '_') ADVANCE(574); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '.') ADVANCE(570); END_STATE(); case 573: - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(574); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '.') ADVANCE(570); + if (lookahead == '_') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); END_STATE(); case 574: - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '/') ADVANCE(866); + if (lookahead == '=') ADVANCE(1104); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3224); END_STATE(); case 575: - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == '/') ADVANCE(866); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3224); END_STATE(); case 576: - if (lookahead == '.') ADVANCE(3315); + if (lookahead == '2') ADVANCE(899); + if (lookahead == '0' || + lookahead == '1') ADVANCE(906); END_STATE(); case 577: - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + if (lookahead == ':') ADVANCE(3520); + if (lookahead == ';') ADVANCE(3532); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(577); END_STATE(); case 578: - if (lookahead == '.') ADVANCE(2961); + if (lookahead == ':') ADVANCE(3520); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(578); END_STATE(); case 579: - if (lookahead == '.') ADVANCE(622); - if (lookahead == '_') ADVANCE(579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == ':') ADVANCE(903); END_STATE(); case 580: - if (lookahead == '.') ADVANCE(578); + if (lookahead == ':') ADVANCE(907); END_STATE(); case 581: - if (lookahead == '.') ADVANCE(578); - if (lookahead == '_') ADVANCE(631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + if (lookahead == ';') ADVANCE(3532); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(581); END_STATE(); case 582: - if (lookahead == '/') ADVANCE(878); - if (lookahead == '=') ADVANCE(1113); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); + if (lookahead == '=') ADVANCE(3211); + if (lookahead == '~') ADVANCE(3217); END_STATE(); case 583: - if (lookahead == '/') ADVANCE(878); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); + if (lookahead == '=') ADVANCE(1103); END_STATE(); case 584: - if (lookahead == '2') ADVANCE(911); - if (lookahead == '0' || - lookahead == '1') ADVANCE(918); + if (lookahead == '=') ADVANCE(1102); END_STATE(); case 585: - if (lookahead == ':') ADVANCE(3553); - if (lookahead == ';') ADVANCE(3565); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(585); + if (lookahead == '=') ADVANCE(1102); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3228); END_STATE(); case 586: - if (lookahead == ':') ADVANCE(3553); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(586); + if (lookahead == '=') ADVANCE(1104); END_STATE(); case 587: - if (lookahead == ':') ADVANCE(915); + if (lookahead == '=') ADVANCE(1105); END_STATE(); case 588: - if (lookahead == ':') ADVANCE(919); + if (lookahead == '=') ADVANCE(1105); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3222); END_STATE(); case 589: - if (lookahead == ';') ADVANCE(3565); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(589); + if (lookahead == '=') ADVANCE(862); + if (lookahead == '~') ADVANCE(863); END_STATE(); case 590: - if (lookahead == '=') ADVANCE(3223); - if (lookahead == '~') ADVANCE(3229); + if (lookahead == '=') ADVANCE(3210); + if (lookahead == '>') ADVANCE(3101); + if (lookahead == '~') ADVANCE(3216); END_STATE(); case 591: - if (lookahead == '=') ADVANCE(1112); + if (lookahead == '=') ADVANCE(163); + if (lookahead == '~') ADVANCE(164); END_STATE(); case 592: - if (lookahead == '=') ADVANCE(1111); - END_STATE(); - case 593: - if (lookahead == '=') ADVANCE(1111); + if (lookahead == '=') ADVANCE(882); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3245); END_STATE(); + case 593: + if (lookahead == '=') ADVANCE(867); + if (lookahead == '>') ADVANCE(3101); + if (lookahead == '~') ADVANCE(868); + END_STATE(); case 594: - if (lookahead == '=') ADVANCE(1113); + if (lookahead == '=') ADVANCE(867); + if (lookahead == '~') ADVANCE(868); END_STATE(); case 595: - if (lookahead == '=') ADVANCE(1114); + if (lookahead == '=') ADVANCE(883); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3247); END_STATE(); case 596: - if (lookahead == '=') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(3101); + if (lookahead == '~') ADVANCE(168); END_STATE(); case 597: - if (lookahead == '=') ADVANCE(875); - if (lookahead == '~') ADVANCE(876); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '~') ADVANCE(168); END_STATE(); case 598: - if (lookahead == '=') ADVANCE(3222); - if (lookahead == '>') ADVANCE(3111); - if (lookahead == '~') ADVANCE(3228); + if (lookahead == '>') ADVANCE(3634); END_STATE(); case 599: - if (lookahead == '=') ADVANCE(169); - if (lookahead == '~') ADVANCE(170); + if (lookahead == '>') ADVANCE(3630); END_STATE(); case 600: - if (lookahead == '=') ADVANCE(879); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3278); + if (lookahead == '>') ADVANCE(3622); END_STATE(); case 601: - if (lookahead == '=') ADVANCE(880); - if (lookahead == '>') ADVANCE(3111); - if (lookahead == '~') ADVANCE(881); + if (lookahead == '>') ADVANCE(3626); END_STATE(); case 602: - if (lookahead == '=') ADVANCE(880); - if (lookahead == '~') ADVANCE(881); + if (lookahead == '>') ADVANCE(3101); END_STATE(); case 603: - if (lookahead == '=') ADVANCE(882); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3280); + if (lookahead == '>') ADVANCE(2914); END_STATE(); case 604: - if (lookahead == '=') ADVANCE(173); - if (lookahead == '>') ADVANCE(3111); - if (lookahead == '~') ADVANCE(174); + if (lookahead == '>') ADVANCE(853); END_STATE(); case 605: - if (lookahead == '=') ADVANCE(173); - if (lookahead == '~') ADVANCE(174); + if (lookahead == '>') ADVANCE(855); END_STATE(); case 606: - if (lookahead == '>') ADVANCE(3667); + if (lookahead == '>') ADVANCE(857); END_STATE(); case 607: - if (lookahead == '>') ADVANCE(3663); + if (lookahead == '>') ADVANCE(858); END_STATE(); case 608: - if (lookahead == '>') ADVANCE(3655); + if (lookahead == 'I') ADVANCE(885); + if (lookahead == 'i') ADVANCE(885); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); END_STATE(); case 609: - if (lookahead == '>') ADVANCE(3659); + if (lookahead == 'I') ADVANCE(885); + if (lookahead == 'i') ADVANCE(638); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); END_STATE(); case 610: - if (lookahead == '>') ADVANCE(3111); + if (lookahead == 'I') ADVANCE(885); + if (lookahead == 'i') ADVANCE(723); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); END_STATE(); case 611: - if (lookahead == '>') ADVANCE(2923); + if (lookahead == '_') ADVANCE(611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); END_STATE(); case 612: - if (lookahead == '>') ADVANCE(865); + if (lookahead == '_') ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); END_STATE(); case 613: - if (lookahead == '>') ADVANCE(867); + if (lookahead == '_') ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); END_STATE(); case 614: - if (lookahead == '>') ADVANCE(869); + if (lookahead == '_') ADVANCE(615); + if (lookahead == '+' || + lookahead == '-') ADVANCE(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); END_STATE(); case 615: - if (lookahead == '>') ADVANCE(870); + if (lookahead == '_') ADVANCE(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); END_STATE(); case 616: - if (lookahead == 'I') ADVANCE(897); - if (lookahead == '_') ADVANCE(629); - if (lookahead == 'i') ADVANCE(897); - if (lookahead == '+' || - lookahead == '-') ADVANCE(629); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '_') ADVANCE(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); case 617: - if (lookahead == 'I') ADVANCE(897); - if (lookahead == '_') ADVANCE(629); - if (lookahead == 'i') ADVANCE(649); - if (lookahead == '+' || - lookahead == '-') ADVANCE(629); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '_') ADVANCE(619); + if (lookahead == 'o') ADVANCE(598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 618: - if (lookahead == 'I') ADVANCE(897); - if (lookahead == 'i') ADVANCE(897); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + if (lookahead == '_') ADVANCE(619); + if (lookahead == '+' || + lookahead == '-') ADVANCE(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 619: - if (lookahead == 'I') ADVANCE(897); - if (lookahead == 'i') ADVANCE(649); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + if (lookahead == '_') ADVANCE(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 620: - if (lookahead == 'I') ADVANCE(897); - if (lookahead == 'i') ADVANCE(733); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + if (lookahead == '_') ADVANCE(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); case 621: if (lookahead == '_') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); END_STATE(); case 622: - if (lookahead == '_') ADVANCE(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '_') ADVANCE(623); + if (lookahead == '+' || + lookahead == '-') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); END_STATE(); case 623: if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); END_STATE(); case 624: - if (lookahead == '_') ADVANCE(625); - if (lookahead == '+' || - lookahead == '-') ADVANCE(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (lookahead == '`') ADVANCE(3497); + if (lookahead != 0) ADVANCE(624); END_STATE(); case 625: - if (lookahead == '_') ADVANCE(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (lookahead == 'a') ADVANCE(709); + if (lookahead == 'o') ADVANCE(645); END_STATE(); case 626: - if (lookahead == '_') ADVANCE(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == 'a') ADVANCE(769); END_STATE(); case 627: - if (lookahead == '_') ADVANCE(629); - if (lookahead == 'o') ADVANCE(606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == 'a') ADVANCE(847); END_STATE(); case 628: - if (lookahead == '_') ADVANCE(629); - if (lookahead == '+' || - lookahead == '-') ADVANCE(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == 'a') ADVANCE(719); END_STATE(); case 629: - if (lookahead == '_') ADVANCE(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == 'a') ADVANCE(786); END_STATE(); case 630: - if (lookahead == '_') ADVANCE(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == 'a') ADVANCE(811); END_STATE(); case 631: - if (lookahead == '_') ADVANCE(631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + if (lookahead == 'a') ADVANCE(818); END_STATE(); case 632: - if (lookahead == '_') ADVANCE(633); - if (lookahead == '+' || - lookahead == '-') ADVANCE(633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if (lookahead == 'a') ADVANCE(813); END_STATE(); case 633: - if (lookahead == '_') ADVANCE(633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if (lookahead == 'a') ADVANCE(807); + if (lookahead == 'o') ADVANCE(734); END_STATE(); case 634: - if (lookahead == '`') ADVANCE(3530); - if (lookahead != 0) ADVANCE(634); + if (lookahead == 'a') ADVANCE(736); + if (lookahead == 'o') ADVANCE(779); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 'x') ADVANCE(755); END_STATE(); case 635: - if (lookahead == 'a') ADVANCE(720); - if (lookahead == 'o') ADVANCE(655); + if (lookahead == 'a') ADVANCE(735); + if (lookahead == 'o') ADVANCE(776); + if (lookahead == 's') ADVANCE(680); + if (lookahead == 'x') ADVANCE(756); END_STATE(); case 636: - if (lookahead == 'a') ADVANCE(780); + if (lookahead == 'a') ADVANCE(783); END_STATE(); case 637: - if (lookahead == 'a') ADVANCE(859); + if (lookahead == 'a') ADVANCE(784); END_STATE(); case 638: - if (lookahead == 'a') ADVANCE(797); + if (lookahead == 'b') ADVANCE(3429); END_STATE(); case 639: - if (lookahead == 'a') ADVANCE(729); + if (lookahead == 'c') ADVANCE(3434); END_STATE(); case 640: - if (lookahead == 'a') ADVANCE(822); + if (lookahead == 'c') ADVANCE(658); END_STATE(); case 641: - if (lookahead == 'a') ADVANCE(829); + if (lookahead == 'c') ADVANCE(685); END_STATE(); case 642: - if (lookahead == 'a') ADVANCE(824); + if (lookahead == 'c') ADVANCE(686); END_STATE(); case 643: - if (lookahead == 'a') ADVANCE(835); + if (lookahead == 'd') ADVANCE(788); END_STATE(); case 644: - if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'd') ADVANCE(3192); END_STATE(); case 645: - if (lookahead == 'a') ADVANCE(746); - if (lookahead == 'o') ADVANCE(790); - if (lookahead == 's') ADVANCE(698); - if (lookahead == 'x') ADVANCE(766); + if (lookahead == 'd') ADVANCE(833); END_STATE(); case 646: - if (lookahead == 'a') ADVANCE(745); - if (lookahead == 'o') ADVANCE(787); - if (lookahead == 's') ADVANCE(691); - if (lookahead == 'x') ADVANCE(767); + if (lookahead == 'd') ADVANCE(661); END_STATE(); case 647: - if (lookahead == 'a') ADVANCE(794); + if (lookahead == 'd') ADVANCE(171); END_STATE(); case 648: - if (lookahead == 'a') ADVANCE(795); + if (lookahead == 'd') ADVANCE(172); END_STATE(); case 649: - if (lookahead == 'b') ADVANCE(3462); + if (lookahead == 'd') ADVANCE(871); END_STATE(); case 650: - if (lookahead == 'c') ADVANCE(3467); + if (lookahead == 'd') ADVANCE(872); END_STATE(); case 651: - if (lookahead == 'c') ADVANCE(669); + if (lookahead == 'd') ADVANCE(176); END_STATE(); case 652: - if (lookahead == 'c') ADVANCE(696); + if (lookahead == 'd') ADVANCE(876); END_STATE(); case 653: - if (lookahead == 'c') ADVANCE(697); + if (lookahead == 'd') ADVANCE(795); END_STATE(); case 654: - if (lookahead == 'd') ADVANCE(799); + if (lookahead == 'd') ADVANCE(797); END_STATE(); case 655: - if (lookahead == 'd') ADVANCE(845); + if (lookahead == 'e') ADVANCE(2938); END_STATE(); case 656: - if (lookahead == 'd') ADVANCE(3204); + if (lookahead == 'e') ADVANCE(2150); END_STATE(); case 657: - if (lookahead == 'd') ADVANCE(671); + if (lookahead == 'e') ADVANCE(2195); END_STATE(); case 658: - if (lookahead == 'd') ADVANCE(177); + if (lookahead == 'e') ADVANCE(711); END_STATE(); case 659: - if (lookahead == 'd') ADVANCE(178); + if (lookahead == 'e') ADVANCE(2905); END_STATE(); case 660: - if (lookahead == 'd') ADVANCE(885); + if (lookahead == 'e') ADVANCE(3084); END_STATE(); case 661: - if (lookahead == 'd') ADVANCE(886); + if (lookahead == 'e') ADVANCE(3152); END_STATE(); case 662: - if (lookahead == 'd') ADVANCE(182); + if (lookahead == 'e') ADVANCE(3056); END_STATE(); case 663: - if (lookahead == 'd') ADVANCE(890); + if (lookahead == 'e') ADVANCE(2898); END_STATE(); case 664: - if (lookahead == 'd') ADVANCE(806); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'o') ADVANCE(802); + if (lookahead == 'u') ADVANCE(712); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(891); END_STATE(); case 665: - if (lookahead == 'd') ADVANCE(808); + if (lookahead == 'e') ADVANCE(679); + if (lookahead == 'o') ADVANCE(3069); END_STATE(); case 666: - if (lookahead == 'e') ADVANCE(2947); + if (lookahead == 'e') ADVANCE(766); END_STATE(); case 667: - if (lookahead == 'e') ADVANCE(2159); + if (lookahead == 'e') ADVANCE(639); END_STATE(); case 668: - if (lookahead == 'e') ADVANCE(2204); + if (lookahead == 'e') ADVANCE(599); END_STATE(); case 669: - if (lookahead == 'e') ADVANCE(722); + if (lookahead == 'e') ADVANCE(770); END_STATE(); case 670: - if (lookahead == 'e') ADVANCE(2914); + if (lookahead == 'e') ADVANCE(773); END_STATE(); case 671: - if (lookahead == 'e') ADVANCE(3164); + if (lookahead == 'e') ADVANCE(605); END_STATE(); case 672: - if (lookahead == 'e') ADVANCE(3066); + if (lookahead == 'e') ADVANCE(777); END_STATE(); case 673: - if (lookahead == 'e') ADVANCE(2907); + if (lookahead == 'f') ADVANCE(2937); END_STATE(); case 674: - if (lookahead == 'e') ADVANCE(3094); + if (lookahead == 'f') ADVANCE(3076); END_STATE(); case 675: - if (lookahead == 'e') ADVANCE(851); - if (lookahead == 'o') ADVANCE(813); - if (lookahead == 'u') ADVANCE(724); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(903); + if (lookahead == 'f') ADVANCE(3076); + if (lookahead == 'n') ADVANCE(3038); END_STATE(); case 676: - if (lookahead == 'e') ADVANCE(690); - if (lookahead == 'o') ADVANCE(3079); + if (lookahead == 'f') ADVANCE(3076); + if (lookahead == 'n') ADVANCE(169); END_STATE(); case 677: - if (lookahead == 'e') ADVANCE(777); + if (lookahead == 'f') ADVANCE(3076); + if (lookahead == 'n') ADVANCE(869); END_STATE(); case 678: - if (lookahead == 'e') ADVANCE(650); + if (lookahead == 'f') ADVANCE(3076); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(887); END_STATE(); case 679: - if (lookahead == 'e') ADVANCE(607); + if (lookahead == 'f') ADVANCE(2880); END_STATE(); case 680: - if (lookahead == 'e') ADVANCE(781); + if (lookahead == 'h') ADVANCE(717); END_STATE(); case 681: - if (lookahead == 'e') ADVANCE(783); + if (lookahead == 'h') ADVANCE(2927); END_STATE(); case 682: - if (lookahead == 'e') ADVANCE(613); + if (lookahead == 'h') ADVANCE(3208); END_STATE(); case 683: - if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'h') ADVANCE(3206); END_STATE(); case 684: - if (lookahead == 'f') ADVANCE(2946); + if (lookahead == 'h') ADVANCE(2935); END_STATE(); case 685: - if (lookahead == 'f') ADVANCE(3086); + if (lookahead == 'h') ADVANCE(3122); END_STATE(); case 686: - if (lookahead == 'f') ADVANCE(3086); - if (lookahead == 'n') ADVANCE(3048); + if (lookahead == 'h') ADVANCE(3092); END_STATE(); case 687: - if (lookahead == 'f') ADVANCE(3086); - if (lookahead == 'n') ADVANCE(175); + if (lookahead == 'h') ADVANCE(718); END_STATE(); case 688: - if (lookahead == 'f') ADVANCE(3086); - if (lookahead == 'n') ADVANCE(883); + if (lookahead == 'h') ADVANCE(553); END_STATE(); case 689: - if (lookahead == 'f') ADVANCE(3086); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(899); + if (lookahead == 'h') ADVANCE(180); END_STATE(); case 690: - if (lookahead == 'f') ADVANCE(2889); + if (lookahead == 'h') ADVANCE(181); END_STATE(); case 691: - if (lookahead == 'h') ADVANCE(727); + if (lookahead == 'h') ADVANCE(880); END_STATE(); case 692: - if (lookahead == 'h') ADVANCE(2936); + if (lookahead == 'h') ADVANCE(881); END_STATE(); case 693: - if (lookahead == 'h') ADVANCE(3220); + if (lookahead == 'i') ADVANCE(800); END_STATE(); case 694: - if (lookahead == 'h') ADVANCE(3218); + if (lookahead == 'i') ADVANCE(792); END_STATE(); case 695: - if (lookahead == 'h') ADVANCE(2944); + if (lookahead == 'i') ADVANCE(646); END_STATE(); case 696: - if (lookahead == 'h') ADVANCE(3102); + if (lookahead == 'i') ADVANCE(629); END_STATE(); case 697: - if (lookahead == 'h') ADVANCE(3134); + if (lookahead == 'i') ADVANCE(806); END_STATE(); case 698: - if (lookahead == 'h') ADVANCE(728); + if (lookahead == 'i') ADVANCE(810); END_STATE(); case 699: - if (lookahead == 'h') ADVANCE(561); + if (lookahead == 'i') ADVANCE(721); END_STATE(); case 700: - if (lookahead == 'h') ADVANCE(186); + if (lookahead == 'i') ADVANCE(817); END_STATE(); case 701: - if (lookahead == 'h') ADVANCE(187); + if (lookahead == 'i') ADVANCE(820); END_STATE(); case 702: - if (lookahead == 'h') ADVANCE(894); + if (lookahead == 'i') ADVANCE(821); END_STATE(); case 703: - if (lookahead == 'h') ADVANCE(895); + if (lookahead == 'i') ADVANCE(732); END_STATE(); case 704: - if (lookahead == 'i') ADVANCE(811); + if (lookahead == 'i') ADVANCE(822); END_STATE(); case 705: - if (lookahead == 'i') ADVANCE(657); + if (lookahead == 'i') ADVANCE(823); END_STATE(); case 706: - if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'i') ADVANCE(733); END_STATE(); case 707: - if (lookahead == 'i') ADVANCE(638); + if (lookahead == 'i') ADVANCE(825); END_STATE(); case 708: - if (lookahead == 'i') ADVANCE(817); + if (lookahead == 'k') ADVANCE(3434); END_STATE(); case 709: - if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'k') ADVANCE(662); + if (lookahead == 't') ADVANCE(642); END_STATE(); case 710: - if (lookahead == 'i') ADVANCE(731); + if (lookahead == 'l') ADVANCE(2203); END_STATE(); case 711: - if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(715); END_STATE(); case 712: - if (lookahead == 'i') ADVANCE(831); + if (lookahead == 'l') ADVANCE(710); END_STATE(); case 713: - if (lookahead == 'i') ADVANCE(832); + if (lookahead == 'l') ADVANCE(696); END_STATE(); case 714: - if (lookahead == 'i') ADVANCE(742); + if (lookahead == 'l') ADVANCE(696); + if (lookahead == 'n') ADVANCE(644); END_STATE(); case 715: - if (lookahead == 'i') ADVANCE(833); + if (lookahead == 'l') ADVANCE(559); END_STATE(); case 716: - if (lookahead == 'i') ADVANCE(834); + if (lookahead == 'l') ADVANCE(663); END_STATE(); case 717: - if (lookahead == 'i') ADVANCE(743); + if (lookahead == 'l') ADVANCE(177); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 718: - if (lookahead == 'i') ADVANCE(837); + if (lookahead == 'l') ADVANCE(877); + if (lookahead == 'r') ADVANCE(878); END_STATE(); case 719: - if (lookahead == 'k') ADVANCE(3467); + if (lookahead == 'l') ADVANCE(791); END_STATE(); case 720: - if (lookahead == 'k') ADVANCE(672); - if (lookahead == 't') ADVANCE(652); + if (lookahead == 'n') ADVANCE(647); END_STATE(); case 721: - if (lookahead == 'l') ADVANCE(2212); + if (lookahead == 'n') ADVANCE(3204); END_STATE(); case 722: - if (lookahead == 'l') ADVANCE(725); + if (lookahead == 'n') ADVANCE(2936); END_STATE(); case 723: - if (lookahead == 'l') ADVANCE(707); + if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); END_STATE(); case 724: - if (lookahead == 'l') ADVANCE(721); + if (lookahead == 'n') ADVANCE(2891); END_STATE(); case 725: - if (lookahead == 'l') ADVANCE(567); + if (lookahead == 'n') ADVANCE(3038); END_STATE(); case 726: - if (lookahead == 'l') ADVANCE(673); + if (lookahead == 'n') ADVANCE(643); END_STATE(); case 727: - if (lookahead == 'l') ADVANCE(183); - if (lookahead == 'r') ADVANCE(184); + if (lookahead == 'n') ADVANCE(644); END_STATE(); case 728: - if (lookahead == 'l') ADVANCE(891); - if (lookahead == 'r') ADVANCE(892); + if (lookahead == 'n') ADVANCE(644); + if (lookahead == 's') ADVANCE(3176); END_STATE(); case 729: - if (lookahead == 'l') ADVANCE(801); + if (lookahead == 'n') ADVANCE(649); END_STATE(); case 730: - if (lookahead == 'n') ADVANCE(658); + if (lookahead == 'n') ADVANCE(169); END_STATE(); case 731: - if (lookahead == 'n') ADVANCE(3216); + if (lookahead == 'n') ADVANCE(869); END_STATE(); case 732: - if (lookahead == 'n') ADVANCE(2945); + if (lookahead == 'n') ADVANCE(175); END_STATE(); case 733: - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + if (lookahead == 'n') ADVANCE(875); END_STATE(); case 734: - if (lookahead == 'n') ADVANCE(2900); + if (lookahead == 'n') ADVANCE(793); END_STATE(); case 735: - if (lookahead == 'n') ADVANCE(3048); + if (lookahead == 'n') ADVANCE(651); END_STATE(); case 736: - if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'n') ADVANCE(652); END_STATE(); case 737: - if (lookahead == 'n') ADVANCE(656); + if (lookahead == 'n') ADVANCE(653); END_STATE(); case 738: - if (lookahead == 'n') ADVANCE(656); - if (lookahead == 's') ADVANCE(3188); + if (lookahead == 'o') ADVANCE(673); END_STATE(); case 739: - if (lookahead == 'n') ADVANCE(660); + if (lookahead == 'o') ADVANCE(604); END_STATE(); case 740: - if (lookahead == 'n') ADVANCE(175); + if (lookahead == 'o') ADVANCE(759); END_STATE(); case 741: - if (lookahead == 'n') ADVANCE(883); + if (lookahead == 'o') ADVANCE(836); END_STATE(); case 742: - if (lookahead == 'n') ADVANCE(181); + if (lookahead == 'o') ADVANCE(805); END_STATE(); case 743: - if (lookahead == 'n') ADVANCE(889); + if (lookahead == 'o') ADVANCE(598); END_STATE(); case 744: - if (lookahead == 'n') ADVANCE(804); + if (lookahead == 'o') ADVANCE(734); END_STATE(); case 745: - if (lookahead == 'n') ADVANCE(662); + if (lookahead == 'o') ADVANCE(765); END_STATE(); case 746: - if (lookahead == 'n') ADVANCE(663); + if (lookahead == 'o') ADVANCE(778); END_STATE(); case 747: - if (lookahead == 'n') ADVANCE(664); + if (lookahead == 'o') ADVANCE(802); END_STATE(); case 748: - if (lookahead == 'o') ADVANCE(684); + if (lookahead == 'o') ADVANCE(802); + if (lookahead == 'u') ADVANCE(712); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(891); END_STATE(); case 749: - if (lookahead == 'o') ADVANCE(3079); + if (lookahead == 'o') ADVANCE(816); END_STATE(); case 750: - if (lookahead == 'o') ADVANCE(612); + if (lookahead == 'o') ADVANCE(819); END_STATE(); case 751: - if (lookahead == 'o') ADVANCE(770); + if (lookahead == 'o') ADVANCE(775); END_STATE(); case 752: - if (lookahead == 'o') ADVANCE(848); + if (lookahead == 'o') ADVANCE(648); END_STATE(); case 753: - if (lookahead == 'o') ADVANCE(816); + if (lookahead == 'o') ADVANCE(837); END_STATE(); case 754: - if (lookahead == 'o') ADVANCE(606); + if (lookahead == 'o') ADVANCE(650); END_STATE(); case 755: - if (lookahead == 'o') ADVANCE(744); + if (lookahead == 'o') ADVANCE(781); END_STATE(); case 756: - if (lookahead == 'o') ADVANCE(776); + if (lookahead == 'o') ADVANCE(780); END_STATE(); case 757: - if (lookahead == 'o') ADVANCE(789); + if (lookahead == 'p') ADVANCE(630); END_STATE(); case 758: - if (lookahead == 'o') ADVANCE(813); + if (lookahead == 'p') ADVANCE(655); END_STATE(); case 759: - if (lookahead == 'o') ADVANCE(813); - if (lookahead == 'u') ADVANCE(724); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(903); + if (lookahead == 'p') ADVANCE(815); END_STATE(); case 760: - if (lookahead == 'o') ADVANCE(827); + if (lookahead == 'p') ADVANCE(631); END_STATE(); case 761: - if (lookahead == 'o') ADVANCE(830); + if (lookahead == 'p') ADVANCE(632); END_STATE(); case 762: - if (lookahead == 'o') ADVANCE(786); + if (lookahead == 'r') ADVANCE(3434); END_STATE(); case 763: - if (lookahead == 'o') ADVANCE(659); + if (lookahead == 'r') ADVANCE(835); END_STATE(); case 764: - if (lookahead == 'o') ADVANCE(849); + if (lookahead == 'r') ADVANCE(534); END_STATE(); case 765: - if (lookahead == 'o') ADVANCE(661); + if (lookahead == 'r') ADVANCE(3196); END_STATE(); case 766: - if (lookahead == 'o') ADVANCE(792); + if (lookahead == 'r') ADVANCE(722); END_STATE(); case 767: - if (lookahead == 'o') ADVANCE(791); + if (lookahead == 'r') ADVANCE(545); END_STATE(); case 768: - if (lookahead == 'p') ADVANCE(640); + if (lookahead == 'r') ADVANCE(834); END_STATE(); case 769: - if (lookahead == 'p') ADVANCE(666); + if (lookahead == 'r') ADVANCE(827); END_STATE(); case 770: - if (lookahead == 'p') ADVANCE(826); + if (lookahead == 'r') ADVANCE(724); END_STATE(); case 771: - if (lookahead == 'p') ADVANCE(641); + if (lookahead == 'r') ADVANCE(601); END_STATE(); case 772: - if (lookahead == 'p') ADVANCE(642); + if (lookahead == 'r') ADVANCE(170); END_STATE(); case 773: - if (lookahead == 'r') ADVANCE(3467); + if (lookahead == 'r') ADVANCE(782); END_STATE(); case 774: - if (lookahead == 'r') ADVANCE(847); + if (lookahead == 'r') ADVANCE(870); END_STATE(); case 775: - if (lookahead == 'r') ADVANCE(542); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 776: - if (lookahead == 'r') ADVANCE(3208); + if (lookahead == 'r') ADVANCE(174); END_STATE(); case 777: - if (lookahead == 'r') ADVANCE(732); + if (lookahead == 'r') ADVANCE(771); END_STATE(); case 778: - if (lookahead == 'r') ADVANCE(553); + if (lookahead == 'r') ADVANCE(873); END_STATE(); case 779: - if (lookahead == 'r') ADVANCE(846); + if (lookahead == 'r') ADVANCE(874); END_STATE(); case 780: - if (lookahead == 'r') ADVANCE(839); + if (lookahead == 'r') ADVANCE(179); END_STATE(); case 781: - if (lookahead == 'r') ADVANCE(734); + if (lookahead == 'r') ADVANCE(879); END_STATE(); case 782: - if (lookahead == 'r') ADVANCE(609); + if (lookahead == 'r') ADVANCE(607); END_STATE(); case 783: - if (lookahead == 'r') ADVANCE(793); + if (lookahead == 'r') ADVANCE(828); END_STATE(); case 784: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'r') ADVANCE(829); END_STATE(); case 785: - if (lookahead == 'r') ADVANCE(884); + if (lookahead == 's') ADVANCE(3434); END_STATE(); case 786: - if (lookahead == 'r') ADVANCE(179); + if (lookahead == 's') ADVANCE(1066); END_STATE(); case 787: - if (lookahead == 'r') ADVANCE(180); + if (lookahead == 's') ADVANCE(3176); END_STATE(); case 788: - if (lookahead == 'r') ADVANCE(782); + if (lookahead == 's') ADVANCE(550); END_STATE(); case 789: - if (lookahead == 'r') ADVANCE(887); + if (lookahead == 's') ADVANCE(659); END_STATE(); case 790: - if (lookahead == 'r') ADVANCE(888); + if (lookahead == 's') ADVANCE(660); END_STATE(); case 791: - if (lookahead == 'r') ADVANCE(185); + if (lookahead == 's') ADVANCE(657); END_STATE(); case 792: - if (lookahead == 'r') ADVANCE(893); + if (lookahead == 's') ADVANCE(803); END_STATE(); case 793: - if (lookahead == 'r') ADVANCE(615); + if (lookahead == 's') ADVANCE(804); END_STATE(); case 794: - if (lookahead == 'r') ADVANCE(840); + if (lookahead == 's') ADVANCE(558); END_STATE(); case 795: - if (lookahead == 'r') ADVANCE(841); + if (lookahead == 's') ADVANCE(560); END_STATE(); case 796: - if (lookahead == 's') ADVANCE(3467); + if (lookahead == 's') ADVANCE(561); END_STATE(); case 797: - if (lookahead == 's') ADVANCE(1075); + if (lookahead == 's') ADVANCE(562); END_STATE(); case 798: - if (lookahead == 's') ADVANCE(3188); + if (lookahead == 's') ADVANCE(563); END_STATE(); case 799: - if (lookahead == 's') ADVANCE(558); + if (lookahead == 't') ADVANCE(626); END_STATE(); case 800: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 't') ADVANCE(549); END_STATE(); case 801: - if (lookahead == 's') ADVANCE(668); + if (lookahead == 't') ADVANCE(848); END_STATE(); case 802: - if (lookahead == 's') ADVANCE(674); + if (lookahead == 't') ADVANCE(900); END_STATE(); case 803: - if (lookahead == 's') ADVANCE(814); + if (lookahead == 't') ADVANCE(2939); END_STATE(); case 804: - if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(1094); END_STATE(); case 805: - if (lookahead == 's') ADVANCE(566); + if (lookahead == 't') ADVANCE(551); END_STATE(); case 806: - if (lookahead == 's') ADVANCE(568); + if (lookahead == 't') ADVANCE(689); END_STATE(); case 807: - if (lookahead == 's') ADVANCE(569); + if (lookahead == 't') ADVANCE(641); END_STATE(); case 808: - if (lookahead == 's') ADVANCE(570); + if (lookahead == 't') ADVANCE(666); END_STATE(); case 809: - if (lookahead == 's') ADVANCE(571); + if (lookahead == 't') ADVANCE(546); END_STATE(); case 810: - if (lookahead == 't') ADVANCE(636); + if (lookahead == 't') ADVANCE(688); END_STATE(); case 811: - if (lookahead == 't') ADVANCE(557); + if (lookahead == 't') ADVANCE(681); END_STATE(); case 812: - if (lookahead == 't') ADVANCE(860); + if (lookahead == 't') ADVANCE(547); END_STATE(); case 813: - if (lookahead == 't') ADVANCE(912); + if (lookahead == 't') ADVANCE(684); END_STATE(); case 814: - if (lookahead == 't') ADVANCE(2948); + if (lookahead == 't') ADVANCE(600); END_STATE(); case 815: - if (lookahead == 't') ADVANCE(1103); + if (lookahead == 't') ADVANCE(556); END_STATE(); case 816: - if (lookahead == 't') ADVANCE(559); + if (lookahead == 't') ADVANCE(554); END_STATE(); case 817: - if (lookahead == 't') ADVANCE(700); + if (lookahead == 't') ADVANCE(691); END_STATE(); case 818: - if (lookahead == 't') ADVANCE(652); + if (lookahead == 't') ADVANCE(808); END_STATE(); case 819: - if (lookahead == 't') ADVANCE(677); + if (lookahead == 't') ADVANCE(555); END_STATE(); case 820: - if (lookahead == 't') ADVANCE(554); + if (lookahead == 't') ADVANCE(682); END_STATE(); case 821: - if (lookahead == 't') ADVANCE(699); + if (lookahead == 't') ADVANCE(683); END_STATE(); case 822: - if (lookahead == 't') ADVANCE(692); + if (lookahead == 't') ADVANCE(552); END_STATE(); case 823: - if (lookahead == 't') ADVANCE(555); + if (lookahead == 't') ADVANCE(690); END_STATE(); case 824: - if (lookahead == 't') ADVANCE(695); + if (lookahead == 't') ADVANCE(669); END_STATE(); case 825: - if (lookahead == 't') ADVANCE(608); + if (lookahead == 't') ADVANCE(692); END_STATE(); case 826: - if (lookahead == 't') ADVANCE(564); + if (lookahead == 't') ADVANCE(606); END_STATE(); case 827: - if (lookahead == 't') ADVANCE(562); + if (lookahead == 't') ADVANCE(794); END_STATE(); case 828: - if (lookahead == 't') ADVANCE(702); + if (lookahead == 't') ADVANCE(796); END_STATE(); case 829: - if (lookahead == 't') ADVANCE(819); + if (lookahead == 't') ADVANCE(798); END_STATE(); case 830: - if (lookahead == 't') ADVANCE(563); + if (lookahead == 't') ADVANCE(636); END_STATE(); case 831: - if (lookahead == 't') ADVANCE(693); + if (lookahead == 't') ADVANCE(637); END_STATE(); case 832: - if (lookahead == 't') ADVANCE(694); + if (lookahead == 'u') ADVANCE(850); + if (lookahead == 'x') ADVANCE(919); + if (lookahead != 0) ADVANCE(3512); END_STATE(); case 833: - if (lookahead == 't') ADVANCE(560); + if (lookahead == 'u') ADVANCE(716); END_STATE(); case 834: - if (lookahead == 't') ADVANCE(701); + if (lookahead == 'u') ADVANCE(656); END_STATE(); case 835: - if (lookahead == 't') ADVANCE(653); + if (lookahead == 'u') ADVANCE(656); + if (lookahead == 'y') ADVANCE(3115); END_STATE(); case 836: - if (lookahead == 't') ADVANCE(680); + if (lookahead == 'u') ADVANCE(826); END_STATE(); case 837: - if (lookahead == 't') ADVANCE(703); + if (lookahead == 'u') ADVANCE(814); END_STATE(); case 838: - if (lookahead == 't') ADVANCE(614); + if (lookahead == 'u') ADVANCE(849); + if (lookahead == 'x') ADVANCE(920); + if (lookahead != 0) ADVANCE(3499); END_STATE(); case 839: - if (lookahead == 't') ADVANCE(805); + if (lookahead == 'w') ADVANCE(3169); END_STATE(); case 840: - if (lookahead == 't') ADVANCE(807); + if (lookahead == 'w') ADVANCE(697); END_STATE(); case 841: - if (lookahead == 't') ADVANCE(809); + if (lookahead == 'w') ADVANCE(705); END_STATE(); case 842: - if (lookahead == 't') ADVANCE(647); + if (lookahead == 'w') ADVANCE(698); END_STATE(); case 843: - if (lookahead == 't') ADVANCE(648); + if (lookahead == 'w') ADVANCE(700); END_STATE(); case 844: - if (lookahead == 'u') ADVANCE(862); - if (lookahead == 'x') ADVANCE(931); - if (lookahead != 0) ADVANCE(3545); + if (lookahead == 'w') ADVANCE(707); END_STATE(); case 845: - if (lookahead == 'u') ADVANCE(726); + if (lookahead == 'w') ADVANCE(701); END_STATE(); case 846: - if (lookahead == 'u') ADVANCE(667); + if (lookahead == 'w') ADVANCE(702); END_STATE(); case 847: - if (lookahead == 'u') ADVANCE(667); - if (lookahead == 'y') ADVANCE(3127); + if (lookahead == 'y') ADVANCE(3434); END_STATE(); case 848: - if (lookahead == 'u') ADVANCE(838); + if (lookahead == 'y') ADVANCE(758); END_STATE(); case 849: - if (lookahead == 'u') ADVANCE(825); + if (lookahead == '{') ADVANCE(915); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(921); END_STATE(); case 850: - if (lookahead == 'u') ADVANCE(861); - if (lookahead == 'x') ADVANCE(932); - if (lookahead != 0) ADVANCE(3532); + if (lookahead == '{') ADVANCE(918); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(917); END_STATE(); case 851: - if (lookahead == 'w') ADVANCE(3181); + if (lookahead == '|') ADVANCE(2874); END_STATE(); case 852: - if (lookahead == 'w') ADVANCE(708); + if (lookahead == '|') ADVANCE(2875); END_STATE(); case 853: - if (lookahead == 'w') ADVANCE(716); + if (lookahead == '|') ADVANCE(2879); END_STATE(); case 854: - if (lookahead == 'w') ADVANCE(709); + if (lookahead == '|') ADVANCE(2872); END_STATE(); case 855: - if (lookahead == 'w') ADVANCE(711); + if (lookahead == '|') ADVANCE(2878); END_STATE(); case 856: - if (lookahead == 'w') ADVANCE(718); + if (lookahead == '|') ADVANCE(2873); END_STATE(); case 857: - if (lookahead == 'w') ADVANCE(712); + if (lookahead == '|') ADVANCE(2876); END_STATE(); case 858: - if (lookahead == 'w') ADVANCE(713); + if (lookahead == '|') ADVANCE(2877); END_STATE(); case 859: - if (lookahead == 'y') ADVANCE(3467); + if (lookahead == '}') ADVANCE(3499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(859); END_STATE(); case 860: - if (lookahead == 'y') ADVANCE(769); - END_STATE(); - case 861: - if (lookahead == '{') ADVANCE(927); + if (lookahead == '}') ADVANCE(3512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(933); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(860); + END_STATE(); + case 861: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3228); END_STATE(); case 862: - if (lookahead == '{') ADVANCE(930); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(929); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3244); END_STATE(); case 863: - if (lookahead == '|') ADVANCE(2883); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3232); END_STATE(); case 864: - if (lookahead == '|') ADVANCE(2884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3221); END_STATE(); case 865: - if (lookahead == '|') ADVANCE(2888); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3222); END_STATE(); case 866: - if (lookahead == '|') ADVANCE(2881); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3226); END_STATE(); case 867: - if (lookahead == '|') ADVANCE(2887); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3243); END_STATE(); case 868: - if (lookahead == '|') ADVANCE(2882); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3231); END_STATE(); case 869: - if (lookahead == '|') ADVANCE(2885); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3239); END_STATE(); case 870: - if (lookahead == '|') ADVANCE(2886); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3238); END_STATE(); case 871: - if (lookahead == '}') ADVANCE(3532); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(871); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3236); END_STATE(); case 872: - if (lookahead == '}') ADVANCE(3545); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(872); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3225); END_STATE(); case 873: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3245); + lookahead == ' ') ADVANCE(3237); END_STATE(); case 874: if (lookahead == '\t' || @@ -29276,2773 +29006,2773 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 875: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3277); + lookahead == ' ') ADVANCE(3240); END_STATE(); case 876: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3253); + lookahead == ' ') ADVANCE(3233); END_STATE(); case 877: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + lookahead == ' ') ADVANCE(3229); END_STATE(); case 878: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3242); + lookahead == ' ') ADVANCE(3230); END_STATE(); case 879: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3279); + lookahead == ' ') ADVANCE(3234); END_STATE(); case 880: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3275); + lookahead == ' ') ADVANCE(3242); END_STATE(); case 881: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3251); + lookahead == ' ') ADVANCE(3241); END_STATE(); case 882: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3281); + lookahead == ' ') ADVANCE(3246); END_STATE(); case 883: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3267); + lookahead == ' ') ADVANCE(3248); END_STATE(); case 884: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3265); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(891); END_STATE(); case 885: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3261); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); END_STATE(); case 886: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2226); END_STATE(); case 887: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3263); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2221); END_STATE(); case 888: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3259); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(895); END_STATE(); case 889: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3269); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(896); END_STATE(); case 890: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3255); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(886); END_STATE(); case 891: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3247); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); END_STATE(); case 892: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); END_STATE(); case 893: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3257); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(887); END_STATE(); case 894: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3273); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(889); END_STATE(); case 895: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3271); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(897); END_STATE(); case 896: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(903); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(898); END_STATE(); case 897: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); END_STATE(); case 898: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2235); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); END_STATE(); case 899: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2230); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3463); END_STATE(); case 900: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(907); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); END_STATE(); case 901: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(908); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); END_STATE(); case 902: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); END_STATE(); case 903: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(902); END_STATE(); case 904: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); END_STATE(); case 905: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3479); END_STATE(); case 906: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); END_STATE(); case 907: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(904); END_STATE(); case 908: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); END_STATE(); case 909: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3476); END_STATE(); case 910: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(908); END_STATE(); case 911: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(909); END_STATE(); case 912: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(579); END_STATE(); case 913: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(912); END_STATE(); case 914: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); - END_STATE(); - case 915: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(914); - END_STATE(); - case 916: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3489); - END_STATE(); - case 917: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); - END_STATE(); - case 918: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); - END_STATE(); - case 919: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(916); - END_STATE(); - case 920: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - END_STATE(); - case 921: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); - END_STATE(); - case 922: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(920); - END_STATE(); - case 923: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(921); - END_STATE(); - case 924: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); - END_STATE(); - case 925: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(924); - END_STATE(); - case 926: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3499); END_STATE(); - case 927: + case 915: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(871); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(859); END_STATE(); - case 928: + case 916: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3545); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3512); END_STATE(); - case 929: + case 917: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(931); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(919); END_STATE(); - case 930: + case 918: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(872); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(860); END_STATE(); - case 931: + case 919: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(928); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(916); END_STATE(); - case 932: + case 920: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(926); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(914); END_STATE(); - case 933: + case 921: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(932); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(920); END_STATE(); - case 934: - if (eof) ADVANCE(1064); + case 922: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 590, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '-', 2970, - '.', 3316, - ';', 2879, - '<', 3225, - '=', 598, - '>', 2959, - '?', 3201, - 'E', 628, - '[', 3484, - '_', 630, - 'a', 738, - 'e', 529, - 'i', 686, - 'n', 761, - 'o', 548, - 's', 843, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 582, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '-', 2961, + '.', 3283, + ';', 2870, + '<', 3213, + '=', 590, + '>', 2950, + '?', 3189, + 'E', 618, + '[', 3451, + '_', 620, + 'a', 728, + 'e', 521, + 'i', 675, + 'n', 750, + 'o', 540, + 's', 831, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(935); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ' ') SKIP(923); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 935: - if (eof) ADVANCE(1064); + case 923: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 590, - '#', 4822, - '$', 2929, - ')', 2927, - '-', 2970, - ';', 2879, - '<', 3225, - '=', 598, - '>', 2959, - '?', 3201, - 'a', 738, - 'e', 546, - 'i', 686, - 'n', 761, - 'o', 548, - 's', 843, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 582, + '#', 4789, + '$', 2920, + ')', 2918, + '-', 2961, + ';', 2870, + '<', 3213, + '=', 590, + '>', 2950, + '?', 3189, + 'a', 728, + 'e', 538, + 'i', 675, + 'n', 750, + 'o', 540, + 's', 831, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(935); + lookahead == ' ') SKIP(923); END_STATE(); - case 936: - if (eof) ADVANCE(1064); + case 924: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 590, - '#', 4822, - ')', 2927, - '-', 2970, - '.', 3330, - ';', 2879, - '<', 3225, - '=', 598, - '>', 2959, - '?', 3201, - 'E', 628, - '_', 630, - 'a', 738, - 'e', 529, - 'i', 686, - 'n', 761, - 'o', 548, - 's', 843, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 582, + '#', 4789, + ')', 2918, + '-', 2961, + '.', 3297, + ';', 2870, + '<', 3213, + '=', 590, + '>', 2950, + '?', 3189, + 'E', 618, + '_', 620, + 'a', 727, + 'e', 521, + 'i', 675, + 'n', 750, + 'o', 540, + 's', 831, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(937); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ' ') SKIP(925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 937: - if (eof) ADVANCE(1064); + case 925: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '!', 590, - '#', 4822, - ')', 2927, - '-', 2970, - ';', 2879, - '<', 3225, - '=', 598, - '>', 2959, - '?', 3201, - 'a', 738, - 'e', 546, - 'i', 686, - 'n', 761, - 'o', 548, - 's', 843, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '!', 582, + '#', 4789, + ')', 2918, + '-', 2961, + ';', 2870, + '<', 3213, + '=', 590, + '>', 2950, + '?', 3189, + 'a', 727, + 'e', 538, + 'i', 675, + 'n', 750, + 'o', 540, + 's', 831, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(937); + lookahead == ' ') SKIP(925); END_STATE(); - case 938: - if (eof) ADVANCE(1064); + case 926: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4824, - '$', 2930, - '\'', 525, - '(', 2926, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - ';', 2879, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1464, - 'b', 1509, - 'c', 1369, - 'd', 1395, - 'e', 1473, - 'f', 1372, - 'h', 1449, - 'i', 1365, - 'l', 1417, - 'm', 1374, - 'n', 1396, - 'o', 1569, - 'r', 1397, - 's', 1487, - 't', 1501, - 'u', 1529, - 'w', 1442, - '{', 3109, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4791, + '$', 2921, + '\'', 517, + '(', 2917, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + ';', 2870, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1455, + 'b', 1500, + 'c', 1360, + 'd', 1386, + 'e', 1464, + 'f', 1363, + 'h', 1440, + 'i', 1356, + 'l', 1408, + 'm', 1365, + 'n', 1387, + 'o', 1560, + 'r', 1388, + 's', 1478, + 't', 1492, + 'u', 1520, + 'w', 1433, + '{', 3099, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(938); + lookahead == ' ') SKIP(926); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 939: - if (eof) ADVANCE(1064); + case 927: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 940: - if (eof) ADVANCE(1064); + case 928: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3913, - '-', 2976, - '.', 3909, - '0', 3364, - ';', 2879, - 'N', 4005, - '[', 2924, - '_', 3933, - '`', 634, - 'e', 3881, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3880, + '-', 2967, + '.', 3876, + '0', 3331, + ';', 2870, + 'N', 3972, + '[', 2915, + '_', 3900, + '`', 624, + 'e', 3848, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(983); + lookahead == ' ') SKIP(972); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 941: - if (eof) ADVANCE(1064); + case 929: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3913, - '-', 2976, - '.', 3321, - '0', 3364, - ';', 2879, - 'N', 4005, - '[', 2924, - '_', 3933, - '`', 634, - 'e', 3881, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3880, + '-', 2967, + '.', 3288, + '0', 3331, + ';', 2870, + 'N', 3972, + '[', 2915, + '_', 3900, + '`', 624, + 'e', 3848, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(983); + lookahead == ' ') SKIP(972); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 942: - if (eof) ADVANCE(1064); + case 930: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3364, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3933, - '`', 634, - 'd', 3948, - 'e', 3883, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3331, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3900, + '`', 624, + 'd', 3915, + 'e', 3850, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 943: - if (eof) ADVANCE(1064); + case 931: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3364, - ';', 2879, - 'E', 3943, - 'N', 4005, - '[', 2924, - '_', 3933, - '`', 634, - 'e', 3884, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3331, + ';', 2870, + 'E', 3910, + 'N', 3972, + '[', 2915, + '_', 3900, + '`', 624, + 'e', 3851, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 944: - if (eof) ADVANCE(1064); + case 932: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3415, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3883, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3382, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3850, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 945: - if (eof) ADVANCE(1064); + case 933: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3415, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3880, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3382, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3847, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 946: - if (eof) ADVANCE(1064); + case 934: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3415, - ';', 2879, - 'E', 3943, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3884, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3382, + ';', 2870, + 'E', 3910, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3851, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 947: - if (eof) ADVANCE(1064); + case 935: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3415, - ';', 2879, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3881, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3382, + ';', 2870, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3848, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 948: - if (eof) ADVANCE(1064); + case 936: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3910, - '0', 3364, - ';', 2879, - 'E', 3943, - 'N', 4005, - '[', 2924, - '_', 3933, - '`', 634, - 'e', 3884, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3877, + '0', 3331, + ';', 2870, + 'E', 3910, + 'N', 3972, + '[', 2915, + '_', 3900, + '`', 624, + 'e', 3851, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 949: - if (eof) ADVANCE(1064); + case 937: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3910, - '0', 3415, - ';', 2879, - 'E', 3943, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3884, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3877, + '0', 3382, + ';', 2870, + 'E', 3910, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3851, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 950: - if (eof) ADVANCE(1064); + case 938: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3910, - '0', 3415, - ';', 2879, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3881, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3877, + '0', 3382, + ';', 2870, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3848, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 951: - if (eof) ADVANCE(1064); + case 939: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3335, - '0', 3415, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3883, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3301, + '0', 3382, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3850, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 952: - if (eof) ADVANCE(1064); + case 940: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3335, - '0', 3415, - ';', 2879, - 'E', 3943, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3884, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3301, + '0', 3382, + ';', 2870, + 'E', 3910, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3851, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 953: - if (eof) ADVANCE(1064); + case 941: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3326, - '0', 3415, - ';', 2879, - 'E', 3943, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3884, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3292, + '0', 3382, + ';', 2870, + 'E', 3910, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3851, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 954: - if (eof) ADVANCE(1064); + case 942: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3799, - '-', 2974, - '.', 3795, - '0', 3365, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3820, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3766, + '-', 2965, + '.', 3762, + '0', 3332, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3787, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(983); + lookahead == ' ') SKIP(972); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 955: - if (eof) ADVANCE(1064); + case 943: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 3799, - '-', 2974, - '.', 3323, - '0', 3365, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3820, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 3766, + '-', 2965, + '.', 3290, + '0', 3332, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3787, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(983); + lookahead == ' ') SKIP(972); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 956: - if (eof) ADVANCE(1064); + case 944: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 3400, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - ';', 2879, - '=', 610, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1464, - 'b', 1509, - 'c', 1369, - 'd', 1395, - 'e', 1473, - 'f', 1372, - 'h', 1449, - 'i', 1365, - 'l', 1417, - 'm', 1374, - 'n', 1396, - 'o', 1569, - 'r', 1397, - 's', 1487, - 't', 1501, - 'u', 1529, - 'w', 1442, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 3367, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + ';', 2870, + '=', 602, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1455, + 'b', 1500, + 'c', 1360, + 'd', 1386, + 'e', 1464, + 'f', 1363, + 'h', 1440, + 'i', 1356, + 'l', 1408, + 'm', 1365, + 'n', 1387, + 'o', 1560, + 'r', 1388, + 's', 1478, + 't', 1492, + 'u', 1520, + 'w', 1433, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(957); + lookahead == ' ') SKIP(945); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1584); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1575); END_STATE(); - case 957: - if (eof) ADVANCE(1064); + case 945: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 1346, - '-', 2987, - '.', 1347, - '0', 3410, - ';', 2879, - '=', 610, - 'I', 1578, - 'N', 1575, - '[', 2924, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1464, - 'b', 1509, - 'c', 1369, - 'd', 1395, - 'e', 1473, - 'f', 1372, - 'h', 1449, - 'i', 1365, - 'l', 1417, - 'm', 1374, - 'n', 1396, - 'o', 1569, - 'r', 1397, - 's', 1487, - 't', 1501, - 'u', 1529, - 'w', 1442, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 1337, + '-', 2978, + '.', 1338, + '0', 3377, + ';', 2870, + '=', 602, + 'I', 1569, + 'N', 1566, + '[', 2915, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1455, + 'b', 1500, + 'c', 1360, + 'd', 1386, + 'e', 1464, + 'f', 1363, + 'h', 1440, + 'i', 1356, + 'l', 1408, + 'm', 1365, + 'n', 1387, + 'o', 1560, + 'r', 1388, + 's', 1478, + 't', 1492, + 'u', 1520, + 'w', 1433, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(957); + lookahead == ' ') SKIP(945); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1584); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1575); END_STATE(); - case 958: - if (eof) ADVANCE(1064); + case 946: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 574, - '-', 2987, - '.', 575, - '0', 3413, - ';', 2879, - '=', 610, - 'I', 905, - 'N', 896, - '[', 2924, - '_', 626, - '`', 634, - 'a', 737, - 'c', 643, - 'd', 749, - 'e', 537, - 'f', 639, - 'i', 689, - 'm', 644, - 'n', 759, - 'o', 532, - 't', 774, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 566, + '-', 2978, + '.', 567, + '0', 3380, + ';', 2870, + '?', 3189, + 'I', 893, + 'N', 884, + '[', 2915, + '_', 616, + '`', 624, + 'a', 714, + 'c', 633, + 'd', 665, + 'e', 529, + 'f', 628, + 'h', 695, + 'i', 678, + 'l', 694, + 'm', 625, + 'n', 664, + 'o', 524, + 't', 763, + 'u', 789, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); + lookahead == ' ') SKIP(946); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); - case 959: - if (eof) ADVANCE(1064); + case 947: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3559, - '-', 2987, - '.', 1353, - '0', 3410, - ':', 2921, - ';', 2879, - '=', 1082, - '>', 2958, - 'I', 1578, - 'N', 1575, - '[', 2924, - ']', 2925, - '^', 3637, - '_', 1368, - '`', 634, - 'a', 1465, - 'b', 1509, - 'c', 1383, - 'd', 1395, - 'e', 1477, - 'f', 1372, - 'h', 1449, - 'i', 1366, - 'l', 1418, - 'm', 1382, - 'n', 1421, - 'o', 1569, - 'r', 1397, - 's', 1487, - 't', 1501, - 'u', 1529, - 'w', 1442, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 566, + '-', 2978, + '.', 3285, + '0', 3380, + ';', 2870, + '=', 3661, + '?', 3189, + 'I', 893, + 'N', 884, + '[', 2915, + '_', 616, + '`', 624, + 'a', 714, + 'c', 633, + 'd', 665, + 'e', 529, + 'f', 628, + 'h', 695, + 'i', 678, + 'l', 694, + 'm', 625, + 'n', 664, + 'o', 524, + 't', 763, + 'u', 789, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(959); + lookahead == ' ') SKIP(946); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); + END_STATE(); + case 948: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3526, + '-', 2978, + '.', 1344, + '0', 3377, + ':', 2912, + ';', 2870, + '=', 1073, + '>', 2949, + 'I', 1569, + 'N', 1566, + '[', 2915, + ']', 2916, + '^', 3604, + '_', 1359, + '`', 624, + 'a', 1456, + 'b', 1500, + 'c', 1374, + 'd', 1386, + 'e', 1468, + 'f', 1363, + 'h', 1440, + 'i', 1357, + 'l', 1409, + 'm', 1373, + 'n', 1412, + 'o', 1560, + 'r', 1388, + 's', 1478, + 't', 1492, + 'u', 1520, + 'w', 1433, + '{', 3099, + '|', 2871, + '}', 3100, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(948); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + lookahead == '@') ADVANCE(1875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(1584); + (lookahead < '0' || '@' < lookahead)) ADVANCE(1575); END_STATE(); - case 960: - if (eof) ADVANCE(1064); + case 949: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3798, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, - 'I', 3860, - 'i', 3860, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3765, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, + 'I', 3827, + 'i', 3827, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 961: - if (eof) ADVANCE(1064); + case 950: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 2683, - ';', 2879, - '=', 3694, - 'N', 2809, - '[', 2924, - '_', 2685, - '`', 634, - 'e', 2662, - 'f', 2693, - 'n', 2796, - 'o', 2663, - 't', 2762, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 2674, + ';', 2870, + '=', 3661, + 'N', 2800, + '[', 2915, + '_', 2676, + '`', 624, + 'e', 2653, + 'f', 2684, + 'n', 2787, + 'o', 2654, + 't', 2753, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2817); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + lookahead == 'i') ADVANCE(2808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 962: - if (eof) ADVANCE(1064); + case 951: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - ';', 2879, - '=', 3694, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + ';', 2870, + '=', 3661, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 963: - if (eof) ADVANCE(1064); + case 952: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - ';', 2879, - '?', 3201, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + ';', 2870, + '?', 3189, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(963); + lookahead == ' ') SKIP(952); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 964: - if (eof) ADVANCE(1064); + case 953: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - ';', 2879, - 'E', 3822, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3774, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + ';', 2870, + 'E', 3789, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3741, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 965: - if (eof) ADVANCE(1064); + case 954: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 3484, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 3451, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 966: - if (eof) ADVANCE(1064); + case 955: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 967: - if (eof) ADVANCE(1064); + case 956: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3794, - '0', 3365, - ';', 2879, - 'E', 3822, - 'N', 3856, - '[', 2924, - '_', 3820, - '`', 634, - 'e', 3774, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3761, + '0', 3332, + ';', 2870, + 'E', 3789, + 'N', 3823, + '[', 2915, + '_', 3787, + '`', 624, + 'e', 3741, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 968: - if (eof) ADVANCE(1064); + case 957: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3796, - '0', 3411, - ';', 2879, - 'E', 3822, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3774, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3763, + '0', 3378, + ';', 2870, + 'E', 3789, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3741, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 969: - if (eof) ADVANCE(1064); + case 958: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3796, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3763, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 970: - if (eof) ADVANCE(1064); + case 959: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3796, - '0', 3365, - ';', 2879, - 'E', 3822, - 'N', 3856, - '[', 2924, - '_', 3820, - '`', 634, - 'e', 3774, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3763, + '0', 3332, + ';', 2870, + 'E', 3789, + 'N', 3823, + '[', 2915, + '_', 3787, + '`', 624, + 'e', 3741, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 971: - if (eof) ADVANCE(1064); + case 960: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3332, - '0', 3411, - ';', 2879, - '?', 3201, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3299, + '0', 3378, + ';', 2870, + '?', 3189, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(963); + lookahead == ' ') SKIP(952); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 972: - if (eof) ADVANCE(1064); + case 961: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3332, - '0', 3411, - ';', 2879, - 'E', 3822, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3774, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3299, + '0', 3378, + ';', 2870, + 'E', 3789, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3741, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 973: - if (eof) ADVANCE(1064); + case 962: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3332, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3299, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 974: - if (eof) ADVANCE(1064); + case 963: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3319, - '0', 3411, - ';', 2879, - '?', 3201, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3286, + '0', 3378, + ';', 2870, + '?', 3189, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(963); + lookahead == ' ') SKIP(952); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 975: - if (eof) ADVANCE(1064); + case 964: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3319, - '0', 3411, - ';', 2879, - 'E', 3822, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3774, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3286, + '0', 3378, + ';', 2870, + 'E', 3789, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3741, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 976: - if (eof) ADVANCE(1064); + case 965: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2973, - '.', 3319, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2964, + '.', 3286, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 977: - if (eof) ADVANCE(1064); + case 966: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3797, - '-', 2980, - '.', 3794, - '0', 3712, - ';', 2879, - '=', 3694, - 'N', 3739, - '[', 2924, - '_', 3714, - '`', 634, - 'e', 3695, - 'f', 3721, - 'n', 3738, - 'o', 3696, - 't', 3729, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3764, + '-', 2971, + '.', 3761, + '0', 3679, + ';', 2870, + '=', 3661, + 'N', 3706, + '[', 2915, + '_', 3681, + '`', 624, + 'e', 3662, + 'f', 3688, + 'n', 3705, + 'o', 3663, + 't', 3696, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3744); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3717); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == 'i') ADVANCE(3711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3684); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 978: - if (eof) ADVANCE(1064); + case 967: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3364, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3933, - '`', 634, - 'd', 3948, - 'e', 3883, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3331, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3900, + '`', 624, + 'd', 3915, + 'e', 3850, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 979: - if (eof) ADVANCE(1064); + case 968: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3415, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3883, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3382, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3850, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 980: - if (eof) ADVANCE(1064); + case 969: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3911, - '0', 3415, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3880, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3878, + '0', 3382, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3847, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 981: - if (eof) ADVANCE(1064); + case 970: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3910, - '0', 3415, - ';', 2879, - 'N', 4005, - '[', 2924, - '_', 3938, - '`', 634, - 'e', 3881, - 'f', 3947, - 'n', 3992, - 'o', 3882, - 't', 3976, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3877, + '0', 3382, + ';', 2870, + 'N', 3972, + '[', 2915, + '_', 3905, + '`', 624, + 'e', 3848, + 'f', 3914, + 'n', 3959, + 'o', 3849, + 't', 3943, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 982: - if (eof) ADVANCE(1064); + case 971: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3914, - '-', 2978, - '.', 3335, - '0', 3415, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'N', 4005, - 'P', 3931, - 'T', 3931, - '[', 2924, - '_', 3938, - '`', 634, - 'd', 3948, - 'e', 3883, - 'f', 3947, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3983, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3929, - 'u', 3984, - 'w', 3960, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3881, + '-', 2969, + '.', 3301, + '0', 3382, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'N', 3972, + 'P', 3898, + 'T', 3898, + '[', 2915, + '_', 3905, + '`', 624, + 'd', 3915, + 'e', 3850, + 'f', 3914, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3950, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3896, + 'u', 3951, + 'w', 3927, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); + lookahead == 'b') ADVANCE(3429); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4012); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); + lookahead == 'i') ADVANCE(3979); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4035); + lookahead != ']') ADVANCE(4002); END_STATE(); - case 983: - if (eof) ADVANCE(1064); + case 972: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '$', 2930, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 3799, - '-', 2974, - '.', 3795, - '0', 3411, - ';', 2879, - 'N', 3856, - '[', 2924, - '_', 3811, - '`', 634, - 'e', 3772, - 'f', 3824, - 'n', 3852, - 'o', 3773, - 't', 3839, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '$', 2921, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 3766, + '-', 2965, + '.', 3762, + '0', 3378, + ';', 2870, + 'N', 3823, + '[', 2915, + '_', 3778, + '`', 624, + 'e', 3739, + 'f', 3791, + 'n', 3819, + 'o', 3740, + 't', 3806, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(983); + lookahead == ' ') SKIP(972); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3860); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); + lookahead == 'i') ADVANCE(3827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3879); + lookahead != ']') ADVANCE(3846); END_STATE(); - case 984: - if (eof) ADVANCE(1064); + case 973: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '\'', 525, - '(', 2926, - ')', 2927, - '*', 3198, - '+', 1346, - '-', 573, - '.', 1602, - ';', 2879, - '=', 1082, - '>', 2958, - 'I', 1870, - 'N', 1865, - '[', 2924, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '{', 3109, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '\'', 517, + '(', 2917, + ')', 2918, + '*', 3186, + '+', 1337, + '-', 565, + '.', 1593, + ';', 2870, + '=', 1073, + '>', 2949, + 'I', 1861, + 'N', 1856, + '[', 2915, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '{', 3099, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 985: - if (eof) ADVANCE(1064); + case 974: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '\'', 525, - ')', 2927, - '*', 3198, - '+', 1346, - '-', 573, - '.', 3342, - ';', 2879, - '?', 3201, - 'I', 1870, - 'N', 1865, - '[', 2924, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '\'', 517, + ')', 2918, + '*', 3186, + '+', 1337, + '-', 565, + '.', 3309, + ';', 2870, + '?', 3189, + 'I', 1861, + 'N', 1856, + '[', 2915, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(987); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 986: - if (eof) ADVANCE(1064); + case 975: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '\'', 525, - ')', 2927, - '*', 3198, - '+', 1346, - '-', 573, - '.', 3342, - ';', 2879, - 'I', 1870, - 'N', 1865, - '[', 2924, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '\'', 517, + ')', 2918, + '*', 3186, + '+', 1337, + '-', 565, + '.', 3309, + ';', 2870, + 'I', 1861, + 'N', 1856, + '[', 2915, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 987: - if (eof) ADVANCE(1064); + case 976: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '\'', 525, - ')', 2927, - '*', 3198, - '+', 1346, - '-', 573, - '.', 1602, - ';', 2879, - '?', 3201, - 'I', 1870, - 'N', 1865, - '[', 2924, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '\'', 517, + ')', 2918, + '*', 3186, + '+', 1337, + '-', 565, + '.', 1593, + ';', 2870, + '?', 3189, + 'I', 1861, + 'N', 1856, + '[', 2915, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(987); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 988: - if (eof) ADVANCE(1064); + case 977: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4822, - '\'', 525, - ')', 2927, - '*', 3198, - '+', 1346, - '-', 573, - '.', 1602, - ';', 2879, - 'I', 1870, - 'N', 1865, - '[', 2924, - '_', 1605, - '`', 634, - 'a', 1731, - 'b', 1787, - 'c', 1629, - 'd', 1669, - 'e', 1733, - 'f', 1616, - 'h', 1708, - 'i', 1597, - 'l', 1680, - 'm', 1627, - 'n', 1674, - 'o', 1843, - 'r', 1685, - 's', 1757, - 't', 1771, - 'u', 1802, - 'w', 1699, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4789, + '\'', 517, + ')', 2918, + '*', 3186, + '+', 1337, + '-', 565, + '.', 1593, + ';', 2870, + 'I', 1861, + 'N', 1856, + '[', 2915, + '_', 1596, + '`', 624, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + lookahead == ' ') SKIP(977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 989: - if (eof) ADVANCE(1064); + case 978: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4829, - '$', 2931, - '\'', 525, - '(', 3232, - ')', 2927, - '+', 4058, - '-', 2982, - '.', 4059, - '0', 4077, - ';', 2879, - 'N', 4215, - '[', 2924, - '_', 4079, - '`', 634, - 'e', 4045, - 'f', 4089, - 'n', 4193, - 'o', 4046, - 't', 4160, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4796, + '$', 2922, + '\'', 517, + '(', 3220, + ')', 2918, + '+', 4025, + '-', 2973, + '.', 4026, + '0', 4044, + ';', 2870, + 'N', 4182, + '[', 2915, + '_', 4046, + '`', 624, + 'e', 4012, + 'f', 4056, + 'n', 4160, + 'o', 4013, + 't', 4127, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4224); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4082); + lookahead == 'i') ADVANCE(4191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4049); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4254); + lookahead != ']') ADVANCE(4221); END_STATE(); - case 990: - if (eof) ADVANCE(1064); + case 979: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '"', 3524, - '#', 4829, - '$', 2931, - '\'', 525, - '(', 2926, - ')', 2927, - '+', 4058, - '-', 2982, - '.', 4059, - '0', 4077, - ';', 2879, - 'N', 4215, - '[', 2924, - '_', 4079, - '`', 634, - 'e', 4045, - 'f', 4089, - 'n', 4193, - 'o', 4046, - 't', 4160, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '"', 3491, + '#', 4796, + '$', 2922, + '\'', 517, + '(', 2917, + ')', 2918, + '+', 4025, + '-', 2973, + '.', 4026, + '0', 4044, + ';', 2870, + 'N', 4182, + '[', 2915, + '_', 4046, + '`', 624, + 'e', 4012, + 'f', 4056, + 'n', 4160, + 'o', 4013, + 't', 4127, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(966); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4224); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4082); + lookahead == 'i') ADVANCE(4191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4049); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4254); + lookahead != ']') ADVANCE(4221); END_STATE(); - case 991: - if (eof) ADVANCE(1064); + case 980: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '+', 579, - '-', 2975, - '.', 3346, - ';', 2879, - '=', 610, - '_', 630, - 'a', 737, - 'e', 547, - 'i', 685, - 'o', 548, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '+', 571, + '-', 2966, + '.', 3313, + ';', 2870, + '=', 602, + '_', 620, + 'a', 727, + 'e', 539, + 'i', 674, + 'o', 540, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + lookahead == ' ') SKIP(985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 992: - if (eof) ADVANCE(1064); + case 981: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '.', 3935, - ';', 2879, - '_', 3933, - 'a', 3966, - 'e', 3890, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '.', 3902, + ';', 2870, + '_', 3900, + 'a', 3933, + 'e', 3857, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(998); + lookahead == ' ') SKIP(989); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 993: - if (eof) ADVANCE(1064); + case 982: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '.', 3935, - ';', 2879, - '_', 3933, - 'e', 3890, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, - '+', 3913, - '-', 3913, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '.', 3902, + ';', 2870, + '_', 3900, + 'e', 3857, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, + '+', 3880, + '-', 3880, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 994: - if (eof) ADVANCE(1064); + case 983: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '.', 3343, - ';', 2879, - '[', 3484, - '_', 3933, - 'e', 3890, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, - '+', 3913, - '-', 3913, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '.', 3310, + ';', 2870, + '[', 3451, + '_', 3900, + 'e', 3857, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, + '+', 3880, + '-', 3880, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -32050,14320 +31780,14366 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); END_STATE(); - case 995: - if (eof) ADVANCE(1064); + case 984: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - '(', 3232, - ')', 2927, - '.', 3343, - ';', 2879, - '_', 3933, - 'a', 3966, - 'e', 3890, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + '(', 3220, + ')', 2918, + '.', 3310, + ';', 2870, + '_', 3900, + 'a', 3933, + 'e', 3857, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(998); + lookahead == ' ') SKIP(989); if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == '-') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 996: - if (eof) ADVANCE(1064); + case 985: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - '+', 579, - '-', 2975, - '.', 631, - ';', 2879, - '=', 610, - 'a', 737, - 'e', 547, - 'i', 685, - 'o', 548, - 'x', 756, - '{', 3109, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + '+', 571, + '-', 2966, + '.', 621, + ';', 2870, + '=', 602, + 'a', 727, + 'e', 539, + 'i', 674, + 'o', 540, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(996); + lookahead == ' ') SKIP(985); END_STATE(); - case 997: - if (eof) ADVANCE(1064); + case 986: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - '-', 2970, - '.', 3330, - ';', 2879, - '=', 3694, - '?', 3201, - 'e', 2667, - 'o', 2666, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + '-', 2961, + '.', 3297, + ':', 2912, + ';', 2870, + '=', 1073, + '?', 3189, + 'E', 618, + '_', 620, + 'a', 728, + 'e', 522, + 'i', 725, + 'o', 540, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + if (lookahead == '\t' || + lookahead == ' ') SKIP(988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 998: - if (eof) ADVANCE(1064); + case 987: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + '-', 2961, + '.', 3297, + ';', 2870, + '=', 3661, + '?', 3189, + 'e', 2658, + 'o', 2657, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, + ); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + END_STATE(); + case 988: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + '-', 2961, + ':', 2912, + ';', 2870, + '=', 1073, + '?', 3189, + 'a', 728, + 'e', 539, + 'i', 725, + 'o', 540, + 'x', 745, + '{', 3099, + '|', 2871, + '}', 3100, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(988); + END_STATE(); + case 989: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '$', 2929, - ')', 2927, - '.', 631, - ';', 2879, - 'a', 737, - 'e', 540, - 'o', 532, - 'x', 756, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '$', 2920, + ')', 2918, + '.', 621, + ';', 2870, + 'a', 727, + 'e', 532, + 'o', 524, + 'x', 745, + '|', 2871, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(998); + lookahead == ' ') SKIP(989); if (lookahead == '+' || - lookahead == '-') ADVANCE(579); + lookahead == '-') ADVANCE(571); END_STATE(); - case 999: - if (eof) ADVANCE(1064); + case 990: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '*', 591, - '+', 536, - '-', 592, - '.', 3330, - '/', 594, - ';', 2879, - '=', 1082, - '?', 3201, - 'E', 619, - 'G', 619, - 'K', 619, - 'M', 619, - 'P', 619, - 'T', 619, - '[', 3484, - 'd', 637, - 'e', 543, - 'g', 618, - 'h', 773, - 'k', 618, - 'm', 620, - 'n', 796, - 'o', 551, - 'p', 618, - 's', 678, - 't', 618, - 'u', 796, - 'w', 719, - '{', 3109, - '|', 2880, - '}', 3110, - 0xb5, 796, - '\t', 26, - ' ', 26, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '*', 583, + '+', 528, + '-', 584, + '.', 3297, + '/', 586, + ';', 2870, + '=', 1073, + '?', 3189, + 'E', 609, + 'G', 609, + 'K', 609, + 'M', 609, + 'P', 609, + 'T', 609, + '[', 3451, + 'd', 627, + 'e', 535, + 'g', 608, + 'h', 762, + 'k', 608, + 'm', 610, + 'n', 785, + 'o', 543, + 'p', 608, + 's', 667, + 't', 608, + 'u', 785, + 'w', 708, + '{', 3099, + '|', 2871, + '}', 3100, + 0xb5, 785, + '\t', 25, + ' ', 25, + 'B', 3429, + 'b', 3429, ); END_STATE(); - case 1000: - if (eof) ADVANCE(1064); + case 991: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'a', 3966, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3891, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 'x', 3972, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'a', 3933, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3858, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 'x', 3939, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); + lookahead == ' ') SKIP(1043); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); - case 1001: - if (eof) ADVANCE(1064); + case 992: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3850, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 993: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 994: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 995: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3910, + 'a', 3933, + 'e', 3854, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 996: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 3910, + 'e', 3854, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 997: + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3883, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'a', 3933, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3858, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 'x', 3939, + '|', 2871, + '}', 3100, + 0xb5, 3951, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 998: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3850, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 999: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 1000: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, '\t', 29, ' ', 29, - 'B', 3462, - 'b', 3462, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + END_STATE(); + case 1001: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'a', 3933, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3858, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 'x', 3939, + '|', 2871, + '}', 3100, + 0xb5, 3951, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1002: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3850, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1003: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1004: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3943, - 'a', 3966, - 'e', 3887, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3853, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1005: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 3943, - 'e', 3887, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'a', 3933, + 'd', 3915, + 'e', 3856, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3858, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + 'x', 3939, + '|', 2871, + '}', 3100, + 0xb5, 3951, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1006: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'a', 3966, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3891, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 'x', 3972, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3847, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3849, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1007: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3883, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 29, - ' ', 29, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3856, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 2869, + ' ', 2869, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1008: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'd', 3915, + 'e', 3856, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'o', 3859, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '|', 2871, + '}', 3100, + 0xb5, 3951, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1009: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3910, + '_', 3900, + 'a', 3933, + 'e', 3854, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1010: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'a', 3966, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3891, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 'x', 3972, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3910, + '_', 3900, + 'e', 3854, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1011: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3883, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 29, - ' ', 29, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3910, + 'a', 3933, + 'e', 3854, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1012: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'E', 3910, + 'e', 3854, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1013: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3886, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'a', 3933, + 'e', 3857, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1014: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'a', 3966, - 'd', 3948, - 'e', 3889, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3891, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - 'x', 3972, - '|', 2880, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3879, + ';', 2870, + 'e', 3857, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1015: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3880, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3882, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 29, - ' ', 29, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3283, + ';', 2870, + 'E', 3910, + 'a', 3933, + 'e', 3854, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1016: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3889, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 2878, - ' ', 2878, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + '.', 3283, + ';', 2870, + 'E', 3910, + 'e', 3854, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1017: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'd', 3948, - 'e', 3889, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'o', 3892, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '|', 2880, - '}', 3110, - 0xb5, 3984, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + ';', 2870, + 'E', 3910, + '_', 3900, + 'a', 3933, + 'e', 3854, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1018: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3943, - '_', 3933, - 'a', 3966, - 'e', 3887, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + ';', 2870, + 'E', 3910, + '_', 3900, + 'e', 3854, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1019: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3943, - '_', 3933, - 'e', 3887, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + ';', 2870, + 'E', 3910, + 'a', 3933, + 'e', 3854, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1020: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3943, - 'a', 3966, - 'e', 3887, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + ';', 2870, + 'E', 3910, + 'e', 3854, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1021: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'E', 3943, - 'e', 3887, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + ';', 2870, + 'a', 3933, + 'e', 3857, + 'o', 3858, + 'x', 3939, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1022: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'a', 3966, - 'e', 3890, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + '(', 3220, + ')', 2918, + ';', 2870, + 'e', 3857, + 'o', 3859, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1023: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3912, - ';', 2879, - 'e', 3890, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + '.', 3297, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'a', 3952, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '}', 3100, + 0xb5, 3951, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1031); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1024: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3316, - ';', 2879, - 'E', 3943, - 'a', 3966, - 'e', 3887, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + '_', 3900, + 'a', 3952, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(1031); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1025: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - '.', 3316, - ';', 2879, - 'E', 3943, - 'e', 3887, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + '.', 3879, + ';', 2870, + 'E', 3895, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'a', 3952, + 'd', 3915, + 'e', 3894, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '}', 3100, + 0xb5, 3951, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1031); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1026: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - ';', 2879, - 'E', 3943, - '_', 3933, - 'a', 3966, - 'e', 3887, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + '.', 3879, + ';', 2870, + 'E', 3898, + 'G', 3898, + 'K', 3898, + 'M', 3898, + 'P', 3898, + 'T', 3898, + 'a', 3952, + 'd', 3915, + 'e', 3897, + 'g', 3897, + 'h', 3941, + 'k', 3897, + 'm', 3899, + 'n', 3951, + 'p', 3897, + 's', 3921, + 't', 3897, + 'u', 3951, + 'w', 3927, + '}', 3100, + 0xb5, 3951, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(1031); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1027: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - ';', 2879, - 'E', 3943, - '_', 3933, - 'e', 3887, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + '.', 3283, + ';', 2870, + '=', 602, + '?', 3189, + 'E', 618, + 'e', 522, + 'o', 543, + '{', 3099, + '|', 2871, + '}', 3100, + '\t', 26, + ' ', 26, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 1028: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - ';', 2879, - 'E', 3943, - 'a', 3966, - 'e', 3887, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + ';', 2870, + '=', 3661, + 'a', 2767, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(1031); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); END_STATE(); case 1029: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - ';', 2879, - 'E', 3943, - 'e', 3887, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + ';', 2870, + '=', 3661, + 'a', 787, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1031); END_STATE(); case 1030: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - ';', 2879, - 'a', 3966, - 'e', 3890, - 'o', 3891, - 'x', 3972, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + ';', 2870, + 'a', 3952, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(1031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1031: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - '(', 3232, - ')', 2927, - ';', 2879, - 'e', 3890, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2961, + ';', 2870, + 'a', 787, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1031); END_STATE(); case 1032: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - '.', 3330, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'a', 3985, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '-', 2972, + ';', 2870, + '=', 3661, + 'a', 3699, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == ' ') SKIP(1031); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 1033: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - '_', 3933, - 'a', 3985, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1034: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - '.', 3912, - ';', 2879, - 'E', 3928, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'a', 3985, - 'd', 3948, - 'e', 3927, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 3297, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2242, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1035: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - '.', 3912, - ';', 2879, - 'E', 3931, - 'G', 3931, - 'K', 3931, - 'M', 3931, - 'P', 3931, - 'T', 3931, - 'a', 3985, - 'd', 3948, - 'e', 3930, - 'g', 3930, - 'h', 3974, - 'k', 3930, - 'm', 3932, - 'n', 3984, - 'p', 3930, - 's', 3954, - 't', 3930, - 'u', 3984, - 'w', 3960, - '}', 3110, - 0xb5, 3984, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + '_', 2265, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1036: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - '.', 3316, - ';', 2879, - '=', 610, - '?', 3201, - 'E', 628, - 'e', 530, - 'o', 551, - '{', 3109, - '|', 2880, - '}', 3110, - '\t', 27, - ' ', 27, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + '_', 2265, + 'd', 2266, + 'e', 2242, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1037: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - ';', 2879, - '=', 3694, - 'a', 2776, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2234, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1038: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - ';', 2879, - '=', 3694, - 'a', 798, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2258, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2242, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1039: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - ';', 2879, - 'a', 3985, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2260, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2237, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2236, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 28, + ' ', 28, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1040: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2970, - ';', 2879, - 'a', 798, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 2248, + ';', 2870, + 'E', 2260, + 'G', 2260, + 'K', 2260, + 'M', 2260, + 'P', 2260, + 'T', 2260, + 'd', 2266, + 'e', 2240, + 'g', 2259, + 'h', 2280, + 'k', 2259, + 'm', 2261, + 'n', 2287, + 'o', 2243, + 'p', 2259, + 's', 2269, + 't', 2259, + 'u', 2287, + 'w', 2274, + '|', 2871, + '}', 3100, + 0xb5, 2287, + '\t', 29, + ' ', 29, + 'B', 3429, + 'b', 3429, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1041: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '-', 2981, - ';', 2879, - '=', 3694, - 'a', 3732, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + '.', 3283, + ';', 2870, + '?', 3189, + 'e', 532, + 'o', 527, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); case 1042: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 29, - ' ', 29, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + ';', 2870, + '=', 3661, + 'e', 3667, + 'o', 3666, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 1043: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 3330, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2251, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + ';', 2870, + 'a', 727, + 'e', 532, + 'o', 524, + 'x', 745, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); END_STATE(); case 1044: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - '_', 2274, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 29, - ' ', 29, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 3848, + 'o', 3849, + '|', 2871, + '}', 3100, + '\t', 28, + ' ', 28, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1045: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - '_', 2274, - 'd', 2275, - 'e', 2251, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 2238, + 'o', 2236, + '|', 2871, + '}', 3100, + '\t', 28, + ' ', 28, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1046: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2243, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 3857, + 'o', 3859, + '|', 2871, + '}', 3100, '\t', 29, ' ', 29, - 'B', 3462, - 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 1047: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2267, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2251, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4789, + ')', 2918, + ';', 2870, + 'e', 2241, + 'o', 2243, + '|', 2871, + '}', 3100, + '\t', 29, + ' ', 29, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1048: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2269, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2246, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2245, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 29, - ' ', 29, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4796, + '(', 3220, + ')', 2918, + ';', 2870, + 'a', 4111, + 'e', 4016, + 'o', 4017, + 'x', 4122, + '|', 2871, + '}', 3100, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 1049: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 2257, - ';', 2879, - 'E', 2269, - 'G', 2269, - 'K', 2269, - 'M', 2269, - 'P', 2269, - 'T', 2269, - 'd', 2275, - 'e', 2249, - 'g', 2268, - 'h', 2289, - 'k', 2268, - 'm', 2270, - 'n', 2296, - 'o', 2252, - 'p', 2268, - 's', 2278, - 't', 2268, - 'u', 2296, - 'w', 2283, - '|', 2880, - '}', 3110, - 0xb5, 2296, - '\t', 30, - ' ', 30, - 'B', 3462, - 'b', 3462, + '\n', 2864, + '\r', 24, + '#', 4796, + '(', 3220, + ')', 2918, + ';', 2870, + 'e', 4012, + 'o', 4013, + '|', 2871, + '}', 3100, + '\t', 28, + ' ', 28, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 1050: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - '.', 3316, - ';', 2879, - '?', 3201, - 'e', 540, - 'o', 535, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4796, + '(', 3220, + ')', 2918, + ';', 2870, + 'e', 4016, + 'o', 4018, + '|', 2871, + '}', 3100, + '\t', 2869, + ' ', 2869, ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 1051: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - ';', 2879, - '=', 3694, - 'e', 3700, - 'o', 3699, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, + '\n', 2864, + '\r', 24, + '#', 4796, + '(', 3220, + ')', 2918, + ';', 2870, + 'e', 4016, + 'o', 4018, + '|', 2871, + '}', 3100, + '\t', 29, + ' ', 29, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 1052: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - ';', 2879, - 'a', 737, - 'e', 540, - 'o', 532, - 'x', 756, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4796, + ')', 2918, + '-', 2974, + ';', 2870, + 'a', 4144, + '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); + lookahead == ' ') SKIP(1031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 1053: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 3881, - 'o', 3882, - '|', 2880, - '}', 3110, - '\t', 29, - ' ', 29, + '\n', 2864, + '\r', 24, + '#', 4792, + ')', 2918, + ';', 2870, + 'e', 2158, + 'o', 2159, + '|', 2871, + '}', 3100, + '\t', 28, + ' ', 28, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 1054: - if (eof) ADVANCE(1064); + if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 2247, - 'o', 2245, - '|', 2880, - '}', 3110, + '\n', 2864, + '\r', 24, + '#', 4792, + ')', 2918, + ';', 2870, + 'e', 2162, + 'o', 2163, + '|', 2871, + '}', 3100, '\t', 29, ' ', 29, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 1055: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 3890, - 'o', 3892, - '|', 2880, - '}', 3110, - '\t', 30, - ' ', 30, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); - END_STATE(); - case 1056: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4822, - ')', 2927, - ';', 2879, - 'e', 2250, - 'o', 2252, - '|', 2880, - '}', 3110, - '\t', 30, - ' ', 30, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); - END_STATE(); - case 1057: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4829, - '(', 3232, - ')', 2927, - ';', 2879, - 'a', 4144, - 'e', 4049, - 'o', 4050, - 'x', 4155, - '|', 2880, - '}', 3110, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 1058: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4829, - '(', 3232, - ')', 2927, - ';', 2879, - 'e', 4045, - 'o', 4046, - '|', 2880, - '}', 3110, - '\t', 29, - ' ', 29, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 1059: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4829, - '(', 3232, - ')', 2927, - ';', 2879, - 'e', 4049, - 'o', 4051, - '|', 2880, - '}', 3110, - '\t', 2878, - ' ', 2878, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 1060: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4829, - '(', 3232, - ')', 2927, - ';', 2879, - 'e', 4049, - 'o', 4051, - '|', 2880, - '}', 3110, - '\t', 30, - ' ', 30, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 1061: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4829, - ')', 2927, - '-', 2983, - ';', 2879, - 'a', 4177, - '}', 3110, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1040); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 1062: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4825, - ')', 2927, - ';', 2879, - 'e', 2167, - 'o', 2168, - '|', 2880, - '}', 3110, - '\t', 29, - ' ', 29, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); - END_STATE(); - case 1063: - if (eof) ADVANCE(1064); - ADVANCE_MAP( - '\n', 2873, - '\r', 25, - '#', 4825, - ')', 2927, - ';', 2879, - 'e', 2171, - 'o', 2172, - '|', 2880, - '}', 3110, - '\t', 30, - ' ', 30, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); - END_STATE(); - case 1064: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1065: + case 1056: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1066: + case 1057: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1067: + case 1058: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '\r') ADVANCE(1068); - if (lookahead == '#') ADVANCE(4823); + if (lookahead == '\n') ADVANCE(1057); + if (lookahead == '\r') ADVANCE(1059); + if (lookahead == '#') ADVANCE(4790); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1067); - if (lookahead != 0) ADVANCE(1068); + lookahead == ' ') ADVANCE(1058); + if (lookahead != 0) ADVANCE(1059); END_STATE(); - case 1068: + case 1059: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '\r') ADVANCE(1068); - if (lookahead != 0) ADVANCE(1068); + if (lookahead == '\n') ADVANCE(1057); + if (lookahead == '\r') ADVANCE(1059); + if (lookahead != 0) ADVANCE(1059); END_STATE(); - case 1069: + case 1060: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == '-') ADVANCE(2139); - if (lookahead == '@') ADVANCE(2146); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == '-') ADVANCE(2130); + if (lookahead == '@') ADVANCE(2137); if (lookahead == '.' || - lookahead == '?') ADVANCE(2148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); + lookahead == '?') ADVANCE(2139); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2136); END_STATE(); - case 1070: + case 1061: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == '-') ADVANCE(2140); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == '-') ADVANCE(2131); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2147); + lookahead == '@') ADVANCE(2139); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2138); END_STATE(); - case 1071: + case 1062: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == '-') ADVANCE(2140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == '-') ADVANCE(2131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); END_STATE(); - case 1072: + case 1063: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == '-') ADVANCE(4677); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == '-') ADVANCE(4644); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); - case 1073: + case 1064: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2151); + if (lookahead == '-') ADVANCE(2142); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2158); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2157); + lookahead == '@') ADVANCE(2149); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2148); END_STATE(); - case 1074: + case 1065: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == '-') ADVANCE(2142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 1075: + case 1066: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 1076: + case 1067: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1898); + if (lookahead == ',') ADVANCE(1889); if (lookahead == '-' || - lookahead == '@') ADVANCE(1894); + lookahead == '@') ADVANCE(1885); if (lookahead == '.' || - lookahead == '?') ADVANCE(1896); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1893); + lookahead == '?') ADVANCE(1887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1884); END_STATE(); - case 1077: + case 1068: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4670); + if (lookahead == ',') ADVANCE(1889); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4637); END_STATE(); - case 1078: + case 1069: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1898); + if (lookahead == ',') ADVANCE(1889); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1896); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1895); + lookahead == '@') ADVANCE(1887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); END_STATE(); - case 1079: + case 1070: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); + if (lookahead == ',') ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1887); END_STATE(); - case 1080: + case 1071: ACCEPT_TOKEN(anon_sym_alias); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1898); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1897); + lookahead == '@') ADVANCE(1889); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1888); END_STATE(); - case 1081: + case 1072: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); END_STATE(); - case 1082: + case 1073: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1083: + case 1074: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3769); - if (lookahead == '~') ADVANCE(3770); + if (lookahead == '=') ADVANCE(3736); + if (lookahead == '~') ADVANCE(3737); END_STATE(); - case 1084: + case 1075: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(880); - if (lookahead == '~') ADVANCE(881); + if (lookahead == '=') ADVANCE(867); + if (lookahead == '~') ADVANCE(868); END_STATE(); - case 1085: + case 1076: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(173); - if (lookahead == '~') ADVANCE(174); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '~') ADVANCE(168); END_STATE(); - case 1086: + case 1077: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 1087: + case 1078: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == '-') ADVANCE(1920); - if (lookahead == '@') ADVANCE(1927); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == '-') ADVANCE(1911); + if (lookahead == '@') ADVANCE(1918); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1926); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1917); END_STATE(); - case 1088: + case 1079: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == '-') ADVANCE(1921); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == '-') ADVANCE(1912); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1929); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1928); + lookahead == '@') ADVANCE(1920); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1919); END_STATE(); - case 1089: + case 1080: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == '-') ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == '-') ADVANCE(1912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); END_STATE(); - case 1090: + case 1081: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == '-') ADVANCE(4654); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == '-') ADVANCE(4621); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); - case 1091: + case 1082: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1932); + if (lookahead == '-') ADVANCE(1923); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1939); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1938); + lookahead == '@') ADVANCE(1930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1929); END_STATE(); - case 1092: + case 1083: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == '-') ADVANCE(1923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1093: + case 1084: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1939); + if (lookahead == ',') ADVANCE(1930); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); END_STATE(); - case 1094: + case 1085: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1939); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (lookahead == ',') ADVANCE(1930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); - case 1095: + case 1086: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); + if (lookahead == ',') ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); END_STATE(); - case 1096: + case 1087: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1097: + case 1088: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1945); + if (lookahead == ',') ADVANCE(1936); if (lookahead == '-' || - lookahead == '@') ADVANCE(1941); + lookahead == '@') ADVANCE(1932); if (lookahead == '.' || - lookahead == '?') ADVANCE(1943); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1940); + lookahead == '?') ADVANCE(1934); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1931); END_STATE(); - case 1098: + case 1089: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1945); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); + if (lookahead == ',') ADVANCE(1936); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); END_STATE(); - case 1099: + case 1090: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1945); + if (lookahead == ',') ADVANCE(1936); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1942); + lookahead == '@') ADVANCE(1934); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1933); END_STATE(); - case 1100: + case 1091: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == ',') ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1934); END_STATE(); - case 1101: + case 1092: ACCEPT_TOKEN(anon_sym_mut); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1945); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1944); + lookahead == '@') ADVANCE(1936); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1935); END_STATE(); - case 1102: + case 1093: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 1103: + case 1094: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 1104: + case 1095: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1942); if (lookahead == '-' || - lookahead == '@') ADVANCE(1947); + lookahead == '@') ADVANCE(1938); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1946); + lookahead == '?') ADVANCE(1940); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1937); END_STATE(); - case 1105: + case 1096: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4673); + if (lookahead == ',') ADVANCE(1942); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); END_STATE(); - case 1106: + case 1097: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1942); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); + lookahead == '@') ADVANCE(1940); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1939); END_STATE(); - case 1107: + case 1098: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); + if (lookahead == ',') ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1940); END_STATE(); - case 1108: + case 1099: ACCEPT_TOKEN(anon_sym_const); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); + lookahead == '@') ADVANCE(1942); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1941); END_STATE(); - case 1109: + case 1100: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); END_STATE(); - case 1110: + case 1101: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1111: + case 1102: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1112: + case 1103: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1113: + case 1104: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1114: + case 1105: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1115: + case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3282); - if (lookahead == '\r') ADVANCE(8); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == '\n') ADVANCE(3249); + if (lookahead == '\r') ADVANCE(7); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + lookahead == ' ') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); - case 1116: + case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3296); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == '\n') ADVANCE(3263); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + lookahead == ' ') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); - case 1117: + case 1108: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\n') ADVANCE(3261); + if (lookahead == '\r') ADVANCE(18); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + END_STATE(); + case 1109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3294); + if (lookahead == '\n') ADVANCE(3257); if (lookahead == '\r') ADVANCE(19); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + lookahead == ' ') ADVANCE(3229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); - case 1118: + case 1110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3290); + if (lookahead == '\n') ADVANCE(3258); if (lookahead == '\r') ADVANCE(20); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + lookahead == ' ') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); - case 1119: + case 1111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3291); + if (lookahead == '\n') ADVANCE(3262); if (lookahead == '\r') ADVANCE(21); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + lookahead == ' ') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); - case 1120: + case 1112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3295); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == '$') ADVANCE(3368); + if (lookahead == '(') ADVANCE(3277); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '{') ADVANCE(3514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + END_STATE(); + case 1113: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(3368); + if (lookahead == '(') ADVANCE(3277); + if (lookahead == '{') ADVANCE(3514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + END_STATE(); + case 1114: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '*') ADVANCE(1843); + if (lookahead == '=') ADVANCE(1103); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + lookahead == ' ') ADVANCE(3223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + END_STATE(); + case 1115: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(1738); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'l') ADVANCE(1789); + if (lookahead == 'n') ADVANCE(1631); + if (lookahead == 'r') ADVANCE(1757); + if (lookahead == 'x') ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + END_STATE(); + case 1116: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(1738); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'l') ADVANCE(1789); + if (lookahead == 'r') ADVANCE(1757); + if (lookahead == 'x') ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + END_STATE(); + case 1117: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(1662); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'r') ADVANCE(1845); + if (lookahead == 'u') ADVANCE(1805); + if (lookahead == 'v') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + END_STATE(); + case 1118: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(1662); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(1805); + if (lookahead == 'v') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + END_STATE(); + case 1119: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(1480); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'l') ADVANCE(1521); + if (lookahead == 'r') ADVANCE(1499); + if (lookahead == 'x') ADVANCE(1491); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + END_STATE(); + case 1120: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(1424); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'u') ADVANCE(1544); + if (lookahead == 'v') ADVANCE(1425); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3401); - if (lookahead == '(') ADVANCE(3310); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '{') ADVANCE(3547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '+') ADVANCE(1482); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(854); + if (lookahead == 'o') ADVANCE(1496); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3401); - if (lookahead == '(') ADVANCE(3310); - if (lookahead == '{') ADVANCE(3547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '+') ADVANCE(1741); + if (lookahead == '>') ADVANCE(3606); + if (lookahead == 'o') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '*') ADVANCE(1852); - if (lookahead == '=') ADVANCE(1112); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '+') ADVANCE(1670); + if (lookahead == '>') ADVANCE(3610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1747); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'l') ADVANCE(1798); - if (lookahead == 'n') ADVANCE(1640); - if (lookahead == 'r') ADVANCE(1766); - if (lookahead == 'x') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '+') ADVANCE(1421); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(856); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1747); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'l') ADVANCE(1798); - if (lookahead == 'r') ADVANCE(1766); - if (lookahead == 'x') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1671); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'r') ADVANCE(1854); - if (lookahead == 'u') ADVANCE(1814); - if (lookahead == 'v') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(1284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1671); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(1814); - if (lookahead == 'v') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1489); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'l') ADVANCE(1530); - if (lookahead == 'r') ADVANCE(1508); - if (lookahead == 'x') ADVANCE(1500); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1433); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'u') ADVANCE(1553); - if (lookahead == 'v') ADVANCE(1434); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(1147); + if (lookahead == '_') ADVANCE(1129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1491); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(866); - if (lookahead == 'o') ADVANCE(1505); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(3106); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1750); - if (lookahead == '>') ADVANCE(3639); - if (lookahead == 'o') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(1133); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1679); - if (lookahead == '>') ADVANCE(3643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(1133); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1430); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(868); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(3280); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(1152); + if (lookahead == '_') ADVANCE(1135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == ':') ADVANCE(3754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(1269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '=') ADVANCE(1105); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1156); - if (lookahead == '_') ADVANCE(1138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '=') ADVANCE(3212); + if (lookahead == '~') ADVANCE(3218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(3118); - if (lookahead == '_') ADVANCE(1157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ADVANCE_MAP( + ',', 1875, + 'I', 1314, + '_', 1159, + 'i', 1314, + 'l', 1279, + 'r', 1269, + 'x', 1259, + '+', 1159, + '-', 1159, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1142); - if (lookahead == '_') ADVANCE(1157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ADVANCE_MAP( + ',', 1875, + 'I', 1314, + '_', 1159, + 'i', 1171, + '+', 1159, + '-', 1159, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1142); - if (lookahead == '_') ADVANCE(1162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ADVANCE_MAP( + ',', 1875, + 'I', 1314, + 'a', 1227, + 'i', 1245, + 'o', 1177, + 's', 3434, + 'u', 1286, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ADVANCE_MAP( + ',', 1875, + 'I', 1314, + 'i', 1314, + 'l', 1279, + 'r', 1269, + 'x', 1259, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(3313); - if (lookahead == '_') ADVANCE(1162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1314); + if (lookahead == 'i') ADVANCE(1314); + if (lookahead == 'r') ADVANCE(1301); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1161); - if (lookahead == '_') ADVANCE(1144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1314); + if (lookahead == 'i') ADVANCE(1314); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == ':') ADVANCE(3787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1314); + if (lookahead == 'i') ADVANCE(1171); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '=') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'N') ADVANCE(1315); + if (lookahead == 'f') ADVANCE(3080); + if (lookahead == 'n') ADVANCE(3041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '=') ADVANCE(3224); - if (lookahead == '~') ADVANCE(3230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1884, - 'I', 1323, - '_', 1168, - 'i', 1323, - 'l', 1288, - 'r', 1278, - 'x', 1268, - '+', 1168, - '-', 1168, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1884, - 'I', 1323, - '_', 1168, - 'i', 1180, - '+', 1168, - '-', 1168, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1150); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1884, - 'I', 1323, - 'a', 1236, - 'i', 1254, - 'o', 1186, - 's', 3467, - 'u', 1295, - 'B', 3462, - 'b', 3462, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1884, - 'I', 1323, - 'i', 1323, - 'l', 1288, - 'r', 1278, - 'x', 1268, - 'B', 3462, - 'b', 3462, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1151); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'I') ADVANCE(1323); - if (lookahead == 'i') ADVANCE(1323); - if (lookahead == 'r') ADVANCE(1310); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'I') ADVANCE(1323); - if (lookahead == 'i') ADVANCE(1323); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'I') ADVANCE(1323); - if (lookahead == 'i') ADVANCE(1180); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1155); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'N') ADVANCE(1324); - if (lookahead == 'f') ADVANCE(3090); - if (lookahead == 'n') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1156); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(1159); + if (lookahead == 'l') ADVANCE(1279); + if (lookahead == 'r') ADVANCE(1269); + if (lookahead == 'x') ADVANCE(1259); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1159); if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1239); + if (lookahead == 'o') ADVANCE(1265); + if (lookahead == 's') ADVANCE(1206); + if (lookahead == 'x') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1227); + if (lookahead == 'o') ADVANCE(1177); + if (lookahead == 'u') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1164); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1238); + if (lookahead == 'o') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1168); - if (lookahead == 'l') ADVANCE(1288); - if (lookahead == 'r') ADVANCE(1278); - if (lookahead == 'x') ADVANCE(1268); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1311); + if (lookahead == 'e') ADVANCE(1204); + if (lookahead == 'o') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1168); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(1168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1291); + if (lookahead == 'o') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1248); - if (lookahead == 'o') ADVANCE(1274); - if (lookahead == 's') ADVANCE(1215); - if (lookahead == 'x') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1236); - if (lookahead == 'o') ADVANCE(1186); - if (lookahead == 'u') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'c') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1247); - if (lookahead == 'o') ADVANCE(1271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1320); - if (lookahead == 'e') ADVANCE(1213); - if (lookahead == 'o') ADVANCE(3083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1300); - if (lookahead == 'o') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'd') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'd') ADVANCE(1108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'd') ADVANCE(1187); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'c') ADVANCE(1189); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'c') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'c') ADVANCE(1220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'c') ADVANCE(1221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'c') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'd') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'd') ADVANCE(1117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'd') ADVANCE(1196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1306); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'u') ADVANCE(1234); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1306); + if (lookahead == 'u') ADVANCE(1234); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1204); + if (lookahead == 'o') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1173); + if (lookahead == 'o') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1285); + if (lookahead == 'i') ADVANCE(1280); + if (lookahead == 'o') ADVANCE(1250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1315); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'u') ADVANCE(1243); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1315); - if (lookahead == 'u') ADVANCE(1243); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'f') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'f') ADVANCE(2884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1213); - if (lookahead == 'o') ADVANCE(3083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'g') ADVANCE(1223); + if (lookahead == 't') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1182); - if (lookahead == 'o') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1294); - if (lookahead == 'i') ADVANCE(1289); - if (lookahead == 'o') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(1279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'f') ADVANCE(2946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'f') ADVANCE(2893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'g') ADVANCE(1232); - if (lookahead == 't') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1222); + if (lookahead == 'k') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1179); + if (lookahead == 'r') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(1231); - if (lookahead == 'k') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'k') ADVANCE(3023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1188); - if (lookahead == 'r') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'k') ADVANCE(1188); + if (lookahead == 't') ADVANCE(1175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1188); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1109); + if (lookahead == 'r') ADVANCE(1110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1220); + if (lookahead == 's') ADVANCE(3180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'k') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'k') ADVANCE(1197); - if (lookahead == 't') ADVANCE(1184); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1279); + if (lookahead == 'r') ADVANCE(1269); + if (lookahead == 'x') ADVANCE(1259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(3205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1229); - if (lookahead == 's') ADVANCE(3192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1198); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(3133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1288); - if (lookahead == 'r') ADVANCE(1278); - if (lookahead == 'x') ADVANCE(1268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(1187); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(3217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(2904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(3145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(3053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1181); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1252); + if (lookahead == 't') ADVANCE(1202); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(1277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(3035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(1178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(3149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(1190); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(1172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(1261); - if (lookahead == 't') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(1179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(3045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(3161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(3437); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1186); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1288); + if (lookahead == 't') ADVANCE(1221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1183); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(1185); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 's') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(3470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1297); - if (lookahead == 't') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 's') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(2952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1183); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1182); + if (lookahead == 'y') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'v') ADVANCE(1199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(3173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(1224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'u') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(1225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'u') ADVANCE(1191); - if (lookahead == 'y') ADVANCE(3131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'y') ADVANCE(3166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'u') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'y') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'u') ADVANCE(1245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'y') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'u') ADVANCE(1281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'v') ADVANCE(1208); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(3185); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(1225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'y') ADVANCE(3178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'y') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'y') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3421); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == ',') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3454); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '-') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '-') ADVANCE(1837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '-') ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '-') ADVANCE(1872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '-') ADVANCE(1838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '_') ADVANCE(1337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '.') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + if (lookahead == '.') ADVANCE(1339); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '.') ADVANCE(1339); + if (lookahead == '_') ADVANCE(1598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '.') ADVANCE(3279); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '.') ADVANCE(3107); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '_') ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1601); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '/') ADVANCE(1844); + if (lookahead == '=') ADVANCE(1104); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == ':') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(1103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1348); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(1104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1348); - if (lookahead == '_') ADVANCE(1607); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(1105); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(1105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3312); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(853); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3119); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(855); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1606); - if (lookahead == '_') ADVANCE(1354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(857); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '/') ADVANCE(1853); - if (lookahead == '=') ADVANCE(1113); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '>') ADVANCE(858); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'N') ADVANCE(1567); + if (lookahead == 'f') ADVANCE(3081); + if (lookahead == 'n') ADVANCE(2098); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'N') ADVANCE(1567); + if (lookahead == 'f') ADVANCE(3081); + if (lookahead == 'n') ADVANCE(3044); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'N') ADVANCE(1567); + if (lookahead == 'f') ADVANCE(2029); + if (lookahead == 'n') ADVANCE(2098); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == '_') ADVANCE(1359); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1532); + if (lookahead == 'o') ADVANCE(1469); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(865); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1532); + if (lookahead == 'o') ADVANCE(1475); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(867); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1532); + if (lookahead == 'o') ADVANCE(1477); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(869); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1467); + if (lookahead == 'o') ADVANCE(1493); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '>') ADVANCE(870); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1467); + if (lookahead == 'o') ADVANCE(1494); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'N') ADVANCE(1576); - if (lookahead == 'f') ADVANCE(3091); - if (lookahead == 'n') ADVANCE(2107); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1451); + if (lookahead == 'o') ADVANCE(1382); + if (lookahead == 'u') ADVANCE(1534); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'N') ADVANCE(1576); - if (lookahead == 'f') ADVANCE(3091); - if (lookahead == 'n') ADVANCE(3054); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1451); + if (lookahead == 'o') ADVANCE(1385); + if (lookahead == 'u') ADVANCE(1537); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'N') ADVANCE(1576); - if (lookahead == 'f') ADVANCE(2038); - if (lookahead == 'n') ADVANCE(2107); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1449); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == '_') ADVANCE(1368); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1564); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1541); - if (lookahead == 'o') ADVANCE(1478); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1450); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1541); - if (lookahead == 'o') ADVANCE(1484); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1565); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1541); - if (lookahead == 'o') ADVANCE(1486); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1518); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1476); - if (lookahead == 'o') ADVANCE(1502); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1519); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1476); - if (lookahead == 'o') ADVANCE(1503); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1453); + if (lookahead == 'o') ADVANCE(1382); + if (lookahead == 'u') ADVANCE(1534); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1460); - if (lookahead == 'o') ADVANCE(1391); - if (lookahead == 'u') ADVANCE(1543); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1545); + if (lookahead == 'o') ADVANCE(1469); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1460); - if (lookahead == 'o') ADVANCE(1394); - if (lookahead == 'u') ADVANCE(1546); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'a') ADVANCE(1452); + if (lookahead == 'o') ADVANCE(1385); + if (lookahead == 'u') ADVANCE(1537); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1458); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'c') ADVANCE(1434); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1573); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'c') ADVANCE(1435); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1459); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'c') ADVANCE(1437); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1574); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'c') ADVANCE(1436); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1527); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'c') ADVANCE(1399); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1528); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'c') ADVANCE(1407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1462); - if (lookahead == 'o') ADVANCE(1391); - if (lookahead == 'u') ADVANCE(1543); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'd') ADVANCE(1557); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1554); - if (lookahead == 'o') ADVANCE(1478); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'd') ADVANCE(1391); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'a') ADVANCE(1461); - if (lookahead == 'o') ADVANCE(1394); - if (lookahead == 'u') ADVANCE(1546); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'd') ADVANCE(1406); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'c') ADVANCE(1443); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'd') ADVANCE(1559); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'c') ADVANCE(1444); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1428); + if (lookahead == 'o') ADVANCE(3074); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'c') ADVANCE(1446); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1562); + if (lookahead == 'o') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1457); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1570); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'c') ADVANCE(1445); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1430); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'c') ADVANCE(1408); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2910); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'c') ADVANCE(1416); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2035); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'd') ADVANCE(1566); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3157); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'd') ADVANCE(1400); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2128); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'd') ADVANCE(1415); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2150); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'd') ADVANCE(1568); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1894); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1437); - if (lookahead == 'o') ADVANCE(3084); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2195); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1571); - if (lookahead == 'o') ADVANCE(1544); - if (lookahead == 'u') ADVANCE(1466); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1579); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3190); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1439); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3067); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2919); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2903); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2044); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3140); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3169); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2011); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2137); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1909); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2159); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3030); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1903); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(2065); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2204); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3089); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3202); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(3061); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1953); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2912); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1973); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3152); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1533); + if (lookahead == 'i') ADVANCE(1522); + if (lookahead == 'o') ADVANCE(1479); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2020); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1533); + if (lookahead == 'i') ADVANCE(1526); + if (lookahead == 'o') ADVANCE(1479); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1918); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1429); + if (lookahead == 'o') ADVANCE(3074); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3040); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1429); + if (lookahead == 'o') ADVANCE(2023); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(2074); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1563); + if (lookahead == 'o') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1457); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1570); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3099); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1367); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(3071); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1507); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1962); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1369); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1982); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1504); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); + if (lookahead == '=') ADVANCE(3602); if (lookahead == 'e') ADVANCE(1542); - if (lookahead == 'i') ADVANCE(1531); - if (lookahead == 'o') ADVANCE(1488); + if (lookahead == 'i') ADVANCE(1522); + if (lookahead == 'o') ADVANCE(1481); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1542); - if (lookahead == 'i') ADVANCE(1535); - if (lookahead == 'o') ADVANCE(1488); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1497); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1438); - if (lookahead == 'o') ADVANCE(3084); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1506); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1438); - if (lookahead == 'o') ADVANCE(2032); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1498); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1572); - if (lookahead == 'o') ADVANCE(1544); - if (lookahead == 'u') ADVANCE(1466); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1579); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1513); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1376); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'i') ADVANCE(1460); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1516); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 'i') ADVANCE(1462); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1378); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1353); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1513); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1509); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1551); - if (lookahead == 'i') ADVANCE(1531); - if (lookahead == 'o') ADVANCE(1490); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1432); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1506); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'e') ADVANCE(1431); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1515); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'f') ADVANCE(2885); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1507); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'f') ADVANCE(1882); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1522); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'g') ADVANCE(1445); + if (lookahead == 't') ADVANCE(1552); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1520); - if (lookahead == 'i') ADVANCE(1469); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'g') ADVANCE(1448); + if (lookahead == 't') ADVANCE(1552); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1520); - if (lookahead == 'i') ADVANCE(1471); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'g') ADVANCE(1448); + if (lookahead == 't') ADVANCE(1555); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1362); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(1422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1518); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(2047); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1441); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(3097); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'e') ADVANCE(1440); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(2053); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'f') ADVANCE(2894); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(3127); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'f') ADVANCE(1891); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(1446); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'g') ADVANCE(1454); - if (lookahead == 't') ADVANCE(1561); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(1423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'g') ADVANCE(1457); - if (lookahead == 't') ADVANCE(1561); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1383); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'g') ADVANCE(1457); - if (lookahead == 't') ADVANCE(1564); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(1431); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1474); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(2056); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1384); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(3107); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1372); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(2062); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1524); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(3139); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1462); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(1455); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1476); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'h') ADVANCE(1432); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'i') ADVANCE(1531); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1392); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'k') ADVANCE(3024); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1380); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'k') ADVANCE(2059); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1483); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'k') ADVANCE(1392); + if (lookahead == 't') ADVANCE(1377); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1393); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'k') ADVANCE(1392); + if (lookahead == 't') ADVANCE(1379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1381); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'k') ADVANCE(1405); + if (lookahead == 't') ADVANCE(1377); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1533); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(2203); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1471); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1441); + if (lookahead == 's') ADVANCE(2077); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1485); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1441); + if (lookahead == 's') ADVANCE(3181); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'i') ADVANCE(1540); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1454); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'k') ADVANCE(3034); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'k') ADVANCE(2068); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'k') ADVANCE(1401); - if (lookahead == 't') ADVANCE(1386); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1397); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'k') ADVANCE(1401); - if (lookahead == 't') ADVANCE(1388); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1398); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'k') ADVANCE(1414); - if (lookahead == 't') ADVANCE(1386); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1400); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(2212); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1450); - if (lookahead == 's') ADVANCE(2086); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1521); + if (lookahead == 'r') ADVANCE(1503); + if (lookahead == 'x') ADVANCE(1490); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1450); - if (lookahead == 's') ADVANCE(3193); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1521); + if (lookahead == 'r') ADVANCE(1516); + if (lookahead == 'x') ADVANCE(1491); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1463); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1444); + if (lookahead == 's') ADVANCE(2077); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1377); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1525); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1379); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'l') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(1503); + if (lookahead == 'x') ADVANCE(1490); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1406); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(1523); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1407); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(2896); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1409); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(3134); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1410); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(1903); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1530); - if (lookahead == 'r') ADVANCE(1512); - if (lookahead == 'x') ADVANCE(1499); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(2071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1530); - if (lookahead == 'r') ADVANCE(1525); - if (lookahead == 'x') ADVANCE(1500); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(1553); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1453); - if (lookahead == 's') ADVANCE(2086); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(1527); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1534); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(1556); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'l') ADVANCE(1538); - if (lookahead == 'r') ADVANCE(1512); - if (lookahead == 'x') ADVANCE(1499); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'n') ADVANCE(1528); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(1532); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1549); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(2905); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1488); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(3146); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1352); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(1912); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1489); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(2080); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1554); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(1562); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1495); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(1536); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1510); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(1565); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1496); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'n') ADVANCE(1537); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'o') ADVANCE(1512); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); + if (lookahead == '=') ADVANCE(3602); if (lookahead == 'o') ADVANCE(1558); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1497); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'p') ADVANCE(3054); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1361); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'p') ADVANCE(2005); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1498); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'p') ADVANCE(1484); + if (lookahead == 't') ADVANCE(1416); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1563); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'p') ADVANCE(1486); + if (lookahead == 't') ADVANCE(1419); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1504); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1550); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1519); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(3036); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1505); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1999); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1521); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(2932); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'o') ADVANCE(1567); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(2017); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'p') ADVANCE(3064); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(3150); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'p') ADVANCE(2014); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1993); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'p') ADVANCE(1493); - if (lookahead == 't') ADVANCE(1425); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1121); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'p') ADVANCE(1495); - if (lookahead == 't') ADVANCE(1428); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1413); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1559); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1551); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(3046); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(2008); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1483); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(2941); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1470); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(2026); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1471); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(3162); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1472); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(2002); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1458); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1130); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1473); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1422); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1459); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1560); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1540); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1389); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1492); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1543); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1479); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1517); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1480); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1481); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1467); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1485); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1482); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'r') ADVANCE(1355); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1468); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1549); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1888); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1405); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1389); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1552); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1390); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1526); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1536); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1424); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1538); + if (lookahead == 't') ADVANCE(1442); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1390); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1547); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1494); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1395); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'r') ADVANCE(1364); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1541); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1080); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1539); + if (lookahead == 't') ADVANCE(1442); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1897); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1539); + if (lookahead == 't') ADVANCE(1447); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1398); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1399); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1394); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1545); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 's') ADVANCE(1548); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1547); - if (lookahead == 't') ADVANCE(1451); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1556); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1082); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1404); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1092); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1550); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1574); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1548); - if (lookahead == 't') ADVANCE(1451); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(2116); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1548); - if (lookahead == 't') ADVANCE(1456); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1935); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1413); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1099); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1403); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1941); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 's') ADVANCE(1557); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1064); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1385); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(2944); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1091); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1921); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1101); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(2140); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1583); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1124); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(2125); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1378); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1944); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1354); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1108); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1418); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1950); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 't') ADVANCE(1420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1073); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1502); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(2953); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1393); + if (lookahead == 'y') ADVANCE(3120); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1930); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1393); + if (lookahead == 'y') ADVANCE(2041); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(2149); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1505); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1133); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1402); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1387); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1546); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1363); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1508); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1427); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 't') ADVANCE(1429); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1461); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1511); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1515); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1402); - if (lookahead == 'y') ADVANCE(3132); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'u') ADVANCE(1463); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1402); - if (lookahead == 'y') ADVANCE(2050); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'v') ADVANCE(1414); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1514); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'v') ADVANCE(1425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1411); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'w') ADVANCE(2122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1555); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'w') ADVANCE(3174); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1517); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'y') ADVANCE(3167); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1412); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'y') ADVANCE(1987); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1470); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1570); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1524); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2213); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'u') ADVANCE(1472); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1572); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'v') ADVANCE(1423); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1567); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'v') ADVANCE(1434); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'w') ADVANCE(2131); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1568); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'w') ADVANCE(3186); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1573); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'y') ADVANCE(3179); + if (lookahead == '=') ADVANCE(3602); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'y') ADVANCE(1996); + if (lookahead == '=') ADVANCE(3602); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1579); + if (lookahead == '=') ADVANCE(3602); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + lookahead == '@') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2222); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == '=') ADVANCE(862); + if (lookahead == '~') ADVANCE(1842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1581); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == '>') ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1576); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == '>') ADVANCE(3630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1577); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1582); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + ADVANCE_MAP( + 'I', 1857, + '_', 1604, + 'i', 1857, + 'l', 1794, + 'r', 1781, + 'x', 1752, + '+', 1604, + '-', 1604, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == 'I') ADVANCE(1857); + if (lookahead == '_') ADVANCE(1604); + if (lookahead == 'i') ADVANCE(1621); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1604); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + ADVANCE_MAP( + 'I', 1857, + 'a', 1709, + 'i', 1730, + 'o', 1636, + 's', 3434, + 'u', 1799, + 'B', 3429, + 'b', 3429, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3635); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); + if (lookahead == 'I') ADVANCE(1857); + if (lookahead == 'i') ADVANCE(1857); + if (lookahead == 'l') ADVANCE(1794); + if (lookahead == 'r') ADVANCE(1781); + if (lookahead == 'x') ADVANCE(1752); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(875); - if (lookahead == '~') ADVANCE(1851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1857); + if (lookahead == 'i') ADVANCE(1857); + if (lookahead == 'r') ADVANCE(1822); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1857); + if (lookahead == 'i') ADVANCE(1857); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1857); + if (lookahead == 'i') ADVANCE(1621); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N') ADVANCE(1858); + if (lookahead == 'f') ADVANCE(2030); + if (lookahead == 'n') ADVANCE(2099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N') ADVANCE(1858); + if (lookahead == 'f') ADVANCE(3082); + if (lookahead == 'n') ADVANCE(3045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 1866, - '_', 1613, - 'i', 1866, - 'l', 1803, - 'r', 1790, - 'x', 1761, - '+', 1613, - '-', 1613, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N') ADVANCE(1858); + if (lookahead == 'f') ADVANCE(3082); + if (lookahead == 'n') ADVANCE(3043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1866); - if (lookahead == '_') ADVANCE(1613); - if (lookahead == 'i') ADVANCE(1630); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1613); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N') ADVANCE(1858); + if (lookahead == 'f') ADVANCE(3082); + if (lookahead == 'n') ADVANCE(2099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 1866, - 'a', 1718, - 'i', 1739, - 'o', 1645, - 's', 3467, - 'u', 1808, - 'B', 3462, - 'b', 3462, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1866); - if (lookahead == 'i') ADVANCE(1866); - if (lookahead == 'l') ADVANCE(1803); - if (lookahead == 'r') ADVANCE(1790); - if (lookahead == 'x') ADVANCE(1761); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1866); - if (lookahead == 'i') ADVANCE(1866); - if (lookahead == 'r') ADVANCE(1831); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1595); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1866); - if (lookahead == 'i') ADVANCE(1866); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1866); - if (lookahead == 'i') ADVANCE(1630); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1867); - if (lookahead == 'f') ADVANCE(2039); - if (lookahead == 'n') ADVANCE(2108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1867); - if (lookahead == 'f') ADVANCE(3092); - if (lookahead == 'n') ADVANCE(3055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1867); - if (lookahead == 'f') ADVANCE(3092); - if (lookahead == 'n') ADVANCE(3053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1600); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1867); - if (lookahead == 'f') ADVANCE(3092); - if (lookahead == 'n') ADVANCE(2108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1601); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '_') ADVANCE(1604); + if (lookahead == 'l') ADVANCE(1789); + if (lookahead == 'r') ADVANCE(1780); + if (lookahead == 'x') ADVANCE(1751); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1604); if (lookahead == '+' || lookahead == '-') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1605); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1802); + if (lookahead == 'o') ADVANCE(1727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1723); + if (lookahead == 'o') ADVANCE(1758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1607); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1723); + if (lookahead == 'o') ADVANCE(1753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1609); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1708); + if (lookahead == 'o') ADVANCE(1630); + if (lookahead == 'u') ADVANCE(1804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1708); + if (lookahead == 'o') ADVANCE(1629); + if (lookahead == 'u') ADVANCE(1804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1613); - if (lookahead == 'l') ADVANCE(1798); - if (lookahead == 'r') ADVANCE(1789); - if (lookahead == 'x') ADVANCE(1760); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1613); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1811); - if (lookahead == 'o') ADVANCE(1736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1732); - if (lookahead == 'o') ADVANCE(1767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1841); + if (lookahead == 'e') ADVANCE(1677); + if (lookahead == 'o') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1732); - if (lookahead == 'o') ADVANCE(1762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1717); - if (lookahead == 'o') ADVANCE(1639); - if (lookahead == 'u') ADVANCE(1813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1734); + if (lookahead == 'o') ADVANCE(1771); + if (lookahead == 's') ADVANCE(1685); + if (lookahead == 'x') ADVANCE(1745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1717); - if (lookahead == 'o') ADVANCE(1638); - if (lookahead == 'u') ADVANCE(1813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1709); + if (lookahead == 'o') ADVANCE(1636); + if (lookahead == 'u') ADVANCE(1799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1817); + if (lookahead == 'o') ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1850); - if (lookahead == 'e') ADVANCE(1686); - if (lookahead == 'o') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1743); - if (lookahead == 'o') ADVANCE(1780); - if (lookahead == 's') ADVANCE(1694); - if (lookahead == 'x') ADVANCE(1754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1718); - if (lookahead == 'o') ADVANCE(1645); - if (lookahead == 'u') ADVANCE(1808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1826); - if (lookahead == 'o') ADVANCE(1742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1678); + if (lookahead == 'o') ADVANCE(3075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1836); + if (lookahead == 'o') ADVANCE(1813); + if (lookahead == 'u') ADVANCE(1713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1836); + if (lookahead == 'u') ADVANCE(1713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1687); - if (lookahead == 'o') ADVANCE(3085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1845); - if (lookahead == 'o') ADVANCE(1822); - if (lookahead == 'u') ADVANCE(1722); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1845); - if (lookahead == 'u') ADVANCE(1722); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1803); + if (lookahead == 'i') ADVANCE(1788); + if (lookahead == 'o') ADVANCE(1739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1677); + if (lookahead == 'o') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1835); + if (lookahead == 'o') ADVANCE(1810); + if (lookahead == 'u') ADVANCE(1713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1835); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'u') ADVANCE(1713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1835); + if (lookahead == 'u') ADVANCE(1713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1622); + if (lookahead == 'o') ADVANCE(1831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1812); - if (lookahead == 'i') ADVANCE(1797); - if (lookahead == 'o') ADVANCE(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1686); - if (lookahead == 'o') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1619); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1809); + if (lookahead == 'i') ADVANCE(1795); + if (lookahead == 'o') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1844); - if (lookahead == 'o') ADVANCE(1819); - if (lookahead == 'u') ADVANCE(1722); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1844); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'u') ADVANCE(1722); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1844); - if (lookahead == 'u') ADVANCE(1722); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1631); - if (lookahead == 'o') ADVANCE(1840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'f') ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'f') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'g') ADVANCE(1701); + if (lookahead == 't') ADVANCE(1824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1818); - if (lookahead == 'i') ADVANCE(1804); - if (lookahead == 'o') ADVANCE(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'g') ADVANCE(1705); + if (lookahead == 't') ADVANCE(1827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1710); - if (lookahead == 't') ADVANCE(1833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1714); - if (lookahead == 't') ADVANCE(1836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1703); + if (lookahead == 'k') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1812); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1712); - if (lookahead == 'k') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1635); + if (lookahead == 'r') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1712); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1821); - if (lookahead == 'r') ADVANCE(1670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'k') ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1644); - if (lookahead == 'r') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'k') ADVANCE(3025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'k') ADVANCE(1652); + if (lookahead == 't') ADVANCE(1624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'k') ADVANCE(1639); + if (lookahead == 't') ADVANCE(1626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1692); + if (lookahead == 'n') ADVANCE(1632); + if (lookahead == 's') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1692); + if (lookahead == 's') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1851); + if (lookahead == 'r') ADVANCE(1852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1661); - if (lookahead == 't') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1648); - if (lookahead == 't') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1701); - if (lookahead == 'n') ADVANCE(1641); - if (lookahead == 's') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1701); - if (lookahead == 's') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1789); + if (lookahead == 'r') ADVANCE(1780); + if (lookahead == 'x') ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1700); + if (lookahead == 's') ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1622); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1794); + if (lookahead == 'r') ADVANCE(1781); + if (lookahead == 'x') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1860); - if (lookahead == 'r') ADVANCE(1861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(2072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(3135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1798); - if (lookahead == 'r') ADVANCE(1789); - if (lookahead == 'x') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1709); - if (lookahead == 's') ADVANCE(2087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1803); - if (lookahead == 'r') ADVANCE(1790); - if (lookahead == 'x') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1821); + if (lookahead == 't') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1805); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1830); - if (lookahead == 't') ADVANCE(1628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'p') ADVANCE(2006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1744); + if (lookahead == 't') ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1747); + if (lookahead == 't') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(2000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(3037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(2934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1753); - if (lookahead == 't') ADVANCE(1678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(3151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1756); - if (lookahead == 't') ADVANCE(1682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3163); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(3436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1807); + if (lookahead == 't') ADVANCE(1693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3469); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1342); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1801); + if (lookahead == 't') ADVANCE(1704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 's') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1816); - if (lookahead == 't') ADVANCE(1702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(2117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1810); - if (lookahead == 't') ADVANCE(1713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1345); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(2141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 't') ADVANCE(1798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1341); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1343); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1643); + if (lookahead == 'y') ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1643); + if (lookahead == 'y') ADVANCE(3121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1718); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1652); - if (lookahead == 'y') ADVANCE(2051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1652); - if (lookahead == 'y') ADVANCE(3133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'v') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'v') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'w') ADVANCE(2123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'w') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'w') ADVANCE(1697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1727); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'w') ADVANCE(1702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'y') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'y') ADVANCE(3168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'y') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(3187); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3180); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + lookahead == ' ') ADVANCE(3229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + lookahead == ' ') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + lookahead == ' ') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + lookahead == ' ') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + lookahead == ' ') ADVANCE(3241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3421); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1347); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1874: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1875: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1876: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3454); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1877: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1878: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1356); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1879: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1880: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1881: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1882: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); - END_STATE(); - case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); - case 1884: + case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); - case 1885: + case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || - lookahead == '@') ADVANCE(1887); + lookahead == '@') ADVANCE(1878); if (lookahead == '.' || - lookahead == '?') ADVANCE(1890); + lookahead == '?') ADVANCE(1881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1885); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1876); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); END_STATE(); - case 1886: + case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || - lookahead == '@') ADVANCE(1887); + lookahead == '@') ADVANCE(1878); if (lookahead == '.' || - lookahead == '?') ADVANCE(1890); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); + lookahead == '?') ADVANCE(1881); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); END_STATE(); - case 1887: + case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '.' || - lookahead == '?') ADVANCE(1890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1887); + lookahead == '?') ADVANCE(1881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1878); END_STATE(); - case 1888: + case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1890); + lookahead == '@') ADVANCE(1881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1888); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1889); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1879); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); END_STATE(); - case 1889: + case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1890); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1889); + lookahead == '@') ADVANCE(1881); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); END_STATE(); - case 1890: + case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1890); + if (lookahead == ',') ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1881); END_STATE(); - case 1891: + case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1891); + lookahead == '@') ADVANCE(1883); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1882); END_STATE(); - case 1892: + case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); END_STATE(); - case 1893: + case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1898); + if (lookahead == ',') ADVANCE(1889); if (lookahead == '-' || - lookahead == '@') ADVANCE(1894); + lookahead == '@') ADVANCE(1885); if (lookahead == '.' || - lookahead == '?') ADVANCE(1896); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1893); + lookahead == '?') ADVANCE(1887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1884); END_STATE(); - case 1894: + case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1898); + if (lookahead == ',') ADVANCE(1889); if (lookahead == '.' || - lookahead == '?') ADVANCE(1896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1894); + lookahead == '?') ADVANCE(1887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1885); END_STATE(); - case 1895: + case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1898); + if (lookahead == ',') ADVANCE(1889); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1896); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1895); + lookahead == '@') ADVANCE(1887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); END_STATE(); - case 1896: + case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); + if (lookahead == ',') ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1887); END_STATE(); - case 1897: + case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1898); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1897); + lookahead == '@') ADVANCE(1889); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1888); END_STATE(); - case 1898: + case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); END_STATE(); - case 1899: + case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1904); + if (lookahead == ',') ADVANCE(1895); if (lookahead == '-' || - lookahead == '@') ADVANCE(1900); + lookahead == '@') ADVANCE(1891); if (lookahead == '.' || - lookahead == '?') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); + lookahead == '?') ADVANCE(1893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1890); END_STATE(); - case 1900: + case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1904); + if (lookahead == ',') ADVANCE(1895); if (lookahead == '.' || - lookahead == '?') ADVANCE(1902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1900); + lookahead == '?') ADVANCE(1893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1891); END_STATE(); - case 1901: + case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1904); + if (lookahead == ',') ADVANCE(1895); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); + lookahead == '@') ADVANCE(1893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1892); END_STATE(); - case 1902: + case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); + if (lookahead == ',') ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1893); END_STATE(); - case 1903: + case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1904); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); + lookahead == '@') ADVANCE(1895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1894); END_STATE(); - case 1904: + case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); END_STATE(); - case 1905: + case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1907); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '.' || - lookahead == '?') ADVANCE(1906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1905); + lookahead == '?') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); END_STATE(); - case 1906: + case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1906); + if (lookahead == ',') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1897); END_STATE(); - case 1907: + case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); - case 1908: + case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1913); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || - lookahead == '@') ADVANCE(1909); + lookahead == '@') ADVANCE(1900); if (lookahead == '.' || - lookahead == '?') ADVANCE(1911); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1908); + lookahead == '?') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); END_STATE(); - case 1909: + case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1913); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '.' || - lookahead == '?') ADVANCE(1911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1909); + lookahead == '?') ADVANCE(1902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1900); END_STATE(); - case 1910: + case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1913); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1911); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1910); + lookahead == '@') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); END_STATE(); - case 1911: + case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1911); + if (lookahead == ',') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); END_STATE(); - case 1912: + case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1913); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1912); + lookahead == '@') ADVANCE(1904); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); END_STATE(); - case 1913: + case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); - case 1914: + case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1919); + if (lookahead == ',') ADVANCE(1910); if (lookahead == '-' || - lookahead == '@') ADVANCE(1915); + lookahead == '@') ADVANCE(1906); if (lookahead == '.' || - lookahead == '?') ADVANCE(1917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1914); + lookahead == '?') ADVANCE(1908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1905); END_STATE(); - case 1915: + case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1919); + if (lookahead == ',') ADVANCE(1910); if (lookahead == '.' || - lookahead == '?') ADVANCE(1917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1915); + lookahead == '?') ADVANCE(1908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1906); END_STATE(); - case 1916: + case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1919); + if (lookahead == ',') ADVANCE(1910); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1916); + lookahead == '@') ADVANCE(1908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1907); END_STATE(); - case 1917: + case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1917); + if (lookahead == ',') ADVANCE(1910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1908); END_STATE(); - case 1918: + case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1919); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1918); + lookahead == '@') ADVANCE(1910); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1909); END_STATE(); - case 1919: + case 1910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); END_STATE(); - case 1920: + case 1911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'e') ADVANCE(1922); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'e') ADVANCE(1913); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); END_STATE(); - case 1921: + case 1912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'e') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'e') ADVANCE(1914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); END_STATE(); - case 1922: + case 1913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'n') ADVANCE(1924); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'n') ADVANCE(1915); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); END_STATE(); - case 1923: + case 1914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'n') ADVANCE(1925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'n') ADVANCE(1916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); END_STATE(); - case 1924: + case 1915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'v') ADVANCE(1093); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'v') ADVANCE(1084); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); END_STATE(); - case 1925: + case 1916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'v') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'v') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); END_STATE(); - case 1926: + case 1917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); + if (lookahead == ',') ADVANCE(1930); if (lookahead == '-' || - lookahead == '@') ADVANCE(1927); + lookahead == '@') ADVANCE(1918); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1926); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1917); END_STATE(); - case 1927: + case 1918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); + if (lookahead == ',') ADVANCE(1930); if (lookahead == '.' || - lookahead == '?') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); + lookahead == '?') ADVANCE(1920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); END_STATE(); - case 1928: + case 1919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); + if (lookahead == ',') ADVANCE(1930); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1929); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1928); + lookahead == '@') ADVANCE(1920); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1919); END_STATE(); - case 1929: + case 1920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); + if (lookahead == ',') ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); END_STATE(); - case 1930: + case 1921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1933); + if (lookahead == '-') ADVANCE(1924); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1939); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1938); + lookahead == '@') ADVANCE(1930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1929); END_STATE(); - case 1931: + case 1922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == '-') ADVANCE(1924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1932: + case 1923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'e') ADVANCE(1925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1933: + case 1924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'e') ADVANCE(1926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1934: + case 1925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'n') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1935: + case 1926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'n') ADVANCE(1927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1936: + case 1927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'v') ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1937: + case 1928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'v') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1938: + case 1929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1939); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1938); + lookahead == '@') ADVANCE(1930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1929); END_STATE(); - case 1939: + case 1930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); - case 1940: + case 1931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1945); + if (lookahead == ',') ADVANCE(1936); if (lookahead == '-' || - lookahead == '@') ADVANCE(1941); + lookahead == '@') ADVANCE(1932); if (lookahead == '.' || - lookahead == '?') ADVANCE(1943); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1940); + lookahead == '?') ADVANCE(1934); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1931); END_STATE(); - case 1941: + case 1932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1945); + if (lookahead == ',') ADVANCE(1936); if (lookahead == '.' || - lookahead == '?') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1941); + lookahead == '?') ADVANCE(1934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1932); END_STATE(); - case 1942: + case 1933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1945); + if (lookahead == ',') ADVANCE(1936); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1942); + lookahead == '@') ADVANCE(1934); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1933); END_STATE(); - case 1943: + case 1934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == ',') ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1934); END_STATE(); - case 1944: + case 1935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1945); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1944); + lookahead == '@') ADVANCE(1936); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1935); END_STATE(); - case 1945: + case 1936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 1946: + case 1937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1942); if (lookahead == '-' || - lookahead == '@') ADVANCE(1947); + lookahead == '@') ADVANCE(1938); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1946); + lookahead == '?') ADVANCE(1940); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1937); END_STATE(); - case 1947: + case 1938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1942); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == '?') ADVANCE(1940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 1948: + case 1939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1942); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); + lookahead == '@') ADVANCE(1940); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1939); END_STATE(); - case 1949: + case 1940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); + if (lookahead == ',') ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1940); END_STATE(); - case 1950: + case 1941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); + lookahead == '@') ADVANCE(1942); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1941); END_STATE(); - case 1951: + case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); END_STATE(); - case 1952: + case 1943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'e') ADVANCE(1954); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1945); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); END_STATE(); - case 1953: + case 1944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'e') ADVANCE(1955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 1954: + case 1945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'n') ADVANCE(1956); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1947); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); END_STATE(); - case 1955: + case 1946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'n') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 1956: + case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'v') ADVANCE(3171); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'v') ADVANCE(3159); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); END_STATE(); - case 1957: + case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'v') ADVANCE(3173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'v') ADVANCE(3161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 1958: + case 1949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); + if (lookahead == ',') ADVANCE(1962); if (lookahead == '-' || - lookahead == '@') ADVANCE(1959); + lookahead == '@') ADVANCE(1950); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1949); END_STATE(); - case 1959: + case 1950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); + if (lookahead == ',') ADVANCE(1962); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); END_STATE(); - case 1960: + case 1951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); + if (lookahead == ',') ADVANCE(1962); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); + lookahead == '@') ADVANCE(1952); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1951); END_STATE(); - case 1961: + case 1952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 1962: + case 1953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(1965); + if (lookahead == '-') ADVANCE(1956); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1971); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1970); + lookahead == '@') ADVANCE(1962); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); END_STATE(); - case 1963: + case 1954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(1965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == '-') ADVANCE(1956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1964: + case 1955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'e') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1965: + case 1956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'e') ADVANCE(1958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1966: + case 1957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'n') ADVANCE(1960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1967: + case 1958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'n') ADVANCE(1959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1968: + case 1959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(1971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'v') ADVANCE(1962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1969: + case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'v') ADVANCE(3162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1970: + case 1961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1971); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1970); + lookahead == '@') ADVANCE(1962); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); END_STATE(); - case 1971: + case 1962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1972: + case 1963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'e') ADVANCE(1974); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'e') ADVANCE(1965); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); - case 1973: + case 1964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'e') ADVANCE(1975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'e') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 1974: + case 1965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'n') ADVANCE(1976); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'n') ADVANCE(1967); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); - case 1975: + case 1966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'n') ADVANCE(1977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'n') ADVANCE(1968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 1976: + case 1967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'v') ADVANCE(3154); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'v') ADVANCE(3142); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); - case 1977: + case 1968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'v') ADVANCE(3156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'v') ADVANCE(3144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 1978: + case 1969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); + if (lookahead == ',') ADVANCE(1982); if (lookahead == '-' || - lookahead == '@') ADVANCE(1979); + lookahead == '@') ADVANCE(1970); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1978); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); END_STATE(); - case 1979: + case 1970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); + if (lookahead == ',') ADVANCE(1982); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); - case 1980: + case 1971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); + if (lookahead == ',') ADVANCE(1982); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1980); + lookahead == '@') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); END_STATE(); - case 1981: + case 1972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 1982: + case 1973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(1985); + if (lookahead == '-') ADVANCE(1976); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1990); + lookahead == '@') ADVANCE(1982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); END_STATE(); - case 1983: + case 1974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(1985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == '-') ADVANCE(1976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1984: + case 1975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1985: + case 1976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1986: + case 1977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'n') ADVANCE(1980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1987: + case 1978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'n') ADVANCE(1979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1988: + case 1979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'v') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1989: + case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3157); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'v') ADVANCE(3145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1990: + case 1981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1990); + lookahead == '@') ADVANCE(1982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); END_STATE(); - case 1991: + case 1982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 1992: + case 1983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1997); + if (lookahead == ',') ADVANCE(1988); if (lookahead == '-' || - lookahead == '@') ADVANCE(1993); + lookahead == '@') ADVANCE(1984); if (lookahead == '.' || - lookahead == '?') ADVANCE(1995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1992); + lookahead == '?') ADVANCE(1986); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1983); END_STATE(); - case 1993: + case 1984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1997); + if (lookahead == ',') ADVANCE(1988); if (lookahead == '.' || - lookahead == '?') ADVANCE(1995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1993); + lookahead == '?') ADVANCE(1986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1984); END_STATE(); - case 1994: + case 1985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1997); + if (lookahead == ',') ADVANCE(1988); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1994); + lookahead == '@') ADVANCE(1986); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); END_STATE(); - case 1995: + case 1986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1995); + if (lookahead == ',') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); - case 1996: + case 1987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1997); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1996); + lookahead == '@') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); END_STATE(); - case 1997: + case 1988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); - case 1998: + case 1989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2003); + if (lookahead == ',') ADVANCE(1994); if (lookahead == '-' || - lookahead == '@') ADVANCE(1999); + lookahead == '@') ADVANCE(1990); if (lookahead == '.' || - lookahead == '?') ADVANCE(2001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1998); + lookahead == '?') ADVANCE(1992); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1989); END_STATE(); - case 1999: + case 1990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2003); + if (lookahead == ',') ADVANCE(1994); if (lookahead == '.' || - lookahead == '?') ADVANCE(2001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1999); + lookahead == '?') ADVANCE(1992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1990); END_STATE(); - case 2000: + case 1991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2003); + if (lookahead == ',') ADVANCE(1994); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2000); + lookahead == '@') ADVANCE(1992); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1991); END_STATE(); - case 2001: + case 1992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2001); + if (lookahead == ',') ADVANCE(1994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1992); END_STATE(); - case 2002: + case 1993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2003); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2002); + lookahead == '@') ADVANCE(1994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1993); END_STATE(); - case 2003: + case 1994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); END_STATE(); - case 2004: + case 1995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2009); + if (lookahead == ',') ADVANCE(2000); if (lookahead == '-' || - lookahead == '@') ADVANCE(2005); + lookahead == '@') ADVANCE(1996); if (lookahead == '.' || - lookahead == '?') ADVANCE(2007); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2004); + lookahead == '?') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1995); END_STATE(); - case 2005: + case 1996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2009); + if (lookahead == ',') ADVANCE(2000); if (lookahead == '.' || - lookahead == '?') ADVANCE(2007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2005); + lookahead == '?') ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1996); END_STATE(); - case 2006: + case 1997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2009); + if (lookahead == ',') ADVANCE(2000); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2007); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2006); + lookahead == '@') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); END_STATE(); - case 2007: + case 1998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2007); + if (lookahead == ',') ADVANCE(2000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); - case 2008: + case 1999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2009); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2008); + lookahead == '@') ADVANCE(2000); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); END_STATE(); - case 2009: + case 2000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); END_STATE(); - case 2010: + case 2001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2015); + if (lookahead == ',') ADVANCE(2006); if (lookahead == '-' || - lookahead == '@') ADVANCE(2011); + lookahead == '@') ADVANCE(2002); if (lookahead == '.' || - lookahead == '?') ADVANCE(2013); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2010); + lookahead == '?') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); END_STATE(); - case 2011: + case 2002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2015); + if (lookahead == ',') ADVANCE(2006); if (lookahead == '.' || - lookahead == '?') ADVANCE(2013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2011); + lookahead == '?') ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2002); END_STATE(); - case 2012: + case 2003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2015); + if (lookahead == ',') ADVANCE(2006); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2013); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2012); + lookahead == '@') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); END_STATE(); - case 2013: + case 2004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2013); + if (lookahead == ',') ADVANCE(2006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); END_STATE(); - case 2014: + case 2005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2015); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2014); + lookahead == '@') ADVANCE(2006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); END_STATE(); - case 2015: + case 2006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); END_STATE(); - case 2016: + case 2007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2021); + if (lookahead == ',') ADVANCE(2012); if (lookahead == '-' || - lookahead == '@') ADVANCE(2017); + lookahead == '@') ADVANCE(2008); if (lookahead == '.' || - lookahead == '?') ADVANCE(2019); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2016); + lookahead == '?') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); END_STATE(); - case 2017: + case 2008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2021); + if (lookahead == ',') ADVANCE(2012); if (lookahead == '.' || - lookahead == '?') ADVANCE(2019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2017); + lookahead == '?') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2008); END_STATE(); - case 2018: + case 2009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2021); + if (lookahead == ',') ADVANCE(2012); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2019); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2018); + lookahead == '@') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); END_STATE(); - case 2019: + case 2010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2019); + if (lookahead == ',') ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); END_STATE(); - case 2020: + case 2011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2020); + lookahead == '@') ADVANCE(2012); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2011); END_STATE(); - case 2021: + case 2012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); END_STATE(); - case 2022: + case 2013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2027); + if (lookahead == ',') ADVANCE(2018); if (lookahead == '-' || - lookahead == '@') ADVANCE(2023); + lookahead == '@') ADVANCE(2014); if (lookahead == '.' || - lookahead == '?') ADVANCE(2025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2022); + lookahead == '?') ADVANCE(2016); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2013); END_STATE(); - case 2023: + case 2014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2027); + if (lookahead == ',') ADVANCE(2018); if (lookahead == '.' || - lookahead == '?') ADVANCE(2025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2023); + lookahead == '?') ADVANCE(2016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2014); END_STATE(); - case 2024: + case 2015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2027); + if (lookahead == ',') ADVANCE(2018); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2024); + lookahead == '@') ADVANCE(2016); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2015); END_STATE(); - case 2025: + case 2016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2025); + if (lookahead == ',') ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2016); END_STATE(); - case 2026: + case 2017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2026); + lookahead == '@') ADVANCE(2018); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); END_STATE(); - case 2027: + case 2018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); - case 2028: + case 2019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2033); + if (lookahead == ',') ADVANCE(2024); if (lookahead == '-' || - lookahead == '@') ADVANCE(2029); + lookahead == '@') ADVANCE(2020); if (lookahead == '.' || - lookahead == '?') ADVANCE(2031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2028); + lookahead == '?') ADVANCE(2022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); END_STATE(); - case 2029: + case 2020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2033); + if (lookahead == ',') ADVANCE(2024); if (lookahead == '.' || - lookahead == '?') ADVANCE(2031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2029); + lookahead == '?') ADVANCE(2022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); - case 2030: + case 2021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2033); + if (lookahead == ',') ADVANCE(2024); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2030); + lookahead == '@') ADVANCE(2022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2021); END_STATE(); - case 2031: + case 2022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2031); + if (lookahead == ',') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2022); END_STATE(); - case 2032: + case 2023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == '@') ADVANCE(2024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2023); END_STATE(); - case 2033: + case 2024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); END_STATE(); - case 2034: + case 2025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2039); + if (lookahead == ',') ADVANCE(2030); if (lookahead == '-' || - lookahead == '@') ADVANCE(2035); + lookahead == '@') ADVANCE(2026); if (lookahead == '.' || - lookahead == '?') ADVANCE(2037); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2034); + lookahead == '?') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2025); END_STATE(); - case 2035: + case 2026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2039); + if (lookahead == ',') ADVANCE(2030); if (lookahead == '.' || - lookahead == '?') ADVANCE(2037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2035); + lookahead == '?') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2026); END_STATE(); - case 2036: + case 2027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2039); + if (lookahead == ',') ADVANCE(2030); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2037); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == '@') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2027); END_STATE(); - case 2037: + case 2028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2037); + if (lookahead == ',') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2028); END_STATE(); - case 2038: + case 2029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2038); + lookahead == '@') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); END_STATE(); - case 2039: + case 2030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); - case 2040: + case 2031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2045); + if (lookahead == ',') ADVANCE(2036); if (lookahead == '-' || - lookahead == '@') ADVANCE(2041); + lookahead == '@') ADVANCE(2032); if (lookahead == '.' || - lookahead == '?') ADVANCE(2043); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2040); + lookahead == '?') ADVANCE(2034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2031); END_STATE(); - case 2041: + case 2032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2045); + if (lookahead == ',') ADVANCE(2036); if (lookahead == '.' || - lookahead == '?') ADVANCE(2043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2041); + lookahead == '?') ADVANCE(2034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2032); END_STATE(); - case 2042: + case 2033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2045); + if (lookahead == ',') ADVANCE(2036); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2043); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2042); + lookahead == '@') ADVANCE(2034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2033); END_STATE(); - case 2043: + case 2034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2034); END_STATE(); - case 2044: + case 2035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2045); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2044); + lookahead == '@') ADVANCE(2036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2035); END_STATE(); - case 2045: + case 2036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); END_STATE(); - case 2046: + case 2037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2051); + if (lookahead == ',') ADVANCE(2042); if (lookahead == '-' || - lookahead == '@') ADVANCE(2047); + lookahead == '@') ADVANCE(2038); if (lookahead == '.' || - lookahead == '?') ADVANCE(2049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2046); + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); - case 2047: + case 2038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2051); + if (lookahead == ',') ADVANCE(2042); if (lookahead == '.' || - lookahead == '?') ADVANCE(2049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2047); + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); END_STATE(); - case 2048: + case 2039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2051); + if (lookahead == ',') ADVANCE(2042); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2048); + lookahead == '@') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); END_STATE(); - case 2049: + case 2040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2049); + if (lookahead == ',') ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); - case 2050: + case 2041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2050); + lookahead == '@') ADVANCE(2042); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2041); END_STATE(); - case 2051: + case 2042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); END_STATE(); - case 2052: + case 2043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2057); + if (lookahead == ',') ADVANCE(2048); if (lookahead == '-' || - lookahead == '@') ADVANCE(2053); + lookahead == '@') ADVANCE(2044); if (lookahead == '.' || - lookahead == '?') ADVANCE(2055); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2052); + lookahead == '?') ADVANCE(2046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2043); END_STATE(); - case 2053: + case 2044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2057); + if (lookahead == ',') ADVANCE(2048); if (lookahead == '.' || - lookahead == '?') ADVANCE(2055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2053); + lookahead == '?') ADVANCE(2046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); - case 2054: + case 2045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2057); + if (lookahead == ',') ADVANCE(2048); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2055); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2054); + lookahead == '@') ADVANCE(2046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2045); END_STATE(); - case 2055: + case 2046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2055); + if (lookahead == ',') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2046); END_STATE(); - case 2056: + case 2047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2057); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2056); + lookahead == '@') ADVANCE(2048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2047); END_STATE(); - case 2057: + case 2048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); END_STATE(); - case 2058: + case 2049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2063); + if (lookahead == ',') ADVANCE(2054); if (lookahead == '-' || - lookahead == '@') ADVANCE(2059); + lookahead == '@') ADVANCE(2050); if (lookahead == '.' || - lookahead == '?') ADVANCE(2061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2058); + lookahead == '?') ADVANCE(2052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); END_STATE(); - case 2059: + case 2050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2063); + if (lookahead == ',') ADVANCE(2054); if (lookahead == '.' || - lookahead == '?') ADVANCE(2061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2059); + lookahead == '?') ADVANCE(2052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); - case 2060: + case 2051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2063); + if (lookahead == ',') ADVANCE(2054); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2060); + lookahead == '@') ADVANCE(2052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); END_STATE(); - case 2061: + case 2052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2061); + if (lookahead == ',') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); - case 2062: + case 2053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2062); + lookahead == '@') ADVANCE(2054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); END_STATE(); - case 2063: + case 2054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); - case 2064: + case 2055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2069); + if (lookahead == ',') ADVANCE(2060); if (lookahead == '-' || - lookahead == '@') ADVANCE(2065); + lookahead == '@') ADVANCE(2056); if (lookahead == '.' || - lookahead == '?') ADVANCE(2067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2064); + lookahead == '?') ADVANCE(2058); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); END_STATE(); - case 2065: + case 2056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2069); + if (lookahead == ',') ADVANCE(2060); if (lookahead == '.' || - lookahead == '?') ADVANCE(2067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2065); + lookahead == '?') ADVANCE(2058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); END_STATE(); - case 2066: + case 2057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2069); + if (lookahead == ',') ADVANCE(2060); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2066); + lookahead == '@') ADVANCE(2058); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); END_STATE(); - case 2067: + case 2058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2067); + if (lookahead == ',') ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); END_STATE(); - case 2068: + case 2059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2068); + lookahead == '@') ADVANCE(2060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); END_STATE(); - case 2069: + case 2060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); - case 2070: + case 2061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2075); + if (lookahead == ',') ADVANCE(2066); if (lookahead == '-' || - lookahead == '@') ADVANCE(2071); + lookahead == '@') ADVANCE(2062); if (lookahead == '.' || - lookahead == '?') ADVANCE(2073); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2070); + lookahead == '?') ADVANCE(2064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); END_STATE(); - case 2071: + case 2062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2075); + if (lookahead == ',') ADVANCE(2066); if (lookahead == '.' || - lookahead == '?') ADVANCE(2073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2071); + lookahead == '?') ADVANCE(2064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); END_STATE(); - case 2072: + case 2063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2075); + if (lookahead == ',') ADVANCE(2066); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2073); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2072); + lookahead == '@') ADVANCE(2064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); END_STATE(); - case 2073: + case 2064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2073); + if (lookahead == ',') ADVANCE(2066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); END_STATE(); - case 2074: + case 2065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2075); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2074); + lookahead == '@') ADVANCE(2066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); END_STATE(); - case 2075: + case 2066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); - case 2076: + case 2067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2081); + if (lookahead == ',') ADVANCE(2072); if (lookahead == '-' || - lookahead == '@') ADVANCE(2077); + lookahead == '@') ADVANCE(2068); if (lookahead == '.' || - lookahead == '?') ADVANCE(2079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2076); + lookahead == '?') ADVANCE(2070); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); END_STATE(); - case 2077: + case 2068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2081); + if (lookahead == ',') ADVANCE(2072); if (lookahead == '.' || - lookahead == '?') ADVANCE(2079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + lookahead == '?') ADVANCE(2070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); END_STATE(); - case 2078: + case 2069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2081); + if (lookahead == ',') ADVANCE(2072); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2078); + lookahead == '@') ADVANCE(2070); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); END_STATE(); - case 2079: + case 2070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2079); + if (lookahead == ',') ADVANCE(2072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); END_STATE(); - case 2080: + case 2071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2081); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2080); + lookahead == '@') ADVANCE(2072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); END_STATE(); - case 2081: + case 2072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); - case 2082: + case 2073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2087); + if (lookahead == ',') ADVANCE(2078); if (lookahead == '-' || - lookahead == '@') ADVANCE(2083); + lookahead == '@') ADVANCE(2074); if (lookahead == '.' || - lookahead == '?') ADVANCE(2085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2082); + lookahead == '?') ADVANCE(2076); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); END_STATE(); - case 2083: + case 2074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2087); + if (lookahead == ',') ADVANCE(2078); if (lookahead == '.' || - lookahead == '?') ADVANCE(2085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2083); + lookahead == '?') ADVANCE(2076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); END_STATE(); - case 2084: + case 2075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2087); + if (lookahead == ',') ADVANCE(2078); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); + lookahead == '@') ADVANCE(2076); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); END_STATE(); - case 2085: + case 2076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2085); + if (lookahead == ',') ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); END_STATE(); - case 2086: + case 2077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2086); + lookahead == '@') ADVANCE(2078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); END_STATE(); - case 2087: + case 2078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); - case 2088: + case 2079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); + lookahead == '?') ADVANCE(2097); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == 'i') ADVANCE(2081); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2089: + case 2080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); + lookahead == '?') ADVANCE(2097); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2091); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == 'i') ADVANCE(2082); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2090: + case 2081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); + lookahead == '?') ADVANCE(2097); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2089); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == 'n') ADVANCE(2080); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2091: + case 2082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); + lookahead == '?') ADVANCE(2097); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2092); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == 't') ADVANCE(2083); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2092: + case 2083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); + lookahead == '?') ADVANCE(2097); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2093); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == 'y') ADVANCE(2084); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2093: + case 2084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == '?') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2094: + case 2085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2094); + lookahead == '?') ADVANCE(2097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2085); END_STATE(); - case 2095: + case 2086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2099); + lookahead == 'i') ADVANCE(2090); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '@') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 2096: + case 2087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2101); + lookahead == 'i') ADVANCE(2092); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '@') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 2097: + case 2088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == 'i') ADVANCE(2091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 2098: + case 2089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == 'i') ADVANCE(2093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 2099: + case 2090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2096); + lookahead == 'n') ADVANCE(2087); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '@') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 2100: + case 2091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == 'n') ADVANCE(2089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 2101: + case 2092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2104); + lookahead == 't') ADVANCE(2095); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '@') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 2102: + case 2093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == 't') ADVANCE(2094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 2103: + case 2094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == 'y') ADVANCE(2097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 2104: + case 2095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2105); + lookahead == 'y') ADVANCE(2096); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '@') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 2105: + case 2096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '@') ADVANCE(2097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 2106: + case 2097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + if (lookahead == ',') ADVANCE(2111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 2107: + case 2098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2109); + lookahead == 'f') ADVANCE(2100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2108: + case 2099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'f') ADVANCE(2102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2109: + case 2100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2113); + lookahead == 'i') ADVANCE(2104); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2110: + case 2101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2115); + lookahead == 'i') ADVANCE(2106); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2111: + case 2102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'i') ADVANCE(2105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2112: + case 2103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'i') ADVANCE(2107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2113: + case 2104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2110); + lookahead == 'n') ADVANCE(2101); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2114: + case 2105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'n') ADVANCE(2103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2115: + case 2106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2118); + lookahead == 't') ADVANCE(2109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2116: + case 2107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 't') ADVANCE(2108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2117: + case 2108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'y') ADVANCE(2111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2118: + case 2109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2119); + lookahead == 'y') ADVANCE(2110); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2119: + case 2110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 2120: + case 2111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 2121: + case 2112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2126); + if (lookahead == ',') ADVANCE(2117); if (lookahead == '-' || - lookahead == '@') ADVANCE(2122); + lookahead == '@') ADVANCE(2113); if (lookahead == '.' || - lookahead == '?') ADVANCE(2124); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); + lookahead == '?') ADVANCE(2115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2112); END_STATE(); - case 2122: + case 2113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2126); + if (lookahead == ',') ADVANCE(2117); if (lookahead == '.' || - lookahead == '?') ADVANCE(2124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); + lookahead == '?') ADVANCE(2115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2113); END_STATE(); - case 2123: + case 2114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2126); + if (lookahead == ',') ADVANCE(2117); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2124); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); + lookahead == '@') ADVANCE(2115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2114); END_STATE(); - case 2124: + case 2115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2124); + if (lookahead == ',') ADVANCE(2117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2115); END_STATE(); - case 2125: + case 2116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); + lookahead == '@') ADVANCE(2117); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2116); END_STATE(); - case 2126: + case 2117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); END_STATE(); - case 2127: + case 2118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2132); + if (lookahead == ',') ADVANCE(2123); if (lookahead == '-' || - lookahead == '@') ADVANCE(2128); + lookahead == '@') ADVANCE(2119); if (lookahead == '.' || - lookahead == '?') ADVANCE(2130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); + lookahead == '?') ADVANCE(2121); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2118); END_STATE(); - case 2128: + case 2119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2132); + if (lookahead == ',') ADVANCE(2123); if (lookahead == '.' || - lookahead == '?') ADVANCE(2130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); + lookahead == '?') ADVANCE(2121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); - case 2129: + case 2120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2132); + if (lookahead == ',') ADVANCE(2123); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); + lookahead == '@') ADVANCE(2121); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2120); END_STATE(); - case 2130: + case 2121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2130); + if (lookahead == ',') ADVANCE(2123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2121); END_STATE(); - case 2131: + case 2122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); + lookahead == '@') ADVANCE(2123); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2122); END_STATE(); - case 2132: + case 2123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); END_STATE(); - case 2133: + case 2124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2138); + if (lookahead == ',') ADVANCE(2129); if (lookahead == '-' || - lookahead == '@') ADVANCE(2134); + lookahead == '@') ADVANCE(2125); if (lookahead == '.' || - lookahead == '?') ADVANCE(2136); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); + lookahead == '?') ADVANCE(2127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2124); END_STATE(); - case 2134: + case 2125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2138); + if (lookahead == ',') ADVANCE(2129); if (lookahead == '.' || - lookahead == '?') ADVANCE(2136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); + lookahead == '?') ADVANCE(2127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2125); END_STATE(); - case 2135: + case 2126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2138); + if (lookahead == ',') ADVANCE(2129); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2136); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); + lookahead == '@') ADVANCE(2127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2126); END_STATE(); - case 2136: + case 2127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2136); + if (lookahead == ',') ADVANCE(2129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2127); END_STATE(); - case 2137: + case 2128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); + lookahead == '@') ADVANCE(2129); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2128); END_STATE(); - case 2138: + case 2129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); END_STATE(); - case 2139: + case 2130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'e') ADVANCE(2141); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'e') ADVANCE(2132); if (lookahead == '.' || - lookahead == '?') ADVANCE(2148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); + lookahead == '?') ADVANCE(2139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); END_STATE(); - case 2140: + case 2131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'e') ADVANCE(2142); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'e') ADVANCE(2133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); END_STATE(); - case 2141: + case 2132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'n') ADVANCE(2143); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'n') ADVANCE(2134); if (lookahead == '.' || - lookahead == '?') ADVANCE(2148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); + lookahead == '?') ADVANCE(2139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); END_STATE(); - case 2142: + case 2133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'n') ADVANCE(2144); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'n') ADVANCE(2135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); END_STATE(); - case 2143: + case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'v') ADVANCE(2896); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'v') ADVANCE(2887); if (lookahead == '.' || - lookahead == '?') ADVANCE(2148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); + lookahead == '?') ADVANCE(2139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); END_STATE(); - case 2144: + case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'v') ADVANCE(2898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'v') ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); END_STATE(); - case 2145: + case 2136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); + if (lookahead == ',') ADVANCE(2149); if (lookahead == '-' || - lookahead == '@') ADVANCE(2146); + lookahead == '@') ADVANCE(2137); if (lookahead == '.' || - lookahead == '?') ADVANCE(2148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); + lookahead == '?') ADVANCE(2139); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2136); END_STATE(); - case 2146: + case 2137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); + if (lookahead == ',') ADVANCE(2149); if (lookahead == '.' || - lookahead == '?') ADVANCE(2148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); + lookahead == '?') ADVANCE(2139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); END_STATE(); - case 2147: + case 2138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); + if (lookahead == ',') ADVANCE(2149); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2147); + lookahead == '@') ADVANCE(2139); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2138); END_STATE(); - case 2148: + case 2139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2158); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); + if (lookahead == ',') ADVANCE(2149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); END_STATE(); - case 2149: + case 2140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(2152); + if (lookahead == '-') ADVANCE(2143); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2158); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2157); + lookahead == '@') ADVANCE(2149); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2148); END_STATE(); - case 2150: + case 2141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(2152); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == '-') ADVANCE(2143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2151: + case 2142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(2153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'e') ADVANCE(2144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2152: + case 2143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(2154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'e') ADVANCE(2145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2153: + case 2144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'n') ADVANCE(2147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2154: + case 2145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(2155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'n') ADVANCE(2146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2155: + case 2146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'v') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2156: + case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(2899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'v') ADVANCE(2890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2157: + case 2148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2158); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2157); + lookahead == '@') ADVANCE(2149); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2148); END_STATE(); - case 2158: + case 2149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); - case 2159: + case 2150: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 2160: + case 2151: ACCEPT_TOKEN(anon_sym_true); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 2161: + case 2152: ACCEPT_TOKEN(anon_sym_true); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); - case 2162: + case 2153: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); - case 2163: + case 2154: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 2164: + case 2155: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 2165: + case 2156: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 2166: + case 2157: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + END_STATE(); + case 2158: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2178); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(2182); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2159: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2175); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(2188); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2160: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2179); + if (lookahead == '>') ADVANCE(3606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2161: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2174); + if (lookahead == '>') ADVANCE(3610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2162: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2180); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'r') ADVANCE(2184); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2163: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2176); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'u') ADVANCE(2190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2164: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2181); + if (lookahead == '>') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2165: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2177); + if (lookahead == '>') ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + END_STATE(); + case 2166: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2187); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(2191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(3630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2184); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(2197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2188); - if (lookahead == '>') ADVANCE(3639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2183); - if (lookahead == '>') ADVANCE(3643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2189); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'r') ADVANCE(2193); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2185); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'u') ADVANCE(2199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2190); - if (lookahead == '>') ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == '>') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2186); - if (lookahead == '>') ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'e') ADVANCE(2183); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'e') ADVANCE(2167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'e') ADVANCE(2171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'e') ADVANCE(2187); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'o') ADVANCE(2166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'o') ADVANCE(2192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'o') ADVANCE(2170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'o') ADVANCE(2193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'r') ADVANCE(2160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'r') ADVANCE(2185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'r') ADVANCE(2164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2180); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'r') ADVANCE(2169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'r') ADVANCE(2173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'r') ADVANCE(2186); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 't') ADVANCE(2161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 't') ADVANCE(2168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 't') ADVANCE(2165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2169); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 't') ADVANCE(2172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'u') ADVANCE(2189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if (lookahead == 'u') ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2195: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2182); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 2196: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 2197: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 2198: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2177); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2199: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 2200: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2181); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2201: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(2198); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 2202: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(2200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 2203: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 2204: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_null); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 2205: - ACCEPT_TOKEN(anon_sym_false); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + ACCEPT_TOKEN(anon_sym_null); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 2206: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2207: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 2208: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2209: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 2210: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 2211: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); END_STATE(); case 2212: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2641); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2213: - ACCEPT_TOKEN(anon_sym_null); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1571); END_STATE(); case 2214: - ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1862); END_STATE(); case 2215: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1319); END_STATE(); case 2216: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3828); END_STATE(); case 2217: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4293); END_STATE(); case 2218: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4554); END_STATE(); case 2219: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3980); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4399); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2650); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'i') ADVANCE(894); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1580); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2223: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1871); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); END_STATE(); case 2224: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1328); + lookahead == 'i') ADVANCE(3596); END_STATE(); case 2225: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3861); + lookahead == 'i') ADVANCE(4243); END_STATE(); case 2226: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4326); + lookahead == 'i') ADVANCE(892); END_STATE(); case 2227: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4587); + lookahead == 'i') ADVANCE(4597); END_STATE(); case 2228: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4013); + lookahead == 'i') ADVANCE(4295); END_STATE(); case 2229: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4432); + lookahead == 'i') ADVANCE(4556); END_STATE(); case 2230: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(906); + lookahead == 'i') ADVANCE(3982); END_STATE(); case 2231: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4401); END_STATE(); case 2232: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); END_STATE(); case 2233: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3629); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2234: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4276); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '+', 2262, + '-', 2264, + '>', 3614, + 'I', 2295, + '_', 2264, + 'i', 2295, + 'r', 2281, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2235: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(904); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2277); + if (lookahead == '>') ADVANCE(3606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2236: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4630); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2270); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(2288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2237: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4328); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2276); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == 'i') ADVANCE(2295); + if (lookahead == 'r') ADVANCE(2281); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2238: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4589); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2276); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(2281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2239: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4015); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2271); + if (lookahead == '>') ADVANCE(3610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2240: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4434); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2278); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == 'i') ADVANCE(2295); + if (lookahead == 'r') ADVANCE(2282); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2241: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2278); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'r') ADVANCE(2282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2242: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); - END_STATE(); - case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 2271, - '-', 2273, - '>', 3647, - 'I', 2304, - '_', 2273, - 'i', 2304, - 'r', 2290, - 'B', 3462, - 'b', 3462, + '+', 2263, + '-', 2264, + '>', 851, + 'I', 2295, + '_', 2264, + 'i', 2295, + 'r', 2282, + 'B', 3429, + 'b', 3429, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + END_STATE(); + case 2243: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2272); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'u') ADVANCE(2290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2286); - if (lookahead == '>') ADVANCE(3639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '+') ADVANCE(2273); + if (lookahead == '>') ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2279); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(2297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2285); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == 'i') ADVANCE(2304); - if (lookahead == 'r') ADVANCE(2290); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == ',') ADVANCE(2296); + if (lookahead == ':') ADVANCE(3873); + if (lookahead == '_') ADVANCE(2246); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2247); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2285); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(2290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == ',') ADVANCE(2296); + if (lookahead == ':') ADVANCE(3873); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2247); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2280); - if (lookahead == '>') ADVANCE(3643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '.') ADVANCE(3282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2287); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == 'i') ADVANCE(2304); - if (lookahead == 'r') ADVANCE(2291); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2287); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'r') ADVANCE(2291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(3630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 2272, - '-', 2273, - '>', 863, - 'I', 2304, - '_', 2273, - 'i', 2304, - 'r', 2291, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2281); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'u') ADVANCE(2299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2282); - if (lookahead == '>') ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2288); - if (lookahead == '>') ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '>') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ',') ADVANCE(2305); - if (lookahead == ':') ADVANCE(3906); - if (lookahead == '_') ADVANCE(2255); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2256); + if (lookahead == '>') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ',') ADVANCE(2305); - if (lookahead == ':') ADVANCE(3906); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3896); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2256); + if (lookahead == '>') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == '_') ADVANCE(2264); + if (lookahead == 'i') ADVANCE(2295); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2264); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == '_') ADVANCE(2264); + if (lookahead == 'i') ADVANCE(2267); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2264); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == 'i') ADVANCE(2295); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == 'i') ADVANCE(2267); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'I') ADVANCE(2295); + if (lookahead == 'i') ADVANCE(2275); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '_') ADVANCE(2264); + if (lookahead == 'o') ADVANCE(2249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '_') ADVANCE(2264); + if (lookahead == 'o') ADVANCE(2253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '_') ADVANCE(2264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == '_') ADVANCE(2265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == '_') ADVANCE(2273); - if (lookahead == 'i') ADVANCE(2304); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2273); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'a') ADVANCE(2294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == '_') ADVANCE(2273); - if (lookahead == 'i') ADVANCE(2276); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2273); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == 'i') ADVANCE(2304); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'c') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == 'i') ADVANCE(2276); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'e') ADVANCE(2268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2304); - if (lookahead == 'i') ADVANCE(2284); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'e') ADVANCE(2250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2273); - if (lookahead == 'o') ADVANCE(2258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'e') ADVANCE(2283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2273); - if (lookahead == 'o') ADVANCE(2262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'e') ADVANCE(2254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2273); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'e') ADVANCE(2286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'k') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(2303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'o') ADVANCE(2249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'o') ADVANCE(2292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'o') ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'o') ADVANCE(2293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(2235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(2245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(2284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(2252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(2256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'r') ADVANCE(2285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 's') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 't') ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 't') ADVANCE(2251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 't') ADVANCE(2244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 't') ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'u') ADVANCE(2289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'u') ADVANCE(2291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'y') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2296); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2298: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(3252); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '/') ADVANCE(2299); + if (lookahead == '=') ADVANCE(1104); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3224); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); case 2299: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(3254); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3226); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2300: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(3253); + if (lookahead == '\r') ADVANCE(14); + if (lookahead == 'u') ADVANCE(2480); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3225); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2301: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(2298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2352); + if (lookahead == '-') ADVANCE(3911); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == '_') ADVANCE(2352); + if (lookahead == 'i') ADVANCE(2636); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2302: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(2300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2352); + if (lookahead == '-') ADVANCE(3911); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == '_') ADVANCE(2352); + if (lookahead == 'i') ADVANCE(2383); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2303: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2352); + if (lookahead == '-') ADVANCE(4358); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == '_') ADVANCE(2352); + if (lookahead == 'i') ADVANCE(2636); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2304: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2352); + if (lookahead == '-') ADVANCE(4358); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == '_') ADVANCE(2352); + if (lookahead == 'i') ADVANCE(2383); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + lookahead == 'b') ADVANCE(3433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2305: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2305); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2352); + if (lookahead == '-') ADVANCE(4358); + if (lookahead == '_') ADVANCE(2352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2306: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2423); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'n') ADVANCE(2428); + if (lookahead == 'r') ADVANCE(3201); + if (lookahead == 'u') ADVANCE(2589); + if (lookahead == 'v') ADVANCE(2438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3285); - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '/') ADVANCE(2308); - if (lookahead == '=') ADVANCE(1113); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3237); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2503); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'l') ADVANCE(2576); + if (lookahead == 'n') ADVANCE(2397); + if (lookahead == 'r') ADVANCE(2561); + if (lookahead == 'x') ADVANCE(2524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3287); - if (lookahead == '\r') ADVANCE(9); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3241); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2506); + if (lookahead == '>') ADVANCE(3606); + if (lookahead == 'o') ADVANCE(2533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3286); - if (lookahead == '\r') ADVANCE(15); - if (lookahead == 'u') ADVANCE(2489); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3239); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2506); + if (lookahead == '>') ADVANCE(3606); + if (lookahead == 'o') ADVANCE(2534); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2361); - if (lookahead == '-') ADVANCE(4390); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'i') ADVANCE(2645); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2508); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'l') ADVANCE(2580); + if (lookahead == 'r') ADVANCE(2539); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2361); - if (lookahead == '-') ADVANCE(4390); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'i') ADVANCE(2392); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2427); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'n') ADVANCE(2432); + if (lookahead == 'r') ADVANCE(3202); + if (lookahead == 'u') ADVANCE(2602); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2361); - if (lookahead == '-') ADVANCE(4390); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2513); + if (lookahead == '>') ADVANCE(854); + if (lookahead == 'o') ADVANCE(2537); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2361); - if (lookahead == '-') ADVANCE(3944); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'i') ADVANCE(2645); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2434); + if (lookahead == '>') ADVANCE(3610); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2361); - if (lookahead == '-') ADVANCE(3944); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'i') ADVANCE(2392); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2439); + if (lookahead == '>') ADVANCE(856); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2432); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'n') ADVANCE(2437); - if (lookahead == 'r') ADVANCE(3213); - if (lookahead == 'u') ADVANCE(2598); - if (lookahead == 'v') ADVANCE(2447); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3555); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2512); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'l') ADVANCE(2585); - if (lookahead == 'n') ADVANCE(2406); - if (lookahead == 'r') ADVANCE(2570); - if (lookahead == 'x') ADVANCE(2533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3563); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2515); - if (lookahead == '>') ADVANCE(3639); - if (lookahead == 'o') ADVANCE(2542); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3580); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2515); - if (lookahead == '>') ADVANCE(3639); - if (lookahead == 'o') ADVANCE(2543); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3565); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2517); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'l') ADVANCE(2589); - if (lookahead == 'r') ADVANCE(2548); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3545); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2436); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'n') ADVANCE(2441); - if (lookahead == 'r') ADVANCE(3214); - if (lookahead == 'u') ADVANCE(2611); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1160); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2522); - if (lookahead == '>') ADVANCE(866); - if (lookahead == 'o') ADVANCE(2546); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1217); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2443); - if (lookahead == '>') ADVANCE(3643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1247); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2448); - if (lookahead == '>') ADVANCE(868); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1307); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3588); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1326); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3596); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1254); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1172); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3598); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(757); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3578); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1169); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(738); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1226); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(910); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1256); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3581); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3568); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2333: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1335); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1308); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1263); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1258); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1181); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(760); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(768); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(3582); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(1309); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(748); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '-') ADVANCE(842); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(922); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(3634); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(3630); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3601); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1267); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(853); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(771); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(855); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(857); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '>') ADVANCE(858); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(854); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == 'i') ADVANCE(2636); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == 'i') ADVANCE(2383); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == 'i') ADVANCE(2492); + if (lookahead == 's') ADVANCE(3438); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3655); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'N') ADVANCE(2637); + if (lookahead == 'f') ADVANCE(3079); + if (lookahead == 'm') ADVANCE(2525); + if (lookahead == 'n') ADVANCE(3039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2352); + if (lookahead == 'o') ADVANCE(2339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(865); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(867); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2644); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2353); + if (('2' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(869); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(870); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'b') ADVANCE(3422); + if (lookahead == 'o') ADVANCE(3439); + if (lookahead == 'x') ADVANCE(3445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == 'i') ADVANCE(2645); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'b') ADVANCE(2644); + if (lookahead == 'o') ADVANCE(2646); + if (lookahead == 'x') ADVANCE(2651); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == 'i') ADVANCE(2392); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'b') ADVANCE(3423); + if (lookahead == 'o') ADVANCE(3439); + if (lookahead == 'x') ADVANCE(3445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == 'i') ADVANCE(2501); - if (lookahead == 's') ADVANCE(3471); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2324); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(2646); - if (lookahead == 'f') ADVANCE(3089); - if (lookahead == 'm') ADVANCE(2534); - if (lookahead == 'n') ADVANCE(3049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2330); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2360: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'o') ADVANCE(2348); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2361: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2653); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2362); - if (('2' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2363); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (lookahead == 'b') ADVANCE(3455); - if (lookahead == 'o') ADVANCE(3472); - if (lookahead == 'x') ADVANCE(3478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (lookahead == 'b') ADVANCE(2653); - if (lookahead == 'o') ADVANCE(2655); - if (lookahead == 'x') ADVANCE(2660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (lookahead == 'b') ADVANCE(3456); - if (lookahead == 'o') ADVANCE(3472); - if (lookahead == 'x') ADVANCE(3478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2462); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2333); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2482); + if (lookahead == 'o') ADVANCE(2531); + if (lookahead == 'u') ADVANCE(2485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2463); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2633); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2631); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2568); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2569); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2483); + if (lookahead == 'u') ADVANCE(2487); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2483); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2641); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2549); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2491); - if (lookahead == 'o') ADVANCE(2540); - if (lookahead == 'u') ADVANCE(2494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2548); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2472); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2607); + if (lookahead == 'e') ADVANCE(2486); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2550); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2465); + if (lookahead == 'o') ADVANCE(2394); + if (lookahead == 'u') ADVANCE(2592); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2577); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2554); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2578); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2606); + if (lookahead == 'e') ADVANCE(2484); + if (lookahead == 'o') ADVANCE(2501); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2492); - if (lookahead == 'u') ADVANCE(2496); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2492); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2558); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2557); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2447); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2616); - if (lookahead == 'e') ADVANCE(2495); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2448); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2559); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2449); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2474); - if (lookahead == 'o') ADVANCE(2403); - if (lookahead == 'u') ADVANCE(2601); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2450); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2563); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2414); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2615); - if (lookahead == 'e') ADVANCE(2493); - if (lookahead == 'o') ADVANCE(2510); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'c') ADVANCE(2417); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(3194); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(3193); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2455); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(2300); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2456); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(2625); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2457); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(2581); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2458); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(2582); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2459); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(2403); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2423); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'd') ADVANCE(2411); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2426); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3206); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2316); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3205); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3085); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2309); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3153); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2634); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3057); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2590); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2155); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2591); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2412); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2200); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2420); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3191); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2393); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3063); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2325); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3087); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3095); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3154); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3059); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2899); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2164); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2209); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2901); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3203); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3137); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3073); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3166); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(3090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2443); + if (lookahead == 'o') ADVANCE(3072); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2908); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2629); + if (lookahead == 'o') ADVANCE(2601); + if (lookahead == 'u') ADVANCE(2468); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3075); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2366); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2910); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2546); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3038); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2591); + if (lookahead == 'i') ADVANCE(2575); + if (lookahead == 'o') ADVANCE(2505); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2452); - if (lookahead == 'o') ADVANCE(3082); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2551); + if (lookahead == 'i') ADVANCE(2477); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2638); - if (lookahead == 'o') ADVANCE(2610); - if (lookahead == 'u') ADVANCE(2477); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2551); + if (lookahead == 'i') ADVANCE(2479); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2349); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2329); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2375); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2541); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2556); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2555); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2545); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2353); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2535); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2331); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2536); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2600); - if (lookahead == 'i') ADVANCE(2584); - if (lookahead == 'o') ADVANCE(2514); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2563); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2560); - if (lookahead == 'i') ADVANCE(2486); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2559); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2560); - if (lookahead == 'i') ADVANCE(2488); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2445); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2486); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2550); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'f') ADVANCE(2881); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2565); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'f') ADVANCE(2883); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2554); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'g') ADVANCE(2457); + if (lookahead == 't') ADVANCE(2619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2544); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'g') ADVANCE(2460); + if (lookahead == 't') ADVANCE(2621); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2545); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(3123); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2572); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(3093); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2568); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(3125); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2454); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(3095); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2495); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(3128); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2890); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(2431); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2892); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2499); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2466); - if (lookahead == 't') ADVANCE(2628); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2469); - if (lookahead == 't') ADVANCE(2630); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2604); + if (lookahead == 'r') ADVANCE(2425); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3135); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3103); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2399); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3137); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2577); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3105); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2579); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2502); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(2440); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2583); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2508); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'k') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2381); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'k') ADVANCE(3020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2613); - if (lookahead == 'r') ADVANCE(2434); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'k') ADVANCE(3022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2382); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'k') ADVANCE(2404); + if (lookahead == 't') ADVANCE(2386); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2408); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'k') ADVANCE(2412); + if (lookahead == 't') ADVANCE(2388); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2586); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2208); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2588); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2511); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2592); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2318); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2319); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2413); - if (lookahead == 't') ADVANCE(2395); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2325); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2421); - if (lookahead == 't') ADVANCE(2397); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2217); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2478); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2328); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2475); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2409); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2413); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2328); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2415); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2376); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2416); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2379); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2470); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2334); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2335); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2574); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2336); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2473); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2474); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2418); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2475); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2422); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2476); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'l') ADVANCE(2455); + if (lookahead == 'n') ADVANCE(2393); + if (lookahead == 's') ADVANCE(3179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2425); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'm') ADVANCE(2526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2479); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'm') ADVANCE(2526); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2583); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2392); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2583); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(3438); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2482); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2572); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2483); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2892); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2484); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(3130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2485); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2894); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2464); - if (lookahead == 'n') ADVANCE(2402); - if (lookahead == 's') ADVANCE(3191); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(3132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2535); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(3048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2535); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2622); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2401); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2432); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3471); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2578); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2581); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'n') ADVANCE(2623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2901); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3142); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2520); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2903); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2521); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3144); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3058); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2530); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2631); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2441); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2532); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2587); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2598); + if (lookahead == 'u') ADVANCE(2468); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2598); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2348); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2537); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2529); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2624); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2530); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2552); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2629); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2539); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2555); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2557); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2541); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2558); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2607); - if (lookahead == 'u') ADVANCE(2477); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2626); + if (lookahead == 't') ADVANCE(2381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2607); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(3050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2546); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(3052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(2514); + if (lookahead == 't') ADVANCE(2433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2561); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(2515); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2562); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(2516); + if (lookahead == 't') ADVANCE(2435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2564); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(2517); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2566); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'p') ADVANCE(2518); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2567); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2635); - if (lookahead == 't') ADVANCE(2390); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2308); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3062); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3198); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2523); - if (lookahead == 't') ADVANCE(2442); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2524); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3197); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2525); - if (lookahead == 't') ADVANCE(2444); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2928); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2526); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2527); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3146); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(3148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2317); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2933); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3042); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3210); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2312); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3044); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2317); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3209); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2494); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2937); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2390); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2939); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2495); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3158); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3160); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2496); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2942); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2626); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2497); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2321); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2323); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2503); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2399); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2408); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2504); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2595); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2610); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2505); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2480); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2597); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2506); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2544); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2332); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2611); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2622); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2347); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2564); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2417); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2566); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2604); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2309); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2619); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2391); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2472); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2606); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2346); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2553); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'r') ADVANCE(2512); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2573); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(1067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2575); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(1069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2318); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2590); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2400); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2402); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2481); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2593); + if (lookahead == 't') ADVANCE(2452); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2406); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2627); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2407); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2521); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2410); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1076); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2608); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2596); + if (lookahead == 't') ADVANCE(2459); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2579: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(2599); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2411); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2420); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2602); - if (lookahead == 't') ADVANCE(2461); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2331); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2415); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2333); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2416); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2603); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2419); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(2337); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2605); - if (lookahead == 't') ADVANCE(2468); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1088); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2608); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2315); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2313); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2940); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2345); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1095); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2346); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2942); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2596: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(1097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2324); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(1061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2322); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2645); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2945); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2385); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1099); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2321); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1104); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2314); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2320); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1106); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2345); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1070); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2387); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2607: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2654); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2389); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2608: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2954); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2436); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2609: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2394); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2437); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2610: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2330); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2332); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2611: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2323); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2612: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2613: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2329); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2584); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2354); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 't') ADVANCE(2585); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2396); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2542); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2398); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2405); + if (lookahead == 'y') ADVANCE(3116); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2445); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2405); + if (lookahead == 'y') ADVANCE(3118); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2405); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2543); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2603); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2344); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2547); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2418); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2594); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2419); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2551); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2605); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2414); - if (lookahead == 'y') ADVANCE(3128); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2478); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2414); - if (lookahead == 'y') ADVANCE(3130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2562); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2414); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'u') ADVANCE(2487); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2552); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'w') ADVANCE(3170); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2612); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'w') ADVANCE(3172); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2556); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'y') ADVANCE(3438); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2427); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'y') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2428); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'y') ADVANCE(3163); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'y') ADVANCE(3165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2487); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '{') ADVANCE(915); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2650); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2571); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2496); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3182); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2212); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3184); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3471); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2233); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3175); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3177); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2643: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '{') ADVANCE(927); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2222); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2644: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2645: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2646: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2221); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2647: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2648: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3500); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2649: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2242); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2648); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2650: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2651: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2652); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2651); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2652: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2231); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2653: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2653); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3801); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(2754); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2654: - ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3794); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(2778); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2655: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2655); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3802); + if (lookahead == '>') ADVANCE(3606); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2656: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3795); + if (lookahead == '>') ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2657: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'u') ADVANCE(2780); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2658: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'r') ADVANCE(2757); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2659: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2658); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(854); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2660: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(670); + if (lookahead == '>') ADVANCE(856); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2661: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2821); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2662: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3834); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(2763); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2700); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2663: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3827); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(2787); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2702); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2664: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3835); - if (lookahead == '>') ADVANCE(3639); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2705); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2665: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3828); - if (lookahead == '>') ADVANCE(3643); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2707); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2666: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'u') ADVANCE(2789); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2667: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'r') ADVANCE(2766); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2827); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2668: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(752); - if (lookahead == '>') ADVANCE(866); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-') ADVANCE(2829); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2669: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(681); - if (lookahead == '>') ADVANCE(868); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == ':') ADVANCE(903); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2670: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2830); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == ':') ADVANCE(3845); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2671: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2709); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'N') ADVANCE(2801); + if (lookahead == 'f') ADVANCE(2834); + if (lookahead == 'n') ADVANCE(2802); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2672: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2711); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'T') ADVANCE(2824); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2673: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2714); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'T') ADVANCE(2825); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2674: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2716); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == '_') ADVANCE(2676); + if (lookahead == 'b') ADVANCE(3427); + if (lookahead == 'o') ADVANCE(3443); + if (lookahead == 'x') ADVANCE(3449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2675: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2832); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (lookahead == 'b') ADVANCE(3427); + if (lookahead == 'o') ADVANCE(3443); + if (lookahead == 'x') ADVANCE(3449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2676: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2836); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2677: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2838); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2678: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(915); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2679: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(3878); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2680: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(2810); - if (lookahead == 'f') ADVANCE(2843); - if (lookahead == 'n') ADVANCE(2811); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2681: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2833); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2682: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2834); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '_') ADVANCE(2676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2683: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (lookahead == 'b') ADVANCE(3458); - if (lookahead == 'o') ADVANCE(3474); - if (lookahead == 'x') ADVANCE(3480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2729); + if (lookahead == 'o') ADVANCE(2763); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2684: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (lookahead == 'b') ADVANCE(3458); - if (lookahead == 'o') ADVANCE(3474); - if (lookahead == 'x') ADVANCE(3480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2729); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2685: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2728); + if (lookahead == 'o') ADVANCE(2693); + if (lookahead == 'u') ADVANCE(2781); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2686: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2727); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2687: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2798); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2688: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2775); + if (lookahead == 'o') ADVANCE(2737); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2689: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'a') ADVANCE(2771); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2690: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'c') ADVANCE(2720); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2691: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'c') ADVANCE(2706); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2692: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2738); - if (lookahead == 'o') ADVANCE(2772); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'c') ADVANCE(2721); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2693: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2738); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'd') ADVANCE(2791); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2694: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2737); - if (lookahead == 'o') ADVANCE(2702); - if (lookahead == 'u') ADVANCE(2790); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'd') ADVANCE(2701); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2695: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2736); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2153); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2696: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2198); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2697: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2784); - if (lookahead == 'o') ADVANCE(2746); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2717); + if (lookahead == 'o') ADVANCE(2833); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2698: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2780); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2797); + if (lookahead == 'u') ADVANCE(2732); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2699: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2729); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2718); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2700: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2715); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2738); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2701: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2730); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2663); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2702: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2800); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2740); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2703: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2710); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2686); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2704: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2162); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2776); + if (lookahead == 'i') ADVANCE(2772); + if (lookahead == 'o') ADVANCE(2746); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2705: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2207); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2741); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2706: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2842); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2665); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2707: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2806); - if (lookahead == 'u') ADVANCE(2741); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2816); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2742); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2708: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2727); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2761); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2709: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2747); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'e') ADVANCE(2841); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2710: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2672); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2759); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2711: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2749); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'e') ADVANCE(2842); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2712: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2695); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2846); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2713: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2785); - if (lookahead == 'i') ADVANCE(2781); - if (lookahead == 'o') ADVANCE(2755); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2854); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2714: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2750); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'e') ADVANCE(2856); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2715: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2674); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'e') ADVANCE(2861); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2716: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2751); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'e') ADVANCE(2765); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2717: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2770); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'f') ADVANCE(2835); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2718: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2850); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'g') ADVANCE(2726); + if (lookahead == 't') ADVANCE(2789); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2719: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2768); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'h') ADVANCE(2725); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2720: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2851); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'h') ADVANCE(2849); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2721: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2855); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'h') ADVANCE(2853); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2722: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2863); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'i') ADVANCE(2694); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2723: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2865); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'i') ADVANCE(2689); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2724: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2870); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'i') ADVANCE(2745); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2725: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2774); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'i') ADVANCE(2735); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2726: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(2844); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'i') ADVANCE(2769); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2727: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(2735); - if (lookahead == 't') ADVANCE(2798); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'k') ADVANCE(2848); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2728: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2734); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'k') ADVANCE(2712); + if (lookahead == 't') ADVANCE(2692); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2729: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2858); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2768); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2730: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2862); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2206); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2731: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2703); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2723); + if (lookahead == 's') ADVANCE(2832); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2732: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2698); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2730); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2733: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2754); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2687); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2734: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2773); + if (lookahead == 'r') ADVANCE(2758); + if (lookahead == 'x') ADVANCE(2752); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2735: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2778); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2713); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2736: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2857); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'l') ADVANCE(2714); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2737: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2721); - if (lookahead == 't') ADVANCE(2701); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2774); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2738: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2777); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2793); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2739: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2215); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(3046); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2740: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2732); - if (lookahead == 's') ADVANCE(2841); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2794); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2741: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2739); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2796); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2742: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2696); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2795); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2743: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2782); - if (lookahead == 'r') ADVANCE(2767); - if (lookahead == 'x') ADVANCE(2761); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2855); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2744: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2722); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2857); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2745: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2723); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'n') ADVANCE(2790); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2746: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2783); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'o') ADVANCE(2751); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2747: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2802); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'o') ADVANCE(2788); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2748: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3056); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'o') ADVANCE(2777); + if (lookahead == 'u') ADVANCE(2732); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2749: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2803); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'o') ADVANCE(2764); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2750: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2805); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'o') ADVANCE(2762); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2751: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2804); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'p') ADVANCE(2845); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2752: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2864); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'p') ADVANCE(2750); + if (lookahead == 't') ADVANCE(2710); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2753: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2866); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2786); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2754: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2799); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2655); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2755: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2760); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2785); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2756: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2797); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2691); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2757: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2786); - if (lookahead == 'u') ADVANCE(2741); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2816); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2659); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2758: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2773); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2749); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2759: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2771); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2743); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2760: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2854); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2703); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2761: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2759); - if (lookahead == 't') ADVANCE(2719); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2733); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2762: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2795); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2779); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2763: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2664); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2836); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2764: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2794); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2851); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2765: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2700); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2862); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2766: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2668); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'r') ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2767: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2758); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(3182); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2768: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2752); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2696); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2769: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2712); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2784); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2770: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2742); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2709); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2771: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2788); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2847); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2772: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2845); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2782); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2773: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2860); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2711); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2774: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2871); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 's') ADVANCE(2783); + if (lookahead == 't') ADVANCE(2724); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2775: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2753); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2690); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2776: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3194); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2662); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2777: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2705); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2778: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2793); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2656); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2779: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2718); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2664); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2780: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2856); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2660); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2781: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2791); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2838); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2782: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2720); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2844); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2783: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2792); - if (lookahead == 't') ADVANCE(2733); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2850); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2784: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2699); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 't') ADVANCE(2716); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2785: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2671); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2695); + if (lookahead == 'y') ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2786: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2825); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2695); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2787: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2665); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2732); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2788: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2673); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2756); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2789: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2669); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2766); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2790: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2847); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2715); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2791: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2853); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'u') ADVANCE(2736); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2792: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2859); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'v') ADVANCE(2708); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2793: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2725); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'v') ADVANCE(2843); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2794: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2704); - if (lookahead == 'y') ADVANCE(2849); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'v') ADVANCE(2852); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2795: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2704); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'v') ADVANCE(2860); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2796: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2741); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2816); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'v') ADVANCE(2863); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2797: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2765); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'w') ADVANCE(2839); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2798: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2775); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'y') ADVANCE(2859); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2799: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2724); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '-' || + lookahead == '?') ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2799); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 2800: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2745); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2801: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2717); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2806); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2802: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2852); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2804); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2803: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2861); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2811); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2804: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2869); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2810); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2805: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2872); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2812); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2806: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'w') ADVANCE(2848); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2809); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2807: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2868); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2808: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(2840); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2808); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2801); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2809: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2816); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2803); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2810: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2805); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2811: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2813); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2813); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2812: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2820); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2814); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2813: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2819); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2814: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2821); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2837); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2815: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2818); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2815); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2816: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2840); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2817: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2810); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2817); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2818: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2812); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2819: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2814); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2820: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2822); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2821: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2823); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2818); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2822: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2840); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2823: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2846); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2819); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2824: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2824); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2820); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2825: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2822); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2826: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2826); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2827: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2826); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2828: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2667); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2829: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2828); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2830: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2827); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2830); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2831: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); case 2832: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2828); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); case 2833: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2829); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); END_STATE(); case 2834: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2831); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2835: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); END_STATE(); case 2836: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2835); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); END_STATE(); case 2837: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2838: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2837); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); END_STATE(); case 2839: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2839); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); END_STATE(); case 2840: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); END_STATE(); case 2841: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); END_STATE(); case 2842: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); END_STATE(); case 2843: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2844: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); END_STATE(); case 2845: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); END_STATE(); case 2846: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); END_STATE(); case 2847: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); END_STATE(); case 2848: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); case 2849: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); END_STATE(); case 2850: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); END_STATE(); case 2851: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 2852: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2853: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); case 2854: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); END_STATE(); case 2855: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); case 2856: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); END_STATE(); case 2857: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2858: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2859: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); case 2860: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2861: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); case 2862: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); END_STATE(); case 2863: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); case 2864: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1913); - END_STATE(); - case 2865: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1919); - END_STATE(); - case 2866: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2081); - END_STATE(); - case 2867: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); - END_STATE(); - case 2868: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1997); - END_STATE(); - case 2869: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); - END_STATE(); - case 2870: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2075); - END_STATE(); - case 2871: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2003); - END_STATE(); - case 2872: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1907); - END_STATE(); - case 2873: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 2874: + case 2865: ACCEPT_TOKEN(sym__newline); ADVANCE_MAP( - '\r', 3, - '!', 599, - '*', 526, - '+', 165, - '/', 168, - ':', 3553, - '=', 605, - 'a', 730, - 'b', 704, - 'e', 736, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 784, - 's', 810, - 'x', 762, - 0x0b, 586, - '\f', 586, - '\t', 166, - '\n', 166, - ' ', 166, + '!', 591, + '*', 518, + '+', 160, + '/', 162, + ':', 3520, + '=', 597, + 'a', 720, + 'b', 693, + 'e', 726, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 772, + 's', 799, + 'x', 751, ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(578); END_STATE(); - case 2875: + case 2866: ACCEPT_TOKEN(sym__newline); ADVANCE_MAP( - '\r', 154, - '!', 599, - '*', 190, - '+', 164, - '-', 193, - '/', 168, - '<', 194, - '=', 605, - '>', 195, - 'a', 730, - 'b', 704, - 'e', 736, - 'i', 740, - 'm', 763, - 'n', 753, - 'o', 784, - 's', 810, - 'x', 762, - '\t', 188, - '\n', 188, - ' ', 188, + '!', 591, + '*', 183, + '+', 159, + '-', 186, + '/', 162, + '<', 187, + '=', 597, + '>', 188, + 'a', 720, + 'b', 693, + 'e', 726, + 'i', 730, + 'm', 752, + 'n', 742, + 'o', 772, + 's', 799, + 'x', 751, ); END_STATE(); - case 2876: + case 2867: ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(3553); + if (lookahead == ':') ADVANCE(3520); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(586); + lookahead == ' ') ADVANCE(578); END_STATE(); - case 2877: + case 2868: ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(2876); - if (lookahead == '\r') ADVANCE(112); - if (lookahead == ':') ADVANCE(3553); + if (lookahead == '\n') ADVANCE(2867); + if (lookahead == '\r') ADVANCE(108); + if (lookahead == ':') ADVANCE(3520); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2877); + lookahead == ' ') ADVANCE(2868); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(586); + lookahead == '\f') ADVANCE(578); END_STATE(); - case 2878: + case 2869: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2878); + lookahead == ' ') ADVANCE(2869); END_STATE(); - case 2879: + case 2870: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2880: + case 2871: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2881: + case 2872: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 2882: + case 2873: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 2883: + case 2874: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 2884: + case 2875: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 2885: + case 2876: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 2886: + case 2877: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 2887: + case 2878: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 2888: + case 2879: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 2889: + case 2880: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 2890: + case 2881: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || - lookahead == '@') ADVANCE(1887); + lookahead == '@') ADVANCE(1878); if (lookahead == '.' || - lookahead == '?') ADVANCE(1890); + lookahead == '?') ADVANCE(1881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1885); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1876); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); END_STATE(); - case 2891: + case 2882: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1892); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4652); + if (lookahead == ',') ADVANCE(1883); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); END_STATE(); - case 2892: + case 2883: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1892); + if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1890); + lookahead == '@') ADVANCE(1881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1888); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1889); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1879); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); END_STATE(); - case 2893: + case 2884: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1890); + if (lookahead == ',') ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1881); END_STATE(); - case 2894: + case 2885: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1891); + lookahead == '@') ADVANCE(1883); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1882); END_STATE(); - case 2895: + case 2886: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); END_STATE(); - case 2896: + case 2887: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1907); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '.' || - lookahead == '?') ADVANCE(1906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1905); + lookahead == '?') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); END_STATE(); - case 2897: + case 2888: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1907); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4691); + if (lookahead == ',') ADVANCE(1898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); END_STATE(); - case 2898: + case 2889: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1906); + if (lookahead == ',') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1897); END_STATE(); - case 2899: + case 2890: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); - case 2900: + case 2891: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 2901: + case 2892: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1913); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || - lookahead == '@') ADVANCE(1909); + lookahead == '@') ADVANCE(1900); if (lookahead == '.' || - lookahead == '?') ADVANCE(1911); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1908); + lookahead == '?') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); END_STATE(); - case 2902: + case 2893: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1913); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4681); + if (lookahead == ',') ADVANCE(1904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); END_STATE(); - case 2903: + case 2894: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1913); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1911); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1910); + lookahead == '@') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); END_STATE(); - case 2904: + case 2895: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1911); + if (lookahead == ',') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); END_STATE(); - case 2905: + case 2896: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1913); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1912); + lookahead == '@') ADVANCE(1904); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); END_STATE(); - case 2906: + case 2897: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); - case 2907: + case 2898: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 2908: + case 2899: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1919); + if (lookahead == ',') ADVANCE(1910); if (lookahead == '-' || - lookahead == '@') ADVANCE(1915); + lookahead == '@') ADVANCE(1906); if (lookahead == '.' || - lookahead == '?') ADVANCE(1917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1914); + lookahead == '?') ADVANCE(1908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1905); END_STATE(); - case 2909: + case 2900: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1919); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4682); + if (lookahead == ',') ADVANCE(1910); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); END_STATE(); - case 2910: + case 2901: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1919); + if (lookahead == ',') ADVANCE(1910); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1917); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1916); + lookahead == '@') ADVANCE(1908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1907); END_STATE(); - case 2911: + case 2902: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1917); + if (lookahead == ',') ADVANCE(1910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1908); END_STATE(); - case 2912: + case 2903: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1919); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1918); + lookahead == '@') ADVANCE(1910); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1909); END_STATE(); - case 2913: + case 2904: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); END_STATE(); - case 2914: + case 2905: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 2915: + case 2906: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1904); + if (lookahead == ',') ADVANCE(1895); if (lookahead == '-' || - lookahead == '@') ADVANCE(1900); + lookahead == '@') ADVANCE(1891); if (lookahead == '.' || - lookahead == '?') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); + lookahead == '?') ADVANCE(1893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1890); END_STATE(); - case 2916: + case 2907: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4661); + if (lookahead == ',') ADVANCE(1895); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); END_STATE(); - case 2917: + case 2908: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1904); + if (lookahead == ',') ADVANCE(1895); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); + lookahead == '@') ADVANCE(1893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1892); END_STATE(); - case 2918: + case 2909: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); + if (lookahead == ',') ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1893); END_STATE(); - case 2919: + case 2910: ACCEPT_TOKEN(anon_sym_use); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1904); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); + lookahead == '@') ADVANCE(1895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1894); END_STATE(); - case 2920: + case 2911: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); END_STATE(); - case 2921: + case 2912: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2922: + case 2913: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 2923: + case 2914: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 2924: + case 2915: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2925: + case 2916: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2926: + case 2917: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2927: + case 2918: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2928: + case 2919: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2929: + case 2920: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 2930: + case 2921: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3542); - if (lookahead == '\'') ADVANCE(3538); + if (lookahead == '"') ADVANCE(3509); + if (lookahead == '\'') ADVANCE(3505); END_STATE(); - case 2931: + case 2922: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3542); - if (lookahead == '\'') ADVANCE(3538); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '"') ADVANCE(3509); + if (lookahead == '\'') ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 2932: + case 2923: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3543); - if (lookahead == '\'') ADVANCE(3539); + if (lookahead == '"') ADVANCE(3510); + if (lookahead == '\'') ADVANCE(3506); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 2933: + case 2924: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 2934: + case 2925: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 2935: + case 2926: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 2936: + case 2927: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 2937: + case 2928: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2027); + if (lookahead == ',') ADVANCE(2018); if (lookahead == '-' || - lookahead == '@') ADVANCE(2023); + lookahead == '@') ADVANCE(2014); if (lookahead == '.' || - lookahead == '?') ADVANCE(2025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2022); + lookahead == '?') ADVANCE(2016); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2013); END_STATE(); - case 2938: + case 2929: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2027); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4674); + if (lookahead == ',') ADVANCE(2018); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 2939: + case 2930: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2027); + if (lookahead == ',') ADVANCE(2018); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2024); + lookahead == '@') ADVANCE(2016); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2015); END_STATE(); - case 2940: + case 2931: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2025); + if (lookahead == ',') ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2016); END_STATE(); - case 2941: + case 2932: ACCEPT_TOKEN(anon_sym_error); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2026); + lookahead == '@') ADVANCE(2018); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); END_STATE(); - case 2942: + case 2933: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 2943: + case 2934: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); - case 2944: + case 2935: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 2945: + case 2936: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 2946: + case 2937: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 2947: + case 2938: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 2948: + case 2939: ACCEPT_TOKEN(anon_sym_list); END_STATE(); - case 2949: + case 2940: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2126); + if (lookahead == ',') ADVANCE(2117); if (lookahead == '-' || - lookahead == '@') ADVANCE(2122); + lookahead == '@') ADVANCE(2113); if (lookahead == '.' || - lookahead == '?') ADVANCE(2124); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); + lookahead == '?') ADVANCE(2115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2112); END_STATE(); - case 2950: + case 2941: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2126); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4667); + if (lookahead == ',') ADVANCE(2117); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); END_STATE(); - case 2951: + case 2942: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2126); + if (lookahead == ',') ADVANCE(2117); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2124); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); + lookahead == '@') ADVANCE(2115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2114); END_STATE(); - case 2952: + case 2943: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2124); + if (lookahead == ',') ADVANCE(2117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2115); END_STATE(); - case 2953: + case 2944: ACCEPT_TOKEN(anon_sym_list); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); + lookahead == '@') ADVANCE(2117); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2116); END_STATE(); - case 2954: + case 2945: ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 2955: + case 2946: ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); END_STATE(); - case 2956: + case 2947: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 2957: + case 2948: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3226); + if (lookahead == '=') ADVANCE(3214); END_STATE(); - case 2958: + case 2949: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 2959: + case 2950: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3227); + if (lookahead == '=') ADVANCE(3215); END_STATE(); - case 2960: + case 2951: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 2961: + case 2952: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 2962: + case 2953: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == '$') ADVANCE(3401); - if (lookahead == '(') ADVANCE(3310); - if (lookahead == '{') ADVANCE(3547); + if (lookahead == '$') ADVANCE(3368); + if (lookahead == '(') ADVANCE(3277); + if (lookahead == '{') ADVANCE(3514); END_STATE(); - case 2963: + case 2954: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 2964: + case 2955: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 2965: + case 2956: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 2966: + case 2957: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 2967: + case 2958: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 2968: + case 2959: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 2969: + case 2960: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2970: + case 2961: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); + if (lookahead == '-') ADVANCE(2956); END_STATE(); - case 2971: + case 2962: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(2255); - if (lookahead == '=') ADVANCE(1111); - if (lookahead == '_') ADVANCE(3624); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(2246); + if (lookahead == '=') ADVANCE(1102); + if (lookahead == '_') ADVANCE(3591); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == 'i') ADVANCE(3595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2972: + case 2963: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 2965, - '.', 4272, - '=', 1111, - '_', 4262, - '\t', 3245, - ' ', 3245, - 'I', 4275, - 'i', 4275, + '-', 2956, + '.', 4239, + '=', 1102, + '_', 4229, + '\t', 3228, + ' ', 3228, + 'I', 4242, + 'i', 4242, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2973: + case 2964: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(574); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(566); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2974: + case 2965: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(622); - if (lookahead == '_') ADVANCE(579); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(612); + if (lookahead == '_') ADVANCE(571); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2975: + case 2966: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(622); - if (lookahead == '_') ADVANCE(579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(612); + if (lookahead == '_') ADVANCE(571); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2976: + case 2967: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(3934); - if (lookahead == '_') ADVANCE(3913); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(3901); + if (lookahead == '_') ADVANCE(3880); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == 'i') ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2977: + case 2968: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(4382); - if (lookahead == '_') ADVANCE(4364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(4349); + if (lookahead == '_') ADVANCE(4331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2978: + case 2969: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(3939); - if (lookahead == '_') ADVANCE(3914); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(3906); + if (lookahead == '_') ADVANCE(3881); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2979: + case 2970: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2965); + if (lookahead == '-') ADVANCE(2956); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3245); + lookahead == ' ') ADVANCE(3228); END_STATE(); - case 2980: + case 2971: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2966); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(3707); + if (lookahead == '-') ADVANCE(2957); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(3674); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == 'i') ADVANCE(3711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 2981: + case 2972: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2966); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == '-') ADVANCE(2957); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 2982: + case 2973: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2968); - if (lookahead == '.') ADVANCE(4079); - if (lookahead == '_') ADVANCE(4058); + if (lookahead == '-') ADVANCE(2959); + if (lookahead == '.') ADVANCE(4046); + if (lookahead == '_') ADVANCE(4025); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == 'i') ADVANCE(4191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 2983: + case 2974: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '-') ADVANCE(2959); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 2984: + case 2975: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2967); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '-') ADVANCE(2958); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 2985: + case 2976: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '=') ADVANCE(1111); - if (lookahead == '_') ADVANCE(574); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '=') ADVANCE(1102); + if (lookahead == '_') ADVANCE(566); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3245); + lookahead == ' ') ADVANCE(3228); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2986: + case 2977: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '=') ADVANCE(1111); - if (lookahead == '_') ADVANCE(574); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '=') ADVANCE(1102); + if (lookahead == '_') ADVANCE(566); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2987: + case 2978: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(574); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(566); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2988: + case 2979: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(3707); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(3674); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == 'i') ADVANCE(3711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 2989: + case 2980: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4609); - if (lookahead == '_') ADVANCE(4601); + if (lookahead == '.') ADVANCE(4576); + if (lookahead == '_') ADVANCE(4568); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2990: + case 2981: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4700); - if (lookahead == '_') ADVANCE(4693); + if (lookahead == '.') ADVANCE(4667); + if (lookahead == '_') ADVANCE(4660); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4804); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'i') ADVANCE(4771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 2991: + case 2982: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4079); - if (lookahead == '_') ADVANCE(4058); + if (lookahead == '.') ADVANCE(4046); + if (lookahead == '_') ADVANCE(4025); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == 'i') ADVANCE(4191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 2992: + case 2983: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(622); - if (lookahead == '_') ADVANCE(579); + if (lookahead == '.') ADVANCE(612); + if (lookahead == '_') ADVANCE(571); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == 'i') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2993: + case 2984: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4610); - if (lookahead == '_') ADVANCE(4603); + if (lookahead == '.') ADVANCE(4577); + if (lookahead == '_') ADVANCE(4570); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + lookahead == 'i') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 2994: + case 2985: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3939); - if (lookahead == '_') ADVANCE(3914); + if (lookahead == '.') ADVANCE(3906); + if (lookahead == '_') ADVANCE(3881); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 2995: + case 2986: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 2996: + case 2987: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2361); - if (lookahead == '-') ADVANCE(3574); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'i') ADVANCE(2392); + if (lookahead == '+') ADVANCE(2352); + if (lookahead == '-') ADVANCE(3541); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == '_') ADVANCE(2352); + if (lookahead == 'i') ADVANCE(2383); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3465); + lookahead == 'b') ADVANCE(3432); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 2997: + case 2988: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - '+', 2360, - '-', 3574, - '>', 3647, - 'I', 2645, - '_', 2361, - 'i', 2645, - 'l', 2580, - 'n', 2405, - 'r', 2537, - 'x', 2531, - 'B', 3465, - 'b', 3465, + '+', 2351, + '-', 3541, + '>', 3614, + 'I', 2636, + '_', 2352, + 'i', 2636, + 'l', 2571, + 'n', 2396, + 'r', 2528, + 'x', 2522, + 'B', 3432, + 'b', 3432, ); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 2998: + case 2989: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2432); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'n') ADVANCE(2410); - if (lookahead == 'r') ADVANCE(3214); - if (lookahead == 'u') ADVANCE(2598); - if (lookahead == 'v') ADVANCE(2435); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '+') ADVANCE(2423); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'n') ADVANCE(2401); + if (lookahead == 'r') ADVANCE(3202); + if (lookahead == 'u') ADVANCE(2589); + if (lookahead == 'v') ADVANCE(2426); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 2999: + case 2990: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - ',', 3532, - ':', 3532, - '=', 3532, - 'u', 2643, - 'x', 2658, - '-', 3532, - '@', 3532, - '.', 3532, - '?', 3532, - '<', 3532, - '>', 3532, - '"', 3532, - '\'', 3532, - '`', 3532, + ',', 3499, + ':', 3499, + '=', 3499, + 'u', 2634, + 'x', 2649, + '-', 3499, + '@', 3499, + '.', 3499, + '?', 3499, + '<', 3499, + '>', 3499, + '"', 3499, + '\'', 3499, + '`', 3499, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -46372,88 +46148,88 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(3532); - if (lookahead != 0) ADVANCE(3533); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(3499); + if (lookahead != 0) ADVANCE(3500); END_STATE(); - case 3000: + case 2991: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(3223); - if (lookahead == '~') ADVANCE(3229); + if (lookahead == '=') ADVANCE(3211); + if (lookahead == '~') ADVANCE(3217); END_STATE(); - case 3001: + case 2992: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(1113); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2661); + if (lookahead == '=') ADVANCE(1104); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2652); END_STATE(); - case 3002: + case 2993: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - 'I', 2645, - 'a', 2473, - 'i', 2501, - 'o', 2404, - 's', 3471, - 'u', 2596, - 'B', 3466, - 'b', 3466, + 'I', 2636, + 'a', 2464, + 'i', 2492, + 'o', 2395, + 's', 3438, + 'u', 2587, + 'B', 3433, + 'b', 3433, ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3003: + case 2994: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == 'i') ADVANCE(2645); - if (lookahead == 'r') ADVANCE(2625); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == 'i') ADVANCE(2636); + if (lookahead == 'r') ADVANCE(2616); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3004: + case 2995: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == 'i') ADVANCE(2645); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == 'i') ADVANCE(2636); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3005: + case 2996: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2645); - if (lookahead == 'i') ADVANCE(2392); + if (lookahead == 'I') ADVANCE(2636); + if (lookahead == 'i') ADVANCE(2383); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'b') ADVANCE(3433); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3006: + case 2997: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'N') ADVANCE(2646); - if (lookahead == 'f') ADVANCE(3087); - if (lookahead == 'm') ADVANCE(2532); - if (lookahead == 'n') ADVANCE(3050); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'N') ADVANCE(2637); + if (lookahead == 'f') ADVANCE(3077); + if (lookahead == 'm') ADVANCE(2523); + if (lookahead == 'n') ADVANCE(3040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3007: + case 2998: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3360); - if (lookahead == 'b') ADVANCE(3455); - if (lookahead == 'o') ADVANCE(3472); - if (lookahead == 'x') ADVANCE(3478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + if (lookahead == '_') ADVANCE(3327); + if (lookahead == 'b') ADVANCE(3422); + if (lookahead == 'o') ADVANCE(3439); + if (lookahead == 'x') ADVANCE(3445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3008: + case 2999: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + if (lookahead == '_') ADVANCE(3327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3009: + case 3000: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '`') ADVANCE(3530); + if (lookahead == '`') ADVANCE(3497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -46465,3063 +46241,2733 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(634); - if (lookahead != 0) ADVANCE(3625); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(624); + if (lookahead != 0) ADVANCE(3592); END_STATE(); - case 3010: + case 3001: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2609); - if (lookahead == 'e') ADVANCE(2476); - if (lookahead == 'o') ADVANCE(2502); + if (lookahead == 'a') ADVANCE(2600); + if (lookahead == 'e') ADVANCE(2467); + if (lookahead == 'o') ADVANCE(2493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3011: + case 3002: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2639); - if (lookahead == 'e') ADVANCE(2451); - if (lookahead == 'o') ADVANCE(3080); + if (lookahead == 'a') ADVANCE(2630); + if (lookahead == 'e') ADVANCE(2442); + if (lookahead == 'o') ADVANCE(3070); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3012: + case 3003: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2491); - if (lookahead == 'o') ADVANCE(2538); - if (lookahead == 'u') ADVANCE(2490); + if (lookahead == 'a') ADVANCE(2482); + if (lookahead == 'o') ADVANCE(2529); + if (lookahead == 'u') ADVANCE(2481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3013: + case 3004: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2549); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'a') ADVANCE(2540); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3014: + case 3005: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2595); - if (lookahead == 'i') ADVANCE(2579); - if (lookahead == 'o') ADVANCE(2513); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2586); + if (lookahead == 'i') ADVANCE(2570); + if (lookahead == 'o') ADVANCE(2504); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3015: + case 3006: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2637); - if (lookahead == 'o') ADVANCE(2597); - if (lookahead == 's') ADVANCE(3471); - if (lookahead == 'u') ADVANCE(2477); + if (lookahead == 'e') ADVANCE(2628); + if (lookahead == 'o') ADVANCE(2588); + if (lookahead == 's') ADVANCE(3438); + if (lookahead == 'u') ADVANCE(2468); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3016: + case 3007: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2453); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2444); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3017: + case 3008: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2393); - if (lookahead == 'o') ADVANCE(2624); - if (lookahead == 't') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2384); + if (lookahead == 'o') ADVANCE(2615); + if (lookahead == 't') ADVANCE(2376); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3018: + case 3009: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'h') ADVANCE(2439); - if (lookahead == 'k') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'h') ADVANCE(2430); + if (lookahead == 'k') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3019: + case 3010: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'i') ADVANCE(2407); - if (lookahead == 'r') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'i') ADVANCE(2398); + if (lookahead == 'r') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3020: + case 3011: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2462); - if (lookahead == 'n') ADVANCE(2401); - if (lookahead == 's') ADVANCE(3189); + if (lookahead == 'l') ADVANCE(2453); + if (lookahead == 'n') ADVANCE(2392); + if (lookahead == 's') ADVANCE(3177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3021: + case 3012: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'o') ADVANCE(2539); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'o') ADVANCE(2530); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3022: + case 3013: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2433); + if (lookahead == 'r') ADVANCE(2424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3023: + case 3014: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(3438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3024: + case 3015: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3468); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 's') ADVANCE(3435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3025: + case 3016: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3026: + case 3017: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == 'n') ADVANCE(2637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3027: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3109); - END_STATE(); - case 3028: + case 3018: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3029: + case 3019: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3030: + case 3020: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2069); + if (lookahead == ',') ADVANCE(2060); if (lookahead == '-' || - lookahead == '@') ADVANCE(2065); + lookahead == '@') ADVANCE(2056); if (lookahead == '.' || - lookahead == '?') ADVANCE(2067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2064); + lookahead == '?') ADVANCE(2058); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); END_STATE(); - case 3031: + case 3021: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2069); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4671); + if (lookahead == ',') ADVANCE(2060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); - case 3032: + case 3022: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2069); + if (lookahead == ',') ADVANCE(2060); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2066); + lookahead == '@') ADVANCE(2058); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); END_STATE(); - case 3033: + case 3023: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2067); + if (lookahead == ',') ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); END_STATE(); - case 3034: + case 3024: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2068); + lookahead == '@') ADVANCE(2060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); END_STATE(); - case 3035: + case 3025: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); - case 3036: + case 3026: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2075); + if (lookahead == ',') ADVANCE(2066); if (lookahead == '-' || - lookahead == '@') ADVANCE(2071); + lookahead == '@') ADVANCE(2062); if (lookahead == '.' || - lookahead == '?') ADVANCE(2073); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2070); + lookahead == '?') ADVANCE(2064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); END_STATE(); - case 3037: + case 3027: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2075); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4689); + if (lookahead == ',') ADVANCE(2066); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4656); END_STATE(); - case 3038: + case 3028: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2075); + if (lookahead == ',') ADVANCE(2066); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2073); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2072); + lookahead == '@') ADVANCE(2064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); END_STATE(); - case 3039: + case 3029: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2073); + if (lookahead == ',') ADVANCE(2066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); END_STATE(); - case 3040: + case 3030: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2075); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2074); + lookahead == '@') ADVANCE(2066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); END_STATE(); - case 3041: + case 3031: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); - case 3042: + case 3032: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2009); + if (lookahead == ',') ADVANCE(2000); if (lookahead == '-' || - lookahead == '@') ADVANCE(2005); + lookahead == '@') ADVANCE(1996); if (lookahead == '.' || - lookahead == '?') ADVANCE(2007); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2004); + lookahead == '?') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1995); END_STATE(); - case 3043: + case 3033: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2009); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4653); + if (lookahead == ',') ADVANCE(2000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); END_STATE(); - case 3044: + case 3034: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2009); + if (lookahead == ',') ADVANCE(2000); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2007); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2006); + lookahead == '@') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); END_STATE(); - case 3045: + case 3035: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2007); + if (lookahead == ',') ADVANCE(2000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); - case 3046: + case 3036: ACCEPT_TOKEN(anon_sym_for); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2009); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2008); + lookahead == '@') ADVANCE(2000); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); END_STATE(); - case 3047: + case 3037: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); END_STATE(); - case 3048: + case 3038: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 3049: + case 3039: ACCEPT_TOKEN(anon_sym_in); ADVANCE_MAP( - '\n', 3300, - '\r', 12, - ',', 2120, - '\t', 3266, - ' ', 3266, - 'F', 2095, - 'f', 2095, - '-', 2106, - '.', 2106, - '?', 2106, - '@', 2106, + '\n', 3267, + '\r', 11, + ',', 2111, + '\t', 3239, + ' ', 3239, + 'F', 2086, + 'f', 2086, + '-', 2097, + '.', 2097, + '?', 2097, + '@', 2097, ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 3050: + case 3040: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2085); if (lookahead == '.' || - lookahead == '?') ADVANCE(2106); + lookahead == '?') ADVANCE(2097); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == 'f') ADVANCE(2079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 3051: + case 3041: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == 'f') ADVANCE(2088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 3052: + case 3042: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2120); + if (lookahead == ',') ADVANCE(2111); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4646); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + lookahead == 'f') ADVANCE(4613); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); - case 3053: + case 3043: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3267); + lookahead == ' ') ADVANCE(3239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'f') ADVANCE(2102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 3054: + case 3044: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2109); + lookahead == 'f') ADVANCE(2100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2111); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 3055: + case 3045: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + lookahead == 'f') ADVANCE(2102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 3056: + case 3046: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); - case 3057: + case 3047: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 3058: + case 3048: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3059: + case 3049: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3060: + case 3050: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2015); + if (lookahead == ',') ADVANCE(2006); if (lookahead == '-' || - lookahead == '@') ADVANCE(2011); + lookahead == '@') ADVANCE(2002); if (lookahead == '.' || - lookahead == '?') ADVANCE(2013); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2010); + lookahead == '?') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); END_STATE(); - case 3061: + case 3051: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2015); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4668); + if (lookahead == ',') ADVANCE(2006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4635); END_STATE(); - case 3062: + case 3052: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2015); + if (lookahead == ',') ADVANCE(2006); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2013); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2012); + lookahead == '@') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); END_STATE(); - case 3063: + case 3053: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2013); + if (lookahead == ',') ADVANCE(2006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); END_STATE(); - case 3064: + case 3054: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2015); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2014); + lookahead == '@') ADVANCE(2006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); END_STATE(); - case 3065: + case 3055: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); END_STATE(); - case 3066: + case 3056: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 3067: + case 3057: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2138); + if (lookahead == ',') ADVANCE(2129); if (lookahead == '-' || - lookahead == '@') ADVANCE(2134); + lookahead == '@') ADVANCE(2125); if (lookahead == '.' || - lookahead == '?') ADVANCE(2136); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); + lookahead == '?') ADVANCE(2127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2124); END_STATE(); - case 3068: + case 3058: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2138); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4669); + if (lookahead == ',') ADVANCE(2129); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4636); END_STATE(); - case 3069: + case 3059: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2138); + if (lookahead == ',') ADVANCE(2129); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2136); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); + lookahead == '@') ADVANCE(2127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2126); END_STATE(); - case 3070: + case 3060: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2136); + if (lookahead == ',') ADVANCE(2129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2127); END_STATE(); - case 3071: + case 3061: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); + lookahead == '@') ADVANCE(2129); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2128); END_STATE(); - case 3072: + case 3062: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); END_STATE(); - case 3073: + case 3063: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2021); + if (lookahead == ',') ADVANCE(2012); if (lookahead == '-' || - lookahead == '@') ADVANCE(2017); + lookahead == '@') ADVANCE(2008); if (lookahead == '.' || - lookahead == '?') ADVANCE(2019); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2016); + lookahead == '?') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); END_STATE(); - case 3074: + case 3064: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2021); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4676); + if (lookahead == ',') ADVANCE(2012); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); END_STATE(); - case 3075: + case 3065: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2021); + if (lookahead == ',') ADVANCE(2012); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2019); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2018); + lookahead == '@') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); END_STATE(); - case 3076: + case 3066: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2019); + if (lookahead == ',') ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); END_STATE(); - case 3077: + case 3067: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2020); + lookahead == '@') ADVANCE(2012); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2011); END_STATE(); - case 3078: + case 3068: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); END_STATE(); - case 3079: + case 3069: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 3080: + case 3070: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2033); + if (lookahead == ',') ADVANCE(2024); if (lookahead == '-' || - lookahead == '@') ADVANCE(2029); + lookahead == '@') ADVANCE(2020); if (lookahead == '.' || - lookahead == '?') ADVANCE(2031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2028); + lookahead == '?') ADVANCE(2022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); END_STATE(); - case 3081: + case 3071: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2033); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4644); + if (lookahead == ',') ADVANCE(2024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); END_STATE(); - case 3082: + case 3072: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2033); + if (lookahead == ',') ADVANCE(2024); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2030); + lookahead == '@') ADVANCE(2022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2021); END_STATE(); - case 3083: + case 3073: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2031); + if (lookahead == ',') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2022); END_STATE(); - case 3084: + case 3074: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == '@') ADVANCE(2024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2023); END_STATE(); - case 3085: + case 3075: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); END_STATE(); - case 3086: + case 3076: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 3087: + case 3077: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2039); + if (lookahead == ',') ADVANCE(2030); if (lookahead == '-' || - lookahead == '@') ADVANCE(2035); + lookahead == '@') ADVANCE(2026); if (lookahead == '.' || - lookahead == '?') ADVANCE(2037); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2034); + lookahead == '?') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2025); END_STATE(); - case 3088: + case 3078: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2039); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(2030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4612); END_STATE(); - case 3089: + case 3079: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2039); + if (lookahead == ',') ADVANCE(2030); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2037); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == '@') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2027); END_STATE(); - case 3090: + case 3080: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2037); + if (lookahead == ',') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2028); END_STATE(); - case 3091: + case 3081: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2038); + lookahead == '@') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); END_STATE(); - case 3092: + case 3082: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); - case 3093: + case 3083: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3094: + case 3084: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 3095: + case 3085: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2045); + if (lookahead == ',') ADVANCE(2036); if (lookahead == '-' || - lookahead == '@') ADVANCE(2041); + lookahead == '@') ADVANCE(2032); if (lookahead == '.' || - lookahead == '?') ADVANCE(2043); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2040); + lookahead == '?') ADVANCE(2034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2031); END_STATE(); - case 3096: + case 3086: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2045); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4662); + if (lookahead == ',') ADVANCE(2036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); END_STATE(); - case 3097: + case 3087: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2045); + if (lookahead == ',') ADVANCE(2036); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2043); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2042); + lookahead == '@') ADVANCE(2034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2033); END_STATE(); - case 3098: + case 3088: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2034); END_STATE(); - case 3099: + case 3089: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2045); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2044); + lookahead == '@') ADVANCE(2036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2035); END_STATE(); - case 3100: + case 3090: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3101: + case 3091: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); END_STATE(); - case 3102: + case 3092: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 3103: + case 3093: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2063); + if (lookahead == ',') ADVANCE(2054); if (lookahead == '-' || - lookahead == '@') ADVANCE(2059); + lookahead == '@') ADVANCE(2050); if (lookahead == '.' || - lookahead == '?') ADVANCE(2061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2058); + lookahead == '?') ADVANCE(2052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); END_STATE(); - case 3104: + case 3094: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4675); + if (lookahead == ',') ADVANCE(2054); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4642); END_STATE(); - case 3105: + case 3095: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2063); + if (lookahead == ',') ADVANCE(2054); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2060); + lookahead == '@') ADVANCE(2052); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); END_STATE(); - case 3106: + case 3096: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2061); + if (lookahead == ',') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); - case 3107: + case 3097: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2062); + lookahead == '@') ADVANCE(2054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); END_STATE(); - case 3108: + case 3098: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); - case 3109: - ACCEPT_TOKEN(aux_sym_ctrl_match_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3109); + case 3099: + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 3110: + case 3100: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 3111: + case 3101: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 3112: + case 3102: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); - END_STATE(); - case 3113: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 3114: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3811); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3115: + case 3103: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2363); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(3778); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3116: + case 3104: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3117: + case 3105: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3118: + case 3106: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2962); - if (lookahead == '<') ADVANCE(3350); - if (lookahead == '=') ADVANCE(3347); + if (lookahead == '.') ADVANCE(2953); + if (lookahead == '<') ADVANCE(3317); + if (lookahead == '=') ADVANCE(3314); END_STATE(); - case 3119: + case 3107: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '<') ADVANCE(3350); - if (lookahead == '=') ADVANCE(3347); + if (lookahead == '.') ADVANCE(1113); + if (lookahead == '<') ADVANCE(3317); + if (lookahead == '=') ADVANCE(3314); END_STATE(); - case 3120: + case 3108: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3771); - if (lookahead == '<') ADVANCE(3350); - if (lookahead == '=') ADVANCE(3347); + if (lookahead == '.') ADVANCE(3738); + if (lookahead == '<') ADVANCE(3317); + if (lookahead == '=') ADVANCE(3314); END_STATE(); - case 3121: + case 3109: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4255); - if (lookahead == '<') ADVANCE(3350); - if (lookahead == '=') ADVANCE(3347); + if (lookahead == '.') ADVANCE(4222); + if (lookahead == '<') ADVANCE(3317); + if (lookahead == '=') ADVANCE(3314); END_STATE(); - case 3122: + case 3110: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3350); - if (lookahead == '=') ADVANCE(3347); + if (lookahead == '<') ADVANCE(3317); + if (lookahead == '=') ADVANCE(3314); END_STATE(); - case 3123: + case 3111: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3352); - if (lookahead == '=') ADVANCE(3349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '<') ADVANCE(3319); + if (lookahead == '=') ADVANCE(3316); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3124: + case 3112: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3351); - if (lookahead == '=') ADVANCE(3348); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '<') ADVANCE(3318); + if (lookahead == '=') ADVANCE(3315); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3125: + case 3113: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 3126: + case 3114: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(3542); - if (lookahead == '\'') ADVANCE(3538); + if (lookahead == '"') ADVANCE(3509); + if (lookahead == '\'') ADVANCE(3505); END_STATE(); - case 3127: + case 3115: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 3128: + case 3116: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2051); + if (lookahead == ',') ADVANCE(2042); if (lookahead == '-' || - lookahead == '@') ADVANCE(2047); + lookahead == '@') ADVANCE(2038); if (lookahead == '.' || - lookahead == '?') ADVANCE(2049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2046); + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); - case 3129: + case 3117: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4660); + if (lookahead == ',') ADVANCE(2042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); END_STATE(); - case 3130: + case 3118: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2051); + if (lookahead == ',') ADVANCE(2042); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2048); + lookahead == '@') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); END_STATE(); - case 3131: + case 3119: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2049); + if (lookahead == ',') ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); - case 3132: + case 3120: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2050); + lookahead == '@') ADVANCE(2042); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2041); END_STATE(); - case 3133: + case 3121: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); END_STATE(); - case 3134: + case 3122: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 3135: + case 3123: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2057); + if (lookahead == ',') ADVANCE(2048); if (lookahead == '-' || - lookahead == '@') ADVANCE(2053); + lookahead == '@') ADVANCE(2044); if (lookahead == '.' || - lookahead == '?') ADVANCE(2055); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2052); + lookahead == '?') ADVANCE(2046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2043); END_STATE(); - case 3136: + case 3124: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4672); + if (lookahead == ',') ADVANCE(2048); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); END_STATE(); - case 3137: + case 3125: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2057); + if (lookahead == ',') ADVANCE(2048); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2055); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2054); + lookahead == '@') ADVANCE(2046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2045); END_STATE(); - case 3138: + case 3126: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2055); + if (lookahead == ',') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2046); END_STATE(); - case 3139: + case 3127: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2057); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2056); + lookahead == '@') ADVANCE(2048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2047); END_STATE(); - case 3140: + case 3128: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3141: + case 3129: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); END_STATE(); - case 3142: + case 3130: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2081); + if (lookahead == ',') ADVANCE(2072); if (lookahead == '-' || - lookahead == '@') ADVANCE(2077); + lookahead == '@') ADVANCE(2068); if (lookahead == '.' || - lookahead == '?') ADVANCE(2079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2076); + lookahead == '?') ADVANCE(2070); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); END_STATE(); - case 3143: + case 3131: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2081); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4683); + if (lookahead == ',') ADVANCE(2072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4650); END_STATE(); - case 3144: + case 3132: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2081); + if (lookahead == ',') ADVANCE(2072); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2078); + lookahead == '@') ADVANCE(2070); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); END_STATE(); - case 3145: + case 3133: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2079); + if (lookahead == ',') ADVANCE(2072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); END_STATE(); - case 3146: + case 3134: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2081); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2080); + lookahead == '@') ADVANCE(2072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); END_STATE(); - case 3147: + case 3135: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); - case 3148: + case 3136: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == '-') ADVANCE(1972); - if (lookahead == '@') ADVANCE(1979); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == '-') ADVANCE(1963); + if (lookahead == '@') ADVANCE(1970); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1978); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); END_STATE(); - case 3149: + case 3137: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == '-') ADVANCE(1973); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == '-') ADVANCE(1964); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1980); + lookahead == '@') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); END_STATE(); - case 3150: + case 3138: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == '-') ADVANCE(1973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == '-') ADVANCE(1964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 3151: + case 3139: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == '-') ADVANCE(4684); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == '-') ADVANCE(4651); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); END_STATE(); - case 3152: + case 3140: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1984); + if (lookahead == '-') ADVANCE(1975); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1990); + lookahead == '@') ADVANCE(1982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); END_STATE(); - case 3153: + case 3141: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if (lookahead == '-') ADVANCE(1975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 3154: + case 3142: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1991); + if (lookahead == ',') ADVANCE(1982); if (lookahead == '.' || - lookahead == '?') ADVANCE(1981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); + lookahead == '?') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); - case 3155: + case 3143: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); + if (lookahead == ',') ADVANCE(1982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); END_STATE(); - case 3156: + case 3144: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 3157: + case 3145: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 3158: + case 3146: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2003); + if (lookahead == ',') ADVANCE(1994); if (lookahead == '-' || - lookahead == '@') ADVANCE(1999); + lookahead == '@') ADVANCE(1990); if (lookahead == '.' || - lookahead == '?') ADVANCE(2001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1998); + lookahead == '?') ADVANCE(1992); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1989); END_STATE(); - case 3159: + case 3147: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2003); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4690); + if (lookahead == ',') ADVANCE(1994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 3160: + case 3148: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2003); + if (lookahead == ',') ADVANCE(1994); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2000); + lookahead == '@') ADVANCE(1992); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1991); END_STATE(); - case 3161: + case 3149: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2001); + if (lookahead == ',') ADVANCE(1994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1992); END_STATE(); - case 3162: + case 3150: ACCEPT_TOKEN(anon_sym_register); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2003); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2002); + lookahead == '@') ADVANCE(1994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1993); END_STATE(); - case 3163: + case 3151: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); END_STATE(); - case 3164: + case 3152: ACCEPT_TOKEN(anon_sym_hide); END_STATE(); - case 3165: + case 3153: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == '-') ADVANCE(1952); - if (lookahead == '@') ADVANCE(1959); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == '-') ADVANCE(1943); + if (lookahead == '@') ADVANCE(1950); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1949); END_STATE(); - case 3166: + case 3154: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == '-') ADVANCE(1953); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == '-') ADVANCE(1944); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); + lookahead == '@') ADVANCE(1952); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1951); END_STATE(); - case 3167: + case 3155: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == '-') ADVANCE(1953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == '-') ADVANCE(1944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 3168: + case 3156: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == '-') ADVANCE(4663); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == '-') ADVANCE(4630); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 3169: + case 3157: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1964); + if (lookahead == '-') ADVANCE(1955); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1971); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1970); + lookahead == '@') ADVANCE(1962); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); END_STATE(); - case 3170: + case 3158: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if (lookahead == '-') ADVANCE(1955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 3171: + case 3159: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1971); + if (lookahead == ',') ADVANCE(1962); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); + lookahead == '?') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); END_STATE(); - case 3172: + case 3160: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); + if (lookahead == ',') ADVANCE(1962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 3173: + case 3161: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 3174: + case 3162: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 3175: + case 3163: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1997); + if (lookahead == ',') ADVANCE(1988); if (lookahead == '-' || - lookahead == '@') ADVANCE(1993); + lookahead == '@') ADVANCE(1984); if (lookahead == '.' || - lookahead == '?') ADVANCE(1995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1992); + lookahead == '?') ADVANCE(1986); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1983); END_STATE(); - case 3176: + case 3164: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1997); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4688); + if (lookahead == ',') ADVANCE(1988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 3177: + case 3165: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1997); + if (lookahead == ',') ADVANCE(1988); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1994); + lookahead == '@') ADVANCE(1986); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); END_STATE(); - case 3178: + case 3166: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1995); + if (lookahead == ',') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); - case 3179: + case 3167: ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1997); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1996); + lookahead == '@') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); END_STATE(); - case 3180: + case 3168: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); - case 3181: + case 3169: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 3182: + case 3170: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2132); + if (lookahead == ',') ADVANCE(2123); if (lookahead == '-' || - lookahead == '@') ADVANCE(2128); + lookahead == '@') ADVANCE(2119); if (lookahead == '.' || - lookahead == '?') ADVANCE(2130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); + lookahead == '?') ADVANCE(2121); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2118); END_STATE(); - case 3183: + case 3171: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2132); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4659); + if (lookahead == ',') ADVANCE(2123); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); END_STATE(); - case 3184: + case 3172: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2132); + if (lookahead == ',') ADVANCE(2123); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); + lookahead == '@') ADVANCE(2121); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2120); END_STATE(); - case 3185: + case 3173: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2130); + if (lookahead == ',') ADVANCE(2123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2121); END_STATE(); - case 3186: + case 3174: ACCEPT_TOKEN(anon_sym_new); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); + lookahead == '@') ADVANCE(2123); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2122); END_STATE(); - case 3187: + case 3175: ACCEPT_TOKEN(anon_sym_new); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); END_STATE(); - case 3188: + case 3176: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 3189: + case 3177: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2087); + if (lookahead == ',') ADVANCE(2078); if (lookahead == '-' || - lookahead == '@') ADVANCE(2083); + lookahead == '@') ADVANCE(2074); if (lookahead == '.' || - lookahead == '?') ADVANCE(2085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2082); + lookahead == '?') ADVANCE(2076); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); END_STATE(); - case 3190: + case 3178: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2087); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); + if (lookahead == ',') ADVANCE(2078); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); END_STATE(); - case 3191: + case 3179: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2087); + if (lookahead == ',') ADVANCE(2078); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); + lookahead == '@') ADVANCE(2076); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); END_STATE(); - case 3192: + case 3180: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2085); + if (lookahead == ',') ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); END_STATE(); - case 3193: + case 3181: ACCEPT_TOKEN(anon_sym_as); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2086); + lookahead == '@') ADVANCE(2078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); END_STATE(); - case 3194: + case 3182: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); - case 3195: + case 3183: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 3196: + case 3184: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); - case 3197: + case 3185: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3198: + case 3186: ACCEPT_TOKEN(sym_wild_card); END_STATE(); - case 3199: + case 3187: ACCEPT_TOKEN(sym_wild_card); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '=') ADVANCE(1112); + if (lookahead == '*') ADVANCE(1106); + if (lookahead == '=') ADVANCE(1103); END_STATE(); - case 3200: + case 3188: ACCEPT_TOKEN(sym_wild_card); - if (lookahead == '=') ADVANCE(1112); + if (lookahead == '=') ADVANCE(1103); END_STATE(); - case 3201: + case 3189: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 3202: + case 3190: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 3203: + case 3191: ACCEPT_TOKEN(anon_sym_where); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3204: + case 3192: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 3205: + case 3193: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\n') ADVANCE(3297); - if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\n') ADVANCE(3264); + if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3260); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == ' ') ADVANCE(3236); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3206: + case 3194: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3207: + case 3195: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3208: + case 3196: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 3209: + case 3197: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\n') ADVANCE(3298); - if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\n') ADVANCE(3265); + if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3262); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == ' ') ADVANCE(3237); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3210: + case 3198: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3211: + case 3199: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3212: + case 3200: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 3213: + case 3201: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\n') ADVANCE(3299); - if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\n') ADVANCE(3266); + if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3264); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == ' ') ADVANCE(3238); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3214: + case 3202: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3215: + case 3203: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3216: + case 3204: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 3217: + case 3205: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == '\n') ADVANCE(3301); - if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\n') ADVANCE(3268); + if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3268); + lookahead == ' ') ADVANCE(3240); END_STATE(); - case 3218: + case 3206: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 3219: + case 3207: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == '\n') ADVANCE(3302); - if (lookahead == '\r') ADVANCE(24); + if (lookahead == '\n') ADVANCE(3269); + if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3270); + lookahead == ' ') ADVANCE(3241); END_STATE(); - case 3220: + case 3208: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 3221: + case 3209: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == '\n') ADVANCE(3303); - if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\n') ADVANCE(3270); + if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3272); + lookahead == ' ') ADVANCE(3242); END_STATE(); - case 3222: + case 3210: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 3223: + case 3211: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 3224: + case 3212: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\n') ADVANCE(3305); - if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\n') ADVANCE(3272); + if (lookahead == '\r') ADVANCE(5); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3276); + lookahead == ' ') ADVANCE(3244); END_STATE(); - case 3225: + case 3213: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3226); + if (lookahead == '=') ADVANCE(3214); END_STATE(); - case 3226: + case 3214: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 3227: + case 3215: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 3228: + case 3216: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 3229: + case 3217: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 3230: + case 3218: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == '\n') ADVANCE(3293); - if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\n') ADVANCE(3260); + if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3252); + lookahead == ' ') ADVANCE(3232); END_STATE(); - case 3231: + case 3219: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 3232: + case 3220: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 3233: + case 3221: ACCEPT_TOKEN(aux_sym_expr_binary_token1); - if (lookahead == '\n') ADVANCE(3282); - if (lookahead == '\r') ADVANCE(8); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); + END_STATE(); + case 3222: + ACCEPT_TOKEN(aux_sym_expr_binary_token2); + END_STATE(); + case 3223: + ACCEPT_TOKEN(aux_sym_expr_binary_token3); + END_STATE(); + case 3224: + ACCEPT_TOKEN(aux_sym_expr_binary_token4); + END_STATE(); + case 3225: + ACCEPT_TOKEN(aux_sym_expr_binary_token5); + END_STATE(); + case 3226: + ACCEPT_TOKEN(aux_sym_expr_binary_token6); + END_STATE(); + case 3227: + ACCEPT_TOKEN(aux_sym_expr_binary_token7); + END_STATE(); + case 3228: + ACCEPT_TOKEN(aux_sym_expr_binary_token8); + END_STATE(); + case 3229: + ACCEPT_TOKEN(aux_sym_expr_binary_token9); + END_STATE(); + case 3230: + ACCEPT_TOKEN(aux_sym_expr_binary_token10); + END_STATE(); + case 3231: + ACCEPT_TOKEN(aux_sym_expr_binary_token11); + END_STATE(); + case 3232: + ACCEPT_TOKEN(aux_sym_expr_binary_token12); + END_STATE(); + case 3233: + ACCEPT_TOKEN(aux_sym_expr_binary_token13); END_STATE(); case 3234: - ACCEPT_TOKEN(aux_sym_expr_binary_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + ACCEPT_TOKEN(aux_sym_expr_binary_token14); END_STATE(); case 3235: - ACCEPT_TOKEN(aux_sym_expr_binary_token2); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); + ACCEPT_TOKEN(aux_sym_expr_binary_token15); END_STATE(); case 3236: - ACCEPT_TOKEN(aux_sym_expr_binary_token3); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); + ACCEPT_TOKEN(aux_sym_expr_binary_token16); END_STATE(); case 3237: - ACCEPT_TOKEN(aux_sym_expr_binary_token4); - if (lookahead == '\n') ADVANCE(3285); - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3237); + ACCEPT_TOKEN(aux_sym_expr_binary_token17); END_STATE(); case 3238: - ACCEPT_TOKEN(aux_sym_expr_binary_token4); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); + ACCEPT_TOKEN(aux_sym_expr_binary_token18); END_STATE(); case 3239: - ACCEPT_TOKEN(aux_sym_expr_binary_token5); - if (lookahead == '\n') ADVANCE(3286); - if (lookahead == '\r') ADVANCE(15); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3239); + ACCEPT_TOKEN(aux_sym_expr_binary_token19); END_STATE(); case 3240: - ACCEPT_TOKEN(aux_sym_expr_binary_token5); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); + ACCEPT_TOKEN(aux_sym_expr_binary_token20); END_STATE(); case 3241: - ACCEPT_TOKEN(aux_sym_expr_binary_token6); - if (lookahead == '\n') ADVANCE(3287); - if (lookahead == '\r') ADVANCE(9); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3241); + ACCEPT_TOKEN(aux_sym_expr_binary_token21); END_STATE(); case 3242: - ACCEPT_TOKEN(aux_sym_expr_binary_token6); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3242); + ACCEPT_TOKEN(aux_sym_expr_binary_token22); END_STATE(); case 3243: - ACCEPT_TOKEN(aux_sym_expr_binary_token7); - if (lookahead == '\n') ADVANCE(3288); - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3243); + ACCEPT_TOKEN(aux_sym_expr_binary_token23); END_STATE(); case 3244: - ACCEPT_TOKEN(aux_sym_expr_binary_token7); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3244); + ACCEPT_TOKEN(aux_sym_expr_binary_token24); END_STATE(); case 3245: - ACCEPT_TOKEN(aux_sym_expr_binary_token8); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3245); + ACCEPT_TOKEN(aux_sym_expr_binary_token25); END_STATE(); case 3246: - ACCEPT_TOKEN(aux_sym_expr_binary_token9); - if (lookahead == '\n') ADVANCE(3290); - if (lookahead == '\r') ADVANCE(20); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3246); + ACCEPT_TOKEN(aux_sym_expr_binary_token26); END_STATE(); case 3247: - ACCEPT_TOKEN(aux_sym_expr_binary_token9); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3247); + ACCEPT_TOKEN(aux_sym_expr_binary_token27); END_STATE(); case 3248: - ACCEPT_TOKEN(aux_sym_expr_binary_token10); - if (lookahead == '\n') ADVANCE(3291); - if (lookahead == '\r') ADVANCE(21); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3248); + ACCEPT_TOKEN(aux_sym_expr_binary_token28); END_STATE(); case 3249: - ACCEPT_TOKEN(aux_sym_expr_binary_token10); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3249); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token1); END_STATE(); case 3250: - ACCEPT_TOKEN(aux_sym_expr_binary_token11); - if (lookahead == '\n') ADVANCE(3292); - if (lookahead == '\r') ADVANCE(11); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3250); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token2); END_STATE(); case 3251: - ACCEPT_TOKEN(aux_sym_expr_binary_token11); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3251); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token3); END_STATE(); case 3252: - ACCEPT_TOKEN(aux_sym_expr_binary_token12); - if (lookahead == '\n') ADVANCE(3293); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3252); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token4); END_STATE(); case 3253: - ACCEPT_TOKEN(aux_sym_expr_binary_token12); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3253); - END_STATE(); - case 3254: - ACCEPT_TOKEN(aux_sym_expr_binary_token13); - if (lookahead == '\n') ADVANCE(3294); - if (lookahead == '\r') ADVANCE(19); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3254); - END_STATE(); - case 3255: - ACCEPT_TOKEN(aux_sym_expr_binary_token13); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3255); - END_STATE(); - case 3256: - ACCEPT_TOKEN(aux_sym_expr_binary_token14); - if (lookahead == '\n') ADVANCE(3295); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3256); - END_STATE(); - case 3257: - ACCEPT_TOKEN(aux_sym_expr_binary_token14); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3257); - END_STATE(); - case 3258: - ACCEPT_TOKEN(aux_sym_expr_binary_token15); - if (lookahead == '\n') ADVANCE(3296); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3258); - END_STATE(); - case 3259: - ACCEPT_TOKEN(aux_sym_expr_binary_token15); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3259); - END_STATE(); - case 3260: - ACCEPT_TOKEN(aux_sym_expr_binary_token16); - if (lookahead == '\n') ADVANCE(3297); - if (lookahead == '\r') ADVANCE(14); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3260); - END_STATE(); - case 3261: - ACCEPT_TOKEN(aux_sym_expr_binary_token16); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3261); - END_STATE(); - case 3262: - ACCEPT_TOKEN(aux_sym_expr_binary_token17); - if (lookahead == '\n') ADVANCE(3298); - if (lookahead == '\r') ADVANCE(16); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3262); - END_STATE(); - case 3263: - ACCEPT_TOKEN(aux_sym_expr_binary_token17); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3263); - END_STATE(); - case 3264: - ACCEPT_TOKEN(aux_sym_expr_binary_token18); - if (lookahead == '\n') ADVANCE(3299); - if (lookahead == '\r') ADVANCE(13); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3264); - END_STATE(); - case 3265: - ACCEPT_TOKEN(aux_sym_expr_binary_token18); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3265); - END_STATE(); - case 3266: - ACCEPT_TOKEN(aux_sym_expr_binary_token19); - if (lookahead == '\n') ADVANCE(3300); - if (lookahead == '\r') ADVANCE(12); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3266); - END_STATE(); - case 3267: - ACCEPT_TOKEN(aux_sym_expr_binary_token19); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3267); - END_STATE(); - case 3268: - ACCEPT_TOKEN(aux_sym_expr_binary_token20); - if (lookahead == '\n') ADVANCE(3301); - if (lookahead == '\r') ADVANCE(18); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3268); - END_STATE(); - case 3269: - ACCEPT_TOKEN(aux_sym_expr_binary_token20); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3269); - END_STATE(); - case 3270: - ACCEPT_TOKEN(aux_sym_expr_binary_token21); - if (lookahead == '\n') ADVANCE(3302); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3270); - END_STATE(); - case 3271: - ACCEPT_TOKEN(aux_sym_expr_binary_token21); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3271); - END_STATE(); - case 3272: - ACCEPT_TOKEN(aux_sym_expr_binary_token22); - if (lookahead == '\n') ADVANCE(3303); - if (lookahead == '\r') ADVANCE(23); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3272); - END_STATE(); - case 3273: - ACCEPT_TOKEN(aux_sym_expr_binary_token22); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3273); - END_STATE(); - case 3274: - ACCEPT_TOKEN(aux_sym_expr_binary_token23); - if (lookahead == '\n') ADVANCE(3304); - if (lookahead == '\r') ADVANCE(10); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3274); - END_STATE(); - case 3275: - ACCEPT_TOKEN(aux_sym_expr_binary_token23); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3275); - END_STATE(); - case 3276: - ACCEPT_TOKEN(aux_sym_expr_binary_token24); - if (lookahead == '\n') ADVANCE(3305); - if (lookahead == '\r') ADVANCE(6); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3276); - END_STATE(); - case 3277: - ACCEPT_TOKEN(aux_sym_expr_binary_token24); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3277); - END_STATE(); - case 3278: - ACCEPT_TOKEN(aux_sym_expr_binary_token25); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3278); - END_STATE(); - case 3279: - ACCEPT_TOKEN(aux_sym_expr_binary_token26); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3279); - END_STATE(); - case 3280: - ACCEPT_TOKEN(aux_sym_expr_binary_token27); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3280); - END_STATE(); - case 3281: - ACCEPT_TOKEN(aux_sym_expr_binary_token28); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3281); - END_STATE(); - case 3282: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token1); - if (lookahead == '\r') ADVANCE(8); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3282); - END_STATE(); - case 3283: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token2); - if (lookahead == '\r') ADVANCE(159); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3283); - END_STATE(); - case 3284: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token3); - if (lookahead == '\r') ADVANCE(155); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3284); - END_STATE(); - case 3285: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token4); - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3285); - END_STATE(); - case 3286: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token5); - if (lookahead == '\r') ADVANCE(15); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3286); END_STATE(); - case 3287: + case 3254: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token6); - if (lookahead == '\r') ADVANCE(9); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3287); END_STATE(); - case 3288: + case 3255: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token7); - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3288); END_STATE(); - case 3289: + case 3256: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token8); - if (lookahead == '\r') ADVANCE(156); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3289); END_STATE(); - case 3290: + case 3257: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token9); - if (lookahead == '\r') ADVANCE(20); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3290); END_STATE(); - case 3291: + case 3258: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token10); - if (lookahead == '\r') ADVANCE(21); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3291); END_STATE(); - case 3292: + case 3259: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token11); - if (lookahead == '\r') ADVANCE(11); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3292); END_STATE(); - case 3293: + case 3260: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token12); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3293); END_STATE(); - case 3294: + case 3261: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token13); - if (lookahead == '\r') ADVANCE(19); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3294); END_STATE(); - case 3295: + case 3262: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token14); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3295); END_STATE(); - case 3296: + case 3263: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token15); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3296); END_STATE(); - case 3297: + case 3264: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token16); - if (lookahead == '\r') ADVANCE(14); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3297); END_STATE(); - case 3298: + case 3265: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token17); - if (lookahead == '\r') ADVANCE(16); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3298); END_STATE(); - case 3299: + case 3266: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token18); - if (lookahead == '\r') ADVANCE(13); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3299); END_STATE(); - case 3300: + case 3267: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token19); - if (lookahead == '\r') ADVANCE(12); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3300); END_STATE(); - case 3301: + case 3268: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token20); - if (lookahead == '\r') ADVANCE(18); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3301); END_STATE(); - case 3302: + case 3269: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token21); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3302); END_STATE(); - case 3303: + case 3270: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token22); - if (lookahead == '\r') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3303); END_STATE(); - case 3304: + case 3271: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token23); - if (lookahead == '\r') ADVANCE(10); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3304); END_STATE(); - case 3305: + case 3272: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token24); - if (lookahead == '\r') ADVANCE(6); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3305); END_STATE(); - case 3306: + case 3273: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token25); - if (lookahead == '\r') ADVANCE(157); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3306); END_STATE(); - case 3307: + case 3274: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token26); - if (lookahead == '\r') ADVANCE(160); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3307); END_STATE(); - case 3308: + case 3275: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token27); - if (lookahead == '\r') ADVANCE(158); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3308); END_STATE(); - case 3309: + case 3276: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token28); - if (lookahead == '\r') ADVANCE(161); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3309); END_STATE(); - case 3310: + case 3277: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 3311: + case 3278: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2962); - if (lookahead == '<') ADVANCE(3354); - if (lookahead == '=') ADVANCE(3353); + if (lookahead == '.') ADVANCE(2953); + if (lookahead == '<') ADVANCE(3321); + if (lookahead == '=') ADVANCE(3320); END_STATE(); - case 3312: + case 3279: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '<') ADVANCE(3354); - if (lookahead == '=') ADVANCE(3353); + if (lookahead == '.') ADVANCE(1113); + if (lookahead == '<') ADVANCE(3321); + if (lookahead == '=') ADVANCE(3320); END_STATE(); - case 3313: + case 3280: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1121); - if (lookahead == '<') ADVANCE(3354); - if (lookahead == '=') ADVANCE(3353); + if (lookahead == '.') ADVANCE(1112); + if (lookahead == '<') ADVANCE(3321); + if (lookahead == '=') ADVANCE(3320); END_STATE(); - case 3314: + case 3281: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2961); - if (lookahead == '<') ADVANCE(3354); - if (lookahead == '=') ADVANCE(3353); + if (lookahead == '.') ADVANCE(2952); + if (lookahead == '<') ADVANCE(3321); + if (lookahead == '=') ADVANCE(3320); END_STATE(); - case 3315: + case 3282: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3354); - if (lookahead == '=') ADVANCE(3353); + if (lookahead == '<') ADVANCE(3321); + if (lookahead == '=') ADVANCE(3320); END_STATE(); - case 3316: + case 3283: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 3317: + case 3284: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3311); - if (lookahead == '_') ADVANCE(1157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (lookahead == '.') ADVANCE(3278); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); END_STATE(); - case 3318: + case 3285: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); END_STATE(); - case 3319: + case 3286: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); END_STATE(); - case 3320: + case 3287: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); END_STATE(); - case 3321: + case 3288: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3935); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); END_STATE(); - case 3322: + case 3289: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); END_STATE(); - case 3323: + case 3290: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); END_STATE(); - case 3324: + case 3291: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); END_STATE(); - case 3325: + case 3292: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); END_STATE(); - case 3326: + case 3293: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3940); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); END_STATE(); - case 3327: + case 3294: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1348); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if (lookahead == '.') ADVANCE(1339); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3328: + case 3295: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1142); - if (lookahead == '_') ADVANCE(1157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (lookahead == '.') ADVANCE(1133); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); END_STATE(); - case 3329: + case 3296: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1142); - if (lookahead == '_') ADVANCE(1162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (lookahead == '.') ADVANCE(1133); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); END_STATE(); - case 3330: + case 3297: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3315); + if (lookahead == '.') ADVANCE(3282); END_STATE(); - case 3331: + case 3298: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3332: + case 3299: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(3813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(3780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); END_STATE(); - case 3333: + case 3300: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(4288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(4255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); END_STATE(); - case 3334: + case 3301: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(4387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); END_STATE(); - case 3335: + case 3302: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(3940); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(4355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); END_STATE(); - case 3336: + case 3303: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4362); + if (lookahead == '.') ADVANCE(4329); END_STATE(); - case 3337: + case 3304: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4362); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (lookahead == '.') ADVANCE(4329); + if (lookahead == '_') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); END_STATE(); - case 3338: + case 3305: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3312); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if (lookahead == '.') ADVANCE(3279); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3339: + case 3306: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(578); + if (lookahead == '.') ADVANCE(570); END_STATE(); - case 3340: + case 3307: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3313); - if (lookahead == '_') ADVANCE(1162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (lookahead == '.') ADVANCE(3280); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); END_STATE(); - case 3341: + case 3308: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3314); + if (lookahead == '.') ADVANCE(3281); END_STATE(); - case 3342: + case 3309: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3343: + case 3310: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3935); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); END_STATE(); - case 3344: + case 3311: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (lookahead == '_') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); END_STATE(); - case 3345: + case 3312: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); + if (lookahead == '_') ADVANCE(4579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); END_STATE(); - case 3346: + case 3313: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + if (lookahead == '_') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); END_STATE(); - case 3347: + case 3314: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 3348: + case 3315: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3349: + case 3316: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3350: + case 3317: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 3351: + case 3318: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3352: + case 3319: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3353: + case 3320: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 3354: + case 3321: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 3355: + case 3322: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3620); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (lookahead == '-') ADVANCE(3587); + if (lookahead == '_') ADVANCE(3327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3356: + case 3323: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3869); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '-') ADVANCE(3836); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3357: + case 3324: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4337); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '-') ADVANCE(4304); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3358: + case 3325: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4025); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '-') ADVANCE(3992); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3359: + case 3326: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4443); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '-') ADVANCE(4410); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3360: + case 3327: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(3327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3361: + case 3328: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (lookahead == '_') ADVANCE(3327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3362: + case 3329: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); + if (lookahead == '_') ADVANCE(3327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3328); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3363: + case 3330: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (lookahead == '_') ADVANCE(3327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3364: + case 3331: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); + if (lookahead == '_') ADVANCE(3337); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3339); END_STATE(); - case 3365: + case 3332: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); + if (lookahead == '_') ADVANCE(3337); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3341); END_STATE(); - case 3366: + case 3333: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); + if (lookahead == '_') ADVANCE(3337); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); END_STATE(); - case 3367: + case 3334: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3378); + if (lookahead == '_') ADVANCE(3337); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 3368: + case 3335: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (lookahead == 'b') ADVANCE(1874); - if (lookahead == 'o') ADVANCE(1876); - if (lookahead == 'x') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '_') ADVANCE(3337); + if (lookahead == 'b') ADVANCE(1865); + if (lookahead == 'o') ADVANCE(1867); + if (lookahead == 'x') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3369: + case 3336: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (lookahead == 'b') ADVANCE(1331); - if (lookahead == 'o') ADVANCE(1332); - if (lookahead == 'x') ADVANCE(1339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '_') ADVANCE(3337); + if (lookahead == 'b') ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1323); + if (lookahead == 'x') ADVANCE(1330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3370: + case 3337: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); - case 3371: + case 3338: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); END_STATE(); - case 3372: + case 3339: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3338); END_STATE(); - case 3373: + case 3340: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3323); END_STATE(); - case 3374: + case 3341: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3340); END_STATE(); - case 3375: + case 3342: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3326); END_STATE(); - case 3376: + case 3343: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); END_STATE(); - case 3377: + case 3344: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3324); END_STATE(); - case 3378: + case 3345: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3377); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); - case 3379: + case 3346: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3339); END_STATE(); - case 3380: + case 3347: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3341); END_STATE(); - case 3381: + case 3348: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); END_STATE(); - case 3382: + case 3349: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3378); + if (lookahead == '_') ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 3383: + case 3350: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3384); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); + if (lookahead == '_') ADVANCE(3351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3384: + case 3351: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3384); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == '_') ADVANCE(3351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3385: + case 3352: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '_') ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); - case 3386: + case 3353: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(3386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '_') ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 3387: + case 3354: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3387); + if (lookahead == '_') ADVANCE(3354); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + lookahead == 'e') ADVANCE(1149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); END_STATE(); - case 3388: + case 3355: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3388); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if (lookahead == '_') ADVANCE(3355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); END_STATE(); - case 3389: + case 3356: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3389); + if (lookahead == '_') ADVANCE(3356); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1608); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); + lookahead == 'e') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); END_STATE(); - case 3390: + case 3357: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3390); + if (lookahead == '_') ADVANCE(3357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); + lookahead == 'e') ADVANCE(3903); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); END_STATE(); - case 3391: + case 3358: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3391); + if (lookahead == '_') ADVANCE(3358); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + lookahead == 'e') ADVANCE(3785); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); END_STATE(); - case 3392: + case 3359: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3392); + if (lookahead == '_') ADVANCE(3359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(632); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + lookahead == 'e') ADVANCE(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); END_STATE(); - case 3393: + case 3360: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3393); + if (lookahead == '_') ADVANCE(3360); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4384); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'e') ADVANCE(4351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); END_STATE(); - case 3394: + case 3361: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3394); + if (lookahead == '_') ADVANCE(3361); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4294); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'e') ADVANCE(4260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); END_STATE(); - case 3395: + case 3362: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3395); + if (lookahead == '_') ADVANCE(3362); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); + lookahead == 'e') ADVANCE(4580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); END_STATE(); - case 3396: + case 3363: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3396); + if (lookahead == '_') ADVANCE(3363); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4460); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); + lookahead == 'e') ADVANCE(4427); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); END_STATE(); - case 3397: + case 3364: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3397); + if (lookahead == '_') ADVANCE(3364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'e') ADVANCE(4009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); END_STATE(); - case 3398: + case 3365: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3398); + if (lookahead == '_') ADVANCE(3365); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4639); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'e') ADVANCE(4606); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); END_STATE(); - case 3399: + case 3366: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '_') ADVANCE(3366); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); END_STATE(); - case 3400: + case 3367: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 3401: + case 3368: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); - case 3402: + case 3369: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 3403: + case 3370: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1879); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(1870); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3404: + case 3371: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3869); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(3836); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3405: + case 3372: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4337); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(4304); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3406: + case 3373: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4596); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(4563); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3407: + case 3374: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4025); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(3992); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3408: + case 3375: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4443); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(4410); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3409: + case 3376: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(922); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '-') ADVANCE(910); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3410: + case 3377: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3420); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); - case 3411: + case 3378: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); END_STATE(); - case 3412: + case 3379: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); END_STATE(); - case 3413: + case 3380: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3426); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); END_STATE(); - case 3414: + case 3381: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3428); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 3415: + case 3382: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3430); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); END_STATE(); - case 3416: + case 3383: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3473); - if (lookahead == 'x') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(3424); + if (lookahead == 'o') ADVANCE(3440); + if (lookahead == 'x') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); - case 3417: + case 3384: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(1874); - if (lookahead == 'o') ADVANCE(1876); - if (lookahead == 'x') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(1865); + if (lookahead == 'o') ADVANCE(1867); + if (lookahead == 'x') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3418: + case 3385: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (lookahead == 'b') ADVANCE(1331); - if (lookahead == 'o') ADVANCE(1332); - if (lookahead == 'x') ADVANCE(1339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '_') ADVANCE(3407); + if (lookahead == 'b') ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1323); + if (lookahead == 'x') ADVANCE(1330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3419: + case 3386: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3420: + case 3387: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3419); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3421: + case 3388: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); END_STATE(); - case 3422: + case 3389: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3421); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); END_STATE(); - case 3423: + case 3390: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); END_STATE(); - case 3424: + case 3391: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3423); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); END_STATE(); - case 3425: + case 3392: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); END_STATE(); - case 3426: + case 3393: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); END_STATE(); - case 3427: + case 3394: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); END_STATE(); - case 3428: + case 3395: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3427); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); END_STATE(); - case 3429: + case 3396: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); END_STATE(); - case 3430: + case 3397: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3429); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); END_STATE(); - case 3431: + case 3398: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); END_STATE(); - case 3432: + case 3399: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3431); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3398); END_STATE(); - case 3433: + case 3400: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3420); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); - case 3434: + case 3401: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); END_STATE(); - case 3435: + case 3402: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); END_STATE(); - case 3436: + case 3403: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3426); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); END_STATE(); - case 3437: + case 3404: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3428); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 3438: + case 3405: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3430); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); END_STATE(); - case 3439: + case 3406: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); - case 3440: + case 3407: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '_') ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3441: + case 3408: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(3441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '_') ADVANCE(3408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3442: + case 3409: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3442); + if (lookahead == '_') ADVANCE(3409); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1603); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + lookahead == 'e') ADVANCE(1594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3443: + case 3410: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (lookahead == '_') ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); END_STATE(); - case 3444: + case 3411: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3444); + if (lookahead == '_') ADVANCE(3411); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + lookahead == 'e') ADVANCE(1154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); END_STATE(); - case 3445: + case 3412: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3445); + if (lookahead == '_') ADVANCE(3412); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + lookahead == 'e') ADVANCE(3781); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); END_STATE(); - case 3446: + case 3413: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3446); + if (lookahead == '_') ADVANCE(3413); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + lookahead == 'e') ADVANCE(4256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); END_STATE(); - case 3447: + case 3414: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3447); + if (lookahead == '_') ADVANCE(3414); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + lookahead == 'e') ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); END_STATE(); - case 3448: + case 3415: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3448); + if (lookahead == '_') ADVANCE(3415); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4558); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == 'e') ADVANCE(4525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3415); END_STATE(); - case 3449: + case 3416: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3449); + if (lookahead == '_') ADVANCE(3416); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + lookahead == 'e') ADVANCE(3912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); END_STATE(); - case 3450: + case 3417: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3450); + if (lookahead == '_') ADVANCE(3417); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4391); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + lookahead == 'e') ADVANCE(4359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); END_STATE(); - case 3451: + case 3418: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(3451); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if (lookahead == '_') ADVANCE(3418); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); END_STATE(); - case 3452: + case 3419: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); END_STATE(); - case 3453: + case 3420: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3453); + lookahead == '_') ADVANCE(3420); END_STATE(); - case 3454: + case 3421: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3454); + lookahead == '_') ADVANCE(3421); END_STATE(); - case 3455: + case 3422: ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '_') ADVANCE(2653); + if (lookahead == '_') ADVANCE(2644); if (lookahead == '0' || - lookahead == '1') ADVANCE(2362); + lookahead == '1') ADVANCE(2353); if (('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3456: + case 3423: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2653); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == '_') ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3457: + case 3424: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3453); + lookahead == '_') ADVANCE(3420); END_STATE(); - case 3458: + case 3425: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2824); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + lookahead == '_') ADVANCE(3716); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 3459: + case 3426: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3749); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == '_') ADVANCE(4200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3460: + case 3427: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4233); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == '_') ADVANCE(2815); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); - case 3461: + case 3428: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4522); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + lookahead == '_') ADVANCE(4489); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3462: + case 3429: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 3463: + case 3430: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1207); + if (lookahead == 'r') ADVANCE(1198); END_STATE(); - case 3464: + case 3431: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1677); + if (lookahead == 'r') ADVANCE(1668); END_STATE(); - case 3465: + case 3432: ACCEPT_TOKEN(sym_filesize_unit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3466: + case 3433: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3467: + case 3434: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 3468: + case 3435: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2915); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2906); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3469: + case 3436: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1904); + if (lookahead == 'e') ADVANCE(1895); END_STATE(); - case 3470: + case 3437: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2918); + if (lookahead == 'e') ADVANCE(2909); END_STATE(); - case 3471: + case 3438: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3472: + case 3439: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2655); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + lookahead == '_') ADVANCE(2646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3473: + case 3440: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3454); + lookahead == '_') ADVANCE(3421); END_STATE(); - case 3474: + case 3441: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2826); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + lookahead == '_') ADVANCE(3718); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 3475: + case 3442: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3751); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + lookahead == '_') ADVANCE(4206); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3476: + case 3443: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4239); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + lookahead == '_') ADVANCE(2817); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); - case 3477: + case 3444: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4526); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + lookahead == '_') ADVANCE(4493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3478: + case 3445: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2651); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3479: + case 3446: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); END_STATE(); - case 3480: + case 3447: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2839); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3731); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); - case 3481: + case 3448: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3764); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4220); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3482: + case 3449: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2830); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); END_STATE(); - case 3483: + case 3450: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4540); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4507); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3484: + case 3451: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 3485: + case 3452: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3485); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); END_STATE(); - case 3486: + case 3453: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 3487: + case 3454: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3901); + if (lookahead == '.') ADVANCE(3868); if (lookahead == '+' || - lookahead == '-') ADVANCE(3895); + lookahead == '-') ADVANCE(3862); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3488: + case 3455: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3789); + if (lookahead == '.') ADVANCE(3756); if (lookahead == '+' || - lookahead == '-') ADVANCE(3781); + lookahead == '-') ADVANCE(3748); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3489: + case 3456: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(917); + if (lookahead == '.') ADVANCE(905); if (lookahead == '+' || - lookahead == '-') ADVANCE(584); + lookahead == '-') ADVANCE(576); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3490: + case 3457: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3873); + if (lookahead == '.') ADVANCE(3840); if (lookahead == '+' || - lookahead == '-') ADVANCE(3800); + lookahead == '-') ADVANCE(3767); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3491: + case 3458: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4342); + if (lookahead == '.') ADVANCE(4309); if (lookahead == '+' || - lookahead == '-') ADVANCE(4271); + lookahead == '-') ADVANCE(4238); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3492: + case 3459: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4030); + if (lookahead == '.') ADVANCE(3997); if (lookahead == '+' || - lookahead == '-') ADVANCE(3915); + lookahead == '-') ADVANCE(3882); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3493: + case 3460: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4448); + if (lookahead == '.') ADVANCE(4415); if (lookahead == '+' || - lookahead == '-') ADVANCE(4368); + lookahead == '-') ADVANCE(4335); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); + lookahead == 'z') ADVANCE(3453); END_STATE(); - case 3494: + case 3461: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3517); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3900); + if (lookahead == ':') ADVANCE(3484); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3867); END_STATE(); - case 3495: + case 3462: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3518); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3785); + if (lookahead == ':') ADVANCE(3485); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3752); END_STATE(); - case 3496: + case 3463: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3519); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(913); + if (lookahead == ':') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(901); END_STATE(); - case 3497: + case 3464: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3520); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3866); + if (lookahead == ':') ADVANCE(3487); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3833); END_STATE(); - case 3498: + case 3465: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3521); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4334); + if (lookahead == ':') ADVANCE(3488); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4301); END_STATE(); - case 3499: + case 3466: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3522); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4022); + if (lookahead == ':') ADVANCE(3489); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3989); END_STATE(); - case 3500: + case 3467: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3523); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4440); + if (lookahead == ':') ADVANCE(3490); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4407); END_STATE(); - case 3501: + case 3468: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3622); + if (lookahead == 'T') ADVANCE(3589); END_STATE(); - case 3502: + case 3469: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1338); + if (lookahead == 'T') ADVANCE(1329); END_STATE(); - case 3503: + case 3470: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1882); + if (lookahead == 'T') ADVANCE(1873); END_STATE(); - case 3504: + case 3471: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3875); + if (lookahead == 'T') ADVANCE(3842); END_STATE(); - case 3505: + case 3472: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4339); + if (lookahead == 'T') ADVANCE(4306); END_STATE(); - case 3506: + case 3473: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4598); + if (lookahead == 'T') ADVANCE(4565); END_STATE(); - case 3507: + case 3474: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4027); + if (lookahead == 'T') ADVANCE(3994); END_STATE(); - case 3508: + case 3475: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4445); + if (lookahead == 'T') ADVANCE(4412); END_STATE(); - case 3509: + case 3476: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(925); + if (lookahead == 'T') ADVANCE(913); END_STATE(); - case 3510: + case 3477: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3895); + lookahead == '-') ADVANCE(3862); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3477); END_STATE(); - case 3511: + case 3478: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3781); + lookahead == '-') ADVANCE(3748); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3478); END_STATE(); - case 3512: + case 3479: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(584); + lookahead == '-') ADVANCE(576); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3479); END_STATE(); - case 3513: + case 3480: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3800); + lookahead == '-') ADVANCE(3767); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3480); END_STATE(); - case 3514: + case 3481: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4271); + lookahead == '-') ADVANCE(4238); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3514); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); END_STATE(); - case 3515: + case 3482: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3915); + lookahead == '-') ADVANCE(3882); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3515); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); END_STATE(); - case 3516: + case 3483: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4368); + lookahead == '-') ADVANCE(4335); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3516); + lookahead == 'z') ADVANCE(3453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); END_STATE(); - case 3517: + case 3484: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3900); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3867); END_STATE(); - case 3518: + case 3485: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3785); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3752); END_STATE(); - case 3519: + case 3486: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(913); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(901); END_STATE(); - case 3520: + case 3487: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3866); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3833); END_STATE(); - case 3521: + case 3488: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4334); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4301); END_STATE(); - case 3522: + case 3489: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3989); END_STATE(); - case 3523: + case 3490: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4440); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4407); END_STATE(); - case 3524: + case 3491: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 3525: + case 3492: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49529,28 +48975,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 3526: + case 3493: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(3527); + if (lookahead == '#') ADVANCE(3494); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3526); + lookahead == ' ') ADVANCE(3493); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(3527); + lookahead != '\\') ADVANCE(3494); END_STATE(); - case 3527: + case 3494: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(3527); + lookahead != '\\') ADVANCE(3494); END_STATE(); - case 3528: + case 3495: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 3529: + case 3496: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49558,12 +49004,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 3530: + case 3497: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 3531: + case 3498: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49571,52 +49017,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 3532: + case 3499: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 3533: + case 3500: ACCEPT_TOKEN(sym_escape_sequence); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); - case 3534: + case 3501: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(3535); + if (lookahead == '#') ADVANCE(3502); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3534); + lookahead == ' ') ADVANCE(3501); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(3535); + lookahead != '\\') ADVANCE(3502); END_STATE(); - case 3535: + case 3502: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(3535); + lookahead != '\\') ADVANCE(3502); END_STATE(); - case 3536: + case 3503: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(3537); + if (lookahead == '#') ADVANCE(3504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3536); + lookahead == ' ') ADVANCE(3503); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3537); + lookahead != '(') ADVANCE(3504); END_STATE(); - case 3537: + case 3504: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3537); + lookahead != '(') ADVANCE(3504); END_STATE(); - case 3538: + case 3505: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 3539: + case 3506: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49624,14 +49070,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 3540: + case 3507: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 3541: + case 3508: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(3528); + if (lookahead == '\'') ADVANCE(3495); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -49643,13 +49089,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); - if (lookahead != 0) ADVANCE(3566); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(517); + if (lookahead != 0) ADVANCE(3533); END_STATE(); - case 3542: + case 3509: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 3543: + case 3510: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49657,140 +49103,140 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 3544: + case 3511: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 3545: + case 3512: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 3546: + case 3513: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 3547: + case 3514: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 3548: + case 3515: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 3549: + case 3516: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3548); + if (lookahead == ',') ADVANCE(3515); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3549); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + lookahead == ' ') ADVANCE(3516); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); END_STATE(); - case 3550: + case 3517: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3548); + if (lookahead == ',') ADVANCE(3515); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3550); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3551); + lookahead == ' ') ADVANCE(3517); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3518); END_STATE(); - case 3551: + case 3518: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(3565); + if (lookahead == ';') ADVANCE(3532); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(589); + lookahead == ' ') ADVANCE(581); END_STATE(); - case 3552: + case 3519: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3552); + lookahead == ' ') ADVANCE(3519); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3548); + lookahead == ',') ADVANCE(3515); END_STATE(); - case 3553: + case 3520: ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); - case 3554: + case 3521: ACCEPT_TOKEN(anon_sym_PLUS); ADVANCE_MAP( - '\n', 3288, - '\r', 4, - '+', 1146, - '.', 1156, - '=', 1110, - '_', 1138, - '\t', 3243, - ' ', 3243, + '\n', 3255, + '\r', 3, + '+', 1137, + '.', 1147, + '=', 1101, + '_', 1129, + '\t', 3227, + ' ', 3227, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 3555: + case 3522: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3573); - if (lookahead == '.') ADVANCE(1156); - if (lookahead == '=') ADVANCE(1110); - if (lookahead == '_') ADVANCE(3571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '+') ADVANCE(3540); + if (lookahead == '.') ADVANCE(1147); + if (lookahead == '=') ADVANCE(1101); + if (lookahead == '_') ADVANCE(3538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 3556: + case 3523: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1359); - if (lookahead == '.') ADVANCE(1601); - if (lookahead == '=') ADVANCE(1110); - if (lookahead == '_') ADVANCE(1346); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '=') ADVANCE(1101); + if (lookahead == '_') ADVANCE(1337); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == ' ') ADVANCE(3227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3557: + case 3524: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1360); - if (lookahead == '.') ADVANCE(1601); - if (lookahead == '=') ADVANCE(1110); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '+') ADVANCE(1351); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '=') ADVANCE(1101); + if (lookahead == '_') ADVANCE(1337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3558: + case 3525: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1156); - if (lookahead == '_') ADVANCE(1138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '.') ADVANCE(1147); + if (lookahead == '_') ADVANCE(1129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 3559: + case 3526: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1601); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '_') ADVANCE(1337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3560: + case 3527: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4699); - if (lookahead == '_') ADVANCE(4692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == '.') ADVANCE(4666); + if (lookahead == '_') ADVANCE(4659); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 3561: + case 3528: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1161); - if (lookahead == '_') ADVANCE(1144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '.') ADVANCE(1152); + if (lookahead == '_') ADVANCE(1135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3562: + case 3529: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1606); - if (lookahead == '_') ADVANCE(1354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '_') ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); - case 3563: + case 3530: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4827); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3564); + if (lookahead == '#') ADVANCE(4794); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3531); END_STATE(); - case 3564: + case 3531: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3564); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3531); END_STATE(); - case 3565: + case 3532: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 3566: + case 3533: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(3528); + if (lookahead == '\'') ADVANCE(3495); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -49802,711 +49248,711 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); - if (lookahead != 0) ADVANCE(3566); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(517); + if (lookahead != 0) ADVANCE(3533); END_STATE(); - case 3567: + case 3534: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(3597); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(3564); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3568: + case 3535: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(3605); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(3572); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3569: + case 3536: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(3621); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(3588); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3570: + case 3537: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '-') ADVANCE(3602); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '-') ADVANCE(3569); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3571: + case 3538: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '.') ADVANCE(1156); - if (lookahead == '?') ADVANCE(1340); - if (lookahead == '_') ADVANCE(3571); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '.') ADVANCE(1147); + if (lookahead == '?') ADVANCE(1331); + if (lookahead == '_') ADVANCE(3538); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3572: + case 3539: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == ':') ADVANCE(3904); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == ':') ADVANCE(3871); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3573: + case 3540: ACCEPT_TOKEN(aux_sym_path_token1); ADVANCE_MAP( - ',', 1884, - '=', 1114, - '.', 1340, - '?', 1340, - '<', 3633, - '>', 3633, - '"', 3634, - '\'', 3634, - '`', 3634, + ',', 1875, + '=', 1105, + '.', 1331, + '?', 1331, + '<', 3600, + '>', 3600, + '"', 3601, + '\'', 3601, + '`', 3601, ); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3574: + case 3541: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == '_') ADVANCE(3574); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == '_') ADVANCE(3541); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3575: + case 3542: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(3608); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(3575); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3576: + case 3543: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(3607); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(3574); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3577: + case 3544: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'a') ADVANCE(3612); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'a') ADVANCE(3579); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3578: + case 3545: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'c') ADVANCE(3579); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'c') ADVANCE(3546); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3579: + case 3546: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3592); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3559); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3580: + case 3547: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(3603); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(3570); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3581: + case 3548: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'e') ADVANCE(2947); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2938); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3582: + case 3549: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'f') ADVANCE(2946); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'f') ADVANCE(2937); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3583: + case 3550: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(2936); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2927); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3584: + case 3551: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3220); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3208); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3585: + case 3552: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3218); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3206); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3586: + case 3553: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(2944); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2935); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3587: + case 3554: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'h') ADVANCE(3567); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(3534); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3588: + case 3555: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(3594); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(3561); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3589: + case 3556: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(3604); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(3571); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3590: + case 3557: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(3609); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(3576); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3591: + case 3558: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'i') ADVANCE(3611); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'i') ADVANCE(3578); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3592: + case 3559: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(3593); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(3560); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3593: + case 3560: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'l') ADVANCE(3570); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(3537); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3594: + case 3561: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(3216); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(3204); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3595: + case 3562: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'n') ADVANCE(2945); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2936); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3596: + case 3563: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(3582); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(3549); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3597: + case 3564: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'o') ADVANCE(3600); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'o') ADVANCE(3567); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3598: + case 3565: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(3576); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(3543); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3599: + case 3566: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(3581); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(3548); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3600: + case 3567: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(3610); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(3577); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3601: + case 3568: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(3575); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(3542); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3602: + case 3569: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'p') ADVANCE(3577); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'p') ADVANCE(3544); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3603: + case 3570: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'r') ADVANCE(3595); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'r') ADVANCE(3562); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3604: + case 3571: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3587); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3554); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3605: + case 3572: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3616); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3583); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3606: + case 3573: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3580); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3547); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3607: + case 3574: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3583); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3550); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3608: + case 3575: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3606); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3573); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3609: + case 3576: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3584); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3551); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3610: + case 3577: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3568); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3535); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3611: + case 3578: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3585); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3552); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3612: + case 3579: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 't') ADVANCE(3586); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 't') ADVANCE(3553); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3613: + case 3580: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(3589); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(3556); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3614: + case 3581: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(3590); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(3557); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3615: + case 3582: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'w') ADVANCE(3591); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'w') ADVANCE(3558); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3616: + case 3583: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); - if (lookahead == 'y') ADVANCE(3599); + if (lookahead == ',') ADVANCE(1875); + if (lookahead == 'y') ADVANCE(3566); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3617: + case 3584: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3569); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3618: + case 3585: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3501); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3619: + case 3586: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3572); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3539); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3620: + case 3587: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3584); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3621: + case 3588: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3618); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3585); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3622: + case 3589: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3619); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3586); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3623: + case 3590: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1884); + if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || - lookahead == '?') ADVANCE(1340); + lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3624: + case 3591: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '.') ADVANCE(2255); - if (lookahead == '_') ADVANCE(3624); + if (lookahead == '.') ADVANCE(2246); + if (lookahead == '_') ADVANCE(3591); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3625: + case 3592: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(3530); + if (lookahead == '`') ADVANCE(3497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -50518,7264 +49964,7264 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(634); - if (lookahead != 0) ADVANCE(3625); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(624); + if (lookahead != 0) ADVANCE(3592); END_STATE(); - case 3626: + case 3593: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2233); + lookahead == 'f') ADVANCE(2224); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3627: + case 3594: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3630); + lookahead == 'i') ADVANCE(3597); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3628: + case 3595: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3626); + lookahead == 'n') ADVANCE(3593); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3629: + case 3596: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3627); + lookahead == 'n') ADVANCE(3594); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3630: + case 3597: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3631); + lookahead == 't') ADVANCE(3598); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3631: + case 3598: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); + lookahead == 'y') ADVANCE(2223); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3632: + case 3599: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); + lookahead == '`') ADVANCE(3601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); END_STATE(); - case 3633: + case 3600: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3634); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3633); + lookahead == '`') ADVANCE(3601); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3600); END_STATE(); - case 3634: + case 3601: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3601); END_STATE(); - case 3635: + case 3602: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 3636: + case 3603: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3636); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3603); END_STATE(); - case 3637: + case 3604: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 3638: + case 3605: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3670); + if (lookahead == '>') ADVANCE(3637); END_STATE(); - case 3639: + case 3606: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3670); - if (lookahead == '|') ADVANCE(2881); + if (lookahead == '>') ADVANCE(3637); + if (lookahead == '|') ADVANCE(2872); END_STATE(); - case 3640: + case 3607: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3672); - if (lookahead == '|') ADVANCE(2881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3639); + if (lookahead == '|') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3641: + case 3608: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3671); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3642: + case 3609: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3673); + if (lookahead == '>') ADVANCE(3640); END_STATE(); - case 3643: + case 3610: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3673); - if (lookahead == '|') ADVANCE(2882); + if (lookahead == '>') ADVANCE(3640); + if (lookahead == '|') ADVANCE(2873); END_STATE(); - case 3644: + case 3611: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3675); - if (lookahead == '|') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3642); + if (lookahead == '|') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3645: + case 3612: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3641); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3646: + case 3613: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3676); + if (lookahead == '>') ADVANCE(3643); END_STATE(); - case 3647: + case 3614: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3676); - if (lookahead == '|') ADVANCE(2883); + if (lookahead == '>') ADVANCE(3643); + if (lookahead == '|') ADVANCE(2874); END_STATE(); - case 3648: + case 3615: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3678); - if (lookahead == '|') ADVANCE(2883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3645); + if (lookahead == '|') ADVANCE(2874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3649: + case 3616: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3677); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3644); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3650: + case 3617: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3679); + if (lookahead == '>') ADVANCE(3646); END_STATE(); - case 3651: + case 3618: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3679); - if (lookahead == '|') ADVANCE(2884); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == '|') ADVANCE(2875); END_STATE(); - case 3652: + case 3619: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3681); - if (lookahead == '|') ADVANCE(2884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3648); + if (lookahead == '|') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3653: + case 3620: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3647); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3654: + case 3621: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3682); + if (lookahead == '>') ADVANCE(3649); END_STATE(); - case 3655: + case 3622: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3682); - if (lookahead == '|') ADVANCE(2885); + if (lookahead == '>') ADVANCE(3649); + if (lookahead == '|') ADVANCE(2876); END_STATE(); - case 3656: + case 3623: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3684); - if (lookahead == '|') ADVANCE(2885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == '|') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3657: + case 3624: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3650); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3658: + case 3625: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3685); + if (lookahead == '>') ADVANCE(3652); END_STATE(); - case 3659: + case 3626: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3685); - if (lookahead == '|') ADVANCE(2886); + if (lookahead == '>') ADVANCE(3652); + if (lookahead == '|') ADVANCE(2877); END_STATE(); - case 3660: + case 3627: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3687); - if (lookahead == '|') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3654); + if (lookahead == '|') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3661: + case 3628: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3686); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3653); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3662: + case 3629: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3688); + if (lookahead == '>') ADVANCE(3655); END_STATE(); - case 3663: + case 3630: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3688); - if (lookahead == '|') ADVANCE(2887); + if (lookahead == '>') ADVANCE(3655); + if (lookahead == '|') ADVANCE(2878); END_STATE(); - case 3664: + case 3631: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3690); - if (lookahead == '|') ADVANCE(2887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3657); + if (lookahead == '|') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3665: + case 3632: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3689); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3656); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3666: + case 3633: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3691); + if (lookahead == '>') ADVANCE(3658); END_STATE(); - case 3667: + case 3634: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3691); - if (lookahead == '|') ADVANCE(2888); + if (lookahead == '>') ADVANCE(3658); + if (lookahead == '|') ADVANCE(2879); END_STATE(); - case 3668: + case 3635: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3693); - if (lookahead == '|') ADVANCE(2888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '>') ADVANCE(3660); + if (lookahead == '|') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3669: + case 3636: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3670: + case 3637: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 3671: + case 3638: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3672: + case 3639: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3673: + case 3640: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 3674: + case 3641: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3675: + case 3642: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3676: + case 3643: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 3677: + case 3644: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3678: + case 3645: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3679: + case 3646: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 3680: + case 3647: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3681: + case 3648: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3682: + case 3649: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 3683: + case 3650: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3684: + case 3651: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3685: + case 3652: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 3686: + case 3653: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3687: + case 3654: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3688: + case 3655: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 3689: + case 3656: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3690: + case 3657: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3691: + case 3658: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 3692: + case 3659: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 3693: + case 3660: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 3694: + case 3661: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); + case 3662: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3801); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(3697); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3663: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3794); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(3702); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3664: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3802); + if (lookahead == '>') ADVANCE(3606); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3665: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3795); + if (lookahead == '>') ADVANCE(3610); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3666: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(852); + if (lookahead == 'u') ADVANCE(3703); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3667: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(851); + if (lookahead == 'r') ADVANCE(3698); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3668: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(854); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3669: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(670); + if (lookahead == '>') ADVANCE(856); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3670: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3722); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3671: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3724); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3672: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3728); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3673: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3730); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3674: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '.') ADVANCE(611); + if (lookahead == '_') ADVANCE(3674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3675: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(903); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3676: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(3845); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3677: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T') ADVANCE(3725); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3678: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T') ADVANCE(3726); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3679: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (lookahead == 'b') ADVANCE(3425); + if (lookahead == 'o') ADVANCE(3441); + if (lookahead == 'x') ADVANCE(3447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3683); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3680: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (lookahead == 'b') ADVANCE(3425); + if (lookahead == 'o') ADVANCE(3441); + if (lookahead == 'x') ADVANCE(3447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3686); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3681: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3682: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3670); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3683: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3682); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3684: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3683); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3685: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3673); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3686: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3685); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3687: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3686); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3688: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'a') ADVANCE(3691); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3689: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2154); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3690: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2199); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3691: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(3700); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3692: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(2207); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3693: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(3692); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); + case 3694: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'n') ADVANCE(3047); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + END_STATE(); case 3695: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3834); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(3730); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'o') ADVANCE(3701); + if (lookahead == 'u') ADVANCE(3693); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3710); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3696: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3827); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(3735); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'r') ADVANCE(3704); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3697: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3835); - if (lookahead == '>') ADVANCE(3639); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'r') ADVANCE(3664); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3698: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3828); - if (lookahead == '>') ADVANCE(3643); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'r') ADVANCE(3668); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3699: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(864); - if (lookahead == 'u') ADVANCE(3736); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 's') ADVANCE(3183); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3700: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(863); - if (lookahead == 'r') ADVANCE(3731); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 's') ADVANCE(3690); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3701: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(752); - if (lookahead == '>') ADVANCE(866); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 't') ADVANCE(3717); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3702: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(681); - if (lookahead == '>') ADVANCE(868); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 't') ADVANCE(3665); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3703: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3755); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 't') ADVANCE(3669); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3704: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3757); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'u') ADVANCE(3689); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3705: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3761); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'u') ADVANCE(3693); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3710); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3706: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3763); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3710); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3707: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '_') ADVANCE(3707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3709); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3708: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(915); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3713); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3709: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(3878); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3712); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3710: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3758); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3711: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3759); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3707); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3712: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (lookahead == 'b') ADVANCE(3459); - if (lookahead == 'o') ADVANCE(3475); - if (lookahead == 'x') ADVANCE(3481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3716); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3708); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3713: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (lookahead == 'b') ADVANCE(3459); - if (lookahead == 'o') ADVANCE(3475); - if (lookahead == 'x') ADVANCE(3481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3714: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3715: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3703); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 3716: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3715); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3716); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3717: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3716); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3718: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3706); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3718); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3719: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3718); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3671); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3720: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3677); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3721: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(3724); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3676); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3722: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2163); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3723: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2208); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3675); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3724: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3733); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3720); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3725: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2216); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3721); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3726: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3725); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3727: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(3057); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3678); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3728: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(3734); - if (lookahead == 'u') ADVANCE(3726); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3743); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3727); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3729: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3737); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3730: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3697); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3729); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3731: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3701); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3731); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3732: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3195); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); END_STATE(); case 3733: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead == '\'') ADVANCE(3496); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(517); + if (lookahead != 0) ADVANCE(3733); END_STATE(); case 3734: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3750); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead == '`') ADVANCE(3498); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(624); + if (lookahead != 0) ADVANCE(3734); END_STATE(); case 3735: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3698); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); case 3736: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3702); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\n') ADVANCE(3271); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == ',') ADVANCE(3846); + if (lookahead == ':') ADVANCE(3759); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3749); END_STATE(); case 3737: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3722); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\n') ADVANCE(3259); + if (lookahead == '\r') ADVANCE(10); + if (lookahead == ',') ADVANCE(3846); + if (lookahead == ':') ADVANCE(3759); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3749); END_STATE(); case 3738: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3726); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3743); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(3368); + if (lookahead == '(') ADVANCE(3277); + if (lookahead == '[') ADVANCE(3513); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3739: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3743); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3801); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(3807); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3740: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3742); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3794); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(3815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3741: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3746); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3788); + if (lookahead == '-') ADVANCE(3790); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == '_') ADVANCE(3790); + if (lookahead == 'r') ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3742: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3745); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3802); + if (lookahead == '>') ADVANCE(3606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3743: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3765); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3795); + if (lookahead == '>') ADVANCE(3610); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3744: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3740); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3804); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == 'r') ADVANCE(3808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3745: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3741); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3796); + if (lookahead == '>') ADVANCE(3617); + if (lookahead == 'u') ADVANCE(3817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3746: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3747); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3805); + if (lookahead == '>') ADVANCE(3605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3747: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3765); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3797); + if (lookahead == '>') ADVANCE(3609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3748: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(3765); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3748); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (lookahead == '2') ADVANCE(3751); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3757); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3749: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3749); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (lookahead == ':') ADVANCE(3759); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3749); END_STATE(); case 3750: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (lookahead == ':') ADVANCE(3758); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3751: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3751); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3752: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3704); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3753: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3710); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3750); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3754: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3709); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3755: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3752); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3756: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3708); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3478); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3757: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3758: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3755); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3759: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3756); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3846); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); END_STATE(); case 3760: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3711); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3761: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3760); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3762: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3705); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3763: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3762); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(3780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3764: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3764); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3779); + if (lookahead == '_') ADVANCE(3764); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3765: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3108); + if (lookahead == '_') ADVANCE(3780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3766: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(3529); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); - if (lookahead != 0) ADVANCE(3766); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3783); + if (lookahead == '_') ADVANCE(3766); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3767: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(3531); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(634); - if (lookahead != 0) ADVANCE(3767); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '2') ADVANCE(3831); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3768: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(3843); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3769: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3304); - if (lookahead == '\r') ADVANCE(10); - if (lookahead == ',') ADVANCE(3879); - if (lookahead == ':') ADVANCE(3792); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3274); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3782); + if (lookahead == ':') ADVANCE(3845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3770: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3292); - if (lookahead == '\r') ADVANCE(11); - if (lookahead == ',') ADVANCE(3879); - if (lookahead == ':') ADVANCE(3792); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3250); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3782); + if (lookahead == '>') ADVANCE(3634); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3771: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3401); - if (lookahead == '(') ADVANCE(3310); - if (lookahead == '[') ADVANCE(3546); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3630); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3772: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3834); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(3840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3773: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3827); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(3848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3774: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3821); - if (lookahead == '-') ADVANCE(3823); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == '_') ADVANCE(3823); - if (lookahead == 'r') ADVANCE(3840); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3775: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3835); - if (lookahead == '>') ADVANCE(3639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3629); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3776: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3828); - if (lookahead == '>') ADVANCE(3643); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3777: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3837); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == 'r') ADVANCE(3841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3778: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3829); - if (lookahead == '>') ADVANCE(3650); - if (lookahead == 'u') ADVANCE(3850); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(3778); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3779: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3838); - if (lookahead == '>') ADVANCE(3638); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(3779); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3780: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3830); - if (lookahead == '>') ADVANCE(3642); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(3780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3781: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (lookahead == '2') ADVANCE(3784); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3790); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3782); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3782: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (lookahead == ':') ADVANCE(3792); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3782); + if (lookahead == '_') ADVANCE(3782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3783: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (lookahead == ':') ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3783); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3784: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3495); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3785: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3786); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3786); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3786: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3783); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3786); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3787: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3786); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3787); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3788: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3790); + if (lookahead == 'o') ADVANCE(3770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3789: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3790); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3790: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3495); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == '_') ADVANCE(3790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3791: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3788); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == 'a') ADVANCE(3799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3792: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3793: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3794: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'e') ADVANCE(3771); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3795: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'e') ADVANCE(3809); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3796: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(3813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'e') ADVANCE(3775); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3797: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(3797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'e') ADVANCE(3812); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3798: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3120); - if (lookahead == '_') ADVANCE(3813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3799: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3816); - if (lookahead == '_') ADVANCE(3799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'l') ADVANCE(3813); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3800: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(3864); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'l') ADVANCE(3798); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3801: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'o') ADVANCE(3770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3802: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'o') ADVANCE(3821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3803: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'o') ADVANCE(3814); + if (lookahead == 'u') ADVANCE(3800); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3804: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'o') ADVANCE(3774); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3805: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'o') ADVANCE(3822); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3806: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3820); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3807: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3666); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3742); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3808: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3662); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3746); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3809: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3654); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3810); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3810: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3811: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3811); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3812: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3812); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(3811); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3813: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 's') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3814: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3815); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 't') ADVANCE(3832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3815: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 't') ADVANCE(3743); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3816: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 't') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3817: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 't') ADVANCE(3747); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3818: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3819); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 't') ADVANCE(3776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3819: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'u') ADVANCE(3800); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3820: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'u') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3821: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3823); - if (lookahead == 'o') ADVANCE(3803); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'u') ADVANCE(3816); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3822: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3823); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'u') ADVANCE(3818); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3823: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3824: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3832); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2216); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3825: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3829); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3826: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3827: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3804); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3824); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3828: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3842); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3829: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3808); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3830); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3830: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3831: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3832: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3846); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3833: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3831); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3834: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3803); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3835: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3854); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3836: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3847); - if (lookahead == 'u') ADVANCE(3833); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3859); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3834); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3837: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3838: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3855); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3839: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3853); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3840: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3480); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3841: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3779); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3842: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3843); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3843: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3806); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3839); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3844: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3810); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3845: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3846: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); END_STATE(); case 3847: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3934); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == 'i') ADVANCE(3973); + if (lookahead == 'r') ADVANCE(3944); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3848: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3934); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == 'r') ADVANCE(3944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3849: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3805); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3922); + if (lookahead == '>') ADVANCE(3618); + if (lookahead == 'u') ADVANCE(3955); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3850: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3780); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3908, + '-', 3911, + '>', 3614, + 'I', 3973, + '_', 3911, + 'i', 3973, + 'r', 3944, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3851: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3809); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3908); + if (lookahead == '-') ADVANCE(3911); + if (lookahead == '>') ADVANCE(3614); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'r') ADVANCE(3944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3852: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3833); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3859); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3935); + if (lookahead == '>') ADVANCE(3606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3853: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3909, + '-', 3911, + '>', 3964, + 'I', 3973, + '_', 3911, + 'i', 3973, + 'r', 3945, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3854: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3909); + if (lookahead == '-') ADVANCE(3911); + if (lookahead == '>') ADVANCE(3964); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'r') ADVANCE(3945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3855: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3851); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3923); + if (lookahead == '>') ADVANCE(3610); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3856: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3859); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3938); + if (lookahead == '>') ADVANCE(3964); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == 'i') ADVANCE(3973); + if (lookahead == 'r') ADVANCE(3945); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3857: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2225); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3938); + if (lookahead == '>') ADVANCE(3964); + if (lookahead == 'r') ADVANCE(3945); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3858: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3862); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3924); + if (lookahead == '>') ADVANCE(3965); + if (lookahead == 'r') ADVANCE(3200); + if (lookahead == 'u') ADVANCE(3957); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3859: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3924); + if (lookahead == '>') ADVANCE(3965); + if (lookahead == 'u') ADVANCE(3957); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3860: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3857); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3940); + if (lookahead == '>') ADVANCE(3967); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3861: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3858); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3925); + if (lookahead == '>') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3862: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3863); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (lookahead == '2') ADVANCE(3865); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3869); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3863: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (lookahead == ':') ADVANCE(3873); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3863); END_STATE(); case 3864: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (lookahead == ':') ADVANCE(3872); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3865: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3866: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3867: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3793); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3868: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3802); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3477); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3869: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3870: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3864); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3871: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3870); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3872: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3866); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3873: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); END_STATE(); case 3874: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(2956); + if (lookahead == '.') ADVANCE(3906); + if (lookahead == '_') ADVANCE(3881); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3875: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3876: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3877: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3801); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3878: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3879: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3282); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3880: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3967); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == 'i') ADVANCE(4006); - if (lookahead == 'r') ADVANCE(3977); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '.') ADVANCE(3901); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3881: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3967); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == 'r') ADVANCE(3977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '.') ADVANCE(3906); + if (lookahead == '_') ADVANCE(3881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3882: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3955); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == 'u') ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '2') ADVANCE(3987); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3883: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3941, - '-', 3944, - '>', 3647, - 'I', 4006, - '_', 3944, - 'i', 4006, - 'r', 3977, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == ':') ADVANCE(3995); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3884: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3941); - if (lookahead == '-') ADVANCE(3944); - if (lookahead == '>') ADVANCE(3647); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == 'r') ADVANCE(3977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == ':') ADVANCE(4001); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3885: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3968); - if (lookahead == '>') ADVANCE(3639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3634); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3886: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3942, - '-', 3944, - '>', 3997, - 'I', 4006, - '_', 3944, - 'i', 4006, - 'r', 3978, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3630); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3887: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3942); - if (lookahead == '-') ADVANCE(3944); - if (lookahead == '>') ADVANCE(3997); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == 'r') ADVANCE(3978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3888: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3956); - if (lookahead == '>') ADVANCE(3643); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3889: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3971); - if (lookahead == '>') ADVANCE(3997); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == 'i') ADVANCE(4006); - if (lookahead == 'r') ADVANCE(3978); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3890: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3971); - if (lookahead == '>') ADVANCE(3997); - if (lookahead == 'r') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3966); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3891: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3957); - if (lookahead == '>') ADVANCE(3998); - if (lookahead == 'r') ADVANCE(3212); - if (lookahead == 'u') ADVANCE(3990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3968); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3957); - if (lookahead == '>') ADVANCE(3998); - if (lookahead == 'u') ADVANCE(3990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3970); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3893: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3973); - if (lookahead == '>') ADVANCE(4000); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '>') ADVANCE(3971); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3958); - if (lookahead == '>') ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'i') ADVANCE(3973); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3911); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3895: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (lookahead == '2') ADVANCE(3898); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'i') ADVANCE(3916); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3911); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3896: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (lookahead == ':') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3896); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == 'i') ADVANCE(3973); + if (lookahead == 'r') ADVANCE(3960); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (lookahead == ':') ADVANCE(3905); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == 'i') ADVANCE(3973); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == 'i') ADVANCE(3916); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3487); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'I') ADVANCE(3973); + if (lookahead == 'i') ADVANCE(3931); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3902: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3903: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3904); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3904: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3905: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3906: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3907: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(2965); - if (lookahead == '.') ADVANCE(3939); - if (lookahead == '_') ADVANCE(3914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '_') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3908: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4026); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'o') ADVANCE(3885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3909: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3935); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'o') ADVANCE(3890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3910: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(3940); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3911: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(3940); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '_') ADVANCE(3911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3912: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '_') ADVANCE(3913); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3913: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3934); if (lookahead == '_') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3914: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3939); - if (lookahead == '_') ADVANCE(3914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'a') ADVANCE(3929); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3915: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(4020); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'a') ADVANCE(3963); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3916: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3917: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4034); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'c') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3918: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'd') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3919: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3920: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3921: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(3917); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3922: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3111); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(3886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3923: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3999); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(3946); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3924: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(3891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3925: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4003); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'e') ADVANCE(3948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3926: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'f') ADVANCE(3076); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3927: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == 'i') ADVANCE(4006); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3944); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'k') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3928: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == 'i') ADVANCE(3949); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3944); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3929: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == 'i') ADVANCE(4006); - if (lookahead == 'r') ADVANCE(3993); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'l') ADVANCE(3953); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3930: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == 'i') ADVANCE(4006); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'l') ADVANCE(3928); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3931: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == 'i') ADVANCE(3949); + if (lookahead == 'n') ADVANCE(3434); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3932: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4006); - if (lookahead == 'i') ADVANCE(3964); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'n') ADVANCE(3038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3933: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'n') ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3934: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3935: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3935); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3936: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3937); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3937); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3954); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'u') ADVANCE(3930); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3937: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3937); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3954); + if (lookahead == 'u') ADVANCE(3930); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3938: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3939: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3942); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3940: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3940); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'o') ADVANCE(3962); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3941: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == 'o') ADVANCE(3918); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3942: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == 'o') ADVANCE(3923); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3943: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3944); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3960); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3944: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3852); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3945: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3946); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3860); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3946: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3947: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3888); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3948: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3996); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3949); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3949: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'r') ADVANCE(3893); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3950: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'u') ADVANCE(3930); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3951: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 's') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3952: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 's') ADVANCE(3176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3953: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 's') ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3954: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3950); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 't') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3955: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3919); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 't') ADVANCE(3855); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3956: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 't') ADVANCE(3887); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3957: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 't') ADVANCE(3861); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3981); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 't') ADVANCE(3892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3086); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'u') ADVANCE(3930); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'u') ADVANCE(3919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'u') ADVANCE(3956); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'u') ADVANCE(3958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'y') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3048); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3951); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3967: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3918); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3968: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3994); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3969: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3987); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'u') ADVANCE(3963); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3970: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3987); - if (lookahead == 'u') ADVANCE(3963); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3971: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3923); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == '|') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3972: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3973: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3995); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3974: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2230); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3975: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3976: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3977: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3978: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3979: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3980); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3980: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3921); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3981: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3982: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3983: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'u') ADVANCE(3963); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3986); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3984: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3985: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3986: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3987: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4021); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3988: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3989: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3920); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3990: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3991: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3992: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3963); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3993: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3952); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3994: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3989); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3995: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3991); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3996: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3997: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3998: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3999: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4000: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4001: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4002: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4003: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(4006); + if (lookahead == '_') ADVANCE(4007); + if (lookahead == '\t' || + lookahead == ' ') SKIP(400); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4004: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '.') ADVANCE(4006); + if (lookahead == '_') ADVANCE(4007); + if (lookahead == '\t' || + lookahead == ' ') SKIP(475); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4005: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(4008); + if (lookahead == '_') ADVANCE(4005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4007: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2239); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4008: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2228); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4009: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4016); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4010); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4010: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4017); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4011: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); END_STATE(); case 4012: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4115); + if (lookahead == '>') ADVANCE(3615); + if (lookahead == 'r') ADVANCE(4128); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4013: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4077); + if (lookahead == '>') ADVANCE(3619); + if (lookahead == 'u') ADVANCE(4155); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4014: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4007); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4118); + if (lookahead == '>') ADVANCE(3607); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4015: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4010); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4080); + if (lookahead == '>') ADVANCE(3611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4016: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4121); + if (lookahead == '>') ADVANCE(4173); + if (lookahead == 'r') ADVANCE(4135); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4017: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4018); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4084); + if (lookahead == '>') ADVANCE(4174); + if (lookahead == 'r') ADVANCE(3203); + if (lookahead == 'u') ADVANCE(4157); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4018: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4084); + if (lookahead == '>') ADVANCE(4174); + if (lookahead == 'u') ADVANCE(4157); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4019: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4124); + if (lookahead == '>') ADVANCE(4176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4020: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4086); + if (lookahead == '>') ADVANCE(4178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4021: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(2959); + if (lookahead == '.') ADVANCE(4046); + if (lookahead == '_') ADVANCE(4025); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4022: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4214); + if (lookahead == '_') ADVANCE(4046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4023: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4082); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4024: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4215); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4025: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4023); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4046); + if (lookahead == '_') ADVANCE(4025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4026: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(3111); + if (lookahead == '_') ADVANCE(4053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4027: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4055); + if (lookahead == '_') ADVANCE(4027); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4028: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4029); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4212); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4029); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4029: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '2') ADVANCE(4202); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4213); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4030: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3515); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4204); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4031: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4217); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4032: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4033: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3635); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4034: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4033); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4035: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4036: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(4039); - if (lookahead == '_') ADVANCE(4040); - if (lookahead == '\t' || - lookahead == ' ') SKIP(408); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4038); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3627); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4037: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '.') ADVANCE(4039); - if (lookahead == '_') ADVANCE(4040); - if (lookahead == '\t' || - lookahead == ' ') SKIP(483); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4038); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4038: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4041); - if (lookahead == '_') ADVANCE(4038); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4039: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4039); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4040: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4041: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4180); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4042: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4043); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(4185); + if (lookahead == 'f') ADVANCE(4201); + if (lookahead == 'n') ADVANCE(4185); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4043: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T') ADVANCE(4216); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4044: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4046); + if (lookahead == 'b') ADVANCE(3426); + if (lookahead == 'o') ADVANCE(3442); + if (lookahead == 'x') ADVANCE(3448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4045: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4148); - if (lookahead == '>') ADVANCE(3648); - if (lookahead == 'r') ADVANCE(4161); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4046); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4046: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4110); - if (lookahead == '>') ADVANCE(3652); - if (lookahead == 'u') ADVANCE(4188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4047: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4151); - if (lookahead == '>') ADVANCE(3640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4048: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4113); - if (lookahead == '>') ADVANCE(3644); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4049: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4154); - if (lookahead == '>') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(4168); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4050: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4117); - if (lookahead == '>') ADVANCE(4207); - if (lookahead == 'r') ADVANCE(3215); - if (lookahead == 'u') ADVANCE(4190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4050); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4051: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4117); - if (lookahead == '>') ADVANCE(4207); - if (lookahead == 'u') ADVANCE(4190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4051); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4052: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4157); - if (lookahead == '>') ADVANCE(4209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4052); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4054); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4053: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4119); - if (lookahead == '>') ADVANCE(4211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4054: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(2968); - if (lookahead == '.') ADVANCE(4079); - if (lookahead == '_') ADVANCE(4058); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4055); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4055); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4055: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4247); - if (lookahead == '_') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '_') ADVANCE(4055); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4056: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4115); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'a') ADVANCE(4099); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4057: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4248); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'a') ADVANCE(4152); + if (lookahead == 'o') ADVANCE(4110); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4058: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4079); - if (lookahead == '_') ADVANCE(4058); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'a') ADVANCE(4108); + if (lookahead == 'o') ADVANCE(4129); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4059: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3123); - if (lookahead == '_') ADVANCE(4086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'a') ADVANCE(4098); + if (lookahead == 'o') ADVANCE(4066); + if (lookahead == 'u') ADVANCE(4151); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4060: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4088); - if (lookahead == '_') ADVANCE(4060); + if (lookahead == 'a') ADVANCE(4097); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4061: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4245); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4062); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'a') ADVANCE(4172); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4062: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4235); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4246); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'a') ADVANCE(4143); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4063: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4237); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4240); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'c') ADVANCE(4090); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4064: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4250); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'c') ADVANCE(4074); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4065: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4252); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'd') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4066: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'd') ADVANCE(4164); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4067: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3664); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'd') ADVANCE(4074); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4068: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(2157); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4069: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3660); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(2202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4070: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4201); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4071: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4087); + if (lookahead == 'o') ADVANCE(4201); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4072: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4171); + if (lookahead == 'u') ADVANCE(4105); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4073: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4089); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4074: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4213); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4023); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4075: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4218); - if (lookahead == 'f') ADVANCE(4234); - if (lookahead == 'n') ADVANCE(4218); + if (lookahead == 'e') ADVANCE(2152); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4076: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4249); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(2197); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4077: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4079); - if (lookahead == 'b') ADVANCE(3460); - if (lookahead == 'o') ADVANCE(3476); - if (lookahead == 'x') ADVANCE(3482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4034); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4078: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4079); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4153); + if (lookahead == 'i') ADVANCE(4147); + if (lookahead == 'o') ADVANCE(4117); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4079: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4060); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4080: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4138); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4081: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4129); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4082: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4113); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4083: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4083); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4140); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4084: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4084); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'e') ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4085: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4085); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4087); + if (lookahead == 'e') ADVANCE(4137); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4086: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'e') ADVANCE(4141); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4087: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4088); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4088); + if (lookahead == 'f') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4088: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4088); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'f') ADVANCE(3083); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4089: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4132); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'g') ADVANCE(4096); + if (lookahead == 't') ADVANCE(4167); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4090: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4185); - if (lookahead == 'o') ADVANCE(4143); + if (lookahead == 'h') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4091: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4141); - if (lookahead == 'o') ADVANCE(4162); + if (lookahead == 'h') ADVANCE(4095); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4092: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4131); - if (lookahead == 'o') ADVANCE(4099); - if (lookahead == 'u') ADVANCE(4184); + if (lookahead == 'i') ADVANCE(4067); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4093: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4130); + if (lookahead == 'i') ADVANCE(4062); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4094: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4205); + if (lookahead == 'i') ADVANCE(4114); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4095: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4176); + if (lookahead == 'i') ADVANCE(4107); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4096: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4123); + if (lookahead == 'i') ADVANCE(4149); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4097: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4107); + if (lookahead == 'k') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4098: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'k') ADVANCE(4070); + if (lookahead == 't') ADVANCE(4063); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4099: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4197); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'l') ADVANCE(4145); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4100: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4107); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'l') ADVANCE(2210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4101: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2166); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'l') ADVANCE(4148); + if (lookahead == 'r') ADVANCE(4136); + if (lookahead == 'x') ADVANCE(4126); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4102: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'l') ADVANCE(2205); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4103: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4234); + if (lookahead == 'l') ADVANCE(4093); + if (lookahead == 's') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4104: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4120); - if (lookahead == 'o') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'l') ADVANCE(4100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4105: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4204); - if (lookahead == 'u') ADVANCE(4138); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4225); + if (lookahead == 'l') ADVANCE(4102); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4106: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4122); + if (lookahead == 'l') ADVANCE(4061); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4107: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4056); + if (lookahead == 'l') ADVANCE(4070); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4108: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2161); + if (lookahead == 'l') ADVANCE(4150); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4109: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2206); + if (lookahead == 'n') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4110: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4067); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'n') ADVANCE(4146); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4111: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4186); - if (lookahead == 'i') ADVANCE(4180); - if (lookahead == 'o') ADVANCE(4150); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'n') ADVANCE(4065); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4112: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4093); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'n') ADVANCE(3049); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4113: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4171); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'n') ADVANCE(4169); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4114: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4162); + if (lookahead == 'n') ADVANCE(4163); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4115: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4146); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4033); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4116: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4173); + if (lookahead == 'o') ADVANCE(4165); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4117: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4072); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'o') ADVANCE(4125); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4118: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4170); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4162); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4119: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4174); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'o') ADVANCE(4154); + if (lookahead == 'u') ADVANCE(4104); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4120: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4129); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4121: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'o') ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4122: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4129); - if (lookahead == 't') ADVANCE(4200); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4131); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4123: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4133); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4124: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4128); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'o') ADVANCE(4168); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4125: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4100); + if (lookahead == 'p') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4126: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4095); + if (lookahead == 'p') ADVANCE(4123); + if (lookahead == 't') ADVANCE(4085); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4127: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4147); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4161); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4128: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4140); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4014); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4129: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4182); + if (lookahead == 'r') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4130: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4166); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4131: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4103); - if (lookahead == 't') ADVANCE(4096); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4132: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4178); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'r') ADVANCE(4079); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4133: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'r') ADVANCE(4153); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4134: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4181); - if (lookahead == 'r') ADVANCE(4169); - if (lookahead == 'x') ADVANCE(4159); + if (lookahead == 'r') ADVANCE(4064); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4135: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2214); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4019); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4136: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4126); - if (lookahead == 's') ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4120); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4137: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4133); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'r') ADVANCE(4109); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4138: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4135); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4139); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4139: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4094); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4036); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4140: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4103); + if (lookahead == 'r') ADVANCE(4106); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4141: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4183); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4142); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4142: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'r') ADVANCE(4041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4143: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4179); + if (lookahead == 's') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4144: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4098); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 's') ADVANCE(3185); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4145: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3059); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 's') ADVANCE(4069); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4146: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4202); + if (lookahead == 's') ADVANCE(4151); + if (lookahead == 't') ADVANCE(4094); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4147: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4196); + if (lookahead == 's') ADVANCE(4151); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4148: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4066); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 's') ADVANCE(4070); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4149: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4198); + if (lookahead == 's') ADVANCE(4159); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4150: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4158); + if (lookahead == 's') ADVANCE(4076); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4151: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 't') ADVANCE(4201); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4152: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4187); - if (lookahead == 'u') ADVANCE(4137); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4223); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 't') ADVANCE(4063); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4153: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4162); + if (lookahead == 't') ADVANCE(4023); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4154: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4071); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 't') ADVANCE(4203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4155: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4164); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 't') ADVANCE(4015); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4156: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4166); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 't') ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4157: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 't') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4158: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 't') ADVANCE(4040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4159: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4156); - if (lookahead == 't') ADVANCE(4118); + if (lookahead == 't') ADVANCE(4081); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4160: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'u') ADVANCE(4104); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4161: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'u') ADVANCE(4068); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4162: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'u') ADVANCE(4156); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4163: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4199); + if (lookahead == 'u') ADVANCE(4070); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4164: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'u') ADVANCE(4107); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4165: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4112); + if (lookahead == 'u') ADVANCE(4134); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4166: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4186); + if (lookahead == 'u') ADVANCE(4075); + if (lookahead == 'y') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4167: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4097); + if (lookahead == 'u') ADVANCE(4137); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4168: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'u') ADVANCE(4158); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4169: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4153); + if (lookahead == 'v') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4170: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4142); + if (lookahead == 'v') ADVANCE(4083); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4171: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4172); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'w') ADVANCE(4201); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4172: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4069); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'y') ADVANCE(4201); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4173: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4139); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == '|') ADVANCE(2874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4174: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4175); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '|') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4175: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4074); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '|') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4176: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == '|') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4177: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '|') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4178: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == '|') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4179: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4184); - if (lookahead == 't') ADVANCE(4127); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == '|') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4180: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4184); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == '|') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4181: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4103); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4029); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4181); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4182: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4192); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4183: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4109); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4184: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4185: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4096); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4189); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4186: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4056); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4196); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4187: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4236); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4197); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4188: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4048); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4189: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4068); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4190: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4053); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4191: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4073); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4192: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4114); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4193: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4137); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4223); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4185); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4194: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4186); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4195: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4189); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4187); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4196: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4103); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4198); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4197: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4140); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4199); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4198: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4167); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4199: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4108); - if (lookahead == 'y') ADVANCE(4234); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4200: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4170); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4201: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4191); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); END_STATE(); case 4202: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4203: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4116); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4204: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4205: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4205); END_STATE(); case 4206: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4206); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4207: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4208: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4024); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4209: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4210: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4211: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4212: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4181); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4213: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4214: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4062); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4214); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4208); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4215: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4223); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4209); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4216: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4225); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4217: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4218: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4222); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4219: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4229); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4220: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4230); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4220); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4221: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4227); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); case 4222: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4228); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(3368); + if (lookahead == '(') ADVANCE(3277); + if (lookahead == '[') ADVANCE(3513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4223: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4274); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == 'r') ADVANCE(4277); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4224: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4217); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4269); + if (lookahead == '>') ADVANCE(3617); + if (lookahead == 'u') ADVANCE(4281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4225: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4263); + if (lookahead == '-') ADVANCE(4265); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == '_') ADVANCE(4265); + if (lookahead == 'r') ADVANCE(4277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4226: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4218); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4275); + if (lookahead == '>') ADVANCE(3605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4227: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4270); + if (lookahead == '>') ADVANCE(3609); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4228: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4220); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4305); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4229: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4231); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4239); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == '_') ADVANCE(4229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4230: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4232); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4231: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4232: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4234); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(4255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4233: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4233); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4254); + if (lookahead == '_') ADVANCE(4234); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4234: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4254); + if (lookahead == '_') ADVANCE(4234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4235: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4063); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3109); + if (lookahead == '_') ADVANCE(4255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4236: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4258); + if (lookahead == '_') ADVANCE(4237); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4237: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4240); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4258); + if (lookahead == '_') ADVANCE(4237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4238: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4238); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '2') ADVANCE(4300); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4310); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4239: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4239); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == '_') ADVANCE(4239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4240: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2225); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4241: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4244); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4242: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4076); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4243: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4244: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4245); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4245: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4214); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4246: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4314); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); END_STATE(); case 4247: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4311); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4248: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4242); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4313); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4249: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4243); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3633); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4250: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4244); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4251: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4252: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4251); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4253: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4254: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4255: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3401); - if (lookahead == '(') ADVANCE(3310); - if (lookahead == '[') ADVANCE(3546); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4256: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4307); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == 'r') ADVANCE(4310); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4257); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4257: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4302); - if (lookahead == '>') ADVANCE(3650); - if (lookahead == 'u') ADVANCE(4314); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4258: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4296); - if (lookahead == '-') ADVANCE(4298); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == '_') ADVANCE(4298); - if (lookahead == 'r') ADVANCE(4310); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4259: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4308); - if (lookahead == '>') ADVANCE(3638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4260: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4303); - if (lookahead == '>') ADVANCE(3642); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4261); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4261: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4338); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4262: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4272); - if (lookahead == ':') ADVANCE(4347); if (lookahead == '_') ADVANCE(4262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4263: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4265); + if (lookahead == 'o') ADVANCE(4249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4264: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4265); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4265: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(4288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == '_') ADVANCE(4265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4266: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4287); - if (lookahead == '_') ADVANCE(4267); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'a') ADVANCE(4272); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4267: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4287); - if (lookahead == '_') ADVANCE(4267); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4268: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3121); - if (lookahead == '_') ADVANCE(4288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4269: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4292); - if (lookahead == '_') ADVANCE(4270); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'e') ADVANCE(4250); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4270: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4292); - if (lookahead == '_') ADVANCE(4270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'e') ADVANCE(4278); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4271: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(4333); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4343); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4272: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == '_') ADVANCE(4272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'l') ADVANCE(4280); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4273: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2234); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'l') ADVANCE(4271); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4274: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4277); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'o') ADVANCE(4249); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4275: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4273); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'o') ADVANCE(4285); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4276: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4274); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'r') ADVANCE(4284); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4277: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'r') ADVANCE(4226); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4278: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'r') ADVANCE(4279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4279: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); + if (lookahead == 'r') ADVANCE(4252); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4280: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 's') ADVANCE(4268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4281: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4346); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 't') ADVANCE(4227); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4282: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3666); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 't') ADVANCE(4251); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4283: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3662); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'u') ADVANCE(4273); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4284: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3654); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'u') ADVANCE(4267); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4285: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3658); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'u') ADVANCE(4282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4286: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4286); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4287: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4287); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2228); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4288: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2217); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4289: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4290); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4296); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4290: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4297); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4291: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4292: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4292); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4293: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4289); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4294: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4295); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4287); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4295: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4290); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4296: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4298); - if (lookahead == 'o') ADVANCE(4282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4299); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4297: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4298); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4298); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4298: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4299: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4305); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4300: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4301: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4302: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4283); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4228); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4303: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4311); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4248); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4304: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4302); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4305: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4313); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4306: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4304); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4303); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4307: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4308: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4318); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4309: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4317); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4310: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4259); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4311: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4312); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4312: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4285); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4247); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4313: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4312); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4314: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4260); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); END_STATE(); case 4315: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4284); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4375); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == 'i') ADVANCE(4392); + if (lookahead == 'r') ADVANCE(4379); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4316: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4306); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4324); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4375); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == 'r') ADVANCE(4379); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4317: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4300); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4368); + if (lookahead == '>') ADVANCE(3617); + if (lookahead == 'u') ADVANCE(4385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4318: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ADVANCE_MAP( + '+', 4356, + '-', 4358, + '>', 3613, + 'I', 4392, + '_', 4358, + 'i', 4392, + 'r', 4379, + 'B', 3429, + 'b', 3429, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4319: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4324); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4356); + if (lookahead == '-') ADVANCE(4358); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == '_') ADVANCE(4358); + if (lookahead == 'r') ADVANCE(4379); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4320: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2237); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4376); + if (lookahead == '>') ADVANCE(3605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4321: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2226); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4369); + if (lookahead == '>') ADVANCE(3609); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4322: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '-') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4323: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4330); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4324: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4325: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4321); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3282); + if (lookahead == '_') ADVANCE(4355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4326: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4322); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4327: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4320); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4329); + if (lookahead == '_') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4328: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4323); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4329); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4329: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4332); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2952); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4330: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4331); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4349); + if (lookahead == '_') ADVANCE(4331); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4400); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4331: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4349); + if (lookahead == '_') ADVANCE(4331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4332: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4333: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4354); + if (lookahead == '_') ADVANCE(4334); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4400); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4334: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4354); + if (lookahead == '_') ADVANCE(4334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4335: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4261); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '2') ADVANCE(4406); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4416); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4336: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(4413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4337: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4335); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(4419); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4338: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4340); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3633); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4339: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4336); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4340: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4341: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4342: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3514); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == '_') ADVANCE(4358); + if (lookahead == 'i') ADVANCE(4392); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4343: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == '_') ADVANCE(4358); + if (lookahead == 'i') ADVANCE(4363); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4344: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4341); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == 'i') ADVANCE(4392); + if (lookahead == 'r') ADVANCE(4388); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4345: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == 'i') ADVANCE(4392); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4346: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == 'i') ADVANCE(4363); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4347: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4392); + if (lookahead == 'i') ADVANCE(4374); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4348: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4408); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == 'i') ADVANCE(4425); - if (lookahead == 'r') ADVANCE(4412); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4348); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4349: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4408); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == 'r') ADVANCE(4412); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4350: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4401); - if (lookahead == '>') ADVANCE(3650); - if (lookahead == 'u') ADVANCE(4418); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4351: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 4388, - '-', 4390, - '>', 3646, - 'I', 4425, - '_', 4390, - 'i', 4425, - 'r', 4412, - 'B', 3462, - 'b', 3462, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4352); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4352: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4388); - if (lookahead == '-') ADVANCE(4390); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == '_') ADVANCE(4390); - if (lookahead == 'r') ADVANCE(4412); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4353: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4409); - if (lookahead == '>') ADVANCE(3638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4354: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4402); - if (lookahead == '>') ADVANCE(3642); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4355: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4356: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4358); + if (lookahead == 'o') ADVANCE(4338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4357: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4358); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4358: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3315); - if (lookahead == '_') ADVANCE(4387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4359: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4360); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4360: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4362); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == '_') ADVANCE(4360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4361: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4362); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'a') ADVANCE(4372); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4362: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2961); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'a') ADVANCE(4390); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4363: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4382); - if (lookahead == '_') ADVANCE(4364); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4364: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4382); - if (lookahead == '_') ADVANCE(4364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'c') ADVANCE(3434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4365: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3314); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4366: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4386); - if (lookahead == '_') ADVANCE(4367); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4367: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4386); - if (lookahead == '_') ADVANCE(4367); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'e') ADVANCE(4364); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4368: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(4439); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4449); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'e') ADVANCE(4339); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4369: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'e') ADVANCE(4380); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4370: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4452); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'k') ADVANCE(3434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4371: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3666); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4372: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3662); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'l') ADVANCE(4384); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4373: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3654); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'l') ADVANCE(4371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4374: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3658); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4375: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == '_') ADVANCE(4390); - if (lookahead == 'i') ADVANCE(4425); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4390); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'o') ADVANCE(4338); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4376: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == '_') ADVANCE(4390); - if (lookahead == 'i') ADVANCE(4396); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4390); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'o') ADVANCE(4389); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4377: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == 'i') ADVANCE(4425); - if (lookahead == 'r') ADVANCE(4421); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'r') ADVANCE(3434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4378: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == 'i') ADVANCE(4425); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'r') ADVANCE(4388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4379: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == 'i') ADVANCE(4396); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'r') ADVANCE(4320); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4380: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4425); - if (lookahead == 'i') ADVANCE(4407); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'r') ADVANCE(4381); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4381: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4381); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'r') ADVANCE(4341); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4382: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4382); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'u') ADVANCE(4373); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4397); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4383: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 's') ADVANCE(3434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4384: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4385); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 's') ADVANCE(4366); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4385: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 't') ADVANCE(4321); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4386: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 't') ADVANCE(4340); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4387: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'u') ADVANCE(4373); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4397); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4388: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4390); - if (lookahead == 'o') ADVANCE(4371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'u') ADVANCE(4365); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4389: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4390); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4390); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'u') ADVANCE(4386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4390: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4390); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'y') ADVANCE(3434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4391: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4392); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4392); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4397); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4392: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4392); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4393: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4393); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4394: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4395: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4423); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4396: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4403); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4397: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4398: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4399: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4395); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4400: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4397); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4401: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4372); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4396); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4402: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4403: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4404); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4404: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4405: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4406: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4404); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4407: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4408: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4371); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4322); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4409: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4410: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4411: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4421); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4417); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4412: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4413: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4414); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4414); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4414: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4374); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4415: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'u') ADVANCE(4406); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4416: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4417: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3475); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4418: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4354); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4336); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4419: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4373); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4418); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4420: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4406); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4421: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4398); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(4424); + if (lookahead == '_') ADVANCE(4425); + if (lookahead == '\t' || + lookahead == ' ') SKIP(400); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4422: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4419); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(3113); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(4424); + if (lookahead == ']') ADVANCE(2916); + if (lookahead == '_') ADVANCE(4425); + if (lookahead == '\t' || + lookahead == ' ') SKIP(398); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4423: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(4426); + if (lookahead == '_') ADVANCE(4423); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4424: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4425: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4425); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4426: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4427: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4428); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4428); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4428: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4435); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4428); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4429: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4436); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); END_STATE(); case 4430: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4467); + if (lookahead == '>') ADVANCE(3616); + if (lookahead == 'r') ADVANCE(4470); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4431: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4427); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4462); + if (lookahead == '>') ADVANCE(3620); + if (lookahead == 'u') ADVANCE(4474); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4432: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4428); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4468); + if (lookahead == '>') ADVANCE(3608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4433: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4426); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4463); + if (lookahead == '>') ADVANCE(3612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4434: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4501); + if (lookahead == '_') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4435: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4438); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4502); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4436: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4437); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4453); + if (lookahead == '_') ADVANCE(4437); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4437: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4453); + if (lookahead == '_') ADVANCE(4437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4438: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(3112); + if (lookahead == '_') ADVANCE(4458); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4439: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3500); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(2954); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4440: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4439); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4441: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4499); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4442); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4442: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '2') ADVANCE(4490); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4500); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4443: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4491); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4494); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4444: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4504); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4445: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4442); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4506); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4446: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3636); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4447: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4448: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3516); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4449: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3500); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3628); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4450: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T') ADVANCE(4503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4451: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4369); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4453); + if (lookahead == 'b') ADVANCE(3428); + if (lookahead == 'o') ADVANCE(3444); + if (lookahead == 'x') ADVANCE(3450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4452: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4453); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4453: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4454: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(4457); - if (lookahead == '_') ADVANCE(4458); - if (lookahead == '\t' || - lookahead == ' ') SKIP(408); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4455: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(3125); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(4457); - if (lookahead == ']') ADVANCE(2925); - if (lookahead == '_') ADVANCE(4458); - if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4454); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4456: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(4459); - if (lookahead == '_') ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4457: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '_') ADVANCE(4457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4458: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '_') ADVANCE(4458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4459: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4459); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'a') ADVANCE(4464); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4460: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4461); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4461); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(2156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4461: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4461); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(2201); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4462: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(4447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4463: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4500); - if (lookahead == '>') ADVANCE(3649); - if (lookahead == 'r') ADVANCE(4503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'e') ADVANCE(4471); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4464: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4495); - if (lookahead == '>') ADVANCE(3653); - if (lookahead == 'u') ADVANCE(4507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'l') ADVANCE(4473); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4465: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4501); - if (lookahead == '>') ADVANCE(3641); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'l') ADVANCE(2209); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4466: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4496); - if (lookahead == '>') ADVANCE(3645); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'l') ADVANCE(4465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4467: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4534); - if (lookahead == '_') ADVANCE(4486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'o') ADVANCE(4446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4468: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4535); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'o') ADVANCE(4478); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4469: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4486); - if (lookahead == '_') ADVANCE(4470); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'r') ADVANCE(4477); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4470: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4486); - if (lookahead == '_') ADVANCE(4470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'r') ADVANCE(4432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4471: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3124); - if (lookahead == '_') ADVANCE(4491); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'r') ADVANCE(4472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4472: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(2963); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'r') ADVANCE(4449); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4473: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4472); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 's') ADVANCE(4461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4474: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4532); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4475); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 't') ADVANCE(4433); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4475: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(4523); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4533); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 't') ADVANCE(4448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4476: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4524); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4527); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'u') ADVANCE(4466); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4477: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4537); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'u') ADVANCE(4460); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4478: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4539); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'u') ADVANCE(4475); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4479: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3669); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4442); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4480: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3665); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4481: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3657); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4483); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4482: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3661); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4487); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4483: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(4536); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4484: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4486); - if (lookahead == 'b') ADVANCE(3461); - if (lookahead == 'o') ADVANCE(3477); - if (lookahead == 'x') ADVANCE(3483); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4485: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4486); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4481); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4486: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4482); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4487: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4488); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4488: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4487); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4489: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4489); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4490: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4490); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4491: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4491); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4494); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4492: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(4497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (lookahead == '-' || + lookahead == '.' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4492); END_STATE(); case 4493: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2165); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4494: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2210); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4495: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4480); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4435); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4496: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4504); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4497: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4506); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4445); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4498: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4499: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4500: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4479); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4501: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4511); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4495); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4502: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4510); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4496); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4503: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4497); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4504: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4505: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4482); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4506: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(4494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4507: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4466); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4507); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4508: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4481); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); case 4509: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4499); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4535); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == 'r') ADVANCE(4538); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4510: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4530); + if (lookahead == '>') ADVANCE(3617); + if (lookahead == 'u') ADVANCE(4542); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4511: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4536); + if (lookahead == '>') ADVANCE(3605); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4512: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4475); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4531); + if (lookahead == '>') ADVANCE(3609); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4513: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(4564); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4514: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4516); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(4524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3415); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4515: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4523); + if (lookahead == '_') ADVANCE(4516); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4520); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + lookahead == 'i') ADVANCE(4555); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4516: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4519); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4523); + if (lookahead == '_') ADVANCE(4516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4517: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == ':') ADVANCE(903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4518: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4514); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3633); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4519: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4515); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3629); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4520: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4521); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4521: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4522: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4522); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4523: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4476); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4524: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4527); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3415); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4525: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-' || - lookahead == '.' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4525); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4526); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4526: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4526); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4527: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'a') ADVANCE(4533); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4528: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4468); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4529: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4530: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4478); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(4519); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4531: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4474); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(4539); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4532: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4533: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4476); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(4541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4534: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4528); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(4532); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4535: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(4518); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4536: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(4546); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4537: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4531); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4545); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4538: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4477); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4511); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4539: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4538); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4540); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4540: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4540); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4521); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4541: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 's') ADVANCE(4529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4542: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4568); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == 'r') ADVANCE(4571); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 't') ADVANCE(4512); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4543: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4563); - if (lookahead == '>') ADVANCE(3650); - if (lookahead == 'u') ADVANCE(4575); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 't') ADVANCE(4520); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4544: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4569); - if (lookahead == '>') ADVANCE(3638); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'u') ADVANCE(4534); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4545: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4564); - if (lookahead == '>') ADVANCE(3642); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'u') ADVANCE(4528); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4546: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(4597); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'u') ADVANCE(4543); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4547: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3122); - if (lookahead == '_') ADVANCE(4557); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4548: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4556); - if (lookahead == '_') ADVANCE(4549); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2229); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4549: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4556); - if (lookahead == '_') ADVANCE(4549); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4550: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(915); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4557); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4551: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3666); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4558); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4552: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3662); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4553: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3654); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4549); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4554: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3658); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4550); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4555: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4555); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4556: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4556); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4551); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4557: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4557); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4560); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4558: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4559); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4559); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4559); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4559: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4559); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4560: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(4566); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4561: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2159); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4562: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2204); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4563: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4552); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4561); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4564: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4572); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4566); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4565: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2212); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4562); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4566: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4574); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4567: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4565); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); END_STATE(); case 4568: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4551); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4576); + if (lookahead == '_') ADVANCE(4568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4569: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4579); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3282); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4570: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4578); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4577); + if (lookahead == '_') ADVANCE(4570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4571: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4544); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4593); + if (lookahead == '_') ADVANCE(4583); + if (lookahead == 'i') ADVANCE(4593); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4583); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4572: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4593); + if (lookahead == '_') ADVANCE(4583); + if (lookahead == 'i') ADVANCE(4585); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4583); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4573: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4554); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4593); + if (lookahead == 'i') ADVANCE(4593); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4574: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(4562); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4593); + if (lookahead == 'i') ADVANCE(4585); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4575: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4545); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4593); + if (lookahead == 'i') ADVANCE(4589); + if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4576: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4553); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4576); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4577: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4567); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4585); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4578: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4561); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4579: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4576); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4580: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4585); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4581); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4581: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2238); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4582: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2227); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4583); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4583: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4590); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4584: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4591); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'a') ADVANCE(4592); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4585: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2241); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'b') ADVANCE(3429); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4586: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4582); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'c') ADVANCE(3434); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4587: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4583); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'e') ADVANCE(4586); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4588: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4581); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'k') ADVANCE(3434); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4589: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4584); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4590: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4593); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'r') ADVANCE(3434); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4591: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4592); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 's') ADVANCE(3434); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4592: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'y') ADVANCE(3434); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4593: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2220); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3429); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4594: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4546); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2227); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4595: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4550); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4598); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4596: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4594); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4597: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4595); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4598: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4599); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4599: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4600: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4601: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4609); - if (lookahead == '_') ADVANCE(4601); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '#') ADVANCE(4789); + if (lookahead == '$') ADVANCE(2920); + if (lookahead == '(') ADVANCE(3220); + if (lookahead == '.') ADVANCE(4603); + if (lookahead == '_') ADVANCE(4604); + if (lookahead == '\t' || + lookahead == ' ') SKIP(400); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4608); END_STATE(); case 4602: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3315); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(4605); + if (lookahead == '_') ADVANCE(4602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4603: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4610); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if (lookahead == '_') ADVANCE(4603); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4604: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4626); - if (lookahead == '_') ADVANCE(4616); - if (lookahead == 'i') ADVANCE(4626); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4616); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4605: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4626); - if (lookahead == '_') ADVANCE(4616); - if (lookahead == 'i') ADVANCE(4618); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4616); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4605); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4606: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4626); - if (lookahead == 'i') ADVANCE(4626); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4607); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4607: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4626); - if (lookahead == 'i') ADVANCE(4618); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4608: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4626); - if (lookahead == 'i') ADVANCE(4622); - if (lookahead == 's') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); END_STATE(); case 4609: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '$') ADVANCE(3369); + if (lookahead == '(') ADVANCE(3277); + if (lookahead == '{') ADVANCE(3514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4781); END_STATE(); case 4610: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2078); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); END_STATE(); case 4611: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); END_STATE(); case 4612: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4612); END_STATE(); case 4613: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4614); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4615); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4614: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4616); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4615: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4616); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4614); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4616: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4617); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4617: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(4625); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4618); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4618: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4619: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1883); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); END_STATE(); case 4620: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(4619); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); END_STATE(); case 4621: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'e') ADVANCE(4622); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4622: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(3467); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'n') ADVANCE(4623); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4623: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'v') ADVANCE(1085); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4624: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4625: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(3467); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1936); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); END_STATE(); case 4626: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3462); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2123); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); END_STATE(); case 4627: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2236); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); END_STATE(); case 4628: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4631); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1895); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); END_STATE(); case 4629: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4627); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); END_STATE(); case 4630: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4628); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'e') ADVANCE(4631); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4631: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4632); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'n') ADVANCE(4632); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4632: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2232); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'v') ADVANCE(3160); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4633: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4634: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4822); - if (lookahead == '$') ADVANCE(2929); - if (lookahead == '(') ADVANCE(3232); - if (lookahead == '.') ADVANCE(4636); - if (lookahead == '_') ADVANCE(4637); - if (lookahead == '\t' || - lookahead == ' ') SKIP(408); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2117); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); END_STATE(); case 4635: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4638); - if (lookahead == '_') ADVANCE(4635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4635); END_STATE(); case 4636: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3398); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2129); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4636); END_STATE(); case 4637: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1889); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4637); END_STATE(); case 4638: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); case 4639: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4640); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2048); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); END_STATE(); case 4640: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1942); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); END_STATE(); case 4641: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2018); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); case 4642: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3402); - if (lookahead == '(') ADVANCE(3310); - if (lookahead == '{') ADVANCE(3547); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4814); + if (lookahead == ',') ADVANCE(2054); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4642); END_STATE(); case 4643: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2087); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (lookahead == ',') ADVANCE(2012); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); END_STATE(); case 4644: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2033); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4644); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'e') ADVANCE(4645); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); case 4645: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2039); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'n') ADVANCE(4646); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); case 4646: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2120); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4648); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'v') ADVANCE(2888); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); case 4647: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2120); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4649); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + if (lookahead == ',') ADVANCE(2149); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); case 4648: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2120); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4647); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + if (lookahead == ',') ADVANCE(1904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); END_STATE(); case 4649: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2120); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4650); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + if (lookahead == ',') ADVANCE(1910); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); END_STATE(); case 4650: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2120); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4651); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + if (lookahead == ',') ADVANCE(2072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4650); END_STATE(); case 4651: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2120); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'e') ADVANCE(4652); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); END_STATE(); case 4652: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1892); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4652); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'n') ADVANCE(4653); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); END_STATE(); case 4653: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2009); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4653); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'v') ADVANCE(3143); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); END_STATE(); case 4654: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'e') ADVANCE(4655); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (lookahead == ',') ADVANCE(1982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); END_STATE(); case 4655: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'n') ADVANCE(4656); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (lookahead == ',') ADVANCE(1988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4656: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1939); - if (lookahead == 'v') ADVANCE(1094); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (lookahead == ',') ADVANCE(2066); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4656); END_STATE(); case 4657: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1939); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (lookahead == ',') ADVANCE(1994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); case 4658: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1945); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (lookahead == ',') ADVANCE(1898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); END_STATE(); case 4659: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2132); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4659); + if (lookahead == '.') ADVANCE(4666); + if (lookahead == '_') ADVANCE(4659); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4660: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4660); + if (lookahead == '.') ADVANCE(4667); + if (lookahead == '_') ADVANCE(4660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); case 4661: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4661); + if (lookahead == '.') ADVANCE(4662); + if (lookahead == '_') ADVANCE(4669); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4662: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2045); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4662); + if (lookahead == '.') ADVANCE(4609); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4663: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'e') ADVANCE(4664); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); + if (lookahead == 'N') ADVANCE(4763); + if (lookahead == 'f') ADVANCE(3078); + if (lookahead == 'n') ADVANCE(3042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4664: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'n') ADVANCE(4665); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); + if (lookahead == '_') ADVANCE(4666); + if (lookahead == 'b') ADVANCE(4778); + if (lookahead == 'o') ADVANCE(4779); + if (lookahead == 'x') ADVANCE(4780); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4665: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1971); - if (lookahead == 'v') ADVANCE(3172); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); + if (lookahead == '_') ADVANCE(4666); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4666); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4666: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); + if (lookahead == '_') ADVANCE(4666); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4667: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2126); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4667); + if (lookahead == '_') ADVANCE(4667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); case 4668: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2015); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4668); + if (lookahead == '_') ADVANCE(4668); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4665); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4669: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2138); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4669); + if (lookahead == '_') ADVANCE(4669); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4670: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4670); + if (lookahead == 'a') ADVANCE(4747); + if (lookahead == 'o') ADVANCE(4719); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4671: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2069); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4671); + if (lookahead == 'a') ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4730); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4672: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4672); + if (lookahead == 'a') ADVANCE(4710); + if (lookahead == 'o') ADVANCE(4679); + if (lookahead == 'u') ADVANCE(4749); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4673: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4673); + if (lookahead == 'a') ADVANCE(4709); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4674: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2027); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4674); + if (lookahead == 'a') ADVANCE(4761); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4675: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4675); + if (lookahead == 'a') ADVANCE(4740); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4676: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2021); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4676); + if (lookahead == 'c') ADVANCE(4701); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4677: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'e') ADVANCE(4678); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); + if (lookahead == 'c') ADVANCE(4702); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4678: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'n') ADVANCE(4679); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); + if (lookahead == 'c') ADVANCE(4692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4679: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2158); - if (lookahead == 'v') ADVANCE(2897); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); + if (lookahead == 'd') ADVANCE(4758); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4680: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2158); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); + if (lookahead == 'd') ADVANCE(4686); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4681: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1913); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4681); + if (lookahead == 'e') ADVANCE(4699); + if (lookahead == 'o') ADVANCE(3071); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4682: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1919); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4682); + if (lookahead == 'e') ADVANCE(4760); + if (lookahead == 'u') ADVANCE(4713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4769); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4683: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2081); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4683); + if (lookahead == 'e') ADVANCE(4700); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4684: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'e') ADVANCE(4685); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); + if (lookahead == 'e') ADVANCE(2907); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4685: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'n') ADVANCE(4686); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); + if (lookahead == 'e') ADVANCE(3086); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4686: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1991); - if (lookahead == 'v') ADVANCE(3155); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); + if (lookahead == 'e') ADVANCE(3156); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4687: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); + if (lookahead == 'e') ADVANCE(3058); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4688: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1997); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4688); + if (lookahead == 'e') ADVANCE(2151); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4689: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2075); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4689); + if (lookahead == 'e') ADVANCE(2196); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4690: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2003); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4690); + if (lookahead == 'e') ADVANCE(3064); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4691: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1907); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4691); + if (lookahead == 'e') ADVANCE(2900); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4692: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4699); - if (lookahead == '_') ADVANCE(4692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'e') ADVANCE(3139); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4693: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4700); - if (lookahead == '_') ADVANCE(4693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + if (lookahead == 'e') ADVANCE(3027); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4694: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4695); - if (lookahead == '_') ADVANCE(4702); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'e') ADVANCE(4748); + if (lookahead == 'i') ADVANCE(4742); + if (lookahead == 'o') ADVANCE(4724); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4695: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4642); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'e') ADVANCE(4673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4696: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(4796); - if (lookahead == 'f') ADVANCE(3088); - if (lookahead == 'n') ADVANCE(3052); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'e') ADVANCE(4738); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4697: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4699); - if (lookahead == 'b') ADVANCE(4811); - if (lookahead == 'o') ADVANCE(4812); - if (lookahead == 'x') ADVANCE(4813); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'e') ADVANCE(4736); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4698: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4699); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4699); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'e') ADVANCE(4732); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4699: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4699); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'f') ADVANCE(2882); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4700: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4700); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + if (lookahead == 'g') ADVANCE(4708); + if (lookahead == 't') ADVANCE(4756); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4701: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4701); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4698); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'h') ADVANCE(3124); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4702: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4702); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'h') ADVANCE(3094); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4703: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4780); - if (lookahead == 'o') ADVANCE(4752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'h') ADVANCE(4707); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4704: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4751); - if (lookahead == 'o') ADVANCE(4763); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'i') ADVANCE(4680); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4705: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4743); - if (lookahead == 'o') ADVANCE(4712); - if (lookahead == 'u') ADVANCE(4782); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'i') ADVANCE(4675); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4706: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4742); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'i') ADVANCE(4722); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4707: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4794); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'i') ADVANCE(4715); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4708: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4773); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'i') ADVANCE(4745); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4709: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4734); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'k') ADVANCE(3021); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4710: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4735); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'k') ADVANCE(4687); + if (lookahead == 't') ADVANCE(4677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4711: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4725); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(2204); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4712: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4791); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4705); + if (lookahead == 's') ADVANCE(3178); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4713: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4719); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4711); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4714: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4732); - if (lookahead == 'o') ADVANCE(3081); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4674); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4715: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4793); - if (lookahead == 'u') ADVANCE(4746); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4802); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4690); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4716: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4733); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4691); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4717: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2916); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4743); + if (lookahead == 'r') ADVANCE(4735); + if (lookahead == 'x') ADVANCE(4728); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4718: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3096); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'l') ADVANCE(4746); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4719: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3168); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'n') ADVANCE(4744); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4720: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3068); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'n') ADVANCE(2893); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4721: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2160); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'n') ADVANCE(3131); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4722: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2205); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'n') ADVANCE(4757); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4723: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3074); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'o') ADVANCE(4754); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4724: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2909); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'o') ADVANCE(4727); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4725: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3151); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'o') ADVANCE(4731); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4726: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3037); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'o') ADVANCE(4739); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4727: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4781); - if (lookahead == 'i') ADVANCE(4775); - if (lookahead == 'o') ADVANCE(4757); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'p') ADVANCE(3051); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4728: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4706); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'p') ADVANCE(4726); + if (lookahead == 't') ADVANCE(4697); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4729: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4771); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4755); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4730: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4769); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(3033); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4731: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4765); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(2929); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4732: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(2891); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(3147); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4733: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(4741); - if (lookahead == 't') ADVANCE(4789); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4695); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4734: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3136); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4678); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4735: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3104); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4725); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4736: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(4740); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4720); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4737: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4713); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4721); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4738: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4708); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4714); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4739: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4755); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'r') ADVANCE(4752); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4740: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4748); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(1068); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4741: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4778); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(4684); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4742: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3031); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(4750); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4743: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(4720); - if (lookahead == 't') ADVANCE(4710); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(4685); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4744: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(2213); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(4751); + if (lookahead == 't') ADVANCE(4706); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4745: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4738); - if (lookahead == 's') ADVANCE(3190); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(4753); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4746: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4744); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 's') ADVANCE(4689); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4747: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4707); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(4676); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4748: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4723); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(1081); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4749: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4724); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(1089); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4750: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4776); - if (lookahead == 'r') ADVANCE(4768); - if (lookahead == 'x') ADVANCE(4761); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(2941); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4751: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4779); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(1096); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4752: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4777); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(1063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4753: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2902); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 't') ADVANCE(4698); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4754: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3143); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'u') ADVANCE(4734); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4755: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4790); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'u') ADVANCE(4688); + if (lookahead == 'y') ADVANCE(3117); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4756: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4787); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'u') ADVANCE(4737); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4757: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4760); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'u') ADVANCE(4693); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4758: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4764); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'u') ADVANCE(4716); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4759: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4772); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'v') ADVANCE(4696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4760: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3061); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'w') ADVANCE(3171); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4761: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(4759); - if (lookahead == 't') ADVANCE(4730); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (lookahead == 'y') ADVANCE(3164); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); case 4762: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4788); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4763: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3043); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4764: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2938); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4765: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3159); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4766: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4728); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4767: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4711); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4768: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4758); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4769: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4753); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4770: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4754); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4771: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4747); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4772: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4785); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4773: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1077); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4774: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4717); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4775: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4783); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4776: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4718); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4777: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4784); - if (lookahead == 't') ADVANCE(4739); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4778: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4786); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4779: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4722); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4780: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4709); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4781: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1090); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4782: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1098); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4783: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(2950); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4784: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1105); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4785: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4786: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4731); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4787: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4767); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4788: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4721); - if (lookahead == 'y') ADVANCE(3129); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4789: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4770); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4790: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4726); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4791: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4749); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4792: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(4729); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4793: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'w') ADVANCE(3183); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4794: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3176); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); - END_STATE(); - case 4795: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4802); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'a') ADVANCE(4769); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4796: + case 4763: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4801); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'f') ADVANCE(4768); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4797: + case 4764: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4800); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'f') ADVANCE(4767); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4798: + case 4765: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4807); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'i') ADVANCE(4774); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4799: + case 4766: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4808); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'i') ADVANCE(4775); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4800: + case 4767: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4806); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'i') ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4801: + case 4768: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4805); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'i') ADVANCE(4772); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4802: + case 4769: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4814); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'n') ADVANCE(4781); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4803: + case 4770: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4796); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'n') ADVANCE(4763); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4804: + case 4771: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4797); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'n') ADVANCE(4764); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4805: + case 4772: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4798); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'n') ADVANCE(4765); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4806: + case 4773: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4799); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'n') ADVANCE(4766); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4807: + case 4774: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4810); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 't') ADVANCE(4777); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4808: + case 4775: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4809); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 't') ADVANCE(4776); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4809: + case 4776: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + lookahead == 'y') ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4810: + case 4777: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4814); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == 'y') ADVANCE(4781); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4811: + case 4778: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4811); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == '_') ADVANCE(4778); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4812: + case 4779: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4812); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + lookahead == '_') ADVANCE(4779); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4813: + case 4780: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4813); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4780); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4814: + case 4781: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); END_STATE(); - case 4815: + case 4782: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4816: + case 4783: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4833); + if (lookahead == '#') ADVANCE(4800); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4817); + lookahead != '|') ADVANCE(4784); END_STATE(); - case 4817: + case 4784: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57783,20 +57229,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4817); + lookahead != '|') ADVANCE(4784); END_STATE(); - case 4818: + case 4785: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4831); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4819); + if (lookahead == '#') ADVANCE(4798); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4786); END_STATE(); - case 4819: + case 4786: 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(4819); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4786); END_STATE(); - case 4820: + case 4787: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(4830); + if (lookahead == '#') ADVANCE(4797); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -57805,9 +57251,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4821); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4788); END_STATE(); - case 4821: + case 4788: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57817,42 +57263,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4821); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4788); END_STATE(); - case 4822: + case 4789: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 4823: + case 4790: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1066); - if (lookahead == '\r') ADVANCE(1068); - if (lookahead != 0) ADVANCE(1068); + if (lookahead == '\n') ADVANCE(1057); + if (lookahead == '\r') ADVANCE(1059); + if (lookahead != 0) ADVANCE(1059); END_STATE(); - case 4824: + case 4791: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1065); + if (lookahead == '!') ADVANCE(1056); END_STATE(); - case 4825: + case 4792: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 4826: + case 4793: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); END_STATE(); - case 4827: + case 4794: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3564); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3531); END_STATE(); - case 4828: + case 4795: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); END_STATE(); - case 4829: + case 4796: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); END_STATE(); - case 4830: + case 4797: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57862,13 +57308,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4821); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4788); END_STATE(); - case 4831: + case 4798: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4819); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4786); END_STATE(); - case 4832: + case 4799: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57876,9 +57322,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); END_STATE(); - case 4833: + case 4800: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57886,26 +57332,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4817); + lookahead != '|') ADVANCE(4784); END_STATE(); - case 4834: + case 4801: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4836); + lookahead != '\n') ADVANCE(4803); END_STATE(); - case 4835: + case 4802: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4834); + if (lookahead == '#') ADVANCE(4801); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4835); + lookahead == ' ') ADVANCE(4802); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(4836); + lookahead != '\n') ADVANCE(4803); END_STATE(); - case 4836: + case 4803: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4836); + lookahead != '\n') ADVANCE(4803); END_STATE(); default: return false; @@ -58414,3049 +57860,3049 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 938}, - [2] = {.lex_state = 959}, - [3] = {.lex_state = 959}, - [4] = {.lex_state = 959}, - [5] = {.lex_state = 959}, - [6] = {.lex_state = 959}, - [7] = {.lex_state = 959}, - [8] = {.lex_state = 959}, - [9] = {.lex_state = 959}, - [10] = {.lex_state = 959}, - [11] = {.lex_state = 959}, - [12] = {.lex_state = 959}, - [13] = {.lex_state = 959}, - [14] = {.lex_state = 959}, - [15] = {.lex_state = 959}, - [16] = {.lex_state = 959}, - [17] = {.lex_state = 959}, - [18] = {.lex_state = 959}, - [19] = {.lex_state = 959}, - [20] = {.lex_state = 959}, - [21] = {.lex_state = 959}, - [22] = {.lex_state = 959}, - [23] = {.lex_state = 959}, - [24] = {.lex_state = 959}, - [25] = {.lex_state = 959}, - [26] = {.lex_state = 956}, - [27] = {.lex_state = 956}, - [28] = {.lex_state = 956}, - [29] = {.lex_state = 956}, - [30] = {.lex_state = 956}, - [31] = {.lex_state = 956}, - [32] = {.lex_state = 956}, - [33] = {.lex_state = 956}, - [34] = {.lex_state = 956}, - [35] = {.lex_state = 956}, - [36] = {.lex_state = 956}, - [37] = {.lex_state = 956}, - [38] = {.lex_state = 956}, - [39] = {.lex_state = 956}, - [40] = {.lex_state = 956}, - [41] = {.lex_state = 956}, - [42] = {.lex_state = 956}, - [43] = {.lex_state = 956}, - [44] = {.lex_state = 956}, - [45] = {.lex_state = 956}, - [46] = {.lex_state = 956}, - [47] = {.lex_state = 956}, - [48] = {.lex_state = 956}, - [49] = {.lex_state = 956}, - [50] = {.lex_state = 956}, - [51] = {.lex_state = 956}, - [52] = {.lex_state = 956}, - [53] = {.lex_state = 956}, - [54] = {.lex_state = 31}, - [55] = {.lex_state = 31}, - [56] = {.lex_state = 31}, - [57] = {.lex_state = 31}, - [58] = {.lex_state = 31}, - [59] = {.lex_state = 956}, - [60] = {.lex_state = 31}, - [61] = {.lex_state = 31}, - [62] = {.lex_state = 31}, - [63] = {.lex_state = 31}, - [64] = {.lex_state = 956}, - [65] = {.lex_state = 31}, - [66] = {.lex_state = 31}, - [67] = {.lex_state = 31}, - [68] = {.lex_state = 31}, - [69] = {.lex_state = 31}, - [70] = {.lex_state = 31}, - [71] = {.lex_state = 31}, - [72] = {.lex_state = 31}, - [73] = {.lex_state = 31}, - [74] = {.lex_state = 31}, - [75] = {.lex_state = 31}, - [76] = {.lex_state = 31}, - [77] = {.lex_state = 31}, - [78] = {.lex_state = 31}, - [79] = {.lex_state = 31}, - [80] = {.lex_state = 31}, - [81] = {.lex_state = 31}, - [82] = {.lex_state = 31}, - [83] = {.lex_state = 31}, - [84] = {.lex_state = 31}, - [85] = {.lex_state = 31}, - [86] = {.lex_state = 31}, - [87] = {.lex_state = 31}, - [88] = {.lex_state = 31}, - [89] = {.lex_state = 31}, - [90] = {.lex_state = 31}, - [91] = {.lex_state = 31}, - [92] = {.lex_state = 31}, - [93] = {.lex_state = 31}, - [94] = {.lex_state = 31}, - [95] = {.lex_state = 956}, - [96] = {.lex_state = 956}, - [97] = {.lex_state = 956}, - [98] = {.lex_state = 31}, - [99] = {.lex_state = 956}, - [100] = {.lex_state = 956}, - [101] = {.lex_state = 956}, - [102] = {.lex_state = 956}, - [103] = {.lex_state = 956}, - [104] = {.lex_state = 956}, - [105] = {.lex_state = 956}, - [106] = {.lex_state = 956}, - [107] = {.lex_state = 956}, - [108] = {.lex_state = 956}, - [109] = {.lex_state = 956}, - [110] = {.lex_state = 956}, - [111] = {.lex_state = 956}, - [112] = {.lex_state = 956}, - [113] = {.lex_state = 956}, - [114] = {.lex_state = 956}, - [115] = {.lex_state = 956}, - [116] = {.lex_state = 956}, - [117] = {.lex_state = 956}, - [118] = {.lex_state = 956}, - [119] = {.lex_state = 956}, - [120] = {.lex_state = 956}, - [121] = {.lex_state = 956}, - [122] = {.lex_state = 956}, - [123] = {.lex_state = 956}, - [124] = {.lex_state = 956}, - [125] = {.lex_state = 956}, - [126] = {.lex_state = 956}, - [127] = {.lex_state = 956}, - [128] = {.lex_state = 956}, - [129] = {.lex_state = 956}, - [130] = {.lex_state = 956}, - [131] = {.lex_state = 956}, - [132] = {.lex_state = 956}, - [133] = {.lex_state = 956}, - [134] = {.lex_state = 101}, - [135] = {.lex_state = 101}, - [136] = {.lex_state = 101}, - [137] = {.lex_state = 100}, - [138] = {.lex_state = 100}, - [139] = {.lex_state = 100}, - [140] = {.lex_state = 100}, - [141] = {.lex_state = 100}, - [142] = {.lex_state = 101}, - [143] = {.lex_state = 101}, - [144] = {.lex_state = 101}, - [145] = {.lex_state = 102}, - [146] = {.lex_state = 102}, - [147] = {.lex_state = 204}, - [148] = {.lex_state = 204}, - [149] = {.lex_state = 204}, - [150] = {.lex_state = 204}, - [151] = {.lex_state = 204}, - [152] = {.lex_state = 204}, - [153] = {.lex_state = 204}, - [154] = {.lex_state = 204}, - [155] = {.lex_state = 204}, - [156] = {.lex_state = 204}, - [157] = {.lex_state = 204}, - [158] = {.lex_state = 204}, - [159] = {.lex_state = 204}, - [160] = {.lex_state = 204}, - [161] = {.lex_state = 204}, - [162] = {.lex_state = 204}, - [163] = {.lex_state = 204}, - [164] = {.lex_state = 204}, - [165] = {.lex_state = 204}, - [166] = {.lex_state = 204}, - [167] = {.lex_state = 48}, - [168] = {.lex_state = 48}, - [169] = {.lex_state = 48}, - [170] = {.lex_state = 48}, - [171] = {.lex_state = 48}, - [172] = {.lex_state = 959}, - [173] = {.lex_state = 48}, - [174] = {.lex_state = 48}, - [175] = {.lex_state = 48}, - [176] = {.lex_state = 48}, - [177] = {.lex_state = 48}, - [178] = {.lex_state = 48}, - [179] = {.lex_state = 48}, - [180] = {.lex_state = 48}, - [181] = {.lex_state = 48}, - [182] = {.lex_state = 263}, - [183] = {.lex_state = 240}, - [184] = {.lex_state = 263}, - [185] = {.lex_state = 242}, - [186] = {.lex_state = 261}, - [187] = {.lex_state = 264}, - [188] = {.lex_state = 264}, - [189] = {.lex_state = 264}, - [190] = {.lex_state = 264}, - [191] = {.lex_state = 244}, - [192] = {.lex_state = 228}, - [193] = {.lex_state = 244}, - [194] = {.lex_state = 245}, - [195] = {.lex_state = 262}, - [196] = {.lex_state = 230}, - [197] = {.lex_state = 261}, - [198] = {.lex_state = 262}, - [199] = {.lex_state = 264}, - [200] = {.lex_state = 264}, - [201] = {.lex_state = 245}, - [202] = {.lex_state = 273}, - [203] = {.lex_state = 243}, - [204] = {.lex_state = 245}, - [205] = {.lex_state = 245}, - [206] = {.lex_state = 241}, - [207] = {.lex_state = 273}, - [208] = {.lex_state = 245}, - [209] = {.lex_state = 31}, - [210] = {.lex_state = 31}, - [211] = {.lex_state = 31}, - [212] = {.lex_state = 31}, - [213] = {.lex_state = 233}, - [214] = {.lex_state = 232}, - [215] = {.lex_state = 262}, - [216] = {.lex_state = 273}, - [217] = {.lex_state = 232}, - [218] = {.lex_state = 262}, - [219] = {.lex_state = 262}, - [220] = {.lex_state = 262}, - [221] = {.lex_state = 231}, - [222] = {.lex_state = 246}, - [223] = {.lex_state = 956}, - [224] = {.lex_state = 286}, - [225] = {.lex_state = 273}, - [226] = {.lex_state = 233}, - [227] = {.lex_state = 273}, - [228] = {.lex_state = 938}, - [229] = {.lex_state = 31}, - [230] = {.lex_state = 286}, - [231] = {.lex_state = 229}, - [232] = {.lex_state = 246}, - [233] = {.lex_state = 956}, - [234] = {.lex_state = 956}, - [235] = {.lex_state = 233}, - [236] = {.lex_state = 233}, - [237] = {.lex_state = 233}, - [238] = {.lex_state = 956}, - [239] = {.lex_state = 956}, - [240] = {.lex_state = 956}, - [241] = {.lex_state = 286}, - [242] = {.lex_state = 37}, - [243] = {.lex_state = 274}, - [244] = {.lex_state = 274}, - [245] = {.lex_state = 274}, - [246] = {.lex_state = 274}, - [247] = {.lex_state = 234}, - [248] = {.lex_state = 234}, - [249] = {.lex_state = 37}, - [250] = {.lex_state = 247}, - [251] = {.lex_state = 247}, - [252] = {.lex_state = 247}, - [253] = {.lex_state = 247}, - [254] = {.lex_state = 283}, - [255] = {.lex_state = 275}, - [256] = {.lex_state = 37}, - [257] = {.lex_state = 956}, - [258] = {.lex_state = 37}, - [259] = {.lex_state = 37}, - [260] = {.lex_state = 37}, - [261] = {.lex_state = 37}, - [262] = {.lex_state = 274}, - [263] = {.lex_state = 37}, - [264] = {.lex_state = 37}, - [265] = {.lex_state = 37}, - [266] = {.lex_state = 37}, - [267] = {.lex_state = 272}, - [268] = {.lex_state = 37}, - [269] = {.lex_state = 37}, - [270] = {.lex_state = 37}, - [271] = {.lex_state = 37}, - [272] = {.lex_state = 37}, - [273] = {.lex_state = 37}, - [274] = {.lex_state = 37}, - [275] = {.lex_state = 37}, - [276] = {.lex_state = 37}, - [277] = {.lex_state = 37}, - [278] = {.lex_state = 37}, - [279] = {.lex_state = 37}, - [280] = {.lex_state = 31}, - [281] = {.lex_state = 956}, - [282] = {.lex_state = 956}, - [283] = {.lex_state = 31}, - [284] = {.lex_state = 956}, - [285] = {.lex_state = 247}, - [286] = {.lex_state = 247}, - [287] = {.lex_state = 286}, - [288] = {.lex_state = 286}, - [289] = {.lex_state = 37}, - [290] = {.lex_state = 235}, - [291] = {.lex_state = 281}, - [292] = {.lex_state = 273}, - [293] = {.lex_state = 281}, - [294] = {.lex_state = 285}, - [295] = {.lex_state = 248}, - [296] = {.lex_state = 956}, - [297] = {.lex_state = 235}, - [298] = {.lex_state = 296}, - [299] = {.lex_state = 280}, - [300] = {.lex_state = 280}, - [301] = {.lex_state = 280}, - [302] = {.lex_state = 280}, - [303] = {.lex_state = 280}, - [304] = {.lex_state = 280}, - [305] = {.lex_state = 280}, - [306] = {.lex_state = 273}, - [307] = {.lex_state = 280}, - [308] = {.lex_state = 235}, - [309] = {.lex_state = 280}, - [310] = {.lex_state = 280}, - [311] = {.lex_state = 280}, - [312] = {.lex_state = 235}, - [313] = {.lex_state = 280}, - [314] = {.lex_state = 280}, - [315] = {.lex_state = 272}, - [316] = {.lex_state = 956}, - [317] = {.lex_state = 272}, - [318] = {.lex_state = 280}, - [319] = {.lex_state = 284}, - [320] = {.lex_state = 956}, - [321] = {.lex_state = 284}, - [322] = {.lex_state = 284}, - [323] = {.lex_state = 280}, - [324] = {.lex_state = 956}, - [325] = {.lex_state = 280}, - [326] = {.lex_state = 280}, - [327] = {.lex_state = 280}, - [328] = {.lex_state = 280}, - [329] = {.lex_state = 280}, - [330] = {.lex_state = 235}, - [331] = {.lex_state = 956}, - [332] = {.lex_state = 235}, - [333] = {.lex_state = 280}, - [334] = {.lex_state = 237}, - [335] = {.lex_state = 280}, - [336] = {.lex_state = 280}, - [337] = {.lex_state = 280}, - [338] = {.lex_state = 284}, - [339] = {.lex_state = 284}, + [1] = {.lex_state = 926}, + [2] = {.lex_state = 948}, + [3] = {.lex_state = 948}, + [4] = {.lex_state = 948}, + [5] = {.lex_state = 948}, + [6] = {.lex_state = 948}, + [7] = {.lex_state = 948}, + [8] = {.lex_state = 948}, + [9] = {.lex_state = 948}, + [10] = {.lex_state = 948}, + [11] = {.lex_state = 948}, + [12] = {.lex_state = 948}, + [13] = {.lex_state = 948}, + [14] = {.lex_state = 948}, + [15] = {.lex_state = 948}, + [16] = {.lex_state = 948}, + [17] = {.lex_state = 948}, + [18] = {.lex_state = 948}, + [19] = {.lex_state = 948}, + [20] = {.lex_state = 948}, + [21] = {.lex_state = 948}, + [22] = {.lex_state = 948}, + [23] = {.lex_state = 948}, + [24] = {.lex_state = 948}, + [25] = {.lex_state = 948}, + [26] = {.lex_state = 948}, + [27] = {.lex_state = 948}, + [28] = {.lex_state = 948}, + [29] = {.lex_state = 948}, + [30] = {.lex_state = 948}, + [31] = {.lex_state = 948}, + [32] = {.lex_state = 948}, + [33] = {.lex_state = 948}, + [34] = {.lex_state = 948}, + [35] = {.lex_state = 948}, + [36] = {.lex_state = 948}, + [37] = {.lex_state = 948}, + [38] = {.lex_state = 948}, + [39] = {.lex_state = 948}, + [40] = {.lex_state = 944}, + [41] = {.lex_state = 944}, + [42] = {.lex_state = 944}, + [43] = {.lex_state = 944}, + [44] = {.lex_state = 944}, + [45] = {.lex_state = 944}, + [46] = {.lex_state = 944}, + [47] = {.lex_state = 944}, + [48] = {.lex_state = 944}, + [49] = {.lex_state = 944}, + [50] = {.lex_state = 944}, + [51] = {.lex_state = 944}, + [52] = {.lex_state = 944}, + [53] = {.lex_state = 944}, + [54] = {.lex_state = 944}, + [55] = {.lex_state = 944}, + [56] = {.lex_state = 944}, + [57] = {.lex_state = 944}, + [58] = {.lex_state = 944}, + [59] = {.lex_state = 944}, + [60] = {.lex_state = 944}, + [61] = {.lex_state = 944}, + [62] = {.lex_state = 944}, + [63] = {.lex_state = 944}, + [64] = {.lex_state = 944}, + [65] = {.lex_state = 944}, + [66] = {.lex_state = 944}, + [67] = {.lex_state = 944}, + [68] = {.lex_state = 944}, + [69] = {.lex_state = 944}, + [70] = {.lex_state = 944}, + [71] = {.lex_state = 944}, + [72] = {.lex_state = 944}, + [73] = {.lex_state = 30}, + [74] = {.lex_state = 30}, + [75] = {.lex_state = 30}, + [76] = {.lex_state = 30}, + [77] = {.lex_state = 30}, + [78] = {.lex_state = 30}, + [79] = {.lex_state = 30}, + [80] = {.lex_state = 30}, + [81] = {.lex_state = 30}, + [82] = {.lex_state = 30}, + [83] = {.lex_state = 30}, + [84] = {.lex_state = 30}, + [85] = {.lex_state = 30}, + [86] = {.lex_state = 30}, + [87] = {.lex_state = 30}, + [88] = {.lex_state = 30}, + [89] = {.lex_state = 30}, + [90] = {.lex_state = 30}, + [91] = {.lex_state = 30}, + [92] = {.lex_state = 30}, + [93] = {.lex_state = 30}, + [94] = {.lex_state = 30}, + [95] = {.lex_state = 944}, + [96] = {.lex_state = 30}, + [97] = {.lex_state = 30}, + [98] = {.lex_state = 30}, + [99] = {.lex_state = 30}, + [100] = {.lex_state = 30}, + [101] = {.lex_state = 30}, + [102] = {.lex_state = 944}, + [103] = {.lex_state = 30}, + [104] = {.lex_state = 30}, + [105] = {.lex_state = 30}, + [106] = {.lex_state = 30}, + [107] = {.lex_state = 30}, + [108] = {.lex_state = 30}, + [109] = {.lex_state = 30}, + [110] = {.lex_state = 30}, + [111] = {.lex_state = 30}, + [112] = {.lex_state = 944}, + [113] = {.lex_state = 944}, + [114] = {.lex_state = 30}, + [115] = {.lex_state = 30}, + [116] = {.lex_state = 944}, + [117] = {.lex_state = 944}, + [118] = {.lex_state = 30}, + [119] = {.lex_state = 944}, + [120] = {.lex_state = 944}, + [121] = {.lex_state = 944}, + [122] = {.lex_state = 944}, + [123] = {.lex_state = 944}, + [124] = {.lex_state = 944}, + [125] = {.lex_state = 944}, + [126] = {.lex_state = 944}, + [127] = {.lex_state = 944}, + [128] = {.lex_state = 944}, + [129] = {.lex_state = 944}, + [130] = {.lex_state = 944}, + [131] = {.lex_state = 944}, + [132] = {.lex_state = 944}, + [133] = {.lex_state = 944}, + [134] = {.lex_state = 944}, + [135] = {.lex_state = 944}, + [136] = {.lex_state = 944}, + [137] = {.lex_state = 944}, + [138] = {.lex_state = 944}, + [139] = {.lex_state = 944}, + [140] = {.lex_state = 944}, + [141] = {.lex_state = 944}, + [142] = {.lex_state = 944}, + [143] = {.lex_state = 944}, + [144] = {.lex_state = 944}, + [145] = {.lex_state = 944}, + [146] = {.lex_state = 944}, + [147] = {.lex_state = 944}, + [148] = {.lex_state = 944}, + [149] = {.lex_state = 944}, + [150] = {.lex_state = 944}, + [151] = {.lex_state = 944}, + [152] = {.lex_state = 944}, + [153] = {.lex_state = 944}, + [154] = {.lex_state = 944}, + [155] = {.lex_state = 944}, + [156] = {.lex_state = 944}, + [157] = {.lex_state = 944}, + [158] = {.lex_state = 944}, + [159] = {.lex_state = 944}, + [160] = {.lex_state = 944}, + [161] = {.lex_state = 97}, + [162] = {.lex_state = 97}, + [163] = {.lex_state = 97}, + [164] = {.lex_state = 96}, + [165] = {.lex_state = 96}, + [166] = {.lex_state = 96}, + [167] = {.lex_state = 96}, + [168] = {.lex_state = 96}, + [169] = {.lex_state = 97}, + [170] = {.lex_state = 97}, + [171] = {.lex_state = 97}, + [172] = {.lex_state = 98}, + [173] = {.lex_state = 98}, + [174] = {.lex_state = 197}, + [175] = {.lex_state = 197}, + [176] = {.lex_state = 197}, + [177] = {.lex_state = 197}, + [178] = {.lex_state = 197}, + [179] = {.lex_state = 197}, + [180] = {.lex_state = 197}, + [181] = {.lex_state = 197}, + [182] = {.lex_state = 197}, + [183] = {.lex_state = 197}, + [184] = {.lex_state = 197}, + [185] = {.lex_state = 197}, + [186] = {.lex_state = 197}, + [187] = {.lex_state = 197}, + [188] = {.lex_state = 197}, + [189] = {.lex_state = 197}, + [190] = {.lex_state = 197}, + [191] = {.lex_state = 197}, + [192] = {.lex_state = 197}, + [193] = {.lex_state = 197}, + [194] = {.lex_state = 948}, + [195] = {.lex_state = 948}, + [196] = {.lex_state = 47}, + [197] = {.lex_state = 47}, + [198] = {.lex_state = 47}, + [199] = {.lex_state = 948}, + [200] = {.lex_state = 47}, + [201] = {.lex_state = 47}, + [202] = {.lex_state = 47}, + [203] = {.lex_state = 47}, + [204] = {.lex_state = 47}, + [205] = {.lex_state = 47}, + [206] = {.lex_state = 47}, + [207] = {.lex_state = 47}, + [208] = {.lex_state = 47}, + [209] = {.lex_state = 47}, + [210] = {.lex_state = 47}, + [211] = {.lex_state = 256}, + [212] = {.lex_state = 256}, + [213] = {.lex_state = 257}, + [214] = {.lex_state = 233}, + [215] = {.lex_state = 254}, + [216] = {.lex_state = 236}, + [217] = {.lex_state = 257}, + [218] = {.lex_state = 238}, + [219] = {.lex_state = 239}, + [220] = {.lex_state = 257}, + [221] = {.lex_state = 257}, + [222] = {.lex_state = 255}, + [223] = {.lex_state = 255}, + [224] = {.lex_state = 238}, + [225] = {.lex_state = 257}, + [226] = {.lex_state = 257}, + [227] = {.lex_state = 224}, + [228] = {.lex_state = 221}, + [229] = {.lex_state = 254}, + [230] = {.lex_state = 239}, + [231] = {.lex_state = 255}, + [232] = {.lex_state = 255}, + [233] = {.lex_state = 226}, + [234] = {.lex_state = 30}, + [235] = {.lex_state = 266}, + [236] = {.lex_state = 30}, + [237] = {.lex_state = 239}, + [238] = {.lex_state = 266}, + [239] = {.lex_state = 239}, + [240] = {.lex_state = 255}, + [241] = {.lex_state = 226}, + [242] = {.lex_state = 239}, + [243] = {.lex_state = 30}, + [244] = {.lex_state = 237}, + [245] = {.lex_state = 234}, + [246] = {.lex_state = 266}, + [247] = {.lex_state = 227}, + [248] = {.lex_state = 30}, + [249] = {.lex_state = 255}, + [250] = {.lex_state = 926}, + [251] = {.lex_state = 266}, + [252] = {.lex_state = 225}, + [253] = {.lex_state = 227}, + [254] = {.lex_state = 944}, + [255] = {.lex_state = 227}, + [256] = {.lex_state = 227}, + [257] = {.lex_state = 227}, + [258] = {.lex_state = 944}, + [259] = {.lex_state = 240}, + [260] = {.lex_state = 944}, + [261] = {.lex_state = 944}, + [262] = {.lex_state = 240}, + [263] = {.lex_state = 944}, + [264] = {.lex_state = 222}, + [265] = {.lex_state = 944}, + [266] = {.lex_state = 944}, + [267] = {.lex_state = 944}, + [268] = {.lex_state = 279}, + [269] = {.lex_state = 279}, + [270] = {.lex_state = 279}, + [271] = {.lex_state = 30}, + [272] = {.lex_state = 266}, + [273] = {.lex_state = 944}, + [274] = {.lex_state = 228}, + [275] = {.lex_state = 241}, + [276] = {.lex_state = 241}, + [277] = {.lex_state = 241}, + [278] = {.lex_state = 944}, + [279] = {.lex_state = 944}, + [280] = {.lex_state = 36}, + [281] = {.lex_state = 944}, + [282] = {.lex_state = 276}, + [283] = {.lex_state = 268}, + [284] = {.lex_state = 228}, + [285] = {.lex_state = 36}, + [286] = {.lex_state = 267}, + [287] = {.lex_state = 944}, + [288] = {.lex_state = 36}, + [289] = {.lex_state = 36}, + [290] = {.lex_state = 36}, + [291] = {.lex_state = 36}, + [292] = {.lex_state = 36}, + [293] = {.lex_state = 241}, + [294] = {.lex_state = 36}, + [295] = {.lex_state = 36}, + [296] = {.lex_state = 241}, + [297] = {.lex_state = 36}, + [298] = {.lex_state = 36}, + [299] = {.lex_state = 36}, + [300] = {.lex_state = 30}, + [301] = {.lex_state = 36}, + [302] = {.lex_state = 36}, + [303] = {.lex_state = 36}, + [304] = {.lex_state = 36}, + [305] = {.lex_state = 36}, + [306] = {.lex_state = 36}, + [307] = {.lex_state = 36}, + [308] = {.lex_state = 36}, + [309] = {.lex_state = 265}, + [310] = {.lex_state = 36}, + [311] = {.lex_state = 36}, + [312] = {.lex_state = 36}, + [313] = {.lex_state = 36}, + [314] = {.lex_state = 944}, + [315] = {.lex_state = 279}, + [316] = {.lex_state = 279}, + [317] = {.lex_state = 267}, + [318] = {.lex_state = 267}, + [319] = {.lex_state = 267}, + [320] = {.lex_state = 267}, + [321] = {.lex_state = 241}, + [322] = {.lex_state = 229}, + [323] = {.lex_state = 273}, + [324] = {.lex_state = 273}, + [325] = {.lex_state = 273}, + [326] = {.lex_state = 273}, + [327] = {.lex_state = 273}, + [328] = {.lex_state = 273}, + [329] = {.lex_state = 273}, + [330] = {.lex_state = 273}, + [331] = {.lex_state = 273}, + [332] = {.lex_state = 273}, + [333] = {.lex_state = 273}, + [334] = {.lex_state = 273}, + [335] = {.lex_state = 273}, + [336] = {.lex_state = 273}, + [337] = {.lex_state = 273}, + [338] = {.lex_state = 273}, + [339] = {.lex_state = 273}, [340] = {.lex_state = 273}, - [341] = {.lex_state = 956}, - [342] = {.lex_state = 280}, - [343] = {.lex_state = 280}, - [344] = {.lex_state = 280}, - [345] = {.lex_state = 280}, - [346] = {.lex_state = 293}, - [347] = {.lex_state = 238}, - [348] = {.lex_state = 282}, - [349] = {.lex_state = 205}, - [350] = {.lex_state = 293}, - [351] = {.lex_state = 293}, - [352] = {.lex_state = 293}, - [353] = {.lex_state = 293}, - [354] = {.lex_state = 282}, - [355] = {.lex_state = 37}, - [356] = {.lex_state = 293}, - [357] = {.lex_state = 293}, - [358] = {.lex_state = 293}, - [359] = {.lex_state = 293}, - [360] = {.lex_state = 271}, - [361] = {.lex_state = 282}, - [362] = {.lex_state = 282}, - [363] = {.lex_state = 37}, - [364] = {.lex_state = 282}, - [365] = {.lex_state = 282}, - [366] = {.lex_state = 293}, - [367] = {.lex_state = 293}, - [368] = {.lex_state = 293}, - [369] = {.lex_state = 225}, - [370] = {.lex_state = 294}, - [371] = {.lex_state = 293}, - [372] = {.lex_state = 956}, - [373] = {.lex_state = 236}, - [374] = {.lex_state = 293}, - [375] = {.lex_state = 293}, - [376] = {.lex_state = 271}, - [377] = {.lex_state = 293}, - [378] = {.lex_state = 293}, - [379] = {.lex_state = 293}, - [380] = {.lex_state = 293}, - [381] = {.lex_state = 280}, - [382] = {.lex_state = 282}, - [383] = {.lex_state = 282}, - [384] = {.lex_state = 282}, - [385] = {.lex_state = 282}, - [386] = {.lex_state = 271}, - [387] = {.lex_state = 293}, + [341] = {.lex_state = 273}, + [342] = {.lex_state = 273}, + [343] = {.lex_state = 273}, + [344] = {.lex_state = 235}, + [345] = {.lex_state = 229}, + [346] = {.lex_state = 273}, + [347] = {.lex_state = 230}, + [348] = {.lex_state = 944}, + [349] = {.lex_state = 265}, + [350] = {.lex_state = 265}, + [351] = {.lex_state = 277}, + [352] = {.lex_state = 273}, + [353] = {.lex_state = 277}, + [354] = {.lex_state = 277}, + [355] = {.lex_state = 229}, + [356] = {.lex_state = 273}, + [357] = {.lex_state = 273}, + [358] = {.lex_state = 944}, + [359] = {.lex_state = 229}, + [360] = {.lex_state = 944}, + [361] = {.lex_state = 944}, + [362] = {.lex_state = 273}, + [363] = {.lex_state = 273}, + [364] = {.lex_state = 273}, + [365] = {.lex_state = 277}, + [366] = {.lex_state = 277}, + [367] = {.lex_state = 274}, + [368] = {.lex_state = 289}, + [369] = {.lex_state = 266}, + [370] = {.lex_state = 229}, + [371] = {.lex_state = 274}, + [372] = {.lex_state = 278}, + [373] = {.lex_state = 229}, + [374] = {.lex_state = 266}, + [375] = {.lex_state = 266}, + [376] = {.lex_state = 944}, + [377] = {.lex_state = 279}, + [378] = {.lex_state = 198}, + [379] = {.lex_state = 275}, + [380] = {.lex_state = 218}, + [381] = {.lex_state = 275}, + [382] = {.lex_state = 286}, + [383] = {.lex_state = 275}, + [384] = {.lex_state = 275}, + [385] = {.lex_state = 275}, + [386] = {.lex_state = 275}, + [387] = {.lex_state = 275}, [388] = {.lex_state = 286}, - [389] = {.lex_state = 294}, - [390] = {.lex_state = 293}, - [391] = {.lex_state = 282}, - [392] = {.lex_state = 271}, - [393] = {.lex_state = 238}, - [394] = {.lex_state = 286}, - [395] = {.lex_state = 286}, - [396] = {.lex_state = 271}, - [397] = {.lex_state = 293}, - [398] = {.lex_state = 282}, - [399] = {.lex_state = 205}, - [400] = {.lex_state = 293}, - [401] = {.lex_state = 293}, - [402] = {.lex_state = 282}, - [403] = {.lex_state = 293}, - [404] = {.lex_state = 960}, - [405] = {.lex_state = 282}, - [406] = {.lex_state = 205}, - [407] = {.lex_state = 282}, - [408] = {.lex_state = 293}, - [409] = {.lex_state = 282}, - [410] = {.lex_state = 293}, - [411] = {.lex_state = 293}, - [412] = {.lex_state = 280}, - [413] = {.lex_state = 239}, - [414] = {.lex_state = 295}, - [415] = {.lex_state = 295}, - [416] = {.lex_state = 295}, - [417] = {.lex_state = 295}, - [418] = {.lex_state = 239}, - [419] = {.lex_state = 239}, - [420] = {.lex_state = 960}, - [421] = {.lex_state = 239}, - [422] = {.lex_state = 239}, - [423] = {.lex_state = 239}, - [424] = {.lex_state = 295}, - [425] = {.lex_state = 295}, - [426] = {.lex_state = 295}, - [427] = {.lex_state = 295}, - [428] = {.lex_state = 295}, - [429] = {.lex_state = 239}, - [430] = {.lex_state = 295}, - [431] = {.lex_state = 272}, - [432] = {.lex_state = 272}, - [433] = {.lex_state = 272}, - [434] = {.lex_state = 293}, - [435] = {.lex_state = 293}, - [436] = {.lex_state = 362}, - [437] = {.lex_state = 295}, - [438] = {.lex_state = 362}, - [439] = {.lex_state = 362}, - [440] = {.lex_state = 278}, - [441] = {.lex_state = 278}, - [442] = {.lex_state = 278}, - [443] = {.lex_state = 278}, - [444] = {.lex_state = 278}, - [445] = {.lex_state = 362}, - [446] = {.lex_state = 239}, - [447] = {.lex_state = 239}, - [448] = {.lex_state = 226}, - [449] = {.lex_state = 226}, - [450] = {.lex_state = 295}, - [451] = {.lex_state = 295}, - [452] = {.lex_state = 295}, - [453] = {.lex_state = 295}, - [454] = {.lex_state = 239}, - [455] = {.lex_state = 239}, - [456] = {.lex_state = 960}, - [457] = {.lex_state = 239}, - [458] = {.lex_state = 239}, - [459] = {.lex_state = 239}, - [460] = {.lex_state = 239}, - [461] = {.lex_state = 277}, - [462] = {.lex_state = 279}, - [463] = {.lex_state = 295}, - [464] = {.lex_state = 362}, - [465] = {.lex_state = 291}, - [466] = {.lex_state = 327}, - [467] = {.lex_state = 270}, - [468] = {.lex_state = 239}, - [469] = {.lex_state = 327}, - [470] = {.lex_state = 327}, - [471] = {.lex_state = 327}, - [472] = {.lex_state = 361}, - [473] = {.lex_state = 291}, - [474] = {.lex_state = 227}, - [475] = {.lex_state = 291}, - [476] = {.lex_state = 291}, - [477] = {.lex_state = 291}, - [478] = {.lex_state = 361}, - [479] = {.lex_state = 361}, - [480] = {.lex_state = 361}, + [389] = {.lex_state = 286}, + [390] = {.lex_state = 286}, + [391] = {.lex_state = 287}, + [392] = {.lex_state = 275}, + [393] = {.lex_state = 275}, + [394] = {.lex_state = 275}, + [395] = {.lex_state = 287}, + [396] = {.lex_state = 275}, + [397] = {.lex_state = 275}, + [398] = {.lex_state = 275}, + [399] = {.lex_state = 264}, + [400] = {.lex_state = 949}, + [401] = {.lex_state = 264}, + [402] = {.lex_state = 223}, + [403] = {.lex_state = 264}, + [404] = {.lex_state = 36}, + [405] = {.lex_state = 275}, + [406] = {.lex_state = 286}, + [407] = {.lex_state = 286}, + [408] = {.lex_state = 264}, + [409] = {.lex_state = 264}, + [410] = {.lex_state = 286}, + [411] = {.lex_state = 198}, + [412] = {.lex_state = 286}, + [413] = {.lex_state = 198}, + [414] = {.lex_state = 231}, + [415] = {.lex_state = 36}, + [416] = {.lex_state = 286}, + [417] = {.lex_state = 286}, + [418] = {.lex_state = 275}, + [419] = {.lex_state = 286}, + [420] = {.lex_state = 275}, + [421] = {.lex_state = 286}, + [422] = {.lex_state = 286}, + [423] = {.lex_state = 286}, + [424] = {.lex_state = 286}, + [425] = {.lex_state = 273}, + [426] = {.lex_state = 273}, + [427] = {.lex_state = 286}, + [428] = {.lex_state = 279}, + [429] = {.lex_state = 286}, + [430] = {.lex_state = 286}, + [431] = {.lex_state = 286}, + [432] = {.lex_state = 286}, + [433] = {.lex_state = 279}, + [434] = {.lex_state = 286}, + [435] = {.lex_state = 286}, + [436] = {.lex_state = 286}, + [437] = {.lex_state = 286}, + [438] = {.lex_state = 286}, + [439] = {.lex_state = 286}, + [440] = {.lex_state = 286}, + [441] = {.lex_state = 286}, + [442] = {.lex_state = 231}, + [443] = {.lex_state = 288}, + [444] = {.lex_state = 232}, + [445] = {.lex_state = 288}, + [446] = {.lex_state = 288}, + [447] = {.lex_state = 949}, + [448] = {.lex_state = 288}, + [449] = {.lex_state = 288}, + [450] = {.lex_state = 232}, + [451] = {.lex_state = 232}, + [452] = {.lex_state = 949}, + [453] = {.lex_state = 232}, + [454] = {.lex_state = 232}, + [455] = {.lex_state = 288}, + [456] = {.lex_state = 265}, + [457] = {.lex_state = 265}, + [458] = {.lex_state = 265}, + [459] = {.lex_state = 286}, + [460] = {.lex_state = 286}, + [461] = {.lex_state = 355}, + [462] = {.lex_state = 355}, + [463] = {.lex_state = 355}, + [464] = {.lex_state = 355}, + [465] = {.lex_state = 271}, + [466] = {.lex_state = 271}, + [467] = {.lex_state = 271}, + [468] = {.lex_state = 271}, + [469] = {.lex_state = 271}, + [470] = {.lex_state = 355}, + [471] = {.lex_state = 219}, + [472] = {.lex_state = 219}, + [473] = {.lex_state = 288}, + [474] = {.lex_state = 288}, + [475] = {.lex_state = 288}, + [476] = {.lex_state = 288}, + [477] = {.lex_state = 232}, + [478] = {.lex_state = 232}, + [479] = {.lex_state = 232}, + [480] = {.lex_state = 232}, [481] = {.lex_state = 270}, - [482] = {.lex_state = 280}, - [483] = {.lex_state = 239}, - [484] = {.lex_state = 280}, - [485] = {.lex_state = 327}, - [486] = {.lex_state = 327}, - [487] = {.lex_state = 361}, - [488] = {.lex_state = 227}, - [489] = {.lex_state = 227}, - [490] = {.lex_state = 227}, - [491] = {.lex_state = 227}, - [492] = {.lex_state = 227}, - [493] = {.lex_state = 227}, - [494] = {.lex_state = 227}, - [495] = {.lex_state = 327}, - [496] = {.lex_state = 290}, - [497] = {.lex_state = 227}, - [498] = {.lex_state = 327}, - [499] = {.lex_state = 327}, - [500] = {.lex_state = 276}, - [501] = {.lex_state = 276}, - [502] = {.lex_state = 292}, - [503] = {.lex_state = 327}, - [504] = {.lex_state = 327}, - [505] = {.lex_state = 227}, - [506] = {.lex_state = 227}, - [507] = {.lex_state = 227}, - [508] = {.lex_state = 227}, - [509] = {.lex_state = 227}, - [510] = {.lex_state = 227}, - [511] = {.lex_state = 327}, - [512] = {.lex_state = 280}, - [513] = {.lex_state = 48}, - [514] = {.lex_state = 327}, - [515] = {.lex_state = 327}, - [516] = {.lex_state = 327}, - [517] = {.lex_state = 327}, - [518] = {.lex_state = 327}, - [519] = {.lex_state = 327}, - [520] = {.lex_state = 327}, - [521] = {.lex_state = 327}, - [522] = {.lex_state = 327}, - [523] = {.lex_state = 327}, - [524] = {.lex_state = 327}, - [525] = {.lex_state = 327}, - [526] = {.lex_state = 327}, - [527] = {.lex_state = 327}, - [528] = {.lex_state = 327}, - [529] = {.lex_state = 327}, - [530] = {.lex_state = 327}, - [531] = {.lex_state = 327}, - [532] = {.lex_state = 327}, - [533] = {.lex_state = 327}, - [534] = {.lex_state = 327}, - [535] = {.lex_state = 327}, - [536] = {.lex_state = 327}, - [537] = {.lex_state = 327}, - [538] = {.lex_state = 327}, - [539] = {.lex_state = 327}, - [540] = {.lex_state = 327}, - [541] = {.lex_state = 327}, - [542] = {.lex_state = 327}, - [543] = {.lex_state = 327}, - [544] = {.lex_state = 327}, - [545] = {.lex_state = 327}, - [546] = {.lex_state = 327}, - [547] = {.lex_state = 327}, - [548] = {.lex_state = 327}, - [549] = {.lex_state = 327}, - [550] = {.lex_state = 293}, - [551] = {.lex_state = 48}, - [552] = {.lex_state = 293}, - [553] = {.lex_state = 327}, - [554] = {.lex_state = 48}, - [555] = {.lex_state = 327}, - [556] = {.lex_state = 327}, - [557] = {.lex_state = 327}, - [558] = {.lex_state = 327}, - [559] = {.lex_state = 327}, - [560] = {.lex_state = 327}, - [561] = {.lex_state = 327}, - [562] = {.lex_state = 327}, - [563] = {.lex_state = 327}, - [564] = {.lex_state = 327}, - [565] = {.lex_state = 327}, - [566] = {.lex_state = 327}, - [567] = {.lex_state = 327}, - [568] = {.lex_state = 327}, - [569] = {.lex_state = 327}, - [570] = {.lex_state = 327}, - [571] = {.lex_state = 327}, - [572] = {.lex_state = 327}, - [573] = {.lex_state = 327}, - [574] = {.lex_state = 327}, - [575] = {.lex_state = 327}, - [576] = {.lex_state = 327}, - [577] = {.lex_state = 288}, - [578] = {.lex_state = 327}, - [579] = {.lex_state = 288}, - [580] = {.lex_state = 327}, - [581] = {.lex_state = 327}, - [582] = {.lex_state = 327}, - [583] = {.lex_state = 327}, - [584] = {.lex_state = 327}, - [585] = {.lex_state = 327}, - [586] = {.lex_state = 327}, - [587] = {.lex_state = 227}, - [588] = {.lex_state = 227}, - [589] = {.lex_state = 327}, - [590] = {.lex_state = 293}, - [591] = {.lex_state = 48}, - [592] = {.lex_state = 48}, - [593] = {.lex_state = 48}, - [594] = {.lex_state = 48}, - [595] = {.lex_state = 48}, - [596] = {.lex_state = 48}, - [597] = {.lex_state = 48}, - [598] = {.lex_state = 48}, - [599] = {.lex_state = 48}, - [600] = {.lex_state = 48}, - [601] = {.lex_state = 48}, - [602] = {.lex_state = 48}, - [603] = {.lex_state = 48}, - [604] = {.lex_state = 48}, - [605] = {.lex_state = 48}, - [606] = {.lex_state = 48}, - [607] = {.lex_state = 48}, - [608] = {.lex_state = 48}, - [609] = {.lex_state = 48}, - [610] = {.lex_state = 48}, - [611] = {.lex_state = 48}, - [612] = {.lex_state = 48}, - [613] = {.lex_state = 48}, - [614] = {.lex_state = 48}, - [615] = {.lex_state = 48}, - [616] = {.lex_state = 48}, - [617] = {.lex_state = 48}, - [618] = {.lex_state = 48}, - [619] = {.lex_state = 48}, - [620] = {.lex_state = 48}, - [621] = {.lex_state = 48}, - [622] = {.lex_state = 48}, - [623] = {.lex_state = 48}, - [624] = {.lex_state = 48}, - [625] = {.lex_state = 48}, - [626] = {.lex_state = 48}, - [627] = {.lex_state = 48}, - [628] = {.lex_state = 48}, - [629] = {.lex_state = 48}, - [630] = {.lex_state = 48}, - [631] = {.lex_state = 48}, - [632] = {.lex_state = 48}, - [633] = {.lex_state = 48}, - [634] = {.lex_state = 48}, - [635] = {.lex_state = 48}, - [636] = {.lex_state = 48}, - [637] = {.lex_state = 48}, - [638] = {.lex_state = 48}, - [639] = {.lex_state = 48}, - [640] = {.lex_state = 48}, - [641] = {.lex_state = 48}, - [642] = {.lex_state = 48}, - [643] = {.lex_state = 48}, - [644] = {.lex_state = 48}, - [645] = {.lex_state = 48}, - [646] = {.lex_state = 48}, - [647] = {.lex_state = 48}, - [648] = {.lex_state = 48}, - [649] = {.lex_state = 48}, - [650] = {.lex_state = 48}, - [651] = {.lex_state = 48}, - [652] = {.lex_state = 48}, - [653] = {.lex_state = 48}, - [654] = {.lex_state = 48}, - [655] = {.lex_state = 48}, - [656] = {.lex_state = 48}, - [657] = {.lex_state = 48}, - [658] = {.lex_state = 48}, - [659] = {.lex_state = 48}, - [660] = {.lex_state = 48}, - [661] = {.lex_state = 48}, - [662] = {.lex_state = 48}, - [663] = {.lex_state = 48}, - [664] = {.lex_state = 966}, - [665] = {.lex_state = 966}, - [666] = {.lex_state = 966}, - [667] = {.lex_state = 966}, - [668] = {.lex_state = 966}, - [669] = {.lex_state = 966}, - [670] = {.lex_state = 966}, - [671] = {.lex_state = 966}, - [672] = {.lex_state = 966}, - [673] = {.lex_state = 966}, - [674] = {.lex_state = 966}, - [675] = {.lex_state = 43}, - [676] = {.lex_state = 966}, - [677] = {.lex_state = 966}, - [678] = {.lex_state = 966}, - [679] = {.lex_state = 43}, - [680] = {.lex_state = 966}, - [681] = {.lex_state = 36}, - [682] = {.lex_state = 36}, - [683] = {.lex_state = 36}, - [684] = {.lex_state = 36}, - [685] = {.lex_state = 36}, - [686] = {.lex_state = 36}, - [687] = {.lex_state = 36}, - [688] = {.lex_state = 36}, - [689] = {.lex_state = 36}, - [690] = {.lex_state = 33}, - [691] = {.lex_state = 43}, - [692] = {.lex_state = 43}, - [693] = {.lex_state = 33}, - [694] = {.lex_state = 43}, - [695] = {.lex_state = 43}, - [696] = {.lex_state = 43}, - [697] = {.lex_state = 43}, - [698] = {.lex_state = 43}, - [699] = {.lex_state = 43}, - [700] = {.lex_state = 43}, - [701] = {.lex_state = 43}, - [702] = {.lex_state = 43}, - [703] = {.lex_state = 43}, - [704] = {.lex_state = 43}, - [705] = {.lex_state = 43}, - [706] = {.lex_state = 43}, - [707] = {.lex_state = 43}, - [708] = {.lex_state = 43}, - [709] = {.lex_state = 43}, - [710] = {.lex_state = 43}, - [711] = {.lex_state = 43}, - [712] = {.lex_state = 43}, - [713] = {.lex_state = 43}, - [714] = {.lex_state = 43}, - [715] = {.lex_state = 43}, - [716] = {.lex_state = 43}, - [717] = {.lex_state = 43}, - [718] = {.lex_state = 43}, - [719] = {.lex_state = 43}, - [720] = {.lex_state = 43}, - [721] = {.lex_state = 43}, - [722] = {.lex_state = 43}, - [723] = {.lex_state = 43}, - [724] = {.lex_state = 43}, - [725] = {.lex_state = 43}, - [726] = {.lex_state = 43}, - [727] = {.lex_state = 43}, - [728] = {.lex_state = 43}, - [729] = {.lex_state = 43}, - [730] = {.lex_state = 43}, - [731] = {.lex_state = 43}, - [732] = {.lex_state = 43}, - [733] = {.lex_state = 43}, - [734] = {.lex_state = 43}, - [735] = {.lex_state = 43}, - [736] = {.lex_state = 43}, - [737] = {.lex_state = 43}, - [738] = {.lex_state = 43}, - [739] = {.lex_state = 43}, - [740] = {.lex_state = 43}, - [741] = {.lex_state = 43}, - [742] = {.lex_state = 43}, - [743] = {.lex_state = 43}, - [744] = {.lex_state = 40}, - [745] = {.lex_state = 40}, - [746] = {.lex_state = 40}, - [747] = {.lex_state = 40}, - [748] = {.lex_state = 40}, - [749] = {.lex_state = 40}, - [750] = {.lex_state = 40}, - [751] = {.lex_state = 40}, - [752] = {.lex_state = 40}, - [753] = {.lex_state = 40}, - [754] = {.lex_state = 40}, - [755] = {.lex_state = 40}, - [756] = {.lex_state = 40}, - [757] = {.lex_state = 40}, - [758] = {.lex_state = 40}, - [759] = {.lex_state = 40}, - [760] = {.lex_state = 40}, - [761] = {.lex_state = 40}, - [762] = {.lex_state = 40}, - [763] = {.lex_state = 40}, - [764] = {.lex_state = 40}, - [765] = {.lex_state = 40}, - [766] = {.lex_state = 40}, - [767] = {.lex_state = 40}, - [768] = {.lex_state = 40}, - [769] = {.lex_state = 40}, - [770] = {.lex_state = 40}, - [771] = {.lex_state = 40}, - [772] = {.lex_state = 40}, - [773] = {.lex_state = 40}, - [774] = {.lex_state = 40}, - [775] = {.lex_state = 40}, - [776] = {.lex_state = 40}, - [777] = {.lex_state = 40}, - [778] = {.lex_state = 40}, - [779] = {.lex_state = 40}, - [780] = {.lex_state = 40}, - [781] = {.lex_state = 40}, - [782] = {.lex_state = 40}, - [783] = {.lex_state = 40}, - [784] = {.lex_state = 40}, - [785] = {.lex_state = 40}, + [482] = {.lex_state = 272}, + [483] = {.lex_state = 288}, + [484] = {.lex_state = 288}, + [485] = {.lex_state = 288}, + [486] = {.lex_state = 288}, + [487] = {.lex_state = 232}, + [488] = {.lex_state = 232}, + [489] = {.lex_state = 232}, + [490] = {.lex_state = 232}, + [491] = {.lex_state = 232}, + [492] = {.lex_state = 232}, + [493] = {.lex_state = 288}, + [494] = {.lex_state = 288}, + [495] = {.lex_state = 320}, + [496] = {.lex_state = 220}, + [497] = {.lex_state = 284}, + [498] = {.lex_state = 220}, + [499] = {.lex_state = 220}, + [500] = {.lex_state = 354}, + [501] = {.lex_state = 320}, + [502] = {.lex_state = 354}, + [503] = {.lex_state = 320}, + [504] = {.lex_state = 320}, + [505] = {.lex_state = 283}, + [506] = {.lex_state = 354}, + [507] = {.lex_state = 220}, + [508] = {.lex_state = 320}, + [509] = {.lex_state = 320}, + [510] = {.lex_state = 220}, + [511] = {.lex_state = 320}, + [512] = {.lex_state = 320}, + [513] = {.lex_state = 263}, + [514] = {.lex_state = 320}, + [515] = {.lex_state = 220}, + [516] = {.lex_state = 320}, + [517] = {.lex_state = 220}, + [518] = {.lex_state = 220}, + [519] = {.lex_state = 220}, + [520] = {.lex_state = 320}, + [521] = {.lex_state = 320}, + [522] = {.lex_state = 320}, + [523] = {.lex_state = 320}, + [524] = {.lex_state = 320}, + [525] = {.lex_state = 320}, + [526] = {.lex_state = 269}, + [527] = {.lex_state = 273}, + [528] = {.lex_state = 269}, + [529] = {.lex_state = 285}, + [530] = {.lex_state = 232}, + [531] = {.lex_state = 320}, + [532] = {.lex_state = 320}, + [533] = {.lex_state = 320}, + [534] = {.lex_state = 320}, + [535] = {.lex_state = 320}, + [536] = {.lex_state = 220}, + [537] = {.lex_state = 284}, + [538] = {.lex_state = 273}, + [539] = {.lex_state = 273}, + [540] = {.lex_state = 220}, + [541] = {.lex_state = 220}, + [542] = {.lex_state = 220}, + [543] = {.lex_state = 220}, + [544] = {.lex_state = 284}, + [545] = {.lex_state = 354}, + [546] = {.lex_state = 263}, + [547] = {.lex_state = 232}, + [548] = {.lex_state = 284}, + [549] = {.lex_state = 320}, + [550] = {.lex_state = 320}, + [551] = {.lex_state = 354}, + [552] = {.lex_state = 220}, + [553] = {.lex_state = 284}, + [554] = {.lex_state = 320}, + [555] = {.lex_state = 320}, + [556] = {.lex_state = 320}, + [557] = {.lex_state = 320}, + [558] = {.lex_state = 320}, + [559] = {.lex_state = 320}, + [560] = {.lex_state = 320}, + [561] = {.lex_state = 320}, + [562] = {.lex_state = 320}, + [563] = {.lex_state = 320}, + [564] = {.lex_state = 320}, + [565] = {.lex_state = 281}, + [566] = {.lex_state = 320}, + [567] = {.lex_state = 320}, + [568] = {.lex_state = 47}, + [569] = {.lex_state = 281}, + [570] = {.lex_state = 220}, + [571] = {.lex_state = 320}, + [572] = {.lex_state = 320}, + [573] = {.lex_state = 320}, + [574] = {.lex_state = 320}, + [575] = {.lex_state = 320}, + [576] = {.lex_state = 220}, + [577] = {.lex_state = 320}, + [578] = {.lex_state = 286}, + [579] = {.lex_state = 320}, + [580] = {.lex_state = 320}, + [581] = {.lex_state = 320}, + [582] = {.lex_state = 320}, + [583] = {.lex_state = 286}, + [584] = {.lex_state = 286}, + [585] = {.lex_state = 320}, + [586] = {.lex_state = 320}, + [587] = {.lex_state = 320}, + [588] = {.lex_state = 320}, + [589] = {.lex_state = 320}, + [590] = {.lex_state = 320}, + [591] = {.lex_state = 320}, + [592] = {.lex_state = 320}, + [593] = {.lex_state = 320}, + [594] = {.lex_state = 47}, + [595] = {.lex_state = 320}, + [596] = {.lex_state = 320}, + [597] = {.lex_state = 320}, + [598] = {.lex_state = 320}, + [599] = {.lex_state = 320}, + [600] = {.lex_state = 320}, + [601] = {.lex_state = 320}, + [602] = {.lex_state = 320}, + [603] = {.lex_state = 320}, + [604] = {.lex_state = 320}, + [605] = {.lex_state = 320}, + [606] = {.lex_state = 320}, + [607] = {.lex_state = 320}, + [608] = {.lex_state = 320}, + [609] = {.lex_state = 320}, + [610] = {.lex_state = 320}, + [611] = {.lex_state = 320}, + [612] = {.lex_state = 320}, + [613] = {.lex_state = 320}, + [614] = {.lex_state = 320}, + [615] = {.lex_state = 320}, + [616] = {.lex_state = 320}, + [617] = {.lex_state = 320}, + [618] = {.lex_state = 320}, + [619] = {.lex_state = 320}, + [620] = {.lex_state = 320}, + [621] = {.lex_state = 47}, + [622] = {.lex_state = 320}, + [623] = {.lex_state = 47}, + [624] = {.lex_state = 47}, + [625] = {.lex_state = 47}, + [626] = {.lex_state = 47}, + [627] = {.lex_state = 47}, + [628] = {.lex_state = 47}, + [629] = {.lex_state = 47}, + [630] = {.lex_state = 47}, + [631] = {.lex_state = 47}, + [632] = {.lex_state = 47}, + [633] = {.lex_state = 47}, + [634] = {.lex_state = 47}, + [635] = {.lex_state = 47}, + [636] = {.lex_state = 47}, + [637] = {.lex_state = 47}, + [638] = {.lex_state = 47}, + [639] = {.lex_state = 47}, + [640] = {.lex_state = 47}, + [641] = {.lex_state = 47}, + [642] = {.lex_state = 47}, + [643] = {.lex_state = 47}, + [644] = {.lex_state = 47}, + [645] = {.lex_state = 47}, + [646] = {.lex_state = 47}, + [647] = {.lex_state = 47}, + [648] = {.lex_state = 47}, + [649] = {.lex_state = 47}, + [650] = {.lex_state = 47}, + [651] = {.lex_state = 47}, + [652] = {.lex_state = 47}, + [653] = {.lex_state = 47}, + [654] = {.lex_state = 47}, + [655] = {.lex_state = 47}, + [656] = {.lex_state = 47}, + [657] = {.lex_state = 47}, + [658] = {.lex_state = 47}, + [659] = {.lex_state = 47}, + [660] = {.lex_state = 47}, + [661] = {.lex_state = 47}, + [662] = {.lex_state = 47}, + [663] = {.lex_state = 47}, + [664] = {.lex_state = 47}, + [665] = {.lex_state = 47}, + [666] = {.lex_state = 47}, + [667] = {.lex_state = 47}, + [668] = {.lex_state = 47}, + [669] = {.lex_state = 47}, + [670] = {.lex_state = 47}, + [671] = {.lex_state = 47}, + [672] = {.lex_state = 47}, + [673] = {.lex_state = 47}, + [674] = {.lex_state = 47}, + [675] = {.lex_state = 47}, + [676] = {.lex_state = 47}, + [677] = {.lex_state = 47}, + [678] = {.lex_state = 47}, + [679] = {.lex_state = 47}, + [680] = {.lex_state = 47}, + [681] = {.lex_state = 47}, + [682] = {.lex_state = 47}, + [683] = {.lex_state = 47}, + [684] = {.lex_state = 47}, + [685] = {.lex_state = 47}, + [686] = {.lex_state = 47}, + [687] = {.lex_state = 47}, + [688] = {.lex_state = 47}, + [689] = {.lex_state = 47}, + [690] = {.lex_state = 47}, + [691] = {.lex_state = 47}, + [692] = {.lex_state = 47}, + [693] = {.lex_state = 47}, + [694] = {.lex_state = 47}, + [695] = {.lex_state = 47}, + [696] = {.lex_state = 47}, + [697] = {.lex_state = 47}, + [698] = {.lex_state = 41}, + [699] = {.lex_state = 41}, + [700] = {.lex_state = 955}, + [701] = {.lex_state = 955}, + [702] = {.lex_state = 955}, + [703] = {.lex_state = 955}, + [704] = {.lex_state = 955}, + [705] = {.lex_state = 955}, + [706] = {.lex_state = 955}, + [707] = {.lex_state = 955}, + [708] = {.lex_state = 955}, + [709] = {.lex_state = 955}, + [710] = {.lex_state = 955}, + [711] = {.lex_state = 955}, + [712] = {.lex_state = 955}, + [713] = {.lex_state = 955}, + [714] = {.lex_state = 955}, + [715] = {.lex_state = 35}, + [716] = {.lex_state = 35}, + [717] = {.lex_state = 35}, + [718] = {.lex_state = 35}, + [719] = {.lex_state = 35}, + [720] = {.lex_state = 35}, + [721] = {.lex_state = 35}, + [722] = {.lex_state = 35}, + [723] = {.lex_state = 35}, + [724] = {.lex_state = 41}, + [725] = {.lex_state = 41}, + [726] = {.lex_state = 41}, + [727] = {.lex_state = 41}, + [728] = {.lex_state = 41}, + [729] = {.lex_state = 41}, + [730] = {.lex_state = 41}, + [731] = {.lex_state = 41}, + [732] = {.lex_state = 41}, + [733] = {.lex_state = 41}, + [734] = {.lex_state = 41}, + [735] = {.lex_state = 41}, + [736] = {.lex_state = 41}, + [737] = {.lex_state = 41}, + [738] = {.lex_state = 41}, + [739] = {.lex_state = 41}, + [740] = {.lex_state = 41}, + [741] = {.lex_state = 41}, + [742] = {.lex_state = 41}, + [743] = {.lex_state = 41}, + [744] = {.lex_state = 41}, + [745] = {.lex_state = 41}, + [746] = {.lex_state = 41}, + [747] = {.lex_state = 41}, + [748] = {.lex_state = 41}, + [749] = {.lex_state = 32}, + [750] = {.lex_state = 32}, + [751] = {.lex_state = 41}, + [752] = {.lex_state = 41}, + [753] = {.lex_state = 41}, + [754] = {.lex_state = 41}, + [755] = {.lex_state = 41}, + [756] = {.lex_state = 41}, + [757] = {.lex_state = 41}, + [758] = {.lex_state = 41}, + [759] = {.lex_state = 41}, + [760] = {.lex_state = 41}, + [761] = {.lex_state = 41}, + [762] = {.lex_state = 41}, + [763] = {.lex_state = 41}, + [764] = {.lex_state = 41}, + [765] = {.lex_state = 41}, + [766] = {.lex_state = 41}, + [767] = {.lex_state = 41}, + [768] = {.lex_state = 41}, + [769] = {.lex_state = 41}, + [770] = {.lex_state = 41}, + [771] = {.lex_state = 41}, + [772] = {.lex_state = 41}, + [773] = {.lex_state = 41}, + [774] = {.lex_state = 41}, + [775] = {.lex_state = 41}, + [776] = {.lex_state = 39}, + [777] = {.lex_state = 39}, + [778] = {.lex_state = 39}, + [779] = {.lex_state = 39}, + [780] = {.lex_state = 39}, + [781] = {.lex_state = 39}, + [782] = {.lex_state = 39}, + [783] = {.lex_state = 39}, + [784] = {.lex_state = 39}, + [785] = {.lex_state = 39}, [786] = {.lex_state = 40}, - [787] = {.lex_state = 40}, - [788] = {.lex_state = 40}, - [789] = {.lex_state = 40}, - [790] = {.lex_state = 40}, - [791] = {.lex_state = 40}, - [792] = {.lex_state = 40}, - [793] = {.lex_state = 40}, - [794] = {.lex_state = 40}, - [795] = {.lex_state = 40}, - [796] = {.lex_state = 40}, - [797] = {.lex_state = 40}, - [798] = {.lex_state = 40}, - [799] = {.lex_state = 40}, - [800] = {.lex_state = 40}, - [801] = {.lex_state = 40}, - [802] = {.lex_state = 40}, - [803] = {.lex_state = 40}, - [804] = {.lex_state = 40}, - [805] = {.lex_state = 40}, - [806] = {.lex_state = 40}, - [807] = {.lex_state = 40}, - [808] = {.lex_state = 40}, - [809] = {.lex_state = 40}, - [810] = {.lex_state = 40}, - [811] = {.lex_state = 40}, - [812] = {.lex_state = 40}, - [813] = {.lex_state = 40}, - [814] = {.lex_state = 40}, - [815] = {.lex_state = 40}, - [816] = {.lex_state = 40}, - [817] = {.lex_state = 40}, - [818] = {.lex_state = 40}, - [819] = {.lex_state = 40}, - [820] = {.lex_state = 40}, - [821] = {.lex_state = 40}, - [822] = {.lex_state = 40}, - [823] = {.lex_state = 40}, - [824] = {.lex_state = 40}, - [825] = {.lex_state = 40}, - [826] = {.lex_state = 40}, - [827] = {.lex_state = 40}, - [828] = {.lex_state = 40}, - [829] = {.lex_state = 40}, - [830] = {.lex_state = 40}, - [831] = {.lex_state = 40}, - [832] = {.lex_state = 40}, - [833] = {.lex_state = 40}, - [834] = {.lex_state = 40}, - [835] = {.lex_state = 40}, - [836] = {.lex_state = 40}, - [837] = {.lex_state = 40}, - [838] = {.lex_state = 40}, - [839] = {.lex_state = 40}, - [840] = {.lex_state = 40}, - [841] = {.lex_state = 40}, - [842] = {.lex_state = 40}, - [843] = {.lex_state = 40}, - [844] = {.lex_state = 40}, - [845] = {.lex_state = 40}, - [846] = {.lex_state = 40}, - [847] = {.lex_state = 40}, - [848] = {.lex_state = 40}, - [849] = {.lex_state = 40}, - [850] = {.lex_state = 40}, - [851] = {.lex_state = 40}, - [852] = {.lex_state = 40}, - [853] = {.lex_state = 40}, - [854] = {.lex_state = 40}, - [855] = {.lex_state = 40}, - [856] = {.lex_state = 40}, - [857] = {.lex_state = 40}, - [858] = {.lex_state = 40}, - [859] = {.lex_state = 40}, - [860] = {.lex_state = 40}, - [861] = {.lex_state = 40}, - [862] = {.lex_state = 40}, - [863] = {.lex_state = 40}, - [864] = {.lex_state = 40}, - [865] = {.lex_state = 40}, - [866] = {.lex_state = 40}, - [867] = {.lex_state = 40}, - [868] = {.lex_state = 40}, - [869] = {.lex_state = 40}, - [870] = {.lex_state = 40}, - [871] = {.lex_state = 40}, - [872] = {.lex_state = 40}, - [873] = {.lex_state = 40}, - [874] = {.lex_state = 40}, - [875] = {.lex_state = 40}, - [876] = {.lex_state = 40}, - [877] = {.lex_state = 40}, - [878] = {.lex_state = 40}, - [879] = {.lex_state = 40}, - [880] = {.lex_state = 40}, - [881] = {.lex_state = 40}, - [882] = {.lex_state = 40}, - [883] = {.lex_state = 40}, - [884] = {.lex_state = 41}, - [885] = {.lex_state = 40}, - [886] = {.lex_state = 40}, - [887] = {.lex_state = 40}, - [888] = {.lex_state = 40}, - [889] = {.lex_state = 40}, - [890] = {.lex_state = 40}, - [891] = {.lex_state = 40}, - [892] = {.lex_state = 40}, - [893] = {.lex_state = 40}, - [894] = {.lex_state = 40}, - [895] = {.lex_state = 40}, - [896] = {.lex_state = 40}, - [897] = {.lex_state = 40}, - [898] = {.lex_state = 40}, - [899] = {.lex_state = 40}, - [900] = {.lex_state = 40}, - [901] = {.lex_state = 99}, - [902] = {.lex_state = 99}, - [903] = {.lex_state = 958}, - [904] = {.lex_state = 40}, - [905] = {.lex_state = 40}, - [906] = {.lex_state = 40}, - [907] = {.lex_state = 40}, - [908] = {.lex_state = 40}, - [909] = {.lex_state = 40}, - [910] = {.lex_state = 40}, - [911] = {.lex_state = 40}, - [912] = {.lex_state = 40}, - [913] = {.lex_state = 40}, - [914] = {.lex_state = 40}, - [915] = {.lex_state = 40}, - [916] = {.lex_state = 40}, - [917] = {.lex_state = 40}, - [918] = {.lex_state = 40}, - [919] = {.lex_state = 40}, - [920] = {.lex_state = 40}, - [921] = {.lex_state = 40}, - [922] = {.lex_state = 40}, - [923] = {.lex_state = 40}, - [924] = {.lex_state = 40}, - [925] = {.lex_state = 40}, - [926] = {.lex_state = 40}, - [927] = {.lex_state = 40}, - [928] = {.lex_state = 40}, - [929] = {.lex_state = 40}, - [930] = {.lex_state = 40}, - [931] = {.lex_state = 40}, - [932] = {.lex_state = 40}, - [933] = {.lex_state = 40}, - [934] = {.lex_state = 40}, - [935] = {.lex_state = 40}, - [936] = {.lex_state = 40}, - [937] = {.lex_state = 40}, - [938] = {.lex_state = 40}, - [939] = {.lex_state = 40}, - [940] = {.lex_state = 40}, - [941] = {.lex_state = 40}, - [942] = {.lex_state = 40}, - [943] = {.lex_state = 40}, - [944] = {.lex_state = 40}, - [945] = {.lex_state = 958}, - [946] = {.lex_state = 40}, - [947] = {.lex_state = 40}, - [948] = {.lex_state = 40}, - [949] = {.lex_state = 40}, - [950] = {.lex_state = 40}, - [951] = {.lex_state = 40}, - [952] = {.lex_state = 40}, - [953] = {.lex_state = 40}, - [954] = {.lex_state = 40}, - [955] = {.lex_state = 40}, - [956] = {.lex_state = 40}, - [957] = {.lex_state = 40}, - [958] = {.lex_state = 40}, - [959] = {.lex_state = 40}, - [960] = {.lex_state = 40}, - [961] = {.lex_state = 40}, - [962] = {.lex_state = 40}, - [963] = {.lex_state = 40}, - [964] = {.lex_state = 40}, - [965] = {.lex_state = 40}, - [966] = {.lex_state = 40}, - [967] = {.lex_state = 40}, - [968] = {.lex_state = 40}, - [969] = {.lex_state = 40}, - [970] = {.lex_state = 40}, - [971] = {.lex_state = 40}, - [972] = {.lex_state = 40}, - [973] = {.lex_state = 40}, - [974] = {.lex_state = 40}, - [975] = {.lex_state = 40}, - [976] = {.lex_state = 40}, - [977] = {.lex_state = 40}, - [978] = {.lex_state = 40}, - [979] = {.lex_state = 40}, - [980] = {.lex_state = 40}, - [981] = {.lex_state = 40}, - [982] = {.lex_state = 40}, - [983] = {.lex_state = 40}, - [984] = {.lex_state = 40}, - [985] = {.lex_state = 40}, - [986] = {.lex_state = 40}, - [987] = {.lex_state = 40}, - [988] = {.lex_state = 40}, - [989] = {.lex_state = 40}, - [990] = {.lex_state = 40}, - [991] = {.lex_state = 40}, - [992] = {.lex_state = 40}, - [993] = {.lex_state = 40}, - [994] = {.lex_state = 40}, - [995] = {.lex_state = 40}, - [996] = {.lex_state = 40}, - [997] = {.lex_state = 40}, - [998] = {.lex_state = 40}, - [999] = {.lex_state = 40}, - [1000] = {.lex_state = 40}, - [1001] = {.lex_state = 40}, - [1002] = {.lex_state = 47}, - [1003] = {.lex_state = 47}, - [1004] = {.lex_state = 47}, - [1005] = {.lex_state = 47}, - [1006] = {.lex_state = 42}, - [1007] = {.lex_state = 42}, - [1008] = {.lex_state = 42}, - [1009] = {.lex_state = 42}, - [1010] = {.lex_state = 47}, - [1011] = {.lex_state = 35}, - [1012] = {.lex_state = 47}, - [1013] = {.lex_state = 214}, - [1014] = {.lex_state = 47}, - [1015] = {.lex_state = 214}, - [1016] = {.lex_state = 47}, - [1017] = {.lex_state = 214}, - [1018] = {.lex_state = 35}, - [1019] = {.lex_state = 214}, - [1020] = {.lex_state = 214}, - [1021] = {.lex_state = 214}, - [1022] = {.lex_state = 37}, - [1023] = {.lex_state = 210}, - [1024] = {.lex_state = 210}, - [1025] = {.lex_state = 941}, - [1026] = {.lex_state = 42}, - [1027] = {.lex_state = 42}, - [1028] = {.lex_state = 103}, - [1029] = {.lex_state = 35}, - [1030] = {.lex_state = 205}, - [1031] = {.lex_state = 35}, - [1032] = {.lex_state = 205}, - [1033] = {.lex_state = 35}, - [1034] = {.lex_state = 41}, - [1035] = {.lex_state = 941}, - [1036] = {.lex_state = 47}, - [1037] = {.lex_state = 47}, - [1038] = {.lex_state = 47}, - [1039] = {.lex_state = 47}, - [1040] = {.lex_state = 37}, - [1041] = {.lex_state = 955}, - [1042] = {.lex_state = 47}, - [1043] = {.lex_state = 999}, - [1044] = {.lex_state = 47}, - [1045] = {.lex_state = 940}, - [1046] = {.lex_state = 41}, - [1047] = {.lex_state = 122}, - [1048] = {.lex_state = 940}, - [1049] = {.lex_state = 103}, - [1050] = {.lex_state = 47}, - [1051] = {.lex_state = 35}, - [1052] = {.lex_state = 951}, - [1053] = {.lex_state = 103}, - [1054] = {.lex_state = 942}, - [1055] = {.lex_state = 47}, - [1056] = {.lex_state = 47}, - [1057] = {.lex_state = 103}, - [1058] = {.lex_state = 122}, - [1059] = {.lex_state = 103}, - [1060] = {.lex_state = 945}, - [1061] = {.lex_state = 954}, - [1062] = {.lex_state = 954}, - [1063] = {.lex_state = 940}, - [1064] = {.lex_state = 978}, - [1065] = {.lex_state = 122}, - [1066] = {.lex_state = 954}, - [1067] = {.lex_state = 999}, - [1068] = {.lex_state = 944}, - [1069] = {.lex_state = 103}, - [1070] = {.lex_state = 999}, - [1071] = {.lex_state = 942}, - [1072] = {.lex_state = 982}, - [1073] = {.lex_state = 103}, - [1074] = {.lex_state = 999}, - [1075] = {.lex_state = 955}, - [1076] = {.lex_state = 951}, - [1077] = {.lex_state = 944}, - [1078] = {.lex_state = 954}, - [1079] = {.lex_state = 103}, - [1080] = {.lex_state = 940}, - [1081] = {.lex_state = 41}, - [1082] = {.lex_state = 954}, - [1083] = {.lex_state = 944}, - [1084] = {.lex_state = 944}, - [1085] = {.lex_state = 999}, - [1086] = {.lex_state = 999}, - [1087] = {.lex_state = 999}, - [1088] = {.lex_state = 122}, - [1089] = {.lex_state = 122}, - [1090] = {.lex_state = 954}, - [1091] = {.lex_state = 973}, - [1092] = {.lex_state = 973}, - [1093] = {.lex_state = 41}, - [1094] = {.lex_state = 41}, - [1095] = {.lex_state = 41}, - [1096] = {.lex_state = 954}, - [1097] = {.lex_state = 954}, - [1098] = {.lex_state = 41}, - [1099] = {.lex_state = 41}, - [1100] = {.lex_state = 943}, - [1101] = {.lex_state = 42}, - [1102] = {.lex_state = 945}, - [1103] = {.lex_state = 945}, - [1104] = {.lex_state = 41}, - [1105] = {.lex_state = 999}, - [1106] = {.lex_state = 41}, - [1107] = {.lex_state = 945}, - [1108] = {.lex_state = 945}, - [1109] = {.lex_state = 41}, - [1110] = {.lex_state = 41}, - [1111] = {.lex_state = 973}, - [1112] = {.lex_state = 952}, - [1113] = {.lex_state = 41}, - [1114] = {.lex_state = 982}, - [1115] = {.lex_state = 978}, - [1116] = {.lex_state = 103}, - [1117] = {.lex_state = 41}, - [1118] = {.lex_state = 41}, - [1119] = {.lex_state = 41}, - [1120] = {.lex_state = 41}, - [1121] = {.lex_state = 41}, - [1122] = {.lex_state = 41}, - [1123] = {.lex_state = 41}, - [1124] = {.lex_state = 41}, - [1125] = {.lex_state = 41}, - [1126] = {.lex_state = 41}, - [1127] = {.lex_state = 41}, - [1128] = {.lex_state = 41}, - [1129] = {.lex_state = 41}, - [1130] = {.lex_state = 41}, - [1131] = {.lex_state = 41}, - [1132] = {.lex_state = 41}, - [1133] = {.lex_state = 41}, - [1134] = {.lex_state = 41}, - [1135] = {.lex_state = 41}, - [1136] = {.lex_state = 41}, - [1137] = {.lex_state = 41}, - [1138] = {.lex_state = 41}, - [1139] = {.lex_state = 41}, - [1140] = {.lex_state = 945}, - [1141] = {.lex_state = 41}, - [1142] = {.lex_state = 41}, - [1143] = {.lex_state = 41}, - [1144] = {.lex_state = 41}, - [1145] = {.lex_state = 41}, - [1146] = {.lex_state = 999}, - [1147] = {.lex_state = 41}, - [1148] = {.lex_state = 41}, - [1149] = {.lex_state = 41}, - [1150] = {.lex_state = 41}, - [1151] = {.lex_state = 103}, - [1152] = {.lex_state = 103}, - [1153] = {.lex_state = 41}, - [1154] = {.lex_state = 41}, - [1155] = {.lex_state = 41}, - [1156] = {.lex_state = 41}, - [1157] = {.lex_state = 41}, - [1158] = {.lex_state = 41}, - [1159] = {.lex_state = 41}, - [1160] = {.lex_state = 41}, - [1161] = {.lex_state = 41}, - [1162] = {.lex_state = 41}, - [1163] = {.lex_state = 41}, - [1164] = {.lex_state = 41}, - [1165] = {.lex_state = 41}, - [1166] = {.lex_state = 42}, - [1167] = {.lex_state = 41}, - [1168] = {.lex_state = 979}, - [1169] = {.lex_state = 979}, - [1170] = {.lex_state = 122}, - [1171] = {.lex_state = 122}, - [1172] = {.lex_state = 122}, - [1173] = {.lex_state = 999}, - [1174] = {.lex_state = 999}, - [1175] = {.lex_state = 41}, - [1176] = {.lex_state = 945}, - [1177] = {.lex_state = 999}, - [1178] = {.lex_state = 945}, - [1179] = {.lex_state = 999}, - [1180] = {.lex_state = 999}, - [1181] = {.lex_state = 999}, - [1182] = {.lex_state = 122}, - [1183] = {.lex_state = 999}, - [1184] = {.lex_state = 973}, - [1185] = {.lex_state = 973}, - [1186] = {.lex_state = 999}, - [1187] = {.lex_state = 979}, - [1188] = {.lex_state = 946}, - [1189] = {.lex_state = 979}, - [1190] = {.lex_state = 122}, - [1191] = {.lex_state = 945}, - [1192] = {.lex_state = 946}, - [1193] = {.lex_state = 973}, - [1194] = {.lex_state = 973}, - [1195] = {.lex_state = 980}, - [1196] = {.lex_state = 943}, - [1197] = {.lex_state = 980}, - [1198] = {.lex_state = 973}, - [1199] = {.lex_state = 980}, - [1200] = {.lex_state = 945}, - [1201] = {.lex_state = 980}, - [1202] = {.lex_state = 42}, - [1203] = {.lex_state = 980}, - [1204] = {.lex_state = 103}, - [1205] = {.lex_state = 999}, - [1206] = {.lex_state = 122}, - [1207] = {.lex_state = 952}, - [1208] = {.lex_state = 999}, - [1209] = {.lex_state = 946}, - [1210] = {.lex_state = 971}, - [1211] = {.lex_state = 972}, - [1212] = {.lex_state = 971}, - [1213] = {.lex_state = 973}, - [1214] = {.lex_state = 947}, - [1215] = {.lex_state = 970}, - [1216] = {.lex_state = 947}, - [1217] = {.lex_state = 1007}, - [1218] = {.lex_state = 947}, - [1219] = {.lex_state = 41}, - [1220] = {.lex_state = 999}, - [1221] = {.lex_state = 999}, - [1222] = {.lex_state = 971}, - [1223] = {.lex_state = 947}, - [1224] = {.lex_state = 122}, - [1225] = {.lex_state = 999}, - [1226] = {.lex_state = 106}, - [1227] = {.lex_state = 973}, - [1228] = {.lex_state = 980}, - [1229] = {.lex_state = 103}, - [1230] = {.lex_state = 1001}, - [1231] = {.lex_state = 980}, - [1232] = {.lex_state = 980}, - [1233] = {.lex_state = 971}, - [1234] = {.lex_state = 999}, - [1235] = {.lex_state = 971}, - [1236] = {.lex_state = 107}, - [1237] = {.lex_state = 980}, - [1238] = {.lex_state = 999}, - [1239] = {.lex_state = 947}, - [1240] = {.lex_state = 999}, - [1241] = {.lex_state = 946}, - [1242] = {.lex_state = 947}, - [1243] = {.lex_state = 980}, - [1244] = {.lex_state = 970}, - [1245] = {.lex_state = 103}, - [1246] = {.lex_state = 947}, - [1247] = {.lex_state = 948}, - [1248] = {.lex_state = 1011}, - [1249] = {.lex_state = 1011}, - [1250] = {.lex_state = 947}, - [1251] = {.lex_state = 1042}, - [1252] = {.lex_state = 973}, - [1253] = {.lex_state = 108}, - [1254] = {.lex_state = 973}, - [1255] = {.lex_state = 973}, - [1256] = {.lex_state = 953}, - [1257] = {.lex_state = 976}, - [1258] = {.lex_state = 976}, - [1259] = {.lex_state = 968}, - [1260] = {.lex_state = 1044}, - [1261] = {.lex_state = 103}, - [1262] = {.lex_state = 976}, - [1263] = {.lex_state = 976}, - [1264] = {.lex_state = 976}, - [1265] = {.lex_state = 976}, - [1266] = {.lex_state = 976}, - [1267] = {.lex_state = 122}, - [1268] = {.lex_state = 968}, - [1269] = {.lex_state = 976}, - [1270] = {.lex_state = 1015}, - [1271] = {.lex_state = 999}, - [1272] = {.lex_state = 947}, - [1273] = {.lex_state = 976}, - [1274] = {.lex_state = 971}, - [1275] = {.lex_state = 976}, - [1276] = {.lex_state = 976}, - [1277] = {.lex_state = 976}, - [1278] = {.lex_state = 972}, - [1279] = {.lex_state = 971}, - [1280] = {.lex_state = 976}, - [1281] = {.lex_state = 976}, - [1282] = {.lex_state = 108}, - [1283] = {.lex_state = 971}, - [1284] = {.lex_state = 976}, - [1285] = {.lex_state = 976}, - [1286] = {.lex_state = 976}, - [1287] = {.lex_state = 976}, - [1288] = {.lex_state = 976}, - [1289] = {.lex_state = 976}, - [1290] = {.lex_state = 1001}, - [1291] = {.lex_state = 976}, - [1292] = {.lex_state = 947}, - [1293] = {.lex_state = 1007}, - [1294] = {.lex_state = 138}, - [1295] = {.lex_state = 971}, - [1296] = {.lex_state = 971}, - [1297] = {.lex_state = 976}, - [1298] = {.lex_state = 136}, - [1299] = {.lex_state = 947}, - [1300] = {.lex_state = 123}, - [1301] = {.lex_state = 947}, - [1302] = {.lex_state = 125}, - [1303] = {.lex_state = 976}, - [1304] = {.lex_state = 1042}, - [1305] = {.lex_state = 969}, - [1306] = {.lex_state = 969}, - [1307] = {.lex_state = 969}, - [1308] = {.lex_state = 104}, - [1309] = {.lex_state = 976}, - [1310] = {.lex_state = 129}, - [1311] = {.lex_state = 969}, - [1312] = {.lex_state = 109}, - [1313] = {.lex_state = 104}, - [1314] = {.lex_state = 1046}, - [1315] = {.lex_state = 976}, - [1316] = {.lex_state = 976}, - [1317] = {.lex_state = 949}, - [1318] = {.lex_state = 999}, - [1319] = {.lex_state = 969}, - [1320] = {.lex_state = 999}, - [1321] = {.lex_state = 122}, - [1322] = {.lex_state = 976}, - [1323] = {.lex_state = 948}, - [1324] = {.lex_state = 969}, - [1325] = {.lex_state = 140}, - [1326] = {.lex_state = 953}, - [1327] = {.lex_state = 140}, - [1328] = {.lex_state = 1044}, - [1329] = {.lex_state = 109}, - [1330] = {.lex_state = 1015}, - [1331] = {.lex_state = 122}, - [1332] = {.lex_state = 969}, - [1333] = {.lex_state = 976}, - [1334] = {.lex_state = 1011}, - [1335] = {.lex_state = 1015}, - [1336] = {.lex_state = 1046}, - [1337] = {.lex_state = 949}, - [1338] = {.lex_state = 976}, - [1339] = {.lex_state = 1015}, - [1340] = {.lex_state = 969}, - [1341] = {.lex_state = 973}, - [1342] = {.lex_state = 976}, - [1343] = {.lex_state = 109}, - [1344] = {.lex_state = 976}, - [1345] = {.lex_state = 976}, - [1346] = {.lex_state = 976}, - [1347] = {.lex_state = 1015}, - [1348] = {.lex_state = 973}, - [1349] = {.lex_state = 973}, - [1350] = {.lex_state = 976}, - [1351] = {.lex_state = 968}, - [1352] = {.lex_state = 976}, - [1353] = {.lex_state = 969}, - [1354] = {.lex_state = 1011}, - [1355] = {.lex_state = 976}, - [1356] = {.lex_state = 968}, - [1357] = {.lex_state = 969}, - [1358] = {.lex_state = 976}, - [1359] = {.lex_state = 969}, - [1360] = {.lex_state = 976}, - [1361] = {.lex_state = 976}, - [1362] = {.lex_state = 127}, - [1363] = {.lex_state = 976}, - [1364] = {.lex_state = 109}, - [1365] = {.lex_state = 976}, - [1366] = {.lex_state = 976}, - [1367] = {.lex_state = 976}, - [1368] = {.lex_state = 969}, - [1369] = {.lex_state = 969}, - [1370] = {.lex_state = 976}, - [1371] = {.lex_state = 969}, - [1372] = {.lex_state = 976}, - [1373] = {.lex_state = 976}, - [1374] = {.lex_state = 976}, - [1375] = {.lex_state = 969}, - [1376] = {.lex_state = 976}, - [1377] = {.lex_state = 127}, - [1378] = {.lex_state = 1015}, - [1379] = {.lex_state = 961}, - [1380] = {.lex_state = 74}, - [1381] = {.lex_state = 1048}, - [1382] = {.lex_state = 142}, - [1383] = {.lex_state = 950}, - [1384] = {.lex_state = 969}, - [1385] = {.lex_state = 74}, - [1386] = {.lex_state = 74}, - [1387] = {.lex_state = 74}, - [1388] = {.lex_state = 74}, - [1389] = {.lex_state = 105}, - [1390] = {.lex_state = 1046}, - [1391] = {.lex_state = 74}, - [1392] = {.lex_state = 74}, - [1393] = {.lex_state = 74}, - [1394] = {.lex_state = 74}, - [1395] = {.lex_state = 129}, - [1396] = {.lex_state = 950}, - [1397] = {.lex_state = 74}, - [1398] = {.lex_state = 74}, - [1399] = {.lex_state = 74}, - [1400] = {.lex_state = 977}, - [1401] = {.lex_state = 949}, - [1402] = {.lex_state = 969}, - [1403] = {.lex_state = 969}, - [1404] = {.lex_state = 950}, - [1405] = {.lex_state = 989}, - [1406] = {.lex_state = 969}, - [1407] = {.lex_state = 1015}, - [1408] = {.lex_state = 969}, - [1409] = {.lex_state = 939}, - [1410] = {.lex_state = 105}, - [1411] = {.lex_state = 1046}, - [1412] = {.lex_state = 1048}, - [1413] = {.lex_state = 142}, - [1414] = {.lex_state = 1015}, - [1415] = {.lex_state = 969}, - [1416] = {.lex_state = 974}, - [1417] = {.lex_state = 939}, - [1418] = {.lex_state = 989}, - [1419] = {.lex_state = 950}, - [1420] = {.lex_state = 950}, - [1421] = {.lex_state = 974}, - [1422] = {.lex_state = 142}, - [1423] = {.lex_state = 974}, - [1424] = {.lex_state = 1015}, - [1425] = {.lex_state = 949}, - [1426] = {.lex_state = 142}, - [1427] = {.lex_state = 989}, - [1428] = {.lex_state = 950}, - [1429] = {.lex_state = 1048}, - [1430] = {.lex_state = 969}, - [1431] = {.lex_state = 974}, - [1432] = {.lex_state = 975}, - [1433] = {.lex_state = 74}, - [1434] = {.lex_state = 74}, - [1435] = {.lex_state = 969}, - [1436] = {.lex_state = 969}, - [1437] = {.lex_state = 976}, - [1438] = {.lex_state = 989}, - [1439] = {.lex_state = 989}, - [1440] = {.lex_state = 950}, - [1441] = {.lex_state = 74}, - [1442] = {.lex_state = 1048}, - [1443] = {.lex_state = 969}, - [1444] = {.lex_state = 939}, - [1445] = {.lex_state = 109}, - [1446] = {.lex_state = 976}, - [1447] = {.lex_state = 74}, - [1448] = {.lex_state = 969}, - [1449] = {.lex_state = 969}, - [1450] = {.lex_state = 969}, - [1451] = {.lex_state = 1015}, - [1452] = {.lex_state = 969}, - [1453] = {.lex_state = 950}, - [1454] = {.lex_state = 974}, - [1455] = {.lex_state = 129}, - [1456] = {.lex_state = 105}, - [1457] = {.lex_state = 999}, - [1458] = {.lex_state = 74}, - [1459] = {.lex_state = 999}, + [787] = {.lex_state = 39}, + [788] = {.lex_state = 39}, + [789] = {.lex_state = 39}, + [790] = {.lex_state = 39}, + [791] = {.lex_state = 39}, + [792] = {.lex_state = 39}, + [793] = {.lex_state = 39}, + [794] = {.lex_state = 39}, + [795] = {.lex_state = 39}, + [796] = {.lex_state = 39}, + [797] = {.lex_state = 39}, + [798] = {.lex_state = 39}, + [799] = {.lex_state = 39}, + [800] = {.lex_state = 39}, + [801] = {.lex_state = 39}, + [802] = {.lex_state = 39}, + [803] = {.lex_state = 39}, + [804] = {.lex_state = 39}, + [805] = {.lex_state = 39}, + [806] = {.lex_state = 39}, + [807] = {.lex_state = 39}, + [808] = {.lex_state = 39}, + [809] = {.lex_state = 39}, + [810] = {.lex_state = 39}, + [811] = {.lex_state = 39}, + [812] = {.lex_state = 39}, + [813] = {.lex_state = 39}, + [814] = {.lex_state = 39}, + [815] = {.lex_state = 39}, + [816] = {.lex_state = 39}, + [817] = {.lex_state = 39}, + [818] = {.lex_state = 39}, + [819] = {.lex_state = 39}, + [820] = {.lex_state = 39}, + [821] = {.lex_state = 39}, + [822] = {.lex_state = 39}, + [823] = {.lex_state = 39}, + [824] = {.lex_state = 39}, + [825] = {.lex_state = 39}, + [826] = {.lex_state = 39}, + [827] = {.lex_state = 39}, + [828] = {.lex_state = 39}, + [829] = {.lex_state = 39}, + [830] = {.lex_state = 39}, + [831] = {.lex_state = 39}, + [832] = {.lex_state = 39}, + [833] = {.lex_state = 39}, + [834] = {.lex_state = 39}, + [835] = {.lex_state = 39}, + [836] = {.lex_state = 39}, + [837] = {.lex_state = 39}, + [838] = {.lex_state = 39}, + [839] = {.lex_state = 39}, + [840] = {.lex_state = 39}, + [841] = {.lex_state = 39}, + [842] = {.lex_state = 39}, + [843] = {.lex_state = 39}, + [844] = {.lex_state = 39}, + [845] = {.lex_state = 39}, + [846] = {.lex_state = 39}, + [847] = {.lex_state = 39}, + [848] = {.lex_state = 39}, + [849] = {.lex_state = 39}, + [850] = {.lex_state = 39}, + [851] = {.lex_state = 39}, + [852] = {.lex_state = 39}, + [853] = {.lex_state = 39}, + [854] = {.lex_state = 39}, + [855] = {.lex_state = 39}, + [856] = {.lex_state = 39}, + [857] = {.lex_state = 39}, + [858] = {.lex_state = 39}, + [859] = {.lex_state = 39}, + [860] = {.lex_state = 39}, + [861] = {.lex_state = 39}, + [862] = {.lex_state = 39}, + [863] = {.lex_state = 39}, + [864] = {.lex_state = 39}, + [865] = {.lex_state = 39}, + [866] = {.lex_state = 39}, + [867] = {.lex_state = 39}, + [868] = {.lex_state = 39}, + [869] = {.lex_state = 39}, + [870] = {.lex_state = 39}, + [871] = {.lex_state = 39}, + [872] = {.lex_state = 39}, + [873] = {.lex_state = 39}, + [874] = {.lex_state = 39}, + [875] = {.lex_state = 39}, + [876] = {.lex_state = 39}, + [877] = {.lex_state = 39}, + [878] = {.lex_state = 39}, + [879] = {.lex_state = 39}, + [880] = {.lex_state = 39}, + [881] = {.lex_state = 39}, + [882] = {.lex_state = 39}, + [883] = {.lex_state = 39}, + [884] = {.lex_state = 39}, + [885] = {.lex_state = 39}, + [886] = {.lex_state = 39}, + [887] = {.lex_state = 39}, + [888] = {.lex_state = 39}, + [889] = {.lex_state = 39}, + [890] = {.lex_state = 39}, + [891] = {.lex_state = 39}, + [892] = {.lex_state = 39}, + [893] = {.lex_state = 39}, + [894] = {.lex_state = 39}, + [895] = {.lex_state = 39}, + [896] = {.lex_state = 39}, + [897] = {.lex_state = 39}, + [898] = {.lex_state = 39}, + [899] = {.lex_state = 39}, + [900] = {.lex_state = 39}, + [901] = {.lex_state = 39}, + [902] = {.lex_state = 39}, + [903] = {.lex_state = 39}, + [904] = {.lex_state = 39}, + [905] = {.lex_state = 39}, + [906] = {.lex_state = 39}, + [907] = {.lex_state = 39}, + [908] = {.lex_state = 39}, + [909] = {.lex_state = 39}, + [910] = {.lex_state = 39}, + [911] = {.lex_state = 39}, + [912] = {.lex_state = 39}, + [913] = {.lex_state = 39}, + [914] = {.lex_state = 39}, + [915] = {.lex_state = 39}, + [916] = {.lex_state = 39}, + [917] = {.lex_state = 39}, + [918] = {.lex_state = 39}, + [919] = {.lex_state = 39}, + [920] = {.lex_state = 39}, + [921] = {.lex_state = 39}, + [922] = {.lex_state = 39}, + [923] = {.lex_state = 39}, + [924] = {.lex_state = 39}, + [925] = {.lex_state = 39}, + [926] = {.lex_state = 39}, + [927] = {.lex_state = 39}, + [928] = {.lex_state = 39}, + [929] = {.lex_state = 39}, + [930] = {.lex_state = 39}, + [931] = {.lex_state = 39}, + [932] = {.lex_state = 39}, + [933] = {.lex_state = 947}, + [934] = {.lex_state = 95}, + [935] = {.lex_state = 95}, + [936] = {.lex_state = 39}, + [937] = {.lex_state = 39}, + [938] = {.lex_state = 39}, + [939] = {.lex_state = 39}, + [940] = {.lex_state = 39}, + [941] = {.lex_state = 39}, + [942] = {.lex_state = 39}, + [943] = {.lex_state = 39}, + [944] = {.lex_state = 39}, + [945] = {.lex_state = 39}, + [946] = {.lex_state = 39}, + [947] = {.lex_state = 39}, + [948] = {.lex_state = 39}, + [949] = {.lex_state = 39}, + [950] = {.lex_state = 39}, + [951] = {.lex_state = 39}, + [952] = {.lex_state = 39}, + [953] = {.lex_state = 39}, + [954] = {.lex_state = 39}, + [955] = {.lex_state = 39}, + [956] = {.lex_state = 39}, + [957] = {.lex_state = 39}, + [958] = {.lex_state = 39}, + [959] = {.lex_state = 39}, + [960] = {.lex_state = 39}, + [961] = {.lex_state = 39}, + [962] = {.lex_state = 39}, + [963] = {.lex_state = 39}, + [964] = {.lex_state = 39}, + [965] = {.lex_state = 39}, + [966] = {.lex_state = 39}, + [967] = {.lex_state = 947}, + [968] = {.lex_state = 39}, + [969] = {.lex_state = 39}, + [970] = {.lex_state = 39}, + [971] = {.lex_state = 39}, + [972] = {.lex_state = 39}, + [973] = {.lex_state = 39}, + [974] = {.lex_state = 39}, + [975] = {.lex_state = 39}, + [976] = {.lex_state = 39}, + [977] = {.lex_state = 39}, + [978] = {.lex_state = 39}, + [979] = {.lex_state = 39}, + [980] = {.lex_state = 39}, + [981] = {.lex_state = 39}, + [982] = {.lex_state = 39}, + [983] = {.lex_state = 39}, + [984] = {.lex_state = 39}, + [985] = {.lex_state = 39}, + [986] = {.lex_state = 39}, + [987] = {.lex_state = 39}, + [988] = {.lex_state = 39}, + [989] = {.lex_state = 39}, + [990] = {.lex_state = 39}, + [991] = {.lex_state = 39}, + [992] = {.lex_state = 39}, + [993] = {.lex_state = 39}, + [994] = {.lex_state = 39}, + [995] = {.lex_state = 39}, + [996] = {.lex_state = 39}, + [997] = {.lex_state = 39}, + [998] = {.lex_state = 39}, + [999] = {.lex_state = 39}, + [1000] = {.lex_state = 39}, + [1001] = {.lex_state = 39}, + [1002] = {.lex_state = 39}, + [1003] = {.lex_state = 39}, + [1004] = {.lex_state = 39}, + [1005] = {.lex_state = 39}, + [1006] = {.lex_state = 39}, + [1007] = {.lex_state = 39}, + [1008] = {.lex_state = 39}, + [1009] = {.lex_state = 39}, + [1010] = {.lex_state = 39}, + [1011] = {.lex_state = 39}, + [1012] = {.lex_state = 39}, + [1013] = {.lex_state = 39}, + [1014] = {.lex_state = 39}, + [1015] = {.lex_state = 39}, + [1016] = {.lex_state = 39}, + [1017] = {.lex_state = 39}, + [1018] = {.lex_state = 39}, + [1019] = {.lex_state = 39}, + [1020] = {.lex_state = 39}, + [1021] = {.lex_state = 39}, + [1022] = {.lex_state = 39}, + [1023] = {.lex_state = 39}, + [1024] = {.lex_state = 39}, + [1025] = {.lex_state = 39}, + [1026] = {.lex_state = 39}, + [1027] = {.lex_state = 39}, + [1028] = {.lex_state = 39}, + [1029] = {.lex_state = 39}, + [1030] = {.lex_state = 39}, + [1031] = {.lex_state = 39}, + [1032] = {.lex_state = 39}, + [1033] = {.lex_state = 39}, + [1034] = {.lex_state = 42}, + [1035] = {.lex_state = 42}, + [1036] = {.lex_state = 42}, + [1037] = {.lex_state = 46}, + [1038] = {.lex_state = 46}, + [1039] = {.lex_state = 42}, + [1040] = {.lex_state = 46}, + [1041] = {.lex_state = 46}, + [1042] = {.lex_state = 46}, + [1043] = {.lex_state = 46}, + [1044] = {.lex_state = 46}, + [1045] = {.lex_state = 46}, + [1046] = {.lex_state = 34}, + [1047] = {.lex_state = 34}, + [1048] = {.lex_state = 207}, + [1049] = {.lex_state = 207}, + [1050] = {.lex_state = 207}, + [1051] = {.lex_state = 207}, + [1052] = {.lex_state = 207}, + [1053] = {.lex_state = 207}, + [1054] = {.lex_state = 99}, + [1055] = {.lex_state = 46}, + [1056] = {.lex_state = 34}, + [1057] = {.lex_state = 42}, + [1058] = {.lex_state = 46}, + [1059] = {.lex_state = 46}, + [1060] = {.lex_state = 198}, + [1061] = {.lex_state = 36}, + [1062] = {.lex_state = 46}, + [1063] = {.lex_state = 46}, + [1064] = {.lex_state = 46}, + [1065] = {.lex_state = 198}, + [1066] = {.lex_state = 42}, + [1067] = {.lex_state = 34}, + [1068] = {.lex_state = 929}, + [1069] = {.lex_state = 203}, + [1070] = {.lex_state = 34}, + [1071] = {.lex_state = 203}, + [1072] = {.lex_state = 46}, + [1073] = {.lex_state = 46}, + [1074] = {.lex_state = 46}, + [1075] = {.lex_state = 40}, + [1076] = {.lex_state = 939}, + [1077] = {.lex_state = 930}, + [1078] = {.lex_state = 99}, + [1079] = {.lex_state = 99}, + [1080] = {.lex_state = 928}, + [1081] = {.lex_state = 928}, + [1082] = {.lex_state = 929}, + [1083] = {.lex_state = 36}, + [1084] = {.lex_state = 990}, + [1085] = {.lex_state = 943}, + [1086] = {.lex_state = 118}, + [1087] = {.lex_state = 40}, + [1088] = {.lex_state = 34}, + [1089] = {.lex_state = 928}, + [1090] = {.lex_state = 942}, + [1091] = {.lex_state = 99}, + [1092] = {.lex_state = 99}, + [1093] = {.lex_state = 99}, + [1094] = {.lex_state = 943}, + [1095] = {.lex_state = 99}, + [1096] = {.lex_state = 939}, + [1097] = {.lex_state = 930}, + [1098] = {.lex_state = 932}, + [1099] = {.lex_state = 118}, + [1100] = {.lex_state = 932}, + [1101] = {.lex_state = 971}, + [1102] = {.lex_state = 967}, + [1103] = {.lex_state = 118}, + [1104] = {.lex_state = 928}, + [1105] = {.lex_state = 942}, + [1106] = {.lex_state = 933}, + [1107] = {.lex_state = 990}, + [1108] = {.lex_state = 942}, + [1109] = {.lex_state = 942}, + [1110] = {.lex_state = 990}, + [1111] = {.lex_state = 990}, + [1112] = {.lex_state = 99}, + [1113] = {.lex_state = 40}, + [1114] = {.lex_state = 962}, + [1115] = {.lex_state = 40}, + [1116] = {.lex_state = 933}, + [1117] = {.lex_state = 932}, + [1118] = {.lex_state = 933}, + [1119] = {.lex_state = 933}, + [1120] = {.lex_state = 933}, + [1121] = {.lex_state = 962}, + [1122] = {.lex_state = 940}, + [1123] = {.lex_state = 971}, + [1124] = {.lex_state = 967}, + [1125] = {.lex_state = 42}, + [1126] = {.lex_state = 968}, + [1127] = {.lex_state = 968}, + [1128] = {.lex_state = 118}, + [1129] = {.lex_state = 118}, + [1130] = {.lex_state = 118}, + [1131] = {.lex_state = 118}, + [1132] = {.lex_state = 118}, + [1133] = {.lex_state = 990}, + [1134] = {.lex_state = 990}, + [1135] = {.lex_state = 99}, + [1136] = {.lex_state = 942}, + [1137] = {.lex_state = 990}, + [1138] = {.lex_state = 990}, + [1139] = {.lex_state = 990}, + [1140] = {.lex_state = 40}, + [1141] = {.lex_state = 40}, + [1142] = {.lex_state = 40}, + [1143] = {.lex_state = 40}, + [1144] = {.lex_state = 40}, + [1145] = {.lex_state = 40}, + [1146] = {.lex_state = 99}, + [1147] = {.lex_state = 42}, + [1148] = {.lex_state = 933}, + [1149] = {.lex_state = 40}, + [1150] = {.lex_state = 40}, + [1151] = {.lex_state = 99}, + [1152] = {.lex_state = 40}, + [1153] = {.lex_state = 942}, + [1154] = {.lex_state = 942}, + [1155] = {.lex_state = 40}, + [1156] = {.lex_state = 40}, + [1157] = {.lex_state = 40}, + [1158] = {.lex_state = 40}, + [1159] = {.lex_state = 40}, + [1160] = {.lex_state = 40}, + [1161] = {.lex_state = 40}, + [1162] = {.lex_state = 40}, + [1163] = {.lex_state = 40}, + [1164] = {.lex_state = 40}, + [1165] = {.lex_state = 40}, + [1166] = {.lex_state = 40}, + [1167] = {.lex_state = 40}, + [1168] = {.lex_state = 40}, + [1169] = {.lex_state = 40}, + [1170] = {.lex_state = 40}, + [1171] = {.lex_state = 40}, + [1172] = {.lex_state = 40}, + [1173] = {.lex_state = 40}, + [1174] = {.lex_state = 40}, + [1175] = {.lex_state = 40}, + [1176] = {.lex_state = 40}, + [1177] = {.lex_state = 40}, + [1178] = {.lex_state = 40}, + [1179] = {.lex_state = 40}, + [1180] = {.lex_state = 40}, + [1181] = {.lex_state = 40}, + [1182] = {.lex_state = 40}, + [1183] = {.lex_state = 40}, + [1184] = {.lex_state = 40}, + [1185] = {.lex_state = 40}, + [1186] = {.lex_state = 40}, + [1187] = {.lex_state = 40}, + [1188] = {.lex_state = 40}, + [1189] = {.lex_state = 990}, + [1190] = {.lex_state = 40}, + [1191] = {.lex_state = 40}, + [1192] = {.lex_state = 40}, + [1193] = {.lex_state = 40}, + [1194] = {.lex_state = 40}, + [1195] = {.lex_state = 40}, + [1196] = {.lex_state = 40}, + [1197] = {.lex_state = 40}, + [1198] = {.lex_state = 40}, + [1199] = {.lex_state = 40}, + [1200] = {.lex_state = 942}, + [1201] = {.lex_state = 40}, + [1202] = {.lex_state = 932}, + [1203] = {.lex_state = 40}, + [1204] = {.lex_state = 990}, + [1205] = {.lex_state = 962}, + [1206] = {.lex_state = 40}, + [1207] = {.lex_state = 931}, + [1208] = {.lex_state = 962}, + [1209] = {.lex_state = 968}, + [1210] = {.lex_state = 933}, + [1211] = {.lex_state = 969}, + [1212] = {.lex_state = 118}, + [1213] = {.lex_state = 969}, + [1214] = {.lex_state = 969}, + [1215] = {.lex_state = 933}, + [1216] = {.lex_state = 969}, + [1217] = {.lex_state = 99}, + [1218] = {.lex_state = 118}, + [1219] = {.lex_state = 990}, + [1220] = {.lex_state = 118}, + [1221] = {.lex_state = 933}, + [1222] = {.lex_state = 934}, + [1223] = {.lex_state = 940}, + [1224] = {.lex_state = 990}, + [1225] = {.lex_state = 990}, + [1226] = {.lex_state = 990}, + [1227] = {.lex_state = 990}, + [1228] = {.lex_state = 990}, + [1229] = {.lex_state = 931}, + [1230] = {.lex_state = 962}, + [1231] = {.lex_state = 962}, + [1232] = {.lex_state = 42}, + [1233] = {.lex_state = 969}, + [1234] = {.lex_state = 962}, + [1235] = {.lex_state = 968}, + [1236] = {.lex_state = 933}, + [1237] = {.lex_state = 962}, + [1238] = {.lex_state = 934}, + [1239] = {.lex_state = 990}, + [1240] = {.lex_state = 990}, + [1241] = {.lex_state = 990}, + [1242] = {.lex_state = 934}, + [1243] = {.lex_state = 935}, + [1244] = {.lex_state = 969}, + [1245] = {.lex_state = 961}, + [1246] = {.lex_state = 990}, + [1247] = {.lex_state = 935}, + [1248] = {.lex_state = 935}, + [1249] = {.lex_state = 960}, + [1250] = {.lex_state = 969}, + [1251] = {.lex_state = 935}, + [1252] = {.lex_state = 40}, + [1253] = {.lex_state = 102}, + [1254] = {.lex_state = 118}, + [1255] = {.lex_state = 960}, + [1256] = {.lex_state = 990}, + [1257] = {.lex_state = 990}, + [1258] = {.lex_state = 962}, + [1259] = {.lex_state = 960}, + [1260] = {.lex_state = 959}, + [1261] = {.lex_state = 960}, + [1262] = {.lex_state = 969}, + [1263] = {.lex_state = 103}, + [1264] = {.lex_state = 935}, + [1265] = {.lex_state = 960}, + [1266] = {.lex_state = 962}, + [1267] = {.lex_state = 99}, + [1268] = {.lex_state = 990}, + [1269] = {.lex_state = 969}, + [1270] = {.lex_state = 935}, + [1271] = {.lex_state = 992}, + [1272] = {.lex_state = 998}, + [1273] = {.lex_state = 934}, + [1274] = {.lex_state = 969}, + [1275] = {.lex_state = 990}, + [1276] = {.lex_state = 99}, + [1277] = {.lex_state = 119}, + [1278] = {.lex_state = 121}, + [1279] = {.lex_state = 104}, + [1280] = {.lex_state = 960}, + [1281] = {.lex_state = 965}, + [1282] = {.lex_state = 961}, + [1283] = {.lex_state = 960}, + [1284] = {.lex_state = 960}, + [1285] = {.lex_state = 960}, + [1286] = {.lex_state = 960}, + [1287] = {.lex_state = 1006}, + [1288] = {.lex_state = 104}, + [1289] = {.lex_state = 936}, + [1290] = {.lex_state = 1002}, + [1291] = {.lex_state = 1002}, + [1292] = {.lex_state = 962}, + [1293] = {.lex_state = 935}, + [1294] = {.lex_state = 962}, + [1295] = {.lex_state = 962}, + [1296] = {.lex_state = 941}, + [1297] = {.lex_state = 935}, + [1298] = {.lex_state = 132}, + [1299] = {.lex_state = 935}, + [1300] = {.lex_state = 957}, + [1301] = {.lex_state = 957}, + [1302] = {.lex_state = 935}, + [1303] = {.lex_state = 118}, + [1304] = {.lex_state = 935}, + [1305] = {.lex_state = 1035}, + [1306] = {.lex_state = 99}, + [1307] = {.lex_state = 134}, + [1308] = {.lex_state = 965}, + [1309] = {.lex_state = 965}, + [1310] = {.lex_state = 965}, + [1311] = {.lex_state = 965}, + [1312] = {.lex_state = 965}, + [1313] = {.lex_state = 965}, + [1314] = {.lex_state = 965}, + [1315] = {.lex_state = 965}, + [1316] = {.lex_state = 965}, + [1317] = {.lex_state = 965}, + [1318] = {.lex_state = 965}, + [1319] = {.lex_state = 965}, + [1320] = {.lex_state = 965}, + [1321] = {.lex_state = 965}, + [1322] = {.lex_state = 965}, + [1323] = {.lex_state = 965}, + [1324] = {.lex_state = 965}, + [1325] = {.lex_state = 965}, + [1326] = {.lex_state = 965}, + [1327] = {.lex_state = 965}, + [1328] = {.lex_state = 992}, + [1329] = {.lex_state = 965}, + [1330] = {.lex_state = 990}, + [1331] = {.lex_state = 998}, + [1332] = {.lex_state = 965}, + [1333] = {.lex_state = 935}, + [1334] = {.lex_state = 959}, + [1335] = {.lex_state = 1033}, + [1336] = {.lex_state = 123}, + [1337] = {.lex_state = 965}, + [1338] = {.lex_state = 965}, + [1339] = {.lex_state = 105}, + [1340] = {.lex_state = 937}, + [1341] = {.lex_state = 937}, + [1342] = {.lex_state = 105}, + [1343] = {.lex_state = 1006}, + [1344] = {.lex_state = 1006}, + [1345] = {.lex_state = 1006}, + [1346] = {.lex_state = 1006}, + [1347] = {.lex_state = 965}, + [1348] = {.lex_state = 1035}, + [1349] = {.lex_state = 965}, + [1350] = {.lex_state = 990}, + [1351] = {.lex_state = 990}, + [1352] = {.lex_state = 958}, + [1353] = {.lex_state = 958}, + [1354] = {.lex_state = 958}, + [1355] = {.lex_state = 958}, + [1356] = {.lex_state = 958}, + [1357] = {.lex_state = 958}, + [1358] = {.lex_state = 958}, + [1359] = {.lex_state = 105}, + [1360] = {.lex_state = 965}, + [1361] = {.lex_state = 1033}, + [1362] = {.lex_state = 957}, + [1363] = {.lex_state = 1037}, + [1364] = {.lex_state = 958}, + [1365] = {.lex_state = 136}, + [1366] = {.lex_state = 936}, + [1367] = {.lex_state = 1037}, + [1368] = {.lex_state = 965}, + [1369] = {.lex_state = 965}, + [1370] = {.lex_state = 958}, + [1371] = {.lex_state = 100}, + [1372] = {.lex_state = 965}, + [1373] = {.lex_state = 136}, + [1374] = {.lex_state = 965}, + [1375] = {.lex_state = 100}, + [1376] = {.lex_state = 962}, + [1377] = {.lex_state = 965}, + [1378] = {.lex_state = 123}, + [1379] = {.lex_state = 962}, + [1380] = {.lex_state = 962}, + [1381] = {.lex_state = 118}, + [1382] = {.lex_state = 105}, + [1383] = {.lex_state = 965}, + [1384] = {.lex_state = 1002}, + [1385] = {.lex_state = 118}, + [1386] = {.lex_state = 1006}, + [1387] = {.lex_state = 958}, + [1388] = {.lex_state = 1002}, + [1389] = {.lex_state = 958}, + [1390] = {.lex_state = 941}, + [1391] = {.lex_state = 958}, + [1392] = {.lex_state = 965}, + [1393] = {.lex_state = 965}, + [1394] = {.lex_state = 965}, + [1395] = {.lex_state = 958}, + [1396] = {.lex_state = 965}, + [1397] = {.lex_state = 965}, + [1398] = {.lex_state = 965}, + [1399] = {.lex_state = 965}, + [1400] = {.lex_state = 965}, + [1401] = {.lex_state = 958}, + [1402] = {.lex_state = 125}, + [1403] = {.lex_state = 957}, + [1404] = {.lex_state = 965}, + [1405] = {.lex_state = 965}, + [1406] = {.lex_state = 965}, + [1407] = {.lex_state = 965}, + [1408] = {.lex_state = 965}, + [1409] = {.lex_state = 965}, + [1410] = {.lex_state = 958}, + [1411] = {.lex_state = 938}, + [1412] = {.lex_state = 927}, + [1413] = {.lex_state = 927}, + [1414] = {.lex_state = 1039}, + [1415] = {.lex_state = 101}, + [1416] = {.lex_state = 937}, + [1417] = {.lex_state = 71}, + [1418] = {.lex_state = 101}, + [1419] = {.lex_state = 1039}, + [1420] = {.lex_state = 138}, + [1421] = {.lex_state = 1037}, + [1422] = {.lex_state = 71}, + [1423] = {.lex_state = 938}, + [1424] = {.lex_state = 71}, + [1425] = {.lex_state = 1039}, + [1426] = {.lex_state = 937}, + [1427] = {.lex_state = 1039}, + [1428] = {.lex_state = 958}, + [1429] = {.lex_state = 71}, + [1430] = {.lex_state = 958}, + [1431] = {.lex_state = 958}, + [1432] = {.lex_state = 125}, + [1433] = {.lex_state = 990}, + [1434] = {.lex_state = 138}, + [1435] = {.lex_state = 938}, + [1436] = {.lex_state = 105}, + [1437] = {.lex_state = 125}, + [1438] = {.lex_state = 966}, + [1439] = {.lex_state = 958}, + [1440] = {.lex_state = 958}, + [1441] = {.lex_state = 138}, + [1442] = {.lex_state = 938}, + [1443] = {.lex_state = 958}, + [1444] = {.lex_state = 965}, + [1445] = {.lex_state = 71}, + [1446] = {.lex_state = 71}, + [1447] = {.lex_state = 958}, + [1448] = {.lex_state = 963}, + [1449] = {.lex_state = 978}, + [1450] = {.lex_state = 963}, + [1451] = {.lex_state = 963}, + [1452] = {.lex_state = 125}, + [1453] = {.lex_state = 958}, + [1454] = {.lex_state = 1037}, + [1455] = {.lex_state = 958}, + [1456] = {.lex_state = 938}, + [1457] = {.lex_state = 938}, + [1458] = {.lex_state = 1006}, + [1459] = {.lex_state = 125}, [1460] = {.lex_state = 950}, - [1461] = {.lex_state = 74}, - [1462] = {.lex_state = 1036}, - [1463] = {.lex_state = 1036}, - [1464] = {.lex_state = 967}, - [1465] = {.lex_state = 969}, - [1466] = {.lex_state = 939}, - [1467] = {.lex_state = 129}, - [1468] = {.lex_state = 969}, - [1469] = {.lex_state = 1048}, - [1470] = {.lex_state = 969}, - [1471] = {.lex_state = 129}, - [1472] = {.lex_state = 939}, - [1473] = {.lex_state = 74}, - [1474] = {.lex_state = 981}, - [1475] = {.lex_state = 950}, - [1476] = {.lex_state = 984}, - [1477] = {.lex_state = 950}, - [1478] = {.lex_state = 939}, - [1479] = {.lex_state = 975}, - [1480] = {.lex_state = 939}, - [1481] = {.lex_state = 939}, - [1482] = {.lex_state = 965}, - [1483] = {.lex_state = 974}, - [1484] = {.lex_state = 121}, - [1485] = {.lex_state = 989}, - [1486] = {.lex_state = 989}, - [1487] = {.lex_state = 974}, - [1488] = {.lex_state = 976}, - [1489] = {.lex_state = 38}, - [1490] = {.lex_state = 990}, - [1491] = {.lex_state = 38}, - [1492] = {.lex_state = 990}, - [1493] = {.lex_state = 74}, - [1494] = {.lex_state = 939}, - [1495] = {.lex_state = 1036}, - [1496] = {.lex_state = 939}, - [1497] = {.lex_state = 1048}, - [1498] = {.lex_state = 962}, - [1499] = {.lex_state = 950}, - [1500] = {.lex_state = 1036}, - [1501] = {.lex_state = 939}, - [1502] = {.lex_state = 1048}, - [1503] = {.lex_state = 974}, - [1504] = {.lex_state = 1048}, - [1505] = {.lex_state = 939}, - [1506] = {.lex_state = 977}, - [1507] = {.lex_state = 981}, - [1508] = {.lex_state = 950}, - [1509] = {.lex_state = 962}, - [1510] = {.lex_state = 950}, - [1511] = {.lex_state = 989}, - [1512] = {.lex_state = 142}, - [1513] = {.lex_state = 1048}, - [1514] = {.lex_state = 74}, - [1515] = {.lex_state = 950}, - [1516] = {.lex_state = 974}, - [1517] = {.lex_state = 984}, - [1518] = {.lex_state = 984}, - [1519] = {.lex_state = 990}, - [1520] = {.lex_state = 74}, - [1521] = {.lex_state = 990}, - [1522] = {.lex_state = 989}, - [1523] = {.lex_state = 964}, - [1524] = {.lex_state = 38}, - [1525] = {.lex_state = 964}, - [1526] = {.lex_state = 974}, - [1527] = {.lex_state = 950}, - [1528] = {.lex_state = 961}, - [1529] = {.lex_state = 939}, - [1530] = {.lex_state = 1036}, - [1531] = {.lex_state = 1048}, - [1532] = {.lex_state = 976}, - [1533] = {.lex_state = 121}, - [1534] = {.lex_state = 990}, - [1535] = {.lex_state = 950}, - [1536] = {.lex_state = 967}, - [1537] = {.lex_state = 939}, - [1538] = {.lex_state = 976}, - [1539] = {.lex_state = 950}, - [1540] = {.lex_state = 989}, - [1541] = {.lex_state = 1036}, - [1542] = {.lex_state = 966}, - [1543] = {.lex_state = 966}, - [1544] = {.lex_state = 966}, - [1545] = {.lex_state = 966}, - [1546] = {.lex_state = 966}, + [1461] = {.lex_state = 101}, + [1462] = {.lex_state = 138}, + [1463] = {.lex_state = 938}, + [1464] = {.lex_state = 1006}, + [1465] = {.lex_state = 1039}, + [1466] = {.lex_state = 963}, + [1467] = {.lex_state = 958}, + [1468] = {.lex_state = 958}, + [1469] = {.lex_state = 1006}, + [1470] = {.lex_state = 1027}, + [1471] = {.lex_state = 1027}, + [1472] = {.lex_state = 958}, + [1473] = {.lex_state = 938}, + [1474] = {.lex_state = 1006}, + [1475] = {.lex_state = 978}, + [1476] = {.lex_state = 958}, + [1477] = {.lex_state = 963}, + [1478] = {.lex_state = 927}, + [1479] = {.lex_state = 927}, + [1480] = {.lex_state = 938}, + [1481] = {.lex_state = 978}, + [1482] = {.lex_state = 956}, + [1483] = {.lex_state = 927}, + [1484] = {.lex_state = 990}, + [1485] = {.lex_state = 71}, + [1486] = {.lex_state = 71}, + [1487] = {.lex_state = 958}, + [1488] = {.lex_state = 71}, + [1489] = {.lex_state = 71}, + [1490] = {.lex_state = 71}, + [1491] = {.lex_state = 958}, + [1492] = {.lex_state = 964}, + [1493] = {.lex_state = 965}, + [1494] = {.lex_state = 978}, + [1495] = {.lex_state = 71}, + [1496] = {.lex_state = 71}, + [1497] = {.lex_state = 71}, + [1498] = {.lex_state = 71}, + [1499] = {.lex_state = 71}, + [1500] = {.lex_state = 71}, + [1501] = {.lex_state = 71}, + [1502] = {.lex_state = 71}, + [1503] = {.lex_state = 978}, + [1504] = {.lex_state = 958}, + [1505] = {.lex_state = 958}, + [1506] = {.lex_state = 927}, + [1507] = {.lex_state = 927}, + [1508] = {.lex_state = 963}, + [1509] = {.lex_state = 979}, + [1510] = {.lex_state = 978}, + [1511] = {.lex_state = 938}, + [1512] = {.lex_state = 964}, + [1513] = {.lex_state = 954}, + [1514] = {.lex_state = 963}, + [1515] = {.lex_state = 979}, + [1516] = {.lex_state = 973}, + [1517] = {.lex_state = 1027}, + [1518] = {.lex_state = 1027}, + [1519] = {.lex_state = 71}, + [1520] = {.lex_state = 37}, + [1521] = {.lex_state = 965}, + [1522] = {.lex_state = 978}, + [1523] = {.lex_state = 71}, + [1524] = {.lex_state = 978}, + [1525] = {.lex_state = 71}, + [1526] = {.lex_state = 979}, + [1527] = {.lex_state = 979}, + [1528] = {.lex_state = 951}, + [1529] = {.lex_state = 938}, + [1530] = {.lex_state = 37}, + [1531] = {.lex_state = 927}, + [1532] = {.lex_state = 138}, + [1533] = {.lex_state = 927}, + [1534] = {.lex_state = 965}, + [1535] = {.lex_state = 956}, + [1536] = {.lex_state = 927}, + [1537] = {.lex_state = 927}, + [1538] = {.lex_state = 953}, + [1539] = {.lex_state = 963}, + [1540] = {.lex_state = 953}, + [1541] = {.lex_state = 1039}, + [1542] = {.lex_state = 938}, + [1543] = {.lex_state = 963}, + [1544] = {.lex_state = 973}, + [1545] = {.lex_state = 1039}, + [1546] = {.lex_state = 973}, [1547] = {.lex_state = 966}, - [1548] = {.lex_state = 966}, - [1549] = {.lex_state = 966}, - [1550] = {.lex_state = 966}, - [1551] = {.lex_state = 966}, - [1552] = {.lex_state = 966}, - [1553] = {.lex_state = 966}, - [1554] = {.lex_state = 966}, - [1555] = {.lex_state = 966}, - [1556] = {.lex_state = 966}, - [1557] = {.lex_state = 966}, - [1558] = {.lex_state = 966}, - [1559] = {.lex_state = 966}, - [1560] = {.lex_state = 966}, - [1561] = {.lex_state = 966}, - [1562] = {.lex_state = 966}, - [1563] = {.lex_state = 966}, - [1564] = {.lex_state = 966}, - [1565] = {.lex_state = 966}, - [1566] = {.lex_state = 966}, - [1567] = {.lex_state = 966}, - [1568] = {.lex_state = 966}, - [1569] = {.lex_state = 966}, - [1570] = {.lex_state = 144}, - [1571] = {.lex_state = 966}, - [1572] = {.lex_state = 144}, - [1573] = {.lex_state = 966}, - [1574] = {.lex_state = 966}, - [1575] = {.lex_state = 966}, - [1576] = {.lex_state = 966}, - [1577] = {.lex_state = 966}, - [1578] = {.lex_state = 966}, - [1579] = {.lex_state = 966}, - [1580] = {.lex_state = 966}, - [1581] = {.lex_state = 966}, - [1582] = {.lex_state = 966}, - [1583] = {.lex_state = 966}, - [1584] = {.lex_state = 966}, - [1585] = {.lex_state = 966}, - [1586] = {.lex_state = 966}, - [1587] = {.lex_state = 966}, - [1588] = {.lex_state = 966}, - [1589] = {.lex_state = 966}, - [1590] = {.lex_state = 966}, - [1591] = {.lex_state = 966}, - [1592] = {.lex_state = 966}, - [1593] = {.lex_state = 966}, - [1594] = {.lex_state = 966}, - [1595] = {.lex_state = 966}, - [1596] = {.lex_state = 966}, - [1597] = {.lex_state = 966}, - [1598] = {.lex_state = 144}, - [1599] = {.lex_state = 976}, - [1600] = {.lex_state = 976}, - [1601] = {.lex_state = 976}, - [1602] = {.lex_state = 964}, - [1603] = {.lex_state = 964}, - [1604] = {.lex_state = 966}, - [1605] = {.lex_state = 966}, - [1606] = {.lex_state = 74}, - [1607] = {.lex_state = 984}, - [1608] = {.lex_state = 966}, - [1609] = {.lex_state = 966}, - [1610] = {.lex_state = 981}, - [1611] = {.lex_state = 966}, - [1612] = {.lex_state = 966}, - [1613] = {.lex_state = 990}, - [1614] = {.lex_state = 74}, - [1615] = {.lex_state = 74}, - [1616] = {.lex_state = 74}, - [1617] = {.lex_state = 74}, - [1618] = {.lex_state = 74}, - [1619] = {.lex_state = 74}, - [1620] = {.lex_state = 74}, - [1621] = {.lex_state = 990}, - [1622] = {.lex_state = 74}, - [1623] = {.lex_state = 74}, - [1624] = {.lex_state = 990}, - [1625] = {.lex_state = 990}, - [1626] = {.lex_state = 74}, - [1627] = {.lex_state = 74}, - [1628] = {.lex_state = 74}, - [1629] = {.lex_state = 74}, - [1630] = {.lex_state = 74}, - [1631] = {.lex_state = 74}, - [1632] = {.lex_state = 966}, - [1633] = {.lex_state = 990}, - [1634] = {.lex_state = 209}, - [1635] = {.lex_state = 209}, - [1636] = {.lex_state = 1036}, - [1637] = {.lex_state = 1036}, - [1638] = {.lex_state = 984}, - [1639] = {.lex_state = 209}, - [1640] = {.lex_state = 966}, - [1641] = {.lex_state = 966}, - [1642] = {.lex_state = 966}, - [1643] = {.lex_state = 966}, - [1644] = {.lex_state = 74}, - [1645] = {.lex_state = 74}, - [1646] = {.lex_state = 939}, - [1647] = {.lex_state = 144}, - [1648] = {.lex_state = 144}, - [1649] = {.lex_state = 74}, - [1650] = {.lex_state = 984}, - [1651] = {.lex_state = 939}, - [1652] = {.lex_state = 144}, - [1653] = {.lex_state = 962}, - [1654] = {.lex_state = 144}, - [1655] = {.lex_state = 144}, - [1656] = {.lex_state = 74}, - [1657] = {.lex_state = 966}, - [1658] = {.lex_state = 144}, - [1659] = {.lex_state = 144}, - [1660] = {.lex_state = 144}, - [1661] = {.lex_state = 144}, - [1662] = {.lex_state = 144}, - [1663] = {.lex_state = 144}, - [1664] = {.lex_state = 144}, - [1665] = {.lex_state = 144}, - [1666] = {.lex_state = 144}, - [1667] = {.lex_state = 144}, - [1668] = {.lex_state = 144}, - [1669] = {.lex_state = 144}, - [1670] = {.lex_state = 144}, - [1671] = {.lex_state = 144}, - [1672] = {.lex_state = 144}, - [1673] = {.lex_state = 144}, - [1674] = {.lex_state = 104}, - [1675] = {.lex_state = 74}, - [1676] = {.lex_state = 104}, - [1677] = {.lex_state = 74}, - [1678] = {.lex_state = 962}, - [1679] = {.lex_state = 966}, - [1680] = {.lex_state = 74}, - [1681] = {.lex_state = 74}, - [1682] = {.lex_state = 74}, - [1683] = {.lex_state = 74}, - [1684] = {.lex_state = 74}, - [1685] = {.lex_state = 74}, - [1686] = {.lex_state = 74}, - [1687] = {.lex_state = 74}, - [1688] = {.lex_state = 74}, - [1689] = {.lex_state = 74}, - [1690] = {.lex_state = 74}, - [1691] = {.lex_state = 74}, - [1692] = {.lex_state = 74}, - [1693] = {.lex_state = 74}, - [1694] = {.lex_state = 74}, - [1695] = {.lex_state = 74}, - [1696] = {.lex_state = 74}, - [1697] = {.lex_state = 74}, - [1698] = {.lex_state = 74}, - [1699] = {.lex_state = 74}, - [1700] = {.lex_state = 74}, - [1701] = {.lex_state = 74}, - [1702] = {.lex_state = 74}, - [1703] = {.lex_state = 74}, - [1704] = {.lex_state = 74}, - [1705] = {.lex_state = 74}, - [1706] = {.lex_state = 965}, - [1707] = {.lex_state = 144}, - [1708] = {.lex_state = 74}, - [1709] = {.lex_state = 74}, - [1710] = {.lex_state = 144}, - [1711] = {.lex_state = 74}, - [1712] = {.lex_state = 74}, - [1713] = {.lex_state = 144}, - [1714] = {.lex_state = 74}, - [1715] = {.lex_state = 74}, - [1716] = {.lex_state = 981}, - [1717] = {.lex_state = 1036}, - [1718] = {.lex_state = 966}, - [1719] = {.lex_state = 966}, - [1720] = {.lex_state = 966}, - [1721] = {.lex_state = 966}, - [1722] = {.lex_state = 966}, - [1723] = {.lex_state = 966}, - [1724] = {.lex_state = 1036}, - [1725] = {.lex_state = 209}, - [1726] = {.lex_state = 966}, - [1727] = {.lex_state = 966}, - [1728] = {.lex_state = 966}, - [1729] = {.lex_state = 966}, - [1730] = {.lex_state = 209}, - [1731] = {.lex_state = 209}, - [1732] = {.lex_state = 209}, - [1733] = {.lex_state = 209}, - [1734] = {.lex_state = 1036}, - [1735] = {.lex_state = 1036}, - [1736] = {.lex_state = 1036}, - [1737] = {.lex_state = 1036}, - [1738] = {.lex_state = 1036}, - [1739] = {.lex_state = 1036}, - [1740] = {.lex_state = 1036}, - [1741] = {.lex_state = 1036}, - [1742] = {.lex_state = 1036}, - [1743] = {.lex_state = 1036}, - [1744] = {.lex_state = 1036}, - [1745] = {.lex_state = 1036}, - [1746] = {.lex_state = 1036}, - [1747] = {.lex_state = 1036}, - [1748] = {.lex_state = 1036}, - [1749] = {.lex_state = 1036}, - [1750] = {.lex_state = 1036}, - [1751] = {.lex_state = 1036}, - [1752] = {.lex_state = 1036}, - [1753] = {.lex_state = 1036}, - [1754] = {.lex_state = 1036}, - [1755] = {.lex_state = 966}, - [1756] = {.lex_state = 144}, - [1757] = {.lex_state = 966}, - [1758] = {.lex_state = 122}, - [1759] = {.lex_state = 1036}, - [1760] = {.lex_state = 122}, - [1761] = {.lex_state = 122}, - [1762] = {.lex_state = 122}, - [1763] = {.lex_state = 122}, - [1764] = {.lex_state = 122}, - [1765] = {.lex_state = 122}, - [1766] = {.lex_state = 122}, - [1767] = {.lex_state = 122}, - [1768] = {.lex_state = 966}, - [1769] = {.lex_state = 122}, - [1770] = {.lex_state = 966}, - [1771] = {.lex_state = 122}, - [1772] = {.lex_state = 121}, - [1773] = {.lex_state = 1036}, - [1774] = {.lex_state = 103}, - [1775] = {.lex_state = 122}, - [1776] = {.lex_state = 966}, - [1777] = {.lex_state = 122}, - [1778] = {.lex_state = 966}, - [1779] = {.lex_state = 1036}, - [1780] = {.lex_state = 1036}, - [1781] = {.lex_state = 1036}, - [1782] = {.lex_state = 121}, - [1783] = {.lex_state = 122}, - [1784] = {.lex_state = 966}, - [1785] = {.lex_state = 966}, - [1786] = {.lex_state = 966}, - [1787] = {.lex_state = 966}, - [1788] = {.lex_state = 966}, - [1789] = {.lex_state = 966}, - [1790] = {.lex_state = 966}, - [1791] = {.lex_state = 122}, - [1792] = {.lex_state = 1036}, - [1793] = {.lex_state = 966}, - [1794] = {.lex_state = 966}, - [1795] = {.lex_state = 1036}, - [1796] = {.lex_state = 1036}, - [1797] = {.lex_state = 122}, - [1798] = {.lex_state = 966}, - [1799] = {.lex_state = 966}, - [1800] = {.lex_state = 122}, - [1801] = {.lex_state = 1036}, - [1802] = {.lex_state = 1036}, - [1803] = {.lex_state = 1036}, - [1804] = {.lex_state = 1036}, - [1805] = {.lex_state = 1036}, - [1806] = {.lex_state = 1036}, - [1807] = {.lex_state = 966}, - [1808] = {.lex_state = 966}, - [1809] = {.lex_state = 1036}, - [1810] = {.lex_state = 1036}, - [1811] = {.lex_state = 966}, - [1812] = {.lex_state = 966}, - [1813] = {.lex_state = 122}, - [1814] = {.lex_state = 966}, - [1815] = {.lex_state = 966}, - [1816] = {.lex_state = 966}, - [1817] = {.lex_state = 122}, - [1818] = {.lex_state = 966}, - [1819] = {.lex_state = 966}, - [1820] = {.lex_state = 966}, - [1821] = {.lex_state = 122}, - [1822] = {.lex_state = 966}, - [1823] = {.lex_state = 966}, - [1824] = {.lex_state = 966}, - [1825] = {.lex_state = 122}, - [1826] = {.lex_state = 966}, - [1827] = {.lex_state = 966}, - [1828] = {.lex_state = 966}, - [1829] = {.lex_state = 122}, - [1830] = {.lex_state = 122}, - [1831] = {.lex_state = 966}, - [1832] = {.lex_state = 966}, - [1833] = {.lex_state = 966}, - [1834] = {.lex_state = 1036}, - [1835] = {.lex_state = 1036}, - [1836] = {.lex_state = 1036}, - [1837] = {.lex_state = 1036}, - [1838] = {.lex_state = 122}, - [1839] = {.lex_state = 966}, - [1840] = {.lex_state = 966}, - [1841] = {.lex_state = 966}, - [1842] = {.lex_state = 122}, - [1843] = {.lex_state = 966}, - [1844] = {.lex_state = 966}, - [1845] = {.lex_state = 122}, - [1846] = {.lex_state = 966}, - [1847] = {.lex_state = 966}, - [1848] = {.lex_state = 966}, - [1849] = {.lex_state = 122}, - [1850] = {.lex_state = 966}, - [1851] = {.lex_state = 966}, - [1852] = {.lex_state = 966}, - [1853] = {.lex_state = 966}, - [1854] = {.lex_state = 122}, - [1855] = {.lex_state = 966}, - [1856] = {.lex_state = 966}, - [1857] = {.lex_state = 966}, - [1858] = {.lex_state = 966}, - [1859] = {.lex_state = 966}, - [1860] = {.lex_state = 966}, - [1861] = {.lex_state = 966}, - [1862] = {.lex_state = 966}, - [1863] = {.lex_state = 966}, - [1864] = {.lex_state = 122}, - [1865] = {.lex_state = 966}, - [1866] = {.lex_state = 966}, - [1867] = {.lex_state = 122}, - [1868] = {.lex_state = 1036}, - [1869] = {.lex_state = 122}, - [1870] = {.lex_state = 966}, - [1871] = {.lex_state = 122}, - [1872] = {.lex_state = 122}, - [1873] = {.lex_state = 1036}, - [1874] = {.lex_state = 966}, - [1875] = {.lex_state = 122}, - [1876] = {.lex_state = 966}, - [1877] = {.lex_state = 1036}, - [1878] = {.lex_state = 966}, - [1879] = {.lex_state = 122}, - [1880] = {.lex_state = 122}, - [1881] = {.lex_state = 122}, - [1882] = {.lex_state = 122}, - [1883] = {.lex_state = 966}, - [1884] = {.lex_state = 122}, - [1885] = {.lex_state = 122}, - [1886] = {.lex_state = 122}, - [1887] = {.lex_state = 122}, - [1888] = {.lex_state = 122}, - [1889] = {.lex_state = 966}, - [1890] = {.lex_state = 122}, - [1891] = {.lex_state = 122}, - [1892] = {.lex_state = 966}, - [1893] = {.lex_state = 1036}, - [1894] = {.lex_state = 1036}, - [1895] = {.lex_state = 103}, - [1896] = {.lex_state = 966}, - [1897] = {.lex_state = 122}, - [1898] = {.lex_state = 121}, - [1899] = {.lex_state = 966}, - [1900] = {.lex_state = 966}, - [1901] = {.lex_state = 122}, - [1902] = {.lex_state = 122}, - [1903] = {.lex_state = 122}, - [1904] = {.lex_state = 999}, - [1905] = {.lex_state = 122}, - [1906] = {.lex_state = 999}, - [1907] = {.lex_state = 122}, - [1908] = {.lex_state = 1036}, - [1909] = {.lex_state = 1036}, - [1910] = {.lex_state = 966}, - [1911] = {.lex_state = 966}, - [1912] = {.lex_state = 966}, - [1913] = {.lex_state = 966}, - [1914] = {.lex_state = 966}, - [1915] = {.lex_state = 966}, - [1916] = {.lex_state = 966}, - [1917] = {.lex_state = 144}, - [1918] = {.lex_state = 966}, - [1919] = {.lex_state = 966}, - [1920] = {.lex_state = 966}, - [1921] = {.lex_state = 966}, - [1922] = {.lex_state = 966}, - [1923] = {.lex_state = 144}, - [1924] = {.lex_state = 966}, - [1925] = {.lex_state = 966}, - [1926] = {.lex_state = 1036}, - [1927] = {.lex_state = 122}, - [1928] = {.lex_state = 984}, - [1929] = {.lex_state = 984}, - [1930] = {.lex_state = 984}, - [1931] = {.lex_state = 1058}, - [1932] = {.lex_state = 1058}, - [1933] = {.lex_state = 1036}, - [1934] = {.lex_state = 122}, - [1935] = {.lex_state = 121}, - [1936] = {.lex_state = 1058}, - [1937] = {.lex_state = 121}, - [1938] = {.lex_state = 999}, - [1939] = {.lex_state = 121}, - [1940] = {.lex_state = 986}, - [1941] = {.lex_state = 122}, - [1942] = {.lex_state = 122}, - [1943] = {.lex_state = 122}, - [1944] = {.lex_state = 122}, - [1945] = {.lex_state = 121}, - [1946] = {.lex_state = 1036}, - [1947] = {.lex_state = 1036}, - [1948] = {.lex_state = 1036}, - [1949] = {.lex_state = 984}, - [1950] = {.lex_state = 121}, - [1951] = {.lex_state = 121}, - [1952] = {.lex_state = 121}, - [1953] = {.lex_state = 999}, - [1954] = {.lex_state = 121}, - [1955] = {.lex_state = 121}, - [1956] = {.lex_state = 1058}, - [1957] = {.lex_state = 40}, - [1958] = {.lex_state = 121}, - [1959] = {.lex_state = 121}, - [1960] = {.lex_state = 1036}, - [1961] = {.lex_state = 122}, - [1962] = {.lex_state = 984}, - [1963] = {.lex_state = 121}, - [1964] = {.lex_state = 121}, - [1965] = {.lex_state = 1036}, - [1966] = {.lex_state = 121}, - [1967] = {.lex_state = 1036}, - [1968] = {.lex_state = 121}, - [1969] = {.lex_state = 121}, - [1970] = {.lex_state = 1058}, - [1971] = {.lex_state = 999}, - [1972] = {.lex_state = 984}, - [1973] = {.lex_state = 121}, - [1974] = {.lex_state = 984}, - [1975] = {.lex_state = 121}, - [1976] = {.lex_state = 121}, - [1977] = {.lex_state = 121}, - [1978] = {.lex_state = 121}, - [1979] = {.lex_state = 984}, - [1980] = {.lex_state = 121}, - [1981] = {.lex_state = 40}, - [1982] = {.lex_state = 999}, - [1983] = {.lex_state = 986}, - [1984] = {.lex_state = 1036}, - [1985] = {.lex_state = 986}, - [1986] = {.lex_state = 144}, - [1987] = {.lex_state = 144}, - [1988] = {.lex_state = 121}, - [1989] = {.lex_state = 122}, - [1990] = {.lex_state = 122}, - [1991] = {.lex_state = 122}, - [1992] = {.lex_state = 122}, - [1993] = {.lex_state = 986}, - [1994] = {.lex_state = 122}, - [1995] = {.lex_state = 1054}, - [1996] = {.lex_state = 1054}, - [1997] = {.lex_state = 122}, - [1998] = {.lex_state = 1053}, - [1999] = {.lex_state = 122}, - [2000] = {.lex_state = 122}, - [2001] = {.lex_state = 122}, - [2002] = {.lex_state = 122}, - [2003] = {.lex_state = 1036}, - [2004] = {.lex_state = 122}, - [2005] = {.lex_state = 122}, - [2006] = {.lex_state = 122}, - [2007] = {.lex_state = 122}, - [2008] = {.lex_state = 122}, - [2009] = {.lex_state = 122}, - [2010] = {.lex_state = 1036}, - [2011] = {.lex_state = 122}, - [2012] = {.lex_state = 122}, - [2013] = {.lex_state = 122}, - [2014] = {.lex_state = 122}, - [2015] = {.lex_state = 122}, - [2016] = {.lex_state = 122}, - [2017] = {.lex_state = 122}, - [2018] = {.lex_state = 122}, - [2019] = {.lex_state = 122}, - [2020] = {.lex_state = 122}, - [2021] = {.lex_state = 122}, - [2022] = {.lex_state = 122}, - [2023] = {.lex_state = 354}, - [2024] = {.lex_state = 122}, - [2025] = {.lex_state = 122}, - [2026] = {.lex_state = 122}, - [2027] = {.lex_state = 122}, - [2028] = {.lex_state = 122}, - [2029] = {.lex_state = 122}, - [2030] = {.lex_state = 122}, - [2031] = {.lex_state = 122}, - [2032] = {.lex_state = 122}, - [2033] = {.lex_state = 122}, - [2034] = {.lex_state = 999}, - [2035] = {.lex_state = 999}, - [2036] = {.lex_state = 122}, - [2037] = {.lex_state = 122}, - [2038] = {.lex_state = 122}, - [2039] = {.lex_state = 122}, - [2040] = {.lex_state = 122}, - [2041] = {.lex_state = 122}, - [2042] = {.lex_state = 122}, - [2043] = {.lex_state = 122}, - [2044] = {.lex_state = 122}, - [2045] = {.lex_state = 122}, - [2046] = {.lex_state = 122}, - [2047] = {.lex_state = 122}, - [2048] = {.lex_state = 999}, - [2049] = {.lex_state = 999}, - [2050] = {.lex_state = 122}, - [2051] = {.lex_state = 122}, - [2052] = {.lex_state = 122}, - [2053] = {.lex_state = 122}, - [2054] = {.lex_state = 122}, - [2055] = {.lex_state = 122}, - [2056] = {.lex_state = 999}, - [2057] = {.lex_state = 1058}, - [2058] = {.lex_state = 122}, - [2059] = {.lex_state = 122}, - [2060] = {.lex_state = 1058}, - [2061] = {.lex_state = 38}, - [2062] = {.lex_state = 122}, - [2063] = {.lex_state = 122}, - [2064] = {.lex_state = 122}, - [2065] = {.lex_state = 122}, - [2066] = {.lex_state = 122}, - [2067] = {.lex_state = 122}, - [2068] = {.lex_state = 986}, - [2069] = {.lex_state = 122}, - [2070] = {.lex_state = 111}, - [2071] = {.lex_state = 122}, - [2072] = {.lex_state = 986}, - [2073] = {.lex_state = 348}, - [2074] = {.lex_state = 122}, - [2075] = {.lex_state = 122}, - [2076] = {.lex_state = 122}, - [2077] = {.lex_state = 122}, - [2078] = {.lex_state = 149}, - [2079] = {.lex_state = 122}, - [2080] = {.lex_state = 149}, - [2081] = {.lex_state = 1058}, - [2082] = {.lex_state = 149}, - [2083] = {.lex_state = 122}, - [2084] = {.lex_state = 122}, - [2085] = {.lex_state = 122}, - [2086] = {.lex_state = 122}, - [2087] = {.lex_state = 122}, - [2088] = {.lex_state = 122}, - [2089] = {.lex_state = 149}, - [2090] = {.lex_state = 149}, - [2091] = {.lex_state = 999}, - [2092] = {.lex_state = 1058}, - [2093] = {.lex_state = 1058}, - [2094] = {.lex_state = 122}, - [2095] = {.lex_state = 999}, - [2096] = {.lex_state = 999}, - [2097] = {.lex_state = 348}, - [2098] = {.lex_state = 99}, - [2099] = {.lex_state = 99}, - [2100] = {.lex_state = 122}, - [2101] = {.lex_state = 122}, - [2102] = {.lex_state = 999}, - [2103] = {.lex_state = 122}, - [2104] = {.lex_state = 51}, - [2105] = {.lex_state = 356}, - [2106] = {.lex_state = 999}, - [2107] = {.lex_state = 986}, - [2108] = {.lex_state = 999}, - [2109] = {.lex_state = 122}, - [2110] = {.lex_state = 122}, - [2111] = {.lex_state = 122}, - [2112] = {.lex_state = 122}, - [2113] = {.lex_state = 122}, - [2114] = {.lex_state = 122}, - [2115] = {.lex_state = 122}, - [2116] = {.lex_state = 122}, - [2117] = {.lex_state = 122}, - [2118] = {.lex_state = 38}, - [2119] = {.lex_state = 1062}, - [2120] = {.lex_state = 122}, - [2121] = {.lex_state = 999}, - [2122] = {.lex_state = 122}, - [2123] = {.lex_state = 999}, - [2124] = {.lex_state = 986}, - [2125] = {.lex_state = 122}, - [2126] = {.lex_state = 1036}, - [2127] = {.lex_state = 99}, - [2128] = {.lex_state = 99}, - [2129] = {.lex_state = 122}, - [2130] = {.lex_state = 122}, - [2131] = {.lex_state = 999}, - [2132] = {.lex_state = 999}, - [2133] = {.lex_state = 122}, - [2134] = {.lex_state = 122}, - [2135] = {.lex_state = 122}, - [2136] = {.lex_state = 122}, - [2137] = {.lex_state = 122}, - [2138] = {.lex_state = 122}, - [2139] = {.lex_state = 122}, - [2140] = {.lex_state = 122}, - [2141] = {.lex_state = 144}, - [2142] = {.lex_state = 1062}, - [2143] = {.lex_state = 1062}, - [2144] = {.lex_state = 122}, - [2145] = {.lex_state = 122}, - [2146] = {.lex_state = 122}, - [2147] = {.lex_state = 122}, - [2148] = {.lex_state = 122}, - [2149] = {.lex_state = 122}, - [2150] = {.lex_state = 122}, - [2151] = {.lex_state = 122}, - [2152] = {.lex_state = 122}, - [2153] = {.lex_state = 144}, - [2154] = {.lex_state = 144}, - [2155] = {.lex_state = 999}, - [2156] = {.lex_state = 999}, - [2157] = {.lex_state = 51}, - [2158] = {.lex_state = 122}, - [2159] = {.lex_state = 1054}, - [2160] = {.lex_state = 985}, - [2161] = {.lex_state = 101}, - [2162] = {.lex_state = 38}, - [2163] = {.lex_state = 1062}, - [2164] = {.lex_state = 122}, - [2165] = {.lex_state = 353}, - [2166] = {.lex_state = 1062}, - [2167] = {.lex_state = 1062}, - [2168] = {.lex_state = 122}, - [2169] = {.lex_state = 122}, - [2170] = {.lex_state = 122}, - [2171] = {.lex_state = 122}, - [2172] = {.lex_state = 122}, - [2173] = {.lex_state = 122}, - [2174] = {.lex_state = 122}, - [2175] = {.lex_state = 122}, - [2176] = {.lex_state = 122}, - [2177] = {.lex_state = 122}, - [2178] = {.lex_state = 122}, - [2179] = {.lex_state = 1062}, - [2180] = {.lex_state = 1054}, - [2181] = {.lex_state = 122}, - [2182] = {.lex_state = 122}, - [2183] = {.lex_state = 122}, - [2184] = {.lex_state = 122}, - [2185] = {.lex_state = 122}, - [2186] = {.lex_state = 122}, - [2187] = {.lex_state = 999}, - [2188] = {.lex_state = 999}, - [2189] = {.lex_state = 999}, - [2190] = {.lex_state = 999}, - [2191] = {.lex_state = 999}, - [2192] = {.lex_state = 999}, - [2193] = {.lex_state = 999}, - [2194] = {.lex_state = 999}, - [2195] = {.lex_state = 999}, - [2196] = {.lex_state = 999}, - [2197] = {.lex_state = 999}, - [2198] = {.lex_state = 999}, - [2199] = {.lex_state = 122}, - [2200] = {.lex_state = 122}, - [2201] = {.lex_state = 122}, - [2202] = {.lex_state = 122}, - [2203] = {.lex_state = 122}, - [2204] = {.lex_state = 122}, - [2205] = {.lex_state = 122}, - [2206] = {.lex_state = 122}, - [2207] = {.lex_state = 122}, - [2208] = {.lex_state = 122}, - [2209] = {.lex_state = 122}, - [2210] = {.lex_state = 122}, - [2211] = {.lex_state = 122}, - [2212] = {.lex_state = 353}, - [2213] = {.lex_state = 38}, - [2214] = {.lex_state = 122}, - [2215] = {.lex_state = 38}, - [2216] = {.lex_state = 122}, - [2217] = {.lex_state = 152}, - [2218] = {.lex_state = 122}, - [2219] = {.lex_state = 122}, - [2220] = {.lex_state = 999}, - [2221] = {.lex_state = 152}, - [2222] = {.lex_state = 1053}, - [2223] = {.lex_state = 122}, - [2224] = {.lex_state = 122}, - [2225] = {.lex_state = 152}, - [2226] = {.lex_state = 985}, - [2227] = {.lex_state = 985}, - [2228] = {.lex_state = 122}, - [2229] = {.lex_state = 122}, - [2230] = {.lex_state = 122}, - [2231] = {.lex_state = 122}, - [2232] = {.lex_state = 122}, - [2233] = {.lex_state = 122}, - [2234] = {.lex_state = 38}, - [2235] = {.lex_state = 224}, - [2236] = {.lex_state = 122}, - [2237] = {.lex_state = 122}, - [2238] = {.lex_state = 122}, - [2239] = {.lex_state = 122}, - [2240] = {.lex_state = 122}, - [2241] = {.lex_state = 122}, - [2242] = {.lex_state = 999}, - [2243] = {.lex_state = 122}, - [2244] = {.lex_state = 122}, - [2245] = {.lex_state = 122}, - [2246] = {.lex_state = 122}, - [2247] = {.lex_state = 122}, - [2248] = {.lex_state = 122}, - [2249] = {.lex_state = 122}, - [2250] = {.lex_state = 999}, - [2251] = {.lex_state = 986}, - [2252] = {.lex_state = 122}, - [2253] = {.lex_state = 122}, - [2254] = {.lex_state = 122}, - [2255] = {.lex_state = 122}, - [2256] = {.lex_state = 122}, - [2257] = {.lex_state = 122}, - [2258] = {.lex_state = 122}, - [2259] = {.lex_state = 122}, - [2260] = {.lex_state = 122}, - [2261] = {.lex_state = 122}, - [2262] = {.lex_state = 122}, - [2263] = {.lex_state = 986}, - [2264] = {.lex_state = 999}, - [2265] = {.lex_state = 122}, - [2266] = {.lex_state = 999}, - [2267] = {.lex_state = 122}, - [2268] = {.lex_state = 122}, - [2269] = {.lex_state = 122}, - [2270] = {.lex_state = 122}, - [2271] = {.lex_state = 122}, - [2272] = {.lex_state = 122}, - [2273] = {.lex_state = 122}, - [2274] = {.lex_state = 146}, - [2275] = {.lex_state = 146}, - [2276] = {.lex_state = 122}, - [2277] = {.lex_state = 40}, - [2278] = {.lex_state = 122}, - [2279] = {.lex_state = 122}, - [2280] = {.lex_state = 122}, - [2281] = {.lex_state = 122}, - [2282] = {.lex_state = 122}, - [2283] = {.lex_state = 122}, - [2284] = {.lex_state = 122}, - [2285] = {.lex_state = 122}, - [2286] = {.lex_state = 122}, - [2287] = {.lex_state = 122}, - [2288] = {.lex_state = 122}, - [2289] = {.lex_state = 122}, - [2290] = {.lex_state = 122}, - [2291] = {.lex_state = 122}, - [2292] = {.lex_state = 122}, - [2293] = {.lex_state = 122}, - [2294] = {.lex_state = 122}, - [2295] = {.lex_state = 122}, - [2296] = {.lex_state = 122}, - [2297] = {.lex_state = 40}, - [2298] = {.lex_state = 122}, - [2299] = {.lex_state = 122}, - [2300] = {.lex_state = 122}, - [2301] = {.lex_state = 40}, - [2302] = {.lex_state = 122}, - [2303] = {.lex_state = 122}, - [2304] = {.lex_state = 122}, - [2305] = {.lex_state = 122}, - [2306] = {.lex_state = 145}, - [2307] = {.lex_state = 122}, - [2308] = {.lex_state = 122}, - [2309] = {.lex_state = 122}, - [2310] = {.lex_state = 122}, - [2311] = {.lex_state = 122}, - [2312] = {.lex_state = 122}, - [2313] = {.lex_state = 122}, - [2314] = {.lex_state = 122}, - [2315] = {.lex_state = 122}, - [2316] = {.lex_state = 122}, - [2317] = {.lex_state = 122}, - [2318] = {.lex_state = 122}, - [2319] = {.lex_state = 122}, - [2320] = {.lex_state = 40}, - [2321] = {.lex_state = 40}, - [2322] = {.lex_state = 1054}, - [2323] = {.lex_state = 1054}, - [2324] = {.lex_state = 40}, - [2325] = {.lex_state = 40}, - [2326] = {.lex_state = 40}, - [2327] = {.lex_state = 101}, - [2328] = {.lex_state = 38}, - [2329] = {.lex_state = 40}, - [2330] = {.lex_state = 40}, - [2331] = {.lex_state = 40}, - [2332] = {.lex_state = 40}, - [2333] = {.lex_state = 1062}, - [2334] = {.lex_state = 122}, - [2335] = {.lex_state = 38}, - [2336] = {.lex_state = 40}, - [2337] = {.lex_state = 38}, - [2338] = {.lex_state = 38}, - [2339] = {.lex_state = 38}, - [2340] = {.lex_state = 38}, - [2341] = {.lex_state = 985}, - [2342] = {.lex_state = 985}, - [2343] = {.lex_state = 999}, - [2344] = {.lex_state = 249}, - [2345] = {.lex_state = 999}, - [2346] = {.lex_state = 999}, - [2347] = {.lex_state = 999}, - [2348] = {.lex_state = 999}, - [2349] = {.lex_state = 999}, - [2350] = {.lex_state = 985}, - [2351] = {.lex_state = 999}, - [2352] = {.lex_state = 999}, - [2353] = {.lex_state = 999}, - [2354] = {.lex_state = 999}, - [2355] = {.lex_state = 999}, - [2356] = {.lex_state = 999}, - [2357] = {.lex_state = 999}, - [2358] = {.lex_state = 355}, - [2359] = {.lex_state = 985}, - [2360] = {.lex_state = 999}, - [2361] = {.lex_state = 986}, - [2362] = {.lex_state = 999}, - [2363] = {.lex_state = 986}, - [2364] = {.lex_state = 999}, - [2365] = {.lex_state = 999}, - [2366] = {.lex_state = 999}, - [2367] = {.lex_state = 999}, - [2368] = {.lex_state = 999}, - [2369] = {.lex_state = 999}, - [2370] = {.lex_state = 999}, - [2371] = {.lex_state = 999}, - [2372] = {.lex_state = 999}, - [2373] = {.lex_state = 985}, - [2374] = {.lex_state = 223}, - [2375] = {.lex_state = 999}, - [2376] = {.lex_state = 999}, - [2377] = {.lex_state = 999}, - [2378] = {.lex_state = 999}, - [2379] = {.lex_state = 268}, - [2380] = {.lex_state = 999}, - [2381] = {.lex_state = 999}, - [2382] = {.lex_state = 999}, - [2383] = {.lex_state = 999}, - [2384] = {.lex_state = 999}, - [2385] = {.lex_state = 999}, - [2386] = {.lex_state = 222}, - [2387] = {.lex_state = 999}, - [2388] = {.lex_state = 999}, - [2389] = {.lex_state = 355}, - [2390] = {.lex_state = 999}, - [2391] = {.lex_state = 999}, - [2392] = {.lex_state = 999}, - [2393] = {.lex_state = 999}, - [2394] = {.lex_state = 999}, - [2395] = {.lex_state = 355}, - [2396] = {.lex_state = 999}, - [2397] = {.lex_state = 999}, - [2398] = {.lex_state = 999}, - [2399] = {.lex_state = 999}, - [2400] = {.lex_state = 258}, - [2401] = {.lex_state = 999}, - [2402] = {.lex_state = 999}, - [2403] = {.lex_state = 999}, - [2404] = {.lex_state = 999}, - [2405] = {.lex_state = 999}, - [2406] = {.lex_state = 999}, - [2407] = {.lex_state = 999}, - [2408] = {.lex_state = 999}, - [2409] = {.lex_state = 999}, - [2410] = {.lex_state = 999}, - [2411] = {.lex_state = 999}, - [2412] = {.lex_state = 223}, - [2413] = {.lex_state = 999}, - [2414] = {.lex_state = 999}, - [2415] = {.lex_state = 999}, - [2416] = {.lex_state = 985}, - [2417] = {.lex_state = 999}, - [2418] = {.lex_state = 985}, - [2419] = {.lex_state = 999}, - [2420] = {.lex_state = 355}, - [2421] = {.lex_state = 999}, - [2422] = {.lex_state = 355}, - [2423] = {.lex_state = 999}, - [2424] = {.lex_state = 999}, - [2425] = {.lex_state = 986}, - [2426] = {.lex_state = 999}, - [2427] = {.lex_state = 999}, - [2428] = {.lex_state = 999}, - [2429] = {.lex_state = 999}, - [2430] = {.lex_state = 984}, - [2431] = {.lex_state = 348}, - [2432] = {.lex_state = 984}, - [2433] = {.lex_state = 221}, - [2434] = {.lex_state = 251}, - [2435] = {.lex_state = 267}, - [2436] = {.lex_state = 984}, - [2437] = {.lex_state = 984}, - [2438] = {.lex_state = 984}, - [2439] = {.lex_state = 348}, - [2440] = {.lex_state = 348}, - [2441] = {.lex_state = 348}, - [2442] = {.lex_state = 348}, - [2443] = {.lex_state = 984}, - [2444] = {.lex_state = 984}, - [2445] = {.lex_state = 984}, - [2446] = {.lex_state = 984}, - [2447] = {.lex_state = 38}, - [2448] = {.lex_state = 267}, - [2449] = {.lex_state = 984}, - [2450] = {.lex_state = 38}, - [2451] = {.lex_state = 38}, - [2452] = {.lex_state = 348}, - [2453] = {.lex_state = 267}, - [2454] = {.lex_state = 986}, - [2455] = {.lex_state = 986}, - [2456] = {.lex_state = 38}, + [1548] = {.lex_state = 117}, + [1549] = {.lex_state = 979}, + [1550] = {.lex_state = 963}, + [1551] = {.lex_state = 965}, + [1552] = {.lex_state = 927}, + [1553] = {.lex_state = 950}, + [1554] = {.lex_state = 951}, + [1555] = {.lex_state = 938}, + [1556] = {.lex_state = 978}, + [1557] = {.lex_state = 938}, + [1558] = {.lex_state = 117}, + [1559] = {.lex_state = 970}, + [1560] = {.lex_state = 938}, + [1561] = {.lex_state = 938}, + [1562] = {.lex_state = 978}, + [1563] = {.lex_state = 1039}, + [1564] = {.lex_state = 37}, + [1565] = {.lex_state = 927}, + [1566] = {.lex_state = 927}, + [1567] = {.lex_state = 938}, + [1568] = {.lex_state = 1039}, + [1569] = {.lex_state = 938}, + [1570] = {.lex_state = 1027}, + [1571] = {.lex_state = 970}, + [1572] = {.lex_state = 1039}, + [1573] = {.lex_state = 979}, + [1574] = {.lex_state = 955}, + [1575] = {.lex_state = 955}, + [1576] = {.lex_state = 955}, + [1577] = {.lex_state = 955}, + [1578] = {.lex_state = 955}, + [1579] = {.lex_state = 955}, + [1580] = {.lex_state = 955}, + [1581] = {.lex_state = 955}, + [1582] = {.lex_state = 955}, + [1583] = {.lex_state = 955}, + [1584] = {.lex_state = 955}, + [1585] = {.lex_state = 955}, + [1586] = {.lex_state = 955}, + [1587] = {.lex_state = 140}, + [1588] = {.lex_state = 951}, + [1589] = {.lex_state = 955}, + [1590] = {.lex_state = 955}, + [1591] = {.lex_state = 955}, + [1592] = {.lex_state = 955}, + [1593] = {.lex_state = 973}, + [1594] = {.lex_state = 973}, + [1595] = {.lex_state = 955}, + [1596] = {.lex_state = 140}, + [1597] = {.lex_state = 71}, + [1598] = {.lex_state = 71}, + [1599] = {.lex_state = 202}, + [1600] = {.lex_state = 202}, + [1601] = {.lex_state = 140}, + [1602] = {.lex_state = 140}, + [1603] = {.lex_state = 965}, + [1604] = {.lex_state = 965}, + [1605] = {.lex_state = 965}, + [1606] = {.lex_state = 973}, + [1607] = {.lex_state = 953}, + [1608] = {.lex_state = 140}, + [1609] = {.lex_state = 953}, + [1610] = {.lex_state = 71}, + [1611] = {.lex_state = 955}, + [1612] = {.lex_state = 955}, + [1613] = {.lex_state = 140}, + [1614] = {.lex_state = 140}, + [1615] = {.lex_state = 140}, + [1616] = {.lex_state = 140}, + [1617] = {.lex_state = 140}, + [1618] = {.lex_state = 140}, + [1619] = {.lex_state = 140}, + [1620] = {.lex_state = 140}, + [1621] = {.lex_state = 140}, + [1622] = {.lex_state = 140}, + [1623] = {.lex_state = 979}, + [1624] = {.lex_state = 955}, + [1625] = {.lex_state = 955}, + [1626] = {.lex_state = 979}, + [1627] = {.lex_state = 979}, + [1628] = {.lex_state = 140}, + [1629] = {.lex_state = 140}, + [1630] = {.lex_state = 140}, + [1631] = {.lex_state = 955}, + [1632] = {.lex_state = 140}, + [1633] = {.lex_state = 955}, + [1634] = {.lex_state = 140}, + [1635] = {.lex_state = 140}, + [1636] = {.lex_state = 140}, + [1637] = {.lex_state = 955}, + [1638] = {.lex_state = 955}, + [1639] = {.lex_state = 100}, + [1640] = {.lex_state = 955}, + [1641] = {.lex_state = 979}, + [1642] = {.lex_state = 955}, + [1643] = {.lex_state = 71}, + [1644] = {.lex_state = 1027}, + [1645] = {.lex_state = 1027}, + [1646] = {.lex_state = 71}, + [1647] = {.lex_state = 100}, + [1648] = {.lex_state = 71}, + [1649] = {.lex_state = 1027}, + [1650] = {.lex_state = 951}, + [1651] = {.lex_state = 955}, + [1652] = {.lex_state = 71}, + [1653] = {.lex_state = 955}, + [1654] = {.lex_state = 71}, + [1655] = {.lex_state = 955}, + [1656] = {.lex_state = 955}, + [1657] = {.lex_state = 955}, + [1658] = {.lex_state = 927}, + [1659] = {.lex_state = 71}, + [1660] = {.lex_state = 71}, + [1661] = {.lex_state = 71}, + [1662] = {.lex_state = 202}, + [1663] = {.lex_state = 955}, + [1664] = {.lex_state = 955}, + [1665] = {.lex_state = 140}, + [1666] = {.lex_state = 955}, + [1667] = {.lex_state = 955}, + [1668] = {.lex_state = 71}, + [1669] = {.lex_state = 71}, + [1670] = {.lex_state = 71}, + [1671] = {.lex_state = 71}, + [1672] = {.lex_state = 71}, + [1673] = {.lex_state = 955}, + [1674] = {.lex_state = 202}, + [1675] = {.lex_state = 955}, + [1676] = {.lex_state = 955}, + [1677] = {.lex_state = 970}, + [1678] = {.lex_state = 1027}, + [1679] = {.lex_state = 955}, + [1680] = {.lex_state = 71}, + [1681] = {.lex_state = 71}, + [1682] = {.lex_state = 955}, + [1683] = {.lex_state = 955}, + [1684] = {.lex_state = 71}, + [1685] = {.lex_state = 955}, + [1686] = {.lex_state = 955}, + [1687] = {.lex_state = 71}, + [1688] = {.lex_state = 71}, + [1689] = {.lex_state = 71}, + [1690] = {.lex_state = 71}, + [1691] = {.lex_state = 71}, + [1692] = {.lex_state = 955}, + [1693] = {.lex_state = 955}, + [1694] = {.lex_state = 955}, + [1695] = {.lex_state = 970}, + [1696] = {.lex_state = 955}, + [1697] = {.lex_state = 71}, + [1698] = {.lex_state = 71}, + [1699] = {.lex_state = 955}, + [1700] = {.lex_state = 71}, + [1701] = {.lex_state = 71}, + [1702] = {.lex_state = 955}, + [1703] = {.lex_state = 71}, + [1704] = {.lex_state = 71}, + [1705] = {.lex_state = 71}, + [1706] = {.lex_state = 955}, + [1707] = {.lex_state = 71}, + [1708] = {.lex_state = 955}, + [1709] = {.lex_state = 955}, + [1710] = {.lex_state = 71}, + [1711] = {.lex_state = 71}, + [1712] = {.lex_state = 955}, + [1713] = {.lex_state = 71}, + [1714] = {.lex_state = 955}, + [1715] = {.lex_state = 71}, + [1716] = {.lex_state = 140}, + [1717] = {.lex_state = 71}, + [1718] = {.lex_state = 955}, + [1719] = {.lex_state = 955}, + [1720] = {.lex_state = 955}, + [1721] = {.lex_state = 955}, + [1722] = {.lex_state = 955}, + [1723] = {.lex_state = 954}, + [1724] = {.lex_state = 955}, + [1725] = {.lex_state = 140}, + [1726] = {.lex_state = 955}, + [1727] = {.lex_state = 955}, + [1728] = {.lex_state = 955}, + [1729] = {.lex_state = 71}, + [1730] = {.lex_state = 955}, + [1731] = {.lex_state = 955}, + [1732] = {.lex_state = 71}, + [1733] = {.lex_state = 955}, + [1734] = {.lex_state = 955}, + [1735] = {.lex_state = 955}, + [1736] = {.lex_state = 140}, + [1737] = {.lex_state = 955}, + [1738] = {.lex_state = 71}, + [1739] = {.lex_state = 71}, + [1740] = {.lex_state = 71}, + [1741] = {.lex_state = 955}, + [1742] = {.lex_state = 71}, + [1743] = {.lex_state = 71}, + [1744] = {.lex_state = 71}, + [1745] = {.lex_state = 202}, + [1746] = {.lex_state = 955}, + [1747] = {.lex_state = 71}, + [1748] = {.lex_state = 202}, + [1749] = {.lex_state = 202}, + [1750] = {.lex_state = 202}, + [1751] = {.lex_state = 1027}, + [1752] = {.lex_state = 1027}, + [1753] = {.lex_state = 1027}, + [1754] = {.lex_state = 1027}, + [1755] = {.lex_state = 1027}, + [1756] = {.lex_state = 1027}, + [1757] = {.lex_state = 1027}, + [1758] = {.lex_state = 1027}, + [1759] = {.lex_state = 1027}, + [1760] = {.lex_state = 1027}, + [1761] = {.lex_state = 1027}, + [1762] = {.lex_state = 1027}, + [1763] = {.lex_state = 1027}, + [1764] = {.lex_state = 1027}, + [1765] = {.lex_state = 1027}, + [1766] = {.lex_state = 1027}, + [1767] = {.lex_state = 1027}, + [1768] = {.lex_state = 1027}, + [1769] = {.lex_state = 1027}, + [1770] = {.lex_state = 1027}, + [1771] = {.lex_state = 1027}, + [1772] = {.lex_state = 1027}, + [1773] = {.lex_state = 140}, + [1774] = {.lex_state = 71}, + [1775] = {.lex_state = 140}, + [1776] = {.lex_state = 71}, + [1777] = {.lex_state = 71}, + [1778] = {.lex_state = 71}, + [1779] = {.lex_state = 71}, + [1780] = {.lex_state = 71}, + [1781] = {.lex_state = 71}, + [1782] = {.lex_state = 955}, + [1783] = {.lex_state = 71}, + [1784] = {.lex_state = 71}, + [1785] = {.lex_state = 955}, + [1786] = {.lex_state = 71}, + [1787] = {.lex_state = 955}, + [1788] = {.lex_state = 955}, + [1789] = {.lex_state = 927}, + [1790] = {.lex_state = 955}, + [1791] = {.lex_state = 955}, + [1792] = {.lex_state = 955}, + [1793] = {.lex_state = 1027}, + [1794] = {.lex_state = 140}, + [1795] = {.lex_state = 118}, + [1796] = {.lex_state = 118}, + [1797] = {.lex_state = 118}, + [1798] = {.lex_state = 118}, + [1799] = {.lex_state = 118}, + [1800] = {.lex_state = 955}, + [1801] = {.lex_state = 118}, + [1802] = {.lex_state = 118}, + [1803] = {.lex_state = 118}, + [1804] = {.lex_state = 990}, + [1805] = {.lex_state = 955}, + [1806] = {.lex_state = 955}, + [1807] = {.lex_state = 118}, + [1808] = {.lex_state = 955}, + [1809] = {.lex_state = 140}, + [1810] = {.lex_state = 955}, + [1811] = {.lex_state = 118}, + [1812] = {.lex_state = 990}, + [1813] = {.lex_state = 1027}, + [1814] = {.lex_state = 1027}, + [1815] = {.lex_state = 1027}, + [1816] = {.lex_state = 1027}, + [1817] = {.lex_state = 1027}, + [1818] = {.lex_state = 1027}, + [1819] = {.lex_state = 1027}, + [1820] = {.lex_state = 118}, + [1821] = {.lex_state = 955}, + [1822] = {.lex_state = 117}, + [1823] = {.lex_state = 118}, + [1824] = {.lex_state = 118}, + [1825] = {.lex_state = 955}, + [1826] = {.lex_state = 955}, + [1827] = {.lex_state = 955}, + [1828] = {.lex_state = 955}, + [1829] = {.lex_state = 955}, + [1830] = {.lex_state = 117}, + [1831] = {.lex_state = 955}, + [1832] = {.lex_state = 955}, + [1833] = {.lex_state = 1027}, + [1834] = {.lex_state = 1027}, + [1835] = {.lex_state = 1027}, + [1836] = {.lex_state = 1027}, + [1837] = {.lex_state = 955}, + [1838] = {.lex_state = 1027}, + [1839] = {.lex_state = 118}, + [1840] = {.lex_state = 955}, + [1841] = {.lex_state = 1027}, + [1842] = {.lex_state = 1027}, + [1843] = {.lex_state = 1027}, + [1844] = {.lex_state = 955}, + [1845] = {.lex_state = 1027}, + [1846] = {.lex_state = 118}, + [1847] = {.lex_state = 99}, + [1848] = {.lex_state = 955}, + [1849] = {.lex_state = 118}, + [1850] = {.lex_state = 117}, + [1851] = {.lex_state = 955}, + [1852] = {.lex_state = 955}, + [1853] = {.lex_state = 955}, + [1854] = {.lex_state = 955}, + [1855] = {.lex_state = 955}, + [1856] = {.lex_state = 118}, + [1857] = {.lex_state = 955}, + [1858] = {.lex_state = 955}, + [1859] = {.lex_state = 955}, + [1860] = {.lex_state = 118}, + [1861] = {.lex_state = 955}, + [1862] = {.lex_state = 955}, + [1863] = {.lex_state = 118}, + [1864] = {.lex_state = 118}, + [1865] = {.lex_state = 955}, + [1866] = {.lex_state = 955}, + [1867] = {.lex_state = 955}, + [1868] = {.lex_state = 118}, + [1869] = {.lex_state = 118}, + [1870] = {.lex_state = 955}, + [1871] = {.lex_state = 955}, + [1872] = {.lex_state = 118}, + [1873] = {.lex_state = 955}, + [1874] = {.lex_state = 955}, + [1875] = {.lex_state = 955}, + [1876] = {.lex_state = 955}, + [1877] = {.lex_state = 118}, + [1878] = {.lex_state = 955}, + [1879] = {.lex_state = 955}, + [1880] = {.lex_state = 955}, + [1881] = {.lex_state = 955}, + [1882] = {.lex_state = 955}, + [1883] = {.lex_state = 1027}, + [1884] = {.lex_state = 118}, + [1885] = {.lex_state = 118}, + [1886] = {.lex_state = 955}, + [1887] = {.lex_state = 955}, + [1888] = {.lex_state = 118}, + [1889] = {.lex_state = 955}, + [1890] = {.lex_state = 955}, + [1891] = {.lex_state = 118}, + [1892] = {.lex_state = 1027}, + [1893] = {.lex_state = 955}, + [1894] = {.lex_state = 118}, + [1895] = {.lex_state = 955}, + [1896] = {.lex_state = 118}, + [1897] = {.lex_state = 955}, + [1898] = {.lex_state = 955}, + [1899] = {.lex_state = 118}, + [1900] = {.lex_state = 118}, + [1901] = {.lex_state = 955}, + [1902] = {.lex_state = 955}, + [1903] = {.lex_state = 955}, + [1904] = {.lex_state = 955}, + [1905] = {.lex_state = 955}, + [1906] = {.lex_state = 955}, + [1907] = {.lex_state = 118}, + [1908] = {.lex_state = 955}, + [1909] = {.lex_state = 955}, + [1910] = {.lex_state = 99}, + [1911] = {.lex_state = 118}, + [1912] = {.lex_state = 118}, + [1913] = {.lex_state = 118}, + [1914] = {.lex_state = 118}, + [1915] = {.lex_state = 955}, + [1916] = {.lex_state = 955}, + [1917] = {.lex_state = 1027}, + [1918] = {.lex_state = 118}, + [1919] = {.lex_state = 118}, + [1920] = {.lex_state = 118}, + [1921] = {.lex_state = 955}, + [1922] = {.lex_state = 118}, + [1923] = {.lex_state = 118}, + [1924] = {.lex_state = 118}, + [1925] = {.lex_state = 118}, + [1926] = {.lex_state = 118}, + [1927] = {.lex_state = 118}, + [1928] = {.lex_state = 118}, + [1929] = {.lex_state = 1027}, + [1930] = {.lex_state = 955}, + [1931] = {.lex_state = 955}, + [1932] = {.lex_state = 955}, + [1933] = {.lex_state = 118}, + [1934] = {.lex_state = 955}, + [1935] = {.lex_state = 955}, + [1936] = {.lex_state = 955}, + [1937] = {.lex_state = 955}, + [1938] = {.lex_state = 955}, + [1939] = {.lex_state = 955}, + [1940] = {.lex_state = 955}, + [1941] = {.lex_state = 955}, + [1942] = {.lex_state = 1027}, + [1943] = {.lex_state = 1027}, + [1944] = {.lex_state = 955}, + [1945] = {.lex_state = 955}, + [1946] = {.lex_state = 955}, + [1947] = {.lex_state = 1027}, + [1948] = {.lex_state = 1027}, + [1949] = {.lex_state = 1027}, + [1950] = {.lex_state = 1027}, + [1951] = {.lex_state = 955}, + [1952] = {.lex_state = 955}, + [1953] = {.lex_state = 955}, + [1954] = {.lex_state = 955}, + [1955] = {.lex_state = 955}, + [1956] = {.lex_state = 955}, + [1957] = {.lex_state = 955}, + [1958] = {.lex_state = 955}, + [1959] = {.lex_state = 118}, + [1960] = {.lex_state = 955}, + [1961] = {.lex_state = 118}, + [1962] = {.lex_state = 118}, + [1963] = {.lex_state = 118}, + [1964] = {.lex_state = 955}, + [1965] = {.lex_state = 1027}, + [1966] = {.lex_state = 973}, + [1967] = {.lex_state = 1049}, + [1968] = {.lex_state = 1049}, + [1969] = {.lex_state = 117}, + [1970] = {.lex_state = 1027}, + [1971] = {.lex_state = 975}, + [1972] = {.lex_state = 1027}, + [1973] = {.lex_state = 1027}, + [1974] = {.lex_state = 1027}, + [1975] = {.lex_state = 1027}, + [1976] = {.lex_state = 117}, + [1977] = {.lex_state = 1049}, + [1978] = {.lex_state = 1049}, + [1979] = {.lex_state = 975}, + [1980] = {.lex_state = 117}, + [1981] = {.lex_state = 117}, + [1982] = {.lex_state = 117}, + [1983] = {.lex_state = 975}, + [1984] = {.lex_state = 117}, + [1985] = {.lex_state = 117}, + [1986] = {.lex_state = 117}, + [1987] = {.lex_state = 140}, + [1988] = {.lex_state = 140}, + [1989] = {.lex_state = 117}, + [1990] = {.lex_state = 973}, + [1991] = {.lex_state = 117}, + [1992] = {.lex_state = 117}, + [1993] = {.lex_state = 117}, + [1994] = {.lex_state = 990}, + [1995] = {.lex_state = 117}, + [1996] = {.lex_state = 118}, + [1997] = {.lex_state = 117}, + [1998] = {.lex_state = 118}, + [1999] = {.lex_state = 117}, + [2000] = {.lex_state = 117}, + [2001] = {.lex_state = 973}, + [2002] = {.lex_state = 973}, + [2003] = {.lex_state = 117}, + [2004] = {.lex_state = 990}, + [2005] = {.lex_state = 973}, + [2006] = {.lex_state = 117}, + [2007] = {.lex_state = 117}, + [2008] = {.lex_state = 1027}, + [2009] = {.lex_state = 973}, + [2010] = {.lex_state = 990}, + [2011] = {.lex_state = 117}, + [2012] = {.lex_state = 973}, + [2013] = {.lex_state = 118}, + [2014] = {.lex_state = 117}, + [2015] = {.lex_state = 1027}, + [2016] = {.lex_state = 1027}, + [2017] = {.lex_state = 118}, + [2018] = {.lex_state = 990}, + [2019] = {.lex_state = 39}, + [2020] = {.lex_state = 118}, + [2021] = {.lex_state = 39}, + [2022] = {.lex_state = 117}, + [2023] = {.lex_state = 118}, + [2024] = {.lex_state = 1049}, + [2025] = {.lex_state = 973}, + [2026] = {.lex_state = 117}, + [2027] = {.lex_state = 118}, + [2028] = {.lex_state = 118}, + [2029] = {.lex_state = 118}, + [2030] = {.lex_state = 118}, + [2031] = {.lex_state = 118}, + [2032] = {.lex_state = 118}, + [2033] = {.lex_state = 118}, + [2034] = {.lex_state = 118}, + [2035] = {.lex_state = 118}, + [2036] = {.lex_state = 118}, + [2037] = {.lex_state = 118}, + [2038] = {.lex_state = 118}, + [2039] = {.lex_state = 118}, + [2040] = {.lex_state = 118}, + [2041] = {.lex_state = 118}, + [2042] = {.lex_state = 140}, + [2043] = {.lex_state = 118}, + [2044] = {.lex_state = 1049}, + [2045] = {.lex_state = 118}, + [2046] = {.lex_state = 118}, + [2047] = {.lex_state = 118}, + [2048] = {.lex_state = 118}, + [2049] = {.lex_state = 118}, + [2050] = {.lex_state = 118}, + [2051] = {.lex_state = 118}, + [2052] = {.lex_state = 975}, + [2053] = {.lex_state = 118}, + [2054] = {.lex_state = 118}, + [2055] = {.lex_state = 1049}, + [2056] = {.lex_state = 118}, + [2057] = {.lex_state = 118}, + [2058] = {.lex_state = 990}, + [2059] = {.lex_state = 118}, + [2060] = {.lex_state = 118}, + [2061] = {.lex_state = 990}, + [2062] = {.lex_state = 37}, + [2063] = {.lex_state = 118}, + [2064] = {.lex_state = 118}, + [2065] = {.lex_state = 118}, + [2066] = {.lex_state = 118}, + [2067] = {.lex_state = 118}, + [2068] = {.lex_state = 118}, + [2069] = {.lex_state = 118}, + [2070] = {.lex_state = 118}, + [2071] = {.lex_state = 1044}, + [2072] = {.lex_state = 118}, + [2073] = {.lex_state = 990}, + [2074] = {.lex_state = 118}, + [2075] = {.lex_state = 341}, + [2076] = {.lex_state = 140}, + [2077] = {.lex_state = 140}, + [2078] = {.lex_state = 118}, + [2079] = {.lex_state = 1027}, + [2080] = {.lex_state = 1027}, + [2081] = {.lex_state = 347}, + [2082] = {.lex_state = 37}, + [2083] = {.lex_state = 1049}, + [2084] = {.lex_state = 118}, + [2085] = {.lex_state = 1053}, + [2086] = {.lex_state = 1053}, + [2087] = {.lex_state = 118}, + [2088] = {.lex_state = 118}, + [2089] = {.lex_state = 118}, + [2090] = {.lex_state = 118}, + [2091] = {.lex_state = 118}, + [2092] = {.lex_state = 118}, + [2093] = {.lex_state = 118}, + [2094] = {.lex_state = 1045}, + [2095] = {.lex_state = 1045}, + [2096] = {.lex_state = 118}, + [2097] = {.lex_state = 118}, + [2098] = {.lex_state = 118}, + [2099] = {.lex_state = 118}, + [2100] = {.lex_state = 118}, + [2101] = {.lex_state = 118}, + [2102] = {.lex_state = 118}, + [2103] = {.lex_state = 118}, + [2104] = {.lex_state = 118}, + [2105] = {.lex_state = 95}, + [2106] = {.lex_state = 95}, + [2107] = {.lex_state = 1027}, + [2108] = {.lex_state = 118}, + [2109] = {.lex_state = 118}, + [2110] = {.lex_state = 145}, + [2111] = {.lex_state = 118}, + [2112] = {.lex_state = 118}, + [2113] = {.lex_state = 118}, + [2114] = {.lex_state = 118}, + [2115] = {.lex_state = 118}, + [2116] = {.lex_state = 118}, + [2117] = {.lex_state = 118}, + [2118] = {.lex_state = 50}, + [2119] = {.lex_state = 118}, + [2120] = {.lex_state = 118}, + [2121] = {.lex_state = 118}, + [2122] = {.lex_state = 975}, + [2123] = {.lex_state = 1053}, + [2124] = {.lex_state = 118}, + [2125] = {.lex_state = 975}, + [2126] = {.lex_state = 118}, + [2127] = {.lex_state = 118}, + [2128] = {.lex_state = 118}, + [2129] = {.lex_state = 118}, + [2130] = {.lex_state = 990}, + [2131] = {.lex_state = 975}, + [2132] = {.lex_state = 118}, + [2133] = {.lex_state = 990}, + [2134] = {.lex_state = 990}, + [2135] = {.lex_state = 118}, + [2136] = {.lex_state = 990}, + [2137] = {.lex_state = 107}, + [2138] = {.lex_state = 118}, + [2139] = {.lex_state = 50}, + [2140] = {.lex_state = 118}, + [2141] = {.lex_state = 118}, + [2142] = {.lex_state = 118}, + [2143] = {.lex_state = 145}, + [2144] = {.lex_state = 145}, + [2145] = {.lex_state = 990}, + [2146] = {.lex_state = 1049}, + [2147] = {.lex_state = 975}, + [2148] = {.lex_state = 118}, + [2149] = {.lex_state = 1049}, + [2150] = {.lex_state = 118}, + [2151] = {.lex_state = 118}, + [2152] = {.lex_state = 118}, + [2153] = {.lex_state = 990}, + [2154] = {.lex_state = 990}, + [2155] = {.lex_state = 118}, + [2156] = {.lex_state = 118}, + [2157] = {.lex_state = 118}, + [2158] = {.lex_state = 341}, + [2159] = {.lex_state = 95}, + [2160] = {.lex_state = 95}, + [2161] = {.lex_state = 118}, + [2162] = {.lex_state = 145}, + [2163] = {.lex_state = 118}, + [2164] = {.lex_state = 118}, + [2165] = {.lex_state = 118}, + [2166] = {.lex_state = 118}, + [2167] = {.lex_state = 145}, + [2168] = {.lex_state = 118}, + [2169] = {.lex_state = 118}, + [2170] = {.lex_state = 118}, + [2171] = {.lex_state = 118}, + [2172] = {.lex_state = 118}, + [2173] = {.lex_state = 118}, + [2174] = {.lex_state = 118}, + [2175] = {.lex_state = 118}, + [2176] = {.lex_state = 118}, + [2177] = {.lex_state = 118}, + [2178] = {.lex_state = 118}, + [2179] = {.lex_state = 118}, + [2180] = {.lex_state = 118}, + [2181] = {.lex_state = 349}, + [2182] = {.lex_state = 118}, + [2183] = {.lex_state = 118}, + [2184] = {.lex_state = 118}, + [2185] = {.lex_state = 118}, + [2186] = {.lex_state = 118}, + [2187] = {.lex_state = 990}, + [2188] = {.lex_state = 118}, + [2189] = {.lex_state = 990}, + [2190] = {.lex_state = 990}, + [2191] = {.lex_state = 990}, + [2192] = {.lex_state = 990}, + [2193] = {.lex_state = 990}, + [2194] = {.lex_state = 990}, + [2195] = {.lex_state = 118}, + [2196] = {.lex_state = 118}, + [2197] = {.lex_state = 118}, + [2198] = {.lex_state = 118}, + [2199] = {.lex_state = 118}, + [2200] = {.lex_state = 118}, + [2201] = {.lex_state = 990}, + [2202] = {.lex_state = 990}, + [2203] = {.lex_state = 118}, + [2204] = {.lex_state = 118}, + [2205] = {.lex_state = 1053}, + [2206] = {.lex_state = 118}, + [2207] = {.lex_state = 1045}, + [2208] = {.lex_state = 990}, + [2209] = {.lex_state = 118}, + [2210] = {.lex_state = 118}, + [2211] = {.lex_state = 118}, + [2212] = {.lex_state = 118}, + [2213] = {.lex_state = 118}, + [2214] = {.lex_state = 118}, + [2215] = {.lex_state = 990}, + [2216] = {.lex_state = 118}, + [2217] = {.lex_state = 1045}, + [2218] = {.lex_state = 118}, + [2219] = {.lex_state = 990}, + [2220] = {.lex_state = 118}, + [2221] = {.lex_state = 118}, + [2222] = {.lex_state = 97}, + [2223] = {.lex_state = 118}, + [2224] = {.lex_state = 37}, + [2225] = {.lex_state = 118}, + [2226] = {.lex_state = 974}, + [2227] = {.lex_state = 974}, + [2228] = {.lex_state = 974}, + [2229] = {.lex_state = 118}, + [2230] = {.lex_state = 37}, + [2231] = {.lex_state = 974}, + [2232] = {.lex_state = 990}, + [2233] = {.lex_state = 974}, + [2234] = {.lex_state = 118}, + [2235] = {.lex_state = 118}, + [2236] = {.lex_state = 118}, + [2237] = {.lex_state = 990}, + [2238] = {.lex_state = 118}, + [2239] = {.lex_state = 118}, + [2240] = {.lex_state = 142}, + [2241] = {.lex_state = 142}, + [2242] = {.lex_state = 990}, + [2243] = {.lex_state = 118}, + [2244] = {.lex_state = 118}, + [2245] = {.lex_state = 118}, + [2246] = {.lex_state = 118}, + [2247] = {.lex_state = 118}, + [2248] = {.lex_state = 118}, + [2249] = {.lex_state = 1044}, + [2250] = {.lex_state = 990}, + [2251] = {.lex_state = 118}, + [2252] = {.lex_state = 118}, + [2253] = {.lex_state = 118}, + [2254] = {.lex_state = 975}, + [2255] = {.lex_state = 118}, + [2256] = {.lex_state = 118}, + [2257] = {.lex_state = 118}, + [2258] = {.lex_state = 118}, + [2259] = {.lex_state = 118}, + [2260] = {.lex_state = 118}, + [2261] = {.lex_state = 118}, + [2262] = {.lex_state = 118}, + [2263] = {.lex_state = 990}, + [2264] = {.lex_state = 118}, + [2265] = {.lex_state = 118}, + [2266] = {.lex_state = 118}, + [2267] = {.lex_state = 990}, + [2268] = {.lex_state = 118}, + [2269] = {.lex_state = 118}, + [2270] = {.lex_state = 118}, + [2271] = {.lex_state = 118}, + [2272] = {.lex_state = 37}, + [2273] = {.lex_state = 118}, + [2274] = {.lex_state = 118}, + [2275] = {.lex_state = 118}, + [2276] = {.lex_state = 118}, + [2277] = {.lex_state = 118}, + [2278] = {.lex_state = 118}, + [2279] = {.lex_state = 118}, + [2280] = {.lex_state = 118}, + [2281] = {.lex_state = 118}, + [2282] = {.lex_state = 118}, + [2283] = {.lex_state = 37}, + [2284] = {.lex_state = 118}, + [2285] = {.lex_state = 118}, + [2286] = {.lex_state = 37}, + [2287] = {.lex_state = 39}, + [2288] = {.lex_state = 39}, + [2289] = {.lex_state = 118}, + [2290] = {.lex_state = 346}, + [2291] = {.lex_state = 39}, + [2292] = {.lex_state = 118}, + [2293] = {.lex_state = 118}, + [2294] = {.lex_state = 118}, + [2295] = {.lex_state = 118}, + [2296] = {.lex_state = 39}, + [2297] = {.lex_state = 990}, + [2298] = {.lex_state = 118}, + [2299] = {.lex_state = 118}, + [2300] = {.lex_state = 118}, + [2301] = {.lex_state = 118}, + [2302] = {.lex_state = 990}, + [2303] = {.lex_state = 37}, + [2304] = {.lex_state = 39}, + [2305] = {.lex_state = 118}, + [2306] = {.lex_state = 118}, + [2307] = {.lex_state = 118}, + [2308] = {.lex_state = 118}, + [2309] = {.lex_state = 118}, + [2310] = {.lex_state = 39}, + [2311] = {.lex_state = 39}, + [2312] = {.lex_state = 39}, + [2313] = {.lex_state = 141}, + [2314] = {.lex_state = 1045}, + [2315] = {.lex_state = 1045}, + [2316] = {.lex_state = 39}, + [2317] = {.lex_state = 118}, + [2318] = {.lex_state = 118}, + [2319] = {.lex_state = 217}, + [2320] = {.lex_state = 118}, + [2321] = {.lex_state = 118}, + [2322] = {.lex_state = 1053}, + [2323] = {.lex_state = 118}, + [2324] = {.lex_state = 118}, + [2325] = {.lex_state = 118}, + [2326] = {.lex_state = 118}, + [2327] = {.lex_state = 118}, + [2328] = {.lex_state = 118}, + [2329] = {.lex_state = 118}, + [2330] = {.lex_state = 990}, + [2331] = {.lex_state = 118}, + [2332] = {.lex_state = 118}, + [2333] = {.lex_state = 990}, + [2334] = {.lex_state = 118}, + [2335] = {.lex_state = 118}, + [2336] = {.lex_state = 118}, + [2337] = {.lex_state = 118}, + [2338] = {.lex_state = 39}, + [2339] = {.lex_state = 39}, + [2340] = {.lex_state = 39}, + [2341] = {.lex_state = 118}, + [2342] = {.lex_state = 118}, + [2343] = {.lex_state = 346}, + [2344] = {.lex_state = 118}, + [2345] = {.lex_state = 118}, + [2346] = {.lex_state = 118}, + [2347] = {.lex_state = 118}, + [2348] = {.lex_state = 118}, + [2349] = {.lex_state = 118}, + [2350] = {.lex_state = 118}, + [2351] = {.lex_state = 39}, + [2352] = {.lex_state = 118}, + [2353] = {.lex_state = 118}, + [2354] = {.lex_state = 118}, + [2355] = {.lex_state = 148}, + [2356] = {.lex_state = 1053}, + [2357] = {.lex_state = 148}, + [2358] = {.lex_state = 1053}, + [2359] = {.lex_state = 148}, + [2360] = {.lex_state = 118}, + [2361] = {.lex_state = 1053}, + [2362] = {.lex_state = 118}, + [2363] = {.lex_state = 990}, + [2364] = {.lex_state = 118}, + [2365] = {.lex_state = 118}, + [2366] = {.lex_state = 118}, + [2367] = {.lex_state = 118}, + [2368] = {.lex_state = 118}, + [2369] = {.lex_state = 990}, + [2370] = {.lex_state = 118}, + [2371] = {.lex_state = 118}, + [2372] = {.lex_state = 37}, + [2373] = {.lex_state = 118}, + [2374] = {.lex_state = 37}, + [2375] = {.lex_state = 37}, + [2376] = {.lex_state = 37}, + [2377] = {.lex_state = 118}, + [2378] = {.lex_state = 118}, + [2379] = {.lex_state = 118}, + [2380] = {.lex_state = 118}, + [2381] = {.lex_state = 975}, + [2382] = {.lex_state = 97}, + [2383] = {.lex_state = 990}, + [2384] = {.lex_state = 990}, + [2385] = {.lex_state = 990}, + [2386] = {.lex_state = 990}, + [2387] = {.lex_state = 215}, + [2388] = {.lex_state = 990}, + [2389] = {.lex_state = 261}, + [2390] = {.lex_state = 990}, + [2391] = {.lex_state = 251}, + [2392] = {.lex_state = 990}, + [2393] = {.lex_state = 242}, + [2394] = {.lex_state = 348}, + [2395] = {.lex_state = 348}, + [2396] = {.lex_state = 990}, + [2397] = {.lex_state = 348}, + [2398] = {.lex_state = 990}, + [2399] = {.lex_state = 990}, + [2400] = {.lex_state = 990}, + [2401] = {.lex_state = 348}, + [2402] = {.lex_state = 990}, + [2403] = {.lex_state = 990}, + [2404] = {.lex_state = 974}, + [2405] = {.lex_state = 974}, + [2406] = {.lex_state = 974}, + [2407] = {.lex_state = 990}, + [2408] = {.lex_state = 990}, + [2409] = {.lex_state = 990}, + [2410] = {.lex_state = 990}, + [2411] = {.lex_state = 990}, + [2412] = {.lex_state = 990}, + [2413] = {.lex_state = 990}, + [2414] = {.lex_state = 990}, + [2415] = {.lex_state = 990}, + [2416] = {.lex_state = 990}, + [2417] = {.lex_state = 990}, + [2418] = {.lex_state = 990}, + [2419] = {.lex_state = 990}, + [2420] = {.lex_state = 990}, + [2421] = {.lex_state = 990}, + [2422] = {.lex_state = 990}, + [2423] = {.lex_state = 990}, + [2424] = {.lex_state = 990}, + [2425] = {.lex_state = 990}, + [2426] = {.lex_state = 990}, + [2427] = {.lex_state = 990}, + [2428] = {.lex_state = 990}, + [2429] = {.lex_state = 990}, + [2430] = {.lex_state = 990}, + [2431] = {.lex_state = 990}, + [2432] = {.lex_state = 990}, + [2433] = {.lex_state = 990}, + [2434] = {.lex_state = 990}, + [2435] = {.lex_state = 990}, + [2436] = {.lex_state = 975}, + [2437] = {.lex_state = 990}, + [2438] = {.lex_state = 990}, + [2439] = {.lex_state = 990}, + [2440] = {.lex_state = 990}, + [2441] = {.lex_state = 990}, + [2442] = {.lex_state = 990}, + [2443] = {.lex_state = 990}, + [2444] = {.lex_state = 990}, + [2445] = {.lex_state = 975}, + [2446] = {.lex_state = 975}, + [2447] = {.lex_state = 990}, + [2448] = {.lex_state = 990}, + [2449] = {.lex_state = 990}, + [2450] = {.lex_state = 990}, + [2451] = {.lex_state = 990}, + [2452] = {.lex_state = 990}, + [2453] = {.lex_state = 990}, + [2454] = {.lex_state = 974}, + [2455] = {.lex_state = 974}, + [2456] = {.lex_state = 990}, [2457] = {.lex_state = 348}, - [2458] = {.lex_state = 221}, - [2459] = {.lex_state = 251}, - [2460] = {.lex_state = 984}, - [2461] = {.lex_state = 984}, - [2462] = {.lex_state = 986}, - [2463] = {.lex_state = 984}, - [2464] = {.lex_state = 984}, - [2465] = {.lex_state = 266}, - [2466] = {.lex_state = 984}, - [2467] = {.lex_state = 38}, - [2468] = {.lex_state = 252}, - [2469] = {.lex_state = 348}, - [2470] = {.lex_state = 984}, - [2471] = {.lex_state = 267}, - [2472] = {.lex_state = 38}, - [2473] = {.lex_state = 38}, - [2474] = {.lex_state = 38}, - [2475] = {.lex_state = 38}, - [2476] = {.lex_state = 38}, - [2477] = {.lex_state = 984}, - [2478] = {.lex_state = 984}, - [2479] = {.lex_state = 38}, - [2480] = {.lex_state = 984}, - [2481] = {.lex_state = 38}, - [2482] = {.lex_state = 38}, - [2483] = {.lex_state = 38}, - [2484] = {.lex_state = 984}, - [2485] = {.lex_state = 984}, - [2486] = {.lex_state = 252}, - [2487] = {.lex_state = 252}, - [2488] = {.lex_state = 38}, - [2489] = {.lex_state = 252}, - [2490] = {.lex_state = 984}, - [2491] = {.lex_state = 252}, - [2492] = {.lex_state = 38}, - [2493] = {.lex_state = 38}, - [2494] = {.lex_state = 259}, - [2495] = {.lex_state = 38}, - [2496] = {.lex_state = 38}, - [2497] = {.lex_state = 38}, - [2498] = {.lex_state = 984}, - [2499] = {.lex_state = 38}, - [2500] = {.lex_state = 984}, - [2501] = {.lex_state = 984}, - [2502] = {.lex_state = 322}, - [2503] = {.lex_state = 984}, - [2504] = {.lex_state = 38}, - [2505] = {.lex_state = 38}, - [2506] = {.lex_state = 38}, - [2507] = {.lex_state = 347}, - [2508] = {.lex_state = 347}, - [2509] = {.lex_state = 984}, - [2510] = {.lex_state = 347}, - [2511] = {.lex_state = 347}, - [2512] = {.lex_state = 38}, - [2513] = {.lex_state = 38}, - [2514] = {.lex_state = 265}, - [2515] = {.lex_state = 347}, - [2516] = {.lex_state = 347}, - [2517] = {.lex_state = 347}, - [2518] = {.lex_state = 347}, - [2519] = {.lex_state = 347}, - [2520] = {.lex_state = 347}, - [2521] = {.lex_state = 347}, - [2522] = {.lex_state = 347}, - [2523] = {.lex_state = 347}, - [2524] = {.lex_state = 347}, - [2525] = {.lex_state = 347}, - [2526] = {.lex_state = 347}, - [2527] = {.lex_state = 347}, - [2528] = {.lex_state = 347}, - [2529] = {.lex_state = 347}, - [2530] = {.lex_state = 347}, - [2531] = {.lex_state = 347}, - [2532] = {.lex_state = 337}, - [2533] = {.lex_state = 347}, - [2534] = {.lex_state = 38}, - [2535] = {.lex_state = 38}, - [2536] = {.lex_state = 328}, - [2537] = {.lex_state = 38}, - [2538] = {.lex_state = 38}, - [2539] = {.lex_state = 322}, - [2540] = {.lex_state = 322}, - [2541] = {.lex_state = 984}, - [2542] = {.lex_state = 38}, - [2543] = {.lex_state = 38}, - [2544] = {.lex_state = 38}, - [2545] = {.lex_state = 38}, - [2546] = {.lex_state = 38}, - [2547] = {.lex_state = 38}, - [2548] = {.lex_state = 265}, - [2549] = {.lex_state = 250}, - [2550] = {.lex_state = 265}, - [2551] = {.lex_state = 265}, - [2552] = {.lex_state = 347}, - [2553] = {.lex_state = 934}, - [2554] = {.lex_state = 253}, - [2555] = {.lex_state = 322}, - [2556] = {.lex_state = 347}, - [2557] = {.lex_state = 330}, - [2558] = {.lex_state = 213}, - [2559] = {.lex_state = 253}, - [2560] = {.lex_state = 309}, - [2561] = {.lex_state = 322}, - [2562] = {.lex_state = 309}, - [2563] = {.lex_state = 309}, - [2564] = {.lex_state = 347}, - [2565] = {.lex_state = 934}, - [2566] = {.lex_state = 330}, - [2567] = {.lex_state = 254}, - [2568] = {.lex_state = 213}, - [2569] = {.lex_state = 213}, - [2570] = {.lex_state = 320}, - [2571] = {.lex_state = 309}, - [2572] = {.lex_state = 38}, - [2573] = {.lex_state = 320}, - [2574] = {.lex_state = 345}, - [2575] = {.lex_state = 320}, - [2576] = {.lex_state = 321}, - [2577] = {.lex_state = 345}, - [2578] = {.lex_state = 345}, - [2579] = {.lex_state = 345}, - [2580] = {.lex_state = 346}, - [2581] = {.lex_state = 345}, - [2582] = {.lex_state = 346}, - [2583] = {.lex_state = 349}, - [2584] = {.lex_state = 254}, - [2585] = {.lex_state = 346}, - [2586] = {.lex_state = 43}, - [2587] = {.lex_state = 345}, - [2588] = {.lex_state = 319}, - [2589] = {.lex_state = 213}, - [2590] = {.lex_state = 934}, - [2591] = {.lex_state = 329}, - [2592] = {.lex_state = 213}, - [2593] = {.lex_state = 345}, - [2594] = {.lex_state = 345}, + [2458] = {.lex_state = 216}, + [2459] = {.lex_state = 990}, + [2460] = {.lex_state = 990}, + [2461] = {.lex_state = 990}, + [2462] = {.lex_state = 990}, + [2463] = {.lex_state = 216}, + [2464] = {.lex_state = 990}, + [2465] = {.lex_state = 990}, + [2466] = {.lex_state = 990}, + [2467] = {.lex_state = 990}, + [2468] = {.lex_state = 990}, + [2469] = {.lex_state = 990}, + [2470] = {.lex_state = 990}, + [2471] = {.lex_state = 990}, + [2472] = {.lex_state = 341}, + [2473] = {.lex_state = 973}, + [2474] = {.lex_state = 973}, + [2475] = {.lex_state = 260}, + [2476] = {.lex_state = 973}, + [2477] = {.lex_state = 341}, + [2478] = {.lex_state = 975}, + [2479] = {.lex_state = 214}, + [2480] = {.lex_state = 973}, + [2481] = {.lex_state = 341}, + [2482] = {.lex_state = 341}, + [2483] = {.lex_state = 973}, + [2484] = {.lex_state = 973}, + [2485] = {.lex_state = 259}, + [2486] = {.lex_state = 973}, + [2487] = {.lex_state = 341}, + [2488] = {.lex_state = 341}, + [2489] = {.lex_state = 341}, + [2490] = {.lex_state = 973}, + [2491] = {.lex_state = 244}, + [2492] = {.lex_state = 341}, + [2493] = {.lex_state = 245}, + [2494] = {.lex_state = 37}, + [2495] = {.lex_state = 37}, + [2496] = {.lex_state = 975}, + [2497] = {.lex_state = 975}, + [2498] = {.lex_state = 973}, + [2499] = {.lex_state = 973}, + [2500] = {.lex_state = 37}, + [2501] = {.lex_state = 973}, + [2502] = {.lex_state = 973}, + [2503] = {.lex_state = 214}, + [2504] = {.lex_state = 973}, + [2505] = {.lex_state = 244}, + [2506] = {.lex_state = 973}, + [2507] = {.lex_state = 37}, + [2508] = {.lex_state = 37}, + [2509] = {.lex_state = 973}, + [2510] = {.lex_state = 260}, + [2511] = {.lex_state = 973}, + [2512] = {.lex_state = 260}, + [2513] = {.lex_state = 260}, + [2514] = {.lex_state = 37}, + [2515] = {.lex_state = 340}, + [2516] = {.lex_state = 37}, + [2517] = {.lex_state = 340}, + [2518] = {.lex_state = 37}, + [2519] = {.lex_state = 973}, + [2520] = {.lex_state = 973}, + [2521] = {.lex_state = 973}, + [2522] = {.lex_state = 37}, + [2523] = {.lex_state = 37}, + [2524] = {.lex_state = 340}, + [2525] = {.lex_state = 340}, + [2526] = {.lex_state = 340}, + [2527] = {.lex_state = 340}, + [2528] = {.lex_state = 37}, + [2529] = {.lex_state = 37}, + [2530] = {.lex_state = 973}, + [2531] = {.lex_state = 973}, + [2532] = {.lex_state = 973}, + [2533] = {.lex_state = 37}, + [2534] = {.lex_state = 340}, + [2535] = {.lex_state = 340}, + [2536] = {.lex_state = 340}, + [2537] = {.lex_state = 340}, + [2538] = {.lex_state = 340}, + [2539] = {.lex_state = 37}, + [2540] = {.lex_state = 37}, + [2541] = {.lex_state = 340}, + [2542] = {.lex_state = 245}, + [2543] = {.lex_state = 340}, + [2544] = {.lex_state = 340}, + [2545] = {.lex_state = 340}, + [2546] = {.lex_state = 340}, + [2547] = {.lex_state = 37}, + [2548] = {.lex_state = 340}, + [2549] = {.lex_state = 37}, + [2550] = {.lex_state = 973}, + [2551] = {.lex_state = 37}, + [2552] = {.lex_state = 973}, + [2553] = {.lex_state = 37}, + [2554] = {.lex_state = 315}, + [2555] = {.lex_state = 340}, + [2556] = {.lex_state = 315}, + [2557] = {.lex_state = 973}, + [2558] = {.lex_state = 973}, + [2559] = {.lex_state = 37}, + [2560] = {.lex_state = 37}, + [2561] = {.lex_state = 37}, + [2562] = {.lex_state = 258}, + [2563] = {.lex_state = 37}, + [2564] = {.lex_state = 37}, + [2565] = {.lex_state = 37}, + [2566] = {.lex_state = 37}, + [2567] = {.lex_state = 37}, + [2568] = {.lex_state = 245}, + [2569] = {.lex_state = 340}, + [2570] = {.lex_state = 37}, + [2571] = {.lex_state = 37}, + [2572] = {.lex_state = 245}, + [2573] = {.lex_state = 37}, + [2574] = {.lex_state = 330}, + [2575] = {.lex_state = 37}, + [2576] = {.lex_state = 258}, + [2577] = {.lex_state = 258}, + [2578] = {.lex_state = 258}, + [2579] = {.lex_state = 252}, + [2580] = {.lex_state = 37}, + [2581] = {.lex_state = 340}, + [2582] = {.lex_state = 973}, + [2583] = {.lex_state = 340}, + [2584] = {.lex_state = 321}, + [2585] = {.lex_state = 340}, + [2586] = {.lex_state = 37}, + [2587] = {.lex_state = 973}, + [2588] = {.lex_state = 243}, + [2589] = {.lex_state = 37}, + [2590] = {.lex_state = 37}, + [2591] = {.lex_state = 37}, + [2592] = {.lex_state = 340}, + [2593] = {.lex_state = 315}, + [2594] = {.lex_state = 245}, [2595] = {.lex_state = 323}, - [2596] = {.lex_state = 320}, - [2597] = {.lex_state = 320}, - [2598] = {.lex_state = 254}, - [2599] = {.lex_state = 254}, - [2600] = {.lex_state = 934}, - [2601] = {.lex_state = 346}, - [2602] = {.lex_state = 331}, - [2603] = {.lex_state = 345}, - [2604] = {.lex_state = 346}, - [2605] = {.lex_state = 309}, - [2606] = {.lex_state = 331}, - [2607] = {.lex_state = 331}, - [2608] = {.lex_state = 213}, - [2609] = {.lex_state = 934}, - [2610] = {.lex_state = 934}, - [2611] = {.lex_state = 331}, - [2612] = {.lex_state = 254}, - [2613] = {.lex_state = 331}, + [2596] = {.lex_state = 340}, + [2597] = {.lex_state = 323}, + [2598] = {.lex_state = 246}, + [2599] = {.lex_state = 302}, + [2600] = {.lex_state = 246}, + [2601] = {.lex_state = 922}, + [2602] = {.lex_state = 302}, + [2603] = {.lex_state = 922}, + [2604] = {.lex_state = 340}, + [2605] = {.lex_state = 315}, + [2606] = {.lex_state = 315}, + [2607] = {.lex_state = 302}, + [2608] = {.lex_state = 339}, + [2609] = {.lex_state = 338}, + [2610] = {.lex_state = 302}, + [2611] = {.lex_state = 313}, + [2612] = {.lex_state = 313}, + [2613] = {.lex_state = 313}, [2614] = {.lex_state = 338}, - [2615] = {.lex_state = 254}, - [2616] = {.lex_state = 934}, - [2617] = {.lex_state = 326}, - [2618] = {.lex_state = 364}, - [2619] = {.lex_state = 255}, - [2620] = {.lex_state = 38}, - [2621] = {.lex_state = 38}, - [2622] = {.lex_state = 260}, - [2623] = {.lex_state = 310}, - [2624] = {.lex_state = 317}, - [2625] = {.lex_state = 213}, - [2626] = {.lex_state = 317}, - [2627] = {.lex_state = 934}, - [2628] = {.lex_state = 364}, - [2629] = {.lex_state = 364}, - [2630] = {.lex_state = 345}, - [2631] = {.lex_state = 308}, - [2632] = {.lex_state = 364}, - [2633] = {.lex_state = 364}, - [2634] = {.lex_state = 326}, - [2635] = {.lex_state = 307}, - [2636] = {.lex_state = 345}, - [2637] = {.lex_state = 307}, - [2638] = {.lex_state = 38}, - [2639] = {.lex_state = 322}, - [2640] = {.lex_state = 306}, - [2641] = {.lex_state = 307}, - [2642] = {.lex_state = 307}, - [2643] = {.lex_state = 934}, - [2644] = {.lex_state = 966}, - [2645] = {.lex_state = 326}, - [2646] = {.lex_state = 934}, - [2647] = {.lex_state = 322}, - [2648] = {.lex_state = 322}, - [2649] = {.lex_state = 347}, - [2650] = {.lex_state = 326}, - [2651] = {.lex_state = 326}, - [2652] = {.lex_state = 307}, - [2653] = {.lex_state = 326}, - [2654] = {.lex_state = 348}, - [2655] = {.lex_state = 326}, - [2656] = {.lex_state = 38}, - [2657] = {.lex_state = 326}, - [2658] = {.lex_state = 352}, - [2659] = {.lex_state = 211}, - [2660] = {.lex_state = 348}, - [2661] = {.lex_state = 347}, - [2662] = {.lex_state = 43}, - [2663] = {.lex_state = 966}, - [2664] = {.lex_state = 966}, - [2665] = {.lex_state = 326}, - [2666] = {.lex_state = 347}, - [2667] = {.lex_state = 211}, - [2668] = {.lex_state = 326}, - [2669] = {.lex_state = 211}, - [2670] = {.lex_state = 326}, - [2671] = {.lex_state = 326}, - [2672] = {.lex_state = 326}, - [2673] = {.lex_state = 211}, - [2674] = {.lex_state = 326}, - [2675] = {.lex_state = 38}, - [2676] = {.lex_state = 326}, - [2677] = {.lex_state = 326}, - [2678] = {.lex_state = 326}, - [2679] = {.lex_state = 326}, - [2680] = {.lex_state = 38}, - [2681] = {.lex_state = 38}, - [2682] = {.lex_state = 332}, - [2683] = {.lex_state = 332}, - [2684] = {.lex_state = 326}, - [2685] = {.lex_state = 326}, - [2686] = {.lex_state = 38}, - [2687] = {.lex_state = 38}, - [2688] = {.lex_state = 38}, - [2689] = {.lex_state = 38}, - [2690] = {.lex_state = 38}, - [2691] = {.lex_state = 38}, - [2692] = {.lex_state = 38}, - [2693] = {.lex_state = 310}, - [2694] = {.lex_state = 310}, - [2695] = {.lex_state = 212}, - [2696] = {.lex_state = 309}, - [2697] = {.lex_state = 38}, - [2698] = {.lex_state = 318}, - [2699] = {.lex_state = 38}, - [2700] = {.lex_state = 38}, - [2701] = {.lex_state = 310}, - [2702] = {.lex_state = 38}, - [2703] = {.lex_state = 38}, - [2704] = {.lex_state = 212}, - [2705] = {.lex_state = 212}, - [2706] = {.lex_state = 38}, - [2707] = {.lex_state = 38}, - [2708] = {.lex_state = 38}, - [2709] = {.lex_state = 304}, - [2710] = {.lex_state = 318}, - [2711] = {.lex_state = 38}, - [2712] = {.lex_state = 38}, - [2713] = {.lex_state = 318}, - [2714] = {.lex_state = 38}, - [2715] = {.lex_state = 38}, - [2716] = {.lex_state = 318}, - [2717] = {.lex_state = 38}, - [2718] = {.lex_state = 38}, - [2719] = {.lex_state = 38}, - [2720] = {.lex_state = 38}, - [2721] = {.lex_state = 38}, - [2722] = {.lex_state = 38}, - [2723] = {.lex_state = 38}, - [2724] = {.lex_state = 38}, - [2725] = {.lex_state = 38}, - [2726] = {.lex_state = 38}, - [2727] = {.lex_state = 318}, - [2728] = {.lex_state = 318}, - [2729] = {.lex_state = 212}, - [2730] = {.lex_state = 318}, - [2731] = {.lex_state = 318}, - [2732] = {.lex_state = 310}, - [2733] = {.lex_state = 310}, - [2734] = {.lex_state = 41}, - [2735] = {.lex_state = 38}, - [2736] = {.lex_state = 38}, - [2737] = {.lex_state = 40}, - [2738] = {.lex_state = 310}, - [2739] = {.lex_state = 318}, - [2740] = {.lex_state = 318}, - [2741] = {.lex_state = 38}, - [2742] = {.lex_state = 333}, - [2743] = {.lex_state = 38}, - [2744] = {.lex_state = 256}, - [2745] = {.lex_state = 310}, - [2746] = {.lex_state = 310}, - [2747] = {.lex_state = 318}, - [2748] = {.lex_state = 310}, - [2749] = {.lex_state = 38}, - [2750] = {.lex_state = 310}, - [2751] = {.lex_state = 318}, - [2752] = {.lex_state = 212}, - [2753] = {.lex_state = 333}, - [2754] = {.lex_state = 309}, - [2755] = {.lex_state = 310}, - [2756] = {.lex_state = 318}, - [2757] = {.lex_state = 309}, - [2758] = {.lex_state = 310}, - [2759] = {.lex_state = 256}, - [2760] = {.lex_state = 310}, - [2761] = {.lex_state = 310}, - [2762] = {.lex_state = 326}, - [2763] = {.lex_state = 38}, - [2764] = {.lex_state = 38}, - [2765] = {.lex_state = 38}, - [2766] = {.lex_state = 38}, - [2767] = {.lex_state = 1003}, - [2768] = {.lex_state = 38}, - [2769] = {.lex_state = 38}, - [2770] = {.lex_state = 310}, - [2771] = {.lex_state = 310}, - [2772] = {.lex_state = 310}, - [2773] = {.lex_state = 310}, - [2774] = {.lex_state = 333}, - [2775] = {.lex_state = 318}, - [2776] = {.lex_state = 318}, - [2777] = {.lex_state = 38}, - [2778] = {.lex_state = 304}, - [2779] = {.lex_state = 1009}, - [2780] = {.lex_state = 310}, - [2781] = {.lex_state = 333}, - [2782] = {.lex_state = 333}, - [2783] = {.lex_state = 333}, - [2784] = {.lex_state = 310}, - [2785] = {.lex_state = 310}, - [2786] = {.lex_state = 212}, - [2787] = {.lex_state = 38}, - [2788] = {.lex_state = 326}, - [2789] = {.lex_state = 305}, - [2790] = {.lex_state = 257}, - [2791] = {.lex_state = 324}, - [2792] = {.lex_state = 305}, - [2793] = {.lex_state = 257}, - [2794] = {.lex_state = 305}, - [2795] = {.lex_state = 1009}, + [2615] = {.lex_state = 338}, + [2616] = {.lex_state = 302}, + [2617] = {.lex_state = 206}, + [2618] = {.lex_state = 338}, + [2619] = {.lex_state = 338}, + [2620] = {.lex_state = 338}, + [2621] = {.lex_state = 206}, + [2622] = {.lex_state = 206}, + [2623] = {.lex_state = 338}, + [2624] = {.lex_state = 339}, + [2625] = {.lex_state = 339}, + [2626] = {.lex_state = 37}, + [2627] = {.lex_state = 324}, + [2628] = {.lex_state = 312}, + [2629] = {.lex_state = 342}, + [2630] = {.lex_state = 206}, + [2631] = {.lex_state = 339}, + [2632] = {.lex_state = 922}, + [2633] = {.lex_state = 324}, + [2634] = {.lex_state = 922}, + [2635] = {.lex_state = 922}, + [2636] = {.lex_state = 324}, + [2637] = {.lex_state = 324}, + [2638] = {.lex_state = 338}, + [2639] = {.lex_state = 338}, + [2640] = {.lex_state = 324}, + [2641] = {.lex_state = 331}, + [2642] = {.lex_state = 922}, + [2643] = {.lex_state = 247}, + [2644] = {.lex_state = 322}, + [2645] = {.lex_state = 247}, + [2646] = {.lex_state = 247}, + [2647] = {.lex_state = 247}, + [2648] = {.lex_state = 41}, + [2649] = {.lex_state = 314}, + [2650] = {.lex_state = 313}, + [2651] = {.lex_state = 313}, + [2652] = {.lex_state = 247}, + [2653] = {.lex_state = 247}, + [2654] = {.lex_state = 316}, + [2655] = {.lex_state = 922}, + [2656] = {.lex_state = 339}, + [2657] = {.lex_state = 206}, + [2658] = {.lex_state = 340}, + [2659] = {.lex_state = 303}, + [2660] = {.lex_state = 357}, + [2661] = {.lex_state = 319}, + [2662] = {.lex_state = 357}, + [2663] = {.lex_state = 922}, + [2664] = {.lex_state = 310}, + [2665] = {.lex_state = 204}, + [2666] = {.lex_state = 338}, + [2667] = {.lex_state = 310}, + [2668] = {.lex_state = 206}, + [2669] = {.lex_state = 955}, + [2670] = {.lex_state = 253}, + [2671] = {.lex_state = 955}, + [2672] = {.lex_state = 340}, + [2673] = {.lex_state = 206}, + [2674] = {.lex_state = 345}, + [2675] = {.lex_state = 338}, + [2676] = {.lex_state = 922}, + [2677] = {.lex_state = 341}, + [2678] = {.lex_state = 301}, + [2679] = {.lex_state = 37}, + [2680] = {.lex_state = 340}, + [2681] = {.lex_state = 357}, + [2682] = {.lex_state = 319}, + [2683] = {.lex_state = 357}, + [2684] = {.lex_state = 300}, + [2685] = {.lex_state = 300}, + [2686] = {.lex_state = 325}, + [2687] = {.lex_state = 37}, + [2688] = {.lex_state = 319}, + [2689] = {.lex_state = 319}, + [2690] = {.lex_state = 319}, + [2691] = {.lex_state = 41}, + [2692] = {.lex_state = 319}, + [2693] = {.lex_state = 319}, + [2694] = {.lex_state = 357}, + [2695] = {.lex_state = 319}, + [2696] = {.lex_state = 319}, + [2697] = {.lex_state = 319}, + [2698] = {.lex_state = 319}, + [2699] = {.lex_state = 319}, + [2700] = {.lex_state = 319}, + [2701] = {.lex_state = 319}, + [2702] = {.lex_state = 319}, + [2703] = {.lex_state = 319}, + [2704] = {.lex_state = 319}, + [2705] = {.lex_state = 319}, + [2706] = {.lex_state = 204}, + [2707] = {.lex_state = 325}, + [2708] = {.lex_state = 248}, + [2709] = {.lex_state = 319}, + [2710] = {.lex_state = 204}, + [2711] = {.lex_state = 315}, + [2712] = {.lex_state = 204}, + [2713] = {.lex_state = 299}, + [2714] = {.lex_state = 341}, + [2715] = {.lex_state = 37}, + [2716] = {.lex_state = 37}, + [2717] = {.lex_state = 37}, + [2718] = {.lex_state = 300}, + [2719] = {.lex_state = 315}, + [2720] = {.lex_state = 37}, + [2721] = {.lex_state = 300}, + [2722] = {.lex_state = 300}, + [2723] = {.lex_state = 315}, + [2724] = {.lex_state = 37}, + [2725] = {.lex_state = 922}, + [2726] = {.lex_state = 319}, + [2727] = {.lex_state = 303}, + [2728] = {.lex_state = 311}, + [2729] = {.lex_state = 37}, + [2730] = {.lex_state = 303}, + [2731] = {.lex_state = 37}, + [2732] = {.lex_state = 303}, + [2733] = {.lex_state = 311}, + [2734] = {.lex_state = 205}, + [2735] = {.lex_state = 311}, + [2736] = {.lex_state = 311}, + [2737] = {.lex_state = 303}, + [2738] = {.lex_state = 37}, + [2739] = {.lex_state = 303}, + [2740] = {.lex_state = 311}, + [2741] = {.lex_state = 37}, + [2742] = {.lex_state = 37}, + [2743] = {.lex_state = 37}, + [2744] = {.lex_state = 37}, + [2745] = {.lex_state = 311}, + [2746] = {.lex_state = 994}, + [2747] = {.lex_state = 37}, + [2748] = {.lex_state = 37}, + [2749] = {.lex_state = 37}, + [2750] = {.lex_state = 303}, + [2751] = {.lex_state = 1000}, + [2752] = {.lex_state = 37}, + [2753] = {.lex_state = 311}, + [2754] = {.lex_state = 302}, + [2755] = {.lex_state = 37}, + [2756] = {.lex_state = 37}, + [2757] = {.lex_state = 326}, + [2758] = {.lex_state = 37}, + [2759] = {.lex_state = 37}, + [2760] = {.lex_state = 37}, + [2761] = {.lex_state = 319}, + [2762] = {.lex_state = 249}, + [2763] = {.lex_state = 40}, + [2764] = {.lex_state = 37}, + [2765] = {.lex_state = 37}, + [2766] = {.lex_state = 303}, + [2767] = {.lex_state = 37}, + [2768] = {.lex_state = 249}, + [2769] = {.lex_state = 302}, + [2770] = {.lex_state = 37}, + [2771] = {.lex_state = 205}, + [2772] = {.lex_state = 297}, + [2773] = {.lex_state = 303}, + [2774] = {.lex_state = 303}, + [2775] = {.lex_state = 37}, + [2776] = {.lex_state = 37}, + [2777] = {.lex_state = 37}, + [2778] = {.lex_state = 326}, + [2779] = {.lex_state = 311}, + [2780] = {.lex_state = 37}, + [2781] = {.lex_state = 37}, + [2782] = {.lex_state = 37}, + [2783] = {.lex_state = 326}, + [2784] = {.lex_state = 37}, + [2785] = {.lex_state = 37}, + [2786] = {.lex_state = 37}, + [2787] = {.lex_state = 37}, + [2788] = {.lex_state = 37}, + [2789] = {.lex_state = 326}, + [2790] = {.lex_state = 37}, + [2791] = {.lex_state = 311}, + [2792] = {.lex_state = 37}, + [2793] = {.lex_state = 37}, + [2794] = {.lex_state = 37}, + [2795] = {.lex_state = 41}, [2796] = {.lex_state = 297}, - [2797] = {.lex_state = 297}, - [2798] = {.lex_state = 365}, - [2799] = {.lex_state = 297}, - [2800] = {.lex_state = 310}, - [2801] = {.lex_state = 297}, - [2802] = {.lex_state = 334}, - [2803] = {.lex_state = 305}, - [2804] = {.lex_state = 41}, - [2805] = {.lex_state = 310}, - [2806] = {.lex_state = 324}, - [2807] = {.lex_state = 324}, - [2808] = {.lex_state = 325}, - [2809] = {.lex_state = 257}, - [2810] = {.lex_state = 257}, - [2811] = {.lex_state = 305}, - [2812] = {.lex_state = 124}, - [2813] = {.lex_state = 40}, - [2814] = {.lex_state = 297}, - [2815] = {.lex_state = 316}, - [2816] = {.lex_state = 305}, - [2817] = {.lex_state = 305}, - [2818] = {.lex_state = 297}, - [2819] = {.lex_state = 257}, - [2820] = {.lex_state = 324}, - [2821] = {.lex_state = 314}, - [2822] = {.lex_state = 305}, - [2823] = {.lex_state = 305}, - [2824] = {.lex_state = 365}, - [2825] = {.lex_state = 297}, - [2826] = {.lex_state = 365}, - [2827] = {.lex_state = 305}, - [2828] = {.lex_state = 297}, - [2829] = {.lex_state = 305}, - [2830] = {.lex_state = 257}, - [2831] = {.lex_state = 305}, - [2832] = {.lex_state = 257}, - [2833] = {.lex_state = 324}, - [2834] = {.lex_state = 126}, - [2835] = {.lex_state = 1017}, - [2836] = {.lex_state = 297}, - [2837] = {.lex_state = 74}, - [2838] = {.lex_state = 305}, - [2839] = {.lex_state = 339}, - [2840] = {.lex_state = 297}, - [2841] = {.lex_state = 305}, - [2842] = {.lex_state = 365}, - [2843] = {.lex_state = 1045}, - [2844] = {.lex_state = 1013}, - [2845] = {.lex_state = 365}, - [2846] = {.lex_state = 297}, - [2847] = {.lex_state = 257}, - [2848] = {.lex_state = 1003}, - [2849] = {.lex_state = 1043}, - [2850] = {.lex_state = 257}, - [2851] = {.lex_state = 297}, - [2852] = {.lex_state = 220}, - [2853] = {.lex_state = 305}, - [2854] = {.lex_state = 1013}, - [2855] = {.lex_state = 1017}, - [2856] = {.lex_state = 1047}, - [2857] = {.lex_state = 303}, - [2858] = {.lex_state = 315}, - [2859] = {.lex_state = 315}, - [2860] = {.lex_state = 42}, - [2861] = {.lex_state = 340}, - [2862] = {.lex_state = 315}, - [2863] = {.lex_state = 315}, - [2864] = {.lex_state = 335}, - [2865] = {.lex_state = 297}, - [2866] = {.lex_state = 315}, - [2867] = {.lex_state = 315}, - [2868] = {.lex_state = 315}, - [2869] = {.lex_state = 315}, - [2870] = {.lex_state = 313}, - [2871] = {.lex_state = 1013}, - [2872] = {.lex_state = 220}, - [2873] = {.lex_state = 315}, - [2874] = {.lex_state = 315}, - [2875] = {.lex_state = 315}, - [2876] = {.lex_state = 315}, - [2877] = {.lex_state = 315}, - [2878] = {.lex_state = 315}, - [2879] = {.lex_state = 1043}, - [2880] = {.lex_state = 220}, - [2881] = {.lex_state = 315}, - [2882] = {.lex_state = 315}, - [2883] = {.lex_state = 1045}, - [2884] = {.lex_state = 315}, - [2885] = {.lex_state = 1013}, - [2886] = {.lex_state = 315}, - [2887] = {.lex_state = 315}, - [2888] = {.lex_state = 1017}, - [2889] = {.lex_state = 313}, - [2890] = {.lex_state = 315}, - [2891] = {.lex_state = 315}, - [2892] = {.lex_state = 137}, - [2893] = {.lex_state = 311}, - [2894] = {.lex_state = 128}, - [2895] = {.lex_state = 139}, - [2896] = {.lex_state = 1047}, - [2897] = {.lex_state = 315}, - [2898] = {.lex_state = 315}, - [2899] = {.lex_state = 1017}, - [2900] = {.lex_state = 315}, - [2901] = {.lex_state = 315}, - [2902] = {.lex_state = 311}, - [2903] = {.lex_state = 335}, - [2904] = {.lex_state = 326}, - [2905] = {.lex_state = 326}, - [2906] = {.lex_state = 315}, - [2907] = {.lex_state = 315}, - [2908] = {.lex_state = 315}, - [2909] = {.lex_state = 312}, - [2910] = {.lex_state = 311}, - [2911] = {.lex_state = 128}, - [2912] = {.lex_state = 1017}, - [2913] = {.lex_state = 315}, - [2914] = {.lex_state = 311}, - [2915] = {.lex_state = 315}, - [2916] = {.lex_state = 315}, - [2917] = {.lex_state = 130}, - [2918] = {.lex_state = 315}, - [2919] = {.lex_state = 315}, - [2920] = {.lex_state = 1017}, - [2921] = {.lex_state = 315}, - [2922] = {.lex_state = 311}, - [2923] = {.lex_state = 315}, - [2924] = {.lex_state = 326}, - [2925] = {.lex_state = 315}, - [2926] = {.lex_state = 315}, - [2927] = {.lex_state = 315}, - [2928] = {.lex_state = 366}, - [2929] = {.lex_state = 1049}, - [2930] = {.lex_state = 130}, - [2931] = {.lex_state = 315}, - [2932] = {.lex_state = 366}, - [2933] = {.lex_state = 300}, - [2934] = {.lex_state = 1049}, - [2935] = {.lex_state = 310}, - [2936] = {.lex_state = 310}, - [2937] = {.lex_state = 297}, - [2938] = {.lex_state = 1017}, - [2939] = {.lex_state = 1049}, - [2940] = {.lex_state = 130}, - [2941] = {.lex_state = 315}, - [2942] = {.lex_state = 1047}, - [2943] = {.lex_state = 315}, - [2944] = {.lex_state = 315}, - [2945] = {.lex_state = 336}, - [2946] = {.lex_state = 336}, - [2947] = {.lex_state = 366}, - [2948] = {.lex_state = 42}, - [2949] = {.lex_state = 1017}, - [2950] = {.lex_state = 47}, - [2951] = {.lex_state = 336}, - [2952] = {.lex_state = 336}, - [2953] = {.lex_state = 315}, - [2954] = {.lex_state = 130}, - [2955] = {.lex_state = 315}, - [2956] = {.lex_state = 336}, - [2957] = {.lex_state = 315}, - [2958] = {.lex_state = 315}, - [2959] = {.lex_state = 336}, - [2960] = {.lex_state = 1017}, - [2961] = {.lex_state = 310}, - [2962] = {.lex_state = 1017}, - [2963] = {.lex_state = 1049}, - [2964] = {.lex_state = 336}, - [2965] = {.lex_state = 336}, - [2966] = {.lex_state = 141}, - [2967] = {.lex_state = 315}, - [2968] = {.lex_state = 300}, - [2969] = {.lex_state = 297}, - [2970] = {.lex_state = 315}, - [2971] = {.lex_state = 315}, - [2972] = {.lex_state = 315}, - [2973] = {.lex_state = 315}, - [2974] = {.lex_state = 366}, - [2975] = {.lex_state = 130}, - [2976] = {.lex_state = 366}, - [2977] = {.lex_state = 301}, - [2978] = {.lex_state = 1049}, - [2979] = {.lex_state = 336}, - [2980] = {.lex_state = 1047}, - [2981] = {.lex_state = 336}, - [2982] = {.lex_state = 141}, - [2983] = {.lex_state = 42}, - [2984] = {.lex_state = 42}, - [2985] = {.lex_state = 42}, - [2986] = {.lex_state = 42}, - [2987] = {.lex_state = 42}, - [2988] = {.lex_state = 42}, - [2989] = {.lex_state = 42}, - [2990] = {.lex_state = 42}, + [2797] = {.lex_state = 37}, + [2798] = {.lex_state = 303}, + [2799] = {.lex_state = 205}, + [2800] = {.lex_state = 37}, + [2801] = {.lex_state = 37}, + [2802] = {.lex_state = 311}, + [2803] = {.lex_state = 311}, + [2804] = {.lex_state = 37}, + [2805] = {.lex_state = 311}, + [2806] = {.lex_state = 326}, + [2807] = {.lex_state = 302}, + [2808] = {.lex_state = 37}, + [2809] = {.lex_state = 37}, + [2810] = {.lex_state = 303}, + [2811] = {.lex_state = 37}, + [2812] = {.lex_state = 311}, + [2813] = {.lex_state = 303}, + [2814] = {.lex_state = 37}, + [2815] = {.lex_state = 37}, + [2816] = {.lex_state = 303}, + [2817] = {.lex_state = 303}, + [2818] = {.lex_state = 303}, + [2819] = {.lex_state = 326}, + [2820] = {.lex_state = 303}, + [2821] = {.lex_state = 311}, + [2822] = {.lex_state = 205}, + [2823] = {.lex_state = 319}, + [2824] = {.lex_state = 303}, + [2825] = {.lex_state = 205}, + [2826] = {.lex_state = 39}, + [2827] = {.lex_state = 205}, + [2828] = {.lex_state = 311}, + [2829] = {.lex_state = 303}, + [2830] = {.lex_state = 303}, + [2831] = {.lex_state = 303}, + [2832] = {.lex_state = 303}, + [2833] = {.lex_state = 250}, + [2834] = {.lex_state = 122}, + [2835] = {.lex_state = 40}, + [2836] = {.lex_state = 298}, + [2837] = {.lex_state = 298}, + [2838] = {.lex_state = 1004}, + [2839] = {.lex_state = 318}, + [2840] = {.lex_state = 298}, + [2841] = {.lex_state = 298}, + [2842] = {.lex_state = 358}, + [2843] = {.lex_state = 332}, + [2844] = {.lex_state = 250}, + [2845] = {.lex_state = 250}, + [2846] = {.lex_state = 71}, + [2847] = {.lex_state = 250}, + [2848] = {.lex_state = 250}, + [2849] = {.lex_state = 298}, + [2850] = {.lex_state = 298}, + [2851] = {.lex_state = 358}, + [2852] = {.lex_state = 298}, + [2853] = {.lex_state = 213}, + [2854] = {.lex_state = 298}, + [2855] = {.lex_state = 327}, + [2856] = {.lex_state = 317}, + [2857] = {.lex_state = 120}, + [2858] = {.lex_state = 298}, + [2859] = {.lex_state = 994}, + [2860] = {.lex_state = 358}, + [2861] = {.lex_state = 303}, + [2862] = {.lex_state = 358}, + [2863] = {.lex_state = 358}, + [2864] = {.lex_state = 307}, + [2865] = {.lex_state = 298}, + [2866] = {.lex_state = 298}, + [2867] = {.lex_state = 303}, + [2868] = {.lex_state = 298}, + [2869] = {.lex_state = 317}, + [2870] = {.lex_state = 317}, + [2871] = {.lex_state = 317}, + [2872] = {.lex_state = 309}, + [2873] = {.lex_state = 1008}, + [2874] = {.lex_state = 1034}, + [2875] = {.lex_state = 298}, + [2876] = {.lex_state = 1036}, + [2877] = {.lex_state = 1000}, + [2878] = {.lex_state = 39}, + [2879] = {.lex_state = 250}, + [2880] = {.lex_state = 250}, + [2881] = {.lex_state = 1004}, + [2882] = {.lex_state = 250}, + [2883] = {.lex_state = 250}, + [2884] = {.lex_state = 298}, + [2885] = {.lex_state = 298}, + [2886] = {.lex_state = 317}, + [2887] = {.lex_state = 290}, + [2888] = {.lex_state = 304}, + [2889] = {.lex_state = 135}, + [2890] = {.lex_state = 319}, + [2891] = {.lex_state = 290}, + [2892] = {.lex_state = 290}, + [2893] = {.lex_state = 290}, + [2894] = {.lex_state = 290}, + [2895] = {.lex_state = 290}, + [2896] = {.lex_state = 290}, + [2897] = {.lex_state = 1008}, + [2898] = {.lex_state = 319}, + [2899] = {.lex_state = 308}, + [2900] = {.lex_state = 319}, + [2901] = {.lex_state = 42}, + [2902] = {.lex_state = 308}, + [2903] = {.lex_state = 308}, + [2904] = {.lex_state = 290}, + [2905] = {.lex_state = 290}, + [2906] = {.lex_state = 308}, + [2907] = {.lex_state = 308}, + [2908] = {.lex_state = 328}, + [2909] = {.lex_state = 1004}, + [2910] = {.lex_state = 124}, + [2911] = {.lex_state = 308}, + [2912] = {.lex_state = 1004}, + [2913] = {.lex_state = 308}, + [2914] = {.lex_state = 308}, + [2915] = {.lex_state = 308}, + [2916] = {.lex_state = 308}, + [2917] = {.lex_state = 304}, + [2918] = {.lex_state = 304}, + [2919] = {.lex_state = 213}, + [2920] = {.lex_state = 213}, + [2921] = {.lex_state = 308}, + [2922] = {.lex_state = 308}, + [2923] = {.lex_state = 328}, + [2924] = {.lex_state = 308}, + [2925] = {.lex_state = 290}, + [2926] = {.lex_state = 306}, + [2927] = {.lex_state = 308}, + [2928] = {.lex_state = 290}, + [2929] = {.lex_state = 1034}, + [2930] = {.lex_state = 308}, + [2931] = {.lex_state = 306}, + [2932] = {.lex_state = 308}, + [2933] = {.lex_state = 308}, + [2934] = {.lex_state = 1038}, + [2935] = {.lex_state = 308}, + [2936] = {.lex_state = 308}, + [2937] = {.lex_state = 1008}, + [2938] = {.lex_state = 304}, + [2939] = {.lex_state = 1038}, + [2940] = {.lex_state = 308}, + [2941] = {.lex_state = 305}, + [2942] = {.lex_state = 308}, + [2943] = {.lex_state = 126}, + [2944] = {.lex_state = 308}, + [2945] = {.lex_state = 308}, + [2946] = {.lex_state = 1036}, + [2947] = {.lex_state = 308}, + [2948] = {.lex_state = 308}, + [2949] = {.lex_state = 308}, + [2950] = {.lex_state = 1008}, + [2951] = {.lex_state = 308}, + [2952] = {.lex_state = 308}, + [2953] = {.lex_state = 1008}, + [2954] = {.lex_state = 308}, + [2955] = {.lex_state = 308}, + [2956] = {.lex_state = 1008}, + [2957] = {.lex_state = 308}, + [2958] = {.lex_state = 290}, + [2959] = {.lex_state = 308}, + [2960] = {.lex_state = 308}, + [2961] = {.lex_state = 308}, + [2962] = {.lex_state = 308}, + [2963] = {.lex_state = 290}, + [2964] = {.lex_state = 308}, + [2965] = {.lex_state = 333}, + [2966] = {.lex_state = 133}, + [2967] = {.lex_state = 308}, + [2968] = {.lex_state = 304}, + [2969] = {.lex_state = 308}, + [2970] = {.lex_state = 124}, + [2971] = {.lex_state = 296}, + [2972] = {.lex_state = 308}, + [2973] = {.lex_state = 46}, + [2974] = {.lex_state = 329}, + [2975] = {.lex_state = 293}, + [2976] = {.lex_state = 359}, + [2977] = {.lex_state = 1040}, + [2978] = {.lex_state = 1008}, + [2979] = {.lex_state = 137}, + [2980] = {.lex_state = 1040}, + [2981] = {.lex_state = 308}, + [2982] = {.lex_state = 1040}, + [2983] = {.lex_state = 329}, + [2984] = {.lex_state = 329}, + [2985] = {.lex_state = 329}, + [2986] = {.lex_state = 329}, + [2987] = {.lex_state = 303}, + [2988] = {.lex_state = 303}, + [2989] = {.lex_state = 293}, + [2990] = {.lex_state = 126}, [2991] = {.lex_state = 42}, - [2992] = {.lex_state = 42}, - [2993] = {.lex_state = 42}, - [2994] = {.lex_state = 42}, - [2995] = {.lex_state = 42}, - [2996] = {.lex_state = 42}, - [2997] = {.lex_state = 42}, - [2998] = {.lex_state = 42}, - [2999] = {.lex_state = 42}, - [3000] = {.lex_state = 42}, - [3001] = {.lex_state = 42}, - [3002] = {.lex_state = 42}, - [3003] = {.lex_state = 42}, - [3004] = {.lex_state = 42}, - [3005] = {.lex_state = 42}, - [3006] = {.lex_state = 1049}, - [3007] = {.lex_state = 42}, - [3008] = {.lex_state = 42}, - [3009] = {.lex_state = 42}, - [3010] = {.lex_state = 42}, - [3011] = {.lex_state = 42}, - [3012] = {.lex_state = 143}, - [3013] = {.lex_state = 42}, - [3014] = {.lex_state = 42}, - [3015] = {.lex_state = 42}, - [3016] = {.lex_state = 42}, - [3017] = {.lex_state = 42}, - [3018] = {.lex_state = 42}, - [3019] = {.lex_state = 42}, - [3020] = {.lex_state = 42}, - [3021] = {.lex_state = 42}, - [3022] = {.lex_state = 42}, - [3023] = {.lex_state = 42}, - [3024] = {.lex_state = 42}, - [3025] = {.lex_state = 42}, - [3026] = {.lex_state = 42}, + [2992] = {.lex_state = 1040}, + [2993] = {.lex_state = 308}, + [2994] = {.lex_state = 359}, + [2995] = {.lex_state = 308}, + [2996] = {.lex_state = 126}, + [2997] = {.lex_state = 308}, + [2998] = {.lex_state = 329}, + [2999] = {.lex_state = 1038}, + [3000] = {.lex_state = 303}, + [3001] = {.lex_state = 290}, + [3002] = {.lex_state = 308}, + [3003] = {.lex_state = 359}, + [3004] = {.lex_state = 359}, + [3005] = {.lex_state = 1008}, + [3006] = {.lex_state = 308}, + [3007] = {.lex_state = 308}, + [3008] = {.lex_state = 329}, + [3009] = {.lex_state = 1038}, + [3010] = {.lex_state = 308}, + [3011] = {.lex_state = 294}, + [3012] = {.lex_state = 1008}, + [3013] = {.lex_state = 308}, + [3014] = {.lex_state = 126}, + [3015] = {.lex_state = 359}, + [3016] = {.lex_state = 308}, + [3017] = {.lex_state = 137}, + [3018] = {.lex_state = 308}, + [3019] = {.lex_state = 1008}, + [3020] = {.lex_state = 329}, + [3021] = {.lex_state = 308}, + [3022] = {.lex_state = 329}, + [3023] = {.lex_state = 126}, + [3024] = {.lex_state = 1040}, + [3025] = {.lex_state = 290}, + [3026] = {.lex_state = 329}, [3027] = {.lex_state = 42}, [3028] = {.lex_state = 42}, [3029] = {.lex_state = 42}, - [3030] = {.lex_state = 42}, + [3030] = {.lex_state = 139}, [3031] = {.lex_state = 42}, - [3032] = {.lex_state = 1049}, - [3033] = {.lex_state = 1049}, - [3034] = {.lex_state = 1049}, - [3035] = {.lex_state = 1049}, - [3036] = {.lex_state = 143}, - [3037] = {.lex_state = 42}, + [3032] = {.lex_state = 42}, + [3033] = {.lex_state = 42}, + [3034] = {.lex_state = 42}, + [3035] = {.lex_state = 42}, + [3036] = {.lex_state = 42}, + [3037] = {.lex_state = 139}, [3038] = {.lex_state = 42}, - [3039] = {.lex_state = 143}, + [3039] = {.lex_state = 42}, [3040] = {.lex_state = 42}, - [3041] = {.lex_state = 143}, + [3041] = {.lex_state = 42}, [3042] = {.lex_state = 42}, - [3043] = {.lex_state = 143}, + [3043] = {.lex_state = 42}, [3044] = {.lex_state = 42}, [3045] = {.lex_state = 42}, [3046] = {.lex_state = 42}, @@ -61464,4772 +60910,4682 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3048] = {.lex_state = 42}, [3049] = {.lex_state = 42}, [3050] = {.lex_state = 42}, - [3051] = {.lex_state = 47}, + [3051] = {.lex_state = 42}, [3052] = {.lex_state = 42}, [3053] = {.lex_state = 42}, [3054] = {.lex_state = 42}, [3055] = {.lex_state = 42}, - [3056] = {.lex_state = 79}, - [3057] = {.lex_state = 79}, - [3058] = {.lex_state = 1036}, - [3059] = {.lex_state = 74}, + [3056] = {.lex_state = 42}, + [3057] = {.lex_state = 42}, + [3058] = {.lex_state = 42}, + [3059] = {.lex_state = 42}, [3060] = {.lex_state = 42}, - [3061] = {.lex_state = 74}, - [3062] = {.lex_state = 79}, - [3063] = {.lex_state = 79}, - [3064] = {.lex_state = 999}, - [3065] = {.lex_state = 79}, - [3066] = {.lex_state = 79}, - [3067] = {.lex_state = 79}, - [3068] = {.lex_state = 79}, - [3069] = {.lex_state = 79}, - [3070] = {.lex_state = 79}, - [3071] = {.lex_state = 991}, - [3072] = {.lex_state = 79}, - [3073] = {.lex_state = 79}, - [3074] = {.lex_state = 79}, - [3075] = {.lex_state = 79}, - [3076] = {.lex_state = 79}, - [3077] = {.lex_state = 79}, - [3078] = {.lex_state = 74}, - [3079] = {.lex_state = 991}, - [3080] = {.lex_state = 144}, - [3081] = {.lex_state = 1036}, - [3082] = {.lex_state = 991}, - [3083] = {.lex_state = 991}, - [3084] = {.lex_state = 991}, - [3085] = {.lex_state = 1060}, - [3086] = {.lex_state = 936}, - [3087] = {.lex_state = 79}, - [3088] = {.lex_state = 1060}, - [3089] = {.lex_state = 1060}, - [3090] = {.lex_state = 936}, - [3091] = {.lex_state = 72}, - [3092] = {.lex_state = 1060}, - [3093] = {.lex_state = 1060}, - [3094] = {.lex_state = 79}, - [3095] = {.lex_state = 936}, - [3096] = {.lex_state = 936}, - [3097] = {.lex_state = 936}, - [3098] = {.lex_state = 1060}, - [3099] = {.lex_state = 1063}, - [3100] = {.lex_state = 1063}, - [3101] = {.lex_state = 150}, - [3102] = {.lex_state = 150}, - [3103] = {.lex_state = 150}, - [3104] = {.lex_state = 1055}, - [3105] = {.lex_state = 991}, - [3106] = {.lex_state = 1060}, - [3107] = {.lex_state = 934}, - [3108] = {.lex_state = 936}, - [3109] = {.lex_state = 1060}, - [3110] = {.lex_state = 150}, - [3111] = {.lex_state = 1060}, - [3112] = {.lex_state = 936}, - [3113] = {.lex_state = 936}, - [3114] = {.lex_state = 936}, - [3115] = {.lex_state = 150}, - [3116] = {.lex_state = 1063}, - [3117] = {.lex_state = 1056}, - [3118] = {.lex_state = 1056}, - [3119] = {.lex_state = 1060}, - [3120] = {.lex_state = 936}, - [3121] = {.lex_state = 153}, - [3122] = {.lex_state = 936}, - [3123] = {.lex_state = 936}, - [3124] = {.lex_state = 936}, - [3125] = {.lex_state = 147}, - [3126] = {.lex_state = 153}, - [3127] = {.lex_state = 991}, - [3128] = {.lex_state = 148}, - [3129] = {.lex_state = 148}, - [3130] = {.lex_state = 1063}, - [3131] = {.lex_state = 936}, - [3132] = {.lex_state = 153}, - [3133] = {.lex_state = 79}, - [3134] = {.lex_state = 79}, - [3135] = {.lex_state = 999}, - [3136] = {.lex_state = 79}, - [3137] = {.lex_state = 79}, - [3138] = {.lex_state = 936}, - [3139] = {.lex_state = 999}, - [3140] = {.lex_state = 999}, - [3141] = {.lex_state = 999}, - [3142] = {.lex_state = 999}, - [3143] = {.lex_state = 999}, - [3144] = {.lex_state = 999}, - [3145] = {.lex_state = 999}, - [3146] = {.lex_state = 999}, - [3147] = {.lex_state = 999}, - [3148] = {.lex_state = 999}, - [3149] = {.lex_state = 999}, - [3150] = {.lex_state = 999}, - [3151] = {.lex_state = 122}, - [3152] = {.lex_state = 122}, - [3153] = {.lex_state = 122}, - [3154] = {.lex_state = 122}, - [3155] = {.lex_state = 122}, - [3156] = {.lex_state = 122}, - [3157] = {.lex_state = 122}, - [3158] = {.lex_state = 122}, - [3159] = {.lex_state = 122}, - [3160] = {.lex_state = 122}, - [3161] = {.lex_state = 122}, - [3162] = {.lex_state = 122}, - [3163] = {.lex_state = 79}, - [3164] = {.lex_state = 122}, - [3165] = {.lex_state = 122}, - [3166] = {.lex_state = 122}, - [3167] = {.lex_state = 122}, - [3168] = {.lex_state = 122}, - [3169] = {.lex_state = 122}, - [3170] = {.lex_state = 122}, - [3171] = {.lex_state = 122}, - [3172] = {.lex_state = 122}, - [3173] = {.lex_state = 122}, - [3174] = {.lex_state = 122}, - [3175] = {.lex_state = 122}, - [3176] = {.lex_state = 122}, - [3177] = {.lex_state = 122}, - [3178] = {.lex_state = 122}, - [3179] = {.lex_state = 122}, - [3180] = {.lex_state = 122}, - [3181] = {.lex_state = 122}, - [3182] = {.lex_state = 122}, - [3183] = {.lex_state = 122}, - [3184] = {.lex_state = 122}, - [3185] = {.lex_state = 122}, - [3186] = {.lex_state = 122}, - [3187] = {.lex_state = 122}, - [3188] = {.lex_state = 122}, - [3189] = {.lex_state = 122}, - [3190] = {.lex_state = 122}, - [3191] = {.lex_state = 122}, - [3192] = {.lex_state = 122}, - [3193] = {.lex_state = 122}, - [3194] = {.lex_state = 122}, - [3195] = {.lex_state = 122}, - [3196] = {.lex_state = 122}, - [3197] = {.lex_state = 1055}, - [3198] = {.lex_state = 122}, - [3199] = {.lex_state = 122}, - [3200] = {.lex_state = 122}, - [3201] = {.lex_state = 122}, - [3202] = {.lex_state = 122}, - [3203] = {.lex_state = 122}, - [3204] = {.lex_state = 122}, - [3205] = {.lex_state = 122}, - [3206] = {.lex_state = 122}, - [3207] = {.lex_state = 122}, - [3208] = {.lex_state = 122}, - [3209] = {.lex_state = 122}, - [3210] = {.lex_state = 122}, - [3211] = {.lex_state = 122}, - [3212] = {.lex_state = 122}, - [3213] = {.lex_state = 122}, - [3214] = {.lex_state = 122}, - [3215] = {.lex_state = 122}, - [3216] = {.lex_state = 122}, - [3217] = {.lex_state = 122}, - [3218] = {.lex_state = 122}, - [3219] = {.lex_state = 122}, - [3220] = {.lex_state = 122}, - [3221] = {.lex_state = 122}, - [3222] = {.lex_state = 122}, - [3223] = {.lex_state = 122}, - [3224] = {.lex_state = 122}, - [3225] = {.lex_state = 122}, - [3226] = {.lex_state = 122}, - [3227] = {.lex_state = 122}, - [3228] = {.lex_state = 122}, - [3229] = {.lex_state = 122}, - [3230] = {.lex_state = 122}, - [3231] = {.lex_state = 122}, - [3232] = {.lex_state = 122}, - [3233] = {.lex_state = 122}, - [3234] = {.lex_state = 122}, - [3235] = {.lex_state = 122}, - [3236] = {.lex_state = 122}, - [3237] = {.lex_state = 122}, - [3238] = {.lex_state = 122}, - [3239] = {.lex_state = 122}, - [3240] = {.lex_state = 122}, - [3241] = {.lex_state = 122}, - [3242] = {.lex_state = 122}, - [3243] = {.lex_state = 122}, - [3244] = {.lex_state = 122}, - [3245] = {.lex_state = 122}, - [3246] = {.lex_state = 122}, - [3247] = {.lex_state = 122}, - [3248] = {.lex_state = 991}, - [3249] = {.lex_state = 79}, - [3250] = {.lex_state = 1063}, - [3251] = {.lex_state = 1063}, - [3252] = {.lex_state = 79}, - [3253] = {.lex_state = 79}, - [3254] = {.lex_state = 1056}, - [3255] = {.lex_state = 1056}, - [3256] = {.lex_state = 79}, - [3257] = {.lex_state = 79}, - [3258] = {.lex_state = 122}, - [3259] = {.lex_state = 936}, - [3260] = {.lex_state = 79}, - [3261] = {.lex_state = 936}, - [3262] = {.lex_state = 936}, - [3263] = {.lex_state = 412}, - [3264] = {.lex_state = 999}, - [3265] = {.lex_state = 413}, - [3266] = {.lex_state = 79}, - [3267] = {.lex_state = 999}, - [3268] = {.lex_state = 999}, - [3269] = {.lex_state = 79}, - [3270] = {.lex_state = 999}, - [3271] = {.lex_state = 122}, - [3272] = {.lex_state = 936}, - [3273] = {.lex_state = 936}, - [3274] = {.lex_state = 79}, - [3275] = {.lex_state = 79}, - [3276] = {.lex_state = 79}, - [3277] = {.lex_state = 999}, - [3278] = {.lex_state = 999}, - [3279] = {.lex_state = 999}, - [3280] = {.lex_state = 999}, - [3281] = {.lex_state = 999}, - [3282] = {.lex_state = 999}, - [3283] = {.lex_state = 79}, - [3284] = {.lex_state = 999}, - [3285] = {.lex_state = 999}, - [3286] = {.lex_state = 79}, - [3287] = {.lex_state = 999}, - [3288] = {.lex_state = 999}, - [3289] = {.lex_state = 79}, - [3290] = {.lex_state = 999}, - [3291] = {.lex_state = 999}, - [3292] = {.lex_state = 79}, - [3293] = {.lex_state = 936}, - [3294] = {.lex_state = 79}, - [3295] = {.lex_state = 211}, - [3296] = {.lex_state = 219}, - [3297] = {.lex_state = 215}, - [3298] = {.lex_state = 934}, - [3299] = {.lex_state = 416}, - [3300] = {.lex_state = 415}, - [3301] = {.lex_state = 422}, - [3302] = {.lex_state = 211}, - [3303] = {.lex_state = 104}, - [3304] = {.lex_state = 131}, - [3305] = {.lex_state = 414}, - [3306] = {.lex_state = 132}, - [3307] = {.lex_state = 414}, - [3308] = {.lex_state = 104}, - [3309] = {.lex_state = 104}, - [3310] = {.lex_state = 936}, - [3311] = {.lex_state = 991}, - [3312] = {.lex_state = 423}, - [3313] = {.lex_state = 216}, - [3314] = {.lex_state = 134}, - [3315] = {.lex_state = 415}, - [3316] = {.lex_state = 423}, - [3317] = {.lex_state = 79}, - [3318] = {.lex_state = 79}, - [3319] = {.lex_state = 936}, - [3320] = {.lex_state = 104}, - [3321] = {.lex_state = 104}, - [3322] = {.lex_state = 417}, - [3323] = {.lex_state = 216}, - [3324] = {.lex_state = 133}, - [3325] = {.lex_state = 415}, - [3326] = {.lex_state = 133}, - [3327] = {.lex_state = 425}, - [3328] = {.lex_state = 212}, - [3329] = {.lex_state = 212}, - [3330] = {.lex_state = 991}, - [3331] = {.lex_state = 936}, - [3332] = {.lex_state = 936}, - [3333] = {.lex_state = 415}, - [3334] = {.lex_state = 415}, - [3335] = {.lex_state = 79}, - [3336] = {.lex_state = 79}, - [3337] = {.lex_state = 424}, - [3338] = {.lex_state = 217}, - [3339] = {.lex_state = 499}, - [3340] = {.lex_state = 134}, - [3341] = {.lex_state = 217}, - [3342] = {.lex_state = 134}, - [3343] = {.lex_state = 134}, - [3344] = {.lex_state = 934}, - [3345] = {.lex_state = 217}, - [3346] = {.lex_state = 104}, - [3347] = {.lex_state = 104}, - [3348] = {.lex_state = 104}, - [3349] = {.lex_state = 424}, - [3350] = {.lex_state = 104}, - [3351] = {.lex_state = 104}, - [3352] = {.lex_state = 217}, - [3353] = {.lex_state = 499}, - [3354] = {.lex_state = 934}, - [3355] = {.lex_state = 934}, - [3356] = {.lex_state = 934}, - [3357] = {.lex_state = 499}, - [3358] = {.lex_state = 934}, - [3359] = {.lex_state = 934}, - [3360] = {.lex_state = 934}, - [3361] = {.lex_state = 991}, - [3362] = {.lex_state = 991}, - [3363] = {.lex_state = 991}, - [3364] = {.lex_state = 991}, - [3365] = {.lex_state = 424}, - [3366] = {.lex_state = 934}, - [3367] = {.lex_state = 934}, - [3368] = {.lex_state = 424}, - [3369] = {.lex_state = 934}, - [3370] = {.lex_state = 217}, - [3371] = {.lex_state = 426}, - [3372] = {.lex_state = 499}, - [3373] = {.lex_state = 991}, - [3374] = {.lex_state = 499}, - [3375] = {.lex_state = 427}, - [3376] = {.lex_state = 426}, - [3377] = {.lex_state = 991}, - [3378] = {.lex_state = 424}, - [3379] = {.lex_state = 934}, - [3380] = {.lex_state = 934}, - [3381] = {.lex_state = 934}, - [3382] = {.lex_state = 134}, - [3383] = {.lex_state = 934}, - [3384] = {.lex_state = 934}, - [3385] = {.lex_state = 105}, - [3386] = {.lex_state = 104}, - [3387] = {.lex_state = 104}, - [3388] = {.lex_state = 105}, - [3389] = {.lex_state = 427}, - [3390] = {.lex_state = 105}, - [3391] = {.lex_state = 105}, - [3392] = {.lex_state = 105}, - [3393] = {.lex_state = 499}, - [3394] = {.lex_state = 105}, - [3395] = {.lex_state = 105}, - [3396] = {.lex_state = 427}, - [3397] = {.lex_state = 105}, - [3398] = {.lex_state = 105}, - [3399] = {.lex_state = 105}, - [3400] = {.lex_state = 105}, - [3401] = {.lex_state = 427}, - [3402] = {.lex_state = 105}, - [3403] = {.lex_state = 105}, - [3404] = {.lex_state = 105}, - [3405] = {.lex_state = 936}, - [3406] = {.lex_state = 105}, - [3407] = {.lex_state = 936}, - [3408] = {.lex_state = 105}, - [3409] = {.lex_state = 499}, - [3410] = {.lex_state = 105}, - [3411] = {.lex_state = 105}, - [3412] = {.lex_state = 105}, - [3413] = {.lex_state = 427}, - [3414] = {.lex_state = 105}, - [3415] = {.lex_state = 105}, - [3416] = {.lex_state = 105}, - [3417] = {.lex_state = 105}, - [3418] = {.lex_state = 104}, - [3419] = {.lex_state = 105}, - [3420] = {.lex_state = 105}, - [3421] = {.lex_state = 936}, - [3422] = {.lex_state = 122}, - [3423] = {.lex_state = 99}, - [3424] = {.lex_state = 99}, - [3425] = {.lex_state = 99}, - [3426] = {.lex_state = 936}, - [3427] = {.lex_state = 934}, - [3428] = {.lex_state = 99}, - [3429] = {.lex_state = 99}, - [3430] = {.lex_state = 99}, - [3431] = {.lex_state = 99}, - [3432] = {.lex_state = 99}, - [3433] = {.lex_state = 936}, - [3434] = {.lex_state = 99}, - [3435] = {.lex_state = 99}, - [3436] = {.lex_state = 99}, - [3437] = {.lex_state = 934}, - [3438] = {.lex_state = 936}, - [3439] = {.lex_state = 99}, - [3440] = {.lex_state = 104}, - [3441] = {.lex_state = 99}, - [3442] = {.lex_state = 105}, - [3443] = {.lex_state = 99}, - [3444] = {.lex_state = 99}, - [3445] = {.lex_state = 99}, - [3446] = {.lex_state = 99}, - [3447] = {.lex_state = 105}, - [3448] = {.lex_state = 99}, - [3449] = {.lex_state = 99}, - [3450] = {.lex_state = 99}, - [3451] = {.lex_state = 99}, - [3452] = {.lex_state = 99}, - [3453] = {.lex_state = 99}, - [3454] = {.lex_state = 106}, - [3455] = {.lex_state = 99}, - [3456] = {.lex_state = 99}, - [3457] = {.lex_state = 936}, - [3458] = {.lex_state = 936}, - [3459] = {.lex_state = 936}, - [3460] = {.lex_state = 936}, - [3461] = {.lex_state = 936}, - [3462] = {.lex_state = 936}, - [3463] = {.lex_state = 203}, - [3464] = {.lex_state = 103}, - [3465] = {.lex_state = 122}, - [3466] = {.lex_state = 934}, - [3467] = {.lex_state = 515}, - [3468] = {.lex_state = 515}, - [3469] = {.lex_state = 515}, - [3470] = {.lex_state = 515}, - [3471] = {.lex_state = 99}, - [3472] = {.lex_state = 99}, - [3473] = {.lex_state = 99}, - [3474] = {.lex_state = 934}, - [3475] = {.lex_state = 515}, - [3476] = {.lex_state = 99}, - [3477] = {.lex_state = 99}, - [3478] = {.lex_state = 105}, - [3479] = {.lex_state = 934}, - [3480] = {.lex_state = 934}, - [3481] = {.lex_state = 122}, - [3482] = {.lex_state = 208}, - [3483] = {.lex_state = 934}, - [3484] = {.lex_state = 934}, - [3485] = {.lex_state = 934}, - [3486] = {.lex_state = 934}, - [3487] = {.lex_state = 934}, - [3488] = {.lex_state = 934}, - [3489] = {.lex_state = 457}, - [3490] = {.lex_state = 363}, - [3491] = {.lex_state = 99}, - [3492] = {.lex_state = 99}, - [3493] = {.lex_state = 363}, - [3494] = {.lex_state = 516}, - [3495] = {.lex_state = 151}, - [3496] = {.lex_state = 151}, - [3497] = {.lex_state = 151}, - [3498] = {.lex_state = 363}, - [3499] = {.lex_state = 66}, - [3500] = {.lex_state = 516}, - [3501] = {.lex_state = 151}, - [3502] = {.lex_state = 516}, - [3503] = {.lex_state = 516}, - [3504] = {.lex_state = 99}, - [3505] = {.lex_state = 103}, - [3506] = {.lex_state = 934}, - [3507] = {.lex_state = 934}, - [3508] = {.lex_state = 206}, - [3509] = {.lex_state = 934}, - [3510] = {.lex_state = 934}, - [3511] = {.lex_state = 934}, - [3512] = {.lex_state = 103}, - [3513] = {.lex_state = 363}, - [3514] = {.lex_state = 218}, - [3515] = {.lex_state = 363}, - [3516] = {.lex_state = 934}, - [3517] = {.lex_state = 66}, - [3518] = {.lex_state = 106}, - [3519] = {.lex_state = 106}, - [3520] = {.lex_state = 151}, - [3521] = {.lex_state = 99}, - [3522] = {.lex_state = 99}, - [3523] = {.lex_state = 122}, - [3524] = {.lex_state = 517}, - [3525] = {.lex_state = 40}, - [3526] = {.lex_state = 40}, - [3527] = {.lex_state = 517}, - [3528] = {.lex_state = 934}, - [3529] = {.lex_state = 999}, - [3530] = {.lex_state = 999}, - [3531] = {.lex_state = 40}, - [3532] = {.lex_state = 40}, - [3533] = {.lex_state = 40}, - [3534] = {.lex_state = 40}, - [3535] = {.lex_state = 40}, - [3536] = {.lex_state = 999}, - [3537] = {.lex_state = 999}, - [3538] = {.lex_state = 999}, - [3539] = {.lex_state = 999}, - [3540] = {.lex_state = 40}, - [3541] = {.lex_state = 936}, - [3542] = {.lex_state = 40}, - [3543] = {.lex_state = 936}, - [3544] = {.lex_state = 40}, - [3545] = {.lex_state = 40}, - [3546] = {.lex_state = 934}, - [3547] = {.lex_state = 517}, - [3548] = {.lex_state = 517}, - [3549] = {.lex_state = 122}, - [3550] = {.lex_state = 122}, - [3551] = {.lex_state = 122}, - [3552] = {.lex_state = 122}, - [3553] = {.lex_state = 122}, - [3554] = {.lex_state = 122}, - [3555] = {.lex_state = 122}, - [3556] = {.lex_state = 122}, - [3557] = {.lex_state = 122}, - [3558] = {.lex_state = 122}, - [3559] = {.lex_state = 122}, - [3560] = {.lex_state = 122}, - [3561] = {.lex_state = 40}, - [3562] = {.lex_state = 122}, - [3563] = {.lex_state = 122}, - [3564] = {.lex_state = 122}, - [3565] = {.lex_state = 122}, - [3566] = {.lex_state = 122}, - [3567] = {.lex_state = 122}, - [3568] = {.lex_state = 122}, - [3569] = {.lex_state = 122}, - [3570] = {.lex_state = 122}, - [3571] = {.lex_state = 122}, - [3572] = {.lex_state = 122}, - [3573] = {.lex_state = 122}, - [3574] = {.lex_state = 122}, - [3575] = {.lex_state = 122}, - [3576] = {.lex_state = 122}, - [3577] = {.lex_state = 122}, - [3578] = {.lex_state = 122}, - [3579] = {.lex_state = 122}, - [3580] = {.lex_state = 122}, - [3581] = {.lex_state = 122}, - [3582] = {.lex_state = 122}, - [3583] = {.lex_state = 122}, - [3584] = {.lex_state = 122}, - [3585] = {.lex_state = 122}, - [3586] = {.lex_state = 122}, - [3587] = {.lex_state = 122}, - [3588] = {.lex_state = 122}, - [3589] = {.lex_state = 122}, - [3590] = {.lex_state = 122}, - [3591] = {.lex_state = 122}, - [3592] = {.lex_state = 122}, - [3593] = {.lex_state = 122}, - [3594] = {.lex_state = 122}, - [3595] = {.lex_state = 122}, - [3596] = {.lex_state = 122}, - [3597] = {.lex_state = 122}, - [3598] = {.lex_state = 122}, - [3599] = {.lex_state = 122}, - [3600] = {.lex_state = 122}, - [3601] = {.lex_state = 122}, - [3602] = {.lex_state = 122}, - [3603] = {.lex_state = 122}, - [3604] = {.lex_state = 122}, - [3605] = {.lex_state = 122}, - [3606] = {.lex_state = 122}, - [3607] = {.lex_state = 122}, - [3608] = {.lex_state = 122}, - [3609] = {.lex_state = 122}, - [3610] = {.lex_state = 122}, - [3611] = {.lex_state = 122}, - [3612] = {.lex_state = 122}, - [3613] = {.lex_state = 122}, - [3614] = {.lex_state = 122}, - [3615] = {.lex_state = 122}, - [3616] = {.lex_state = 516}, - [3617] = {.lex_state = 122}, - [3618] = {.lex_state = 122}, - [3619] = {.lex_state = 122}, - [3620] = {.lex_state = 122}, - [3621] = {.lex_state = 122}, - [3622] = {.lex_state = 122}, - [3623] = {.lex_state = 122}, - [3624] = {.lex_state = 122}, - [3625] = {.lex_state = 122}, - [3626] = {.lex_state = 122}, - [3627] = {.lex_state = 122}, - [3628] = {.lex_state = 122}, - [3629] = {.lex_state = 122}, - [3630] = {.lex_state = 40}, - [3631] = {.lex_state = 122}, - [3632] = {.lex_state = 122}, - [3633] = {.lex_state = 122}, - [3634] = {.lex_state = 122}, - [3635] = {.lex_state = 122}, - [3636] = {.lex_state = 122}, - [3637] = {.lex_state = 122}, - [3638] = {.lex_state = 122}, - [3639] = {.lex_state = 122}, - [3640] = {.lex_state = 122}, - [3641] = {.lex_state = 122}, - [3642] = {.lex_state = 122}, - [3643] = {.lex_state = 122}, - [3644] = {.lex_state = 122}, - [3645] = {.lex_state = 122}, - [3646] = {.lex_state = 40}, - [3647] = {.lex_state = 934}, - [3648] = {.lex_state = 40}, - [3649] = {.lex_state = 40}, - [3650] = {.lex_state = 40}, - [3651] = {.lex_state = 40}, - [3652] = {.lex_state = 40}, - [3653] = {.lex_state = 40}, - [3654] = {.lex_state = 40}, - [3655] = {.lex_state = 40}, - [3656] = {.lex_state = 40}, - [3657] = {.lex_state = 40}, - [3658] = {.lex_state = 40}, - [3659] = {.lex_state = 40}, - [3660] = {.lex_state = 40}, - [3661] = {.lex_state = 40}, - [3662] = {.lex_state = 40}, - [3663] = {.lex_state = 40}, - [3664] = {.lex_state = 40}, - [3665] = {.lex_state = 40}, - [3666] = {.lex_state = 40}, - [3667] = {.lex_state = 40}, - [3668] = {.lex_state = 40}, - [3669] = {.lex_state = 40}, - [3670] = {.lex_state = 40}, - [3671] = {.lex_state = 40}, - [3672] = {.lex_state = 40}, - [3673] = {.lex_state = 40}, - [3674] = {.lex_state = 40}, - [3675] = {.lex_state = 40}, - [3676] = {.lex_state = 104}, - [3677] = {.lex_state = 104}, - [3678] = {.lex_state = 104}, - [3679] = {.lex_state = 104}, - [3680] = {.lex_state = 104}, - [3681] = {.lex_state = 104}, - [3682] = {.lex_state = 104}, - [3683] = {.lex_state = 104}, - [3684] = {.lex_state = 104}, - [3685] = {.lex_state = 104}, - [3686] = {.lex_state = 104}, - [3687] = {.lex_state = 104}, - [3688] = {.lex_state = 40}, - [3689] = {.lex_state = 40}, - [3690] = {.lex_state = 40}, - [3691] = {.lex_state = 934}, - [3692] = {.lex_state = 934}, - [3693] = {.lex_state = 40}, - [3694] = {.lex_state = 135}, - [3695] = {.lex_state = 40}, - [3696] = {.lex_state = 40}, - [3697] = {.lex_state = 517}, - [3698] = {.lex_state = 122}, - [3699] = {.lex_state = 66}, - [3700] = {.lex_state = 66}, - [3701] = {.lex_state = 66}, - [3702] = {.lex_state = 66}, - [3703] = {.lex_state = 66}, - [3704] = {.lex_state = 66}, - [3705] = {.lex_state = 122}, - [3706] = {.lex_state = 66}, - [3707] = {.lex_state = 122}, - [3708] = {.lex_state = 66}, - [3709] = {.lex_state = 66}, - [3710] = {.lex_state = 66}, - [3711] = {.lex_state = 66}, - [3712] = {.lex_state = 66}, - [3713] = {.lex_state = 66}, - [3714] = {.lex_state = 66}, - [3715] = {.lex_state = 122}, - [3716] = {.lex_state = 497}, - [3717] = {.lex_state = 66}, - [3718] = {.lex_state = 66}, - [3719] = {.lex_state = 66}, - [3720] = {.lex_state = 66}, - [3721] = {.lex_state = 66}, - [3722] = {.lex_state = 66}, - [3723] = {.lex_state = 66}, - [3724] = {.lex_state = 66}, - [3725] = {.lex_state = 966}, - [3726] = {.lex_state = 936}, - [3727] = {.lex_state = 66}, - [3728] = {.lex_state = 122}, - [3729] = {.lex_state = 966}, - [3730] = {.lex_state = 504}, - [3731] = {.lex_state = 122}, - [3732] = {.lex_state = 66}, - [3733] = {.lex_state = 122}, - [3734] = {.lex_state = 122}, - [3735] = {.lex_state = 122}, - [3736] = {.lex_state = 122}, - [3737] = {.lex_state = 936}, - [3738] = {.lex_state = 66}, - [3739] = {.lex_state = 66}, - [3740] = {.lex_state = 106}, - [3741] = {.lex_state = 106}, - [3742] = {.lex_state = 106}, - [3743] = {.lex_state = 106}, - [3744] = {.lex_state = 966}, - [3745] = {.lex_state = 101}, - [3746] = {.lex_state = 101}, - [3747] = {.lex_state = 101}, - [3748] = {.lex_state = 966}, - [3749] = {.lex_state = 101}, - [3750] = {.lex_state = 101}, - [3751] = {.lex_state = 101}, - [3752] = {.lex_state = 101}, - [3753] = {.lex_state = 966}, - [3754] = {.lex_state = 101}, - [3755] = {.lex_state = 106}, - [3756] = {.lex_state = 101}, - [3757] = {.lex_state = 106}, - [3758] = {.lex_state = 106}, - [3759] = {.lex_state = 106}, - [3760] = {.lex_state = 966}, - [3761] = {.lex_state = 101}, - [3762] = {.lex_state = 106}, - [3763] = {.lex_state = 106}, - [3764] = {.lex_state = 106}, - [3765] = {.lex_state = 106}, - [3766] = {.lex_state = 966}, - [3767] = {.lex_state = 101}, - [3768] = {.lex_state = 101}, - [3769] = {.lex_state = 66}, - [3770] = {.lex_state = 66}, - [3771] = {.lex_state = 966}, - [3772] = {.lex_state = 966}, - [3773] = {.lex_state = 966}, - [3774] = {.lex_state = 101}, - [3775] = {.lex_state = 966}, - [3776] = {.lex_state = 101}, - [3777] = {.lex_state = 934}, - [3778] = {.lex_state = 66}, - [3779] = {.lex_state = 66}, - [3780] = {.lex_state = 66}, - [3781] = {.lex_state = 101}, - [3782] = {.lex_state = 66}, - [3783] = {.lex_state = 66}, - [3784] = {.lex_state = 101}, - [3785] = {.lex_state = 101}, - [3786] = {.lex_state = 101}, - [3787] = {.lex_state = 966}, - [3788] = {.lex_state = 101}, - [3789] = {.lex_state = 66}, - [3790] = {.lex_state = 66}, - [3791] = {.lex_state = 66}, - [3792] = {.lex_state = 966}, - [3793] = {.lex_state = 66}, - [3794] = {.lex_state = 66}, - [3795] = {.lex_state = 995}, - [3796] = {.lex_state = 934}, - [3797] = {.lex_state = 992}, - [3798] = {.lex_state = 995}, - [3799] = {.lex_state = 992}, - [3800] = {.lex_state = 992}, - [3801] = {.lex_state = 994}, - [3802] = {.lex_state = 1006}, - [3803] = {.lex_state = 992}, - [3804] = {.lex_state = 991}, - [3805] = {.lex_state = 1000}, - [3806] = {.lex_state = 1006}, - [3807] = {.lex_state = 991}, - [3808] = {.lex_state = 991}, - [3809] = {.lex_state = 1000}, - [3810] = {.lex_state = 1010}, - [3811] = {.lex_state = 1010}, - [3812] = {.lex_state = 991}, - [3813] = {.lex_state = 934}, - [3814] = {.lex_state = 934}, - [3815] = {.lex_state = 934}, - [3816] = {.lex_state = 934}, - [3817] = {.lex_state = 991}, - [3818] = {.lex_state = 994}, - [3819] = {.lex_state = 934}, - [3820] = {.lex_state = 934}, - [3821] = {.lex_state = 934}, - [3822] = {.lex_state = 934}, - [3823] = {.lex_state = 934}, - [3824] = {.lex_state = 934}, - [3825] = {.lex_state = 934}, - [3826] = {.lex_state = 934}, - [3827] = {.lex_state = 934}, - [3828] = {.lex_state = 934}, - [3829] = {.lex_state = 934}, - [3830] = {.lex_state = 934}, - [3831] = {.lex_state = 934}, - [3832] = {.lex_state = 934}, - [3833] = {.lex_state = 934}, - [3834] = {.lex_state = 993}, - [3835] = {.lex_state = 934}, - [3836] = {.lex_state = 993}, - [3837] = {.lex_state = 1014}, - [3838] = {.lex_state = 994}, - [3839] = {.lex_state = 934}, - [3840] = {.lex_state = 934}, - [3841] = {.lex_state = 994}, - [3842] = {.lex_state = 994}, - [3843] = {.lex_state = 993}, - [3844] = {.lex_state = 994}, - [3845] = {.lex_state = 1014}, - [3846] = {.lex_state = 1014}, - [3847] = {.lex_state = 994}, - [3848] = {.lex_state = 1004}, - [3849] = {.lex_state = 1014}, - [3850] = {.lex_state = 1002}, - [3851] = {.lex_state = 1010}, - [3852] = {.lex_state = 993}, - [3853] = {.lex_state = 1014}, - [3854] = {.lex_state = 994}, - [3855] = {.lex_state = 1018}, - [3856] = {.lex_state = 1010}, - [3857] = {.lex_state = 1008}, - [3858] = {.lex_state = 936}, - [3859] = {.lex_state = 936}, - [3860] = {.lex_state = 1014}, - [3861] = {.lex_state = 934}, - [3862] = {.lex_state = 53}, - [3863] = {.lex_state = 1014}, - [3864] = {.lex_state = 934}, - [3865] = {.lex_state = 1020}, - [3866] = {.lex_state = 994}, - [3867] = {.lex_state = 1014}, - [3868] = {.lex_state = 936}, - [3869] = {.lex_state = 1016}, - [3870] = {.lex_state = 934}, - [3871] = {.lex_state = 934}, - [3872] = {.lex_state = 994}, - [3873] = {.lex_state = 1014}, - [3874] = {.lex_state = 1012}, - [3875] = {.lex_state = 936}, - [3876] = {.lex_state = 1008}, - [3877] = {.lex_state = 1002}, - [3878] = {.lex_state = 934}, - [3879] = {.lex_state = 934}, - [3880] = {.lex_state = 934}, - [3881] = {.lex_state = 934}, - [3882] = {.lex_state = 934}, - [3883] = {.lex_state = 994}, - [3884] = {.lex_state = 934}, - [3885] = {.lex_state = 934}, - [3886] = {.lex_state = 934}, - [3887] = {.lex_state = 934}, - [3888] = {.lex_state = 1018}, - [3889] = {.lex_state = 934}, - [3890] = {.lex_state = 934}, - [3891] = {.lex_state = 934}, - [3892] = {.lex_state = 1012}, - [3893] = {.lex_state = 934}, - [3894] = {.lex_state = 934}, - [3895] = {.lex_state = 934}, - [3896] = {.lex_state = 934}, - [3897] = {.lex_state = 934}, - [3898] = {.lex_state = 1004}, - [3899] = {.lex_state = 934}, - [3900] = {.lex_state = 1014}, - [3901] = {.lex_state = 934}, - [3902] = {.lex_state = 936}, - [3903] = {.lex_state = 994}, - [3904] = {.lex_state = 1020}, - [3905] = {.lex_state = 1016}, - [3906] = {.lex_state = 1020}, - [3907] = {.lex_state = 56}, - [3908] = {.lex_state = 1012}, - [3909] = {.lex_state = 1022}, - [3910] = {.lex_state = 1002}, - [3911] = {.lex_state = 934}, - [3912] = {.lex_state = 1019}, - [3913] = {.lex_state = 52}, - [3914] = {.lex_state = 934}, - [3915] = {.lex_state = 1022}, - [3916] = {.lex_state = 936}, - [3917] = {.lex_state = 936}, - [3918] = {.lex_state = 1016}, - [3919] = {.lex_state = 1005}, - [3920] = {.lex_state = 936}, - [3921] = {.lex_state = 1002}, - [3922] = {.lex_state = 1022}, - [3923] = {.lex_state = 53}, - [3924] = {.lex_state = 1022}, - [3925] = {.lex_state = 1012}, - [3926] = {.lex_state = 1002}, - [3927] = {.lex_state = 934}, - [3928] = {.lex_state = 1016}, - [3929] = {.lex_state = 1022}, - [3930] = {.lex_state = 1022}, - [3931] = {.lex_state = 1020}, - [3932] = {.lex_state = 54}, - [3933] = {.lex_state = 1016}, - [3934] = {.lex_state = 52}, - [3935] = {.lex_state = 1016}, - [3936] = {.lex_state = 936}, - [3937] = {.lex_state = 1002}, - [3938] = {.lex_state = 934}, - [3939] = {.lex_state = 934}, - [3940] = {.lex_state = 934}, - [3941] = {.lex_state = 57}, - [3942] = {.lex_state = 1026}, - [3943] = {.lex_state = 1019}, - [3944] = {.lex_state = 934}, - [3945] = {.lex_state = 934}, - [3946] = {.lex_state = 934}, - [3947] = {.lex_state = 1022}, - [3948] = {.lex_state = 1002}, - [3949] = {.lex_state = 936}, - [3950] = {.lex_state = 936}, - [3951] = {.lex_state = 936}, - [3952] = {.lex_state = 934}, - [3953] = {.lex_state = 934}, - [3954] = {.lex_state = 934}, - [3955] = {.lex_state = 934}, - [3956] = {.lex_state = 934}, - [3957] = {.lex_state = 66}, - [3958] = {.lex_state = 1024}, - [3959] = {.lex_state = 934}, - [3960] = {.lex_state = 1022}, - [3961] = {.lex_state = 1016}, - [3962] = {.lex_state = 936}, - [3963] = {.lex_state = 934}, - [3964] = {.lex_state = 1021}, - [3965] = {.lex_state = 934}, - [3966] = {.lex_state = 934}, - [3967] = {.lex_state = 934}, - [3968] = {.lex_state = 934}, - [3969] = {.lex_state = 53}, - [3970] = {.lex_state = 934}, - [3971] = {.lex_state = 934}, - [3972] = {.lex_state = 1016}, - [3973] = {.lex_state = 1016}, - [3974] = {.lex_state = 934}, - [3975] = {.lex_state = 934}, - [3976] = {.lex_state = 934}, - [3977] = {.lex_state = 934}, - [3978] = {.lex_state = 934}, - [3979] = {.lex_state = 934}, - [3980] = {.lex_state = 934}, - [3981] = {.lex_state = 53}, - [3982] = {.lex_state = 53}, - [3983] = {.lex_state = 934}, - [3984] = {.lex_state = 53}, - [3985] = {.lex_state = 934}, - [3986] = {.lex_state = 934}, - [3987] = {.lex_state = 1016}, - [3988] = {.lex_state = 934}, - [3989] = {.lex_state = 934}, - [3990] = {.lex_state = 1016}, - [3991] = {.lex_state = 934}, - [3992] = {.lex_state = 1022}, - [3993] = {.lex_state = 1022}, - [3994] = {.lex_state = 1002}, - [3995] = {.lex_state = 1021}, - [3996] = {.lex_state = 1002}, - [3997] = {.lex_state = 1005}, - [3998] = {.lex_state = 1002}, + [3061] = {.lex_state = 42}, + [3062] = {.lex_state = 42}, + [3063] = {.lex_state = 46}, + [3064] = {.lex_state = 42}, + [3065] = {.lex_state = 42}, + [3066] = {.lex_state = 1040}, + [3067] = {.lex_state = 42}, + [3068] = {.lex_state = 42}, + [3069] = {.lex_state = 42}, + [3070] = {.lex_state = 139}, + [3071] = {.lex_state = 42}, + [3072] = {.lex_state = 42}, + [3073] = {.lex_state = 1040}, + [3074] = {.lex_state = 42}, + [3075] = {.lex_state = 42}, + [3076] = {.lex_state = 42}, + [3077] = {.lex_state = 1040}, + [3078] = {.lex_state = 139}, + [3079] = {.lex_state = 42}, + [3080] = {.lex_state = 42}, + [3081] = {.lex_state = 42}, + [3082] = {.lex_state = 42}, + [3083] = {.lex_state = 42}, + [3084] = {.lex_state = 42}, + [3085] = {.lex_state = 42}, + [3086] = {.lex_state = 42}, + [3087] = {.lex_state = 139}, + [3088] = {.lex_state = 42}, + [3089] = {.lex_state = 42}, + [3090] = {.lex_state = 42}, + [3091] = {.lex_state = 1040}, + [3092] = {.lex_state = 42}, + [3093] = {.lex_state = 42}, + [3094] = {.lex_state = 42}, + [3095] = {.lex_state = 42}, + [3096] = {.lex_state = 42}, + [3097] = {.lex_state = 1040}, + [3098] = {.lex_state = 42}, + [3099] = {.lex_state = 42}, + [3100] = {.lex_state = 71}, + [3101] = {.lex_state = 76}, + [3102] = {.lex_state = 76}, + [3103] = {.lex_state = 76}, + [3104] = {.lex_state = 76}, + [3105] = {.lex_state = 76}, + [3106] = {.lex_state = 1027}, + [3107] = {.lex_state = 71}, + [3108] = {.lex_state = 76}, + [3109] = {.lex_state = 76}, + [3110] = {.lex_state = 990}, + [3111] = {.lex_state = 42}, + [3112] = {.lex_state = 76}, + [3113] = {.lex_state = 76}, + [3114] = {.lex_state = 76}, + [3115] = {.lex_state = 76}, + [3116] = {.lex_state = 980}, + [3117] = {.lex_state = 76}, + [3118] = {.lex_state = 76}, + [3119] = {.lex_state = 76}, + [3120] = {.lex_state = 76}, + [3121] = {.lex_state = 76}, + [3122] = {.lex_state = 71}, + [3123] = {.lex_state = 1027}, + [3124] = {.lex_state = 980}, + [3125] = {.lex_state = 140}, + [3126] = {.lex_state = 980}, + [3127] = {.lex_state = 980}, + [3128] = {.lex_state = 980}, + [3129] = {.lex_state = 1051}, + [3130] = {.lex_state = 986}, + [3131] = {.lex_state = 924}, + [3132] = {.lex_state = 924}, + [3133] = {.lex_state = 1051}, + [3134] = {.lex_state = 1051}, + [3135] = {.lex_state = 1051}, + [3136] = {.lex_state = 76}, + [3137] = {.lex_state = 1051}, + [3138] = {.lex_state = 146}, + [3139] = {.lex_state = 924}, + [3140] = {.lex_state = 146}, + [3141] = {.lex_state = 146}, + [3142] = {.lex_state = 1051}, + [3143] = {.lex_state = 1051}, + [3144] = {.lex_state = 146}, + [3145] = {.lex_state = 924}, + [3146] = {.lex_state = 924}, + [3147] = {.lex_state = 146}, + [3148] = {.lex_state = 76}, + [3149] = {.lex_state = 1047}, + [3150] = {.lex_state = 922}, + [3151] = {.lex_state = 1051}, + [3152] = {.lex_state = 924}, + [3153] = {.lex_state = 980}, + [3154] = {.lex_state = 986}, + [3155] = {.lex_state = 1047}, + [3156] = {.lex_state = 1051}, + [3157] = {.lex_state = 924}, + [3158] = {.lex_state = 1046}, + [3159] = {.lex_state = 924}, + [3160] = {.lex_state = 1054}, + [3161] = {.lex_state = 924}, + [3162] = {.lex_state = 1054}, + [3163] = {.lex_state = 1051}, + [3164] = {.lex_state = 1054}, + [3165] = {.lex_state = 924}, + [3166] = {.lex_state = 118}, + [3167] = {.lex_state = 118}, + [3168] = {.lex_state = 118}, + [3169] = {.lex_state = 118}, + [3170] = {.lex_state = 990}, + [3171] = {.lex_state = 118}, + [3172] = {.lex_state = 118}, + [3173] = {.lex_state = 118}, + [3174] = {.lex_state = 118}, + [3175] = {.lex_state = 118}, + [3176] = {.lex_state = 118}, + [3177] = {.lex_state = 118}, + [3178] = {.lex_state = 118}, + [3179] = {.lex_state = 990}, + [3180] = {.lex_state = 118}, + [3181] = {.lex_state = 118}, + [3182] = {.lex_state = 118}, + [3183] = {.lex_state = 990}, + [3184] = {.lex_state = 118}, + [3185] = {.lex_state = 990}, + [3186] = {.lex_state = 118}, + [3187] = {.lex_state = 118}, + [3188] = {.lex_state = 118}, + [3189] = {.lex_state = 118}, + [3190] = {.lex_state = 118}, + [3191] = {.lex_state = 118}, + [3192] = {.lex_state = 118}, + [3193] = {.lex_state = 118}, + [3194] = {.lex_state = 118}, + [3195] = {.lex_state = 118}, + [3196] = {.lex_state = 118}, + [3197] = {.lex_state = 118}, + [3198] = {.lex_state = 118}, + [3199] = {.lex_state = 118}, + [3200] = {.lex_state = 118}, + [3201] = {.lex_state = 118}, + [3202] = {.lex_state = 118}, + [3203] = {.lex_state = 118}, + [3204] = {.lex_state = 118}, + [3205] = {.lex_state = 118}, + [3206] = {.lex_state = 118}, + [3207] = {.lex_state = 118}, + [3208] = {.lex_state = 118}, + [3209] = {.lex_state = 118}, + [3210] = {.lex_state = 118}, + [3211] = {.lex_state = 118}, + [3212] = {.lex_state = 118}, + [3213] = {.lex_state = 118}, + [3214] = {.lex_state = 118}, + [3215] = {.lex_state = 118}, + [3216] = {.lex_state = 118}, + [3217] = {.lex_state = 118}, + [3218] = {.lex_state = 118}, + [3219] = {.lex_state = 118}, + [3220] = {.lex_state = 118}, + [3221] = {.lex_state = 118}, + [3222] = {.lex_state = 118}, + [3223] = {.lex_state = 118}, + [3224] = {.lex_state = 118}, + [3225] = {.lex_state = 118}, + [3226] = {.lex_state = 118}, + [3227] = {.lex_state = 118}, + [3228] = {.lex_state = 118}, + [3229] = {.lex_state = 118}, + [3230] = {.lex_state = 118}, + [3231] = {.lex_state = 118}, + [3232] = {.lex_state = 118}, + [3233] = {.lex_state = 118}, + [3234] = {.lex_state = 990}, + [3235] = {.lex_state = 990}, + [3236] = {.lex_state = 990}, + [3237] = {.lex_state = 990}, + [3238] = {.lex_state = 990}, + [3239] = {.lex_state = 990}, + [3240] = {.lex_state = 143}, + [3241] = {.lex_state = 76}, + [3242] = {.lex_state = 924}, + [3243] = {.lex_state = 76}, + [3244] = {.lex_state = 924}, + [3245] = {.lex_state = 144}, + [3246] = {.lex_state = 144}, + [3247] = {.lex_state = 76}, + [3248] = {.lex_state = 980}, + [3249] = {.lex_state = 149}, + [3250] = {.lex_state = 149}, + [3251] = {.lex_state = 118}, + [3252] = {.lex_state = 118}, + [3253] = {.lex_state = 118}, + [3254] = {.lex_state = 118}, + [3255] = {.lex_state = 980}, + [3256] = {.lex_state = 118}, + [3257] = {.lex_state = 118}, + [3258] = {.lex_state = 149}, + [3259] = {.lex_state = 1054}, + [3260] = {.lex_state = 1047}, + [3261] = {.lex_state = 118}, + [3262] = {.lex_state = 118}, + [3263] = {.lex_state = 118}, + [3264] = {.lex_state = 118}, + [3265] = {.lex_state = 118}, + [3266] = {.lex_state = 76}, + [3267] = {.lex_state = 76}, + [3268] = {.lex_state = 118}, + [3269] = {.lex_state = 924}, + [3270] = {.lex_state = 76}, + [3271] = {.lex_state = 76}, + [3272] = {.lex_state = 76}, + [3273] = {.lex_state = 990}, + [3274] = {.lex_state = 1054}, + [3275] = {.lex_state = 1054}, + [3276] = {.lex_state = 990}, + [3277] = {.lex_state = 76}, + [3278] = {.lex_state = 1047}, + [3279] = {.lex_state = 76}, + [3280] = {.lex_state = 118}, + [3281] = {.lex_state = 118}, + [3282] = {.lex_state = 118}, + [3283] = {.lex_state = 118}, + [3284] = {.lex_state = 118}, + [3285] = {.lex_state = 924}, + [3286] = {.lex_state = 118}, + [3287] = {.lex_state = 118}, + [3288] = {.lex_state = 118}, + [3289] = {.lex_state = 118}, + [3290] = {.lex_state = 118}, + [3291] = {.lex_state = 118}, + [3292] = {.lex_state = 118}, + [3293] = {.lex_state = 118}, + [3294] = {.lex_state = 118}, + [3295] = {.lex_state = 118}, + [3296] = {.lex_state = 118}, + [3297] = {.lex_state = 118}, + [3298] = {.lex_state = 1046}, + [3299] = {.lex_state = 118}, + [3300] = {.lex_state = 118}, + [3301] = {.lex_state = 118}, + [3302] = {.lex_state = 990}, + [3303] = {.lex_state = 76}, + [3304] = {.lex_state = 990}, + [3305] = {.lex_state = 76}, + [3306] = {.lex_state = 405}, + [3307] = {.lex_state = 990}, + [3308] = {.lex_state = 76}, + [3309] = {.lex_state = 76}, + [3310] = {.lex_state = 118}, + [3311] = {.lex_state = 76}, + [3312] = {.lex_state = 76}, + [3313] = {.lex_state = 924}, + [3314] = {.lex_state = 924}, + [3315] = {.lex_state = 924}, + [3316] = {.lex_state = 404}, + [3317] = {.lex_state = 924}, + [3318] = {.lex_state = 76}, + [3319] = {.lex_state = 76}, + [3320] = {.lex_state = 924}, + [3321] = {.lex_state = 990}, + [3322] = {.lex_state = 990}, + [3323] = {.lex_state = 990}, + [3324] = {.lex_state = 990}, + [3325] = {.lex_state = 76}, + [3326] = {.lex_state = 990}, + [3327] = {.lex_state = 990}, + [3328] = {.lex_state = 990}, + [3329] = {.lex_state = 990}, + [3330] = {.lex_state = 990}, + [3331] = {.lex_state = 990}, + [3332] = {.lex_state = 924}, + [3333] = {.lex_state = 76}, + [3334] = {.lex_state = 990}, + [3335] = {.lex_state = 990}, + [3336] = {.lex_state = 990}, + [3337] = {.lex_state = 990}, + [3338] = {.lex_state = 76}, + [3339] = {.lex_state = 127}, + [3340] = {.lex_state = 408}, + [3341] = {.lex_state = 204}, + [3342] = {.lex_state = 414}, + [3343] = {.lex_state = 100}, + [3344] = {.lex_state = 204}, + [3345] = {.lex_state = 406}, + [3346] = {.lex_state = 407}, + [3347] = {.lex_state = 406}, + [3348] = {.lex_state = 208}, + [3349] = {.lex_state = 212}, + [3350] = {.lex_state = 128}, + [3351] = {.lex_state = 100}, + [3352] = {.lex_state = 922}, + [3353] = {.lex_state = 100}, + [3354] = {.lex_state = 409}, + [3355] = {.lex_state = 129}, + [3356] = {.lex_state = 76}, + [3357] = {.lex_state = 980}, + [3358] = {.lex_state = 205}, + [3359] = {.lex_state = 407}, + [3360] = {.lex_state = 209}, + [3361] = {.lex_state = 130}, + [3362] = {.lex_state = 980}, + [3363] = {.lex_state = 129}, + [3364] = {.lex_state = 100}, + [3365] = {.lex_state = 407}, + [3366] = {.lex_state = 986}, + [3367] = {.lex_state = 986}, + [3368] = {.lex_state = 415}, + [3369] = {.lex_state = 407}, + [3370] = {.lex_state = 417}, + [3371] = {.lex_state = 100}, + [3372] = {.lex_state = 205}, + [3373] = {.lex_state = 407}, + [3374] = {.lex_state = 76}, + [3375] = {.lex_state = 76}, + [3376] = {.lex_state = 415}, + [3377] = {.lex_state = 986}, + [3378] = {.lex_state = 76}, + [3379] = {.lex_state = 986}, + [3380] = {.lex_state = 209}, + [3381] = {.lex_state = 922}, + [3382] = {.lex_state = 210}, + [3383] = {.lex_state = 419}, + [3384] = {.lex_state = 418}, + [3385] = {.lex_state = 416}, + [3386] = {.lex_state = 130}, + [3387] = {.lex_state = 210}, + [3388] = {.lex_state = 130}, + [3389] = {.lex_state = 980}, + [3390] = {.lex_state = 491}, + [3391] = {.lex_state = 210}, + [3392] = {.lex_state = 416}, + [3393] = {.lex_state = 922}, + [3394] = {.lex_state = 210}, + [3395] = {.lex_state = 922}, + [3396] = {.lex_state = 922}, + [3397] = {.lex_state = 980}, + [3398] = {.lex_state = 922}, + [3399] = {.lex_state = 491}, + [3400] = {.lex_state = 130}, + [3401] = {.lex_state = 922}, + [3402] = {.lex_state = 922}, + [3403] = {.lex_state = 416}, + [3404] = {.lex_state = 130}, + [3405] = {.lex_state = 980}, + [3406] = {.lex_state = 100}, + [3407] = {.lex_state = 100}, + [3408] = {.lex_state = 416}, + [3409] = {.lex_state = 491}, + [3410] = {.lex_state = 491}, + [3411] = {.lex_state = 980}, + [3412] = {.lex_state = 491}, + [3413] = {.lex_state = 980}, + [3414] = {.lex_state = 210}, + [3415] = {.lex_state = 922}, + [3416] = {.lex_state = 980}, + [3417] = {.lex_state = 922}, + [3418] = {.lex_state = 100}, + [3419] = {.lex_state = 922}, + [3420] = {.lex_state = 100}, + [3421] = {.lex_state = 922}, + [3422] = {.lex_state = 418}, + [3423] = {.lex_state = 922}, + [3424] = {.lex_state = 416}, + [3425] = {.lex_state = 922}, + [3426] = {.lex_state = 922}, + [3427] = {.lex_state = 922}, + [3428] = {.lex_state = 100}, + [3429] = {.lex_state = 101}, + [3430] = {.lex_state = 419}, + [3431] = {.lex_state = 419}, + [3432] = {.lex_state = 101}, + [3433] = {.lex_state = 419}, + [3434] = {.lex_state = 100}, + [3435] = {.lex_state = 101}, + [3436] = {.lex_state = 101}, + [3437] = {.lex_state = 101}, + [3438] = {.lex_state = 419}, + [3439] = {.lex_state = 101}, + [3440] = {.lex_state = 101}, + [3441] = {.lex_state = 101}, + [3442] = {.lex_state = 101}, + [3443] = {.lex_state = 101}, + [3444] = {.lex_state = 101}, + [3445] = {.lex_state = 101}, + [3446] = {.lex_state = 986}, + [3447] = {.lex_state = 100}, + [3448] = {.lex_state = 101}, + [3449] = {.lex_state = 101}, + [3450] = {.lex_state = 101}, + [3451] = {.lex_state = 101}, + [3452] = {.lex_state = 101}, + [3453] = {.lex_state = 491}, + [3454] = {.lex_state = 491}, + [3455] = {.lex_state = 101}, + [3456] = {.lex_state = 101}, + [3457] = {.lex_state = 101}, + [3458] = {.lex_state = 101}, + [3459] = {.lex_state = 101}, + [3460] = {.lex_state = 986}, + [3461] = {.lex_state = 101}, + [3462] = {.lex_state = 101}, + [3463] = {.lex_state = 101}, + [3464] = {.lex_state = 100}, + [3465] = {.lex_state = 922}, + [3466] = {.lex_state = 947}, + [3467] = {.lex_state = 947}, + [3468] = {.lex_state = 947}, + [3469] = {.lex_state = 947}, + [3470] = {.lex_state = 947}, + [3471] = {.lex_state = 947}, + [3472] = {.lex_state = 100}, + [3473] = {.lex_state = 947}, + [3474] = {.lex_state = 986}, + [3475] = {.lex_state = 947}, + [3476] = {.lex_state = 101}, + [3477] = {.lex_state = 947}, + [3478] = {.lex_state = 947}, + [3479] = {.lex_state = 947}, + [3480] = {.lex_state = 986}, + [3481] = {.lex_state = 947}, + [3482] = {.lex_state = 947}, + [3483] = {.lex_state = 922}, + [3484] = {.lex_state = 947}, + [3485] = {.lex_state = 947}, + [3486] = {.lex_state = 947}, + [3487] = {.lex_state = 947}, + [3488] = {.lex_state = 947}, + [3489] = {.lex_state = 947}, + [3490] = {.lex_state = 101}, + [3491] = {.lex_state = 986}, + [3492] = {.lex_state = 947}, + [3493] = {.lex_state = 118}, + [3494] = {.lex_state = 947}, + [3495] = {.lex_state = 986}, + [3496] = {.lex_state = 947}, + [3497] = {.lex_state = 947}, + [3498] = {.lex_state = 986}, + [3499] = {.lex_state = 986}, + [3500] = {.lex_state = 947}, + [3501] = {.lex_state = 986}, + [3502] = {.lex_state = 196}, + [3503] = {.lex_state = 986}, + [3504] = {.lex_state = 102}, + [3505] = {.lex_state = 986}, + [3506] = {.lex_state = 947}, + [3507] = {.lex_state = 99}, + [3508] = {.lex_state = 986}, + [3509] = {.lex_state = 922}, + [3510] = {.lex_state = 947}, + [3511] = {.lex_state = 947}, + [3512] = {.lex_state = 947}, + [3513] = {.lex_state = 922}, + [3514] = {.lex_state = 507}, + [3515] = {.lex_state = 507}, + [3516] = {.lex_state = 507}, + [3517] = {.lex_state = 507}, + [3518] = {.lex_state = 118}, + [3519] = {.lex_state = 947}, + [3520] = {.lex_state = 922}, + [3521] = {.lex_state = 922}, + [3522] = {.lex_state = 507}, + [3523] = {.lex_state = 922}, + [3524] = {.lex_state = 922}, + [3525] = {.lex_state = 922}, + [3526] = {.lex_state = 118}, + [3527] = {.lex_state = 922}, + [3528] = {.lex_state = 101}, + [3529] = {.lex_state = 947}, + [3530] = {.lex_state = 201}, + [3531] = {.lex_state = 922}, + [3532] = {.lex_state = 922}, + [3533] = {.lex_state = 356}, + [3534] = {.lex_state = 356}, + [3535] = {.lex_state = 356}, + [3536] = {.lex_state = 356}, + [3537] = {.lex_state = 508}, + [3538] = {.lex_state = 508}, + [3539] = {.lex_state = 508}, + [3540] = {.lex_state = 356}, + [3541] = {.lex_state = 65}, + [3542] = {.lex_state = 147}, + [3543] = {.lex_state = 947}, + [3544] = {.lex_state = 947}, + [3545] = {.lex_state = 947}, + [3546] = {.lex_state = 508}, + [3547] = {.lex_state = 147}, + [3548] = {.lex_state = 449}, + [3549] = {.lex_state = 147}, + [3550] = {.lex_state = 147}, + [3551] = {.lex_state = 922}, + [3552] = {.lex_state = 922}, + [3553] = {.lex_state = 922}, + [3554] = {.lex_state = 922}, + [3555] = {.lex_state = 947}, + [3556] = {.lex_state = 99}, + [3557] = {.lex_state = 922}, + [3558] = {.lex_state = 922}, + [3559] = {.lex_state = 99}, + [3560] = {.lex_state = 199}, + [3561] = {.lex_state = 947}, + [3562] = {.lex_state = 211}, + [3563] = {.lex_state = 65}, + [3564] = {.lex_state = 102}, + [3565] = {.lex_state = 102}, + [3566] = {.lex_state = 147}, + [3567] = {.lex_state = 39}, + [3568] = {.lex_state = 509}, + [3569] = {.lex_state = 990}, + [3570] = {.lex_state = 990}, + [3571] = {.lex_state = 990}, + [3572] = {.lex_state = 990}, + [3573] = {.lex_state = 131}, + [3574] = {.lex_state = 924}, + [3575] = {.lex_state = 118}, + [3576] = {.lex_state = 118}, + [3577] = {.lex_state = 118}, + [3578] = {.lex_state = 118}, + [3579] = {.lex_state = 118}, + [3580] = {.lex_state = 118}, + [3581] = {.lex_state = 118}, + [3582] = {.lex_state = 118}, + [3583] = {.lex_state = 118}, + [3584] = {.lex_state = 118}, + [3585] = {.lex_state = 118}, + [3586] = {.lex_state = 118}, + [3587] = {.lex_state = 118}, + [3588] = {.lex_state = 118}, + [3589] = {.lex_state = 118}, + [3590] = {.lex_state = 118}, + [3591] = {.lex_state = 118}, + [3592] = {.lex_state = 118}, + [3593] = {.lex_state = 118}, + [3594] = {.lex_state = 118}, + [3595] = {.lex_state = 118}, + [3596] = {.lex_state = 118}, + [3597] = {.lex_state = 118}, + [3598] = {.lex_state = 118}, + [3599] = {.lex_state = 118}, + [3600] = {.lex_state = 118}, + [3601] = {.lex_state = 118}, + [3602] = {.lex_state = 118}, + [3603] = {.lex_state = 118}, + [3604] = {.lex_state = 118}, + [3605] = {.lex_state = 118}, + [3606] = {.lex_state = 118}, + [3607] = {.lex_state = 118}, + [3608] = {.lex_state = 118}, + [3609] = {.lex_state = 118}, + [3610] = {.lex_state = 118}, + [3611] = {.lex_state = 118}, + [3612] = {.lex_state = 118}, + [3613] = {.lex_state = 118}, + [3614] = {.lex_state = 118}, + [3615] = {.lex_state = 118}, + [3616] = {.lex_state = 118}, + [3617] = {.lex_state = 118}, + [3618] = {.lex_state = 118}, + [3619] = {.lex_state = 118}, + [3620] = {.lex_state = 118}, + [3621] = {.lex_state = 118}, + [3622] = {.lex_state = 118}, + [3623] = {.lex_state = 118}, + [3624] = {.lex_state = 118}, + [3625] = {.lex_state = 118}, + [3626] = {.lex_state = 118}, + [3627] = {.lex_state = 118}, + [3628] = {.lex_state = 118}, + [3629] = {.lex_state = 118}, + [3630] = {.lex_state = 118}, + [3631] = {.lex_state = 118}, + [3632] = {.lex_state = 118}, + [3633] = {.lex_state = 118}, + [3634] = {.lex_state = 118}, + [3635] = {.lex_state = 118}, + [3636] = {.lex_state = 118}, + [3637] = {.lex_state = 118}, + [3638] = {.lex_state = 118}, + [3639] = {.lex_state = 118}, + [3640] = {.lex_state = 118}, + [3641] = {.lex_state = 118}, + [3642] = {.lex_state = 118}, + [3643] = {.lex_state = 118}, + [3644] = {.lex_state = 118}, + [3645] = {.lex_state = 118}, + [3646] = {.lex_state = 118}, + [3647] = {.lex_state = 118}, + [3648] = {.lex_state = 118}, + [3649] = {.lex_state = 118}, + [3650] = {.lex_state = 118}, + [3651] = {.lex_state = 118}, + [3652] = {.lex_state = 118}, + [3653] = {.lex_state = 118}, + [3654] = {.lex_state = 118}, + [3655] = {.lex_state = 118}, + [3656] = {.lex_state = 118}, + [3657] = {.lex_state = 118}, + [3658] = {.lex_state = 118}, + [3659] = {.lex_state = 118}, + [3660] = {.lex_state = 118}, + [3661] = {.lex_state = 118}, + [3662] = {.lex_state = 118}, + [3663] = {.lex_state = 509}, + [3664] = {.lex_state = 118}, + [3665] = {.lex_state = 118}, + [3666] = {.lex_state = 118}, + [3667] = {.lex_state = 118}, + [3668] = {.lex_state = 118}, + [3669] = {.lex_state = 118}, + [3670] = {.lex_state = 118}, + [3671] = {.lex_state = 39}, + [3672] = {.lex_state = 39}, + [3673] = {.lex_state = 508}, + [3674] = {.lex_state = 39}, + [3675] = {.lex_state = 39}, + [3676] = {.lex_state = 39}, + [3677] = {.lex_state = 922}, + [3678] = {.lex_state = 39}, + [3679] = {.lex_state = 39}, + [3680] = {.lex_state = 39}, + [3681] = {.lex_state = 39}, + [3682] = {.lex_state = 39}, + [3683] = {.lex_state = 39}, + [3684] = {.lex_state = 39}, + [3685] = {.lex_state = 922}, + [3686] = {.lex_state = 922}, + [3687] = {.lex_state = 39}, + [3688] = {.lex_state = 39}, + [3689] = {.lex_state = 39}, + [3690] = {.lex_state = 39}, + [3691] = {.lex_state = 39}, + [3692] = {.lex_state = 39}, + [3693] = {.lex_state = 39}, + [3694] = {.lex_state = 509}, + [3695] = {.lex_state = 100}, + [3696] = {.lex_state = 100}, + [3697] = {.lex_state = 100}, + [3698] = {.lex_state = 100}, + [3699] = {.lex_state = 100}, + [3700] = {.lex_state = 100}, + [3701] = {.lex_state = 100}, + [3702] = {.lex_state = 100}, + [3703] = {.lex_state = 100}, + [3704] = {.lex_state = 100}, + [3705] = {.lex_state = 100}, + [3706] = {.lex_state = 100}, + [3707] = {.lex_state = 509}, + [3708] = {.lex_state = 922}, + [3709] = {.lex_state = 39}, + [3710] = {.lex_state = 39}, + [3711] = {.lex_state = 39}, + [3712] = {.lex_state = 39}, + [3713] = {.lex_state = 39}, + [3714] = {.lex_state = 39}, + [3715] = {.lex_state = 39}, + [3716] = {.lex_state = 39}, + [3717] = {.lex_state = 922}, + [3718] = {.lex_state = 39}, + [3719] = {.lex_state = 990}, + [3720] = {.lex_state = 39}, + [3721] = {.lex_state = 990}, + [3722] = {.lex_state = 39}, + [3723] = {.lex_state = 39}, + [3724] = {.lex_state = 39}, + [3725] = {.lex_state = 39}, + [3726] = {.lex_state = 39}, + [3727] = {.lex_state = 39}, + [3728] = {.lex_state = 39}, + [3729] = {.lex_state = 924}, + [3730] = {.lex_state = 39}, + [3731] = {.lex_state = 39}, + [3732] = {.lex_state = 39}, + [3733] = {.lex_state = 39}, + [3734] = {.lex_state = 39}, + [3735] = {.lex_state = 39}, + [3736] = {.lex_state = 39}, + [3737] = {.lex_state = 39}, + [3738] = {.lex_state = 39}, + [3739] = {.lex_state = 39}, + [3740] = {.lex_state = 39}, + [3741] = {.lex_state = 39}, + [3742] = {.lex_state = 39}, + [3743] = {.lex_state = 509}, + [3744] = {.lex_state = 118}, + [3745] = {.lex_state = 924}, + [3746] = {.lex_state = 118}, + [3747] = {.lex_state = 65}, + [3748] = {.lex_state = 489}, + [3749] = {.lex_state = 118}, + [3750] = {.lex_state = 924}, + [3751] = {.lex_state = 65}, + [3752] = {.lex_state = 65}, + [3753] = {.lex_state = 65}, + [3754] = {.lex_state = 65}, + [3755] = {.lex_state = 65}, + [3756] = {.lex_state = 65}, + [3757] = {.lex_state = 65}, + [3758] = {.lex_state = 65}, + [3759] = {.lex_state = 65}, + [3760] = {.lex_state = 65}, + [3761] = {.lex_state = 65}, + [3762] = {.lex_state = 65}, + [3763] = {.lex_state = 118}, + [3764] = {.lex_state = 65}, + [3765] = {.lex_state = 65}, + [3766] = {.lex_state = 118}, + [3767] = {.lex_state = 65}, + [3768] = {.lex_state = 118}, + [3769] = {.lex_state = 65}, + [3770] = {.lex_state = 496}, + [3771] = {.lex_state = 65}, + [3772] = {.lex_state = 65}, + [3773] = {.lex_state = 955}, + [3774] = {.lex_state = 118}, + [3775] = {.lex_state = 65}, + [3776] = {.lex_state = 65}, + [3777] = {.lex_state = 65}, + [3778] = {.lex_state = 118}, + [3779] = {.lex_state = 65}, + [3780] = {.lex_state = 65}, + [3781] = {.lex_state = 65}, + [3782] = {.lex_state = 955}, + [3783] = {.lex_state = 118}, + [3784] = {.lex_state = 65}, + [3785] = {.lex_state = 118}, + [3786] = {.lex_state = 97}, + [3787] = {.lex_state = 97}, + [3788] = {.lex_state = 102}, + [3789] = {.lex_state = 955}, + [3790] = {.lex_state = 102}, + [3791] = {.lex_state = 97}, + [3792] = {.lex_state = 102}, + [3793] = {.lex_state = 955}, + [3794] = {.lex_state = 102}, + [3795] = {.lex_state = 102}, + [3796] = {.lex_state = 955}, + [3797] = {.lex_state = 97}, + [3798] = {.lex_state = 97}, + [3799] = {.lex_state = 955}, + [3800] = {.lex_state = 102}, + [3801] = {.lex_state = 102}, + [3802] = {.lex_state = 102}, + [3803] = {.lex_state = 97}, + [3804] = {.lex_state = 102}, + [3805] = {.lex_state = 102}, + [3806] = {.lex_state = 102}, + [3807] = {.lex_state = 955}, + [3808] = {.lex_state = 102}, + [3809] = {.lex_state = 97}, + [3810] = {.lex_state = 97}, + [3811] = {.lex_state = 97}, + [3812] = {.lex_state = 97}, + [3813] = {.lex_state = 97}, + [3814] = {.lex_state = 97}, + [3815] = {.lex_state = 955}, + [3816] = {.lex_state = 65}, + [3817] = {.lex_state = 955}, + [3818] = {.lex_state = 955}, + [3819] = {.lex_state = 97}, + [3820] = {.lex_state = 97}, + [3821] = {.lex_state = 955}, + [3822] = {.lex_state = 97}, + [3823] = {.lex_state = 97}, + [3824] = {.lex_state = 65}, + [3825] = {.lex_state = 65}, + [3826] = {.lex_state = 65}, + [3827] = {.lex_state = 65}, + [3828] = {.lex_state = 65}, + [3829] = {.lex_state = 922}, + [3830] = {.lex_state = 955}, + [3831] = {.lex_state = 65}, + [3832] = {.lex_state = 97}, + [3833] = {.lex_state = 97}, + [3834] = {.lex_state = 65}, + [3835] = {.lex_state = 955}, + [3836] = {.lex_state = 97}, + [3837] = {.lex_state = 65}, + [3838] = {.lex_state = 65}, + [3839] = {.lex_state = 65}, + [3840] = {.lex_state = 65}, + [3841] = {.lex_state = 922}, + [3842] = {.lex_state = 984}, + [3843] = {.lex_state = 981}, + [3844] = {.lex_state = 984}, + [3845] = {.lex_state = 981}, + [3846] = {.lex_state = 981}, + [3847] = {.lex_state = 981}, + [3848] = {.lex_state = 983}, + [3849] = {.lex_state = 997}, + [3850] = {.lex_state = 991}, + [3851] = {.lex_state = 980}, + [3852] = {.lex_state = 991}, + [3853] = {.lex_state = 922}, + [3854] = {.lex_state = 922}, + [3855] = {.lex_state = 922}, + [3856] = {.lex_state = 1001}, + [3857] = {.lex_state = 982}, + [3858] = {.lex_state = 922}, + [3859] = {.lex_state = 922}, + [3860] = {.lex_state = 922}, + [3861] = {.lex_state = 922}, + [3862] = {.lex_state = 922}, + [3863] = {.lex_state = 922}, + [3864] = {.lex_state = 922}, + [3865] = {.lex_state = 997}, + [3866] = {.lex_state = 922}, + [3867] = {.lex_state = 983}, + [3868] = {.lex_state = 922}, + [3869] = {.lex_state = 980}, + [3870] = {.lex_state = 922}, + [3871] = {.lex_state = 922}, + [3872] = {.lex_state = 922}, + [3873] = {.lex_state = 922}, + [3874] = {.lex_state = 922}, + [3875] = {.lex_state = 922}, + [3876] = {.lex_state = 922}, + [3877] = {.lex_state = 1005}, + [3878] = {.lex_state = 922}, + [3879] = {.lex_state = 922}, + [3880] = {.lex_state = 1001}, + [3881] = {.lex_state = 980}, + [3882] = {.lex_state = 980}, + [3883] = {.lex_state = 980}, + [3884] = {.lex_state = 982}, + [3885] = {.lex_state = 983}, + [3886] = {.lex_state = 922}, + [3887] = {.lex_state = 999}, + [3888] = {.lex_state = 1005}, + [3889] = {.lex_state = 1005}, + [3890] = {.lex_state = 993}, + [3891] = {.lex_state = 1001}, + [3892] = {.lex_state = 1005}, + [3893] = {.lex_state = 1001}, + [3894] = {.lex_state = 995}, + [3895] = {.lex_state = 983}, + [3896] = {.lex_state = 1005}, + [3897] = {.lex_state = 983}, + [3898] = {.lex_state = 983}, + [3899] = {.lex_state = 983}, + [3900] = {.lex_state = 982}, + [3901] = {.lex_state = 1009}, + [3902] = {.lex_state = 982}, + [3903] = {.lex_state = 986}, + [3904] = {.lex_state = 986}, + [3905] = {.lex_state = 983}, + [3906] = {.lex_state = 1005}, + [3907] = {.lex_state = 922}, + [3908] = {.lex_state = 922}, + [3909] = {.lex_state = 1005}, + [3910] = {.lex_state = 1003}, + [3911] = {.lex_state = 1005}, + [3912] = {.lex_state = 983}, + [3913] = {.lex_state = 922}, + [3914] = {.lex_state = 922}, + [3915] = {.lex_state = 922}, + [3916] = {.lex_state = 922}, + [3917] = {.lex_state = 922}, + [3918] = {.lex_state = 922}, + [3919] = {.lex_state = 993}, + [3920] = {.lex_state = 1011}, + [3921] = {.lex_state = 983}, + [3922] = {.lex_state = 1005}, + [3923] = {.lex_state = 922}, + [3924] = {.lex_state = 983}, + [3925] = {.lex_state = 922}, + [3926] = {.lex_state = 986}, + [3927] = {.lex_state = 52}, + [3928] = {.lex_state = 922}, + [3929] = {.lex_state = 922}, + [3930] = {.lex_state = 922}, + [3931] = {.lex_state = 986}, + [3932] = {.lex_state = 922}, + [3933] = {.lex_state = 922}, + [3934] = {.lex_state = 922}, + [3935] = {.lex_state = 1007}, + [3936] = {.lex_state = 983}, + [3937] = {.lex_state = 999}, + [3938] = {.lex_state = 1009}, + [3939] = {.lex_state = 922}, + [3940] = {.lex_state = 1003}, + [3941] = {.lex_state = 922}, + [3942] = {.lex_state = 922}, + [3943] = {.lex_state = 1005}, + [3944] = {.lex_state = 922}, + [3945] = {.lex_state = 995}, + [3946] = {.lex_state = 922}, + [3947] = {.lex_state = 922}, + [3948] = {.lex_state = 922}, + [3949] = {.lex_state = 1011}, + [3950] = {.lex_state = 986}, + [3951] = {.lex_state = 986}, + [3952] = {.lex_state = 1011}, + [3953] = {.lex_state = 986}, + [3954] = {.lex_state = 1007}, + [3955] = {.lex_state = 1011}, + [3956] = {.lex_state = 1010}, + [3957] = {.lex_state = 1013}, + [3958] = {.lex_state = 1013}, + [3959] = {.lex_state = 1007}, + [3960] = {.lex_state = 922}, + [3961] = {.lex_state = 922}, + [3962] = {.lex_state = 922}, + [3963] = {.lex_state = 51}, + [3964] = {.lex_state = 1013}, + [3965] = {.lex_state = 996}, + [3966] = {.lex_state = 1013}, + [3967] = {.lex_state = 1013}, + [3968] = {.lex_state = 993}, + [3969] = {.lex_state = 51}, + [3970] = {.lex_state = 993}, + [3971] = {.lex_state = 53}, + [3972] = {.lex_state = 55}, + [3973] = {.lex_state = 1007}, + [3974] = {.lex_state = 1003}, + [3975] = {.lex_state = 1007}, + [3976] = {.lex_state = 986}, + [3977] = {.lex_state = 52}, + [3978] = {.lex_state = 1013}, + [3979] = {.lex_state = 1007}, + [3980] = {.lex_state = 993}, + [3981] = {.lex_state = 1003}, + [3982] = {.lex_state = 1015}, + [3983] = {.lex_state = 986}, + [3984] = {.lex_state = 986}, + [3985] = {.lex_state = 1013}, + [3986] = {.lex_state = 993}, + [3987] = {.lex_state = 52}, + [3988] = {.lex_state = 922}, + [3989] = {.lex_state = 922}, + [3990] = {.lex_state = 993}, + [3991] = {.lex_state = 922}, + [3992] = {.lex_state = 922}, + [3993] = {.lex_state = 1010}, + [3994] = {.lex_state = 1013}, + [3995] = {.lex_state = 922}, + [3996] = {.lex_state = 922}, + [3997] = {.lex_state = 922}, + [3998] = {.lex_state = 922}, [3999] = {.lex_state = 57}, - [4000] = {.lex_state = 1022}, - [4001] = {.lex_state = 934}, - [4002] = {.lex_state = 1022}, - [4003] = {.lex_state = 58}, - [4004] = {.lex_state = 934}, - [4005] = {.lex_state = 936}, - [4006] = {.lex_state = 934}, - [4007] = {.lex_state = 59}, - [4008] = {.lex_state = 1026}, - [4009] = {.lex_state = 58}, - [4010] = {.lex_state = 1023}, - [4011] = {.lex_state = 44}, - [4012] = {.lex_state = 66}, - [4013] = {.lex_state = 1023}, - [4014] = {.lex_state = 936}, - [4015] = {.lex_state = 1016}, - [4016] = {.lex_state = 58}, - [4017] = {.lex_state = 934}, - [4018] = {.lex_state = 1023}, - [4019] = {.lex_state = 936}, - [4020] = {.lex_state = 1023}, - [4021] = {.lex_state = 997}, - [4022] = {.lex_state = 936}, - [4023] = {.lex_state = 1002}, - [4024] = {.lex_state = 1028}, - [4025] = {.lex_state = 55}, - [4026] = {.lex_state = 1002}, - [4027] = {.lex_state = 58}, - [4028] = {.lex_state = 1024}, - [4029] = {.lex_state = 44}, - [4030] = {.lex_state = 44}, - [4031] = {.lex_state = 936}, - [4032] = {.lex_state = 997}, - [4033] = {.lex_state = 1021}, - [4034] = {.lex_state = 1023}, - [4035] = {.lex_state = 58}, - [4036] = {.lex_state = 934}, - [4037] = {.lex_state = 997}, - [4038] = {.lex_state = 1028}, - [4039] = {.lex_state = 44}, - [4040] = {.lex_state = 1023}, - [4041] = {.lex_state = 936}, - [4042] = {.lex_state = 997}, - [4043] = {.lex_state = 936}, - [4044] = {.lex_state = 1021}, - [4045] = {.lex_state = 997}, - [4046] = {.lex_state = 1025}, - [4047] = {.lex_state = 1025}, - [4048] = {.lex_state = 1025}, - [4049] = {.lex_state = 1025}, - [4050] = {.lex_state = 1023}, - [4051] = {.lex_state = 997}, - [4052] = {.lex_state = 997}, - [4053] = {.lex_state = 997}, - [4054] = {.lex_state = 1025}, - [4055] = {.lex_state = 1028}, - [4056] = {.lex_state = 1023}, - [4057] = {.lex_state = 1025}, - [4058] = {.lex_state = 1023}, - [4059] = {.lex_state = 1002}, - [4060] = {.lex_state = 934}, - [4061] = {.lex_state = 934}, - [4062] = {.lex_state = 1002}, - [4063] = {.lex_state = 1023}, - [4064] = {.lex_state = 934}, - [4065] = {.lex_state = 934}, - [4066] = {.lex_state = 60}, - [4067] = {.lex_state = 1057}, - [4068] = {.lex_state = 936}, - [4069] = {.lex_state = 60}, - [4070] = {.lex_state = 1023}, - [4071] = {.lex_state = 1025}, - [4072] = {.lex_state = 1025}, - [4073] = {.lex_state = 997}, - [4074] = {.lex_state = 1030}, - [4075] = {.lex_state = 934}, - [4076] = {.lex_state = 997}, - [4077] = {.lex_state = 1030}, - [4078] = {.lex_state = 44}, - [4079] = {.lex_state = 44}, - [4080] = {.lex_state = 934}, - [4081] = {.lex_state = 934}, - [4082] = {.lex_state = 1028}, - [4083] = {.lex_state = 1030}, - [4084] = {.lex_state = 1057}, - [4085] = {.lex_state = 1025}, - [4086] = {.lex_state = 1025}, - [4087] = {.lex_state = 1023}, - [4088] = {.lex_state = 934}, - [4089] = {.lex_state = 936}, - [4090] = {.lex_state = 934}, - [4091] = {.lex_state = 936}, - [4092] = {.lex_state = 936}, - [4093] = {.lex_state = 1030}, - [4094] = {.lex_state = 934}, - [4095] = {.lex_state = 934}, - [4096] = {.lex_state = 1002}, - [4097] = {.lex_state = 934}, - [4098] = {.lex_state = 1057}, - [4099] = {.lex_state = 1057}, - [4100] = {.lex_state = 1057}, - [4101] = {.lex_state = 934}, - [4102] = {.lex_state = 934}, - [4103] = {.lex_state = 934}, - [4104] = {.lex_state = 934}, - [4105] = {.lex_state = 934}, - [4106] = {.lex_state = 1025}, - [4107] = {.lex_state = 934}, - [4108] = {.lex_state = 934}, - [4109] = {.lex_state = 1030}, - [4110] = {.lex_state = 934}, - [4111] = {.lex_state = 934}, - [4112] = {.lex_state = 934}, - [4113] = {.lex_state = 934}, - [4114] = {.lex_state = 934}, - [4115] = {.lex_state = 934}, - [4116] = {.lex_state = 934}, - [4117] = {.lex_state = 934}, - [4118] = {.lex_state = 934}, - [4119] = {.lex_state = 936}, - [4120] = {.lex_state = 934}, - [4121] = {.lex_state = 934}, - [4122] = {.lex_state = 934}, - [4123] = {.lex_state = 934}, - [4124] = {.lex_state = 1025}, - [4125] = {.lex_state = 934}, - [4126] = {.lex_state = 934}, - [4127] = {.lex_state = 934}, - [4128] = {.lex_state = 934}, - [4129] = {.lex_state = 1025}, - [4130] = {.lex_state = 934}, - [4131] = {.lex_state = 1025}, - [4132] = {.lex_state = 1027}, - [4133] = {.lex_state = 934}, - [4134] = {.lex_state = 1030}, - [4135] = {.lex_state = 1030}, - [4136] = {.lex_state = 1025}, - [4137] = {.lex_state = 936}, - [4138] = {.lex_state = 936}, - [4139] = {.lex_state = 936}, - [4140] = {.lex_state = 936}, - [4141] = {.lex_state = 1030}, - [4142] = {.lex_state = 1025}, - [4143] = {.lex_state = 1025}, - [4144] = {.lex_state = 1030}, - [4145] = {.lex_state = 1025}, - [4146] = {.lex_state = 1025}, - [4147] = {.lex_state = 1025}, - [4148] = {.lex_state = 1025}, - [4149] = {.lex_state = 1025}, - [4150] = {.lex_state = 1025}, - [4151] = {.lex_state = 1025}, - [4152] = {.lex_state = 1025}, - [4153] = {.lex_state = 1025}, - [4154] = {.lex_state = 1025}, - [4155] = {.lex_state = 934}, - [4156] = {.lex_state = 934}, - [4157] = {.lex_state = 1025}, - [4158] = {.lex_state = 1025}, - [4159] = {.lex_state = 934}, - [4160] = {.lex_state = 934}, - [4161] = {.lex_state = 1025}, - [4162] = {.lex_state = 1025}, - [4163] = {.lex_state = 934}, - [4164] = {.lex_state = 1002}, - [4165] = {.lex_state = 1025}, - [4166] = {.lex_state = 1030}, - [4167] = {.lex_state = 1025}, - [4168] = {.lex_state = 1002}, - [4169] = {.lex_state = 1057}, - [4170] = {.lex_state = 1030}, - [4171] = {.lex_state = 1030}, - [4172] = {.lex_state = 1025}, - [4173] = {.lex_state = 934}, - [4174] = {.lex_state = 1002}, - [4175] = {.lex_state = 1025}, - [4176] = {.lex_state = 1025}, - [4177] = {.lex_state = 1030}, - [4178] = {.lex_state = 1025}, - [4179] = {.lex_state = 44}, - [4180] = {.lex_state = 44}, - [4181] = {.lex_state = 44}, - [4182] = {.lex_state = 44}, - [4183] = {.lex_state = 44}, - [4184] = {.lex_state = 1030}, - [4185] = {.lex_state = 1025}, - [4186] = {.lex_state = 1030}, - [4187] = {.lex_state = 1057}, - [4188] = {.lex_state = 1030}, - [4189] = {.lex_state = 1025}, - [4190] = {.lex_state = 1057}, - [4191] = {.lex_state = 934}, - [4192] = {.lex_state = 1030}, - [4193] = {.lex_state = 1057}, - [4194] = {.lex_state = 1025}, - [4195] = {.lex_state = 1002}, - [4196] = {.lex_state = 61}, - [4197] = {.lex_state = 934}, - [4198] = {.lex_state = 1025}, - [4199] = {.lex_state = 1025}, - [4200] = {.lex_state = 44}, - [4201] = {.lex_state = 1057}, - [4202] = {.lex_state = 1025}, - [4203] = {.lex_state = 934}, - [4204] = {.lex_state = 1002}, - [4205] = {.lex_state = 44}, - [4206] = {.lex_state = 44}, - [4207] = {.lex_state = 1025}, - [4208] = {.lex_state = 1025}, - [4209] = {.lex_state = 934}, - [4210] = {.lex_state = 1025}, - [4211] = {.lex_state = 1002}, - [4212] = {.lex_state = 1027}, - [4213] = {.lex_state = 1025}, - [4214] = {.lex_state = 1025}, - [4215] = {.lex_state = 1025}, - [4216] = {.lex_state = 1025}, - [4217] = {.lex_state = 1030}, - [4218] = {.lex_state = 61}, - [4219] = {.lex_state = 1025}, - [4220] = {.lex_state = 1025}, - [4221] = {.lex_state = 1025}, - [4222] = {.lex_state = 1025}, - [4223] = {.lex_state = 1002}, - [4224] = {.lex_state = 44}, - [4225] = {.lex_state = 1029}, - [4226] = {.lex_state = 1025}, - [4227] = {.lex_state = 61}, - [4228] = {.lex_state = 1002}, - [4229] = {.lex_state = 1029}, - [4230] = {.lex_state = 1002}, - [4231] = {.lex_state = 1002}, - [4232] = {.lex_state = 1025}, - [4233] = {.lex_state = 1025}, - [4234] = {.lex_state = 1025}, - [4235] = {.lex_state = 1025}, - [4236] = {.lex_state = 1030}, - [4237] = {.lex_state = 1025}, - [4238] = {.lex_state = 1025}, - [4239] = {.lex_state = 61}, - [4240] = {.lex_state = 934}, - [4241] = {.lex_state = 934}, - [4242] = {.lex_state = 44}, - [4243] = {.lex_state = 61}, - [4244] = {.lex_state = 1025}, - [4245] = {.lex_state = 934}, - [4246] = {.lex_state = 934}, - [4247] = {.lex_state = 1025}, - [4248] = {.lex_state = 1002}, - [4249] = {.lex_state = 1002}, - [4250] = {.lex_state = 1025}, - [4251] = {.lex_state = 61}, - [4252] = {.lex_state = 1002}, - [4253] = {.lex_state = 1002}, - [4254] = {.lex_state = 68}, - [4255] = {.lex_state = 958}, - [4256] = {.lex_state = 994}, - [4257] = {.lex_state = 958}, - [4258] = {.lex_state = 68}, - [4259] = {.lex_state = 958}, - [4260] = {.lex_state = 958}, - [4261] = {.lex_state = 958}, - [4262] = {.lex_state = 68}, - [4263] = {.lex_state = 958}, - [4264] = {.lex_state = 958}, - [4265] = {.lex_state = 958}, - [4266] = {.lex_state = 958}, - [4267] = {.lex_state = 958}, - [4268] = {.lex_state = 68}, - [4269] = {.lex_state = 958}, - [4270] = {.lex_state = 958}, - [4271] = {.lex_state = 994}, - [4272] = {.lex_state = 958}, - [4273] = {.lex_state = 958}, - [4274] = {.lex_state = 958}, - [4275] = {.lex_state = 958}, - [4276] = {.lex_state = 1002}, - [4277] = {.lex_state = 1002}, - [4278] = {.lex_state = 958}, - [4279] = {.lex_state = 1050}, - [4280] = {.lex_state = 1050}, - [4281] = {.lex_state = 1029}, - [4282] = {.lex_state = 958}, - [4283] = {.lex_state = 958}, - [4284] = {.lex_state = 958}, - [4285] = {.lex_state = 958}, - [4286] = {.lex_state = 958}, - [4287] = {.lex_state = 958}, - [4288] = {.lex_state = 958}, - [4289] = {.lex_state = 958}, - [4290] = {.lex_state = 994}, - [4291] = {.lex_state = 68}, - [4292] = {.lex_state = 1031}, - [4293] = {.lex_state = 958}, - [4294] = {.lex_state = 1030}, - [4295] = {.lex_state = 958}, - [4296] = {.lex_state = 1025}, - [4297] = {.lex_state = 958}, - [4298] = {.lex_state = 958}, - [4299] = {.lex_state = 958}, - [4300] = {.lex_state = 958}, - [4301] = {.lex_state = 958}, - [4302] = {.lex_state = 958}, - [4303] = {.lex_state = 958}, - [4304] = {.lex_state = 958}, - [4305] = {.lex_state = 958}, - [4306] = {.lex_state = 65}, - [4307] = {.lex_state = 958}, - [4308] = {.lex_state = 958}, - [4309] = {.lex_state = 958}, - [4310] = {.lex_state = 958}, - [4311] = {.lex_state = 958}, - [4312] = {.lex_state = 958}, - [4313] = {.lex_state = 1031}, - [4314] = {.lex_state = 958}, - [4315] = {.lex_state = 958}, - [4316] = {.lex_state = 1002}, - [4317] = {.lex_state = 958}, - [4318] = {.lex_state = 958}, - [4319] = {.lex_state = 958}, - [4320] = {.lex_state = 958}, - [4321] = {.lex_state = 1050}, - [4322] = {.lex_state = 958}, - [4323] = {.lex_state = 68}, - [4324] = {.lex_state = 1025}, - [4325] = {.lex_state = 994}, - [4326] = {.lex_state = 1002}, - [4327] = {.lex_state = 934}, - [4328] = {.lex_state = 68}, - [4329] = {.lex_state = 958}, - [4330] = {.lex_state = 958}, - [4331] = {.lex_state = 958}, - [4332] = {.lex_state = 958}, - [4333] = {.lex_state = 1002}, - [4334] = {.lex_state = 958}, - [4335] = {.lex_state = 958}, - [4336] = {.lex_state = 958}, - [4337] = {.lex_state = 958}, - [4338] = {.lex_state = 958}, - [4339] = {.lex_state = 958}, - [4340] = {.lex_state = 958}, - [4341] = {.lex_state = 958}, - [4342] = {.lex_state = 958}, - [4343] = {.lex_state = 958}, - [4344] = {.lex_state = 958}, - [4345] = {.lex_state = 958}, - [4346] = {.lex_state = 62}, - [4347] = {.lex_state = 68}, - [4348] = {.lex_state = 1025}, - [4349] = {.lex_state = 1050}, - [4350] = {.lex_state = 958}, - [4351] = {.lex_state = 958}, - [4352] = {.lex_state = 958}, - [4353] = {.lex_state = 958}, - [4354] = {.lex_state = 958}, - [4355] = {.lex_state = 958}, - [4356] = {.lex_state = 958}, - [4357] = {.lex_state = 958}, - [4358] = {.lex_state = 68}, - [4359] = {.lex_state = 958}, - [4360] = {.lex_state = 958}, - [4361] = {.lex_state = 68}, - [4362] = {.lex_state = 68}, - [4363] = {.lex_state = 958}, - [4364] = {.lex_state = 958}, - [4365] = {.lex_state = 68}, - [4366] = {.lex_state = 958}, - [4367] = {.lex_state = 958}, - [4368] = {.lex_state = 958}, - [4369] = {.lex_state = 958}, - [4370] = {.lex_state = 958}, - [4371] = {.lex_state = 958}, - [4372] = {.lex_state = 68}, - [4373] = {.lex_state = 958}, - [4374] = {.lex_state = 958}, - [4375] = {.lex_state = 958}, - [4376] = {.lex_state = 958}, - [4377] = {.lex_state = 1059}, - [4378] = {.lex_state = 1002}, - [4379] = {.lex_state = 1051}, - [4380] = {.lex_state = 1059}, - [4381] = {.lex_state = 44}, - [4382] = {.lex_state = 1059}, - [4383] = {.lex_state = 44}, - [4384] = {.lex_state = 997}, - [4385] = {.lex_state = 1050}, - [4386] = {.lex_state = 1031}, - [4387] = {.lex_state = 958}, - [4388] = {.lex_state = 958}, - [4389] = {.lex_state = 1031}, - [4390] = {.lex_state = 1002}, - [4391] = {.lex_state = 934}, - [4392] = {.lex_state = 958}, - [4393] = {.lex_state = 958}, - [4394] = {.lex_state = 958}, - [4395] = {.lex_state = 958}, - [4396] = {.lex_state = 1059}, - [4397] = {.lex_state = 958}, - [4398] = {.lex_state = 1031}, - [4399] = {.lex_state = 68}, - [4400] = {.lex_state = 68}, - [4401] = {.lex_state = 44}, - [4402] = {.lex_state = 44}, - [4403] = {.lex_state = 44}, - [4404] = {.lex_state = 958}, - [4405] = {.lex_state = 1002}, - [4406] = {.lex_state = 68}, - [4407] = {.lex_state = 958}, - [4408] = {.lex_state = 958}, - [4409] = {.lex_state = 1031}, - [4410] = {.lex_state = 958}, - [4411] = {.lex_state = 1031}, - [4412] = {.lex_state = 1059}, - [4413] = {.lex_state = 68}, - [4414] = {.lex_state = 1002}, - [4415] = {.lex_state = 958}, - [4416] = {.lex_state = 1002}, - [4417] = {.lex_state = 1002}, - [4418] = {.lex_state = 958}, - [4419] = {.lex_state = 68}, - [4420] = {.lex_state = 958}, - [4421] = {.lex_state = 958}, - [4422] = {.lex_state = 958}, - [4423] = {.lex_state = 1031}, - [4424] = {.lex_state = 1031}, - [4425] = {.lex_state = 68}, - [4426] = {.lex_state = 958}, - [4427] = {.lex_state = 958}, - [4428] = {.lex_state = 958}, - [4429] = {.lex_state = 68}, - [4430] = {.lex_state = 958}, - [4431] = {.lex_state = 68}, - [4432] = {.lex_state = 958}, - [4433] = {.lex_state = 958}, - [4434] = {.lex_state = 958}, - [4435] = {.lex_state = 44}, - [4436] = {.lex_state = 958}, - [4437] = {.lex_state = 1029}, - [4438] = {.lex_state = 44}, - [4439] = {.lex_state = 934}, - [4440] = {.lex_state = 958}, - [4441] = {.lex_state = 958}, - [4442] = {.lex_state = 68}, - [4443] = {.lex_state = 958}, - [4444] = {.lex_state = 958}, - [4445] = {.lex_state = 958}, - [4446] = {.lex_state = 958}, - [4447] = {.lex_state = 958}, - [4448] = {.lex_state = 934}, - [4449] = {.lex_state = 958}, - [4450] = {.lex_state = 958}, - [4451] = {.lex_state = 68}, - [4452] = {.lex_state = 958}, - [4453] = {.lex_state = 958}, - [4454] = {.lex_state = 958}, - [4455] = {.lex_state = 958}, - [4456] = {.lex_state = 994}, - [4457] = {.lex_state = 958}, - [4458] = {.lex_state = 958}, - [4459] = {.lex_state = 958}, - [4460] = {.lex_state = 958}, - [4461] = {.lex_state = 958}, - [4462] = {.lex_state = 1050}, - [4463] = {.lex_state = 44}, - [4464] = {.lex_state = 958}, - [4465] = {.lex_state = 994}, - [4466] = {.lex_state = 44}, - [4467] = {.lex_state = 44}, - [4468] = {.lex_state = 44}, - [4469] = {.lex_state = 1031}, - [4470] = {.lex_state = 1031}, - [4471] = {.lex_state = 1032}, - [4472] = {.lex_state = 1051}, - [4473] = {.lex_state = 958}, - [4474] = {.lex_state = 44}, - [4475] = {.lex_state = 1031}, - [4476] = {.lex_state = 958}, - [4477] = {.lex_state = 44}, - [4478] = {.lex_state = 1025}, - [4479] = {.lex_state = 960}, - [4480] = {.lex_state = 958}, - [4481] = {.lex_state = 63}, - [4482] = {.lex_state = 958}, - [4483] = {.lex_state = 958}, - [4484] = {.lex_state = 958}, - [4485] = {.lex_state = 1025}, - [4486] = {.lex_state = 1025}, - [4487] = {.lex_state = 958}, - [4488] = {.lex_state = 960}, - [4489] = {.lex_state = 368}, - [4490] = {.lex_state = 958}, - [4491] = {.lex_state = 1031}, - [4492] = {.lex_state = 1031}, - [4493] = {.lex_state = 958}, - [4494] = {.lex_state = 958}, - [4495] = {.lex_state = 958}, - [4496] = {.lex_state = 958}, - [4497] = {.lex_state = 958}, - [4498] = {.lex_state = 1031}, - [4499] = {.lex_state = 1050}, - [4500] = {.lex_state = 994}, - [4501] = {.lex_state = 994}, - [4502] = {.lex_state = 958}, - [4503] = {.lex_state = 44}, - [4504] = {.lex_state = 44}, - [4505] = {.lex_state = 63}, - [4506] = {.lex_state = 994}, - [4507] = {.lex_state = 994}, - [4508] = {.lex_state = 368}, - [4509] = {.lex_state = 958}, - [4510] = {.lex_state = 958}, - [4511] = {.lex_state = 958}, - [4512] = {.lex_state = 958}, - [4513] = {.lex_state = 958}, - [4514] = {.lex_state = 958}, - [4515] = {.lex_state = 958}, - [4516] = {.lex_state = 1059}, - [4517] = {.lex_state = 960}, - [4518] = {.lex_state = 44}, - [4519] = {.lex_state = 44}, - [4520] = {.lex_state = 1031}, - [4521] = {.lex_state = 368}, - [4522] = {.lex_state = 958}, - [4523] = {.lex_state = 958}, - [4524] = {.lex_state = 958}, - [4525] = {.lex_state = 958}, - [4526] = {.lex_state = 966}, - [4527] = {.lex_state = 934}, - [4528] = {.lex_state = 1050}, - [4529] = {.lex_state = 958}, - [4530] = {.lex_state = 1050}, - [4531] = {.lex_state = 44}, - [4532] = {.lex_state = 958}, - [4533] = {.lex_state = 994}, - [4534] = {.lex_state = 994}, - [4535] = {.lex_state = 1050}, - [4536] = {.lex_state = 958}, - [4537] = {.lex_state = 958}, - [4538] = {.lex_state = 44}, - [4539] = {.lex_state = 110}, - [4540] = {.lex_state = 960}, - [4541] = {.lex_state = 934}, - [4542] = {.lex_state = 44}, - [4543] = {.lex_state = 1031}, - [4544] = {.lex_state = 1025}, - [4545] = {.lex_state = 958}, - [4546] = {.lex_state = 958}, - [4547] = {.lex_state = 44}, - [4548] = {.lex_state = 44}, - [4549] = {.lex_state = 44}, - [4550] = {.lex_state = 958}, - [4551] = {.lex_state = 44}, - [4552] = {.lex_state = 958}, - [4553] = {.lex_state = 44}, - [4554] = {.lex_state = 68}, - [4555] = {.lex_state = 1031}, - [4556] = {.lex_state = 958}, - [4557] = {.lex_state = 68}, - [4558] = {.lex_state = 960}, - [4559] = {.lex_state = 44}, - [4560] = {.lex_state = 958}, - [4561] = {.lex_state = 966}, - [4562] = {.lex_state = 1059}, - [4563] = {.lex_state = 1059}, - [4564] = {.lex_state = 997}, - [4565] = {.lex_state = 1033}, - [4566] = {.lex_state = 958}, - [4567] = {.lex_state = 110}, - [4568] = {.lex_state = 994}, - [4569] = {.lex_state = 44}, - [4570] = {.lex_state = 934}, - [4571] = {.lex_state = 958}, - [4572] = {.lex_state = 368}, - [4573] = {.lex_state = 1031}, - [4574] = {.lex_state = 997}, - [4575] = {.lex_state = 997}, - [4576] = {.lex_state = 44}, - [4577] = {.lex_state = 44}, - [4578] = {.lex_state = 958}, - [4579] = {.lex_state = 44}, - [4580] = {.lex_state = 1059}, - [4581] = {.lex_state = 1059}, - [4582] = {.lex_state = 44}, - [4583] = {.lex_state = 958}, - [4584] = {.lex_state = 958}, - [4585] = {.lex_state = 958}, - [4586] = {.lex_state = 960}, - [4587] = {.lex_state = 958}, - [4588] = {.lex_state = 61}, - [4589] = {.lex_state = 966}, - [4590] = {.lex_state = 68}, - [4591] = {.lex_state = 61}, - [4592] = {.lex_state = 44}, - [4593] = {.lex_state = 960}, - [4594] = {.lex_state = 64}, - [4595] = {.lex_state = 958}, - [4596] = {.lex_state = 64}, - [4597] = {.lex_state = 1034}, - [4598] = {.lex_state = 44}, - [4599] = {.lex_state = 44}, - [4600] = {.lex_state = 64}, - [4601] = {.lex_state = 960}, - [4602] = {.lex_state = 44}, - [4603] = {.lex_state = 61}, - [4604] = {.lex_state = 64}, - [4605] = {.lex_state = 994}, - [4606] = {.lex_state = 958}, - [4607] = {.lex_state = 960}, - [4608] = {.lex_state = 1025}, - [4609] = {.lex_state = 958}, - [4610] = {.lex_state = 374}, - [4611] = {.lex_state = 960}, - [4612] = {.lex_state = 958}, - [4613] = {.lex_state = 958}, - [4614] = {.lex_state = 960}, - [4615] = {.lex_state = 64}, - [4616] = {.lex_state = 958}, - [4617] = {.lex_state = 64}, - [4618] = {.lex_state = 960}, - [4619] = {.lex_state = 960}, - [4620] = {.lex_state = 960}, - [4621] = {.lex_state = 960}, - [4622] = {.lex_state = 90}, - [4623] = {.lex_state = 64}, - [4624] = {.lex_state = 49}, - [4625] = {.lex_state = 90}, - [4626] = {.lex_state = 65}, - [4627] = {.lex_state = 960}, - [4628] = {.lex_state = 64}, - [4629] = {.lex_state = 110}, - [4630] = {.lex_state = 960}, - [4631] = {.lex_state = 960}, - [4632] = {.lex_state = 90}, - [4633] = {.lex_state = 960}, - [4634] = {.lex_state = 960}, - [4635] = {.lex_state = 966}, - [4636] = {.lex_state = 958}, - [4637] = {.lex_state = 960}, - [4638] = {.lex_state = 960}, - [4639] = {.lex_state = 960}, - [4640] = {.lex_state = 934}, - [4641] = {.lex_state = 960}, - [4642] = {.lex_state = 960}, - [4643] = {.lex_state = 960}, - [4644] = {.lex_state = 960}, - [4645] = {.lex_state = 960}, - [4646] = {.lex_state = 960}, - [4647] = {.lex_state = 958}, - [4648] = {.lex_state = 960}, - [4649] = {.lex_state = 960}, - [4650] = {.lex_state = 64}, - [4651] = {.lex_state = 960}, - [4652] = {.lex_state = 958}, - [4653] = {.lex_state = 960}, - [4654] = {.lex_state = 49}, - [4655] = {.lex_state = 960}, - [4656] = {.lex_state = 960}, - [4657] = {.lex_state = 934}, - [4658] = {.lex_state = 960}, - [4659] = {.lex_state = 44}, - [4660] = {.lex_state = 960}, - [4661] = {.lex_state = 958}, - [4662] = {.lex_state = 960}, - [4663] = {.lex_state = 960}, - [4664] = {.lex_state = 44}, - [4665] = {.lex_state = 960}, - [4666] = {.lex_state = 960}, - [4667] = {.lex_state = 61}, - [4668] = {.lex_state = 960}, - [4669] = {.lex_state = 960}, - [4670] = {.lex_state = 110}, - [4671] = {.lex_state = 960}, - [4672] = {.lex_state = 960}, - [4673] = {.lex_state = 960}, - [4674] = {.lex_state = 1025}, - [4675] = {.lex_state = 1025}, - [4676] = {.lex_state = 960}, - [4677] = {.lex_state = 68}, - [4678] = {.lex_state = 68}, - [4679] = {.lex_state = 966}, - [4680] = {.lex_state = 960}, - [4681] = {.lex_state = 960}, - [4682] = {.lex_state = 958}, - [4683] = {.lex_state = 960}, - [4684] = {.lex_state = 61}, - [4685] = {.lex_state = 934}, - [4686] = {.lex_state = 68}, - [4687] = {.lex_state = 960}, - [4688] = {.lex_state = 960}, - [4689] = {.lex_state = 994}, - [4690] = {.lex_state = 68}, - [4691] = {.lex_state = 966}, - [4692] = {.lex_state = 960}, - [4693] = {.lex_state = 61}, - [4694] = {.lex_state = 958}, - [4695] = {.lex_state = 90}, - [4696] = {.lex_state = 960}, - [4697] = {.lex_state = 90}, - [4698] = {.lex_state = 960}, - [4699] = {.lex_state = 934}, - [4700] = {.lex_state = 1031}, - [4701] = {.lex_state = 960}, - [4702] = {.lex_state = 958}, - [4703] = {.lex_state = 44}, - [4704] = {.lex_state = 49}, - [4705] = {.lex_state = 960}, - [4706] = {.lex_state = 958}, - [4707] = {.lex_state = 997}, - [4708] = {.lex_state = 994}, - [4709] = {.lex_state = 960}, - [4710] = {.lex_state = 960}, - [4711] = {.lex_state = 960}, - [4712] = {.lex_state = 958}, - [4713] = {.lex_state = 960}, - [4714] = {.lex_state = 960}, - [4715] = {.lex_state = 960}, - [4716] = {.lex_state = 960}, - [4717] = {.lex_state = 960}, - [4718] = {.lex_state = 958}, - [4719] = {.lex_state = 960}, - [4720] = {.lex_state = 960}, - [4721] = {.lex_state = 110}, - [4722] = {.lex_state = 960}, - [4723] = {.lex_state = 958}, - [4724] = {.lex_state = 960}, - [4725] = {.lex_state = 960}, - [4726] = {.lex_state = 960}, - [4727] = {.lex_state = 960}, - [4728] = {.lex_state = 958}, - [4729] = {.lex_state = 960}, - [4730] = {.lex_state = 958}, - [4731] = {.lex_state = 958}, - [4732] = {.lex_state = 61}, - [4733] = {.lex_state = 1034}, - [4734] = {.lex_state = 960}, - [4735] = {.lex_state = 960}, - [4736] = {.lex_state = 1032}, - [4737] = {.lex_state = 960}, - [4738] = {.lex_state = 960}, - [4739] = {.lex_state = 997}, - [4740] = {.lex_state = 960}, - [4741] = {.lex_state = 960}, - [4742] = {.lex_state = 1033}, - [4743] = {.lex_state = 960}, - [4744] = {.lex_state = 960}, - [4745] = {.lex_state = 997}, - [4746] = {.lex_state = 960}, - [4747] = {.lex_state = 960}, - [4748] = {.lex_state = 960}, - [4749] = {.lex_state = 997}, - [4750] = {.lex_state = 960}, - [4751] = {.lex_state = 960}, - [4752] = {.lex_state = 960}, - [4753] = {.lex_state = 960}, - [4754] = {.lex_state = 960}, - [4755] = {.lex_state = 960}, - [4756] = {.lex_state = 958}, - [4757] = {.lex_state = 960}, - [4758] = {.lex_state = 44}, - [4759] = {.lex_state = 101}, - [4760] = {.lex_state = 960}, - [4761] = {.lex_state = 44}, - [4762] = {.lex_state = 61}, - [4763] = {.lex_state = 379}, - [4764] = {.lex_state = 960}, - [4765] = {.lex_state = 966}, - [4766] = {.lex_state = 371}, - [4767] = {.lex_state = 68}, - [4768] = {.lex_state = 960}, - [4769] = {.lex_state = 44}, - [4770] = {.lex_state = 44}, - [4771] = {.lex_state = 379}, - [4772] = {.lex_state = 44}, - [4773] = {.lex_state = 966}, - [4774] = {.lex_state = 960}, - [4775] = {.lex_state = 960}, - [4776] = {.lex_state = 960}, - [4777] = {.lex_state = 44}, - [4778] = {.lex_state = 960}, - [4779] = {.lex_state = 966}, - [4780] = {.lex_state = 966}, - [4781] = {.lex_state = 44}, - [4782] = {.lex_state = 960}, - [4783] = {.lex_state = 44}, - [4784] = {.lex_state = 44}, - [4785] = {.lex_state = 44}, - [4786] = {.lex_state = 44}, - [4787] = {.lex_state = 966}, - [4788] = {.lex_state = 960}, - [4789] = {.lex_state = 960}, - [4790] = {.lex_state = 960}, - [4791] = {.lex_state = 44}, - [4792] = {.lex_state = 44}, - [4793] = {.lex_state = 966}, - [4794] = {.lex_state = 960}, - [4795] = {.lex_state = 1035}, - [4796] = {.lex_state = 966}, - [4797] = {.lex_state = 44}, - [4798] = {.lex_state = 44}, - [4799] = {.lex_state = 966}, - [4800] = {.lex_state = 960}, - [4801] = {.lex_state = 68}, - [4802] = {.lex_state = 958}, - [4803] = {.lex_state = 44}, - [4804] = {.lex_state = 966}, - [4805] = {.lex_state = 960}, - [4806] = {.lex_state = 68}, - [4807] = {.lex_state = 44}, - [4808] = {.lex_state = 44}, - [4809] = {.lex_state = 960}, - [4810] = {.lex_state = 960}, - [4811] = {.lex_state = 960}, - [4812] = {.lex_state = 960}, - [4813] = {.lex_state = 960}, - [4814] = {.lex_state = 960}, - [4815] = {.lex_state = 960}, - [4816] = {.lex_state = 966}, - [4817] = {.lex_state = 44}, - [4818] = {.lex_state = 966}, - [4819] = {.lex_state = 960}, - [4820] = {.lex_state = 960}, - [4821] = {.lex_state = 960}, - [4822] = {.lex_state = 960}, - [4823] = {.lex_state = 44}, - [4824] = {.lex_state = 44}, - [4825] = {.lex_state = 44}, - [4826] = {.lex_state = 44}, - [4827] = {.lex_state = 44}, - [4828] = {.lex_state = 966}, - [4829] = {.lex_state = 960}, - [4830] = {.lex_state = 101}, - [4831] = {.lex_state = 101}, - [4832] = {.lex_state = 44}, - [4833] = {.lex_state = 343}, - [4834] = {.lex_state = 960}, - [4835] = {.lex_state = 960}, - [4836] = {.lex_state = 1035}, - [4837] = {.lex_state = 960}, - [4838] = {.lex_state = 960}, - [4839] = {.lex_state = 966}, - [4840] = {.lex_state = 960}, - [4841] = {.lex_state = 101}, - [4842] = {.lex_state = 960}, - [4843] = {.lex_state = 960}, - [4844] = {.lex_state = 370}, - [4845] = {.lex_state = 44}, - [4846] = {.lex_state = 960}, - [4847] = {.lex_state = 966}, - [4848] = {.lex_state = 1035}, - [4849] = {.lex_state = 960}, - [4850] = {.lex_state = 966}, - [4851] = {.lex_state = 44}, - [4852] = {.lex_state = 1035}, - [4853] = {.lex_state = 960}, - [4854] = {.lex_state = 1035}, - [4855] = {.lex_state = 966}, - [4856] = {.lex_state = 371}, - [4857] = {.lex_state = 960}, - [4858] = {.lex_state = 960}, - [4859] = {.lex_state = 966}, - [4860] = {.lex_state = 44}, - [4861] = {.lex_state = 44}, - [4862] = {.lex_state = 44}, - [4863] = {.lex_state = 966}, - [4864] = {.lex_state = 960}, - [4865] = {.lex_state = 960}, - [4866] = {.lex_state = 44}, - [4867] = {.lex_state = 960}, - [4868] = {.lex_state = 991}, - [4869] = {.lex_state = 44}, - [4870] = {.lex_state = 960}, - [4871] = {.lex_state = 958}, - [4872] = {.lex_state = 960}, - [4873] = {.lex_state = 960}, - [4874] = {.lex_state = 966}, - [4875] = {.lex_state = 370}, - [4876] = {.lex_state = 966}, - [4877] = {.lex_state = 966}, - [4878] = {.lex_state = 69}, - [4879] = {.lex_state = 44}, - [4880] = {.lex_state = 960}, - [4881] = {.lex_state = 960}, - [4882] = {.lex_state = 960}, - [4883] = {.lex_state = 960}, - [4884] = {.lex_state = 960}, - [4885] = {.lex_state = 44}, - [4886] = {.lex_state = 44}, - [4887] = {.lex_state = 64}, - [4888] = {.lex_state = 960}, - [4889] = {.lex_state = 44}, - [4890] = {.lex_state = 960}, - [4891] = {.lex_state = 966}, - [4892] = {.lex_state = 960}, - [4893] = {.lex_state = 960}, - [4894] = {.lex_state = 960}, - [4895] = {.lex_state = 44}, - [4896] = {.lex_state = 960}, - [4897] = {.lex_state = 380}, - [4898] = {.lex_state = 966}, - [4899] = {.lex_state = 960}, - [4900] = {.lex_state = 960}, - [4901] = {.lex_state = 960}, - [4902] = {.lex_state = 960}, - [4903] = {.lex_state = 966}, - [4904] = {.lex_state = 966}, - [4905] = {.lex_state = 44}, - [4906] = {.lex_state = 44}, - [4907] = {.lex_state = 44}, - [4908] = {.lex_state = 44}, - [4909] = {.lex_state = 44}, - [4910] = {.lex_state = 44}, - [4911] = {.lex_state = 44}, - [4912] = {.lex_state = 960}, - [4913] = {.lex_state = 960}, - [4914] = {.lex_state = 1034}, - [4915] = {.lex_state = 44}, - [4916] = {.lex_state = 966}, - [4917] = {.lex_state = 960}, - [4918] = {.lex_state = 960}, - [4919] = {.lex_state = 960}, - [4920] = {.lex_state = 960}, - [4921] = {.lex_state = 375}, - [4922] = {.lex_state = 960}, - [4923] = {.lex_state = 44}, - [4924] = {.lex_state = 44}, - [4925] = {.lex_state = 44}, - [4926] = {.lex_state = 44}, - [4927] = {.lex_state = 61}, - [4928] = {.lex_state = 960}, - [4929] = {.lex_state = 960}, - [4930] = {.lex_state = 966}, - [4931] = {.lex_state = 343}, - [4932] = {.lex_state = 1034}, - [4933] = {.lex_state = 960}, - [4934] = {.lex_state = 960}, - [4935] = {.lex_state = 960}, - [4936] = {.lex_state = 44}, - [4937] = {.lex_state = 960}, - [4938] = {.lex_state = 960}, - [4939] = {.lex_state = 966}, - [4940] = {.lex_state = 44}, - [4941] = {.lex_state = 44}, - [4942] = {.lex_state = 960}, - [4943] = {.lex_state = 960}, - [4944] = {.lex_state = 966}, - [4945] = {.lex_state = 960}, - [4946] = {.lex_state = 960}, - [4947] = {.lex_state = 44}, - [4948] = {.lex_state = 934}, - [4949] = {.lex_state = 966}, - [4950] = {.lex_state = 44}, - [4951] = {.lex_state = 44}, - [4952] = {.lex_state = 44}, - [4953] = {.lex_state = 44}, - [4954] = {.lex_state = 44}, - [4955] = {.lex_state = 44}, - [4956] = {.lex_state = 966}, - [4957] = {.lex_state = 966}, - [4958] = {.lex_state = 966}, - [4959] = {.lex_state = 966}, - [4960] = {.lex_state = 966}, - [4961] = {.lex_state = 966}, - [4962] = {.lex_state = 966}, - [4963] = {.lex_state = 966}, - [4964] = {.lex_state = 966}, - [4965] = {.lex_state = 966}, - [4966] = {.lex_state = 966}, - [4967] = {.lex_state = 377}, - [4968] = {.lex_state = 966}, - [4969] = {.lex_state = 966}, - [4970] = {.lex_state = 966}, - [4971] = {.lex_state = 966}, - [4972] = {.lex_state = 966}, - [4973] = {.lex_state = 966}, - [4974] = {.lex_state = 418}, - [4975] = {.lex_state = 966}, - [4976] = {.lex_state = 966}, - [4977] = {.lex_state = 966}, - [4978] = {.lex_state = 966}, - [4979] = {.lex_state = 437}, - [4980] = {.lex_state = 379}, - [4981] = {.lex_state = 44}, - [4982] = {.lex_state = 372}, - [4983] = {.lex_state = 966}, - [4984] = {.lex_state = 966}, - [4985] = {.lex_state = 966}, - [4986] = {.lex_state = 966}, - [4987] = {.lex_state = 966}, - [4988] = {.lex_state = 966}, - [4989] = {.lex_state = 966}, - [4990] = {.lex_state = 966}, - [4991] = {.lex_state = 966}, - [4992] = {.lex_state = 966}, - [4993] = {.lex_state = 966}, - [4994] = {.lex_state = 966}, - [4995] = {.lex_state = 966}, - [4996] = {.lex_state = 966}, - [4997] = {.lex_state = 1035}, - [4998] = {.lex_state = 372}, - [4999] = {.lex_state = 966}, - [5000] = {.lex_state = 1035}, - [5001] = {.lex_state = 966}, - [5002] = {.lex_state = 966}, - [5003] = {.lex_state = 966}, - [5004] = {.lex_state = 1035}, - [5005] = {.lex_state = 966}, - [5006] = {.lex_state = 966}, - [5007] = {.lex_state = 966}, - [5008] = {.lex_state = 966}, - [5009] = {.lex_state = 1035}, - [5010] = {.lex_state = 966}, - [5011] = {.lex_state = 966}, - [5012] = {.lex_state = 966}, - [5013] = {.lex_state = 966}, - [5014] = {.lex_state = 966}, - [5015] = {.lex_state = 966}, - [5016] = {.lex_state = 966}, - [5017] = {.lex_state = 966}, - [5018] = {.lex_state = 966}, - [5019] = {.lex_state = 966}, - [5020] = {.lex_state = 966}, - [5021] = {.lex_state = 934}, - [5022] = {.lex_state = 370}, - [5023] = {.lex_state = 378}, - [5024] = {.lex_state = 377}, - [5025] = {.lex_state = 934}, - [5026] = {.lex_state = 934}, - [5027] = {.lex_state = 934}, - [5028] = {.lex_state = 370}, - [5029] = {.lex_state = 378}, - [5030] = {.lex_state = 379}, - [5031] = {.lex_state = 966}, - [5032] = {.lex_state = 966}, - [5033] = {.lex_state = 4455}, - [5034] = {.lex_state = 966}, - [5035] = {.lex_state = 966}, - [5036] = {.lex_state = 4455}, - [5037] = {.lex_state = 966}, - [5038] = {.lex_state = 44}, - [5039] = {.lex_state = 44}, - [5040] = {.lex_state = 4455}, - [5041] = {.lex_state = 966}, - [5042] = {.lex_state = 44}, - [5043] = {.lex_state = 44}, - [5044] = {.lex_state = 4455}, - [5045] = {.lex_state = 370}, - [5046] = {.lex_state = 370}, - [5047] = {.lex_state = 370}, - [5048] = {.lex_state = 370}, - [5049] = {.lex_state = 966}, - [5050] = {.lex_state = 966}, - [5051] = {.lex_state = 44}, - [5052] = {.lex_state = 966}, - [5053] = {.lex_state = 966}, - [5054] = {.lex_state = 966}, - [5055] = {.lex_state = 966}, - [5056] = {.lex_state = 966}, - [5057] = {.lex_state = 383}, - [5058] = {.lex_state = 376}, - [5059] = {.lex_state = 44}, - [5060] = {.lex_state = 44}, - [5061] = {.lex_state = 44}, - [5062] = {.lex_state = 44}, - [5063] = {.lex_state = 385}, - [5064] = {.lex_state = 966}, - [5065] = {.lex_state = 44}, - [5066] = {.lex_state = 44}, - [5067] = {.lex_state = 44}, - [5068] = {.lex_state = 966}, - [5069] = {.lex_state = 379}, - [5070] = {.lex_state = 379}, - [5071] = {.lex_state = 379}, - [5072] = {.lex_state = 44}, - [5073] = {.lex_state = 44}, - [5074] = {.lex_state = 44}, - [5075] = {.lex_state = 44}, - [5076] = {.lex_state = 44}, - [5077] = {.lex_state = 44}, - [5078] = {.lex_state = 44}, - [5079] = {.lex_state = 44}, - [5080] = {.lex_state = 44}, - [5081] = {.lex_state = 966}, - [5082] = {.lex_state = 44}, - [5083] = {.lex_state = 44}, - [5084] = {.lex_state = 966}, - [5085] = {.lex_state = 44}, - [5086] = {.lex_state = 44}, - [5087] = {.lex_state = 44}, - [5088] = {.lex_state = 44}, - [5089] = {.lex_state = 44}, - [5090] = {.lex_state = 44}, - [5091] = {.lex_state = 44}, - [5092] = {.lex_state = 44}, - [5093] = {.lex_state = 934}, - [5094] = {.lex_state = 966}, - [5095] = {.lex_state = 934}, - [5096] = {.lex_state = 966}, - [5097] = {.lex_state = 934}, - [5098] = {.lex_state = 384}, - [5099] = {.lex_state = 934}, - [5100] = {.lex_state = 389}, - [5101] = {.lex_state = 121}, - [5102] = {.lex_state = 991}, - [5103] = {.lex_state = 121}, - [5104] = {.lex_state = 121}, - [5105] = {.lex_state = 121}, - [5106] = {.lex_state = 934}, - [5107] = {.lex_state = 991}, - [5108] = {.lex_state = 966}, - [5109] = {.lex_state = 966}, - [5110] = {.lex_state = 4455}, - [5111] = {.lex_state = 1035}, - [5112] = {.lex_state = 966}, - [5113] = {.lex_state = 373}, - [5114] = {.lex_state = 934}, - [5115] = {.lex_state = 44}, - [5116] = {.lex_state = 44}, - [5117] = {.lex_state = 44}, - [5118] = {.lex_state = 44}, - [5119] = {.lex_state = 343}, - [5120] = {.lex_state = 381}, - [5121] = {.lex_state = 357}, - [5122] = {.lex_state = 357}, - [5123] = {.lex_state = 381}, - [5124] = {.lex_state = 386}, - [5125] = {.lex_state = 379}, - [5126] = {.lex_state = 934}, - [5127] = {.lex_state = 934}, - [5128] = {.lex_state = 373}, - [5129] = {.lex_state = 934}, - [5130] = {.lex_state = 386}, - [5131] = {.lex_state = 438}, - [5132] = {.lex_state = 44}, - [5133] = {.lex_state = 463}, - [5134] = {.lex_state = 460}, - [5135] = {.lex_state = 991}, - [5136] = {.lex_state = 438}, - [5137] = {.lex_state = 381}, - [5138] = {.lex_state = 379}, - [5139] = {.lex_state = 453}, - [5140] = {.lex_state = 934}, - [5141] = {.lex_state = 419}, - [5142] = {.lex_state = 381}, - [5143] = {.lex_state = 431}, - [5144] = {.lex_state = 44}, - [5145] = {.lex_state = 44}, - [5146] = {.lex_state = 381}, - [5147] = {.lex_state = 343}, - [5148] = {.lex_state = 390}, - [5149] = {.lex_state = 991}, - [5150] = {.lex_state = 455}, - [5151] = {.lex_state = 390}, - [5152] = {.lex_state = 463}, - [5153] = {.lex_state = 463}, - [5154] = {.lex_state = 381}, - [5155] = {.lex_state = 381}, - [5156] = {.lex_state = 991}, - [5157] = {.lex_state = 991}, - [5158] = {.lex_state = 991}, - [5159] = {.lex_state = 991}, - [5160] = {.lex_state = 991}, - [5161] = {.lex_state = 991}, - [5162] = {.lex_state = 991}, - [5163] = {.lex_state = 465}, - [5164] = {.lex_state = 388}, - [5165] = {.lex_state = 121}, - [5166] = {.lex_state = 4454}, - [5167] = {.lex_state = 4036}, - [5168] = {.lex_state = 4036}, - [5169] = {.lex_state = 4036}, - [5170] = {.lex_state = 4036}, - [5171] = {.lex_state = 4036}, - [5172] = {.lex_state = 4036}, - [5173] = {.lex_state = 439}, - [5174] = {.lex_state = 439}, - [5175] = {.lex_state = 463}, - [5176] = {.lex_state = 121}, - [5177] = {.lex_state = 121}, - [5178] = {.lex_state = 4634}, - [5179] = {.lex_state = 4634}, - [5180] = {.lex_state = 121}, - [5181] = {.lex_state = 387}, - [5182] = {.lex_state = 934}, - [5183] = {.lex_state = 4634}, - [5184] = {.lex_state = 4634}, - [5185] = {.lex_state = 82}, - [5186] = {.lex_state = 343}, - [5187] = {.lex_state = 4454}, - [5188] = {.lex_state = 387}, - [5189] = {.lex_state = 463}, - [5190] = {.lex_state = 387}, - [5191] = {.lex_state = 439}, - [5192] = {.lex_state = 387}, - [5193] = {.lex_state = 4454}, - [5194] = {.lex_state = 121}, - [5195] = {.lex_state = 387}, - [5196] = {.lex_state = 357}, - [5197] = {.lex_state = 439}, - [5198] = {.lex_state = 466}, - [5199] = {.lex_state = 4454}, - [5200] = {.lex_state = 121}, - [5201] = {.lex_state = 357}, - [5202] = {.lex_state = 466}, - [5203] = {.lex_state = 400}, - [5204] = {.lex_state = 4634}, - [5205] = {.lex_state = 4036}, - [5206] = {.lex_state = 4036}, - [5207] = {.lex_state = 4634}, - [5208] = {.lex_state = 357}, - [5209] = {.lex_state = 433}, - [5210] = {.lex_state = 420}, - [5211] = {.lex_state = 49}, - [5212] = {.lex_state = 463}, - [5213] = {.lex_state = 44}, - [5214] = {.lex_state = 44}, - [5215] = {.lex_state = 432}, - [5216] = {.lex_state = 934}, - [5217] = {.lex_state = 357}, - [5218] = {.lex_state = 4036}, - [5219] = {.lex_state = 4036}, - [5220] = {.lex_state = 4036}, - [5221] = {.lex_state = 4036}, - [5222] = {.lex_state = 432}, - [5223] = {.lex_state = 44}, - [5224] = {.lex_state = 44}, - [5225] = {.lex_state = 463}, - [5226] = {.lex_state = 402}, - [5227] = {.lex_state = 388}, - [5228] = {.lex_state = 4454}, - [5229] = {.lex_state = 934}, - [5230] = {.lex_state = 934}, - [5231] = {.lex_state = 44}, - [5232] = {.lex_state = 343}, - [5233] = {.lex_state = 934}, - [5234] = {.lex_state = 357}, - [5235] = {.lex_state = 357}, - [5236] = {.lex_state = 439}, - [5237] = {.lex_state = 4454}, - [5238] = {.lex_state = 388}, - [5239] = {.lex_state = 4454}, - [5240] = {.lex_state = 44}, - [5241] = {.lex_state = 388}, - [5242] = {.lex_state = 121}, - [5243] = {.lex_state = 121}, - [5244] = {.lex_state = 4036}, - [5245] = {.lex_state = 4036}, - [5246] = {.lex_state = 4036}, - [5247] = {.lex_state = 456}, - [5248] = {.lex_state = 4036}, - [5249] = {.lex_state = 388}, - [5250] = {.lex_state = 49}, - [5251] = {.lex_state = 4036}, - [5252] = {.lex_state = 4036}, - [5253] = {.lex_state = 440}, - [5254] = {.lex_state = 81}, - [5255] = {.lex_state = 357}, - [5256] = {.lex_state = 104}, - [5257] = {.lex_state = 104}, - [5258] = {.lex_state = 104}, - [5259] = {.lex_state = 456}, - [5260] = {.lex_state = 467}, - [5261] = {.lex_state = 121}, - [5262] = {.lex_state = 121}, - [5263] = {.lex_state = 121}, - [5264] = {.lex_state = 461}, - [5265] = {.lex_state = 1041}, - [5266] = {.lex_state = 464}, - [5267] = {.lex_state = 441}, - [5268] = {.lex_state = 433}, - [5269] = {.lex_state = 121}, - [5270] = {.lex_state = 121}, - [5271] = {.lex_state = 474}, - [5272] = {.lex_state = 83}, - [5273] = {.lex_state = 121}, - [5274] = {.lex_state = 463}, - [5275] = {.lex_state = 121}, - [5276] = {.lex_state = 433}, - [5277] = {.lex_state = 44}, - [5278] = {.lex_state = 463}, - [5279] = {.lex_state = 121}, - [5280] = {.lex_state = 433}, - [5281] = {.lex_state = 121}, - [5282] = {.lex_state = 454}, - [5283] = {.lex_state = 121}, - [5284] = {.lex_state = 121}, - [5285] = {.lex_state = 121}, - [5286] = {.lex_state = 121}, - [5287] = {.lex_state = 121}, - [5288] = {.lex_state = 121}, - [5289] = {.lex_state = 467}, - [5290] = {.lex_state = 44}, - [5291] = {.lex_state = 121}, - [5292] = {.lex_state = 121}, - [5293] = {.lex_state = 121}, - [5294] = {.lex_state = 121}, - [5295] = {.lex_state = 467}, - [5296] = {.lex_state = 454}, - [5297] = {.lex_state = 121}, - [5298] = {.lex_state = 121}, - [5299] = {.lex_state = 421}, - [5300] = {.lex_state = 121}, - [5301] = {.lex_state = 463}, - [5302] = {.lex_state = 121}, - [5303] = {.lex_state = 121}, - [5304] = {.lex_state = 121}, - [5305] = {.lex_state = 121}, - [5306] = {.lex_state = 441}, - [5307] = {.lex_state = 121}, - [5308] = {.lex_state = 467}, - [5309] = {.lex_state = 76}, - [5310] = {.lex_state = 463}, - [5311] = {.lex_state = 121}, - [5312] = {.lex_state = 1037}, - [5313] = {.lex_state = 121}, - [5314] = {.lex_state = 72}, - [5315] = {.lex_state = 121}, - [5316] = {.lex_state = 468}, - [5317] = {.lex_state = 454}, - [5318] = {.lex_state = 463}, - [5319] = {.lex_state = 72}, - [5320] = {.lex_state = 403}, - [5321] = {.lex_state = 434}, - [5322] = {.lex_state = 121}, - [5323] = {.lex_state = 121}, - [5324] = {.lex_state = 454}, - [5325] = {.lex_state = 121}, - [5326] = {.lex_state = 121}, - [5327] = {.lex_state = 467}, - [5328] = {.lex_state = 121}, - [5329] = {.lex_state = 121}, - [5330] = {.lex_state = 44}, - [5331] = {.lex_state = 49}, - [5332] = {.lex_state = 121}, - [5333] = {.lex_state = 49}, - [5334] = {.lex_state = 121}, - [5335] = {.lex_state = 121}, - [5336] = {.lex_state = 121}, - [5337] = {.lex_state = 121}, - [5338] = {.lex_state = 75}, - [5339] = {.lex_state = 121}, - [5340] = {.lex_state = 121}, - [5341] = {.lex_state = 121}, - [5342] = {.lex_state = 403}, - [5343] = {.lex_state = 121}, - [5344] = {.lex_state = 121}, - [5345] = {.lex_state = 463}, - [5346] = {.lex_state = 121}, - [5347] = {.lex_state = 121}, - [5348] = {.lex_state = 83}, - [5349] = {.lex_state = 463}, - [5350] = {.lex_state = 454}, - [5351] = {.lex_state = 121}, - [5352] = {.lex_state = 433}, - [5353] = {.lex_state = 121}, - [5354] = {.lex_state = 121}, - [5355] = {.lex_state = 121}, - [5356] = {.lex_state = 121}, - [5357] = {.lex_state = 121}, - [5358] = {.lex_state = 463}, - [5359] = {.lex_state = 49}, - [5360] = {.lex_state = 49}, - [5361] = {.lex_state = 44}, - [5362] = {.lex_state = 470}, - [5363] = {.lex_state = 49}, - [5364] = {.lex_state = 401}, - [5365] = {.lex_state = 997}, - [5366] = {.lex_state = 105}, - [5367] = {.lex_state = 105}, - [5368] = {.lex_state = 105}, - [5369] = {.lex_state = 105}, - [5370] = {.lex_state = 105}, - [5371] = {.lex_state = 105}, - [5372] = {.lex_state = 105}, - [5373] = {.lex_state = 105}, - [5374] = {.lex_state = 105}, - [5375] = {.lex_state = 105}, - [5376] = {.lex_state = 105}, - [5377] = {.lex_state = 105}, - [5378] = {.lex_state = 105}, - [5379] = {.lex_state = 105}, - [5380] = {.lex_state = 105}, - [5381] = {.lex_state = 105}, - [5382] = {.lex_state = 105}, - [5383] = {.lex_state = 105}, - [5384] = {.lex_state = 1036}, - [5385] = {.lex_state = 1037}, - [5386] = {.lex_state = 1036}, - [5387] = {.lex_state = 103}, - [5388] = {.lex_state = 934}, - [5389] = {.lex_state = 934}, - [5390] = {.lex_state = 934}, - [5391] = {.lex_state = 934}, - [5392] = {.lex_state = 934}, - [5393] = {.lex_state = 934}, - [5394] = {.lex_state = 934}, - [5395] = {.lex_state = 934}, - [5396] = {.lex_state = 934}, - [5397] = {.lex_state = 934}, - [5398] = {.lex_state = 934}, - [5399] = {.lex_state = 934}, - [5400] = {.lex_state = 934}, - [5401] = {.lex_state = 934}, - [5402] = {.lex_state = 934}, - [5403] = {.lex_state = 934}, - [5404] = {.lex_state = 934}, - [5405] = {.lex_state = 934}, - [5406] = {.lex_state = 934}, - [5407] = {.lex_state = 934}, - [5408] = {.lex_state = 934}, - [5409] = {.lex_state = 934}, - [5410] = {.lex_state = 401}, - [5411] = {.lex_state = 442}, - [5412] = {.lex_state = 49}, - [5413] = {.lex_state = 49}, - [5414] = {.lex_state = 49}, - [5415] = {.lex_state = 49}, - [5416] = {.lex_state = 84}, - [5417] = {.lex_state = 49}, - [5418] = {.lex_state = 49}, - [5419] = {.lex_state = 49}, - [5420] = {.lex_state = 934}, - [5421] = {.lex_state = 934}, - [5422] = {.lex_state = 934}, - [5423] = {.lex_state = 442}, - [5424] = {.lex_state = 463}, - [5425] = {.lex_state = 463}, - [5426] = {.lex_state = 84}, - [5427] = {.lex_state = 934}, - [5428] = {.lex_state = 44}, - [5429] = {.lex_state = 77}, - [5430] = {.lex_state = 475}, - [5431] = {.lex_state = 84}, - [5432] = {.lex_state = 934}, - [5433] = {.lex_state = 84}, - [5434] = {.lex_state = 480}, - [5435] = {.lex_state = 1041}, - [5436] = {.lex_state = 49}, - [5437] = {.lex_state = 1036}, - [5438] = {.lex_state = 435}, - [5439] = {.lex_state = 49}, - [5440] = {.lex_state = 1061}, - [5441] = {.lex_state = 462}, - [5442] = {.lex_state = 44}, - [5443] = {.lex_state = 44}, - [5444] = {.lex_state = 480}, - [5445] = {.lex_state = 435}, - [5446] = {.lex_state = 463}, - [5447] = {.lex_state = 463}, - [5448] = {.lex_state = 49}, - [5449] = {.lex_state = 480}, - [5450] = {.lex_state = 49}, - [5451] = {.lex_state = 442}, - [5452] = {.lex_state = 934}, - [5453] = {.lex_state = 934}, - [5454] = {.lex_state = 934}, - [5455] = {.lex_state = 463}, - [5456] = {.lex_state = 77}, - [5457] = {.lex_state = 49}, - [5458] = {.lex_state = 1036}, - [5459] = {.lex_state = 49}, - [5460] = {.lex_state = 49}, - [5461] = {.lex_state = 44}, - [5462] = {.lex_state = 44}, - [5463] = {.lex_state = 44}, - [5464] = {.lex_state = 44}, - [5465] = {.lex_state = 49}, - [5466] = {.lex_state = 469}, - [5467] = {.lex_state = 49}, - [5468] = {.lex_state = 463}, - [5469] = {.lex_state = 1061}, - [5470] = {.lex_state = 84}, - [5471] = {.lex_state = 463}, - [5472] = {.lex_state = 463}, - [5473] = {.lex_state = 44}, - [5474] = {.lex_state = 480}, - [5475] = {.lex_state = 463}, - [5476] = {.lex_state = 1038}, - [5477] = {.lex_state = 49}, - [5478] = {.lex_state = 934}, - [5479] = {.lex_state = 934}, - [5480] = {.lex_state = 1038}, - [5481] = {.lex_state = 49}, - [5482] = {.lex_state = 442}, - [5483] = {.lex_state = 103}, - [5484] = {.lex_state = 49}, - [5485] = {.lex_state = 103}, - [5486] = {.lex_state = 401}, - [5487] = {.lex_state = 49}, - [5488] = {.lex_state = 424}, - [5489] = {.lex_state = 1061}, - [5490] = {.lex_state = 475}, - [5491] = {.lex_state = 44}, - [5492] = {.lex_state = 470}, - [5493] = {.lex_state = 401}, - [5494] = {.lex_state = 1061}, - [5495] = {.lex_state = 1061}, - [5496] = {.lex_state = 44}, - [5497] = {.lex_state = 49}, - [5498] = {.lex_state = 1039}, - [5499] = {.lex_state = 49}, - [5500] = {.lex_state = 49}, - [5501] = {.lex_state = 401}, - [5502] = {.lex_state = 44}, - [5503] = {.lex_state = 471}, - [5504] = {.lex_state = 934}, - [5505] = {.lex_state = 79}, - [5506] = {.lex_state = 1061}, - [5507] = {.lex_state = 480}, - [5508] = {.lex_state = 480}, - [5509] = {.lex_state = 471}, - [5510] = {.lex_state = 934}, - [5511] = {.lex_state = 471}, - [5512] = {.lex_state = 480}, - [5513] = {.lex_state = 78}, - [5514] = {.lex_state = 480}, - [5515] = {.lex_state = 134}, - [5516] = {.lex_state = 436}, - [5517] = {.lex_state = 476}, - [5518] = {.lex_state = 463}, - [5519] = {.lex_state = 78}, - [5520] = {.lex_state = 476}, - [5521] = {.lex_state = 480}, - [5522] = {.lex_state = 934}, - [5523] = {.lex_state = 934}, - [5524] = {.lex_state = 476}, - [5525] = {.lex_state = 44}, - [5526] = {.lex_state = 997}, - [5527] = {.lex_state = 1061}, - [5528] = {.lex_state = 480}, - [5529] = {.lex_state = 1061}, - [5530] = {.lex_state = 134}, - [5531] = {.lex_state = 934}, - [5532] = {.lex_state = 934}, - [5533] = {.lex_state = 472}, - [5534] = {.lex_state = 463}, - [5535] = {.lex_state = 480}, - [5536] = {.lex_state = 78}, - [5537] = {.lex_state = 480}, - [5538] = {.lex_state = 934}, - [5539] = {.lex_state = 44}, - [5540] = {.lex_state = 480}, - [5541] = {.lex_state = 480}, - [5542] = {.lex_state = 480}, - [5543] = {.lex_state = 99}, - [5544] = {.lex_state = 480}, - [5545] = {.lex_state = 480}, - [5546] = {.lex_state = 480}, - [5547] = {.lex_state = 1038}, - [5548] = {.lex_state = 44}, - [5549] = {.lex_state = 480}, - [5550] = {.lex_state = 472}, - [5551] = {.lex_state = 480}, - [5552] = {.lex_state = 480}, - [5553] = {.lex_state = 105}, - [5554] = {.lex_state = 480}, - [5555] = {.lex_state = 480}, - [5556] = {.lex_state = 480}, - [5557] = {.lex_state = 480}, - [5558] = {.lex_state = 480}, - [5559] = {.lex_state = 452}, - [5560] = {.lex_state = 1061}, - [5561] = {.lex_state = 480}, - [5562] = {.lex_state = 480}, - [5563] = {.lex_state = 480}, - [5564] = {.lex_state = 480}, - [5565] = {.lex_state = 480}, - [5566] = {.lex_state = 99}, - [5567] = {.lex_state = 1061}, - [5568] = {.lex_state = 480}, - [5569] = {.lex_state = 934}, - [5570] = {.lex_state = 480}, - [5571] = {.lex_state = 480}, - [5572] = {.lex_state = 480}, - [5573] = {.lex_state = 44}, - [5574] = {.lex_state = 934}, - [5575] = {.lex_state = 463}, - [5576] = {.lex_state = 471}, - [5577] = {.lex_state = 463}, - [5578] = {.lex_state = 343}, - [5579] = {.lex_state = 934}, - [5580] = {.lex_state = 463}, - [5581] = {.lex_state = 78}, - [5582] = {.lex_state = 436}, - [5583] = {.lex_state = 480}, - [5584] = {.lex_state = 480}, - [5585] = {.lex_state = 934}, - [5586] = {.lex_state = 463}, - [5587] = {.lex_state = 482}, - [5588] = {.lex_state = 105}, - [5589] = {.lex_state = 105}, - [5590] = {.lex_state = 480}, - [5591] = {.lex_state = 436}, - [5592] = {.lex_state = 480}, - [5593] = {.lex_state = 343}, - [5594] = {.lex_state = 480}, - [5595] = {.lex_state = 442}, - [5596] = {.lex_state = 476}, - [5597] = {.lex_state = 934}, - [5598] = {.lex_state = 934}, - [5599] = {.lex_state = 934}, - [5600] = {.lex_state = 1039}, - [5601] = {.lex_state = 105}, - [5602] = {.lex_state = 103}, - [5603] = {.lex_state = 103}, - [5604] = {.lex_state = 480}, - [5605] = {.lex_state = 44}, - [5606] = {.lex_state = 343}, - [5607] = {.lex_state = 934}, - [5608] = {.lex_state = 480}, - [5609] = {.lex_state = 934}, - [5610] = {.lex_state = 934}, - [5611] = {.lex_state = 934}, - [5612] = {.lex_state = 1038}, - [5613] = {.lex_state = 480}, - [5614] = {.lex_state = 471}, - [5615] = {.lex_state = 482}, - [5616] = {.lex_state = 436}, - [5617] = {.lex_state = 436}, - [5618] = {.lex_state = 476}, - [5619] = {.lex_state = 480}, - [5620] = {.lex_state = 480}, - [5621] = {.lex_state = 44}, - [5622] = {.lex_state = 480}, - [5623] = {.lex_state = 44}, - [5624] = {.lex_state = 480}, - [5625] = {.lex_state = 463}, - [5626] = {.lex_state = 436}, - [5627] = {.lex_state = 442}, - [5628] = {.lex_state = 418}, - [5629] = {.lex_state = 471}, - [5630] = {.lex_state = 105}, - [5631] = {.lex_state = 452}, - [5632] = {.lex_state = 934}, - [5633] = {.lex_state = 959}, - [5634] = {.lex_state = 369}, - [5635] = {.lex_state = 360}, - [5636] = {.lex_state = 4037}, - [5637] = {.lex_state = 4037}, - [5638] = {.lex_state = 369}, - [5639] = {.lex_state = 4037}, - [5640] = {.lex_state = 4037}, - [5641] = {.lex_state = 480}, - [5642] = {.lex_state = 369}, - [5643] = {.lex_state = 959}, - [5644] = {.lex_state = 959}, - [5645] = {.lex_state = 959}, - [5646] = {.lex_state = 959}, - [5647] = {.lex_state = 959}, - [5648] = {.lex_state = 959}, - [5649] = {.lex_state = 959}, - [5650] = {.lex_state = 360}, - [5651] = {.lex_state = 480}, - [5652] = {.lex_state = 959}, - [5653] = {.lex_state = 959}, - [5654] = {.lex_state = 369}, - [5655] = {.lex_state = 360}, - [5656] = {.lex_state = 4037}, - [5657] = {.lex_state = 4037}, - [5658] = {.lex_state = 934}, - [5659] = {.lex_state = 369}, - [5660] = {.lex_state = 463}, - [5661] = {.lex_state = 959}, - [5662] = {.lex_state = 343}, - [5663] = {.lex_state = 959}, - [5664] = {.lex_state = 360}, - [5665] = {.lex_state = 480}, - [5666] = {.lex_state = 480}, - [5667] = {.lex_state = 369}, - [5668] = {.lex_state = 4037}, - [5669] = {.lex_state = 4037}, - [5670] = {.lex_state = 478}, - [5671] = {.lex_state = 369}, - [5672] = {.lex_state = 959}, - [5673] = {.lex_state = 934}, - [5674] = {.lex_state = 4037}, - [5675] = {.lex_state = 4037}, - [5676] = {.lex_state = 959}, - [5677] = {.lex_state = 360}, - [5678] = {.lex_state = 959}, - [5679] = {.lex_state = 343}, - [5680] = {.lex_state = 369}, - [5681] = {.lex_state = 959}, - [5682] = {.lex_state = 4037}, - [5683] = {.lex_state = 4037}, - [5684] = {.lex_state = 369}, - [5685] = {.lex_state = 959}, - [5686] = {.lex_state = 473}, - [5687] = {.lex_state = 418}, - [5688] = {.lex_state = 959}, - [5689] = {.lex_state = 360}, - [5690] = {.lex_state = 959}, - [5691] = {.lex_state = 480}, - [5692] = {.lex_state = 369}, - [5693] = {.lex_state = 4037}, - [5694] = {.lex_state = 4037}, - [5695] = {.lex_state = 369}, - [5696] = {.lex_state = 959}, - [5697] = {.lex_state = 959}, - [5698] = {.lex_state = 959}, - [5699] = {.lex_state = 360}, - [5700] = {.lex_state = 343}, - [5701] = {.lex_state = 369}, - [5702] = {.lex_state = 360}, - [5703] = {.lex_state = 369}, - [5704] = {.lex_state = 480}, - [5705] = {.lex_state = 369}, - [5706] = {.lex_state = 480}, - [5707] = {.lex_state = 959}, - [5708] = {.lex_state = 369}, - [5709] = {.lex_state = 959}, - [5710] = {.lex_state = 959}, - [5711] = {.lex_state = 959}, - [5712] = {.lex_state = 360}, - [5713] = {.lex_state = 104}, - [5714] = {.lex_state = 959}, - [5715] = {.lex_state = 369}, - [5716] = {.lex_state = 360}, - [5717] = {.lex_state = 369}, - [5718] = {.lex_state = 959}, - [5719] = {.lex_state = 934}, - [5720] = {.lex_state = 473}, - [5721] = {.lex_state = 959}, - [5722] = {.lex_state = 934}, - [5723] = {.lex_state = 360}, - [5724] = {.lex_state = 959}, - [5725] = {.lex_state = 959}, - [5726] = {.lex_state = 493}, - [5727] = {.lex_state = 369}, - [5728] = {.lex_state = 369}, - [5729] = {.lex_state = 959}, - [5730] = {.lex_state = 959}, - [5731] = {.lex_state = 360}, - [5732] = {.lex_state = 369}, - [5733] = {.lex_state = 369}, - [5734] = {.lex_state = 959}, - [5735] = {.lex_state = 959}, - [5736] = {.lex_state = 360}, - [5737] = {.lex_state = 398}, - [5738] = {.lex_state = 473}, - [5739] = {.lex_state = 369}, - [5740] = {.lex_state = 369}, - [5741] = {.lex_state = 959}, - [5742] = {.lex_state = 959}, - [5743] = {.lex_state = 360}, - [5744] = {.lex_state = 369}, - [5745] = {.lex_state = 369}, - [5746] = {.lex_state = 959}, - [5747] = {.lex_state = 959}, - [5748] = {.lex_state = 360}, - [5749] = {.lex_state = 959}, - [5750] = {.lex_state = 959}, - [5751] = {.lex_state = 360}, - [5752] = {.lex_state = 934}, - [5753] = {.lex_state = 934}, - [5754] = {.lex_state = 104}, - [5755] = {.lex_state = 959}, - [5756] = {.lex_state = 959}, - [5757] = {.lex_state = 360}, - [5758] = {.lex_state = 480}, - [5759] = {.lex_state = 428}, - [5760] = {.lex_state = 959}, - [5761] = {.lex_state = 959}, - [5762] = {.lex_state = 360}, - [5763] = {.lex_state = 959}, - [5764] = {.lex_state = 959}, - [5765] = {.lex_state = 360}, - [5766] = {.lex_state = 443}, - [5767] = {.lex_state = 360}, - [5768] = {.lex_state = 959}, - [5769] = {.lex_state = 360}, - [5770] = {.lex_state = 360}, - [5771] = {.lex_state = 360}, - [5772] = {.lex_state = 360}, - [5773] = {.lex_state = 360}, - [5774] = {.lex_state = 360}, - [5775] = {.lex_state = 360}, - [5776] = {.lex_state = 360}, - [5777] = {.lex_state = 360}, - [5778] = {.lex_state = 360}, - [5779] = {.lex_state = 360}, - [5780] = {.lex_state = 360}, - [5781] = {.lex_state = 959}, - [5782] = {.lex_state = 360}, - [5783] = {.lex_state = 360}, - [5784] = {.lex_state = 360}, - [5785] = {.lex_state = 360}, - [5786] = {.lex_state = 360}, - [5787] = {.lex_state = 360}, - [5788] = {.lex_state = 360}, - [5789] = {.lex_state = 360}, - [5790] = {.lex_state = 360}, - [5791] = {.lex_state = 959}, - [5792] = {.lex_state = 418}, - [5793] = {.lex_state = 430}, - [5794] = {.lex_state = 463}, - [5795] = {.lex_state = 934}, - [5796] = {.lex_state = 418}, - [5797] = {.lex_state = 343}, - [5798] = {.lex_state = 343}, - [5799] = {.lex_state = 343}, - [5800] = {.lex_state = 473}, - [5801] = {.lex_state = 480}, - [5802] = {.lex_state = 447}, - [5803] = {.lex_state = 481}, - [5804] = {.lex_state = 513}, - [5805] = {.lex_state = 4037}, - [5806] = {.lex_state = 513}, - [5807] = {.lex_state = 4037}, - [5808] = {.lex_state = 418}, - [5809] = {.lex_state = 959}, - [5810] = {.lex_state = 369}, - [5811] = {.lex_state = 99}, - [5812] = {.lex_state = 4037}, - [5813] = {.lex_state = 4037}, - [5814] = {.lex_state = 369}, - [5815] = {.lex_state = 452}, - [5816] = {.lex_state = 473}, - [5817] = {.lex_state = 391}, - [5818] = {.lex_state = 392}, - [5819] = {.lex_state = 463}, - [5820] = {.lex_state = 418}, - [5821] = {.lex_state = 959}, - [5822] = {.lex_state = 959}, - [5823] = {.lex_state = 463}, - [5824] = {.lex_state = 463}, - [5825] = {.lex_state = 463}, - [5826] = {.lex_state = 463}, - [5827] = {.lex_state = 934}, - [5828] = {.lex_state = 463}, - [5829] = {.lex_state = 513}, - [5830] = {.lex_state = 513}, - [5831] = {.lex_state = 959}, - [5832] = {.lex_state = 959}, - [5833] = {.lex_state = 934}, - [5834] = {.lex_state = 99}, - [5835] = {.lex_state = 360}, - [5836] = {.lex_state = 959}, - [5837] = {.lex_state = 44}, - [5838] = {.lex_state = 369}, - [5839] = {.lex_state = 959}, - [5840] = {.lex_state = 4037}, - [5841] = {.lex_state = 4037}, - [5842] = {.lex_state = 959}, - [5843] = {.lex_state = 4037}, - [5844] = {.lex_state = 4037}, - [5845] = {.lex_state = 399}, - [5846] = {.lex_state = 4037}, - [5847] = {.lex_state = 134}, - [5848] = {.lex_state = 463}, - [5849] = {.lex_state = 99}, - [5850] = {.lex_state = 4037}, - [5851] = {.lex_state = 44}, - [5852] = {.lex_state = 463}, - [5853] = {.lex_state = 934}, - [5854] = {.lex_state = 481}, - [5855] = {.lex_state = 513}, - [5856] = {.lex_state = 481}, - [5857] = {.lex_state = 134}, - [5858] = {.lex_state = 369}, - [5859] = {.lex_state = 452}, - [5860] = {.lex_state = 360}, - [5861] = {.lex_state = 369}, - [5862] = {.lex_state = 934}, - [5863] = {.lex_state = 463}, - [5864] = {.lex_state = 959}, - [5865] = {.lex_state = 4037}, - [5866] = {.lex_state = 4037}, - [5867] = {.lex_state = 959}, - [5868] = {.lex_state = 959}, - [5869] = {.lex_state = 369}, - [5870] = {.lex_state = 959}, - [5871] = {.lex_state = 481}, - [5872] = {.lex_state = 934}, - [5873] = {.lex_state = 934}, - [5874] = {.lex_state = 104}, - [5875] = {.lex_state = 959}, - [5876] = {.lex_state = 484}, - [5877] = {.lex_state = 369}, - [5878] = {.lex_state = 104}, - [5879] = {.lex_state = 104}, - [5880] = {.lex_state = 104}, - [5881] = {.lex_state = 959}, - [5882] = {.lex_state = 473}, - [5883] = {.lex_state = 959}, - [5884] = {.lex_state = 360}, - [5885] = {.lex_state = 959}, - [5886] = {.lex_state = 369}, - [5887] = {.lex_state = 4037}, - [5888] = {.lex_state = 4037}, - [5889] = {.lex_state = 369}, - [5890] = {.lex_state = 959}, - [5891] = {.lex_state = 997}, - [5892] = {.lex_state = 369}, - [5893] = {.lex_state = 477}, - [5894] = {.lex_state = 418}, - [5895] = {.lex_state = 934}, - [5896] = {.lex_state = 463}, - [5897] = {.lex_state = 360}, - [5898] = {.lex_state = 959}, - [5899] = {.lex_state = 960}, - [5900] = {.lex_state = 44}, - [5901] = {.lex_state = 297}, - [5902] = {.lex_state = 297}, - [5903] = {.lex_state = 959}, - [5904] = {.lex_state = 959}, - [5905] = {.lex_state = 959}, - [5906] = {.lex_state = 959}, - [5907] = {.lex_state = 44}, - [5908] = {.lex_state = 959}, - [5909] = {.lex_state = 105}, - [5910] = {.lex_state = 105}, - [5911] = {.lex_state = 959}, - [5912] = {.lex_state = 105}, - [5913] = {.lex_state = 105}, - [5914] = {.lex_state = 44}, - [5915] = {.lex_state = 297}, - [5916] = {.lex_state = 44}, - [5917] = {.lex_state = 44}, - [5918] = {.lex_state = 105}, - [5919] = {.lex_state = 480}, - [5920] = {.lex_state = 44}, - [5921] = {.lex_state = 44}, - [5922] = {.lex_state = 44}, - [5923] = {.lex_state = 44}, - [5924] = {.lex_state = 495}, - [5925] = {.lex_state = 480}, - [5926] = {.lex_state = 44}, - [5927] = {.lex_state = 524}, - [5928] = {.lex_state = 44}, - [5929] = {.lex_state = 524}, - [5930] = {.lex_state = 524}, - [5931] = {.lex_state = 485}, - [5932] = {.lex_state = 495}, - [5933] = {.lex_state = 959}, - [5934] = {.lex_state = 78}, - [5935] = {.lex_state = 479}, - [5936] = {.lex_state = 121}, - [5937] = {.lex_state = 44}, - [5938] = {.lex_state = 44}, - [5939] = {.lex_state = 444}, - [5940] = {.lex_state = 44}, - [5941] = {.lex_state = 959}, - [5942] = {.lex_state = 297}, - [5943] = {.lex_state = 44}, - [5944] = {.lex_state = 958}, - [5945] = {.lex_state = 959}, - [5946] = {.lex_state = 44}, - [5947] = {.lex_state = 44}, - [5948] = {.lex_state = 44}, - [5949] = {.lex_state = 449}, - [5950] = {.lex_state = 78}, - [5951] = {.lex_state = 446}, - [5952] = {.lex_state = 297}, - [5953] = {.lex_state = 343}, - [5954] = {.lex_state = 343}, - [5955] = {.lex_state = 44}, - [5956] = {.lex_state = 524}, - [5957] = {.lex_state = 44}, - [5958] = {.lex_state = 959}, - [5959] = {.lex_state = 44}, - [5960] = {.lex_state = 524}, - [5961] = {.lex_state = 44}, - [5962] = {.lex_state = 449}, - [5963] = {.lex_state = 418}, - [5964] = {.lex_state = 524}, - [5965] = {.lex_state = 44}, - [5966] = {.lex_state = 44}, - [5967] = {.lex_state = 959}, - [5968] = {.lex_state = 524}, - [5969] = {.lex_state = 524}, - [5970] = {.lex_state = 960}, - [5971] = {.lex_state = 524}, - [5972] = {.lex_state = 524}, - [5973] = {.lex_state = 524}, - [5974] = {.lex_state = 444}, - [5975] = {.lex_state = 524}, - [5976] = {.lex_state = 524}, - [5977] = {.lex_state = 429}, - [5978] = {.lex_state = 480}, - [5979] = {.lex_state = 524}, - [5980] = {.lex_state = 524}, - [5981] = {.lex_state = 44}, - [5982] = {.lex_state = 524}, - [5983] = {.lex_state = 959}, - [5984] = {.lex_state = 524}, - [5985] = {.lex_state = 524}, - [5986] = {.lex_state = 960}, - [5987] = {.lex_state = 524}, - [5988] = {.lex_state = 44}, - [5989] = {.lex_state = 44}, - [5990] = {.lex_state = 524}, - [5991] = {.lex_state = 524}, - [5992] = {.lex_state = 959}, - [5993] = {.lex_state = 524}, - [5994] = {.lex_state = 524}, - [5995] = {.lex_state = 418}, - [5996] = {.lex_state = 524}, - [5997] = {.lex_state = 959}, - [5998] = {.lex_state = 524}, - [5999] = {.lex_state = 297}, - [6000] = {.lex_state = 524}, - [6001] = {.lex_state = 524}, - [6002] = {.lex_state = 297}, - [6003] = {.lex_state = 524}, - [6004] = {.lex_state = 452}, - [6005] = {.lex_state = 524}, - [6006] = {.lex_state = 297}, - [6007] = {.lex_state = 524}, - [6008] = {.lex_state = 480}, - [6009] = {.lex_state = 480}, - [6010] = {.lex_state = 524}, - [6011] = {.lex_state = 524}, - [6012] = {.lex_state = 105}, - [6013] = {.lex_state = 418}, - [6014] = {.lex_state = 396}, - [6015] = {.lex_state = 452}, - [6016] = {.lex_state = 105}, - [6017] = {.lex_state = 959}, - [6018] = {.lex_state = 297}, - [6019] = {.lex_state = 452}, - [6020] = {.lex_state = 297}, - [6021] = {.lex_state = 297}, - [6022] = {.lex_state = 99}, - [6023] = {.lex_state = 297}, - [6024] = {.lex_state = 343}, - [6025] = {.lex_state = 959}, - [6026] = {.lex_state = 959}, - [6027] = {.lex_state = 343}, - [6028] = {.lex_state = 399}, - [6029] = {.lex_state = 44}, - [6030] = {.lex_state = 494}, - [6031] = {.lex_state = 485}, - [6032] = {.lex_state = 418}, - [6033] = {.lex_state = 394}, - [6034] = {.lex_state = 44}, - [6035] = {.lex_state = 105}, - [6036] = {.lex_state = 418}, - [6037] = {.lex_state = 343}, - [6038] = {.lex_state = 959}, - [6039] = {.lex_state = 959}, - [6040] = {.lex_state = 392}, - [6041] = {.lex_state = 343}, - [6042] = {.lex_state = 959}, - [6043] = {.lex_state = 959}, - [6044] = {.lex_state = 959}, - [6045] = {.lex_state = 959}, - [6046] = {.lex_state = 959}, - [6047] = {.lex_state = 959}, - [6048] = {.lex_state = 44}, - [6049] = {.lex_state = 959}, - [6050] = {.lex_state = 959}, - [6051] = {.lex_state = 959}, - [6052] = {.lex_state = 959}, - [6053] = {.lex_state = 959}, - [6054] = {.lex_state = 959}, - [6055] = {.lex_state = 959}, - [6056] = {.lex_state = 959}, - [6057] = {.lex_state = 959}, - [6058] = {.lex_state = 959}, - [6059] = {.lex_state = 78}, - [6060] = {.lex_state = 959}, - [6061] = {.lex_state = 959}, - [6062] = {.lex_state = 959}, - [6063] = {.lex_state = 959}, - [6064] = {.lex_state = 959}, - [6065] = {.lex_state = 959}, - [6066] = {.lex_state = 959}, - [6067] = {.lex_state = 959}, - [6068] = {.lex_state = 959}, - [6069] = {.lex_state = 959}, - [6070] = {.lex_state = 959}, - [6071] = {.lex_state = 959}, - [6072] = {.lex_state = 959}, - [6073] = {.lex_state = 959}, - [6074] = {.lex_state = 959}, - [6075] = {.lex_state = 959}, - [6076] = {.lex_state = 959}, - [6077] = {.lex_state = 959}, - [6078] = {.lex_state = 959}, - [6079] = {.lex_state = 959}, - [6080] = {.lex_state = 959}, - [6081] = {.lex_state = 452}, - [6082] = {.lex_state = 524}, - [6083] = {.lex_state = 452}, - [6084] = {.lex_state = 121}, - [6085] = {.lex_state = 78}, - [6086] = {.lex_state = 999}, - [6087] = {.lex_state = 999}, - [6088] = {.lex_state = 999}, - [6089] = {.lex_state = 999}, - [6090] = {.lex_state = 999}, - [6091] = {.lex_state = 999}, - [6092] = {.lex_state = 99}, - [6093] = {.lex_state = 524}, - [6094] = {.lex_state = 959}, - [6095] = {.lex_state = 524}, - [6096] = {.lex_state = 959}, - [6097] = {.lex_state = 103}, - [6098] = {.lex_state = 450}, - [6099] = {.lex_state = 263}, - [6100] = {.lex_state = 959}, - [6101] = {.lex_state = 263}, - [6102] = {.lex_state = 263}, - [6103] = {.lex_state = 263}, - [6104] = {.lex_state = 263}, - [6105] = {.lex_state = 263}, - [6106] = {.lex_state = 263}, - [6107] = {.lex_state = 263}, - [6108] = {.lex_state = 959}, - [6109] = {.lex_state = 450}, - [6110] = {.lex_state = 99}, - [6111] = {.lex_state = 959}, - [6112] = {.lex_state = 450}, - [6113] = {.lex_state = 959}, - [6114] = {.lex_state = 367}, - [6115] = {.lex_state = 85}, - [6116] = {.lex_state = 959}, - [6117] = {.lex_state = 959}, - [6118] = {.lex_state = 450}, - [6119] = {.lex_state = 343}, - [6120] = {.lex_state = 519}, - [6121] = {.lex_state = 959}, - [6122] = {.lex_state = 959}, - [6123] = {.lex_state = 502}, - [6124] = {.lex_state = 86}, - [6125] = {.lex_state = 959}, - [6126] = {.lex_state = 297}, - [6127] = {.lex_state = 959}, - [6128] = {.lex_state = 367}, - [6129] = {.lex_state = 496}, - [6130] = {.lex_state = 519}, - [6131] = {.lex_state = 458}, - [6132] = {.lex_state = 959}, - [6133] = {.lex_state = 367}, - [6134] = {.lex_state = 502}, - [6135] = {.lex_state = 959}, - [6136] = {.lex_state = 343}, - [6137] = {.lex_state = 959}, - [6138] = {.lex_state = 959}, - [6139] = {.lex_state = 263}, - [6140] = {.lex_state = 263}, - [6141] = {.lex_state = 263}, - [6142] = {.lex_state = 263}, - [6143] = {.lex_state = 263}, - [6144] = {.lex_state = 263}, - [6145] = {.lex_state = 263}, - [6146] = {.lex_state = 263}, - [6147] = {.lex_state = 502}, - [6148] = {.lex_state = 367}, - [6149] = {.lex_state = 105}, - [6150] = {.lex_state = 959}, - [6151] = {.lex_state = 959}, - [6152] = {.lex_state = 367}, - [6153] = {.lex_state = 263}, - [6154] = {.lex_state = 959}, - [6155] = {.lex_state = 959}, - [6156] = {.lex_state = 959}, - [6157] = {.lex_state = 263}, - [6158] = {.lex_state = 263}, - [6159] = {.lex_state = 263}, - [6160] = {.lex_state = 263}, - [6161] = {.lex_state = 263}, - [6162] = {.lex_state = 263}, - [6163] = {.lex_state = 263}, - [6164] = {.lex_state = 263}, - [6165] = {.lex_state = 959}, - [6166] = {.lex_state = 502}, - [6167] = {.lex_state = 959}, - [6168] = {.lex_state = 367}, - [6169] = {.lex_state = 367}, - [6170] = {.lex_state = 959}, - [6171] = {.lex_state = 263}, - [6172] = {.lex_state = 367}, - [6173] = {.lex_state = 959}, - [6174] = {.lex_state = 367}, - [6175] = {.lex_state = 959}, - [6176] = {.lex_state = 445}, - [6177] = {.lex_state = 959}, - [6178] = {.lex_state = 263}, - [6179] = {.lex_state = 263}, - [6180] = {.lex_state = 263}, - [6181] = {.lex_state = 263}, - [6182] = {.lex_state = 263}, - [6183] = {.lex_state = 263}, - [6184] = {.lex_state = 263}, - [6185] = {.lex_state = 263}, - [6186] = {.lex_state = 959}, - [6187] = {.lex_state = 959}, - [6188] = {.lex_state = 959}, - [6189] = {.lex_state = 502}, - [6190] = {.lex_state = 367}, - [6191] = {.lex_state = 511}, - [6192] = {.lex_state = 448}, - [6193] = {.lex_state = 486}, - [6194] = {.lex_state = 103}, - [6195] = {.lex_state = 367}, - [6196] = {.lex_state = 263}, - [6197] = {.lex_state = 367}, - [6198] = {.lex_state = 450}, - [6199] = {.lex_state = 959}, - [6200] = {.lex_state = 959}, - [6201] = {.lex_state = 959}, - [6202] = {.lex_state = 959}, - [6203] = {.lex_state = 263}, - [6204] = {.lex_state = 263}, - [6205] = {.lex_state = 263}, - [6206] = {.lex_state = 263}, - [6207] = {.lex_state = 263}, - [6208] = {.lex_state = 263}, - [6209] = {.lex_state = 263}, - [6210] = {.lex_state = 263}, - [6211] = {.lex_state = 103}, - [6212] = {.lex_state = 959}, - [6213] = {.lex_state = 502}, - [6214] = {.lex_state = 959}, - [6215] = {.lex_state = 367}, - [6216] = {.lex_state = 263}, - [6217] = {.lex_state = 263}, - [6218] = {.lex_state = 367}, - [6219] = {.lex_state = 263}, - [6220] = {.lex_state = 263}, - [6221] = {.lex_state = 263}, - [6222] = {.lex_state = 263}, - [6223] = {.lex_state = 263}, - [6224] = {.lex_state = 263}, - [6225] = {.lex_state = 263}, - [6226] = {.lex_state = 263}, - [6227] = {.lex_state = 263}, - [6228] = {.lex_state = 959}, - [6229] = {.lex_state = 486}, - [6230] = {.lex_state = 502}, - [6231] = {.lex_state = 367}, - [6232] = {.lex_state = 263}, - [6233] = {.lex_state = 445}, - [6234] = {.lex_state = 496}, - [6235] = {.lex_state = 496}, - [6236] = {.lex_state = 367}, - [6237] = {.lex_state = 263}, - [6238] = {.lex_state = 959}, - [6239] = {.lex_state = 959}, - [6240] = {.lex_state = 486}, - [6241] = {.lex_state = 959}, - [6242] = {.lex_state = 450}, - [6243] = {.lex_state = 959}, - [6244] = {.lex_state = 263}, - [6245] = {.lex_state = 263}, - [6246] = {.lex_state = 263}, - [6247] = {.lex_state = 263}, - [6248] = {.lex_state = 263}, - [6249] = {.lex_state = 263}, - [6250] = {.lex_state = 263}, - [6251] = {.lex_state = 263}, - [6252] = {.lex_state = 959}, - [6253] = {.lex_state = 502}, - [6254] = {.lex_state = 959}, - [6255] = {.lex_state = 367}, - [6256] = {.lex_state = 263}, - [6257] = {.lex_state = 959}, - [6258] = {.lex_state = 367}, - [6259] = {.lex_state = 263}, - [6260] = {.lex_state = 959}, - [6261] = {.lex_state = 959}, - [6262] = {.lex_state = 263}, - [6263] = {.lex_state = 263}, - [6264] = {.lex_state = 263}, - [6265] = {.lex_state = 263}, - [6266] = {.lex_state = 263}, - [6267] = {.lex_state = 263}, - [6268] = {.lex_state = 263}, - [6269] = {.lex_state = 263}, - [6270] = {.lex_state = 496}, - [6271] = {.lex_state = 959}, - [6272] = {.lex_state = 959}, - [6273] = {.lex_state = 502}, - [6274] = {.lex_state = 367}, - [6275] = {.lex_state = 297}, - [6276] = {.lex_state = 367}, - [6277] = {.lex_state = 496}, - [6278] = {.lex_state = 297}, - [6279] = {.lex_state = 959}, - [6280] = {.lex_state = 522}, - [6281] = {.lex_state = 959}, - [6282] = {.lex_state = 263}, - [6283] = {.lex_state = 263}, - [6284] = {.lex_state = 263}, - [6285] = {.lex_state = 263}, - [6286] = {.lex_state = 263}, - [6287] = {.lex_state = 263}, - [6288] = {.lex_state = 263}, - [6289] = {.lex_state = 263}, - [6290] = {.lex_state = 502}, - [6291] = {.lex_state = 518}, - [6292] = {.lex_state = 367}, - [6293] = {.lex_state = 959}, - [6294] = {.lex_state = 959}, - [6295] = {.lex_state = 367}, - [6296] = {.lex_state = 496}, - [6297] = {.lex_state = 297}, - [6298] = {.lex_state = 522}, - [6299] = {.lex_state = 263}, - [6300] = {.lex_state = 263}, - [6301] = {.lex_state = 263}, - [6302] = {.lex_state = 263}, - [6303] = {.lex_state = 263}, - [6304] = {.lex_state = 263}, - [6305] = {.lex_state = 263}, - [6306] = {.lex_state = 263}, - [6307] = {.lex_state = 959}, - [6308] = {.lex_state = 959}, - [6309] = {.lex_state = 502}, - [6310] = {.lex_state = 367}, - [6311] = {.lex_state = 496}, - [6312] = {.lex_state = 959}, - [6313] = {.lex_state = 367}, - [6314] = {.lex_state = 959}, - [6315] = {.lex_state = 959}, - [6316] = {.lex_state = 959}, - [6317] = {.lex_state = 263}, - [6318] = {.lex_state = 263}, - [6319] = {.lex_state = 263}, - [6320] = {.lex_state = 263}, - [6321] = {.lex_state = 263}, - [6322] = {.lex_state = 263}, - [6323] = {.lex_state = 263}, - [6324] = {.lex_state = 263}, - [6325] = {.lex_state = 959}, - [6326] = {.lex_state = 959}, - [6327] = {.lex_state = 502}, - [6328] = {.lex_state = 959}, - [6329] = {.lex_state = 367}, - [6330] = {.lex_state = 959}, - [6331] = {.lex_state = 959}, - [6332] = {.lex_state = 367}, - [6333] = {.lex_state = 959}, - [6334] = {.lex_state = 518}, - [6335] = {.lex_state = 959}, - [6336] = {.lex_state = 263}, - [6337] = {.lex_state = 263}, - [6338] = {.lex_state = 263}, - [6339] = {.lex_state = 263}, - [6340] = {.lex_state = 263}, - [6341] = {.lex_state = 263}, - [6342] = {.lex_state = 263}, - [6343] = {.lex_state = 263}, - [6344] = {.lex_state = 959}, - [6345] = {.lex_state = 502}, - [6346] = {.lex_state = 367}, - [6347] = {.lex_state = 959}, - [6348] = {.lex_state = 959}, - [6349] = {.lex_state = 367}, - [6350] = {.lex_state = 297}, - [6351] = {.lex_state = 959}, - [6352] = {.lex_state = 959}, - [6353] = {.lex_state = 263}, - [6354] = {.lex_state = 263}, - [6355] = {.lex_state = 263}, - [6356] = {.lex_state = 263}, - [6357] = {.lex_state = 263}, - [6358] = {.lex_state = 263}, - [6359] = {.lex_state = 263}, - [6360] = {.lex_state = 263}, - [6361] = {.lex_state = 959}, - [6362] = {.lex_state = 502}, - [6363] = {.lex_state = 959}, - [6364] = {.lex_state = 367}, - [6365] = {.lex_state = 959}, - [6366] = {.lex_state = 367}, - [6367] = {.lex_state = 959}, - [6368] = {.lex_state = 297}, - [6369] = {.lex_state = 263}, - [6370] = {.lex_state = 263}, - [6371] = {.lex_state = 263}, - [6372] = {.lex_state = 263}, - [6373] = {.lex_state = 263}, - [6374] = {.lex_state = 263}, - [6375] = {.lex_state = 263}, - [6376] = {.lex_state = 263}, - [6377] = {.lex_state = 959}, - [6378] = {.lex_state = 502}, - [6379] = {.lex_state = 959}, - [6380] = {.lex_state = 367}, - [6381] = {.lex_state = 263}, - [6382] = {.lex_state = 367}, - [6383] = {.lex_state = 263}, - [6384] = {.lex_state = 263}, - [6385] = {.lex_state = 263}, - [6386] = {.lex_state = 263}, - [6387] = {.lex_state = 263}, - [6388] = {.lex_state = 263}, - [6389] = {.lex_state = 263}, - [6390] = {.lex_state = 263}, - [6391] = {.lex_state = 502}, - [6392] = {.lex_state = 367}, - [6393] = {.lex_state = 367}, - [6394] = {.lex_state = 263}, - [6395] = {.lex_state = 263}, - [6396] = {.lex_state = 263}, - [6397] = {.lex_state = 263}, - [6398] = {.lex_state = 263}, - [6399] = {.lex_state = 263}, - [6400] = {.lex_state = 263}, - [6401] = {.lex_state = 263}, - [6402] = {.lex_state = 263}, - [6403] = {.lex_state = 502}, - [6404] = {.lex_state = 367}, - [6405] = {.lex_state = 367}, - [6406] = {.lex_state = 959}, - [6407] = {.lex_state = 263}, - [6408] = {.lex_state = 263}, - [6409] = {.lex_state = 263}, - [6410] = {.lex_state = 263}, - [6411] = {.lex_state = 263}, - [6412] = {.lex_state = 959}, - [6413] = {.lex_state = 263}, - [6414] = {.lex_state = 263}, - [6415] = {.lex_state = 959}, - [6416] = {.lex_state = 502}, - [6417] = {.lex_state = 367}, - [6418] = {.lex_state = 367}, - [6419] = {.lex_state = 445}, - [6420] = {.lex_state = 263}, - [6421] = {.lex_state = 263}, - [6422] = {.lex_state = 263}, - [6423] = {.lex_state = 263}, - [6424] = {.lex_state = 263}, - [6425] = {.lex_state = 263}, - [6426] = {.lex_state = 263}, - [6427] = {.lex_state = 263}, - [6428] = {.lex_state = 959}, - [6429] = {.lex_state = 502}, - [6430] = {.lex_state = 367}, - [6431] = {.lex_state = 367}, - [6432] = {.lex_state = 502}, - [6433] = {.lex_state = 367}, - [6434] = {.lex_state = 367}, - [6435] = {.lex_state = 502}, - [6436] = {.lex_state = 367}, - [6437] = {.lex_state = 367}, - [6438] = {.lex_state = 502}, - [6439] = {.lex_state = 367}, - [6440] = {.lex_state = 367}, - [6441] = {.lex_state = 502}, - [6442] = {.lex_state = 367}, - [6443] = {.lex_state = 367}, - [6444] = {.lex_state = 502}, - [6445] = {.lex_state = 367}, - [6446] = {.lex_state = 367}, - [6447] = {.lex_state = 502}, - [6448] = {.lex_state = 367}, - [6449] = {.lex_state = 367}, - [6450] = {.lex_state = 502}, - [6451] = {.lex_state = 367}, - [6452] = {.lex_state = 367}, - [6453] = {.lex_state = 78}, - [6454] = {.lex_state = 502}, - [6455] = {.lex_state = 367}, - [6456] = {.lex_state = 367}, - [6457] = {.lex_state = 959}, - [6458] = {.lex_state = 502}, - [6459] = {.lex_state = 367}, - [6460] = {.lex_state = 367}, - [6461] = {.lex_state = 502}, - [6462] = {.lex_state = 367}, - [6463] = {.lex_state = 367}, - [6464] = {.lex_state = 959}, - [6465] = {.lex_state = 502}, - [6466] = {.lex_state = 367}, - [6467] = {.lex_state = 367}, - [6468] = {.lex_state = 502}, - [6469] = {.lex_state = 367}, - [6470] = {.lex_state = 367}, - [6471] = {.lex_state = 502}, - [6472] = {.lex_state = 367}, - [6473] = {.lex_state = 367}, - [6474] = {.lex_state = 502}, - [6475] = {.lex_state = 367}, - [6476] = {.lex_state = 367}, - [6477] = {.lex_state = 959}, - [6478] = {.lex_state = 502}, - [6479] = {.lex_state = 367}, - [6480] = {.lex_state = 367}, - [6481] = {.lex_state = 502}, - [6482] = {.lex_state = 367}, - [6483] = {.lex_state = 367}, - [6484] = {.lex_state = 502}, - [6485] = {.lex_state = 367}, - [6486] = {.lex_state = 367}, - [6487] = {.lex_state = 263}, - [6488] = {.lex_state = 502}, - [6489] = {.lex_state = 367}, - [6490] = {.lex_state = 367}, - [6491] = {.lex_state = 511}, - [6492] = {.lex_state = 502}, - [6493] = {.lex_state = 367}, - [6494] = {.lex_state = 367}, - [6495] = {.lex_state = 502}, - [6496] = {.lex_state = 367}, - [6497] = {.lex_state = 367}, - [6498] = {.lex_state = 502}, - [6499] = {.lex_state = 367}, - [6500] = {.lex_state = 367}, - [6501] = {.lex_state = 502}, - [6502] = {.lex_state = 367}, - [6503] = {.lex_state = 367}, - [6504] = {.lex_state = 502}, - [6505] = {.lex_state = 367}, - [6506] = {.lex_state = 367}, - [6507] = {.lex_state = 502}, - [6508] = {.lex_state = 367}, - [6509] = {.lex_state = 367}, - [6510] = {.lex_state = 367}, - [6511] = {.lex_state = 367}, - [6512] = {.lex_state = 367}, - [6513] = {.lex_state = 367}, - [6514] = {.lex_state = 367}, - [6515] = {.lex_state = 367}, - [6516] = {.lex_state = 367}, - [6517] = {.lex_state = 367}, - [6518] = {.lex_state = 367}, - [6519] = {.lex_state = 367}, - [6520] = {.lex_state = 959}, - [6521] = {.lex_state = 959}, - [6522] = {.lex_state = 959}, - [6523] = {.lex_state = 959}, - [6524] = {.lex_state = 959}, - [6525] = {.lex_state = 103}, - [6526] = {.lex_state = 263}, - [6527] = {.lex_state = 959}, - [6528] = {.lex_state = 959}, - [6529] = {.lex_state = 445}, - [6530] = {.lex_state = 959}, - [6531] = {.lex_state = 496}, - [6532] = {.lex_state = 959}, - [6533] = {.lex_state = 959}, - [6534] = {.lex_state = 369}, - [6535] = {.lex_state = 959}, - [6536] = {.lex_state = 518}, - [6537] = {.lex_state = 367}, - [6538] = {.lex_state = 519}, - [6539] = {.lex_state = 297}, - [6540] = {.lex_state = 297}, - [6541] = {.lex_state = 297}, - [6542] = {.lex_state = 519}, - [6543] = {.lex_state = 518}, - [6544] = {.lex_state = 518}, - [6545] = {.lex_state = 418}, - [6546] = {.lex_state = 498}, - [6547] = {.lex_state = 959}, - [6548] = {.lex_state = 452}, - [6549] = {.lex_state = 263}, - [6550] = {.lex_state = 959}, - [6551] = {.lex_state = 959}, - [6552] = {.lex_state = 959}, - [6553] = {.lex_state = 959}, - [6554] = {.lex_state = 959}, - [6555] = {.lex_state = 959}, - [6556] = {.lex_state = 263}, - [6557] = {.lex_state = 959}, - [6558] = {.lex_state = 959}, - [6559] = {.lex_state = 263}, - [6560] = {.lex_state = 959}, - [6561] = {.lex_state = 392}, - [6562] = {.lex_state = 486}, - [6563] = {.lex_state = 959}, - [6564] = {.lex_state = 959}, - [6565] = {.lex_state = 522}, - [6566] = {.lex_state = 343}, - [6567] = {.lex_state = 343}, - [6568] = {.lex_state = 959}, - [6569] = {.lex_state = 1036}, - [6570] = {.lex_state = 409}, - [6571] = {.lex_state = 297}, - [6572] = {.lex_state = 263}, - [6573] = {.lex_state = 959}, - [6574] = {.lex_state = 448}, - [6575] = {.lex_state = 498}, - [6576] = {.lex_state = 263}, - [6577] = {.lex_state = 263}, - [6578] = {.lex_state = 263}, - [6579] = {.lex_state = 263}, - [6580] = {.lex_state = 263}, - [6581] = {.lex_state = 263}, - [6582] = {.lex_state = 263}, - [6583] = {.lex_state = 263}, - [6584] = {.lex_state = 502}, - [6585] = {.lex_state = 502}, - [6586] = {.lex_state = 263}, - [6587] = {.lex_state = 263}, - [6588] = {.lex_state = 103}, - [6589] = {.lex_state = 511}, - [6590] = {.lex_state = 445}, - [6591] = {.lex_state = 450}, - [6592] = {.lex_state = 367}, - [6593] = {.lex_state = 343}, - [6594] = {.lex_state = 445}, - [6595] = {.lex_state = 519}, - [6596] = {.lex_state = 343}, - [6597] = {.lex_state = 103}, - [6598] = {.lex_state = 486}, - [6599] = {.lex_state = 103}, - [6600] = {.lex_state = 452}, - [6601] = {.lex_state = 369}, - [6602] = {.lex_state = 959}, - [6603] = {.lex_state = 959}, - [6604] = {.lex_state = 959}, - [6605] = {.lex_state = 522}, - [6606] = {.lex_state = 297}, - [6607] = {.lex_state = 522}, - [6608] = {.lex_state = 502}, - [6609] = {.lex_state = 297}, - [6610] = {.lex_state = 959}, - [6611] = {.lex_state = 959}, - [6612] = {.lex_state = 263}, - [6613] = {.lex_state = 263}, - [6614] = {.lex_state = 263}, - [6615] = {.lex_state = 959}, - [6616] = {.lex_state = 370}, - [6617] = {.lex_state = 959}, - [6618] = {.lex_state = 959}, - [6619] = {.lex_state = 959}, - [6620] = {.lex_state = 452}, - [6621] = {.lex_state = 959}, - [6622] = {.lex_state = 959}, - [6623] = {.lex_state = 959}, - [6624] = {.lex_state = 959}, - [6625] = {.lex_state = 959}, - [6626] = {.lex_state = 263}, - [6627] = {.lex_state = 445}, - [6628] = {.lex_state = 959}, - [6629] = {.lex_state = 959}, - [6630] = {.lex_state = 959}, - [6631] = {.lex_state = 263}, - [6632] = {.lex_state = 450}, - [6633] = {.lex_state = 79}, - [6634] = {.lex_state = 367}, - [6635] = {.lex_state = 78}, - [6636] = {.lex_state = 959}, - [6637] = {.lex_state = 445}, - [6638] = {.lex_state = 263}, - [6639] = {.lex_state = 959}, - [6640] = {.lex_state = 99}, - [6641] = {.lex_state = 450}, - [6642] = {.lex_state = 959}, - [6643] = {.lex_state = 106}, - [6644] = {.lex_state = 106}, - [6645] = {.lex_state = 445}, - [6646] = {.lex_state = 502}, - [6647] = {.lex_state = 511}, - [6648] = {.lex_state = 44}, - [6649] = {.lex_state = 367}, - [6650] = {.lex_state = 511}, - [6651] = {.lex_state = 496}, - [6652] = {.lex_state = 263}, - [6653] = {.lex_state = 263}, - [6654] = {.lex_state = 496}, - [6655] = {.lex_state = 367}, - [6656] = {.lex_state = 103}, - [6657] = {.lex_state = 263}, - [6658] = {.lex_state = 105}, - [6659] = {.lex_state = 369}, - [6660] = {.lex_state = 502}, - [6661] = {.lex_state = 44}, - [6662] = {.lex_state = 263}, - [6663] = {.lex_state = 323}, - [6664] = {.lex_state = 263}, - [6665] = {.lex_state = 263}, - [6666] = {.lex_state = 263}, - [6667] = {.lex_state = 263}, - [6668] = {.lex_state = 263}, - [6669] = {.lex_state = 263}, - [6670] = {.lex_state = 263}, - [6671] = {.lex_state = 151}, - [6672] = {.lex_state = 959}, - [6673] = {.lex_state = 263}, - [6674] = {.lex_state = 451}, - [6675] = {.lex_state = 135}, - [6676] = {.lex_state = 959}, - [6677] = {.lex_state = 451}, - [6678] = {.lex_state = 263}, - [6679] = {.lex_state = 263}, - [6680] = {.lex_state = 959}, - [6681] = {.lex_state = 151}, - [6682] = {.lex_state = 451}, - [6683] = {.lex_state = 297}, - [6684] = {.lex_state = 263}, - [6685] = {.lex_state = 263}, - [6686] = {.lex_state = 263}, - [6687] = {.lex_state = 263}, - [6688] = {.lex_state = 263}, - [6689] = {.lex_state = 263}, - [6690] = {.lex_state = 297}, - [6691] = {.lex_state = 263}, - [6692] = {.lex_state = 263}, - [6693] = {.lex_state = 263}, - [6694] = {.lex_state = 959}, - [6695] = {.lex_state = 959}, - [6696] = {.lex_state = 151}, - [6697] = {.lex_state = 88}, - [6698] = {.lex_state = 959}, - [6699] = {.lex_state = 445}, - [6700] = {.lex_state = 959}, - [6701] = {.lex_state = 451}, - [6702] = {.lex_state = 959}, - [6703] = {.lex_state = 959}, - [6704] = {.lex_state = 151}, - [6705] = {.lex_state = 451}, - [6706] = {.lex_state = 263}, - [6707] = {.lex_state = 959}, - [6708] = {.lex_state = 263}, - [6709] = {.lex_state = 263}, - [6710] = {.lex_state = 263}, - [6711] = {.lex_state = 297}, - [6712] = {.lex_state = 263}, - [6713] = {.lex_state = 343}, - [6714] = {.lex_state = 263}, - [6715] = {.lex_state = 263}, - [6716] = {.lex_state = 297}, - [6717] = {.lex_state = 959}, - [6718] = {.lex_state = 263}, - [6719] = {.lex_state = 959}, - [6720] = {.lex_state = 959}, - [6721] = {.lex_state = 343}, - [6722] = {.lex_state = 959}, - [6723] = {.lex_state = 959}, - [6724] = {.lex_state = 263}, - [6725] = {.lex_state = 959}, - [6726] = {.lex_state = 451}, - [6727] = {.lex_state = 959}, - [6728] = {.lex_state = 959}, - [6729] = {.lex_state = 959}, - [6730] = {.lex_state = 451}, - [6731] = {.lex_state = 489}, - [6732] = {.lex_state = 959}, - [6733] = {.lex_state = 263}, - [6734] = {.lex_state = 959}, - [6735] = {.lex_state = 959}, - [6736] = {.lex_state = 497}, - [6737] = {.lex_state = 263}, - [6738] = {.lex_state = 263}, - [6739] = {.lex_state = 263}, - [6740] = {.lex_state = 33}, - [6741] = {.lex_state = 263}, - [6742] = {.lex_state = 263}, - [6743] = {.lex_state = 263}, - [6744] = {.lex_state = 263}, - [6745] = {.lex_state = 263}, - [6746] = {.lex_state = 263}, - [6747] = {.lex_state = 959}, - [6748] = {.lex_state = 263}, - [6749] = {.lex_state = 959}, - [6750] = {.lex_state = 959}, - [6751] = {.lex_state = 959}, - [6752] = {.lex_state = 263}, - [6753] = {.lex_state = 959}, - [6754] = {.lex_state = 451}, - [6755] = {.lex_state = 33}, - [6756] = {.lex_state = 497}, - [6757] = {.lex_state = 297}, - [6758] = {.lex_state = 451}, - [6759] = {.lex_state = 959}, - [6760] = {.lex_state = 959}, - [6761] = {.lex_state = 263}, - [6762] = {.lex_state = 151}, - [6763] = {.lex_state = 488}, - [6764] = {.lex_state = 938}, - [6765] = {.lex_state = 263}, - [6766] = {.lex_state = 263}, - [6767] = {.lex_state = 263}, - [6768] = {.lex_state = 959}, - [6769] = {.lex_state = 263}, - [6770] = {.lex_state = 959}, - [6771] = {.lex_state = 263}, - [6772] = {.lex_state = 263}, - [6773] = {.lex_state = 343}, - [6774] = {.lex_state = 343}, - [6775] = {.lex_state = 263}, - [6776] = {.lex_state = 959}, - [6777] = {.lex_state = 959}, - [6778] = {.lex_state = 959}, - [6779] = {.lex_state = 297}, - [6780] = {.lex_state = 263}, - [6781] = {.lex_state = 297}, - [6782] = {.lex_state = 451}, - [6783] = {.lex_state = 959}, - [6784] = {.lex_state = 959}, - [6785] = {.lex_state = 297}, - [6786] = {.lex_state = 959}, - [6787] = {.lex_state = 451}, - [6788] = {.lex_state = 959}, - [6789] = {.lex_state = 263}, - [6790] = {.lex_state = 297}, - [6791] = {.lex_state = 959}, - [6792] = {.lex_state = 263}, - [6793] = {.lex_state = 263}, - [6794] = {.lex_state = 263}, - [6795] = {.lex_state = 959}, - [6796] = {.lex_state = 263}, - [6797] = {.lex_state = 959}, - [6798] = {.lex_state = 263}, - [6799] = {.lex_state = 263}, - [6800] = {.lex_state = 263}, - [6801] = {.lex_state = 263}, - [6802] = {.lex_state = 33}, - [6803] = {.lex_state = 959}, - [6804] = {.lex_state = 959}, - [6805] = {.lex_state = 297}, - [6806] = {.lex_state = 451}, - [6807] = {.lex_state = 959}, - [6808] = {.lex_state = 959}, - [6809] = {.lex_state = 451}, - [6810] = {.lex_state = 451}, - [6811] = {.lex_state = 263}, - [6812] = {.lex_state = 959}, - [6813] = {.lex_state = 263}, - [6814] = {.lex_state = 263}, - [6815] = {.lex_state = 263}, - [6816] = {.lex_state = 297}, - [6817] = {.lex_state = 263}, - [6818] = {.lex_state = 33}, - [6819] = {.lex_state = 263}, - [6820] = {.lex_state = 263}, - [6821] = {.lex_state = 297}, - [6822] = {.lex_state = 263}, - [6823] = {.lex_state = 263}, - [6824] = {.lex_state = 297}, - [6825] = {.lex_state = 297}, - [6826] = {.lex_state = 263}, - [6827] = {.lex_state = 263}, - [6828] = {.lex_state = 297}, - [6829] = {.lex_state = 297}, - [6830] = {.lex_state = 958}, - [6831] = {.lex_state = 297}, - [6832] = {.lex_state = 451}, - [6833] = {.lex_state = 959}, - [6834] = {.lex_state = 343}, - [6835] = {.lex_state = 451}, - [6836] = {.lex_state = 297}, - [6837] = {.lex_state = 263}, - [6838] = {.lex_state = 297}, - [6839] = {.lex_state = 959}, - [6840] = {.lex_state = 263}, - [6841] = {.lex_state = 263}, - [6842] = {.lex_state = 263}, - [6843] = {.lex_state = 958}, - [6844] = {.lex_state = 263}, - [6845] = {.lex_state = 297}, - [6846] = {.lex_state = 297}, - [6847] = {.lex_state = 263}, - [6848] = {.lex_state = 263}, - [6849] = {.lex_state = 263}, - [6850] = {.lex_state = 297}, - [6851] = {.lex_state = 297}, - [6852] = {.lex_state = 959}, - [6853] = {.lex_state = 959}, - [6854] = {.lex_state = 516}, - [6855] = {.lex_state = 297}, - [6856] = {.lex_state = 297}, - [6857] = {.lex_state = 958}, - [6858] = {.lex_state = 263}, - [6859] = {.lex_state = 451}, - [6860] = {.lex_state = 263}, - [6861] = {.lex_state = 958}, - [6862] = {.lex_state = 958}, - [6863] = {.lex_state = 297}, - [6864] = {.lex_state = 451}, - [6865] = {.lex_state = 263}, - [6866] = {.lex_state = 263}, - [6867] = {.lex_state = 263}, - [6868] = {.lex_state = 263}, - [6869] = {.lex_state = 297}, - [6870] = {.lex_state = 263}, - [6871] = {.lex_state = 959}, - [6872] = {.lex_state = 35}, - [6873] = {.lex_state = 263}, - [6874] = {.lex_state = 263}, - [6875] = {.lex_state = 263}, - [6876] = {.lex_state = 263}, - [6877] = {.lex_state = 514}, - [6878] = {.lex_state = 297}, - [6879] = {.lex_state = 263}, - [6880] = {.lex_state = 273}, - [6881] = {.lex_state = 273}, - [6882] = {.lex_state = 297}, - [6883] = {.lex_state = 451}, - [6884] = {.lex_state = 263}, - [6885] = {.lex_state = 959}, - [6886] = {.lex_state = 451}, - [6887] = {.lex_state = 263}, - [6888] = {.lex_state = 958}, - [6889] = {.lex_state = 263}, - [6890] = {.lex_state = 263}, - [6891] = {.lex_state = 263}, - [6892] = {.lex_state = 263}, - [6893] = {.lex_state = 297}, - [6894] = {.lex_state = 33}, - [6895] = {.lex_state = 263}, - [6896] = {.lex_state = 263}, - [6897] = {.lex_state = 959}, - [6898] = {.lex_state = 959}, - [6899] = {.lex_state = 263}, - [6900] = {.lex_state = 959}, - [6901] = {.lex_state = 343}, - [6902] = {.lex_state = 959}, - [6903] = {.lex_state = 343}, - [6904] = {.lex_state = 959}, - [6905] = {.lex_state = 451}, - [6906] = {.lex_state = 343}, - [6907] = {.lex_state = 451}, - [6908] = {.lex_state = 263}, - [6909] = {.lex_state = 959}, - [6910] = {.lex_state = 263}, - [6911] = {.lex_state = 263}, - [6912] = {.lex_state = 263}, - [6913] = {.lex_state = 959}, - [6914] = {.lex_state = 263}, - [6915] = {.lex_state = 958}, - [6916] = {.lex_state = 89}, - [6917] = {.lex_state = 263}, - [6918] = {.lex_state = 263}, - [6919] = {.lex_state = 958}, - [6920] = {.lex_state = 263}, - [6921] = {.lex_state = 959}, - [6922] = {.lex_state = 263}, - [6923] = {.lex_state = 297}, - [6924] = {.lex_state = 263}, - [6925] = {.lex_state = 263}, - [6926] = {.lex_state = 263}, - [6927] = {.lex_state = 263}, - [6928] = {.lex_state = 263}, - [6929] = {.lex_state = 263}, - [6930] = {.lex_state = 263}, - [6931] = {.lex_state = 959}, - [6932] = {.lex_state = 263}, - [6933] = {.lex_state = 263}, - [6934] = {.lex_state = 960}, - [6935] = {.lex_state = 263}, - [6936] = {.lex_state = 263}, - [6937] = {.lex_state = 959}, - [6938] = {.lex_state = 323}, - [6939] = {.lex_state = 263}, - [6940] = {.lex_state = 33}, - [6941] = {.lex_state = 263}, - [6942] = {.lex_state = 263}, - [6943] = {.lex_state = 263}, - [6944] = {.lex_state = 263}, - [6945] = {.lex_state = 959}, - [6946] = {.lex_state = 263}, - [6947] = {.lex_state = 135}, - [6948] = {.lex_state = 297}, - [6949] = {.lex_state = 263}, - [6950] = {.lex_state = 263}, - [6951] = {.lex_state = 263}, - [6952] = {.lex_state = 959}, - [6953] = {.lex_state = 486}, - [6954] = {.lex_state = 497}, - [6955] = {.lex_state = 959}, - [6956] = {.lex_state = 959}, - [6957] = {.lex_state = 959}, - [6958] = {.lex_state = 263}, - [6959] = {.lex_state = 263}, - [6960] = {.lex_state = 263}, - [6961] = {.lex_state = 263}, - [6962] = {.lex_state = 486}, - [6963] = {.lex_state = 263}, - [6964] = {.lex_state = 263}, - [6965] = {.lex_state = 263}, - [6966] = {.lex_state = 958}, - [6967] = {.lex_state = 263}, - [6968] = {.lex_state = 959}, - [6969] = {.lex_state = 263}, - [6970] = {.lex_state = 959}, - [6971] = {.lex_state = 450}, - [6972] = {.lex_state = 263}, - [6973] = {.lex_state = 263}, - [6974] = {.lex_state = 263}, - [6975] = {.lex_state = 451}, - [6976] = {.lex_state = 263}, - [6977] = {.lex_state = 263}, - [6978] = {.lex_state = 263}, - [6979] = {.lex_state = 263}, - [6980] = {.lex_state = 263}, - [6981] = {.lex_state = 101}, - [6982] = {.lex_state = 959}, - [6983] = {.lex_state = 959}, - [6984] = {.lex_state = 391}, - [6985] = {.lex_state = 151}, - [6986] = {.lex_state = 451}, - [6987] = {.lex_state = 959}, - [6988] = {.lex_state = 263}, - [6989] = {.lex_state = 958}, - [6990] = {.lex_state = 297}, - [6991] = {.lex_state = 263}, - [6992] = {.lex_state = 263}, - [6993] = {.lex_state = 263}, - [6994] = {.lex_state = 263}, - [6995] = {.lex_state = 523}, - [6996] = {.lex_state = 263}, - [6997] = {.lex_state = 33}, - [6998] = {.lex_state = 263}, - [6999] = {.lex_state = 263}, - [7000] = {.lex_state = 263}, - [7001] = {.lex_state = 959}, - [7002] = {.lex_state = 959}, - [7003] = {.lex_state = 959}, - [7004] = {.lex_state = 959}, - [7005] = {.lex_state = 959}, - [7006] = {.lex_state = 958}, - [7007] = {.lex_state = 323}, - [7008] = {.lex_state = 263}, - [7009] = {.lex_state = 263}, - [7010] = {.lex_state = 959}, - [7011] = {.lex_state = 297}, - [7012] = {.lex_state = 956}, - [7013] = {.lex_state = 512}, - [7014] = {.lex_state = 263}, - [7015] = {.lex_state = 263}, - [7016] = {.lex_state = 486}, - [7017] = {.lex_state = 297}, - [7018] = {.lex_state = 263}, - [7019] = {.lex_state = 263}, - [7020] = {.lex_state = 959}, - [7021] = {.lex_state = 959}, - [7022] = {.lex_state = 486}, - [7023] = {.lex_state = 263}, - [7024] = {.lex_state = 959}, - [7025] = {.lex_state = 263}, - [7026] = {.lex_state = 410}, - [7027] = {.lex_state = 451}, - [7028] = {.lex_state = 297}, - [7029] = {.lex_state = 959}, - [7030] = {.lex_state = 89}, - [7031] = {.lex_state = 323}, - [7032] = {.lex_state = 959}, - [7033] = {.lex_state = 263}, - [7034] = {.lex_state = 297}, - [7035] = {.lex_state = 486}, - [7036] = {.lex_state = 101}, - [7037] = {.lex_state = 959}, - [7038] = {.lex_state = 959}, - [7039] = {.lex_state = 956}, - [7040] = {.lex_state = 101}, - [7041] = {.lex_state = 959}, - [7042] = {.lex_state = 959}, - [7043] = {.lex_state = 959}, - [7044] = {.lex_state = 101}, - [7045] = {.lex_state = 512}, - [7046] = {.lex_state = 151}, - [7047] = {.lex_state = 263}, - [7048] = {.lex_state = 323}, - [7049] = {.lex_state = 451}, - [7050] = {.lex_state = 451}, - [7051] = {.lex_state = 323}, - [7052] = {.lex_state = 959}, - [7053] = {.lex_state = 89}, - [7054] = {.lex_state = 959}, - [7055] = {.lex_state = 367}, - [7056] = {.lex_state = 263}, - [7057] = {.lex_state = 959}, - [7058] = {.lex_state = 497}, - [7059] = {.lex_state = 263}, - [7060] = {.lex_state = 959}, - [7061] = {.lex_state = 959}, - [7062] = {.lex_state = 959}, - [7063] = {.lex_state = 524}, - [7064] = {.lex_state = 263}, - [7065] = {.lex_state = 263}, - [7066] = {.lex_state = 959}, - [7067] = {.lex_state = 451}, - [7068] = {.lex_state = 263}, - [7069] = {.lex_state = 35}, - [7070] = {.lex_state = 497}, - [7071] = {.lex_state = 89}, - [7072] = {.lex_state = 263}, - [7073] = {.lex_state = 263}, - [7074] = {.lex_state = 263}, - [7075] = {.lex_state = 959}, - [7076] = {.lex_state = 263}, - [7077] = {.lex_state = 451}, - [7078] = {.lex_state = 263}, - [7079] = {.lex_state = 263}, - [7080] = {.lex_state = 263}, - [7081] = {.lex_state = 297}, - [7082] = {.lex_state = 297}, - [7083] = {.lex_state = 297}, - [7084] = {.lex_state = 263}, - [7085] = {.lex_state = 263}, - [7086] = {.lex_state = 297}, - [7087] = {.lex_state = 263}, - [7088] = {.lex_state = 263}, - [7089] = {.lex_state = 959}, - [7090] = {.lex_state = 523}, - [7091] = {.lex_state = 490}, - [7092] = {.lex_state = 959}, - [7093] = {.lex_state = 959}, - [7094] = {.lex_state = 959}, - [7095] = {.lex_state = 514}, - [7096] = {.lex_state = 497}, - [7097] = {.lex_state = 514}, - [7098] = {.lex_state = 101}, - [7099] = {.lex_state = 959}, - [7100] = {.lex_state = 89}, - [7101] = {.lex_state = 959}, - [7102] = {.lex_state = 297}, - [7103] = {.lex_state = 297}, - [7104] = {.lex_state = 486}, - [7105] = {.lex_state = 101}, - [7106] = {.lex_state = 959}, - [7107] = {.lex_state = 959}, - [7108] = {.lex_state = 959}, - [7109] = {.lex_state = 135}, - [7110] = {.lex_state = 959}, - [7111] = {.lex_state = 263}, - [7112] = {.lex_state = 263}, - [7113] = {.lex_state = 263}, - [7114] = {.lex_state = 263}, - [7115] = {.lex_state = 263}, - [7116] = {.lex_state = 263}, - [7117] = {.lex_state = 263}, - [7118] = {.lex_state = 959}, - [7119] = {.lex_state = 451}, - [7120] = {.lex_state = 263}, - [7121] = {.lex_state = 297}, - [7122] = {.lex_state = 959}, - [7123] = {.lex_state = 323}, - [7124] = {.lex_state = 89}, - [7125] = {.lex_state = 89}, - [7126] = {.lex_state = 323}, - [7127] = {.lex_state = 297}, - [7128] = {.lex_state = 959}, - [7129] = {.lex_state = 959}, - [7130] = {.lex_state = 959}, - [7131] = {.lex_state = 959}, - [7132] = {.lex_state = 959}, - [7133] = {.lex_state = 497}, - [7134] = {.lex_state = 323}, - [7135] = {.lex_state = 151}, - [7136] = {.lex_state = 323}, - [7137] = {.lex_state = 959}, - [7138] = {.lex_state = 959}, - [7139] = {.lex_state = 451}, - [7140] = {.lex_state = 959}, - [7141] = {.lex_state = 959}, - [7142] = {.lex_state = 959}, - [7143] = {.lex_state = 323}, - [7144] = {.lex_state = 297}, - [7145] = {.lex_state = 323}, - [7146] = {.lex_state = 959}, - [7147] = {.lex_state = 959}, - [7148] = {.lex_state = 959}, - [7149] = {.lex_state = 959}, - [7150] = {.lex_state = 323}, - [7151] = {.lex_state = 451}, - [7152] = {.lex_state = 323}, - [7153] = {.lex_state = 263}, - [7154] = {.lex_state = 959}, - [7155] = {.lex_state = 959}, - [7156] = {.lex_state = 959}, - [7157] = {.lex_state = 959}, - [7158] = {.lex_state = 323}, - [7159] = {.lex_state = 297}, - [7160] = {.lex_state = 323}, - [7161] = {.lex_state = 959}, - [7162] = {.lex_state = 959}, - [7163] = {.lex_state = 959}, - [7164] = {.lex_state = 959}, - [7165] = {.lex_state = 323}, - [7166] = {.lex_state = 524}, - [7167] = {.lex_state = 323}, - [7168] = {.lex_state = 451}, - [7169] = {.lex_state = 959}, - [7170] = {.lex_state = 959}, - [7171] = {.lex_state = 263}, - [7172] = {.lex_state = 959}, - [7173] = {.lex_state = 959}, - [7174] = {.lex_state = 323}, - [7175] = {.lex_state = 263}, - [7176] = {.lex_state = 323}, - [7177] = {.lex_state = 263}, - [7178] = {.lex_state = 959}, - [7179] = {.lex_state = 959}, - [7180] = {.lex_state = 959}, - [7181] = {.lex_state = 959}, - [7182] = {.lex_state = 323}, - [7183] = {.lex_state = 323}, - [7184] = {.lex_state = 959}, - [7185] = {.lex_state = 959}, - [7186] = {.lex_state = 959}, - [7187] = {.lex_state = 263}, - [7188] = {.lex_state = 959}, - [7189] = {.lex_state = 959}, - [7190] = {.lex_state = 323}, - [7191] = {.lex_state = 323}, - [7192] = {.lex_state = 959}, - [7193] = {.lex_state = 959}, - [7194] = {.lex_state = 959}, - [7195] = {.lex_state = 959}, - [7196] = {.lex_state = 323}, - [7197] = {.lex_state = 263}, - [7198] = {.lex_state = 323}, - [7199] = {.lex_state = 263}, - [7200] = {.lex_state = 959}, - [7201] = {.lex_state = 959}, - [7202] = {.lex_state = 959}, - [7203] = {.lex_state = 959}, - [7204] = {.lex_state = 323}, - [7205] = {.lex_state = 263}, - [7206] = {.lex_state = 323}, - [7207] = {.lex_state = 263}, - [7208] = {.lex_state = 959}, - [7209] = {.lex_state = 959}, - [7210] = {.lex_state = 959}, - [7211] = {.lex_state = 959}, - [7212] = {.lex_state = 323}, - [7213] = {.lex_state = 323}, - [7214] = {.lex_state = 959}, - [7215] = {.lex_state = 959}, - [7216] = {.lex_state = 323}, - [7217] = {.lex_state = 959}, - [7218] = {.lex_state = 959}, - [7219] = {.lex_state = 323}, - [7220] = {.lex_state = 497}, - [7221] = {.lex_state = 323}, - [7222] = {.lex_state = 959}, - [7223] = {.lex_state = 959}, - [7224] = {.lex_state = 959}, - [7225] = {.lex_state = 959}, - [7226] = {.lex_state = 323}, - [7227] = {.lex_state = 297}, - [7228] = {.lex_state = 959}, - [7229] = {.lex_state = 959}, - [7230] = {.lex_state = 959}, - [7231] = {.lex_state = 959}, - [7232] = {.lex_state = 323}, - [7233] = {.lex_state = 323}, - [7234] = {.lex_state = 959}, - [7235] = {.lex_state = 959}, - [7236] = {.lex_state = 959}, - [7237] = {.lex_state = 959}, - [7238] = {.lex_state = 959}, - [7239] = {.lex_state = 323}, - [7240] = {.lex_state = 323}, - [7241] = {.lex_state = 959}, - [7242] = {.lex_state = 959}, - [7243] = {.lex_state = 959}, - [7244] = {.lex_state = 959}, - [7245] = {.lex_state = 323}, - [7246] = {.lex_state = 323}, - [7247] = {.lex_state = 959}, - [7248] = {.lex_state = 959}, - [7249] = {.lex_state = 486}, - [7250] = {.lex_state = 959}, - [7251] = {.lex_state = 959}, - [7252] = {.lex_state = 323}, - [7253] = {.lex_state = 323}, - [7254] = {.lex_state = 959}, - [7255] = {.lex_state = 959}, - [7256] = {.lex_state = 959}, - [7257] = {.lex_state = 959}, - [7258] = {.lex_state = 323}, - [7259] = {.lex_state = 323}, - [7260] = {.lex_state = 959}, - [7261] = {.lex_state = 959}, - [7262] = {.lex_state = 959}, - [7263] = {.lex_state = 959}, - [7264] = {.lex_state = 959}, - [7265] = {.lex_state = 323}, - [7266] = {.lex_state = 323}, - [7267] = {.lex_state = 959}, - [7268] = {.lex_state = 959}, - [7269] = {.lex_state = 959}, - [7270] = {.lex_state = 959}, - [7271] = {.lex_state = 514}, - [7272] = {.lex_state = 514}, - [7273] = {.lex_state = 524}, - [7274] = {.lex_state = 958}, - [7275] = {.lex_state = 451}, - [7276] = {.lex_state = 451}, - [7277] = {.lex_state = 263}, - [7278] = {.lex_state = 497}, - [7279] = {.lex_state = 297}, - [7280] = {.lex_state = 135}, - [7281] = {.lex_state = 151}, - [7282] = {.lex_state = 451}, - [7283] = {.lex_state = 959}, - [7284] = {.lex_state = 297}, - [7285] = {.lex_state = 958}, - [7286] = {.lex_state = 263}, - [7287] = {.lex_state = 263}, - [7288] = {.lex_state = 958}, - [7289] = {.lex_state = 938}, - [7290] = {.lex_state = 959}, - [7291] = {.lex_state = 263}, - [7292] = {.lex_state = 263}, - [7293] = {.lex_state = 497}, - [7294] = {.lex_state = 381}, - [7295] = {.lex_state = 956}, - [7296] = {.lex_state = 959}, - [7297] = {.lex_state = 99}, - [7298] = {.lex_state = 959}, - [7299] = {.lex_state = 261}, - [7300] = {.lex_state = 960}, - [7301] = {.lex_state = 4820}, - [7302] = {.lex_state = 99}, - [7303] = {.lex_state = 263}, - [7304] = {.lex_state = 4820}, - [7305] = {.lex_state = 4820}, - [7306] = {.lex_state = 520}, - [7307] = {.lex_state = 4820}, - [7308] = {.lex_state = 4820}, - [7309] = {.lex_state = 959}, - [7310] = {.lex_state = 959}, - [7311] = {.lex_state = 31}, - [7312] = {.lex_state = 959}, - [7313] = {.lex_state = 3563}, - [7314] = {.lex_state = 263}, - [7315] = {.lex_state = 261}, - [7316] = {.lex_state = 135}, - [7317] = {.lex_state = 4816}, - [7318] = {.lex_state = 4816}, - [7319] = {.lex_state = 959}, - [7320] = {.lex_state = 263}, - [7321] = {.lex_state = 99}, - [7322] = {.lex_state = 263}, - [7323] = {.lex_state = 4820}, - [7324] = {.lex_state = 263}, - [7325] = {.lex_state = 263}, - [7326] = {.lex_state = 261}, - [7327] = {.lex_state = 263}, - [7328] = {.lex_state = 959}, - [7329] = {.lex_state = 261}, - [7330] = {.lex_state = 959}, - [7331] = {.lex_state = 263}, - [7332] = {.lex_state = 4816}, - [7333] = {.lex_state = 4818}, - [7334] = {.lex_state = 263}, - [7335] = {.lex_state = 263}, - [7336] = {.lex_state = 381}, - [7337] = {.lex_state = 261}, - [7338] = {.lex_state = 4816}, - [7339] = {.lex_state = 4816}, - [7340] = {.lex_state = 4820}, - [7341] = {.lex_state = 512}, - [7342] = {.lex_state = 4816}, - [7343] = {.lex_state = 4820}, - [7344] = {.lex_state = 263}, - [7345] = {.lex_state = 4816}, - [7346] = {.lex_state = 4816}, - [7347] = {.lex_state = 959}, - [7348] = {.lex_state = 959}, - [7349] = {.lex_state = 263}, - [7350] = {.lex_state = 263}, - [7351] = {.lex_state = 4816}, - [7352] = {.lex_state = 4816}, - [7353] = {.lex_state = 4816}, - [7354] = {.lex_state = 959}, - [7355] = {.lex_state = 959}, - [7356] = {.lex_state = 938}, - [7357] = {.lex_state = 4818}, - [7358] = {.lex_state = 263}, - [7359] = {.lex_state = 959}, - [7360] = {.lex_state = 263}, - [7361] = {.lex_state = 263}, - [7362] = {.lex_state = 959}, - [7363] = {.lex_state = 959}, - [7364] = {.lex_state = 959}, - [7365] = {.lex_state = 520}, - [7366] = {.lex_state = 959}, - [7367] = {.lex_state = 959}, - [7368] = {.lex_state = 520}, - [7369] = {.lex_state = 520}, - [7370] = {.lex_state = 959}, - [7371] = {.lex_state = 4816}, - [7372] = {.lex_state = 959}, - [7373] = {.lex_state = 959}, - [7374] = {.lex_state = 959}, - [7375] = {.lex_state = 263}, - [7376] = {.lex_state = 4816}, - [7377] = {.lex_state = 959}, - [7378] = {.lex_state = 4818}, - [7379] = {.lex_state = 451}, - [7380] = {.lex_state = 959}, - [7381] = {.lex_state = 263}, - [7382] = {.lex_state = 520}, - [7383] = {.lex_state = 261}, - [7384] = {.lex_state = 4816}, - [7385] = {.lex_state = 4818}, - [7386] = {.lex_state = 500}, - [7387] = {.lex_state = 959}, - [7388] = {.lex_state = 263}, - [7389] = {.lex_state = 135}, - [7390] = {.lex_state = 4816}, - [7391] = {.lex_state = 261}, - [7392] = {.lex_state = 4820}, - [7393] = {.lex_state = 4816}, - [7394] = {.lex_state = 135}, - [7395] = {.lex_state = 4816}, - [7396] = {.lex_state = 4818}, - [7397] = {.lex_state = 261}, - [7398] = {.lex_state = 4818}, - [7399] = {.lex_state = 960}, - [7400] = {.lex_state = 135}, - [7401] = {.lex_state = 959}, - [7402] = {.lex_state = 261}, - [7403] = {.lex_state = 4816}, - [7404] = {.lex_state = 959}, - [7405] = {.lex_state = 4816}, - [7406] = {.lex_state = 261}, - [7407] = {.lex_state = 44}, - [7408] = {.lex_state = 4816}, - [7409] = {.lex_state = 263}, - [7410] = {.lex_state = 261}, - [7411] = {.lex_state = 4816}, - [7412] = {.lex_state = 135}, - [7413] = {.lex_state = 4816}, - [7414] = {.lex_state = 4818}, - [7415] = {.lex_state = 263}, - [7416] = {.lex_state = 261}, - [7417] = {.lex_state = 4816}, - [7418] = {.lex_state = 4816}, - [7419] = {.lex_state = 261}, - [7420] = {.lex_state = 4816}, - [7421] = {.lex_state = 4816}, - [7422] = {.lex_state = 959}, - [7423] = {.lex_state = 263}, - [7424] = {.lex_state = 151}, - [7425] = {.lex_state = 4816}, - [7426] = {.lex_state = 959}, - [7427] = {.lex_state = 4816}, - [7428] = {.lex_state = 4816}, - [7429] = {.lex_state = 959}, - [7430] = {.lex_state = 261}, - [7431] = {.lex_state = 4816}, - [7432] = {.lex_state = 959}, - [7433] = {.lex_state = 135}, - [7434] = {.lex_state = 261}, - [7435] = {.lex_state = 959}, - [7436] = {.lex_state = 4818}, - [7437] = {.lex_state = 523}, - [7438] = {.lex_state = 521}, - [7439] = {.lex_state = 959}, - [7440] = {.lex_state = 959}, - [7441] = {.lex_state = 263}, - [7442] = {.lex_state = 31}, - [7443] = {.lex_state = 959}, - [7444] = {.lex_state = 959}, - [7445] = {.lex_state = 960}, - [7446] = {.lex_state = 135}, - [7447] = {.lex_state = 135}, - [7448] = {.lex_state = 959}, - [7449] = {.lex_state = 4818}, - [7450] = {.lex_state = 263}, - [7451] = {.lex_state = 959}, - [7452] = {.lex_state = 959}, - [7453] = {.lex_state = 4816}, - [7454] = {.lex_state = 4816}, - [7455] = {.lex_state = 959}, - [7456] = {.lex_state = 135}, - [7457] = {.lex_state = 959}, - [7458] = {.lex_state = 959}, - [7459] = {.lex_state = 263}, - [7460] = {.lex_state = 4816}, - [7461] = {.lex_state = 4816}, - [7462] = {.lex_state = 960}, - [7463] = {.lex_state = 4816}, - [7464] = {.lex_state = 4816}, - [7465] = {.lex_state = 381}, - [7466] = {.lex_state = 959}, - [7467] = {.lex_state = 959}, - [7468] = {.lex_state = 135}, - [7469] = {.lex_state = 4816}, - [7470] = {.lex_state = 261}, - [7471] = {.lex_state = 959}, - [7472] = {.lex_state = 959}, - [7473] = {.lex_state = 959}, - [7474] = {.lex_state = 959}, - [7475] = {.lex_state = 44}, - [7476] = {.lex_state = 507}, - [7477] = {.lex_state = 151}, - [7478] = {.lex_state = 135}, - [7479] = {.lex_state = 508}, - [7480] = {.lex_state = 959}, - [7481] = {.lex_state = 959}, - [7482] = {.lex_state = 959}, - [7483] = {.lex_state = 959}, - [7484] = {.lex_state = 44}, - [7485] = {.lex_state = 959}, - [7486] = {.lex_state = 135}, - [7487] = {.lex_state = 44}, - [7488] = {.lex_state = 151}, - [7489] = {.lex_state = 959}, - [7490] = {.lex_state = 959}, - [7491] = {.lex_state = 959}, - [7492] = {.lex_state = 135}, - [7493] = {.lex_state = 934}, - [7494] = {.lex_state = 959}, - [7495] = {.lex_state = 959}, - [7496] = {.lex_state = 959}, - [7497] = {.lex_state = 959}, - [7498] = {.lex_state = 959}, - [7499] = {.lex_state = 959}, - [7500] = {.lex_state = 99}, - [7501] = {.lex_state = 101}, - [7502] = {.lex_state = 151}, - [7503] = {.lex_state = 510}, - [7504] = {.lex_state = 959}, - [7505] = {.lex_state = 959}, - [7506] = {.lex_state = 959}, - [7507] = {.lex_state = 101}, - [7508] = {.lex_state = 47}, - [7509] = {.lex_state = 959}, - [7510] = {.lex_state = 959}, - [7511] = {.lex_state = 959}, - [7512] = {.lex_state = 959}, - [7513] = {.lex_state = 959}, - [7514] = {.lex_state = 508}, - [7515] = {.lex_state = 521}, - [7516] = {.lex_state = 959}, - [7517] = {.lex_state = 135}, - [7518] = {.lex_state = 959}, - [7519] = {.lex_state = 959}, - [7520] = {.lex_state = 959}, - [7521] = {.lex_state = 47}, - [7522] = {.lex_state = 521}, - [7523] = {.lex_state = 959}, - [7524] = {.lex_state = 959}, - [7525] = {.lex_state = 959}, - [7526] = {.lex_state = 959}, - [7527] = {.lex_state = 959}, - [7528] = {.lex_state = 959}, - [7529] = {.lex_state = 959}, - [7530] = {.lex_state = 959}, - [7531] = {.lex_state = 151}, - [7532] = {.lex_state = 959}, - [7533] = {.lex_state = 959}, - [7534] = {.lex_state = 959}, - [7535] = {.lex_state = 959}, - [7536] = {.lex_state = 959}, - [7537] = {.lex_state = 959}, - [7538] = {.lex_state = 959}, - [7539] = {.lex_state = 959}, - [7540] = {.lex_state = 959}, - [7541] = {.lex_state = 261}, - [7542] = {.lex_state = 4818}, - [7543] = {.lex_state = 959}, - [7544] = {.lex_state = 959}, - [7545] = {.lex_state = 959}, - [7546] = {.lex_state = 521}, - [7547] = {.lex_state = 959}, - [7548] = {.lex_state = 508}, - [7549] = {.lex_state = 101}, - [7550] = {.lex_state = 959}, - [7551] = {.lex_state = 135}, - [7552] = {.lex_state = 959}, - [7553] = {.lex_state = 101}, - [7554] = {.lex_state = 959}, - [7555] = {.lex_state = 959}, - [7556] = {.lex_state = 101}, - [7557] = {.lex_state = 99}, - [7558] = {.lex_state = 959}, - [7559] = {.lex_state = 959}, - [7560] = {.lex_state = 959}, - [7561] = {.lex_state = 959}, - [7562] = {.lex_state = 959}, - [7563] = {.lex_state = 959}, - [7564] = {.lex_state = 959}, - [7565] = {.lex_state = 959}, - [7566] = {.lex_state = 135}, - [7567] = {.lex_state = 959}, - [7568] = {.lex_state = 101}, - [7569] = {.lex_state = 101}, - [7570] = {.lex_state = 4816}, - [7571] = {.lex_state = 959}, - [7572] = {.lex_state = 959}, - [7573] = {.lex_state = 959}, - [7574] = {.lex_state = 959}, - [7575] = {.lex_state = 959}, - [7576] = {.lex_state = 959}, - [7577] = {.lex_state = 959}, - [7578] = {.lex_state = 959}, - [7579] = {.lex_state = 101}, - [7580] = {.lex_state = 959}, - [7581] = {.lex_state = 959}, - [7582] = {.lex_state = 101}, - [7583] = {.lex_state = 959}, - [7584] = {.lex_state = 959}, - [7585] = {.lex_state = 959}, - [7586] = {.lex_state = 959}, - [7587] = {.lex_state = 4820}, - [7588] = {.lex_state = 956}, - [7589] = {.lex_state = 959}, - [7590] = {.lex_state = 934}, - [7591] = {.lex_state = 959}, - [7592] = {.lex_state = 135}, - [7593] = {.lex_state = 959}, - [7594] = {.lex_state = 101}, - [7595] = {.lex_state = 959}, - [7596] = {.lex_state = 44}, - [7597] = {.lex_state = 959}, - [7598] = {.lex_state = 44}, - [7599] = {.lex_state = 959}, - [7600] = {.lex_state = 510}, - [7601] = {.lex_state = 509}, - [7602] = {.lex_state = 959}, - [7603] = {.lex_state = 959}, - [7604] = {.lex_state = 44}, - [7605] = {.lex_state = 101}, - [7606] = {.lex_state = 959}, - [7607] = {.lex_state = 521}, - [7608] = {.lex_state = 959}, - [7609] = {.lex_state = 959}, - [7610] = {.lex_state = 959}, - [7611] = {.lex_state = 959}, - [7612] = {.lex_state = 959}, - [7613] = {.lex_state = 959}, - [7614] = {.lex_state = 959}, - [7615] = {.lex_state = 959}, - [7616] = {.lex_state = 101}, - [7617] = {.lex_state = 959}, - [7618] = {.lex_state = 959}, - [7619] = {.lex_state = 959}, - [7620] = {.lex_state = 4818}, - [7621] = {.lex_state = 959}, - [7622] = {.lex_state = 959}, - [7623] = {.lex_state = 959}, - [7624] = {.lex_state = 959}, - [7625] = {.lex_state = 959}, - [7626] = {.lex_state = 151}, - [7627] = {.lex_state = 101}, - [7628] = {.lex_state = 959}, - [7629] = {.lex_state = 959}, - [7630] = {.lex_state = 959}, - [7631] = {.lex_state = 956}, - [7632] = {.lex_state = 391}, - [7633] = {.lex_state = 135}, - [7634] = {.lex_state = 959}, - [7635] = {.lex_state = 959}, - [7636] = {.lex_state = 959}, - [7637] = {.lex_state = 959}, - [7638] = {.lex_state = 101}, - [7639] = {.lex_state = 959}, - [7640] = {.lex_state = 956}, - [7641] = {.lex_state = 959}, - [7642] = {.lex_state = 959}, - [7643] = {.lex_state = 959}, - [7644] = {.lex_state = 959}, - [7645] = {.lex_state = 506}, - [7646] = {.lex_state = 959}, - [7647] = {.lex_state = 101}, - [7648] = {.lex_state = 101}, - [7649] = {.lex_state = 4816}, - [7650] = {.lex_state = 959}, - [7651] = {.lex_state = 204}, - [7652] = {.lex_state = 4816}, - [7653] = {.lex_state = 135}, - [7654] = {.lex_state = 959}, - [7655] = {.lex_state = 959}, - [7656] = {.lex_state = 959}, - [7657] = {.lex_state = 959}, - [7658] = {.lex_state = 101}, - [7659] = {.lex_state = 523}, - [7660] = {.lex_state = 960}, - [7661] = {.lex_state = 959}, - [7662] = {.lex_state = 959}, - [7663] = {.lex_state = 959}, - [7664] = {.lex_state = 508}, - [7665] = {.lex_state = 521}, - [7666] = {.lex_state = 956}, - [7667] = {.lex_state = 101}, - [7668] = {.lex_state = 959}, - [7669] = {.lex_state = 1067}, - [7670] = {.lex_state = 510}, - [7671] = {.lex_state = 959}, - [7672] = {.lex_state = 135}, - [7673] = {.lex_state = 959}, - [7674] = {.lex_state = 959}, - [7675] = {.lex_state = 959}, - [7676] = {.lex_state = 151}, - [7677] = {.lex_state = 101}, - [7678] = {.lex_state = 151}, - [7679] = {.lex_state = 135}, - [7680] = {.lex_state = 959}, - [7681] = {.lex_state = 959}, - [7682] = {.lex_state = 959}, - [7683] = {.lex_state = 151}, - [7684] = {.lex_state = 509}, - [7685] = {.lex_state = 959}, - [7686] = {.lex_state = 44}, - [7687] = {.lex_state = 101}, - [7688] = {.lex_state = 959}, - [7689] = {.lex_state = 959}, - [7690] = {.lex_state = 959}, - [7691] = {.lex_state = 959}, - [7692] = {.lex_state = 959}, - [7693] = {.lex_state = 959}, - [7694] = {.lex_state = 959}, - [7695] = {.lex_state = 959}, - [7696] = {.lex_state = 959}, - [7697] = {.lex_state = 101}, - [7698] = {.lex_state = 956}, - [7699] = {.lex_state = 4835}, - [7700] = {.lex_state = 101}, - [7701] = {.lex_state = 959}, - [7702] = {.lex_state = 956}, - [7703] = {.lex_state = 151}, - [7704] = {.lex_state = 959}, - [7705] = {.lex_state = 959}, - [7706] = {.lex_state = 101}, - [7707] = {.lex_state = 959}, - [7708] = {.lex_state = 959}, - [7709] = {.lex_state = 135}, - [7710] = {.lex_state = 959}, - [7711] = {.lex_state = 959}, - [7712] = {.lex_state = 956}, - [7713] = {.lex_state = 135}, - [7714] = {.lex_state = 135}, - [7715] = {.lex_state = 508}, - [7716] = {.lex_state = 959}, - [7717] = {.lex_state = 959}, - [7718] = {.lex_state = 959}, - [7719] = {.lex_state = 959}, - [7720] = {.lex_state = 956}, - [7721] = {.lex_state = 959}, - [7722] = {.lex_state = 959}, - [7723] = {.lex_state = 959}, - [7724] = {.lex_state = 151}, - [7725] = {.lex_state = 521}, - [7726] = {.lex_state = 959}, - [7727] = {.lex_state = 959}, - [7728] = {.lex_state = 959}, - [7729] = {.lex_state = 959}, - [7730] = {.lex_state = 959}, - [7731] = {.lex_state = 959}, - [7732] = {.lex_state = 959}, - [7733] = {.lex_state = 135}, - [7734] = {.lex_state = 204}, - [7735] = {.lex_state = 508}, - [7736] = {.lex_state = 959}, - [7737] = {.lex_state = 959}, - [7738] = {.lex_state = 959}, - [7739] = {.lex_state = 959}, - [7740] = {.lex_state = 959}, - [7741] = {.lex_state = 151}, - [7742] = {.lex_state = 135}, - [7743] = {.lex_state = 956}, - [7744] = {.lex_state = 959}, - [7745] = {.lex_state = 959}, - [7746] = {.lex_state = 959}, - [7747] = {.lex_state = 956}, - [7748] = {.lex_state = 959}, - [7749] = {.lex_state = 151}, - [7750] = {.lex_state = 959}, - [7751] = {.lex_state = 959}, - [7752] = {.lex_state = 959}, - [7753] = {.lex_state = 135}, - [7754] = {.lex_state = 959}, - [7755] = {.lex_state = 959}, - [7756] = {.lex_state = 261}, - [7757] = {.lex_state = 204}, - [7758] = {.lex_state = 959}, - [7759] = {.lex_state = 959}, - [7760] = {.lex_state = 959}, - [7761] = {.lex_state = 959}, - [7762] = {.lex_state = 959}, - [7763] = {.lex_state = 959}, - [7764] = {.lex_state = 934}, - [7765] = {.lex_state = 956}, - [7766] = {.lex_state = 934}, - [7767] = {.lex_state = 959}, - [7768] = {.lex_state = 959}, - [7769] = {.lex_state = 1067}, - [7770] = {.lex_state = 959}, - [7771] = {.lex_state = 151}, - [7772] = {.lex_state = 135}, - [7773] = {.lex_state = 508}, - [7774] = {.lex_state = 135}, - [7775] = {.lex_state = 959}, - [7776] = {.lex_state = 959}, - [7777] = {.lex_state = 4820}, - [7778] = {.lex_state = 960}, - [7779] = {.lex_state = 521}, - [7780] = {.lex_state = 959}, - [7781] = {.lex_state = 959}, - [7782] = {.lex_state = 959}, - [7783] = {.lex_state = 956}, - [7784] = {.lex_state = 135}, - [7785] = {.lex_state = 959}, - [7786] = {.lex_state = 959}, - [7787] = {.lex_state = 959}, - [7788] = {.lex_state = 956}, - [7789] = {.lex_state = 44}, - [7790] = {.lex_state = 261}, - [7791] = {.lex_state = 959}, - [7792] = {.lex_state = 261}, - [7793] = {.lex_state = 4818}, - [7794] = {.lex_state = 261}, - [7795] = {.lex_state = 4820}, - [7796] = {.lex_state = 204}, - [7797] = {.lex_state = 959}, - [7798] = {.lex_state = 959}, - [7799] = {.lex_state = 959}, - [7800] = {.lex_state = 959}, - [7801] = {.lex_state = 959}, - [7802] = {.lex_state = 959}, - [7803] = {.lex_state = 959}, - [7804] = {.lex_state = 959}, - [7805] = {.lex_state = 959}, - [7806] = {.lex_state = 3563}, - [7807] = {.lex_state = 956}, - [7808] = {.lex_state = 956}, - [7809] = {.lex_state = 959}, - [7810] = {.lex_state = 959}, - [7811] = {.lex_state = 959}, - [7812] = {.lex_state = 959}, - [7813] = {.lex_state = 959}, - [7814] = {.lex_state = 151}, - [7815] = {.lex_state = 959}, - [7816] = {(TSStateId)(-1)}, + [4000] = {.lex_state = 922}, + [4001] = {.lex_state = 922}, + [4002] = {.lex_state = 922}, + [4003] = {.lex_state = 1012}, + [4004] = {.lex_state = 922}, + [4005] = {.lex_state = 922}, + [4006] = {.lex_state = 922}, + [4007] = {.lex_state = 52}, + [4008] = {.lex_state = 922}, + [4009] = {.lex_state = 922}, + [4010] = {.lex_state = 993}, + [4011] = {.lex_state = 922}, + [4012] = {.lex_state = 922}, + [4013] = {.lex_state = 1013}, + [4014] = {.lex_state = 922}, + [4015] = {.lex_state = 922}, + [4016] = {.lex_state = 922}, + [4017] = {.lex_state = 922}, + [4018] = {.lex_state = 1007}, + [4019] = {.lex_state = 922}, + [4020] = {.lex_state = 56}, + [4021] = {.lex_state = 922}, + [4022] = {.lex_state = 922}, + [4023] = {.lex_state = 922}, + [4024] = {.lex_state = 52}, + [4025] = {.lex_state = 922}, + [4026] = {.lex_state = 922}, + [4027] = {.lex_state = 922}, + [4028] = {.lex_state = 1007}, + [4029] = {.lex_state = 56}, + [4030] = {.lex_state = 922}, + [4031] = {.lex_state = 1013}, + [4032] = {.lex_state = 1017}, + [4033] = {.lex_state = 993}, + [4034] = {.lex_state = 986}, + [4035] = {.lex_state = 996}, + [4036] = {.lex_state = 1007}, + [4037] = {.lex_state = 986}, + [4038] = {.lex_state = 1007}, + [4039] = {.lex_state = 65}, + [4040] = {.lex_state = 922}, + [4041] = {.lex_state = 993}, + [4042] = {.lex_state = 922}, + [4043] = {.lex_state = 52}, + [4044] = {.lex_state = 922}, + [4045] = {.lex_state = 922}, + [4046] = {.lex_state = 922}, + [4047] = {.lex_state = 986}, + [4048] = {.lex_state = 1013}, + [4049] = {.lex_state = 1012}, + [4050] = {.lex_state = 1007}, + [4051] = {.lex_state = 1013}, + [4052] = {.lex_state = 922}, + [4053] = {.lex_state = 986}, + [4054] = {.lex_state = 922}, + [4055] = {.lex_state = 986}, + [4056] = {.lex_state = 58}, + [4057] = {.lex_state = 987}, + [4058] = {.lex_state = 987}, + [4059] = {.lex_state = 987}, + [4060] = {.lex_state = 1014}, + [4061] = {.lex_state = 986}, + [4062] = {.lex_state = 986}, + [4063] = {.lex_state = 1014}, + [4064] = {.lex_state = 1017}, + [4065] = {.lex_state = 65}, + [4066] = {.lex_state = 922}, + [4067] = {.lex_state = 43}, + [4068] = {.lex_state = 1007}, + [4069] = {.lex_state = 1014}, + [4070] = {.lex_state = 1012}, + [4071] = {.lex_state = 1014}, + [4072] = {.lex_state = 1014}, + [4073] = {.lex_state = 43}, + [4074] = {.lex_state = 1015}, + [4075] = {.lex_state = 922}, + [4076] = {.lex_state = 1014}, + [4077] = {.lex_state = 987}, + [4078] = {.lex_state = 57}, + [4079] = {.lex_state = 1012}, + [4080] = {.lex_state = 57}, + [4081] = {.lex_state = 986}, + [4082] = {.lex_state = 57}, + [4083] = {.lex_state = 57}, + [4084] = {.lex_state = 987}, + [4085] = {.lex_state = 43}, + [4086] = {.lex_state = 1019}, + [4087] = {.lex_state = 54}, + [4088] = {.lex_state = 986}, + [4089] = {.lex_state = 986}, + [4090] = {.lex_state = 993}, + [4091] = {.lex_state = 993}, + [4092] = {.lex_state = 43}, + [4093] = {.lex_state = 1019}, + [4094] = {.lex_state = 987}, + [4095] = {.lex_state = 1016}, + [4096] = {.lex_state = 922}, + [4097] = {.lex_state = 922}, + [4098] = {.lex_state = 922}, + [4099] = {.lex_state = 922}, + [4100] = {.lex_state = 1016}, + [4101] = {.lex_state = 1018}, + [4102] = {.lex_state = 1016}, + [4103] = {.lex_state = 922}, + [4104] = {.lex_state = 1014}, + [4105] = {.lex_state = 1016}, + [4106] = {.lex_state = 922}, + [4107] = {.lex_state = 922}, + [4108] = {.lex_state = 1016}, + [4109] = {.lex_state = 1016}, + [4110] = {.lex_state = 922}, + [4111] = {.lex_state = 922}, + [4112] = {.lex_state = 1016}, + [4113] = {.lex_state = 1016}, + [4114] = {.lex_state = 922}, + [4115] = {.lex_state = 922}, + [4116] = {.lex_state = 1016}, + [4117] = {.lex_state = 993}, + [4118] = {.lex_state = 922}, + [4119] = {.lex_state = 922}, + [4120] = {.lex_state = 987}, + [4121] = {.lex_state = 922}, + [4122] = {.lex_state = 1048}, + [4123] = {.lex_state = 1014}, + [4124] = {.lex_state = 922}, + [4125] = {.lex_state = 1016}, + [4126] = {.lex_state = 1021}, + [4127] = {.lex_state = 1016}, + [4128] = {.lex_state = 922}, + [4129] = {.lex_state = 1016}, + [4130] = {.lex_state = 922}, + [4131] = {.lex_state = 922}, + [4132] = {.lex_state = 1021}, + [4133] = {.lex_state = 1016}, + [4134] = {.lex_state = 922}, + [4135] = {.lex_state = 922}, + [4136] = {.lex_state = 1014}, + [4137] = {.lex_state = 922}, + [4138] = {.lex_state = 922}, + [4139] = {.lex_state = 1016}, + [4140] = {.lex_state = 922}, + [4141] = {.lex_state = 993}, + [4142] = {.lex_state = 922}, + [4143] = {.lex_state = 922}, + [4144] = {.lex_state = 1014}, + [4145] = {.lex_state = 922}, + [4146] = {.lex_state = 1019}, + [4147] = {.lex_state = 922}, + [4148] = {.lex_state = 922}, + [4149] = {.lex_state = 1016}, + [4150] = {.lex_state = 43}, + [4151] = {.lex_state = 1016}, + [4152] = {.lex_state = 993}, + [4153] = {.lex_state = 922}, + [4154] = {.lex_state = 1016}, + [4155] = {.lex_state = 1016}, + [4156] = {.lex_state = 922}, + [4157] = {.lex_state = 922}, + [4158] = {.lex_state = 1048}, + [4159] = {.lex_state = 43}, + [4160] = {.lex_state = 59}, + [4161] = {.lex_state = 1016}, + [4162] = {.lex_state = 1021}, + [4163] = {.lex_state = 922}, + [4164] = {.lex_state = 1016}, + [4165] = {.lex_state = 1016}, + [4166] = {.lex_state = 986}, + [4167] = {.lex_state = 1014}, + [4168] = {.lex_state = 1016}, + [4169] = {.lex_state = 1048}, + [4170] = {.lex_state = 1016}, + [4171] = {.lex_state = 922}, + [4172] = {.lex_state = 922}, + [4173] = {.lex_state = 922}, + [4174] = {.lex_state = 1048}, + [4175] = {.lex_state = 1048}, + [4176] = {.lex_state = 922}, + [4177] = {.lex_state = 986}, + [4178] = {.lex_state = 1021}, + [4179] = {.lex_state = 922}, + [4180] = {.lex_state = 986}, + [4181] = {.lex_state = 986}, + [4182] = {.lex_state = 986}, + [4183] = {.lex_state = 922}, + [4184] = {.lex_state = 922}, + [4185] = {.lex_state = 1014}, + [4186] = {.lex_state = 1021}, + [4187] = {.lex_state = 1019}, + [4188] = {.lex_state = 922}, + [4189] = {.lex_state = 986}, + [4190] = {.lex_state = 922}, + [4191] = {.lex_state = 922}, + [4192] = {.lex_state = 1016}, + [4193] = {.lex_state = 1016}, + [4194] = {.lex_state = 986}, + [4195] = {.lex_state = 986}, + [4196] = {.lex_state = 59}, + [4197] = {.lex_state = 1021}, + [4198] = {.lex_state = 1021}, + [4199] = {.lex_state = 924}, + [4200] = {.lex_state = 1016}, + [4201] = {.lex_state = 987}, + [4202] = {.lex_state = 987}, + [4203] = {.lex_state = 1016}, + [4204] = {.lex_state = 1016}, + [4205] = {.lex_state = 922}, + [4206] = {.lex_state = 922}, + [4207] = {.lex_state = 987}, + [4208] = {.lex_state = 1016}, + [4209] = {.lex_state = 1016}, + [4210] = {.lex_state = 1021}, + [4211] = {.lex_state = 1016}, + [4212] = {.lex_state = 1021}, + [4213] = {.lex_state = 922}, + [4214] = {.lex_state = 1016}, + [4215] = {.lex_state = 1016}, + [4216] = {.lex_state = 43}, + [4217] = {.lex_state = 999}, + [4218] = {.lex_state = 60}, + [4219] = {.lex_state = 1016}, + [4220] = {.lex_state = 1016}, + [4221] = {.lex_state = 1016}, + [4222] = {.lex_state = 1016}, + [4223] = {.lex_state = 1021}, + [4224] = {.lex_state = 999}, + [4225] = {.lex_state = 43}, + [4226] = {.lex_state = 43}, + [4227] = {.lex_state = 1021}, + [4228] = {.lex_state = 1021}, + [4229] = {.lex_state = 1016}, + [4230] = {.lex_state = 1016}, + [4231] = {.lex_state = 1048}, + [4232] = {.lex_state = 1048}, + [4233] = {.lex_state = 922}, + [4234] = {.lex_state = 43}, + [4235] = {.lex_state = 1016}, + [4236] = {.lex_state = 1016}, + [4237] = {.lex_state = 43}, + [4238] = {.lex_state = 43}, + [4239] = {.lex_state = 999}, + [4240] = {.lex_state = 1021}, + [4241] = {.lex_state = 43}, + [4242] = {.lex_state = 60}, + [4243] = {.lex_state = 1021}, + [4244] = {.lex_state = 1021}, + [4245] = {.lex_state = 1020}, + [4246] = {.lex_state = 1020}, + [4247] = {.lex_state = 1016}, + [4248] = {.lex_state = 922}, + [4249] = {.lex_state = 1048}, + [4250] = {.lex_state = 43}, + [4251] = {.lex_state = 1016}, + [4252] = {.lex_state = 922}, + [4253] = {.lex_state = 999}, + [4254] = {.lex_state = 60}, + [4255] = {.lex_state = 1016}, + [4256] = {.lex_state = 1021}, + [4257] = {.lex_state = 60}, + [4258] = {.lex_state = 1016}, + [4259] = {.lex_state = 1016}, + [4260] = {.lex_state = 922}, + [4261] = {.lex_state = 1016}, + [4262] = {.lex_state = 1021}, + [4263] = {.lex_state = 1016}, + [4264] = {.lex_state = 1016}, + [4265] = {.lex_state = 1016}, + [4266] = {.lex_state = 999}, + [4267] = {.lex_state = 922}, + [4268] = {.lex_state = 1016}, + [4269] = {.lex_state = 1016}, + [4270] = {.lex_state = 999}, + [4271] = {.lex_state = 1016}, + [4272] = {.lex_state = 999}, + [4273] = {.lex_state = 922}, + [4274] = {.lex_state = 1048}, + [4275] = {.lex_state = 922}, + [4276] = {.lex_state = 1016}, + [4277] = {.lex_state = 60}, + [4278] = {.lex_state = 1016}, + [4279] = {.lex_state = 1018}, + [4280] = {.lex_state = 993}, + [4281] = {.lex_state = 60}, + [4282] = {.lex_state = 1016}, + [4283] = {.lex_state = 1016}, + [4284] = {.lex_state = 1016}, + [4285] = {.lex_state = 922}, + [4286] = {.lex_state = 922}, + [4287] = {.lex_state = 999}, + [4288] = {.lex_state = 993}, + [4289] = {.lex_state = 993}, + [4290] = {.lex_state = 1016}, + [4291] = {.lex_state = 1048}, + [4292] = {.lex_state = 999}, + [4293] = {.lex_state = 1016}, + [4294] = {.lex_state = 1016}, + [4295] = {.lex_state = 1016}, + [4296] = {.lex_state = 43}, + [4297] = {.lex_state = 1021}, + [4298] = {.lex_state = 1016}, + [4299] = {.lex_state = 1016}, + [4300] = {.lex_state = 43}, + [4301] = {.lex_state = 1021}, + [4302] = {.lex_state = 999}, + [4303] = {.lex_state = 999}, + [4304] = {.lex_state = 947}, + [4305] = {.lex_state = 67}, + [4306] = {.lex_state = 1022}, + [4307] = {.lex_state = 922}, + [4308] = {.lex_state = 983}, + [4309] = {.lex_state = 983}, + [4310] = {.lex_state = 1022}, + [4311] = {.lex_state = 43}, + [4312] = {.lex_state = 983}, + [4313] = {.lex_state = 983}, + [4314] = {.lex_state = 947}, + [4315] = {.lex_state = 947}, + [4316] = {.lex_state = 947}, + [4317] = {.lex_state = 947}, + [4318] = {.lex_state = 947}, + [4319] = {.lex_state = 947}, + [4320] = {.lex_state = 947}, + [4321] = {.lex_state = 947}, + [4322] = {.lex_state = 947}, + [4323] = {.lex_state = 947}, + [4324] = {.lex_state = 947}, + [4325] = {.lex_state = 947}, + [4326] = {.lex_state = 67}, + [4327] = {.lex_state = 947}, + [4328] = {.lex_state = 947}, + [4329] = {.lex_state = 947}, + [4330] = {.lex_state = 947}, + [4331] = {.lex_state = 947}, + [4332] = {.lex_state = 947}, + [4333] = {.lex_state = 947}, + [4334] = {.lex_state = 947}, + [4335] = {.lex_state = 947}, + [4336] = {.lex_state = 947}, + [4337] = {.lex_state = 947}, + [4338] = {.lex_state = 947}, + [4339] = {.lex_state = 947}, + [4340] = {.lex_state = 947}, + [4341] = {.lex_state = 947}, + [4342] = {.lex_state = 947}, + [4343] = {.lex_state = 947}, + [4344] = {.lex_state = 947}, + [4345] = {.lex_state = 947}, + [4346] = {.lex_state = 947}, + [4347] = {.lex_state = 947}, + [4348] = {.lex_state = 947}, + [4349] = {.lex_state = 61}, + [4350] = {.lex_state = 947}, + [4351] = {.lex_state = 947}, + [4352] = {.lex_state = 947}, + [4353] = {.lex_state = 947}, + [4354] = {.lex_state = 947}, + [4355] = {.lex_state = 947}, + [4356] = {.lex_state = 947}, + [4357] = {.lex_state = 947}, + [4358] = {.lex_state = 947}, + [4359] = {.lex_state = 947}, + [4360] = {.lex_state = 947}, + [4361] = {.lex_state = 947}, + [4362] = {.lex_state = 947}, + [4363] = {.lex_state = 947}, + [4364] = {.lex_state = 947}, + [4365] = {.lex_state = 947}, + [4366] = {.lex_state = 947}, + [4367] = {.lex_state = 947}, + [4368] = {.lex_state = 947}, + [4369] = {.lex_state = 947}, + [4370] = {.lex_state = 947}, + [4371] = {.lex_state = 947}, + [4372] = {.lex_state = 947}, + [4373] = {.lex_state = 947}, + [4374] = {.lex_state = 947}, + [4375] = {.lex_state = 947}, + [4376] = {.lex_state = 947}, + [4377] = {.lex_state = 947}, + [4378] = {.lex_state = 947}, + [4379] = {.lex_state = 947}, + [4380] = {.lex_state = 947}, + [4381] = {.lex_state = 999}, + [4382] = {.lex_state = 947}, + [4383] = {.lex_state = 947}, + [4384] = {.lex_state = 947}, + [4385] = {.lex_state = 947}, + [4386] = {.lex_state = 947}, + [4387] = {.lex_state = 947}, + [4388] = {.lex_state = 947}, + [4389] = {.lex_state = 947}, + [4390] = {.lex_state = 947}, + [4391] = {.lex_state = 947}, + [4392] = {.lex_state = 947}, + [4393] = {.lex_state = 947}, + [4394] = {.lex_state = 947}, + [4395] = {.lex_state = 947}, + [4396] = {.lex_state = 947}, + [4397] = {.lex_state = 947}, + [4398] = {.lex_state = 947}, + [4399] = {.lex_state = 947}, + [4400] = {.lex_state = 947}, + [4401] = {.lex_state = 947}, + [4402] = {.lex_state = 947}, + [4403] = {.lex_state = 947}, + [4404] = {.lex_state = 947}, + [4405] = {.lex_state = 947}, + [4406] = {.lex_state = 67}, + [4407] = {.lex_state = 947}, + [4408] = {.lex_state = 947}, + [4409] = {.lex_state = 947}, + [4410] = {.lex_state = 947}, + [4411] = {.lex_state = 67}, + [4412] = {.lex_state = 947}, + [4413] = {.lex_state = 947}, + [4414] = {.lex_state = 947}, + [4415] = {.lex_state = 947}, + [4416] = {.lex_state = 1020}, + [4417] = {.lex_state = 947}, + [4418] = {.lex_state = 67}, + [4419] = {.lex_state = 947}, + [4420] = {.lex_state = 947}, + [4421] = {.lex_state = 947}, + [4422] = {.lex_state = 947}, + [4423] = {.lex_state = 947}, + [4424] = {.lex_state = 947}, + [4425] = {.lex_state = 67}, + [4426] = {.lex_state = 67}, + [4427] = {.lex_state = 947}, + [4428] = {.lex_state = 67}, + [4429] = {.lex_state = 67}, + [4430] = {.lex_state = 67}, + [4431] = {.lex_state = 67}, + [4432] = {.lex_state = 67}, + [4433] = {.lex_state = 67}, + [4434] = {.lex_state = 67}, + [4435] = {.lex_state = 67}, + [4436] = {.lex_state = 67}, + [4437] = {.lex_state = 67}, + [4438] = {.lex_state = 999}, + [4439] = {.lex_state = 67}, + [4440] = {.lex_state = 67}, + [4441] = {.lex_state = 67}, + [4442] = {.lex_state = 67}, + [4443] = {.lex_state = 67}, + [4444] = {.lex_state = 947}, + [4445] = {.lex_state = 1022}, + [4446] = {.lex_state = 1021}, + [4447] = {.lex_state = 43}, + [4448] = {.lex_state = 1016}, + [4449] = {.lex_state = 987}, + [4450] = {.lex_state = 1016}, + [4451] = {.lex_state = 1016}, + [4452] = {.lex_state = 43}, + [4453] = {.lex_state = 947}, + [4454] = {.lex_state = 947}, + [4455] = {.lex_state = 1050}, + [4456] = {.lex_state = 1050}, + [4457] = {.lex_state = 999}, + [4458] = {.lex_state = 999}, + [4459] = {.lex_state = 1050}, + [4460] = {.lex_state = 999}, + [4461] = {.lex_state = 999}, + [4462] = {.lex_state = 999}, + [4463] = {.lex_state = 1022}, + [4464] = {.lex_state = 67}, + [4465] = {.lex_state = 922}, + [4466] = {.lex_state = 947}, + [4467] = {.lex_state = 947}, + [4468] = {.lex_state = 922}, + [4469] = {.lex_state = 43}, + [4470] = {.lex_state = 947}, + [4471] = {.lex_state = 1050}, + [4472] = {.lex_state = 1050}, + [4473] = {.lex_state = 947}, + [4474] = {.lex_state = 999}, + [4475] = {.lex_state = 947}, + [4476] = {.lex_state = 1042}, + [4477] = {.lex_state = 43}, + [4478] = {.lex_state = 947}, + [4479] = {.lex_state = 947}, + [4480] = {.lex_state = 947}, + [4481] = {.lex_state = 1022}, + [4482] = {.lex_state = 43}, + [4483] = {.lex_state = 43}, + [4484] = {.lex_state = 947}, + [4485] = {.lex_state = 947}, + [4486] = {.lex_state = 983}, + [4487] = {.lex_state = 947}, + [4488] = {.lex_state = 947}, + [4489] = {.lex_state = 999}, + [4490] = {.lex_state = 947}, + [4491] = {.lex_state = 1041}, + [4492] = {.lex_state = 1041}, + [4493] = {.lex_state = 1022}, + [4494] = {.lex_state = 1020}, + [4495] = {.lex_state = 947}, + [4496] = {.lex_state = 1022}, + [4497] = {.lex_state = 947}, + [4498] = {.lex_state = 947}, + [4499] = {.lex_state = 947}, + [4500] = {.lex_state = 947}, + [4501] = {.lex_state = 1041}, + [4502] = {.lex_state = 922}, + [4503] = {.lex_state = 1022}, + [4504] = {.lex_state = 1041}, + [4505] = {.lex_state = 64}, + [4506] = {.lex_state = 1022}, + [4507] = {.lex_state = 999}, + [4508] = {.lex_state = 999}, + [4509] = {.lex_state = 1041}, + [4510] = {.lex_state = 947}, + [4511] = {.lex_state = 947}, + [4512] = {.lex_state = 947}, + [4513] = {.lex_state = 983}, + [4514] = {.lex_state = 949}, + [4515] = {.lex_state = 955}, + [4516] = {.lex_state = 983}, + [4517] = {.lex_state = 43}, + [4518] = {.lex_state = 1022}, + [4519] = {.lex_state = 1042}, + [4520] = {.lex_state = 43}, + [4521] = {.lex_state = 947}, + [4522] = {.lex_state = 43}, + [4523] = {.lex_state = 62}, + [4524] = {.lex_state = 947}, + [4525] = {.lex_state = 43}, + [4526] = {.lex_state = 947}, + [4527] = {.lex_state = 1023}, + [4528] = {.lex_state = 1041}, + [4529] = {.lex_state = 983}, + [4530] = {.lex_state = 947}, + [4531] = {.lex_state = 43}, + [4532] = {.lex_state = 1022}, + [4533] = {.lex_state = 947}, + [4534] = {.lex_state = 43}, + [4535] = {.lex_state = 947}, + [4536] = {.lex_state = 1024}, + [4537] = {.lex_state = 1022}, + [4538] = {.lex_state = 43}, + [4539] = {.lex_state = 983}, + [4540] = {.lex_state = 949}, + [4541] = {.lex_state = 361}, + [4542] = {.lex_state = 983}, + [4543] = {.lex_state = 43}, + [4544] = {.lex_state = 43}, + [4545] = {.lex_state = 922}, + [4546] = {.lex_state = 947}, + [4547] = {.lex_state = 947}, + [4548] = {.lex_state = 1041}, + [4549] = {.lex_state = 1050}, + [4550] = {.lex_state = 1050}, + [4551] = {.lex_state = 1050}, + [4552] = {.lex_state = 43}, + [4553] = {.lex_state = 947}, + [4554] = {.lex_state = 106}, + [4555] = {.lex_state = 1022}, + [4556] = {.lex_state = 43}, + [4557] = {.lex_state = 947}, + [4558] = {.lex_state = 947}, + [4559] = {.lex_state = 947}, + [4560] = {.lex_state = 983}, + [4561] = {.lex_state = 983}, + [4562] = {.lex_state = 1050}, + [4563] = {.lex_state = 947}, + [4564] = {.lex_state = 949}, + [4565] = {.lex_state = 43}, + [4566] = {.lex_state = 1016}, + [4567] = {.lex_state = 947}, + [4568] = {.lex_state = 947}, + [4569] = {.lex_state = 1016}, + [4570] = {.lex_state = 1016}, + [4571] = {.lex_state = 1041}, + [4572] = {.lex_state = 949}, + [4573] = {.lex_state = 43}, + [4574] = {.lex_state = 1022}, + [4575] = {.lex_state = 1022}, + [4576] = {.lex_state = 987}, + [4577] = {.lex_state = 947}, + [4578] = {.lex_state = 1022}, + [4579] = {.lex_state = 43}, + [4580] = {.lex_state = 43}, + [4581] = {.lex_state = 43}, + [4582] = {.lex_state = 106}, + [4583] = {.lex_state = 1016}, + [4584] = {.lex_state = 1050}, + [4585] = {.lex_state = 43}, + [4586] = {.lex_state = 43}, + [4587] = {.lex_state = 947}, + [4588] = {.lex_state = 947}, + [4589] = {.lex_state = 361}, + [4590] = {.lex_state = 947}, + [4591] = {.lex_state = 955}, + [4592] = {.lex_state = 43}, + [4593] = {.lex_state = 947}, + [4594] = {.lex_state = 1022}, + [4595] = {.lex_state = 947}, + [4596] = {.lex_state = 947}, + [4597] = {.lex_state = 983}, + [4598] = {.lex_state = 947}, + [4599] = {.lex_state = 947}, + [4600] = {.lex_state = 987}, + [4601] = {.lex_state = 987}, + [4602] = {.lex_state = 1022}, + [4603] = {.lex_state = 949}, + [4604] = {.lex_state = 947}, + [4605] = {.lex_state = 947}, + [4606] = {.lex_state = 361}, + [4607] = {.lex_state = 922}, + [4608] = {.lex_state = 922}, + [4609] = {.lex_state = 1022}, + [4610] = {.lex_state = 947}, + [4611] = {.lex_state = 43}, + [4612] = {.lex_state = 67}, + [4613] = {.lex_state = 947}, + [4614] = {.lex_state = 62}, + [4615] = {.lex_state = 43}, + [4616] = {.lex_state = 947}, + [4617] = {.lex_state = 947}, + [4618] = {.lex_state = 947}, + [4619] = {.lex_state = 947}, + [4620] = {.lex_state = 947}, + [4621] = {.lex_state = 43}, + [4622] = {.lex_state = 67}, + [4623] = {.lex_state = 43}, + [4624] = {.lex_state = 947}, + [4625] = {.lex_state = 43}, + [4626] = {.lex_state = 1041}, + [4627] = {.lex_state = 361}, + [4628] = {.lex_state = 947}, + [4629] = {.lex_state = 947}, + [4630] = {.lex_state = 947}, + [4631] = {.lex_state = 947}, + [4632] = {.lex_state = 947}, + [4633] = {.lex_state = 947}, + [4634] = {.lex_state = 947}, + [4635] = {.lex_state = 1041}, + [4636] = {.lex_state = 949}, + [4637] = {.lex_state = 1022}, + [4638] = {.lex_state = 106}, + [4639] = {.lex_state = 64}, + [4640] = {.lex_state = 949}, + [4641] = {.lex_state = 1016}, + [4642] = {.lex_state = 1016}, + [4643] = {.lex_state = 1023}, + [4644] = {.lex_state = 63}, + [4645] = {.lex_state = 63}, + [4646] = {.lex_state = 949}, + [4647] = {.lex_state = 922}, + [4648] = {.lex_state = 949}, + [4649] = {.lex_state = 60}, + [4650] = {.lex_state = 949}, + [4651] = {.lex_state = 67}, + [4652] = {.lex_state = 67}, + [4653] = {.lex_state = 63}, + [4654] = {.lex_state = 947}, + [4655] = {.lex_state = 947}, + [4656] = {.lex_state = 947}, + [4657] = {.lex_state = 63}, + [4658] = {.lex_state = 1024}, + [4659] = {.lex_state = 949}, + [4660] = {.lex_state = 60}, + [4661] = {.lex_state = 947}, + [4662] = {.lex_state = 949}, + [4663] = {.lex_state = 947}, + [4664] = {.lex_state = 947}, + [4665] = {.lex_state = 949}, + [4666] = {.lex_state = 949}, + [4667] = {.lex_state = 949}, + [4668] = {.lex_state = 949}, + [4669] = {.lex_state = 949}, + [4670] = {.lex_state = 63}, + [4671] = {.lex_state = 949}, + [4672] = {.lex_state = 106}, + [4673] = {.lex_state = 922}, + [4674] = {.lex_state = 987}, + [4675] = {.lex_state = 949}, + [4676] = {.lex_state = 949}, + [4677] = {.lex_state = 949}, + [4678] = {.lex_state = 949}, + [4679] = {.lex_state = 949}, + [4680] = {.lex_state = 67}, + [4681] = {.lex_state = 949}, + [4682] = {.lex_state = 67}, + [4683] = {.lex_state = 67}, + [4684] = {.lex_state = 987}, + [4685] = {.lex_state = 949}, + [4686] = {.lex_state = 949}, + [4687] = {.lex_state = 947}, + [4688] = {.lex_state = 947}, + [4689] = {.lex_state = 949}, + [4690] = {.lex_state = 106}, + [4691] = {.lex_state = 87}, + [4692] = {.lex_state = 949}, + [4693] = {.lex_state = 949}, + [4694] = {.lex_state = 87}, + [4695] = {.lex_state = 922}, + [4696] = {.lex_state = 983}, + [4697] = {.lex_state = 60}, + [4698] = {.lex_state = 955}, + [4699] = {.lex_state = 947}, + [4700] = {.lex_state = 949}, + [4701] = {.lex_state = 955}, + [4702] = {.lex_state = 1025}, + [4703] = {.lex_state = 949}, + [4704] = {.lex_state = 949}, + [4705] = {.lex_state = 947}, + [4706] = {.lex_state = 949}, + [4707] = {.lex_state = 949}, + [4708] = {.lex_state = 949}, + [4709] = {.lex_state = 949}, + [4710] = {.lex_state = 949}, + [4711] = {.lex_state = 63}, + [4712] = {.lex_state = 947}, + [4713] = {.lex_state = 987}, + [4714] = {.lex_state = 947}, + [4715] = {.lex_state = 949}, + [4716] = {.lex_state = 949}, + [4717] = {.lex_state = 987}, + [4718] = {.lex_state = 43}, + [4719] = {.lex_state = 43}, + [4720] = {.lex_state = 922}, + [4721] = {.lex_state = 955}, + [4722] = {.lex_state = 949}, + [4723] = {.lex_state = 63}, + [4724] = {.lex_state = 1025}, + [4725] = {.lex_state = 87}, + [4726] = {.lex_state = 949}, + [4727] = {.lex_state = 48}, + [4728] = {.lex_state = 949}, + [4729] = {.lex_state = 947}, + [4730] = {.lex_state = 949}, + [4731] = {.lex_state = 947}, + [4732] = {.lex_state = 949}, + [4733] = {.lex_state = 949}, + [4734] = {.lex_state = 947}, + [4735] = {.lex_state = 947}, + [4736] = {.lex_state = 949}, + [4737] = {.lex_state = 949}, + [4738] = {.lex_state = 947}, + [4739] = {.lex_state = 947}, + [4740] = {.lex_state = 949}, + [4741] = {.lex_state = 60}, + [4742] = {.lex_state = 949}, + [4743] = {.lex_state = 949}, + [4744] = {.lex_state = 48}, + [4745] = {.lex_state = 949}, + [4746] = {.lex_state = 983}, + [4747] = {.lex_state = 949}, + [4748] = {.lex_state = 949}, + [4749] = {.lex_state = 949}, + [4750] = {.lex_state = 949}, + [4751] = {.lex_state = 949}, + [4752] = {.lex_state = 43}, + [4753] = {.lex_state = 947}, + [4754] = {.lex_state = 43}, + [4755] = {.lex_state = 43}, + [4756] = {.lex_state = 949}, + [4757] = {.lex_state = 947}, + [4758] = {.lex_state = 949}, + [4759] = {.lex_state = 949}, + [4760] = {.lex_state = 949}, + [4761] = {.lex_state = 949}, + [4762] = {.lex_state = 949}, + [4763] = {.lex_state = 949}, + [4764] = {.lex_state = 949}, + [4765] = {.lex_state = 949}, + [4766] = {.lex_state = 949}, + [4767] = {.lex_state = 949}, + [4768] = {.lex_state = 949}, + [4769] = {.lex_state = 949}, + [4770] = {.lex_state = 87}, + [4771] = {.lex_state = 63}, + [4772] = {.lex_state = 949}, + [4773] = {.lex_state = 949}, + [4774] = {.lex_state = 949}, + [4775] = {.lex_state = 955}, + [4776] = {.lex_state = 949}, + [4777] = {.lex_state = 43}, + [4778] = {.lex_state = 43}, + [4779] = {.lex_state = 60}, + [4780] = {.lex_state = 949}, + [4781] = {.lex_state = 48}, + [4782] = {.lex_state = 949}, + [4783] = {.lex_state = 949}, + [4784] = {.lex_state = 949}, + [4785] = {.lex_state = 949}, + [4786] = {.lex_state = 60}, + [4787] = {.lex_state = 87}, + [4788] = {.lex_state = 60}, + [4789] = {.lex_state = 949}, + [4790] = {.lex_state = 949}, + [4791] = {.lex_state = 949}, + [4792] = {.lex_state = 949}, + [4793] = {.lex_state = 949}, + [4794] = {.lex_state = 949}, + [4795] = {.lex_state = 949}, + [4796] = {.lex_state = 949}, + [4797] = {.lex_state = 949}, + [4798] = {.lex_state = 63}, + [4799] = {.lex_state = 949}, + [4800] = {.lex_state = 949}, + [4801] = {.lex_state = 949}, + [4802] = {.lex_state = 949}, + [4803] = {.lex_state = 947}, + [4804] = {.lex_state = 1016}, + [4805] = {.lex_state = 949}, + [4806] = {.lex_state = 947}, + [4807] = {.lex_state = 366}, + [4808] = {.lex_state = 949}, + [4809] = {.lex_state = 983}, + [4810] = {.lex_state = 955}, + [4811] = {.lex_state = 949}, + [4812] = {.lex_state = 97}, + [4813] = {.lex_state = 949}, + [4814] = {.lex_state = 949}, + [4815] = {.lex_state = 43}, + [4816] = {.lex_state = 949}, + [4817] = {.lex_state = 949}, + [4818] = {.lex_state = 43}, + [4819] = {.lex_state = 949}, + [4820] = {.lex_state = 949}, + [4821] = {.lex_state = 947}, + [4822] = {.lex_state = 43}, + [4823] = {.lex_state = 949}, + [4824] = {.lex_state = 949}, + [4825] = {.lex_state = 43}, + [4826] = {.lex_state = 43}, + [4827] = {.lex_state = 949}, + [4828] = {.lex_state = 43}, + [4829] = {.lex_state = 367}, + [4830] = {.lex_state = 371}, + [4831] = {.lex_state = 43}, + [4832] = {.lex_state = 43}, + [4833] = {.lex_state = 43}, + [4834] = {.lex_state = 949}, + [4835] = {.lex_state = 949}, + [4836] = {.lex_state = 949}, + [4837] = {.lex_state = 949}, + [4838] = {.lex_state = 1026}, + [4839] = {.lex_state = 949}, + [4840] = {.lex_state = 955}, + [4841] = {.lex_state = 949}, + [4842] = {.lex_state = 949}, + [4843] = {.lex_state = 949}, + [4844] = {.lex_state = 949}, + [4845] = {.lex_state = 949}, + [4846] = {.lex_state = 949}, + [4847] = {.lex_state = 363}, + [4848] = {.lex_state = 949}, + [4849] = {.lex_state = 67}, + [4850] = {.lex_state = 60}, + [4851] = {.lex_state = 97}, + [4852] = {.lex_state = 955}, + [4853] = {.lex_state = 949}, + [4854] = {.lex_state = 955}, + [4855] = {.lex_state = 43}, + [4856] = {.lex_state = 97}, + [4857] = {.lex_state = 97}, + [4858] = {.lex_state = 949}, + [4859] = {.lex_state = 336}, + [4860] = {.lex_state = 43}, + [4861] = {.lex_state = 43}, + [4862] = {.lex_state = 949}, + [4863] = {.lex_state = 949}, + [4864] = {.lex_state = 949}, + [4865] = {.lex_state = 949}, + [4866] = {.lex_state = 949}, + [4867] = {.lex_state = 1025}, + [4868] = {.lex_state = 43}, + [4869] = {.lex_state = 43}, + [4870] = {.lex_state = 336}, + [4871] = {.lex_state = 43}, + [4872] = {.lex_state = 949}, + [4873] = {.lex_state = 949}, + [4874] = {.lex_state = 43}, + [4875] = {.lex_state = 949}, + [4876] = {.lex_state = 955}, + [4877] = {.lex_state = 68}, + [4878] = {.lex_state = 955}, + [4879] = {.lex_state = 43}, + [4880] = {.lex_state = 949}, + [4881] = {.lex_state = 371}, + [4882] = {.lex_state = 949}, + [4883] = {.lex_state = 949}, + [4884] = {.lex_state = 949}, + [4885] = {.lex_state = 955}, + [4886] = {.lex_state = 949}, + [4887] = {.lex_state = 43}, + [4888] = {.lex_state = 955}, + [4889] = {.lex_state = 955}, + [4890] = {.lex_state = 949}, + [4891] = {.lex_state = 949}, + [4892] = {.lex_state = 949}, + [4893] = {.lex_state = 949}, + [4894] = {.lex_state = 43}, + [4895] = {.lex_state = 43}, + [4896] = {.lex_state = 43}, + [4897] = {.lex_state = 980}, + [4898] = {.lex_state = 43}, + [4899] = {.lex_state = 955}, + [4900] = {.lex_state = 43}, + [4901] = {.lex_state = 43}, + [4902] = {.lex_state = 955}, + [4903] = {.lex_state = 949}, + [4904] = {.lex_state = 955}, + [4905] = {.lex_state = 949}, + [4906] = {.lex_state = 955}, + [4907] = {.lex_state = 63}, + [4908] = {.lex_state = 949}, + [4909] = {.lex_state = 43}, + [4910] = {.lex_state = 949}, + [4911] = {.lex_state = 949}, + [4912] = {.lex_state = 955}, + [4913] = {.lex_state = 43}, + [4914] = {.lex_state = 949}, + [4915] = {.lex_state = 949}, + [4916] = {.lex_state = 949}, + [4917] = {.lex_state = 1026}, + [4918] = {.lex_state = 43}, + [4919] = {.lex_state = 955}, + [4920] = {.lex_state = 1026}, + [4921] = {.lex_state = 949}, + [4922] = {.lex_state = 43}, + [4923] = {.lex_state = 955}, + [4924] = {.lex_state = 955}, + [4925] = {.lex_state = 43}, + [4926] = {.lex_state = 949}, + [4927] = {.lex_state = 43}, + [4928] = {.lex_state = 949}, + [4929] = {.lex_state = 43}, + [4930] = {.lex_state = 67}, + [4931] = {.lex_state = 949}, + [4932] = {.lex_state = 949}, + [4933] = {.lex_state = 949}, + [4934] = {.lex_state = 43}, + [4935] = {.lex_state = 949}, + [4936] = {.lex_state = 43}, + [4937] = {.lex_state = 949}, + [4938] = {.lex_state = 1026}, + [4939] = {.lex_state = 955}, + [4940] = {.lex_state = 43}, + [4941] = {.lex_state = 955}, + [4942] = {.lex_state = 60}, + [4943] = {.lex_state = 955}, + [4944] = {.lex_state = 947}, + [4945] = {.lex_state = 955}, + [4946] = {.lex_state = 949}, + [4947] = {.lex_state = 43}, + [4948] = {.lex_state = 949}, + [4949] = {.lex_state = 43}, + [4950] = {.lex_state = 955}, + [4951] = {.lex_state = 43}, + [4952] = {.lex_state = 43}, + [4953] = {.lex_state = 43}, + [4954] = {.lex_state = 949}, + [4955] = {.lex_state = 949}, + [4956] = {.lex_state = 43}, + [4957] = {.lex_state = 949}, + [4958] = {.lex_state = 949}, + [4959] = {.lex_state = 949}, + [4960] = {.lex_state = 67}, + [4961] = {.lex_state = 43}, + [4962] = {.lex_state = 1025}, + [4963] = {.lex_state = 43}, + [4964] = {.lex_state = 43}, + [4965] = {.lex_state = 949}, + [4966] = {.lex_state = 949}, + [4967] = {.lex_state = 43}, + [4968] = {.lex_state = 43}, + [4969] = {.lex_state = 43}, + [4970] = {.lex_state = 43}, + [4971] = {.lex_state = 949}, + [4972] = {.lex_state = 955}, + [4973] = {.lex_state = 949}, + [4974] = {.lex_state = 43}, + [4975] = {.lex_state = 43}, + [4976] = {.lex_state = 955}, + [4977] = {.lex_state = 43}, + [4978] = {.lex_state = 43}, + [4979] = {.lex_state = 955}, + [4980] = {.lex_state = 43}, + [4981] = {.lex_state = 955}, + [4982] = {.lex_state = 949}, + [4983] = {.lex_state = 955}, + [4984] = {.lex_state = 949}, + [4985] = {.lex_state = 1026}, + [4986] = {.lex_state = 43}, + [4987] = {.lex_state = 372}, + [4988] = {.lex_state = 949}, + [4989] = {.lex_state = 363}, + [4990] = {.lex_state = 949}, + [4991] = {.lex_state = 949}, + [4992] = {.lex_state = 949}, + [4993] = {.lex_state = 949}, + [4994] = {.lex_state = 43}, + [4995] = {.lex_state = 949}, + [4996] = {.lex_state = 43}, + [4997] = {.lex_state = 949}, + [4998] = {.lex_state = 949}, + [4999] = {.lex_state = 949}, + [5000] = {.lex_state = 43}, + [5001] = {.lex_state = 955}, + [5002] = {.lex_state = 955}, + [5003] = {.lex_state = 955}, + [5004] = {.lex_state = 955}, + [5005] = {.lex_state = 955}, + [5006] = {.lex_state = 955}, + [5007] = {.lex_state = 955}, + [5008] = {.lex_state = 410}, + [5009] = {.lex_state = 43}, + [5010] = {.lex_state = 955}, + [5011] = {.lex_state = 955}, + [5012] = {.lex_state = 429}, + [5013] = {.lex_state = 955}, + [5014] = {.lex_state = 955}, + [5015] = {.lex_state = 371}, + [5016] = {.lex_state = 955}, + [5017] = {.lex_state = 955}, + [5018] = {.lex_state = 955}, + [5019] = {.lex_state = 955}, + [5020] = {.lex_state = 955}, + [5021] = {.lex_state = 955}, + [5022] = {.lex_state = 955}, + [5023] = {.lex_state = 955}, + [5024] = {.lex_state = 955}, + [5025] = {.lex_state = 955}, + [5026] = {.lex_state = 364}, + [5027] = {.lex_state = 955}, + [5028] = {.lex_state = 955}, + [5029] = {.lex_state = 955}, + [5030] = {.lex_state = 955}, + [5031] = {.lex_state = 955}, + [5032] = {.lex_state = 955}, + [5033] = {.lex_state = 955}, + [5034] = {.lex_state = 955}, + [5035] = {.lex_state = 955}, + [5036] = {.lex_state = 955}, + [5037] = {.lex_state = 955}, + [5038] = {.lex_state = 955}, + [5039] = {.lex_state = 955}, + [5040] = {.lex_state = 955}, + [5041] = {.lex_state = 955}, + [5042] = {.lex_state = 955}, + [5043] = {.lex_state = 955}, + [5044] = {.lex_state = 955}, + [5045] = {.lex_state = 955}, + [5046] = {.lex_state = 364}, + [5047] = {.lex_state = 922}, + [5048] = {.lex_state = 43}, + [5049] = {.lex_state = 1026}, + [5050] = {.lex_state = 369}, + [5051] = {.lex_state = 1026}, + [5052] = {.lex_state = 1026}, + [5053] = {.lex_state = 1026}, + [5054] = {.lex_state = 922}, + [5055] = {.lex_state = 370}, + [5056] = {.lex_state = 371}, + [5057] = {.lex_state = 955}, + [5058] = {.lex_state = 955}, + [5059] = {.lex_state = 370}, + [5060] = {.lex_state = 4422}, + [5061] = {.lex_state = 955}, + [5062] = {.lex_state = 955}, + [5063] = {.lex_state = 955}, + [5064] = {.lex_state = 43}, + [5065] = {.lex_state = 43}, + [5066] = {.lex_state = 922}, + [5067] = {.lex_state = 922}, + [5068] = {.lex_state = 955}, + [5069] = {.lex_state = 43}, + [5070] = {.lex_state = 43}, + [5071] = {.lex_state = 1026}, + [5072] = {.lex_state = 955}, + [5073] = {.lex_state = 955}, + [5074] = {.lex_state = 955}, + [5075] = {.lex_state = 955}, + [5076] = {.lex_state = 4422}, + [5077] = {.lex_state = 955}, + [5078] = {.lex_state = 955}, + [5079] = {.lex_state = 368}, + [5080] = {.lex_state = 955}, + [5081] = {.lex_state = 955}, + [5082] = {.lex_state = 43}, + [5083] = {.lex_state = 955}, + [5084] = {.lex_state = 4422}, + [5085] = {.lex_state = 43}, + [5086] = {.lex_state = 371}, + [5087] = {.lex_state = 371}, + [5088] = {.lex_state = 371}, + [5089] = {.lex_state = 955}, + [5090] = {.lex_state = 43}, + [5091] = {.lex_state = 955}, + [5092] = {.lex_state = 43}, + [5093] = {.lex_state = 43}, + [5094] = {.lex_state = 43}, + [5095] = {.lex_state = 43}, + [5096] = {.lex_state = 43}, + [5097] = {.lex_state = 43}, + [5098] = {.lex_state = 43}, + [5099] = {.lex_state = 43}, + [5100] = {.lex_state = 43}, + [5101] = {.lex_state = 43}, + [5102] = {.lex_state = 43}, + [5103] = {.lex_state = 43}, + [5104] = {.lex_state = 43}, + [5105] = {.lex_state = 43}, + [5106] = {.lex_state = 43}, + [5107] = {.lex_state = 43}, + [5108] = {.lex_state = 43}, + [5109] = {.lex_state = 43}, + [5110] = {.lex_state = 375}, + [5111] = {.lex_state = 377}, + [5112] = {.lex_state = 43}, + [5113] = {.lex_state = 955}, + [5114] = {.lex_state = 43}, + [5115] = {.lex_state = 922}, + [5116] = {.lex_state = 955}, + [5117] = {.lex_state = 922}, + [5118] = {.lex_state = 922}, + [5119] = {.lex_state = 43}, + [5120] = {.lex_state = 955}, + [5121] = {.lex_state = 922}, + [5122] = {.lex_state = 922}, + [5123] = {.lex_state = 955}, + [5124] = {.lex_state = 4422}, + [5125] = {.lex_state = 4422}, + [5126] = {.lex_state = 955}, + [5127] = {.lex_state = 955}, + [5128] = {.lex_state = 376}, + [5129] = {.lex_state = 43}, + [5130] = {.lex_state = 381}, + [5131] = {.lex_state = 43}, + [5132] = {.lex_state = 43}, + [5133] = {.lex_state = 43}, + [5134] = {.lex_state = 922}, + [5135] = {.lex_state = 955}, + [5136] = {.lex_state = 117}, + [5137] = {.lex_state = 980}, + [5138] = {.lex_state = 117}, + [5139] = {.lex_state = 117}, + [5140] = {.lex_state = 117}, + [5141] = {.lex_state = 955}, + [5142] = {.lex_state = 980}, + [5143] = {.lex_state = 955}, + [5144] = {.lex_state = 955}, + [5145] = {.lex_state = 955}, + [5146] = {.lex_state = 955}, + [5147] = {.lex_state = 955}, + [5148] = {.lex_state = 955}, + [5149] = {.lex_state = 955}, + [5150] = {.lex_state = 955}, + [5151] = {.lex_state = 43}, + [5152] = {.lex_state = 43}, + [5153] = {.lex_state = 369}, + [5154] = {.lex_state = 955}, + [5155] = {.lex_state = 43}, + [5156] = {.lex_state = 365}, + [5157] = {.lex_state = 922}, + [5158] = {.lex_state = 922}, + [5159] = {.lex_state = 43}, + [5160] = {.lex_state = 980}, + [5161] = {.lex_state = 43}, + [5162] = {.lex_state = 336}, + [5163] = {.lex_state = 382}, + [5164] = {.lex_state = 371}, + [5165] = {.lex_state = 447}, + [5166] = {.lex_state = 980}, + [5167] = {.lex_state = 43}, + [5168] = {.lex_state = 382}, + [5169] = {.lex_state = 922}, + [5170] = {.lex_state = 373}, + [5171] = {.lex_state = 378}, + [5172] = {.lex_state = 336}, + [5173] = {.lex_state = 43}, + [5174] = {.lex_state = 922}, + [5175] = {.lex_state = 980}, + [5176] = {.lex_state = 43}, + [5177] = {.lex_state = 371}, + [5178] = {.lex_state = 378}, + [5179] = {.lex_state = 373}, + [5180] = {.lex_state = 922}, + [5181] = {.lex_state = 350}, + [5182] = {.lex_state = 452}, + [5183] = {.lex_state = 350}, + [5184] = {.lex_state = 457}, + [5185] = {.lex_state = 445}, + [5186] = {.lex_state = 411}, + [5187] = {.lex_state = 43}, + [5188] = {.lex_state = 423}, + [5189] = {.lex_state = 373}, + [5190] = {.lex_state = 373}, + [5191] = {.lex_state = 373}, + [5192] = {.lex_state = 955}, + [5193] = {.lex_state = 373}, + [5194] = {.lex_state = 373}, + [5195] = {.lex_state = 365}, + [5196] = {.lex_state = 43}, + [5197] = {.lex_state = 980}, + [5198] = {.lex_state = 980}, + [5199] = {.lex_state = 980}, + [5200] = {.lex_state = 980}, + [5201] = {.lex_state = 980}, + [5202] = {.lex_state = 980}, + [5203] = {.lex_state = 430}, + [5204] = {.lex_state = 430}, + [5205] = {.lex_state = 100}, + [5206] = {.lex_state = 4003}, + [5207] = {.lex_state = 922}, + [5208] = {.lex_state = 4003}, + [5209] = {.lex_state = 4003}, + [5210] = {.lex_state = 350}, + [5211] = {.lex_state = 350}, + [5212] = {.lex_state = 380}, + [5213] = {.lex_state = 4601}, + [5214] = {.lex_state = 4601}, + [5215] = {.lex_state = 392}, + [5216] = {.lex_state = 4003}, + [5217] = {.lex_state = 4003}, + [5218] = {.lex_state = 394}, + [5219] = {.lex_state = 48}, + [5220] = {.lex_state = 431}, + [5221] = {.lex_state = 43}, + [5222] = {.lex_state = 448}, + [5223] = {.lex_state = 117}, + [5224] = {.lex_state = 431}, + [5225] = {.lex_state = 117}, + [5226] = {.lex_state = 117}, + [5227] = {.lex_state = 117}, + [5228] = {.lex_state = 431}, + [5229] = {.lex_state = 100}, + [5230] = {.lex_state = 100}, + [5231] = {.lex_state = 4601}, + [5232] = {.lex_state = 4601}, + [5233] = {.lex_state = 448}, + [5234] = {.lex_state = 4421}, + [5235] = {.lex_state = 4003}, + [5236] = {.lex_state = 4003}, + [5237] = {.lex_state = 425}, + [5238] = {.lex_state = 43}, + [5239] = {.lex_state = 4003}, + [5240] = {.lex_state = 4003}, + [5241] = {.lex_state = 379}, + [5242] = {.lex_state = 48}, + [5243] = {.lex_state = 43}, + [5244] = {.lex_state = 379}, + [5245] = {.lex_state = 4601}, + [5246] = {.lex_state = 4601}, + [5247] = {.lex_state = 379}, + [5248] = {.lex_state = 379}, + [5249] = {.lex_state = 4421}, + [5250] = {.lex_state = 4421}, + [5251] = {.lex_state = 412}, + [5252] = {.lex_state = 350}, + [5253] = {.lex_state = 458}, + [5254] = {.lex_state = 458}, + [5255] = {.lex_state = 43}, + [5256] = {.lex_state = 4421}, + [5257] = {.lex_state = 424}, + [5258] = {.lex_state = 922}, + [5259] = {.lex_state = 922}, + [5260] = {.lex_state = 922}, + [5261] = {.lex_state = 424}, + [5262] = {.lex_state = 4003}, + [5263] = {.lex_state = 4003}, + [5264] = {.lex_state = 431}, + [5265] = {.lex_state = 78}, + [5266] = {.lex_state = 43}, + [5267] = {.lex_state = 4003}, + [5268] = {.lex_state = 4003}, + [5269] = {.lex_state = 4003}, + [5270] = {.lex_state = 4003}, + [5271] = {.lex_state = 410}, + [5272] = {.lex_state = 4003}, + [5273] = {.lex_state = 4003}, + [5274] = {.lex_state = 117}, + [5275] = {.lex_state = 380}, + [5276] = {.lex_state = 380}, + [5277] = {.lex_state = 380}, + [5278] = {.lex_state = 410}, + [5279] = {.lex_state = 380}, + [5280] = {.lex_state = 410}, + [5281] = {.lex_state = 350}, + [5282] = {.lex_state = 350}, + [5283] = {.lex_state = 350}, + [5284] = {.lex_state = 336}, + [5285] = {.lex_state = 79}, + [5286] = {.lex_state = 4421}, + [5287] = {.lex_state = 117}, + [5288] = {.lex_state = 117}, + [5289] = {.lex_state = 922}, + [5290] = {.lex_state = 379}, + [5291] = {.lex_state = 432}, + [5292] = {.lex_state = 43}, + [5293] = {.lex_state = 336}, + [5294] = {.lex_state = 431}, + [5295] = {.lex_state = 4421}, + [5296] = {.lex_state = 4421}, + [5297] = {.lex_state = 4003}, + [5298] = {.lex_state = 117}, + [5299] = {.lex_state = 350}, + [5300] = {.lex_state = 395}, + [5301] = {.lex_state = 425}, + [5302] = {.lex_state = 425}, + [5303] = {.lex_state = 446}, + [5304] = {.lex_state = 117}, + [5305] = {.lex_state = 117}, + [5306] = {.lex_state = 117}, + [5307] = {.lex_state = 1032}, + [5308] = {.lex_state = 117}, + [5309] = {.lex_state = 117}, + [5310] = {.lex_state = 117}, + [5311] = {.lex_state = 117}, + [5312] = {.lex_state = 117}, + [5313] = {.lex_state = 117}, + [5314] = {.lex_state = 433}, + [5315] = {.lex_state = 48}, + [5316] = {.lex_state = 117}, + [5317] = {.lex_state = 117}, + [5318] = {.lex_state = 413}, + [5319] = {.lex_state = 426}, + [5320] = {.lex_state = 117}, + [5321] = {.lex_state = 410}, + [5322] = {.lex_state = 117}, + [5323] = {.lex_state = 117}, + [5324] = {.lex_state = 117}, + [5325] = {.lex_state = 117}, + [5326] = {.lex_state = 72}, + [5327] = {.lex_state = 117}, + [5328] = {.lex_state = 117}, + [5329] = {.lex_state = 460}, + [5330] = {.lex_state = 117}, + [5331] = {.lex_state = 117}, + [5332] = {.lex_state = 395}, + [5333] = {.lex_state = 117}, + [5334] = {.lex_state = 117}, + [5335] = {.lex_state = 117}, + [5336] = {.lex_state = 117}, + [5337] = {.lex_state = 117}, + [5338] = {.lex_state = 117}, + [5339] = {.lex_state = 446}, + [5340] = {.lex_state = 1028}, + [5341] = {.lex_state = 446}, + [5342] = {.lex_state = 80}, + [5343] = {.lex_state = 43}, + [5344] = {.lex_state = 117}, + [5345] = {.lex_state = 117}, + [5346] = {.lex_state = 459}, + [5347] = {.lex_state = 43}, + [5348] = {.lex_state = 117}, + [5349] = {.lex_state = 459}, + [5350] = {.lex_state = 117}, + [5351] = {.lex_state = 117}, + [5352] = {.lex_state = 117}, + [5353] = {.lex_state = 433}, + [5354] = {.lex_state = 459}, + [5355] = {.lex_state = 459}, + [5356] = {.lex_state = 117}, + [5357] = {.lex_state = 117}, + [5358] = {.lex_state = 117}, + [5359] = {.lex_state = 986}, + [5360] = {.lex_state = 80}, + [5361] = {.lex_state = 117}, + [5362] = {.lex_state = 459}, + [5363] = {.lex_state = 48}, + [5364] = {.lex_state = 117}, + [5365] = {.lex_state = 425}, + [5366] = {.lex_state = 986}, + [5367] = {.lex_state = 117}, + [5368] = {.lex_state = 117}, + [5369] = {.lex_state = 117}, + [5370] = {.lex_state = 117}, + [5371] = {.lex_state = 117}, + [5372] = {.lex_state = 117}, + [5373] = {.lex_state = 410}, + [5374] = {.lex_state = 456}, + [5375] = {.lex_state = 446}, + [5376] = {.lex_state = 466}, + [5377] = {.lex_state = 73}, + [5378] = {.lex_state = 117}, + [5379] = {.lex_state = 117}, + [5380] = {.lex_state = 117}, + [5381] = {.lex_state = 117}, + [5382] = {.lex_state = 117}, + [5383] = {.lex_state = 453}, + [5384] = {.lex_state = 117}, + [5385] = {.lex_state = 425}, + [5386] = {.lex_state = 117}, + [5387] = {.lex_state = 43}, + [5388] = {.lex_state = 446}, + [5389] = {.lex_state = 922}, + [5390] = {.lex_state = 922}, + [5391] = {.lex_state = 393}, + [5392] = {.lex_state = 427}, + [5393] = {.lex_state = 43}, + [5394] = {.lex_state = 461}, + [5395] = {.lex_state = 74}, + [5396] = {.lex_state = 43}, + [5397] = {.lex_state = 427}, + [5398] = {.lex_state = 81}, + [5399] = {.lex_state = 1032}, + [5400] = {.lex_state = 43}, + [5401] = {.lex_state = 434}, + [5402] = {.lex_state = 393}, + [5403] = {.lex_state = 43}, + [5404] = {.lex_state = 922}, + [5405] = {.lex_state = 43}, + [5406] = {.lex_state = 48}, + [5407] = {.lex_state = 434}, + [5408] = {.lex_state = 462}, + [5409] = {.lex_state = 393}, + [5410] = {.lex_state = 48}, + [5411] = {.lex_state = 48}, + [5412] = {.lex_state = 1027}, + [5413] = {.lex_state = 455}, + [5414] = {.lex_state = 74}, + [5415] = {.lex_state = 454}, + [5416] = {.lex_state = 455}, + [5417] = {.lex_state = 455}, + [5418] = {.lex_state = 1052}, + [5419] = {.lex_state = 101}, + [5420] = {.lex_state = 101}, + [5421] = {.lex_state = 101}, + [5422] = {.lex_state = 101}, + [5423] = {.lex_state = 101}, + [5424] = {.lex_state = 101}, + [5425] = {.lex_state = 101}, + [5426] = {.lex_state = 101}, + [5427] = {.lex_state = 101}, + [5428] = {.lex_state = 101}, + [5429] = {.lex_state = 101}, + [5430] = {.lex_state = 101}, + [5431] = {.lex_state = 101}, + [5432] = {.lex_state = 101}, + [5433] = {.lex_state = 101}, + [5434] = {.lex_state = 101}, + [5435] = {.lex_state = 101}, + [5436] = {.lex_state = 101}, + [5437] = {.lex_state = 81}, + [5438] = {.lex_state = 416}, + [5439] = {.lex_state = 1027}, + [5440] = {.lex_state = 922}, + [5441] = {.lex_state = 1027}, + [5442] = {.lex_state = 99}, + [5443] = {.lex_state = 922}, + [5444] = {.lex_state = 922}, + [5445] = {.lex_state = 922}, + [5446] = {.lex_state = 922}, + [5447] = {.lex_state = 922}, + [5448] = {.lex_state = 922}, + [5449] = {.lex_state = 922}, + [5450] = {.lex_state = 922}, + [5451] = {.lex_state = 922}, + [5452] = {.lex_state = 922}, + [5453] = {.lex_state = 48}, + [5454] = {.lex_state = 922}, + [5455] = {.lex_state = 922}, + [5456] = {.lex_state = 43}, + [5457] = {.lex_state = 922}, + [5458] = {.lex_state = 922}, + [5459] = {.lex_state = 922}, + [5460] = {.lex_state = 922}, + [5461] = {.lex_state = 922}, + [5462] = {.lex_state = 922}, + [5463] = {.lex_state = 922}, + [5464] = {.lex_state = 1052}, + [5465] = {.lex_state = 922}, + [5466] = {.lex_state = 43}, + [5467] = {.lex_state = 48}, + [5468] = {.lex_state = 922}, + [5469] = {.lex_state = 922}, + [5470] = {.lex_state = 987}, + [5471] = {.lex_state = 455}, + [5472] = {.lex_state = 48}, + [5473] = {.lex_state = 1030}, + [5474] = {.lex_state = 81}, + [5475] = {.lex_state = 43}, + [5476] = {.lex_state = 1029}, + [5477] = {.lex_state = 43}, + [5478] = {.lex_state = 393}, + [5479] = {.lex_state = 1029}, + [5480] = {.lex_state = 43}, + [5481] = {.lex_state = 81}, + [5482] = {.lex_state = 81}, + [5483] = {.lex_state = 1052}, + [5484] = {.lex_state = 99}, + [5485] = {.lex_state = 922}, + [5486] = {.lex_state = 99}, + [5487] = {.lex_state = 922}, + [5488] = {.lex_state = 48}, + [5489] = {.lex_state = 48}, + [5490] = {.lex_state = 434}, + [5491] = {.lex_state = 48}, + [5492] = {.lex_state = 48}, + [5493] = {.lex_state = 48}, + [5494] = {.lex_state = 48}, + [5495] = {.lex_state = 922}, + [5496] = {.lex_state = 922}, + [5497] = {.lex_state = 48}, + [5498] = {.lex_state = 48}, + [5499] = {.lex_state = 48}, + [5500] = {.lex_state = 48}, + [5501] = {.lex_state = 48}, + [5502] = {.lex_state = 48}, + [5503] = {.lex_state = 48}, + [5504] = {.lex_state = 434}, + [5505] = {.lex_state = 48}, + [5506] = {.lex_state = 48}, + [5507] = {.lex_state = 48}, + [5508] = {.lex_state = 467}, + [5509] = {.lex_state = 48}, + [5510] = {.lex_state = 1052}, + [5511] = {.lex_state = 462}, + [5512] = {.lex_state = 1052}, + [5513] = {.lex_state = 48}, + [5514] = {.lex_state = 467}, + [5515] = {.lex_state = 48}, + [5516] = {.lex_state = 1027}, + [5517] = {.lex_state = 48}, + [5518] = {.lex_state = 1028}, + [5519] = {.lex_state = 455}, + [5520] = {.lex_state = 43}, + [5521] = {.lex_state = 393}, + [5522] = {.lex_state = 922}, + [5523] = {.lex_state = 922}, + [5524] = {.lex_state = 99}, + [5525] = {.lex_state = 420}, + [5526] = {.lex_state = 420}, + [5527] = {.lex_state = 420}, + [5528] = {.lex_state = 76}, + [5529] = {.lex_state = 420}, + [5530] = {.lex_state = 468}, + [5531] = {.lex_state = 428}, + [5532] = {.lex_state = 43}, + [5533] = {.lex_state = 428}, + [5534] = {.lex_state = 464}, + [5535] = {.lex_state = 1030}, + [5536] = {.lex_state = 95}, + [5537] = {.lex_state = 922}, + [5538] = {.lex_state = 428}, + [5539] = {.lex_state = 444}, + [5540] = {.lex_state = 1052}, + [5541] = {.lex_state = 922}, + [5542] = {.lex_state = 463}, + [5543] = {.lex_state = 95}, + [5544] = {.lex_state = 43}, + [5545] = {.lex_state = 420}, + [5546] = {.lex_state = 101}, + [5547] = {.lex_state = 922}, + [5548] = {.lex_state = 922}, + [5549] = {.lex_state = 420}, + [5550] = {.lex_state = 43}, + [5551] = {.lex_state = 922}, + [5552] = {.lex_state = 444}, + [5553] = {.lex_state = 420}, + [5554] = {.lex_state = 922}, + [5555] = {.lex_state = 101}, + [5556] = {.lex_state = 101}, + [5557] = {.lex_state = 75}, + [5558] = {.lex_state = 410}, + [5559] = {.lex_state = 922}, + [5560] = {.lex_state = 420}, + [5561] = {.lex_state = 922}, + [5562] = {.lex_state = 336}, + [5563] = {.lex_state = 420}, + [5564] = {.lex_state = 987}, + [5565] = {.lex_state = 463}, + [5566] = {.lex_state = 922}, + [5567] = {.lex_state = 420}, + [5568] = {.lex_state = 420}, + [5569] = {.lex_state = 420}, + [5570] = {.lex_state = 463}, + [5571] = {.lex_state = 463}, + [5572] = {.lex_state = 922}, + [5573] = {.lex_state = 420}, + [5574] = {.lex_state = 922}, + [5575] = {.lex_state = 1052}, + [5576] = {.lex_state = 474}, + [5577] = {.lex_state = 420}, + [5578] = {.lex_state = 101}, + [5579] = {.lex_state = 434}, + [5580] = {.lex_state = 1029}, + [5581] = {.lex_state = 410}, + [5582] = {.lex_state = 922}, + [5583] = {.lex_state = 410}, + [5584] = {.lex_state = 420}, + [5585] = {.lex_state = 43}, + [5586] = {.lex_state = 410}, + [5587] = {.lex_state = 420}, + [5588] = {.lex_state = 922}, + [5589] = {.lex_state = 922}, + [5590] = {.lex_state = 420}, + [5591] = {.lex_state = 1029}, + [5592] = {.lex_state = 428}, + [5593] = {.lex_state = 43}, + [5594] = {.lex_state = 1052}, + [5595] = {.lex_state = 1052}, + [5596] = {.lex_state = 474}, + [5597] = {.lex_state = 43}, + [5598] = {.lex_state = 101}, + [5599] = {.lex_state = 420}, + [5600] = {.lex_state = 463}, + [5601] = {.lex_state = 420}, + [5602] = {.lex_state = 1052}, + [5603] = {.lex_state = 468}, + [5604] = {.lex_state = 130}, + [5605] = {.lex_state = 75}, + [5606] = {.lex_state = 420}, + [5607] = {.lex_state = 922}, + [5608] = {.lex_state = 336}, + [5609] = {.lex_state = 428}, + [5610] = {.lex_state = 468}, + [5611] = {.lex_state = 43}, + [5612] = {.lex_state = 434}, + [5613] = {.lex_state = 420}, + [5614] = {.lex_state = 468}, + [5615] = {.lex_state = 922}, + [5616] = {.lex_state = 336}, + [5617] = {.lex_state = 468}, + [5618] = {.lex_state = 75}, + [5619] = {.lex_state = 463}, + [5620] = {.lex_state = 922}, + [5621] = {.lex_state = 922}, + [5622] = {.lex_state = 922}, + [5623] = {.lex_state = 420}, + [5624] = {.lex_state = 428}, + [5625] = {.lex_state = 420}, + [5626] = {.lex_state = 420}, + [5627] = {.lex_state = 75}, + [5628] = {.lex_state = 420}, + [5629] = {.lex_state = 130}, + [5630] = {.lex_state = 464}, + [5631] = {.lex_state = 43}, + [5632] = {.lex_state = 420}, + [5633] = {.lex_state = 99}, + [5634] = {.lex_state = 922}, + [5635] = {.lex_state = 444}, + [5636] = {.lex_state = 465}, + [5637] = {.lex_state = 4004}, + [5638] = {.lex_state = 4004}, + [5639] = {.lex_state = 465}, + [5640] = {.lex_state = 505}, + [5641] = {.lex_state = 465}, + [5642] = {.lex_state = 948}, + [5643] = {.lex_state = 444}, + [5644] = {.lex_state = 410}, + [5645] = {.lex_state = 410}, + [5646] = {.lex_state = 410}, + [5647] = {.lex_state = 922}, + [5648] = {.lex_state = 948}, + [5649] = {.lex_state = 948}, + [5650] = {.lex_state = 948}, + [5651] = {.lex_state = 465}, + [5652] = {.lex_state = 4004}, + [5653] = {.lex_state = 505}, + [5654] = {.lex_state = 4004}, + [5655] = {.lex_state = 465}, + [5656] = {.lex_state = 130}, + [5657] = {.lex_state = 948}, + [5658] = {.lex_state = 948}, + [5659] = {.lex_state = 948}, + [5660] = {.lex_state = 948}, + [5661] = {.lex_state = 948}, + [5662] = {.lex_state = 922}, + [5663] = {.lex_state = 473}, + [5664] = {.lex_state = 410}, + [5665] = {.lex_state = 353}, + [5666] = {.lex_state = 469}, + [5667] = {.lex_state = 100}, + [5668] = {.lex_state = 100}, + [5669] = {.lex_state = 353}, + [5670] = {.lex_state = 485}, + [5671] = {.lex_state = 420}, + [5672] = {.lex_state = 362}, + [5673] = {.lex_state = 420}, + [5674] = {.lex_state = 948}, + [5675] = {.lex_state = 362}, + [5676] = {.lex_state = 390}, + [5677] = {.lex_state = 4004}, + [5678] = {.lex_state = 4004}, + [5679] = {.lex_state = 362}, + [5680] = {.lex_state = 948}, + [5681] = {.lex_state = 948}, + [5682] = {.lex_state = 922}, + [5683] = {.lex_state = 948}, + [5684] = {.lex_state = 4004}, + [5685] = {.lex_state = 4004}, + [5686] = {.lex_state = 948}, + [5687] = {.lex_state = 410}, + [5688] = {.lex_state = 420}, + [5689] = {.lex_state = 948}, + [5690] = {.lex_state = 948}, + [5691] = {.lex_state = 948}, + [5692] = {.lex_state = 420}, + [5693] = {.lex_state = 435}, + [5694] = {.lex_state = 948}, + [5695] = {.lex_state = 476}, + [5696] = {.lex_state = 922}, + [5697] = {.lex_state = 439}, + [5698] = {.lex_state = 410}, + [5699] = {.lex_state = 420}, + [5700] = {.lex_state = 987}, + [5701] = {.lex_state = 948}, + [5702] = {.lex_state = 948}, + [5703] = {.lex_state = 353}, + [5704] = {.lex_state = 948}, + [5705] = {.lex_state = 465}, + [5706] = {.lex_state = 420}, + [5707] = {.lex_state = 362}, + [5708] = {.lex_state = 4004}, + [5709] = {.lex_state = 4004}, + [5710] = {.lex_state = 362}, + [5711] = {.lex_state = 948}, + [5712] = {.lex_state = 948}, + [5713] = {.lex_state = 922}, + [5714] = {.lex_state = 948}, + [5715] = {.lex_state = 948}, + [5716] = {.lex_state = 470}, + [5717] = {.lex_state = 353}, + [5718] = {.lex_state = 922}, + [5719] = {.lex_state = 410}, + [5720] = {.lex_state = 922}, + [5721] = {.lex_state = 922}, + [5722] = {.lex_state = 362}, + [5723] = {.lex_state = 4004}, + [5724] = {.lex_state = 4004}, + [5725] = {.lex_state = 383}, + [5726] = {.lex_state = 362}, + [5727] = {.lex_state = 948}, + [5728] = {.lex_state = 353}, + [5729] = {.lex_state = 948}, + [5730] = {.lex_state = 353}, + [5731] = {.lex_state = 336}, + [5732] = {.lex_state = 362}, + [5733] = {.lex_state = 4004}, + [5734] = {.lex_state = 4004}, + [5735] = {.lex_state = 362}, + [5736] = {.lex_state = 336}, + [5737] = {.lex_state = 948}, + [5738] = {.lex_state = 336}, + [5739] = {.lex_state = 948}, + [5740] = {.lex_state = 353}, + [5741] = {.lex_state = 391}, + [5742] = {.lex_state = 362}, + [5743] = {.lex_state = 473}, + [5744] = {.lex_state = 4004}, + [5745] = {.lex_state = 4004}, + [5746] = {.lex_state = 362}, + [5747] = {.lex_state = 948}, + [5748] = {.lex_state = 948}, + [5749] = {.lex_state = 353}, + [5750] = {.lex_state = 362}, + [5751] = {.lex_state = 4004}, + [5752] = {.lex_state = 4004}, + [5753] = {.lex_state = 362}, + [5754] = {.lex_state = 948}, + [5755] = {.lex_state = 948}, + [5756] = {.lex_state = 353}, + [5757] = {.lex_state = 362}, + [5758] = {.lex_state = 4004}, + [5759] = {.lex_state = 4004}, + [5760] = {.lex_state = 362}, + [5761] = {.lex_state = 948}, + [5762] = {.lex_state = 948}, + [5763] = {.lex_state = 353}, + [5764] = {.lex_state = 420}, + [5765] = {.lex_state = 362}, + [5766] = {.lex_state = 4004}, + [5767] = {.lex_state = 4004}, + [5768] = {.lex_state = 362}, + [5769] = {.lex_state = 948}, + [5770] = {.lex_state = 948}, + [5771] = {.lex_state = 353}, + [5772] = {.lex_state = 362}, + [5773] = {.lex_state = 4004}, + [5774] = {.lex_state = 4004}, + [5775] = {.lex_state = 362}, + [5776] = {.lex_state = 948}, + [5777] = {.lex_state = 948}, + [5778] = {.lex_state = 353}, + [5779] = {.lex_state = 362}, + [5780] = {.lex_state = 362}, + [5781] = {.lex_state = 948}, + [5782] = {.lex_state = 948}, + [5783] = {.lex_state = 353}, + [5784] = {.lex_state = 947}, + [5785] = {.lex_state = 362}, + [5786] = {.lex_state = 362}, + [5787] = {.lex_state = 362}, + [5788] = {.lex_state = 948}, + [5789] = {.lex_state = 948}, + [5790] = {.lex_state = 353}, + [5791] = {.lex_state = 362}, + [5792] = {.lex_state = 362}, + [5793] = {.lex_state = 948}, + [5794] = {.lex_state = 948}, + [5795] = {.lex_state = 353}, + [5796] = {.lex_state = 362}, + [5797] = {.lex_state = 948}, + [5798] = {.lex_state = 362}, + [5799] = {.lex_state = 948}, + [5800] = {.lex_state = 948}, + [5801] = {.lex_state = 353}, + [5802] = {.lex_state = 362}, + [5803] = {.lex_state = 362}, + [5804] = {.lex_state = 948}, + [5805] = {.lex_state = 948}, + [5806] = {.lex_state = 353}, + [5807] = {.lex_state = 410}, + [5808] = {.lex_state = 948}, + [5809] = {.lex_state = 948}, + [5810] = {.lex_state = 353}, + [5811] = {.lex_state = 473}, + [5812] = {.lex_state = 948}, + [5813] = {.lex_state = 948}, + [5814] = {.lex_state = 353}, + [5815] = {.lex_state = 948}, + [5816] = {.lex_state = 948}, + [5817] = {.lex_state = 353}, + [5818] = {.lex_state = 948}, + [5819] = {.lex_state = 948}, + [5820] = {.lex_state = 353}, + [5821] = {.lex_state = 353}, + [5822] = {.lex_state = 353}, + [5823] = {.lex_state = 353}, + [5824] = {.lex_state = 353}, + [5825] = {.lex_state = 353}, + [5826] = {.lex_state = 353}, + [5827] = {.lex_state = 353}, + [5828] = {.lex_state = 353}, + [5829] = {.lex_state = 353}, + [5830] = {.lex_state = 353}, + [5831] = {.lex_state = 353}, + [5832] = {.lex_state = 353}, + [5833] = {.lex_state = 353}, + [5834] = {.lex_state = 353}, + [5835] = {.lex_state = 353}, + [5836] = {.lex_state = 353}, + [5837] = {.lex_state = 353}, + [5838] = {.lex_state = 353}, + [5839] = {.lex_state = 353}, + [5840] = {.lex_state = 353}, + [5841] = {.lex_state = 353}, + [5842] = {.lex_state = 353}, + [5843] = {.lex_state = 353}, + [5844] = {.lex_state = 353}, + [5845] = {.lex_state = 336}, + [5846] = {.lex_state = 336}, + [5847] = {.lex_state = 336}, + [5848] = {.lex_state = 362}, + [5849] = {.lex_state = 922}, + [5850] = {.lex_state = 922}, + [5851] = {.lex_state = 362}, + [5852] = {.lex_state = 922}, + [5853] = {.lex_state = 384}, + [5854] = {.lex_state = 922}, + [5855] = {.lex_state = 410}, + [5856] = {.lex_state = 4004}, + [5857] = {.lex_state = 4004}, + [5858] = {.lex_state = 130}, + [5859] = {.lex_state = 420}, + [5860] = {.lex_state = 505}, + [5861] = {.lex_state = 43}, + [5862] = {.lex_state = 947}, + [5863] = {.lex_state = 410}, + [5864] = {.lex_state = 362}, + [5865] = {.lex_state = 948}, + [5866] = {.lex_state = 43}, + [5867] = {.lex_state = 948}, + [5868] = {.lex_state = 948}, + [5869] = {.lex_state = 948}, + [5870] = {.lex_state = 948}, + [5871] = {.lex_state = 421}, + [5872] = {.lex_state = 947}, + [5873] = {.lex_state = 473}, + [5874] = {.lex_state = 4004}, + [5875] = {.lex_state = 4004}, + [5876] = {.lex_state = 505}, + [5877] = {.lex_state = 505}, + [5878] = {.lex_state = 922}, + [5879] = {.lex_state = 100}, + [5880] = {.lex_state = 948}, + [5881] = {.lex_state = 100}, + [5882] = {.lex_state = 100}, + [5883] = {.lex_state = 100}, + [5884] = {.lex_state = 948}, + [5885] = {.lex_state = 516}, + [5886] = {.lex_state = 948}, + [5887] = {.lex_state = 516}, + [5888] = {.lex_state = 516}, + [5889] = {.lex_state = 43}, + [5890] = {.lex_state = 516}, + [5891] = {.lex_state = 43}, + [5892] = {.lex_state = 477}, + [5893] = {.lex_state = 43}, + [5894] = {.lex_state = 948}, + [5895] = {.lex_state = 95}, + [5896] = {.lex_state = 516}, + [5897] = {.lex_state = 516}, + [5898] = {.lex_state = 43}, + [5899] = {.lex_state = 516}, + [5900] = {.lex_state = 472}, + [5901] = {.lex_state = 444}, + [5902] = {.lex_state = 43}, + [5903] = {.lex_state = 75}, + [5904] = {.lex_state = 516}, + [5905] = {.lex_state = 43}, + [5906] = {.lex_state = 516}, + [5907] = {.lex_state = 516}, + [5908] = {.lex_state = 43}, + [5909] = {.lex_state = 487}, + [5910] = {.lex_state = 949}, + [5911] = {.lex_state = 43}, + [5912] = {.lex_state = 516}, + [5913] = {.lex_state = 516}, + [5914] = {.lex_state = 101}, + [5915] = {.lex_state = 101}, + [5916] = {.lex_state = 75}, + [5917] = {.lex_state = 117}, + [5918] = {.lex_state = 410}, + [5919] = {.lex_state = 471}, + [5920] = {.lex_state = 948}, + [5921] = {.lex_state = 101}, + [5922] = {.lex_state = 516}, + [5923] = {.lex_state = 948}, + [5924] = {.lex_state = 472}, + [5925] = {.lex_state = 43}, + [5926] = {.lex_state = 441}, + [5927] = {.lex_state = 43}, + [5928] = {.lex_state = 516}, + [5929] = {.lex_state = 948}, + [5930] = {.lex_state = 948}, + [5931] = {.lex_state = 101}, + [5932] = {.lex_state = 43}, + [5933] = {.lex_state = 516}, + [5934] = {.lex_state = 441}, + [5935] = {.lex_state = 43}, + [5936] = {.lex_state = 486}, + [5937] = {.lex_state = 410}, + [5938] = {.lex_state = 516}, + [5939] = {.lex_state = 43}, + [5940] = {.lex_state = 516}, + [5941] = {.lex_state = 43}, + [5942] = {.lex_state = 948}, + [5943] = {.lex_state = 948}, + [5944] = {.lex_state = 516}, + [5945] = {.lex_state = 516}, + [5946] = {.lex_state = 949}, + [5947] = {.lex_state = 43}, + [5948] = {.lex_state = 43}, + [5949] = {.lex_state = 516}, + [5950] = {.lex_state = 436}, + [5951] = {.lex_state = 43}, + [5952] = {.lex_state = 948}, + [5953] = {.lex_state = 43}, + [5954] = {.lex_state = 472}, + [5955] = {.lex_state = 43}, + [5956] = {.lex_state = 438}, + [5957] = {.lex_state = 516}, + [5958] = {.lex_state = 948}, + [5959] = {.lex_state = 95}, + [5960] = {.lex_state = 516}, + [5961] = {.lex_state = 410}, + [5962] = {.lex_state = 43}, + [5963] = {.lex_state = 336}, + [5964] = {.lex_state = 422}, + [5965] = {.lex_state = 948}, + [5966] = {.lex_state = 410}, + [5967] = {.lex_state = 948}, + [5968] = {.lex_state = 101}, + [5969] = {.lex_state = 516}, + [5970] = {.lex_state = 948}, + [5971] = {.lex_state = 336}, + [5972] = {.lex_state = 391}, + [5973] = {.lex_state = 336}, + [5974] = {.lex_state = 410}, + [5975] = {.lex_state = 336}, + [5976] = {.lex_state = 472}, + [5977] = {.lex_state = 472}, + [5978] = {.lex_state = 410}, + [5979] = {.lex_state = 43}, + [5980] = {.lex_state = 516}, + [5981] = {.lex_state = 75}, + [5982] = {.lex_state = 948}, + [5983] = {.lex_state = 43}, + [5984] = {.lex_state = 444}, + [5985] = {.lex_state = 101}, + [5986] = {.lex_state = 516}, + [5987] = {.lex_state = 487}, + [5988] = {.lex_state = 101}, + [5989] = {.lex_state = 948}, + [5990] = {.lex_state = 516}, + [5991] = {.lex_state = 477}, + [5992] = {.lex_state = 516}, + [5993] = {.lex_state = 516}, + [5994] = {.lex_state = 444}, + [5995] = {.lex_state = 336}, + [5996] = {.lex_state = 948}, + [5997] = {.lex_state = 948}, + [5998] = {.lex_state = 384}, + [5999] = {.lex_state = 336}, + [6000] = {.lex_state = 516}, + [6001] = {.lex_state = 948}, + [6002] = {.lex_state = 948}, + [6003] = {.lex_state = 948}, + [6004] = {.lex_state = 948}, + [6005] = {.lex_state = 948}, + [6006] = {.lex_state = 43}, + [6007] = {.lex_state = 386}, + [6008] = {.lex_state = 43}, + [6009] = {.lex_state = 948}, + [6010] = {.lex_state = 948}, + [6011] = {.lex_state = 948}, + [6012] = {.lex_state = 948}, + [6013] = {.lex_state = 948}, + [6014] = {.lex_state = 948}, + [6015] = {.lex_state = 948}, + [6016] = {.lex_state = 948}, + [6017] = {.lex_state = 948}, + [6018] = {.lex_state = 948}, + [6019] = {.lex_state = 948}, + [6020] = {.lex_state = 948}, + [6021] = {.lex_state = 95}, + [6022] = {.lex_state = 444}, + [6023] = {.lex_state = 948}, + [6024] = {.lex_state = 948}, + [6025] = {.lex_state = 43}, + [6026] = {.lex_state = 948}, + [6027] = {.lex_state = 948}, + [6028] = {.lex_state = 43}, + [6029] = {.lex_state = 948}, + [6030] = {.lex_state = 948}, + [6031] = {.lex_state = 948}, + [6032] = {.lex_state = 948}, + [6033] = {.lex_state = 948}, + [6034] = {.lex_state = 948}, + [6035] = {.lex_state = 948}, + [6036] = {.lex_state = 948}, + [6037] = {.lex_state = 948}, + [6038] = {.lex_state = 948}, + [6039] = {.lex_state = 948}, + [6040] = {.lex_state = 948}, + [6041] = {.lex_state = 948}, + [6042] = {.lex_state = 948}, + [6043] = {.lex_state = 948}, + [6044] = {.lex_state = 948}, + [6045] = {.lex_state = 410}, + [6046] = {.lex_state = 43}, + [6047] = {.lex_state = 949}, + [6048] = {.lex_state = 516}, + [6049] = {.lex_state = 948}, + [6050] = {.lex_state = 43}, + [6051] = {.lex_state = 117}, + [6052] = {.lex_state = 516}, + [6053] = {.lex_state = 436}, + [6054] = {.lex_state = 516}, + [6055] = {.lex_state = 990}, + [6056] = {.lex_state = 75}, + [6057] = {.lex_state = 990}, + [6058] = {.lex_state = 990}, + [6059] = {.lex_state = 990}, + [6060] = {.lex_state = 990}, + [6061] = {.lex_state = 990}, + [6062] = {.lex_state = 101}, + [6063] = {.lex_state = 420}, + [6064] = {.lex_state = 43}, + [6065] = {.lex_state = 948}, + [6066] = {.lex_state = 43}, + [6067] = {.lex_state = 388}, + [6068] = {.lex_state = 444}, + [6069] = {.lex_state = 516}, + [6070] = {.lex_state = 256}, + [6071] = {.lex_state = 256}, + [6072] = {.lex_state = 256}, + [6073] = {.lex_state = 256}, + [6074] = {.lex_state = 256}, + [6075] = {.lex_state = 256}, + [6076] = {.lex_state = 256}, + [6077] = {.lex_state = 494}, + [6078] = {.lex_state = 440}, + [6079] = {.lex_state = 360}, + [6080] = {.lex_state = 478}, + [6081] = {.lex_state = 948}, + [6082] = {.lex_state = 514}, + [6083] = {.lex_state = 948}, + [6084] = {.lex_state = 488}, + [6085] = {.lex_state = 360}, + [6086] = {.lex_state = 511}, + [6087] = {.lex_state = 948}, + [6088] = {.lex_state = 947}, + [6089] = {.lex_state = 256}, + [6090] = {.lex_state = 948}, + [6091] = {.lex_state = 256}, + [6092] = {.lex_state = 256}, + [6093] = {.lex_state = 256}, + [6094] = {.lex_state = 256}, + [6095] = {.lex_state = 256}, + [6096] = {.lex_state = 256}, + [6097] = {.lex_state = 256}, + [6098] = {.lex_state = 256}, + [6099] = {.lex_state = 948}, + [6100] = {.lex_state = 256}, + [6101] = {.lex_state = 494}, + [6102] = {.lex_state = 360}, + [6103] = {.lex_state = 256}, + [6104] = {.lex_state = 256}, + [6105] = {.lex_state = 948}, + [6106] = {.lex_state = 948}, + [6107] = {.lex_state = 360}, + [6108] = {.lex_state = 948}, + [6109] = {.lex_state = 442}, + [6110] = {.lex_state = 948}, + [6111] = {.lex_state = 511}, + [6112] = {.lex_state = 948}, + [6113] = {.lex_state = 256}, + [6114] = {.lex_state = 256}, + [6115] = {.lex_state = 256}, + [6116] = {.lex_state = 256}, + [6117] = {.lex_state = 256}, + [6118] = {.lex_state = 256}, + [6119] = {.lex_state = 256}, + [6120] = {.lex_state = 256}, + [6121] = {.lex_state = 503}, + [6122] = {.lex_state = 948}, + [6123] = {.lex_state = 494}, + [6124] = {.lex_state = 948}, + [6125] = {.lex_state = 360}, + [6126] = {.lex_state = 478}, + [6127] = {.lex_state = 444}, + [6128] = {.lex_state = 511}, + [6129] = {.lex_state = 948}, + [6130] = {.lex_state = 360}, + [6131] = {.lex_state = 478}, + [6132] = {.lex_state = 948}, + [6133] = {.lex_state = 444}, + [6134] = {.lex_state = 256}, + [6135] = {.lex_state = 511}, + [6136] = {.lex_state = 948}, + [6137] = {.lex_state = 256}, + [6138] = {.lex_state = 256}, + [6139] = {.lex_state = 256}, + [6140] = {.lex_state = 256}, + [6141] = {.lex_state = 256}, + [6142] = {.lex_state = 256}, + [6143] = {.lex_state = 256}, + [6144] = {.lex_state = 256}, + [6145] = {.lex_state = 948}, + [6146] = {.lex_state = 948}, + [6147] = {.lex_state = 948}, + [6148] = {.lex_state = 494}, + [6149] = {.lex_state = 360}, + [6150] = {.lex_state = 948}, + [6151] = {.lex_state = 948}, + [6152] = {.lex_state = 948}, + [6153] = {.lex_state = 948}, + [6154] = {.lex_state = 360}, + [6155] = {.lex_state = 362}, + [6156] = {.lex_state = 256}, + [6157] = {.lex_state = 948}, + [6158] = {.lex_state = 948}, + [6159] = {.lex_state = 256}, + [6160] = {.lex_state = 256}, + [6161] = {.lex_state = 256}, + [6162] = {.lex_state = 256}, + [6163] = {.lex_state = 256}, + [6164] = {.lex_state = 256}, + [6165] = {.lex_state = 256}, + [6166] = {.lex_state = 256}, + [6167] = {.lex_state = 948}, + [6168] = {.lex_state = 494}, + [6169] = {.lex_state = 360}, + [6170] = {.lex_state = 948}, + [6171] = {.lex_state = 948}, + [6172] = {.lex_state = 360}, + [6173] = {.lex_state = 948}, + [6174] = {.lex_state = 437}, + [6175] = {.lex_state = 948}, + [6176] = {.lex_state = 948}, + [6177] = {.lex_state = 948}, + [6178] = {.lex_state = 1027}, + [6179] = {.lex_state = 256}, + [6180] = {.lex_state = 256}, + [6181] = {.lex_state = 256}, + [6182] = {.lex_state = 256}, + [6183] = {.lex_state = 256}, + [6184] = {.lex_state = 256}, + [6185] = {.lex_state = 256}, + [6186] = {.lex_state = 256}, + [6187] = {.lex_state = 99}, + [6188] = {.lex_state = 494}, + [6189] = {.lex_state = 99}, + [6190] = {.lex_state = 360}, + [6191] = {.lex_state = 948}, + [6192] = {.lex_state = 478}, + [6193] = {.lex_state = 488}, + [6194] = {.lex_state = 360}, + [6195] = {.lex_state = 948}, + [6196] = {.lex_state = 948}, + [6197] = {.lex_state = 948}, + [6198] = {.lex_state = 948}, + [6199] = {.lex_state = 510}, + [6200] = {.lex_state = 99}, + [6201] = {.lex_state = 362}, + [6202] = {.lex_state = 256}, + [6203] = {.lex_state = 256}, + [6204] = {.lex_state = 256}, + [6205] = {.lex_state = 256}, + [6206] = {.lex_state = 256}, + [6207] = {.lex_state = 256}, + [6208] = {.lex_state = 256}, + [6209] = {.lex_state = 256}, + [6210] = {.lex_state = 82}, + [6211] = {.lex_state = 494}, + [6212] = {.lex_state = 360}, + [6213] = {.lex_state = 256}, + [6214] = {.lex_state = 488}, + [6215] = {.lex_state = 514}, + [6216] = {.lex_state = 360}, + [6217] = {.lex_state = 442}, + [6218] = {.lex_state = 948}, + [6219] = {.lex_state = 948}, + [6220] = {.lex_state = 490}, + [6221] = {.lex_state = 83}, + [6222] = {.lex_state = 256}, + [6223] = {.lex_state = 256}, + [6224] = {.lex_state = 256}, + [6225] = {.lex_state = 256}, + [6226] = {.lex_state = 256}, + [6227] = {.lex_state = 256}, + [6228] = {.lex_state = 256}, + [6229] = {.lex_state = 256}, + [6230] = {.lex_state = 948}, + [6231] = {.lex_state = 494}, + [6232] = {.lex_state = 360}, + [6233] = {.lex_state = 256}, + [6234] = {.lex_state = 256}, + [6235] = {.lex_state = 256}, + [6236] = {.lex_state = 360}, + [6237] = {.lex_state = 948}, + [6238] = {.lex_state = 948}, + [6239] = {.lex_state = 948}, + [6240] = {.lex_state = 948}, + [6241] = {.lex_state = 256}, + [6242] = {.lex_state = 256}, + [6243] = {.lex_state = 256}, + [6244] = {.lex_state = 256}, + [6245] = {.lex_state = 256}, + [6246] = {.lex_state = 256}, + [6247] = {.lex_state = 256}, + [6248] = {.lex_state = 256}, + [6249] = {.lex_state = 442}, + [6250] = {.lex_state = 510}, + [6251] = {.lex_state = 494}, + [6252] = {.lex_state = 510}, + [6253] = {.lex_state = 360}, + [6254] = {.lex_state = 99}, + [6255] = {.lex_state = 948}, + [6256] = {.lex_state = 360}, + [6257] = {.lex_state = 948}, + [6258] = {.lex_state = 948}, + [6259] = {.lex_state = 948}, + [6260] = {.lex_state = 948}, + [6261] = {.lex_state = 256}, + [6262] = {.lex_state = 256}, + [6263] = {.lex_state = 256}, + [6264] = {.lex_state = 256}, + [6265] = {.lex_state = 256}, + [6266] = {.lex_state = 256}, + [6267] = {.lex_state = 256}, + [6268] = {.lex_state = 256}, + [6269] = {.lex_state = 948}, + [6270] = {.lex_state = 442}, + [6271] = {.lex_state = 494}, + [6272] = {.lex_state = 948}, + [6273] = {.lex_state = 360}, + [6274] = {.lex_state = 494}, + [6275] = {.lex_state = 360}, + [6276] = {.lex_state = 442}, + [6277] = {.lex_state = 948}, + [6278] = {.lex_state = 256}, + [6279] = {.lex_state = 256}, + [6280] = {.lex_state = 256}, + [6281] = {.lex_state = 256}, + [6282] = {.lex_state = 256}, + [6283] = {.lex_state = 256}, + [6284] = {.lex_state = 256}, + [6285] = {.lex_state = 256}, + [6286] = {.lex_state = 442}, + [6287] = {.lex_state = 494}, + [6288] = {.lex_state = 360}, + [6289] = {.lex_state = 948}, + [6290] = {.lex_state = 360}, + [6291] = {.lex_state = 442}, + [6292] = {.lex_state = 420}, + [6293] = {.lex_state = 256}, + [6294] = {.lex_state = 256}, + [6295] = {.lex_state = 256}, + [6296] = {.lex_state = 256}, + [6297] = {.lex_state = 256}, + [6298] = {.lex_state = 256}, + [6299] = {.lex_state = 256}, + [6300] = {.lex_state = 256}, + [6301] = {.lex_state = 948}, + [6302] = {.lex_state = 494}, + [6303] = {.lex_state = 360}, + [6304] = {.lex_state = 360}, + [6305] = {.lex_state = 948}, + [6306] = {.lex_state = 948}, + [6307] = {.lex_state = 256}, + [6308] = {.lex_state = 256}, + [6309] = {.lex_state = 256}, + [6310] = {.lex_state = 256}, + [6311] = {.lex_state = 256}, + [6312] = {.lex_state = 256}, + [6313] = {.lex_state = 256}, + [6314] = {.lex_state = 256}, + [6315] = {.lex_state = 948}, + [6316] = {.lex_state = 494}, + [6317] = {.lex_state = 360}, + [6318] = {.lex_state = 360}, + [6319] = {.lex_state = 948}, + [6320] = {.lex_state = 948}, + [6321] = {.lex_state = 256}, + [6322] = {.lex_state = 256}, + [6323] = {.lex_state = 256}, + [6324] = {.lex_state = 256}, + [6325] = {.lex_state = 256}, + [6326] = {.lex_state = 256}, + [6327] = {.lex_state = 256}, + [6328] = {.lex_state = 256}, + [6329] = {.lex_state = 948}, + [6330] = {.lex_state = 494}, + [6331] = {.lex_state = 360}, + [6332] = {.lex_state = 360}, + [6333] = {.lex_state = 948}, + [6334] = {.lex_state = 256}, + [6335] = {.lex_state = 494}, + [6336] = {.lex_state = 360}, + [6337] = {.lex_state = 360}, + [6338] = {.lex_state = 256}, + [6339] = {.lex_state = 494}, + [6340] = {.lex_state = 360}, + [6341] = {.lex_state = 360}, + [6342] = {.lex_state = 256}, + [6343] = {.lex_state = 494}, + [6344] = {.lex_state = 360}, + [6345] = {.lex_state = 360}, + [6346] = {.lex_state = 948}, + [6347] = {.lex_state = 494}, + [6348] = {.lex_state = 360}, + [6349] = {.lex_state = 360}, + [6350] = {.lex_state = 948}, + [6351] = {.lex_state = 494}, + [6352] = {.lex_state = 360}, + [6353] = {.lex_state = 360}, + [6354] = {.lex_state = 256}, + [6355] = {.lex_state = 494}, + [6356] = {.lex_state = 360}, + [6357] = {.lex_state = 360}, + [6358] = {.lex_state = 948}, + [6359] = {.lex_state = 494}, + [6360] = {.lex_state = 360}, + [6361] = {.lex_state = 360}, + [6362] = {.lex_state = 948}, + [6363] = {.lex_state = 494}, + [6364] = {.lex_state = 360}, + [6365] = {.lex_state = 360}, + [6366] = {.lex_state = 401}, + [6367] = {.lex_state = 494}, + [6368] = {.lex_state = 360}, + [6369] = {.lex_state = 360}, + [6370] = {.lex_state = 450}, + [6371] = {.lex_state = 494}, + [6372] = {.lex_state = 360}, + [6373] = {.lex_state = 360}, + [6374] = {.lex_state = 256}, + [6375] = {.lex_state = 494}, + [6376] = {.lex_state = 360}, + [6377] = {.lex_state = 360}, + [6378] = {.lex_state = 75}, + [6379] = {.lex_state = 494}, + [6380] = {.lex_state = 360}, + [6381] = {.lex_state = 360}, + [6382] = {.lex_state = 437}, + [6383] = {.lex_state = 494}, + [6384] = {.lex_state = 360}, + [6385] = {.lex_state = 360}, + [6386] = {.lex_state = 948}, + [6387] = {.lex_state = 494}, + [6388] = {.lex_state = 360}, + [6389] = {.lex_state = 360}, + [6390] = {.lex_state = 948}, + [6391] = {.lex_state = 494}, + [6392] = {.lex_state = 360}, + [6393] = {.lex_state = 360}, + [6394] = {.lex_state = 948}, + [6395] = {.lex_state = 494}, + [6396] = {.lex_state = 360}, + [6397] = {.lex_state = 360}, + [6398] = {.lex_state = 43}, + [6399] = {.lex_state = 494}, + [6400] = {.lex_state = 360}, + [6401] = {.lex_state = 360}, + [6402] = {.lex_state = 256}, + [6403] = {.lex_state = 494}, + [6404] = {.lex_state = 360}, + [6405] = {.lex_state = 360}, + [6406] = {.lex_state = 948}, + [6407] = {.lex_state = 494}, + [6408] = {.lex_state = 360}, + [6409] = {.lex_state = 360}, + [6410] = {.lex_state = 488}, + [6411] = {.lex_state = 494}, + [6412] = {.lex_state = 360}, + [6413] = {.lex_state = 360}, + [6414] = {.lex_state = 948}, + [6415] = {.lex_state = 494}, + [6416] = {.lex_state = 360}, + [6417] = {.lex_state = 360}, + [6418] = {.lex_state = 948}, + [6419] = {.lex_state = 494}, + [6420] = {.lex_state = 360}, + [6421] = {.lex_state = 360}, + [6422] = {.lex_state = 948}, + [6423] = {.lex_state = 494}, + [6424] = {.lex_state = 360}, + [6425] = {.lex_state = 360}, + [6426] = {.lex_state = 442}, + [6427] = {.lex_state = 494}, + [6428] = {.lex_state = 360}, + [6429] = {.lex_state = 360}, + [6430] = {.lex_state = 494}, + [6431] = {.lex_state = 360}, + [6432] = {.lex_state = 360}, + [6433] = {.lex_state = 360}, + [6434] = {.lex_state = 360}, + [6435] = {.lex_state = 360}, + [6436] = {.lex_state = 360}, + [6437] = {.lex_state = 360}, + [6438] = {.lex_state = 360}, + [6439] = {.lex_state = 360}, + [6440] = {.lex_state = 360}, + [6441] = {.lex_state = 360}, + [6442] = {.lex_state = 360}, + [6443] = {.lex_state = 948}, + [6444] = {.lex_state = 488}, + [6445] = {.lex_state = 948}, + [6446] = {.lex_state = 948}, + [6447] = {.lex_state = 947}, + [6448] = {.lex_state = 99}, + [6449] = {.lex_state = 948}, + [6450] = {.lex_state = 948}, + [6451] = {.lex_state = 948}, + [6452] = {.lex_state = 99}, + [6453] = {.lex_state = 360}, + [6454] = {.lex_state = 494}, + [6455] = {.lex_state = 99}, + [6456] = {.lex_state = 99}, + [6457] = {.lex_state = 948}, + [6458] = {.lex_state = 360}, + [6459] = {.lex_state = 503}, + [6460] = {.lex_state = 948}, + [6461] = {.lex_state = 948}, + [6462] = {.lex_state = 514}, + [6463] = {.lex_state = 362}, + [6464] = {.lex_state = 948}, + [6465] = {.lex_state = 256}, + [6466] = {.lex_state = 948}, + [6467] = {.lex_state = 256}, + [6468] = {.lex_state = 948}, + [6469] = {.lex_state = 256}, + [6470] = {.lex_state = 75}, + [6471] = {.lex_state = 437}, + [6472] = {.lex_state = 256}, + [6473] = {.lex_state = 948}, + [6474] = {.lex_state = 360}, + [6475] = {.lex_state = 511}, + [6476] = {.lex_state = 488}, + [6477] = {.lex_state = 948}, + [6478] = {.lex_state = 503}, + [6479] = {.lex_state = 494}, + [6480] = {.lex_state = 488}, + [6481] = {.lex_state = 948}, + [6482] = {.lex_state = 256}, + [6483] = {.lex_state = 948}, + [6484] = {.lex_state = 437}, + [6485] = {.lex_state = 41}, + [6486] = {.lex_state = 256}, + [6487] = {.lex_state = 948}, + [6488] = {.lex_state = 256}, + [6489] = {.lex_state = 256}, + [6490] = {.lex_state = 948}, + [6491] = {.lex_state = 948}, + [6492] = {.lex_state = 948}, + [6493] = {.lex_state = 256}, + [6494] = {.lex_state = 948}, + [6495] = {.lex_state = 336}, + [6496] = {.lex_state = 336}, + [6497] = {.lex_state = 360}, + [6498] = {.lex_state = 256}, + [6499] = {.lex_state = 256}, + [6500] = {.lex_state = 256}, + [6501] = {.lex_state = 256}, + [6502] = {.lex_state = 948}, + [6503] = {.lex_state = 948}, + [6504] = {.lex_state = 948}, + [6505] = {.lex_state = 948}, + [6506] = {.lex_state = 948}, + [6507] = {.lex_state = 948}, + [6508] = {.lex_state = 478}, + [6509] = {.lex_state = 948}, + [6510] = {.lex_state = 948}, + [6511] = {.lex_state = 256}, + [6512] = {.lex_state = 256}, + [6513] = {.lex_state = 256}, + [6514] = {.lex_state = 256}, + [6515] = {.lex_state = 256}, + [6516] = {.lex_state = 256}, + [6517] = {.lex_state = 256}, + [6518] = {.lex_state = 256}, + [6519] = {.lex_state = 494}, + [6520] = {.lex_state = 494}, + [6521] = {.lex_state = 948}, + [6522] = {.lex_state = 360}, + [6523] = {.lex_state = 948}, + [6524] = {.lex_state = 420}, + [6525] = {.lex_state = 420}, + [6526] = {.lex_state = 490}, + [6527] = {.lex_state = 384}, + [6528] = {.lex_state = 336}, + [6529] = {.lex_state = 494}, + [6530] = {.lex_state = 948}, + [6531] = {.lex_state = 336}, + [6532] = {.lex_state = 360}, + [6533] = {.lex_state = 948}, + [6534] = {.lex_state = 948}, + [6535] = {.lex_state = 948}, + [6536] = {.lex_state = 514}, + [6537] = {.lex_state = 437}, + [6538] = {.lex_state = 101}, + [6539] = {.lex_state = 360}, + [6540] = {.lex_state = 437}, + [6541] = {.lex_state = 948}, + [6542] = {.lex_state = 503}, + [6543] = {.lex_state = 503}, + [6544] = {.lex_state = 437}, + [6545] = {.lex_state = 510}, + [6546] = {.lex_state = 442}, + [6547] = {.lex_state = 440}, + [6548] = {.lex_state = 336}, + [6549] = {.lex_state = 336}, + [6550] = {.lex_state = 948}, + [6551] = {.lex_state = 256}, + [6552] = {.lex_state = 948}, + [6553] = {.lex_state = 256}, + [6554] = {.lex_state = 256}, + [6555] = {.lex_state = 256}, + [6556] = {.lex_state = 256}, + [6557] = {.lex_state = 256}, + [6558] = {.lex_state = 256}, + [6559] = {.lex_state = 76}, + [6560] = {.lex_state = 256}, + [6561] = {.lex_state = 101}, + [6562] = {.lex_state = 948}, + [6563] = {.lex_state = 494}, + [6564] = {.lex_state = 360}, + [6565] = {.lex_state = 948}, + [6566] = {.lex_state = 488}, + [6567] = {.lex_state = 256}, + [6568] = {.lex_state = 494}, + [6569] = {.lex_state = 360}, + [6570] = {.lex_state = 514}, + [6571] = {.lex_state = 360}, + [6572] = {.lex_state = 256}, + [6573] = {.lex_state = 256}, + [6574] = {.lex_state = 437}, + [6575] = {.lex_state = 488}, + [6576] = {.lex_state = 948}, + [6577] = {.lex_state = 256}, + [6578] = {.lex_state = 256}, + [6579] = {.lex_state = 256}, + [6580] = {.lex_state = 256}, + [6581] = {.lex_state = 256}, + [6582] = {.lex_state = 256}, + [6583] = {.lex_state = 256}, + [6584] = {.lex_state = 256}, + [6585] = {.lex_state = 948}, + [6586] = {.lex_state = 102}, + [6587] = {.lex_state = 102}, + [6588] = {.lex_state = 256}, + [6589] = {.lex_state = 948}, + [6590] = {.lex_state = 948}, + [6591] = {.lex_state = 948}, + [6592] = {.lex_state = 948}, + [6593] = {.lex_state = 494}, + [6594] = {.lex_state = 360}, + [6595] = {.lex_state = 948}, + [6596] = {.lex_state = 948}, + [6597] = {.lex_state = 437}, + [6598] = {.lex_state = 256}, + [6599] = {.lex_state = 360}, + [6600] = {.lex_state = 360}, + [6601] = {.lex_state = 948}, + [6602] = {.lex_state = 488}, + [6603] = {.lex_state = 444}, + [6604] = {.lex_state = 360}, + [6605] = {.lex_state = 510}, + [6606] = {.lex_state = 256}, + [6607] = {.lex_state = 948}, + [6608] = {.lex_state = 360}, + [6609] = {.lex_state = 948}, + [6610] = {.lex_state = 256}, + [6611] = {.lex_state = 256}, + [6612] = {.lex_state = 256}, + [6613] = {.lex_state = 43}, + [6614] = {.lex_state = 948}, + [6615] = {.lex_state = 256}, + [6616] = {.lex_state = 256}, + [6617] = {.lex_state = 95}, + [6618] = {.lex_state = 147}, + [6619] = {.lex_state = 443}, + [6620] = {.lex_state = 256}, + [6621] = {.lex_state = 948}, + [6622] = {.lex_state = 147}, + [6623] = {.lex_state = 256}, + [6624] = {.lex_state = 256}, + [6625] = {.lex_state = 256}, + [6626] = {.lex_state = 489}, + [6627] = {.lex_state = 256}, + [6628] = {.lex_state = 256}, + [6629] = {.lex_state = 256}, + [6630] = {.lex_state = 256}, + [6631] = {.lex_state = 443}, + [6632] = {.lex_state = 256}, + [6633] = {.lex_state = 336}, + [6634] = {.lex_state = 95}, + [6635] = {.lex_state = 948}, + [6636] = {.lex_state = 256}, + [6637] = {.lex_state = 336}, + [6638] = {.lex_state = 443}, + [6639] = {.lex_state = 948}, + [6640] = {.lex_state = 948}, + [6641] = {.lex_state = 95}, + [6642] = {.lex_state = 147}, + [6643] = {.lex_state = 443}, + [6644] = {.lex_state = 86}, + [6645] = {.lex_state = 948}, + [6646] = {.lex_state = 256}, + [6647] = {.lex_state = 32}, + [6648] = {.lex_state = 256}, + [6649] = {.lex_state = 256}, + [6650] = {.lex_state = 256}, + [6651] = {.lex_state = 256}, + [6652] = {.lex_state = 948}, + [6653] = {.lex_state = 948}, + [6654] = {.lex_state = 256}, + [6655] = {.lex_state = 256}, + [6656] = {.lex_state = 489}, + [6657] = {.lex_state = 256}, + [6658] = {.lex_state = 256}, + [6659] = {.lex_state = 948}, + [6660] = {.lex_state = 948}, + [6661] = {.lex_state = 948}, + [6662] = {.lex_state = 256}, + [6663] = {.lex_state = 336}, + [6664] = {.lex_state = 256}, + [6665] = {.lex_state = 256}, + [6666] = {.lex_state = 86}, + [6667] = {.lex_state = 443}, + [6668] = {.lex_state = 489}, + [6669] = {.lex_state = 948}, + [6670] = {.lex_state = 948}, + [6671] = {.lex_state = 443}, + [6672] = {.lex_state = 256}, + [6673] = {.lex_state = 948}, + [6674] = {.lex_state = 256}, + [6675] = {.lex_state = 256}, + [6676] = {.lex_state = 256}, + [6677] = {.lex_state = 437}, + [6678] = {.lex_state = 256}, + [6679] = {.lex_state = 256}, + [6680] = {.lex_state = 256}, + [6681] = {.lex_state = 256}, + [6682] = {.lex_state = 34}, + [6683] = {.lex_state = 944}, + [6684] = {.lex_state = 316}, + [6685] = {.lex_state = 926}, + [6686] = {.lex_state = 948}, + [6687] = {.lex_state = 443}, + [6688] = {.lex_state = 256}, + [6689] = {.lex_state = 256}, + [6690] = {.lex_state = 948}, + [6691] = {.lex_state = 256}, + [6692] = {.lex_state = 443}, + [6693] = {.lex_state = 506}, + [6694] = {.lex_state = 256}, + [6695] = {.lex_state = 256}, + [6696] = {.lex_state = 256}, + [6697] = {.lex_state = 256}, + [6698] = {.lex_state = 256}, + [6699] = {.lex_state = 256}, + [6700] = {.lex_state = 256}, + [6701] = {.lex_state = 948}, + [6702] = {.lex_state = 948}, + [6703] = {.lex_state = 256}, + [6704] = {.lex_state = 256}, + [6705] = {.lex_state = 482}, + [6706] = {.lex_state = 256}, + [6707] = {.lex_state = 948}, + [6708] = {.lex_state = 948}, + [6709] = {.lex_state = 506}, + [6710] = {.lex_state = 256}, + [6711] = {.lex_state = 443}, + [6712] = {.lex_state = 948}, + [6713] = {.lex_state = 256}, + [6714] = {.lex_state = 443}, + [6715] = {.lex_state = 256}, + [6716] = {.lex_state = 443}, + [6717] = {.lex_state = 256}, + [6718] = {.lex_state = 256}, + [6719] = {.lex_state = 256}, + [6720] = {.lex_state = 256}, + [6721] = {.lex_state = 95}, + [6722] = {.lex_state = 256}, + [6723] = {.lex_state = 256}, + [6724] = {.lex_state = 256}, + [6725] = {.lex_state = 256}, + [6726] = {.lex_state = 256}, + [6727] = {.lex_state = 256}, + [6728] = {.lex_state = 948}, + [6729] = {.lex_state = 256}, + [6730] = {.lex_state = 256}, + [6731] = {.lex_state = 443}, + [6732] = {.lex_state = 443}, + [6733] = {.lex_state = 256}, + [6734] = {.lex_state = 948}, + [6735] = {.lex_state = 256}, + [6736] = {.lex_state = 256}, + [6737] = {.lex_state = 256}, + [6738] = {.lex_state = 256}, + [6739] = {.lex_state = 948}, + [6740] = {.lex_state = 256}, + [6741] = {.lex_state = 256}, + [6742] = {.lex_state = 402}, + [6743] = {.lex_state = 256}, + [6744] = {.lex_state = 948}, + [6745] = {.lex_state = 948}, + [6746] = {.lex_state = 948}, + [6747] = {.lex_state = 32}, + [6748] = {.lex_state = 489}, + [6749] = {.lex_state = 256}, + [6750] = {.lex_state = 948}, + [6751] = {.lex_state = 443}, + [6752] = {.lex_state = 256}, + [6753] = {.lex_state = 256}, + [6754] = {.lex_state = 256}, + [6755] = {.lex_state = 948}, + [6756] = {.lex_state = 443}, + [6757] = {.lex_state = 256}, + [6758] = {.lex_state = 948}, + [6759] = {.lex_state = 256}, + [6760] = {.lex_state = 256}, + [6761] = {.lex_state = 256}, + [6762] = {.lex_state = 256}, + [6763] = {.lex_state = 489}, + [6764] = {.lex_state = 256}, + [6765] = {.lex_state = 256}, + [6766] = {.lex_state = 948}, + [6767] = {.lex_state = 32}, + [6768] = {.lex_state = 256}, + [6769] = {.lex_state = 256}, + [6770] = {.lex_state = 95}, + [6771] = {.lex_state = 95}, + [6772] = {.lex_state = 95}, + [6773] = {.lex_state = 443}, + [6774] = {.lex_state = 95}, + [6775] = {.lex_state = 266}, + [6776] = {.lex_state = 95}, + [6777] = {.lex_state = 266}, + [6778] = {.lex_state = 443}, + [6779] = {.lex_state = 256}, + [6780] = {.lex_state = 95}, + [6781] = {.lex_state = 256}, + [6782] = {.lex_state = 256}, + [6783] = {.lex_state = 256}, + [6784] = {.lex_state = 948}, + [6785] = {.lex_state = 256}, + [6786] = {.lex_state = 948}, + [6787] = {.lex_state = 256}, + [6788] = {.lex_state = 256}, + [6789] = {.lex_state = 489}, + [6790] = {.lex_state = 256}, + [6791] = {.lex_state = 948}, + [6792] = {.lex_state = 256}, + [6793] = {.lex_state = 948}, + [6794] = {.lex_state = 948}, + [6795] = {.lex_state = 443}, + [6796] = {.lex_state = 256}, + [6797] = {.lex_state = 443}, + [6798] = {.lex_state = 256}, + [6799] = {.lex_state = 256}, + [6800] = {.lex_state = 256}, + [6801] = {.lex_state = 256}, + [6802] = {.lex_state = 256}, + [6803] = {.lex_state = 256}, + [6804] = {.lex_state = 256}, + [6805] = {.lex_state = 489}, + [6806] = {.lex_state = 256}, + [6807] = {.lex_state = 256}, + [6808] = {.lex_state = 948}, + [6809] = {.lex_state = 86}, + [6810] = {.lex_state = 948}, + [6811] = {.lex_state = 256}, + [6812] = {.lex_state = 948}, + [6813] = {.lex_state = 256}, + [6814] = {.lex_state = 948}, + [6815] = {.lex_state = 256}, + [6816] = {.lex_state = 256}, + [6817] = {.lex_state = 256}, + [6818] = {.lex_state = 256}, + [6819] = {.lex_state = 948}, + [6820] = {.lex_state = 504}, + [6821] = {.lex_state = 256}, + [6822] = {.lex_state = 256}, + [6823] = {.lex_state = 256}, + [6824] = {.lex_state = 256}, + [6825] = {.lex_state = 948}, + [6826] = {.lex_state = 948}, + [6827] = {.lex_state = 256}, + [6828] = {.lex_state = 948}, + [6829] = {.lex_state = 256}, + [6830] = {.lex_state = 256}, + [6831] = {.lex_state = 256}, + [6832] = {.lex_state = 256}, + [6833] = {.lex_state = 95}, + [6834] = {.lex_state = 948}, + [6835] = {.lex_state = 256}, + [6836] = {.lex_state = 256}, + [6837] = {.lex_state = 256}, + [6838] = {.lex_state = 32}, + [6839] = {.lex_state = 489}, + [6840] = {.lex_state = 948}, + [6841] = {.lex_state = 948}, + [6842] = {.lex_state = 948}, + [6843] = {.lex_state = 948}, + [6844] = {.lex_state = 256}, + [6845] = {.lex_state = 948}, + [6846] = {.lex_state = 256}, + [6847] = {.lex_state = 948}, + [6848] = {.lex_state = 256}, + [6849] = {.lex_state = 256}, + [6850] = {.lex_state = 256}, + [6851] = {.lex_state = 256}, + [6852] = {.lex_state = 336}, + [6853] = {.lex_state = 256}, + [6854] = {.lex_state = 256}, + [6855] = {.lex_state = 256}, + [6856] = {.lex_state = 948}, + [6857] = {.lex_state = 948}, + [6858] = {.lex_state = 478}, + [6859] = {.lex_state = 506}, + [6860] = {.lex_state = 256}, + [6861] = {.lex_state = 256}, + [6862] = {.lex_state = 256}, + [6863] = {.lex_state = 256}, + [6864] = {.lex_state = 256}, + [6865] = {.lex_state = 256}, + [6866] = {.lex_state = 256}, + [6867] = {.lex_state = 256}, + [6868] = {.lex_state = 256}, + [6869] = {.lex_state = 256}, + [6870] = {.lex_state = 256}, + [6871] = {.lex_state = 256}, + [6872] = {.lex_state = 443}, + [6873] = {.lex_state = 506}, + [6874] = {.lex_state = 256}, + [6875] = {.lex_state = 256}, + [6876] = {.lex_state = 256}, + [6877] = {.lex_state = 256}, + [6878] = {.lex_state = 147}, + [6879] = {.lex_state = 443}, + [6880] = {.lex_state = 256}, + [6881] = {.lex_state = 256}, + [6882] = {.lex_state = 85}, + [6883] = {.lex_state = 256}, + [6884] = {.lex_state = 256}, + [6885] = {.lex_state = 256}, + [6886] = {.lex_state = 948}, + [6887] = {.lex_state = 256}, + [6888] = {.lex_state = 256}, + [6889] = {.lex_state = 95}, + [6890] = {.lex_state = 948}, + [6891] = {.lex_state = 256}, + [6892] = {.lex_state = 256}, + [6893] = {.lex_state = 948}, + [6894] = {.lex_state = 256}, + [6895] = {.lex_state = 948}, + [6896] = {.lex_state = 948}, + [6897] = {.lex_state = 948}, + [6898] = {.lex_state = 443}, + [6899] = {.lex_state = 360}, + [6900] = {.lex_state = 948}, + [6901] = {.lex_state = 316}, + [6902] = {.lex_state = 516}, + [6903] = {.lex_state = 443}, + [6904] = {.lex_state = 256}, + [6905] = {.lex_state = 443}, + [6906] = {.lex_state = 948}, + [6907] = {.lex_state = 948}, + [6908] = {.lex_state = 948}, + [6909] = {.lex_state = 948}, + [6910] = {.lex_state = 316}, + [6911] = {.lex_state = 256}, + [6912] = {.lex_state = 948}, + [6913] = {.lex_state = 478}, + [6914] = {.lex_state = 95}, + [6915] = {.lex_state = 948}, + [6916] = {.lex_state = 336}, + [6917] = {.lex_state = 443}, + [6918] = {.lex_state = 489}, + [6919] = {.lex_state = 481}, + [6920] = {.lex_state = 256}, + [6921] = {.lex_state = 147}, + [6922] = {.lex_state = 443}, + [6923] = {.lex_state = 86}, + [6924] = {.lex_state = 316}, + [6925] = {.lex_state = 256}, + [6926] = {.lex_state = 316}, + [6927] = {.lex_state = 383}, + [6928] = {.lex_state = 948}, + [6929] = {.lex_state = 97}, + [6930] = {.lex_state = 131}, + [6931] = {.lex_state = 948}, + [6932] = {.lex_state = 256}, + [6933] = {.lex_state = 256}, + [6934] = {.lex_state = 97}, + [6935] = {.lex_state = 443}, + [6936] = {.lex_state = 86}, + [6937] = {.lex_state = 86}, + [6938] = {.lex_state = 97}, + [6939] = {.lex_state = 32}, + [6940] = {.lex_state = 256}, + [6941] = {.lex_state = 948}, + [6942] = {.lex_state = 948}, + [6943] = {.lex_state = 948}, + [6944] = {.lex_state = 948}, + [6945] = {.lex_state = 95}, + [6946] = {.lex_state = 256}, + [6947] = {.lex_state = 32}, + [6948] = {.lex_state = 948}, + [6949] = {.lex_state = 336}, + [6950] = {.lex_state = 316}, + [6951] = {.lex_state = 948}, + [6952] = {.lex_state = 256}, + [6953] = {.lex_state = 256}, + [6954] = {.lex_state = 147}, + [6955] = {.lex_state = 86}, + [6956] = {.lex_state = 336}, + [6957] = {.lex_state = 948}, + [6958] = {.lex_state = 256}, + [6959] = {.lex_state = 442}, + [6960] = {.lex_state = 515}, + [6961] = {.lex_state = 948}, + [6962] = {.lex_state = 948}, + [6963] = {.lex_state = 256}, + [6964] = {.lex_state = 948}, + [6965] = {.lex_state = 948}, + [6966] = {.lex_state = 948}, + [6967] = {.lex_state = 256}, + [6968] = {.lex_state = 256}, + [6969] = {.lex_state = 948}, + [6970] = {.lex_state = 443}, + [6971] = {.lex_state = 478}, + [6972] = {.lex_state = 256}, + [6973] = {.lex_state = 948}, + [6974] = {.lex_state = 478}, + [6975] = {.lex_state = 516}, + [6976] = {.lex_state = 948}, + [6977] = {.lex_state = 948}, + [6978] = {.lex_state = 515}, + [6979] = {.lex_state = 948}, + [6980] = {.lex_state = 948}, + [6981] = {.lex_state = 948}, + [6982] = {.lex_state = 948}, + [6983] = {.lex_state = 948}, + [6984] = {.lex_state = 443}, + [6985] = {.lex_state = 948}, + [6986] = {.lex_state = 480}, + [6987] = {.lex_state = 443}, + [6988] = {.lex_state = 948}, + [6989] = {.lex_state = 948}, + [6990] = {.lex_state = 147}, + [6991] = {.lex_state = 443}, + [6992] = {.lex_state = 948}, + [6993] = {.lex_state = 256}, + [6994] = {.lex_state = 256}, + [6995] = {.lex_state = 256}, + [6996] = {.lex_state = 256}, + [6997] = {.lex_state = 256}, + [6998] = {.lex_state = 256}, + [6999] = {.lex_state = 256}, + [7000] = {.lex_state = 256}, + [7001] = {.lex_state = 478}, + [7002] = {.lex_state = 256}, + [7003] = {.lex_state = 256}, + [7004] = {.lex_state = 256}, + [7005] = {.lex_state = 256}, + [7006] = {.lex_state = 316}, + [7007] = {.lex_state = 508}, + [7008] = {.lex_state = 97}, + [7009] = {.lex_state = 316}, + [7010] = {.lex_state = 131}, + [7011] = {.lex_state = 32}, + [7012] = {.lex_state = 948}, + [7013] = {.lex_state = 256}, + [7014] = {.lex_state = 948}, + [7015] = {.lex_state = 948}, + [7016] = {.lex_state = 948}, + [7017] = {.lex_state = 948}, + [7018] = {.lex_state = 948}, + [7019] = {.lex_state = 256}, + [7020] = {.lex_state = 256}, + [7021] = {.lex_state = 316}, + [7022] = {.lex_state = 948}, + [7023] = {.lex_state = 256}, + [7024] = {.lex_state = 316}, + [7025] = {.lex_state = 489}, + [7026] = {.lex_state = 948}, + [7027] = {.lex_state = 256}, + [7028] = {.lex_state = 926}, + [7029] = {.lex_state = 948}, + [7030] = {.lex_state = 948}, + [7031] = {.lex_state = 256}, + [7032] = {.lex_state = 948}, + [7033] = {.lex_state = 948}, + [7034] = {.lex_state = 316}, + [7035] = {.lex_state = 316}, + [7036] = {.lex_state = 948}, + [7037] = {.lex_state = 948}, + [7038] = {.lex_state = 948}, + [7039] = {.lex_state = 147}, + [7040] = {.lex_state = 948}, + [7041] = {.lex_state = 948}, + [7042] = {.lex_state = 316}, + [7043] = {.lex_state = 316}, + [7044] = {.lex_state = 948}, + [7045] = {.lex_state = 948}, + [7046] = {.lex_state = 948}, + [7047] = {.lex_state = 948}, + [7048] = {.lex_state = 948}, + [7049] = {.lex_state = 316}, + [7050] = {.lex_state = 948}, + [7051] = {.lex_state = 316}, + [7052] = {.lex_state = 948}, + [7053] = {.lex_state = 948}, + [7054] = {.lex_state = 478}, + [7055] = {.lex_state = 948}, + [7056] = {.lex_state = 948}, + [7057] = {.lex_state = 316}, + [7058] = {.lex_state = 97}, + [7059] = {.lex_state = 316}, + [7060] = {.lex_state = 948}, + [7061] = {.lex_state = 948}, + [7062] = {.lex_state = 948}, + [7063] = {.lex_state = 948}, + [7064] = {.lex_state = 316}, + [7065] = {.lex_state = 316}, + [7066] = {.lex_state = 948}, + [7067] = {.lex_state = 948}, + [7068] = {.lex_state = 948}, + [7069] = {.lex_state = 948}, + [7070] = {.lex_state = 316}, + [7071] = {.lex_state = 131}, + [7072] = {.lex_state = 948}, + [7073] = {.lex_state = 316}, + [7074] = {.lex_state = 948}, + [7075] = {.lex_state = 948}, + [7076] = {.lex_state = 948}, + [7077] = {.lex_state = 948}, + [7078] = {.lex_state = 316}, + [7079] = {.lex_state = 948}, + [7080] = {.lex_state = 316}, + [7081] = {.lex_state = 948}, + [7082] = {.lex_state = 948}, + [7083] = {.lex_state = 443}, + [7084] = {.lex_state = 948}, + [7085] = {.lex_state = 948}, + [7086] = {.lex_state = 316}, + [7087] = {.lex_state = 316}, + [7088] = {.lex_state = 443}, + [7089] = {.lex_state = 948}, + [7090] = {.lex_state = 948}, + [7091] = {.lex_state = 948}, + [7092] = {.lex_state = 948}, + [7093] = {.lex_state = 316}, + [7094] = {.lex_state = 478}, + [7095] = {.lex_state = 316}, + [7096] = {.lex_state = 948}, + [7097] = {.lex_state = 948}, + [7098] = {.lex_state = 948}, + [7099] = {.lex_state = 147}, + [7100] = {.lex_state = 948}, + [7101] = {.lex_state = 948}, + [7102] = {.lex_state = 316}, + [7103] = {.lex_state = 316}, + [7104] = {.lex_state = 948}, + [7105] = {.lex_state = 948}, + [7106] = {.lex_state = 948}, + [7107] = {.lex_state = 948}, + [7108] = {.lex_state = 948}, + [7109] = {.lex_state = 316}, + [7110] = {.lex_state = 316}, + [7111] = {.lex_state = 443}, + [7112] = {.lex_state = 948}, + [7113] = {.lex_state = 948}, + [7114] = {.lex_state = 97}, + [7115] = {.lex_state = 948}, + [7116] = {.lex_state = 948}, + [7117] = {.lex_state = 316}, + [7118] = {.lex_state = 316}, + [7119] = {.lex_state = 948}, + [7120] = {.lex_state = 948}, + [7121] = {.lex_state = 944}, + [7122] = {.lex_state = 948}, + [7123] = {.lex_state = 948}, + [7124] = {.lex_state = 316}, + [7125] = {.lex_state = 316}, + [7126] = {.lex_state = 256}, + [7127] = {.lex_state = 948}, + [7128] = {.lex_state = 948}, + [7129] = {.lex_state = 948}, + [7130] = {.lex_state = 948}, + [7131] = {.lex_state = 948}, + [7132] = {.lex_state = 316}, + [7133] = {.lex_state = 316}, + [7134] = {.lex_state = 948}, + [7135] = {.lex_state = 948}, + [7136] = {.lex_state = 948}, + [7137] = {.lex_state = 948}, + [7138] = {.lex_state = 316}, + [7139] = {.lex_state = 316}, + [7140] = {.lex_state = 948}, + [7141] = {.lex_state = 948}, + [7142] = {.lex_state = 948}, + [7143] = {.lex_state = 948}, + [7144] = {.lex_state = 316}, + [7145] = {.lex_state = 316}, + [7146] = {.lex_state = 948}, + [7147] = {.lex_state = 948}, + [7148] = {.lex_state = 256}, + [7149] = {.lex_state = 948}, + [7150] = {.lex_state = 948}, + [7151] = {.lex_state = 316}, + [7152] = {.lex_state = 316}, + [7153] = {.lex_state = 256}, + [7154] = {.lex_state = 948}, + [7155] = {.lex_state = 948}, + [7156] = {.lex_state = 256}, + [7157] = {.lex_state = 948}, + [7158] = {.lex_state = 948}, + [7159] = {.lex_state = 256}, + [7160] = {.lex_state = 256}, + [7161] = {.lex_state = 256}, + [7162] = {.lex_state = 256}, + [7163] = {.lex_state = 256}, + [7164] = {.lex_state = 948}, + [7165] = {.lex_state = 949}, + [7166] = {.lex_state = 506}, + [7167] = {.lex_state = 256}, + [7168] = {.lex_state = 336}, + [7169] = {.lex_state = 948}, + [7170] = {.lex_state = 34}, + [7171] = {.lex_state = 131}, + [7172] = {.lex_state = 504}, + [7173] = {.lex_state = 948}, + [7174] = {.lex_state = 256}, + [7175] = {.lex_state = 948}, + [7176] = {.lex_state = 516}, + [7177] = {.lex_state = 948}, + [7178] = {.lex_state = 256}, + [7179] = {.lex_state = 948}, + [7180] = {.lex_state = 948}, + [7181] = {.lex_state = 256}, + [7182] = {.lex_state = 948}, + [7183] = {.lex_state = 256}, + [7184] = {.lex_state = 948}, + [7185] = {.lex_state = 948}, + [7186] = {.lex_state = 256}, + [7187] = {.lex_state = 4783}, + [7188] = {.lex_state = 948}, + [7189] = {.lex_state = 254}, + [7190] = {.lex_state = 948}, + [7191] = {.lex_state = 256}, + [7192] = {.lex_state = 948}, + [7193] = {.lex_state = 373}, + [7194] = {.lex_state = 254}, + [7195] = {.lex_state = 256}, + [7196] = {.lex_state = 948}, + [7197] = {.lex_state = 513}, + [7198] = {.lex_state = 256}, + [7199] = {.lex_state = 4783}, + [7200] = {.lex_state = 4783}, + [7201] = {.lex_state = 443}, + [7202] = {.lex_state = 256}, + [7203] = {.lex_state = 4785}, + [7204] = {.lex_state = 4787}, + [7205] = {.lex_state = 948}, + [7206] = {.lex_state = 948}, + [7207] = {.lex_state = 515}, + [7208] = {.lex_state = 256}, + [7209] = {.lex_state = 256}, + [7210] = {.lex_state = 4785}, + [7211] = {.lex_state = 254}, + [7212] = {.lex_state = 254}, + [7213] = {.lex_state = 256}, + [7214] = {.lex_state = 948}, + [7215] = {.lex_state = 256}, + [7216] = {.lex_state = 4785}, + [7217] = {.lex_state = 256}, + [7218] = {.lex_state = 948}, + [7219] = {.lex_state = 948}, + [7220] = {.lex_state = 504}, + [7221] = {.lex_state = 512}, + [7222] = {.lex_state = 3530}, + [7223] = {.lex_state = 254}, + [7224] = {.lex_state = 4783}, + [7225] = {.lex_state = 4783}, + [7226] = {.lex_state = 256}, + [7227] = {.lex_state = 95}, + [7228] = {.lex_state = 4787}, + [7229] = {.lex_state = 4783}, + [7230] = {.lex_state = 4783}, + [7231] = {.lex_state = 948}, + [7232] = {.lex_state = 4787}, + [7233] = {.lex_state = 256}, + [7234] = {.lex_state = 4785}, + [7235] = {.lex_state = 944}, + [7236] = {.lex_state = 949}, + [7237] = {.lex_state = 4783}, + [7238] = {.lex_state = 256}, + [7239] = {.lex_state = 4783}, + [7240] = {.lex_state = 256}, + [7241] = {.lex_state = 256}, + [7242] = {.lex_state = 256}, + [7243] = {.lex_state = 948}, + [7244] = {.lex_state = 256}, + [7245] = {.lex_state = 256}, + [7246] = {.lex_state = 256}, + [7247] = {.lex_state = 4783}, + [7248] = {.lex_state = 254}, + [7249] = {.lex_state = 949}, + [7250] = {.lex_state = 4785}, + [7251] = {.lex_state = 256}, + [7252] = {.lex_state = 254}, + [7253] = {.lex_state = 948}, + [7254] = {.lex_state = 4783}, + [7255] = {.lex_state = 256}, + [7256] = {.lex_state = 256}, + [7257] = {.lex_state = 4783}, + [7258] = {.lex_state = 948}, + [7259] = {.lex_state = 948}, + [7260] = {.lex_state = 948}, + [7261] = {.lex_state = 254}, + [7262] = {.lex_state = 4783}, + [7263] = {.lex_state = 948}, + [7264] = {.lex_state = 256}, + [7265] = {.lex_state = 131}, + [7266] = {.lex_state = 4783}, + [7267] = {.lex_state = 948}, + [7268] = {.lex_state = 4783}, + [7269] = {.lex_state = 948}, + [7270] = {.lex_state = 948}, + [7271] = {.lex_state = 948}, + [7272] = {.lex_state = 256}, + [7273] = {.lex_state = 948}, + [7274] = {.lex_state = 948}, + [7275] = {.lex_state = 4783}, + [7276] = {.lex_state = 256}, + [7277] = {.lex_state = 948}, + [7278] = {.lex_state = 948}, + [7279] = {.lex_state = 256}, + [7280] = {.lex_state = 131}, + [7281] = {.lex_state = 4783}, + [7282] = {.lex_state = 4783}, + [7283] = {.lex_state = 4783}, + [7284] = {.lex_state = 948}, + [7285] = {.lex_state = 4787}, + [7286] = {.lex_state = 4783}, + [7287] = {.lex_state = 948}, + [7288] = {.lex_state = 256}, + [7289] = {.lex_state = 4783}, + [7290] = {.lex_state = 948}, + [7291] = {.lex_state = 949}, + [7292] = {.lex_state = 254}, + [7293] = {.lex_state = 131}, + [7294] = {.lex_state = 256}, + [7295] = {.lex_state = 256}, + [7296] = {.lex_state = 512}, + [7297] = {.lex_state = 948}, + [7298] = {.lex_state = 4783}, + [7299] = {.lex_state = 4783}, + [7300] = {.lex_state = 948}, + [7301] = {.lex_state = 373}, + [7302] = {.lex_state = 254}, + [7303] = {.lex_state = 4783}, + [7304] = {.lex_state = 948}, + [7305] = {.lex_state = 256}, + [7306] = {.lex_state = 254}, + [7307] = {.lex_state = 373}, + [7308] = {.lex_state = 4783}, + [7309] = {.lex_state = 4783}, + [7310] = {.lex_state = 4787}, + [7311] = {.lex_state = 131}, + [7312] = {.lex_state = 254}, + [7313] = {.lex_state = 256}, + [7314] = {.lex_state = 512}, + [7315] = {.lex_state = 512}, + [7316] = {.lex_state = 256}, + [7317] = {.lex_state = 254}, + [7318] = {.lex_state = 948}, + [7319] = {.lex_state = 131}, + [7320] = {.lex_state = 254}, + [7321] = {.lex_state = 948}, + [7322] = {.lex_state = 95}, + [7323] = {.lex_state = 254}, + [7324] = {.lex_state = 131}, + [7325] = {.lex_state = 4787}, + [7326] = {.lex_state = 30}, + [7327] = {.lex_state = 131}, + [7328] = {.lex_state = 254}, + [7329] = {.lex_state = 43}, + [7330] = {.lex_state = 256}, + [7331] = {.lex_state = 948}, + [7332] = {.lex_state = 948}, + [7333] = {.lex_state = 948}, + [7334] = {.lex_state = 4787}, + [7335] = {.lex_state = 4787}, + [7336] = {.lex_state = 948}, + [7337] = {.lex_state = 256}, + [7338] = {.lex_state = 4785}, + [7339] = {.lex_state = 948}, + [7340] = {.lex_state = 949}, + [7341] = {.lex_state = 948}, + [7342] = {.lex_state = 948}, + [7343] = {.lex_state = 256}, + [7344] = {.lex_state = 131}, + [7345] = {.lex_state = 256}, + [7346] = {.lex_state = 4783}, + [7347] = {.lex_state = 4783}, + [7348] = {.lex_state = 256}, + [7349] = {.lex_state = 256}, + [7350] = {.lex_state = 948}, + [7351] = {.lex_state = 512}, + [7352] = {.lex_state = 4783}, + [7353] = {.lex_state = 926}, + [7354] = {.lex_state = 948}, + [7355] = {.lex_state = 256}, + [7356] = {.lex_state = 30}, + [7357] = {.lex_state = 492}, + [7358] = {.lex_state = 948}, + [7359] = {.lex_state = 4783}, + [7360] = {.lex_state = 4783}, + [7361] = {.lex_state = 4785}, + [7362] = {.lex_state = 4787}, + [7363] = {.lex_state = 948}, + [7364] = {.lex_state = 4783}, + [7365] = {.lex_state = 4783}, + [7366] = {.lex_state = 4785}, + [7367] = {.lex_state = 4785}, + [7368] = {.lex_state = 131}, + [7369] = {.lex_state = 4783}, + [7370] = {.lex_state = 4783}, + [7371] = {.lex_state = 147}, + [7372] = {.lex_state = 256}, + [7373] = {.lex_state = 131}, + [7374] = {.lex_state = 948}, + [7375] = {.lex_state = 4783}, + [7376] = {.lex_state = 4783}, + [7377] = {.lex_state = 501}, + [7378] = {.lex_state = 502}, + [7379] = {.lex_state = 948}, + [7380] = {.lex_state = 948}, + [7381] = {.lex_state = 948}, + [7382] = {.lex_state = 948}, + [7383] = {.lex_state = 948}, + [7384] = {.lex_state = 948}, + [7385] = {.lex_state = 948}, + [7386] = {.lex_state = 948}, + [7387] = {.lex_state = 948}, + [7388] = {.lex_state = 131}, + [7389] = {.lex_state = 948}, + [7390] = {.lex_state = 947}, + [7391] = {.lex_state = 944}, + [7392] = {.lex_state = 948}, + [7393] = {.lex_state = 97}, + [7394] = {.lex_state = 948}, + [7395] = {.lex_state = 948}, + [7396] = {.lex_state = 948}, + [7397] = {.lex_state = 131}, + [7398] = {.lex_state = 1058}, + [7399] = {.lex_state = 948}, + [7400] = {.lex_state = 1058}, + [7401] = {.lex_state = 948}, + [7402] = {.lex_state = 948}, + [7403] = {.lex_state = 948}, + [7404] = {.lex_state = 948}, + [7405] = {.lex_state = 948}, + [7406] = {.lex_state = 948}, + [7407] = {.lex_state = 500}, + [7408] = {.lex_state = 147}, + [7409] = {.lex_state = 4802}, + [7410] = {.lex_state = 97}, + [7411] = {.lex_state = 948}, + [7412] = {.lex_state = 4787}, + [7413] = {.lex_state = 948}, + [7414] = {.lex_state = 949}, + [7415] = {.lex_state = 3530}, + [7416] = {.lex_state = 948}, + [7417] = {.lex_state = 948}, + [7418] = {.lex_state = 948}, + [7419] = {.lex_state = 948}, + [7420] = {.lex_state = 131}, + [7421] = {.lex_state = 944}, + [7422] = {.lex_state = 948}, + [7423] = {.lex_state = 948}, + [7424] = {.lex_state = 948}, + [7425] = {.lex_state = 944}, + [7426] = {.lex_state = 948}, + [7427] = {.lex_state = 948}, + [7428] = {.lex_state = 513}, + [7429] = {.lex_state = 948}, + [7430] = {.lex_state = 948}, + [7431] = {.lex_state = 948}, + [7432] = {.lex_state = 948}, + [7433] = {.lex_state = 43}, + [7434] = {.lex_state = 948}, + [7435] = {.lex_state = 948}, + [7436] = {.lex_state = 948}, + [7437] = {.lex_state = 948}, + [7438] = {.lex_state = 948}, + [7439] = {.lex_state = 4783}, + [7440] = {.lex_state = 948}, + [7441] = {.lex_state = 948}, + [7442] = {.lex_state = 197}, + [7443] = {.lex_state = 948}, + [7444] = {.lex_state = 948}, + [7445] = {.lex_state = 97}, + [7446] = {.lex_state = 4785}, + [7447] = {.lex_state = 948}, + [7448] = {.lex_state = 948}, + [7449] = {.lex_state = 97}, + [7450] = {.lex_state = 944}, + [7451] = {.lex_state = 948}, + [7452] = {.lex_state = 948}, + [7453] = {.lex_state = 948}, + [7454] = {.lex_state = 515}, + [7455] = {.lex_state = 948}, + [7456] = {.lex_state = 97}, + [7457] = {.lex_state = 948}, + [7458] = {.lex_state = 97}, + [7459] = {.lex_state = 944}, + [7460] = {.lex_state = 948}, + [7461] = {.lex_state = 131}, + [7462] = {.lex_state = 944}, + [7463] = {.lex_state = 131}, + [7464] = {.lex_state = 922}, + [7465] = {.lex_state = 944}, + [7466] = {.lex_state = 948}, + [7467] = {.lex_state = 97}, + [7468] = {.lex_state = 131}, + [7469] = {.lex_state = 502}, + [7470] = {.lex_state = 513}, + [7471] = {.lex_state = 948}, + [7472] = {.lex_state = 948}, + [7473] = {.lex_state = 948}, + [7474] = {.lex_state = 948}, + [7475] = {.lex_state = 948}, + [7476] = {.lex_state = 948}, + [7477] = {.lex_state = 948}, + [7478] = {.lex_state = 948}, + [7479] = {.lex_state = 948}, + [7480] = {.lex_state = 131}, + [7481] = {.lex_state = 948}, + [7482] = {.lex_state = 948}, + [7483] = {.lex_state = 147}, + [7484] = {.lex_state = 97}, + [7485] = {.lex_state = 948}, + [7486] = {.lex_state = 948}, + [7487] = {.lex_state = 948}, + [7488] = {.lex_state = 949}, + [7489] = {.lex_state = 948}, + [7490] = {.lex_state = 948}, + [7491] = {.lex_state = 97}, + [7492] = {.lex_state = 43}, + [7493] = {.lex_state = 948}, + [7494] = {.lex_state = 131}, + [7495] = {.lex_state = 948}, + [7496] = {.lex_state = 147}, + [7497] = {.lex_state = 131}, + [7498] = {.lex_state = 97}, + [7499] = {.lex_state = 131}, + [7500] = {.lex_state = 502}, + [7501] = {.lex_state = 948}, + [7502] = {.lex_state = 948}, + [7503] = {.lex_state = 131}, + [7504] = {.lex_state = 147}, + [7505] = {.lex_state = 948}, + [7506] = {.lex_state = 948}, + [7507] = {.lex_state = 43}, + [7508] = {.lex_state = 501}, + [7509] = {.lex_state = 948}, + [7510] = {.lex_state = 948}, + [7511] = {.lex_state = 97}, + [7512] = {.lex_state = 948}, + [7513] = {.lex_state = 948}, + [7514] = {.lex_state = 948}, + [7515] = {.lex_state = 948}, + [7516] = {.lex_state = 97}, + [7517] = {.lex_state = 500}, + [7518] = {.lex_state = 513}, + [7519] = {.lex_state = 948}, + [7520] = {.lex_state = 947}, + [7521] = {.lex_state = 948}, + [7522] = {.lex_state = 948}, + [7523] = {.lex_state = 948}, + [7524] = {.lex_state = 97}, + [7525] = {.lex_state = 948}, + [7526] = {.lex_state = 948}, + [7527] = {.lex_state = 131}, + [7528] = {.lex_state = 948}, + [7529] = {.lex_state = 948}, + [7530] = {.lex_state = 948}, + [7531] = {.lex_state = 948}, + [7532] = {.lex_state = 948}, + [7533] = {.lex_state = 948}, + [7534] = {.lex_state = 948}, + [7535] = {.lex_state = 97}, + [7536] = {.lex_state = 948}, + [7537] = {.lex_state = 97}, + [7538] = {.lex_state = 147}, + [7539] = {.lex_state = 131}, + [7540] = {.lex_state = 4785}, + [7541] = {.lex_state = 948}, + [7542] = {.lex_state = 948}, + [7543] = {.lex_state = 948}, + [7544] = {.lex_state = 147}, + [7545] = {.lex_state = 944}, + [7546] = {.lex_state = 43}, + [7547] = {.lex_state = 948}, + [7548] = {.lex_state = 948}, + [7549] = {.lex_state = 147}, + [7550] = {.lex_state = 97}, + [7551] = {.lex_state = 948}, + [7552] = {.lex_state = 383}, + [7553] = {.lex_state = 948}, + [7554] = {.lex_state = 948}, + [7555] = {.lex_state = 948}, + [7556] = {.lex_state = 948}, + [7557] = {.lex_state = 948}, + [7558] = {.lex_state = 948}, + [7559] = {.lex_state = 948}, + [7560] = {.lex_state = 147}, + [7561] = {.lex_state = 948}, + [7562] = {.lex_state = 97}, + [7563] = {.lex_state = 948}, + [7564] = {.lex_state = 948}, + [7565] = {.lex_state = 500}, + [7566] = {.lex_state = 948}, + [7567] = {.lex_state = 4785}, + [7568] = {.lex_state = 948}, + [7569] = {.lex_state = 948}, + [7570] = {.lex_state = 948}, + [7571] = {.lex_state = 498}, + [7572] = {.lex_state = 948}, + [7573] = {.lex_state = 97}, + [7574] = {.lex_state = 948}, + [7575] = {.lex_state = 948}, + [7576] = {.lex_state = 948}, + [7577] = {.lex_state = 948}, + [7578] = {.lex_state = 948}, + [7579] = {.lex_state = 948}, + [7580] = {.lex_state = 131}, + [7581] = {.lex_state = 948}, + [7582] = {.lex_state = 500}, + [7583] = {.lex_state = 944}, + [7584] = {.lex_state = 948}, + [7585] = {.lex_state = 97}, + [7586] = {.lex_state = 948}, + [7587] = {.lex_state = 948}, + [7588] = {.lex_state = 948}, + [7589] = {.lex_state = 948}, + [7590] = {.lex_state = 948}, + [7591] = {.lex_state = 513}, + [7592] = {.lex_state = 147}, + [7593] = {.lex_state = 948}, + [7594] = {.lex_state = 254}, + [7595] = {.lex_state = 948}, + [7596] = {.lex_state = 948}, + [7597] = {.lex_state = 97}, + [7598] = {.lex_state = 948}, + [7599] = {.lex_state = 948}, + [7600] = {.lex_state = 948}, + [7601] = {.lex_state = 948}, + [7602] = {.lex_state = 948}, + [7603] = {.lex_state = 948}, + [7604] = {.lex_state = 197}, + [7605] = {.lex_state = 147}, + [7606] = {.lex_state = 948}, + [7607] = {.lex_state = 948}, + [7608] = {.lex_state = 944}, + [7609] = {.lex_state = 97}, + [7610] = {.lex_state = 948}, + [7611] = {.lex_state = 513}, + [7612] = {.lex_state = 948}, + [7613] = {.lex_state = 948}, + [7614] = {.lex_state = 131}, + [7615] = {.lex_state = 948}, + [7616] = {.lex_state = 948}, + [7617] = {.lex_state = 43}, + [7618] = {.lex_state = 97}, + [7619] = {.lex_state = 948}, + [7620] = {.lex_state = 499}, + [7621] = {.lex_state = 944}, + [7622] = {.lex_state = 948}, + [7623] = {.lex_state = 948}, + [7624] = {.lex_state = 948}, + [7625] = {.lex_state = 147}, + [7626] = {.lex_state = 948}, + [7627] = {.lex_state = 948}, + [7628] = {.lex_state = 948}, + [7629] = {.lex_state = 131}, + [7630] = {.lex_state = 948}, + [7631] = {.lex_state = 43}, + [7632] = {.lex_state = 948}, + [7633] = {.lex_state = 948}, + [7634] = {.lex_state = 948}, + [7635] = {.lex_state = 948}, + [7636] = {.lex_state = 948}, + [7637] = {.lex_state = 948}, + [7638] = {.lex_state = 948}, + [7639] = {.lex_state = 948}, + [7640] = {.lex_state = 948}, + [7641] = {.lex_state = 922}, + [7642] = {.lex_state = 948}, + [7643] = {.lex_state = 948}, + [7644] = {.lex_state = 197}, + [7645] = {.lex_state = 513}, + [7646] = {.lex_state = 948}, + [7647] = {.lex_state = 948}, + [7648] = {.lex_state = 948}, + [7649] = {.lex_state = 948}, + [7650] = {.lex_state = 944}, + [7651] = {.lex_state = 948}, + [7652] = {.lex_state = 500}, + [7653] = {.lex_state = 500}, + [7654] = {.lex_state = 948}, + [7655] = {.lex_state = 948}, + [7656] = {.lex_state = 948}, + [7657] = {.lex_state = 948}, + [7658] = {.lex_state = 948}, + [7659] = {.lex_state = 4783}, + [7660] = {.lex_state = 948}, + [7661] = {.lex_state = 197}, + [7662] = {.lex_state = 948}, + [7663] = {.lex_state = 948}, + [7664] = {.lex_state = 948}, + [7665] = {.lex_state = 948}, + [7666] = {.lex_state = 948}, + [7667] = {.lex_state = 948}, + [7668] = {.lex_state = 254}, + [7669] = {.lex_state = 948}, + [7670] = {.lex_state = 948}, + [7671] = {.lex_state = 4787}, + [7672] = {.lex_state = 948}, + [7673] = {.lex_state = 948}, + [7674] = {.lex_state = 948}, + [7675] = {.lex_state = 948}, + [7676] = {.lex_state = 922}, + [7677] = {.lex_state = 948}, + [7678] = {.lex_state = 922}, + [7679] = {.lex_state = 948}, + [7680] = {.lex_state = 948}, + [7681] = {.lex_state = 131}, + [7682] = {.lex_state = 4783}, + [7683] = {.lex_state = 513}, + [7684] = {.lex_state = 948}, + [7685] = {.lex_state = 944}, + [7686] = {.lex_state = 948}, + [7687] = {.lex_state = 131}, + [7688] = {.lex_state = 948}, + [7689] = {.lex_state = 948}, + [7690] = {.lex_state = 948}, + [7691] = {.lex_state = 948}, + [7692] = {.lex_state = 948}, + [7693] = {.lex_state = 948}, + [7694] = {.lex_state = 948}, + [7695] = {.lex_state = 147}, + [7696] = {.lex_state = 948}, + [7697] = {.lex_state = 4787}, + [7698] = {.lex_state = 948}, + [7699] = {.lex_state = 131}, + [7700] = {.lex_state = 948}, + [7701] = {.lex_state = 254}, + [7702] = {.lex_state = 948}, + [7703] = {.lex_state = 254}, + [7704] = {.lex_state = 46}, + [7705] = {.lex_state = 254}, + [7706] = {.lex_state = 131}, + [7707] = {.lex_state = 948}, + [7708] = {.lex_state = 500}, + [7709] = {.lex_state = 43}, + [7710] = {.lex_state = 948}, + [7711] = {.lex_state = 948}, + [7712] = {.lex_state = 948}, + [7713] = {.lex_state = 147}, + [7714] = {.lex_state = 948}, + [7715] = {.lex_state = 948}, + [7716] = {.lex_state = 948}, + [7717] = {.lex_state = 46}, + [7718] = {.lex_state = 948}, + [7719] = {.lex_state = 948}, + [7720] = {.lex_state = 147}, + [7721] = {.lex_state = 948}, + [7722] = {.lex_state = 948}, + [7723] = {.lex_state = 948}, + [7724] = {.lex_state = 43}, + [7725] = {.lex_state = 948}, + [7726] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -66369,7 +65725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_match] = ACTIONS(1), - [aux_sym_ctrl_match_token1] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), @@ -66516,82 +65872,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(7505), - [sym_shebang] = STATE(101), - [sym__block_body_statement] = STATE(6568), - [sym__declaration] = STATE(7106), - [sym_decl_alias] = STATE(7107), - [sym_stmt_let] = STATE(7142), - [sym_stmt_mut] = STATE(7142), - [sym_stmt_const] = STATE(7142), - [sym_assignment] = STATE(7142), - [sym__mutable_assignment_pattern] = STATE(6897), - [sym__statement] = STATE(7106), - [sym_pipeline] = STATE(7142), - [sym__block_body] = STATE(7654), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7107), - [sym_decl_export] = STATE(7107), - [sym_decl_extern] = STATE(7107), - [sym_decl_module] = STATE(7107), - [sym_decl_use] = STATE(7107), - [sym__ctrl_statement] = STATE(7142), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_for] = STATE(6753), - [sym_ctrl_loop] = STATE(6753), - [sym_ctrl_error] = STATE(6753), - [sym_ctrl_while] = STATE(6753), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_stmt_source] = STATE(7142), - [sym_stmt_register] = STATE(7142), - [sym__stmt_hide] = STATE(7142), - [sym_hide_mod] = STATE(6904), - [sym_hide_env] = STATE(6904), - [sym__stmt_overlay] = STATE(7142), - [sym_overlay_list] = STATE(7001), - [sym_overlay_hide] = STATE(7001), - [sym_overlay_new] = STATE(7001), - [sym_overlay_use] = STATE(7001), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1271), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), + [sym_nu_script] = STATE(7486), + [sym_shebang] = STATE(113), + [sym__block_body_statement] = STATE(6552), + [sym__declaration] = STATE(7079), + [sym_decl_alias] = STATE(7169), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6847), + [sym__statement] = STATE(7079), + [sym_pipeline] = STATE(6842), + [sym__block_body] = STATE(7406), + [sym_cmd_identifier] = STATE(4801), + [sym_decl_def] = STATE(7169), + [sym_decl_export] = STATE(7169), + [sym_decl_extern] = STATE(7169), + [sym_decl_module] = STATE(7169), + [sym_decl_use] = STATE(7169), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_for] = STATE(6702), + [sym_ctrl_loop] = STATE(6702), + [sym_ctrl_error] = STATE(6702), + [sym_ctrl_while] = STATE(6702), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(6758), + [sym_hide_env] = STATE(6758), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6961), + [sym_overlay_hide] = STATE(6961), + [sym_overlay_new] = STATE(6961), + [sym_overlay_use] = STATE(6961), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1330), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6764), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym__block_body_repeat1] = STATE(106), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(406), + [aux_sym_shebang_repeat1] = STATE(6685), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(151), + [aux_sym__block_body_repeat2] = STATE(153), + [aux_sym_pipe_element_repeat2] = STATE(413), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -66662,7 +66018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(65), [anon_sym_if] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), [anon_sym_DOT_DOT] = ACTIONS(73), [anon_sym_try] = ACTIONS(75), [anon_sym_return] = ACTIONS(77), @@ -66697,90 +66053,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [2] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7691), - [sym_cmd_identifier] = STATE(4567), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym__match_pattern_record_variable] = STATE(593), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1895), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(146), - [sym_val_number] = STATE(2327), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2327), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7694), - [sym_record_entry] = STATE(495), - [sym__record_key] = STATE(7553), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7401), + [sym_cmd_identifier] = STATE(4582), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym__match_pattern_record_variable] = STATE(656), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1910), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(173), + [sym_val_number] = STATE(2382), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2382), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7402), + [sym_record_entry] = STATE(516), + [sym__record_key] = STATE(7449), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym__match_pattern_record_repeat1] = STATE(178), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym__match_pattern_record_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(123), [anon_sym_alias] = ACTIONS(125), [anon_sym_let] = ACTIONS(127), @@ -66854,7 +66210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(183), [anon_sym_else] = ACTIONS(167), [anon_sym_match] = ACTIONS(185), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(189), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(193), @@ -66897,88 +66253,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [3] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7538), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7762), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7479), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7481), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67052,7 +66408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -67095,88 +66451,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [4] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7797), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7717), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7636), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7424), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67250,7 +66606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -67293,88 +66649,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [5] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7691), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7694), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7452), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7481), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67448,7 +66804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -67491,88 +66847,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [6] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7727), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7559), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7401), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7402), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67646,7 +67002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -67689,88 +67045,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [7] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7547), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7559), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7660), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7575), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67844,7 +67200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -67887,88 +67243,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [8] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7572), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7694), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7543), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7575), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68042,7 +67398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -68085,88 +67441,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [9] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7693), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7695), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7643), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7402), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68240,7 +67596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -68283,88 +67639,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [10] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7562), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7528), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7636), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7639), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68438,7 +67794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -68481,88 +67837,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [11] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7547), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7483), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7411), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7424), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68636,7 +67992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -68679,88 +68035,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [12] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7482), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7539), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7543), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7519), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68834,7 +68190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -68877,88 +68233,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [13] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7761), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7729), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7515), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7389), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69032,7 +68388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -69075,88 +68431,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [14] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7810), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7717), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7386), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7564), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69230,7 +68586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -69273,88 +68629,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [15] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7680), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7812), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7559), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(139), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7719), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69428,7 +68784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -69471,88 +68827,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [16] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7680), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7504), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7718), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7602), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(35), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69626,7 +68982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -69669,88 +69025,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [17] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7641), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7639), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7588), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(143), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7576), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69824,7 +69180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(339), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -69867,88 +69223,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [18] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7804), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7768), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7588), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(143), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7532), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70022,7 +69378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(341), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -70065,88 +69421,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [19] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7499), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7530), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7601), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7638), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(34), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70220,7 +69576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -70263,88 +69619,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [20] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7680), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7775), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7566), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7522), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70418,7 +69774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -70461,88 +69817,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [21] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7637), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7518), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7523), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(146), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7555), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(37), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70616,7 +69972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -70659,88 +70015,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [22] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7767), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7578), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7588), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(143), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7429), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70814,7 +70170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(349), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -70857,88 +70213,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [23] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7691), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7621), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7634), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(148), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7478), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(38), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71012,7 +70368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -71055,88 +70411,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [24] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7693), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7502), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(150), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), [sym_record_body] = STATE(7528), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71210,7 +70566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(353), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -71253,88 +70609,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [25] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7707), - [sym_cmd_identifier] = STATE(4539), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1774), - [sym__spread_parenthesized] = STATE(584), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(1229), - [sym_val_number] = STATE(2161), - [sym__val_number_decimal] = STATE(1445), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(2161), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7642), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7401), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7579), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_record_body_repeat1] = STATE(179), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71408,7 +70764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(287), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_DOT_DOT] = ACTIONS(191), [anon_sym_try] = ACTIONS(293), @@ -71451,2604 +70807,2843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [26] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7565), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7715), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [27] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7657), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7593), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(467), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(489), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [28] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7736), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7531), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [29] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7636), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7395), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(519), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [30] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7481), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7666), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(525), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(247), - }, - [31] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7690), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(525), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(247), - }, - [32] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7565), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [33] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7495), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [31] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7675), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(140), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(31), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(525), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [34] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7736), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), + [32] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7694), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(145), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(32), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [35] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7726), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [33] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7603), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(138), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(33), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [36] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7595), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [34] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7417), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(34), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(525), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [37] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7732), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [35] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7460), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(142), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(35), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(539), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [38] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7689), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [36] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7723), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(144), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(36), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [39] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7516), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [37] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7557), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(147), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(37), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(525), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [40] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7763), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), + [38] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7689), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(149), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(38), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [39] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7399), + [sym_cmd_identifier] = STATE(4554), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1847), + [sym__spread_parenthesized] = STATE(567), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2222), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(2222), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(39), + [aux_sym_shebang_repeat1] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [40] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7394), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(40), + [aux_sym_shebang_repeat1] = STATE(48), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), @@ -74073,149 +73668,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [41] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7739), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7394), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -74252,149 +73848,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(551), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [42] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7511), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7623), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -74431,149 +74028,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(555), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [43] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7745), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7623), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -74610,149 +74208,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(559), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [44] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7619), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7479), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -74789,149 +74388,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(563), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [45] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7751), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7593), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(267), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -74968,149 +74567,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(567), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [46] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7716), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7715), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(267), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -75147,149 +74746,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(571), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7760), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7636), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(47), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(48), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -75326,149 +74925,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(575), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7770), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7666), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(48), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(267), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -75505,149 +75104,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(555), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7511), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7417), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(49), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(267), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -75684,149 +75283,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(579), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7787), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7616), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(50), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -75863,149 +75460,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(583), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(493), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7803), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7383), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(51), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -76042,149 +75638,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(587), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(523), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7527), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7443), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(52), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -76221,149 +75816,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(523), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7536), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7633), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(53), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -76400,149 +75994,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(571), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(529), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7512), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7647), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(54), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -76579,148 +76172,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7534), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7635), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(55), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -76757,148 +76350,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(529), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7536), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7542), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(56), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -76935,148 +76528,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7622), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7657), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(57), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -77113,148 +76706,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(529), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7540), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7662), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(58), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -77291,148 +76884,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(543), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [59] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7693), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7477), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -77469,148 +77062,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7758), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7673), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(60), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -77647,148 +77240,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(549), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7674), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7686), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(61), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -77825,148 +77418,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(553), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7791), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7693), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(62), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -78003,148 +77596,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(557), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7496), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7505), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(63), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -78181,148 +77774,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(561), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [64] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7810), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7702), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -78359,148 +77952,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_RPAREN2] = ACTIONS(565), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7704), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7711), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(65), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -78537,148 +78130,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(561), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7719), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7721), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(66), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -78715,148 +78308,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(571), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7738), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7529), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(67), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -78893,148 +78486,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(575), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7630), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7512), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(68), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -79071,148 +78664,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7524), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7423), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(69), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -79249,148 +78842,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(529), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7782), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7586), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(70), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -79427,148 +79020,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7575), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7427), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(71), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -79605,148 +79198,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(585), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [72] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7498), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7577), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(72), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -79783,148 +79376,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(589), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7785), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7563), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(73), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -79961,148 +79554,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7636), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7642), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(74), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -80139,148 +79731,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7744), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7556), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(75), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -80317,148 +79908,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7750), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7403), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(76), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -80495,148 +80085,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7614), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7633), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(77), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -80673,148 +80262,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7495), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7677), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(78), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -80851,148 +80439,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7692), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7627), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(79), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -81029,148 +80616,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7516), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7656), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(80), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -81207,148 +80793,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [81] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7597), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7382), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(81), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -81385,148 +80970,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [82] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7577), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7440), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(82), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -81563,148 +81147,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [83] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7544), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7542), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(83), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -81741,148 +81324,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [84] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7815), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7667), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(84), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -81919,148 +81501,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7586), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7482), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(85), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -82097,148 +81678,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [86] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7584), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7569), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(86), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -82275,148 +81855,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [87] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7809), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7437), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(87), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -82453,148 +82032,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [88] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7533), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7536), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(88), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -82631,148 +82209,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [89] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7583), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7405), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(89), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -82809,148 +82386,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [90] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7625), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7584), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(90), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -82987,148 +82563,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [91] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7662), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7477), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(91), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -83165,148 +82740,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7696), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7622), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(92), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -83343,148 +82917,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7615), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7692), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(93), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -83521,146 +83094,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [94] = { - [sym__block_body_statement] = STATE(5997), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7651), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(94), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(210), - [aux_sym__block_body_repeat2] = STATE(129), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -83697,142 +83271,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [95] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7603), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7607), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(95), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -83883,53 +83456,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -83937,79 +83510,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [96] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7799), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5958), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(96), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(234), + [aux_sym__block_body_repeat2] = STATE(154), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -84060,53 +83632,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(635), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -84114,86 +83687,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [97] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7668), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7690), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(97), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -84230,146 +83802,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [98] = { - [sym__block_body_statement_parenthesized] = STATE(5868), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7526), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(98), - [aux_sym_shebang_repeat1] = STATE(128), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(210), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(123), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -84406,147 +83979,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [99] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7799), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7716), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -84583,148 +84156,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [100] = { - [sym__block_body_statement_parenthesized] = STATE(5822), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym__parenthesized_body] = STATE(7759), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7655), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(100), - [aux_sym_shebang_repeat1] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(124), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -84761,323 +84333,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(461), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [101] = { - [sym__block_body_statement] = STATE(6568), - [sym__declaration] = STATE(7106), - [sym_decl_alias] = STATE(7107), - [sym_stmt_let] = STATE(7142), - [sym_stmt_mut] = STATE(7142), - [sym_stmt_const] = STATE(7142), - [sym_assignment] = STATE(7142), - [sym__mutable_assignment_pattern] = STATE(6897), - [sym__statement] = STATE(7106), - [sym_pipeline] = STATE(7142), - [sym__block_body] = STATE(7474), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7107), - [sym_decl_export] = STATE(7107), - [sym_decl_extern] = STATE(7107), - [sym_decl_module] = STATE(7107), - [sym_decl_use] = STATE(7107), - [sym__ctrl_statement] = STATE(7142), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_for] = STATE(6753), - [sym_ctrl_loop] = STATE(6753), - [sym_ctrl_error] = STATE(6753), - [sym_ctrl_while] = STATE(6753), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_stmt_source] = STATE(7142), - [sym_stmt_register] = STATE(7142), - [sym__stmt_hide] = STATE(7142), - [sym_hide_mod] = STATE(6904), - [sym_hide_env] = STATE(6904), - [sym__stmt_overlay] = STATE(7142), - [sym_overlay_list] = STATE(7001), - [sym_overlay_hide] = STATE(7001), - [sym_overlay_new] = STATE(7001), - [sym_overlay_use] = STATE(7001), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1271), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7674), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym__block_body_repeat1] = STATE(106), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(675), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [102] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7573), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(102), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -85114,140 +84510,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [103] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7560), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(103), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [102] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7607), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(102), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -85298,138 +84695,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(647), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, + [103] = { + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7558), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, [104] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7520), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7383), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(104), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -85466,146 +85041,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [105] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7558), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7598), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -85642,322 +85218,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [106] = { - [sym__block_body_statement] = STATE(6347), - [sym__declaration] = STATE(7106), - [sym_decl_alias] = STATE(7107), - [sym_stmt_let] = STATE(7142), - [sym_stmt_mut] = STATE(7142), - [sym_stmt_const] = STATE(7142), - [sym_assignment] = STATE(7142), - [sym__mutable_assignment_pattern] = STATE(6897), - [sym__statement] = STATE(7106), - [sym_pipeline] = STATE(7142), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7107), - [sym_decl_export] = STATE(7107), - [sym_decl_extern] = STATE(7107), - [sym_decl_module] = STATE(7107), - [sym_decl_use] = STATE(7107), - [sym__ctrl_statement] = STATE(7142), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_for] = STATE(6753), - [sym_ctrl_loop] = STATE(6753), - [sym_ctrl_error] = STATE(6753), - [sym_ctrl_while] = STATE(6753), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_stmt_source] = STATE(7142), - [sym_stmt_register] = STATE(7142), - [sym__stmt_hide] = STATE(7142), - [sym_hide_mod] = STATE(6904), - [sym_hide_env] = STATE(6904), - [sym__stmt_overlay] = STATE(7142), - [sym_overlay_list] = STATE(7001), - [sym_overlay_hide] = STATE(7001), - [sym_overlay_new] = STATE(7001), - [sym_overlay_use] = STATE(7001), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1271), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7610), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym__block_body_repeat1] = STATE(233), - [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_pipe_element_repeat2] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(669), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [107] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7786), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -85994,146 +85395,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [108] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7608), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [107] = { + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7380), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -86170,146 +85572,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [109] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7671), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [108] = { + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7493), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(108), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -86346,146 +85749,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [110] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7723), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [109] = { + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7669), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(109), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -86522,146 +85926,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [111] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7737), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [110] = { + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7606), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(110), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -86698,146 +86103,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [112] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7552), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [111] = { + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7418), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(111), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -86874,140 +86280,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [113] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7613), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [112] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7600), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(112), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -87058,138 +86465,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, + [113] = { + [sym__block_body_statement] = STATE(6552), + [sym__declaration] = STATE(7079), + [sym_decl_alias] = STATE(7169), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6847), + [sym__statement] = STATE(7079), + [sym_pipeline] = STATE(6842), + [sym__block_body] = STATE(7548), + [sym_cmd_identifier] = STATE(4801), + [sym_decl_def] = STATE(7169), + [sym_decl_export] = STATE(7169), + [sym_decl_extern] = STATE(7169), + [sym_decl_module] = STATE(7169), + [sym_decl_use] = STATE(7169), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_for] = STATE(6702), + [sym_ctrl_loop] = STATE(6702), + [sym_ctrl_error] = STATE(6702), + [sym_ctrl_while] = STATE(6702), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(6758), + [sym_hide_env] = STATE(6758), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6961), + [sym_overlay_hide] = STATE(6961), + [sym_overlay_new] = STATE(6961), + [sym_overlay_use] = STATE(6961), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1330), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(151), + [aux_sym__block_body_repeat2] = STATE(153), + [aux_sym_pipe_element_repeat2] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(667), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, [114] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7471), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7510), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -87226,146 +86811,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [115] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7673), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7696), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -87402,140 +86988,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [116] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7611), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7684), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -87586,52 +87173,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -87639,85 +87226,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [117] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7682), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7637), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -87754,146 +87341,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [118] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7591), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement_parenthesized] = STATE(5884), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(234), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(158), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -87930,140 +87516,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [119] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7543), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7613), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -88114,52 +87701,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -88167,79 +87754,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [120] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7661), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7435), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -88290,52 +87877,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -88343,79 +87930,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [121] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7811), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7628), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -88466,52 +88053,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -88519,79 +88106,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [122] = { - [sym__block_body_statement] = STATE(5933), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym__block_body] = STATE(7580), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7444), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat1] = STATE(94), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -88642,52 +88229,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -88695,84 +88282,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [123] = { - [sym__block_body_statement_parenthesized] = STATE(5714), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7589), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(123), - [aux_sym_shebang_repeat1] = STATE(126), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -88809,144 +88397,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(677), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [124] = { - [sym__block_body_statement_parenthesized] = STATE(5868), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5650), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym__parenthesized_body] = STATE(7612), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(124), - [aux_sym_shebang_repeat1] = STATE(128), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(156), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -88983,316 +88573,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(677), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, [125] = { - [sym__block_body_statement_parenthesized] = STATE(6457), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7514), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(125), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym__parenthesized_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(679), - [anon_sym_alias] = ACTIONS(682), - [anon_sym_let] = ACTIONS(685), - [anon_sym_let_DASHenv] = ACTIONS(685), - [anon_sym_mut] = ACTIONS(688), - [anon_sym_const] = ACTIONS(691), - [aux_sym_cmd_identifier_token1] = ACTIONS(694), - [aux_sym_cmd_identifier_token2] = ACTIONS(694), - [aux_sym_cmd_identifier_token3] = ACTIONS(694), - [aux_sym_cmd_identifier_token4] = ACTIONS(694), - [aux_sym_cmd_identifier_token5] = ACTIONS(694), - [aux_sym_cmd_identifier_token6] = ACTIONS(694), - [aux_sym_cmd_identifier_token7] = ACTIONS(694), - [aux_sym_cmd_identifier_token8] = ACTIONS(694), - [aux_sym_cmd_identifier_token9] = ACTIONS(694), - [aux_sym_cmd_identifier_token10] = ACTIONS(694), - [aux_sym_cmd_identifier_token11] = ACTIONS(694), - [aux_sym_cmd_identifier_token12] = ACTIONS(694), - [aux_sym_cmd_identifier_token13] = ACTIONS(694), - [aux_sym_cmd_identifier_token14] = ACTIONS(694), - [aux_sym_cmd_identifier_token15] = ACTIONS(694), - [aux_sym_cmd_identifier_token16] = ACTIONS(694), - [aux_sym_cmd_identifier_token17] = ACTIONS(694), - [aux_sym_cmd_identifier_token18] = ACTIONS(694), - [aux_sym_cmd_identifier_token19] = ACTIONS(694), - [aux_sym_cmd_identifier_token20] = ACTIONS(694), - [aux_sym_cmd_identifier_token21] = ACTIONS(694), - [aux_sym_cmd_identifier_token22] = ACTIONS(694), - [aux_sym_cmd_identifier_token23] = ACTIONS(694), - [aux_sym_cmd_identifier_token24] = ACTIONS(697), - [aux_sym_cmd_identifier_token25] = ACTIONS(694), - [aux_sym_cmd_identifier_token26] = ACTIONS(697), - [aux_sym_cmd_identifier_token27] = ACTIONS(694), - [aux_sym_cmd_identifier_token28] = ACTIONS(694), - [aux_sym_cmd_identifier_token29] = ACTIONS(694), - [aux_sym_cmd_identifier_token30] = ACTIONS(694), - [aux_sym_cmd_identifier_token31] = ACTIONS(697), - [aux_sym_cmd_identifier_token32] = ACTIONS(697), - [aux_sym_cmd_identifier_token33] = ACTIONS(697), - [aux_sym_cmd_identifier_token34] = ACTIONS(697), - [aux_sym_cmd_identifier_token35] = ACTIONS(697), - [aux_sym_cmd_identifier_token36] = ACTIONS(694), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [anon_sym_null] = ACTIONS(703), - [aux_sym_cmd_identifier_token38] = ACTIONS(706), - [aux_sym_cmd_identifier_token39] = ACTIONS(709), - [aux_sym_cmd_identifier_token40] = ACTIONS(709), - [sym__newline] = ACTIONS(712), - [anon_sym_def] = ACTIONS(714), - [anon_sym_export_DASHenv] = ACTIONS(717), - [anon_sym_extern] = ACTIONS(720), - [anon_sym_module] = ACTIONS(723), - [anon_sym_use] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_error] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(747), - [anon_sym_for] = ACTIONS(750), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_while] = ACTIONS(756), - [anon_sym_do] = ACTIONS(759), - [anon_sym_if] = ACTIONS(762), - [anon_sym_match] = ACTIONS(765), - [aux_sym_ctrl_match_token1] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_try] = ACTIONS(774), - [anon_sym_return] = ACTIONS(777), - [anon_sym_source] = ACTIONS(780), - [anon_sym_source_DASHenv] = ACTIONS(780), - [anon_sym_register] = ACTIONS(783), - [anon_sym_hide] = ACTIONS(786), - [anon_sym_hide_DASHenv] = ACTIONS(789), - [anon_sym_overlay] = ACTIONS(792), - [anon_sym_where] = ACTIONS(795), - [aux_sym_expr_unary_token1] = ACTIONS(798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(801), - [anon_sym_DOT_DOT_LT] = ACTIONS(801), - [aux_sym__val_number_decimal_token1] = ACTIONS(804), - [aux_sym__val_number_decimal_token2] = ACTIONS(807), - [aux_sym__val_number_decimal_token3] = ACTIONS(810), - [aux_sym__val_number_decimal_token4] = ACTIONS(813), - [aux_sym__val_number_token1] = ACTIONS(816), - [aux_sym__val_number_token2] = ACTIONS(816), - [aux_sym__val_number_token3] = ACTIONS(816), - [anon_sym_0b] = ACTIONS(819), - [anon_sym_0o] = ACTIONS(822), - [anon_sym_0x] = ACTIONS(822), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym__str_single_quotes] = ACTIONS(831), - [sym__str_back_ticks] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(837), - [aux_sym_env_var_token1] = ACTIONS(840), - [anon_sym_CARET] = ACTIONS(843), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [126] = { - [sym__block_body_statement_parenthesized] = STATE(6239), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7712), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(126), - [aux_sym_shebang_repeat1] = STATE(324), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -89329,143 +88925,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(677), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [127] = { - [sym__block_body_statement_parenthesized] = STATE(6617), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7385), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(127), - [aux_sym_shebang_repeat1] = STATE(324), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -89502,143 +89101,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(677), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [128] = { - [sym__block_body_statement_parenthesized] = STATE(6367), - [sym__declaration_parenthesized] = STATE(6956), - [sym_decl_alias_parenthesized] = STATE(6957), - [sym_stmt_let_parenthesized] = STATE(6982), - [sym_stmt_mut_parenthesized] = STATE(6982), - [sym_stmt_const_parenthesized] = STATE(6982), - [sym_assignment_parenthesized] = STATE(6982), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), - [sym__statement_parenthesized] = STATE(6956), - [sym_pipeline_parenthesized] = STATE(6982), - [sym_cmd_identifier] = STATE(4634), - [sym_decl_def] = STATE(6957), - [sym_decl_export] = STATE(6957), - [sym_decl_extern] = STATE(6957), - [sym_decl_module] = STATE(6957), - [sym_decl_use] = STATE(6957), - [sym__ctrl_statement] = STATE(6982), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_stmt_source] = STATE(6982), - [sym_stmt_register] = STATE(6982), - [sym__stmt_hide] = STATE(6982), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6982), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7495), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(128), - [aux_sym_shebang_repeat1] = STATE(324), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(367), [aux_sym_cmd_identifier_token3] = ACTIONS(367), @@ -89675,137 +89277,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [sym__newline] = ACTIONS(677), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [129] = { - [sym__block_body_statement] = STATE(5908), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7658), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat2] = STATE(133), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -89854,52 +89459,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -89907,77 +89514,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [130] = { - [sym__block_body_statement] = STATE(5997), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7665), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat2] = STATE(133), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -90026,52 +89635,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_def] = ACTIONS(379), - [anon_sym_export_DASHenv] = ACTIONS(381), - [anon_sym_extern] = ACTIONS(383), - [anon_sym_module] = ACTIONS(385), - [anon_sym_use] = ACTIONS(387), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_error] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_while] = ACTIONS(405), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_source] = ACTIONS(419), - [anon_sym_source_DASHenv] = ACTIONS(419), - [anon_sym_register] = ACTIONS(421), - [anon_sym_hide] = ACTIONS(423), - [anon_sym_hide_DASHenv] = ACTIONS(425), - [anon_sym_overlay] = ACTIONS(427), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -90079,3115 +89690,1162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [131] = { - [sym__block_body_statement] = STATE(6347), - [sym__declaration] = STATE(7106), - [sym_decl_alias] = STATE(7107), - [sym_stmt_let] = STATE(7142), - [sym_stmt_mut] = STATE(7142), - [sym_stmt_const] = STATE(7142), - [sym_assignment] = STATE(7142), - [sym__mutable_assignment_pattern] = STATE(6897), - [sym__statement] = STATE(7106), - [sym_pipeline] = STATE(7142), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7107), - [sym_decl_export] = STATE(7107), - [sym_decl_extern] = STATE(7107), - [sym_decl_module] = STATE(7107), - [sym_decl_use] = STATE(7107), - [sym__ctrl_statement] = STATE(7142), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_for] = STATE(6753), - [sym_ctrl_loop] = STATE(6753), - [sym_ctrl_error] = STATE(6753), - [sym_ctrl_while] = STATE(6753), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_stmt_source] = STATE(7142), - [sym_stmt_register] = STATE(7142), - [sym__stmt_hide] = STATE(7142), - [sym_hide_mod] = STATE(6904), - [sym_hide_env] = STATE(6904), - [sym__stmt_overlay] = STATE(7142), - [sym_overlay_list] = STATE(7001), - [sym_overlay_hide] = STATE(7001), - [sym_overlay_new] = STATE(7001), - [sym_overlay_use] = STATE(7001), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1271), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7700), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym__block_body_repeat2] = STATE(133), - [aux_sym_pipe_element_repeat2] = STATE(406), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [132] = { - [sym__block_body_statement] = STATE(6639), - [sym__declaration] = STATE(7106), - [sym_decl_alias] = STATE(7107), - [sym_stmt_let] = STATE(7142), - [sym_stmt_mut] = STATE(7142), - [sym_stmt_const] = STATE(7142), - [sym_assignment] = STATE(7142), - [sym__mutable_assignment_pattern] = STATE(6897), - [sym__statement] = STATE(7106), - [sym_pipeline] = STATE(7142), - [sym_cmd_identifier] = STATE(4711), - [sym_decl_def] = STATE(7107), - [sym_decl_export] = STATE(7107), - [sym_decl_extern] = STATE(7107), - [sym_decl_module] = STATE(7107), - [sym_decl_use] = STATE(7107), - [sym__ctrl_statement] = STATE(7142), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_for] = STATE(6753), - [sym_ctrl_loop] = STATE(6753), - [sym_ctrl_error] = STATE(6753), - [sym_ctrl_while] = STATE(6753), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_stmt_source] = STATE(7142), - [sym_stmt_register] = STATE(7142), - [sym__stmt_hide] = STATE(7142), - [sym_hide_mod] = STATE(6904), - [sym_hide_env] = STATE(6904), - [sym__stmt_overlay] = STATE(7142), - [sym_overlay_list] = STATE(7001), - [sym_overlay_hide] = STATE(7001), - [sym_overlay_new] = STATE(7001), - [sym_overlay_use] = STATE(7001), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1271), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7457), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym__block_body_repeat2] = STATE(133), - [aux_sym_pipe_element_repeat2] = STATE(406), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [133] = { - [sym__block_body_statement] = STATE(6885), - [sym__declaration] = STATE(6294), - [sym_decl_alias] = STATE(6308), - [sym_stmt_let] = STATE(6326), - [sym_stmt_mut] = STATE(6326), - [sym_stmt_const] = STATE(6326), - [sym_assignment] = STATE(6326), - [sym__mutable_assignment_pattern] = STATE(6330), - [sym__statement] = STATE(6294), - [sym_pipeline] = STATE(6326), - [sym_cmd_identifier] = STATE(4558), - [sym_decl_def] = STATE(6308), - [sym_decl_export] = STATE(6308), - [sym_decl_extern] = STATE(6308), - [sym_decl_module] = STATE(6308), - [sym_decl_use] = STATE(6308), - [sym__ctrl_statement] = STATE(6326), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_for] = STATE(6333), - [sym_ctrl_loop] = STATE(6333), - [sym_ctrl_error] = STATE(6333), - [sym_ctrl_while] = STATE(6333), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_stmt_source] = STATE(6326), - [sym_stmt_register] = STATE(6326), - [sym__stmt_hide] = STATE(6326), - [sym_hide_mod] = STATE(6363), - [sym_hide_env] = STATE(6363), - [sym__stmt_overlay] = STATE(6326), - [sym_overlay_list] = STATE(6365), - [sym_overlay_hide] = STATE(6365), - [sym_overlay_new] = STATE(6365), - [sym_overlay_use] = STATE(6365), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1234), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7691), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym__block_body_repeat2] = STATE(133), - [aux_sym_pipe_element_repeat2] = STATE(399), - [anon_sym_export] = ACTIONS(846), - [anon_sym_alias] = ACTIONS(849), - [anon_sym_let] = ACTIONS(852), - [anon_sym_let_DASHenv] = ACTIONS(852), - [anon_sym_mut] = ACTIONS(855), - [anon_sym_const] = ACTIONS(858), - [aux_sym_cmd_identifier_token1] = ACTIONS(861), - [aux_sym_cmd_identifier_token2] = ACTIONS(861), - [aux_sym_cmd_identifier_token3] = ACTIONS(861), - [aux_sym_cmd_identifier_token4] = ACTIONS(861), - [aux_sym_cmd_identifier_token5] = ACTIONS(861), - [aux_sym_cmd_identifier_token6] = ACTIONS(861), - [aux_sym_cmd_identifier_token7] = ACTIONS(861), - [aux_sym_cmd_identifier_token8] = ACTIONS(861), - [aux_sym_cmd_identifier_token9] = ACTIONS(861), - [aux_sym_cmd_identifier_token10] = ACTIONS(861), - [aux_sym_cmd_identifier_token11] = ACTIONS(861), - [aux_sym_cmd_identifier_token12] = ACTIONS(861), - [aux_sym_cmd_identifier_token13] = ACTIONS(861), - [aux_sym_cmd_identifier_token14] = ACTIONS(861), - [aux_sym_cmd_identifier_token15] = ACTIONS(861), - [aux_sym_cmd_identifier_token16] = ACTIONS(861), - [aux_sym_cmd_identifier_token17] = ACTIONS(861), - [aux_sym_cmd_identifier_token18] = ACTIONS(861), - [aux_sym_cmd_identifier_token19] = ACTIONS(861), - [aux_sym_cmd_identifier_token20] = ACTIONS(861), - [aux_sym_cmd_identifier_token21] = ACTIONS(861), - [aux_sym_cmd_identifier_token22] = ACTIONS(861), - [aux_sym_cmd_identifier_token23] = ACTIONS(861), - [aux_sym_cmd_identifier_token24] = ACTIONS(864), - [aux_sym_cmd_identifier_token25] = ACTIONS(861), - [aux_sym_cmd_identifier_token26] = ACTIONS(864), - [aux_sym_cmd_identifier_token27] = ACTIONS(861), - [aux_sym_cmd_identifier_token28] = ACTIONS(861), - [aux_sym_cmd_identifier_token29] = ACTIONS(861), - [aux_sym_cmd_identifier_token30] = ACTIONS(861), - [aux_sym_cmd_identifier_token31] = ACTIONS(864), - [aux_sym_cmd_identifier_token32] = ACTIONS(864), - [aux_sym_cmd_identifier_token33] = ACTIONS(864), - [aux_sym_cmd_identifier_token34] = ACTIONS(864), - [aux_sym_cmd_identifier_token35] = ACTIONS(864), - [aux_sym_cmd_identifier_token36] = ACTIONS(861), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_null] = ACTIONS(870), - [aux_sym_cmd_identifier_token38] = ACTIONS(873), - [aux_sym_cmd_identifier_token39] = ACTIONS(876), - [aux_sym_cmd_identifier_token40] = ACTIONS(876), - [anon_sym_def] = ACTIONS(879), - [anon_sym_export_DASHenv] = ACTIONS(882), - [anon_sym_extern] = ACTIONS(885), - [anon_sym_module] = ACTIONS(888), - [anon_sym_use] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_error] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(918), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(927), - [anon_sym_match] = ACTIONS(930), - [aux_sym_ctrl_match_token1] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_try] = ACTIONS(939), - [anon_sym_return] = ACTIONS(942), - [anon_sym_source] = ACTIONS(945), - [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(954), - [anon_sym_overlay] = ACTIONS(957), - [anon_sym_where] = ACTIONS(960), - [aux_sym_expr_unary_token1] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(987), - [anon_sym_0x] = ACTIONS(987), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [aux_sym_env_var_token1] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1008), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [134] = { - [sym_cell_path] = STATE(145), - [sym_path] = STATE(143), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7441), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(134), - [aux_sym_cell_path_repeat1] = STATE(135), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [aux_sym_record_entry_token1] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [135] = { - [sym_path] = STATE(143), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7416), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(135), - [aux_sym_cell_path_repeat1] = STATE(136), - [anon_sym_export] = ACTIONS(1017), - [anon_sym_alias] = ACTIONS(1017), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_let_DASHenv] = ACTIONS(1017), - [anon_sym_mut] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), - [aux_sym_cmd_identifier_token1] = ACTIONS(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(1017), - [aux_sym_cmd_identifier_token3] = ACTIONS(1017), - [aux_sym_cmd_identifier_token4] = ACTIONS(1017), - [aux_sym_cmd_identifier_token5] = ACTIONS(1017), - [aux_sym_cmd_identifier_token6] = ACTIONS(1017), - [aux_sym_cmd_identifier_token7] = ACTIONS(1017), - [aux_sym_cmd_identifier_token8] = ACTIONS(1017), - [aux_sym_cmd_identifier_token9] = ACTIONS(1017), - [aux_sym_cmd_identifier_token10] = ACTIONS(1017), - [aux_sym_cmd_identifier_token11] = ACTIONS(1017), - [aux_sym_cmd_identifier_token12] = ACTIONS(1017), - [aux_sym_cmd_identifier_token13] = ACTIONS(1017), - [aux_sym_cmd_identifier_token14] = ACTIONS(1017), - [aux_sym_cmd_identifier_token15] = ACTIONS(1017), - [aux_sym_cmd_identifier_token16] = ACTIONS(1017), - [aux_sym_cmd_identifier_token17] = ACTIONS(1017), - [aux_sym_cmd_identifier_token18] = ACTIONS(1017), - [aux_sym_cmd_identifier_token19] = ACTIONS(1017), - [aux_sym_cmd_identifier_token20] = ACTIONS(1017), - [aux_sym_cmd_identifier_token21] = ACTIONS(1017), - [aux_sym_cmd_identifier_token22] = ACTIONS(1017), - [aux_sym_cmd_identifier_token23] = ACTIONS(1017), - [aux_sym_cmd_identifier_token24] = ACTIONS(1017), - [aux_sym_cmd_identifier_token25] = ACTIONS(1017), - [aux_sym_cmd_identifier_token26] = ACTIONS(1017), - [aux_sym_cmd_identifier_token27] = ACTIONS(1017), - [aux_sym_cmd_identifier_token28] = ACTIONS(1017), - [aux_sym_cmd_identifier_token29] = ACTIONS(1017), - [aux_sym_cmd_identifier_token30] = ACTIONS(1017), - [aux_sym_cmd_identifier_token31] = ACTIONS(1017), - [aux_sym_cmd_identifier_token32] = ACTIONS(1017), - [aux_sym_cmd_identifier_token33] = ACTIONS(1017), - [aux_sym_cmd_identifier_token34] = ACTIONS(1017), - [aux_sym_cmd_identifier_token35] = ACTIONS(1017), - [aux_sym_cmd_identifier_token36] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_def] = ACTIONS(1017), - [anon_sym_export_DASHenv] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_error] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_make] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_catch] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_source] = ACTIONS(1017), - [anon_sym_source_DASHenv] = ACTIONS(1017), - [anon_sym_register] = ACTIONS(1017), - [anon_sym_hide] = ACTIONS(1017), - [anon_sym_hide_DASHenv] = ACTIONS(1017), - [anon_sym_overlay] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [aux_sym_expr_binary_token1] = ACTIONS(1019), - [aux_sym_expr_binary_token2] = ACTIONS(1019), - [aux_sym_expr_binary_token3] = ACTIONS(1019), - [aux_sym_expr_binary_token4] = ACTIONS(1019), - [aux_sym_expr_binary_token5] = ACTIONS(1019), - [aux_sym_expr_binary_token6] = ACTIONS(1019), - [aux_sym_expr_binary_token7] = ACTIONS(1019), - [aux_sym_expr_binary_token8] = ACTIONS(1019), - [aux_sym_expr_binary_token9] = ACTIONS(1019), - [aux_sym_expr_binary_token10] = ACTIONS(1019), - [aux_sym_expr_binary_token11] = ACTIONS(1019), - [aux_sym_expr_binary_token12] = ACTIONS(1019), - [aux_sym_expr_binary_token13] = ACTIONS(1019), - [aux_sym_expr_binary_token14] = ACTIONS(1019), - [aux_sym_expr_binary_token15] = ACTIONS(1019), - [aux_sym_expr_binary_token16] = ACTIONS(1019), - [aux_sym_expr_binary_token17] = ACTIONS(1019), - [aux_sym_expr_binary_token18] = ACTIONS(1019), - [aux_sym_expr_binary_token19] = ACTIONS(1019), - [aux_sym_expr_binary_token20] = ACTIONS(1019), - [aux_sym_expr_binary_token21] = ACTIONS(1019), - [aux_sym_expr_binary_token22] = ACTIONS(1019), - [aux_sym_expr_binary_token23] = ACTIONS(1019), - [aux_sym_expr_binary_token24] = ACTIONS(1019), - [aux_sym_expr_binary_token25] = ACTIONS(1019), - [aux_sym_expr_binary_token26] = ACTIONS(1019), - [aux_sym_expr_binary_token27] = ACTIONS(1019), - [aux_sym_expr_binary_token28] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), - [aux_sym_record_entry_token1] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [136] = { - [sym_path] = STATE(143), + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7438), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(136), - [aux_sym_cell_path_repeat1] = STATE(136), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), - [aux_sym_record_entry_token1] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [137] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7599), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), [sym_comment] = STATE(137), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(1032), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [aux_sym_record_entry_token1] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), - }, - [138] = { - [sym_comment] = STATE(138), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_COMMA] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1038), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [aux_sym_record_entry_token1] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [139] = { - [sym_comment] = STATE(139), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_PLUS_EQ] = ACTIONS(1042), - [anon_sym_DASH_EQ] = ACTIONS(1042), - [anon_sym_STAR_EQ] = ACTIONS(1042), - [anon_sym_SLASH_EQ] = ACTIONS(1042), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [sym__newline] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1042), - [aux_sym_expr_binary_token1] = ACTIONS(1042), - [aux_sym_expr_binary_token2] = ACTIONS(1042), - [aux_sym_expr_binary_token3] = ACTIONS(1042), - [aux_sym_expr_binary_token4] = ACTIONS(1042), - [aux_sym_expr_binary_token5] = ACTIONS(1042), - [aux_sym_expr_binary_token6] = ACTIONS(1042), - [aux_sym_expr_binary_token7] = ACTIONS(1042), - [aux_sym_expr_binary_token8] = ACTIONS(1042), - [aux_sym_expr_binary_token9] = ACTIONS(1042), - [aux_sym_expr_binary_token10] = ACTIONS(1042), - [aux_sym_expr_binary_token11] = ACTIONS(1042), - [aux_sym_expr_binary_token12] = ACTIONS(1042), - [aux_sym_expr_binary_token13] = ACTIONS(1042), - [aux_sym_expr_binary_token14] = ACTIONS(1042), - [aux_sym_expr_binary_token15] = ACTIONS(1042), - [aux_sym_expr_binary_token16] = ACTIONS(1042), - [aux_sym_expr_binary_token17] = ACTIONS(1042), - [aux_sym_expr_binary_token18] = ACTIONS(1042), - [aux_sym_expr_binary_token19] = ACTIONS(1042), - [aux_sym_expr_binary_token20] = ACTIONS(1042), - [aux_sym_expr_binary_token21] = ACTIONS(1042), - [aux_sym_expr_binary_token22] = ACTIONS(1042), - [aux_sym_expr_binary_token23] = ACTIONS(1042), - [aux_sym_expr_binary_token24] = ACTIONS(1042), - [aux_sym_expr_binary_token25] = ACTIONS(1042), - [aux_sym_expr_binary_token26] = ACTIONS(1042), - [aux_sym_expr_binary_token27] = ACTIONS(1042), - [aux_sym_expr_binary_token28] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [aux_sym_record_entry_token1] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [140] = { - [sym_comment] = STATE(140), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [aux_sym_expr_binary_token1] = ACTIONS(1046), - [aux_sym_expr_binary_token2] = ACTIONS(1046), - [aux_sym_expr_binary_token3] = ACTIONS(1046), - [aux_sym_expr_binary_token4] = ACTIONS(1046), - [aux_sym_expr_binary_token5] = ACTIONS(1046), - [aux_sym_expr_binary_token6] = ACTIONS(1046), - [aux_sym_expr_binary_token7] = ACTIONS(1046), - [aux_sym_expr_binary_token8] = ACTIONS(1046), - [aux_sym_expr_binary_token9] = ACTIONS(1046), - [aux_sym_expr_binary_token10] = ACTIONS(1046), - [aux_sym_expr_binary_token11] = ACTIONS(1046), - [aux_sym_expr_binary_token12] = ACTIONS(1046), - [aux_sym_expr_binary_token13] = ACTIONS(1046), - [aux_sym_expr_binary_token14] = ACTIONS(1046), - [aux_sym_expr_binary_token15] = ACTIONS(1046), - [aux_sym_expr_binary_token16] = ACTIONS(1046), - [aux_sym_expr_binary_token17] = ACTIONS(1046), - [aux_sym_expr_binary_token18] = ACTIONS(1046), - [aux_sym_expr_binary_token19] = ACTIONS(1046), - [aux_sym_expr_binary_token20] = ACTIONS(1046), - [aux_sym_expr_binary_token21] = ACTIONS(1046), - [aux_sym_expr_binary_token22] = ACTIONS(1046), - [aux_sym_expr_binary_token23] = ACTIONS(1046), - [aux_sym_expr_binary_token24] = ACTIONS(1046), - [aux_sym_expr_binary_token25] = ACTIONS(1046), - [aux_sym_expr_binary_token26] = ACTIONS(1046), - [aux_sym_expr_binary_token27] = ACTIONS(1046), - [aux_sym_expr_binary_token28] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - }, - [141] = { - [sym_comment] = STATE(141), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [aux_sym_expr_binary_token1] = ACTIONS(1050), - [aux_sym_expr_binary_token2] = ACTIONS(1050), - [aux_sym_expr_binary_token3] = ACTIONS(1050), - [aux_sym_expr_binary_token4] = ACTIONS(1050), - [aux_sym_expr_binary_token5] = ACTIONS(1050), - [aux_sym_expr_binary_token6] = ACTIONS(1050), - [aux_sym_expr_binary_token7] = ACTIONS(1050), - [aux_sym_expr_binary_token8] = ACTIONS(1050), - [aux_sym_expr_binary_token9] = ACTIONS(1050), - [aux_sym_expr_binary_token10] = ACTIONS(1050), - [aux_sym_expr_binary_token11] = ACTIONS(1050), - [aux_sym_expr_binary_token12] = ACTIONS(1050), - [aux_sym_expr_binary_token13] = ACTIONS(1050), - [aux_sym_expr_binary_token14] = ACTIONS(1050), - [aux_sym_expr_binary_token15] = ACTIONS(1050), - [aux_sym_expr_binary_token16] = ACTIONS(1050), - [aux_sym_expr_binary_token17] = ACTIONS(1050), - [aux_sym_expr_binary_token18] = ACTIONS(1050), - [aux_sym_expr_binary_token19] = ACTIONS(1050), - [aux_sym_expr_binary_token20] = ACTIONS(1050), - [aux_sym_expr_binary_token21] = ACTIONS(1050), - [aux_sym_expr_binary_token22] = ACTIONS(1050), - [aux_sym_expr_binary_token23] = ACTIONS(1050), - [aux_sym_expr_binary_token24] = ACTIONS(1050), - [aux_sym_expr_binary_token25] = ACTIONS(1050), - [aux_sym_expr_binary_token26] = ACTIONS(1050), - [aux_sym_expr_binary_token27] = ACTIONS(1050), - [aux_sym_expr_binary_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [aux_sym_record_entry_token1] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), - }, - [142] = { - [sym_comment] = STATE(142), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_list] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_new] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [aux_sym_expr_binary_token1] = ACTIONS(1054), - [aux_sym_expr_binary_token2] = ACTIONS(1054), - [aux_sym_expr_binary_token3] = ACTIONS(1054), - [aux_sym_expr_binary_token4] = ACTIONS(1054), - [aux_sym_expr_binary_token5] = ACTIONS(1054), - [aux_sym_expr_binary_token6] = ACTIONS(1054), - [aux_sym_expr_binary_token7] = ACTIONS(1054), - [aux_sym_expr_binary_token8] = ACTIONS(1054), - [aux_sym_expr_binary_token9] = ACTIONS(1054), - [aux_sym_expr_binary_token10] = ACTIONS(1054), - [aux_sym_expr_binary_token11] = ACTIONS(1054), - [aux_sym_expr_binary_token12] = ACTIONS(1054), - [aux_sym_expr_binary_token13] = ACTIONS(1054), - [aux_sym_expr_binary_token14] = ACTIONS(1054), - [aux_sym_expr_binary_token15] = ACTIONS(1054), - [aux_sym_expr_binary_token16] = ACTIONS(1054), - [aux_sym_expr_binary_token17] = ACTIONS(1054), - [aux_sym_expr_binary_token18] = ACTIONS(1054), - [aux_sym_expr_binary_token19] = ACTIONS(1054), - [aux_sym_expr_binary_token20] = ACTIONS(1054), - [aux_sym_expr_binary_token21] = ACTIONS(1054), - [aux_sym_expr_binary_token22] = ACTIONS(1054), - [aux_sym_expr_binary_token23] = ACTIONS(1054), - [aux_sym_expr_binary_token24] = ACTIONS(1054), - [aux_sym_expr_binary_token25] = ACTIONS(1054), - [aux_sym_expr_binary_token26] = ACTIONS(1054), - [aux_sym_expr_binary_token27] = ACTIONS(1054), - [aux_sym_expr_binary_token28] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [143] = { - [sym_comment] = STATE(143), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_list] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [aux_sym_expr_binary_token1] = ACTIONS(1058), - [aux_sym_expr_binary_token2] = ACTIONS(1058), - [aux_sym_expr_binary_token3] = ACTIONS(1058), - [aux_sym_expr_binary_token4] = ACTIONS(1058), - [aux_sym_expr_binary_token5] = ACTIONS(1058), - [aux_sym_expr_binary_token6] = ACTIONS(1058), - [aux_sym_expr_binary_token7] = ACTIONS(1058), - [aux_sym_expr_binary_token8] = ACTIONS(1058), - [aux_sym_expr_binary_token9] = ACTIONS(1058), - [aux_sym_expr_binary_token10] = ACTIONS(1058), - [aux_sym_expr_binary_token11] = ACTIONS(1058), - [aux_sym_expr_binary_token12] = ACTIONS(1058), - [aux_sym_expr_binary_token13] = ACTIONS(1058), - [aux_sym_expr_binary_token14] = ACTIONS(1058), - [aux_sym_expr_binary_token15] = ACTIONS(1058), - [aux_sym_expr_binary_token16] = ACTIONS(1058), - [aux_sym_expr_binary_token17] = ACTIONS(1058), - [aux_sym_expr_binary_token18] = ACTIONS(1058), - [aux_sym_expr_binary_token19] = ACTIONS(1058), - [aux_sym_expr_binary_token20] = ACTIONS(1058), - [aux_sym_expr_binary_token21] = ACTIONS(1058), - [aux_sym_expr_binary_token22] = ACTIONS(1058), - [aux_sym_expr_binary_token23] = ACTIONS(1058), - [aux_sym_expr_binary_token24] = ACTIONS(1058), - [aux_sym_expr_binary_token25] = ACTIONS(1058), - [aux_sym_expr_binary_token26] = ACTIONS(1058), - [aux_sym_expr_binary_token27] = ACTIONS(1058), - [aux_sym_expr_binary_token28] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [aux_sym_record_entry_token1] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [144] = { - [sym_comment] = STATE(144), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_alias] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_let_DASHenv] = ACTIONS(1060), - [anon_sym_mut] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_PLUS_EQ] = ACTIONS(1062), - [anon_sym_DASH_EQ] = ACTIONS(1062), - [anon_sym_STAR_EQ] = ACTIONS(1062), - [anon_sym_SLASH_EQ] = ACTIONS(1062), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), - [aux_sym_cmd_identifier_token1] = ACTIONS(1060), - [aux_sym_cmd_identifier_token2] = ACTIONS(1060), - [aux_sym_cmd_identifier_token3] = ACTIONS(1060), - [aux_sym_cmd_identifier_token4] = ACTIONS(1060), - [aux_sym_cmd_identifier_token5] = ACTIONS(1060), - [aux_sym_cmd_identifier_token6] = ACTIONS(1060), - [aux_sym_cmd_identifier_token7] = ACTIONS(1060), - [aux_sym_cmd_identifier_token8] = ACTIONS(1060), - [aux_sym_cmd_identifier_token9] = ACTIONS(1060), - [aux_sym_cmd_identifier_token10] = ACTIONS(1060), - [aux_sym_cmd_identifier_token11] = ACTIONS(1060), - [aux_sym_cmd_identifier_token12] = ACTIONS(1060), - [aux_sym_cmd_identifier_token13] = ACTIONS(1060), - [aux_sym_cmd_identifier_token14] = ACTIONS(1060), - [aux_sym_cmd_identifier_token15] = ACTIONS(1060), - [aux_sym_cmd_identifier_token16] = ACTIONS(1060), - [aux_sym_cmd_identifier_token17] = ACTIONS(1060), - [aux_sym_cmd_identifier_token18] = ACTIONS(1060), - [aux_sym_cmd_identifier_token19] = ACTIONS(1060), - [aux_sym_cmd_identifier_token20] = ACTIONS(1060), - [aux_sym_cmd_identifier_token21] = ACTIONS(1060), - [aux_sym_cmd_identifier_token22] = ACTIONS(1060), - [aux_sym_cmd_identifier_token23] = ACTIONS(1060), - [aux_sym_cmd_identifier_token24] = ACTIONS(1060), - [aux_sym_cmd_identifier_token25] = ACTIONS(1060), - [aux_sym_cmd_identifier_token26] = ACTIONS(1060), - [aux_sym_cmd_identifier_token27] = ACTIONS(1060), - [aux_sym_cmd_identifier_token28] = ACTIONS(1060), - [aux_sym_cmd_identifier_token29] = ACTIONS(1060), - [aux_sym_cmd_identifier_token30] = ACTIONS(1060), - [aux_sym_cmd_identifier_token31] = ACTIONS(1060), - [aux_sym_cmd_identifier_token32] = ACTIONS(1060), - [aux_sym_cmd_identifier_token33] = ACTIONS(1060), - [aux_sym_cmd_identifier_token34] = ACTIONS(1060), - [aux_sym_cmd_identifier_token35] = ACTIONS(1060), - [aux_sym_cmd_identifier_token36] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1062), - [aux_sym_cmd_identifier_token40] = ACTIONS(1062), - [sym__newline] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [anon_sym_def] = ACTIONS(1060), - [anon_sym_export_DASHenv] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_module] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_error] = ACTIONS(1060), - [anon_sym_list] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_in] = ACTIONS(1060), - [anon_sym_loop] = ACTIONS(1060), - [anon_sym_make] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_catch] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_source] = ACTIONS(1060), - [anon_sym_source_DASHenv] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_hide] = ACTIONS(1060), - [anon_sym_hide_DASHenv] = ACTIONS(1060), - [anon_sym_overlay] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [aux_sym_expr_binary_token1] = ACTIONS(1062), - [aux_sym_expr_binary_token2] = ACTIONS(1062), - [aux_sym_expr_binary_token3] = ACTIONS(1062), - [aux_sym_expr_binary_token4] = ACTIONS(1062), - [aux_sym_expr_binary_token5] = ACTIONS(1062), - [aux_sym_expr_binary_token6] = ACTIONS(1062), - [aux_sym_expr_binary_token7] = ACTIONS(1062), - [aux_sym_expr_binary_token8] = ACTIONS(1062), - [aux_sym_expr_binary_token9] = ACTIONS(1062), - [aux_sym_expr_binary_token10] = ACTIONS(1062), - [aux_sym_expr_binary_token11] = ACTIONS(1062), - [aux_sym_expr_binary_token12] = ACTIONS(1062), - [aux_sym_expr_binary_token13] = ACTIONS(1062), - [aux_sym_expr_binary_token14] = ACTIONS(1062), - [aux_sym_expr_binary_token15] = ACTIONS(1062), - [aux_sym_expr_binary_token16] = ACTIONS(1062), - [aux_sym_expr_binary_token17] = ACTIONS(1062), - [aux_sym_expr_binary_token18] = ACTIONS(1062), - [aux_sym_expr_binary_token19] = ACTIONS(1062), - [aux_sym_expr_binary_token20] = ACTIONS(1062), - [aux_sym_expr_binary_token21] = ACTIONS(1062), - [aux_sym_expr_binary_token22] = ACTIONS(1062), - [aux_sym_expr_binary_token23] = ACTIONS(1062), - [aux_sym_expr_binary_token24] = ACTIONS(1062), - [aux_sym_expr_binary_token25] = ACTIONS(1062), - [aux_sym_expr_binary_token26] = ACTIONS(1062), - [aux_sym_expr_binary_token27] = ACTIONS(1062), - [aux_sym_expr_binary_token28] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token3] = ACTIONS(1062), - [aux_sym__val_number_decimal_token4] = ACTIONS(1062), - [aux_sym__val_number_token1] = ACTIONS(1062), - [aux_sym__val_number_token2] = ACTIONS(1062), - [aux_sym__val_number_token3] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym__str_single_quotes] = ACTIONS(1062), - [sym__str_back_ticks] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), - [aux_sym_record_entry_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(247), - }, - [145] = { - [sym_comment] = STATE(145), - [anon_sym_export] = ACTIONS(1064), - [anon_sym_alias] = ACTIONS(1064), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_let_DASHenv] = ACTIONS(1064), - [anon_sym_mut] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), - [aux_sym_cmd_identifier_token1] = ACTIONS(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(1064), - [aux_sym_cmd_identifier_token3] = ACTIONS(1064), - [aux_sym_cmd_identifier_token4] = ACTIONS(1064), - [aux_sym_cmd_identifier_token5] = ACTIONS(1064), - [aux_sym_cmd_identifier_token6] = ACTIONS(1064), - [aux_sym_cmd_identifier_token7] = ACTIONS(1064), - [aux_sym_cmd_identifier_token8] = ACTIONS(1064), - [aux_sym_cmd_identifier_token9] = ACTIONS(1064), - [aux_sym_cmd_identifier_token10] = ACTIONS(1064), - [aux_sym_cmd_identifier_token11] = ACTIONS(1064), - [aux_sym_cmd_identifier_token12] = ACTIONS(1064), - [aux_sym_cmd_identifier_token13] = ACTIONS(1064), - [aux_sym_cmd_identifier_token14] = ACTIONS(1064), - [aux_sym_cmd_identifier_token15] = ACTIONS(1064), - [aux_sym_cmd_identifier_token16] = ACTIONS(1064), - [aux_sym_cmd_identifier_token17] = ACTIONS(1064), - [aux_sym_cmd_identifier_token18] = ACTIONS(1064), - [aux_sym_cmd_identifier_token19] = ACTIONS(1064), - [aux_sym_cmd_identifier_token20] = ACTIONS(1064), - [aux_sym_cmd_identifier_token21] = ACTIONS(1064), - [aux_sym_cmd_identifier_token22] = ACTIONS(1064), - [aux_sym_cmd_identifier_token23] = ACTIONS(1064), - [aux_sym_cmd_identifier_token24] = ACTIONS(1064), - [aux_sym_cmd_identifier_token25] = ACTIONS(1064), - [aux_sym_cmd_identifier_token26] = ACTIONS(1064), - [aux_sym_cmd_identifier_token27] = ACTIONS(1064), - [aux_sym_cmd_identifier_token28] = ACTIONS(1064), - [aux_sym_cmd_identifier_token29] = ACTIONS(1064), - [aux_sym_cmd_identifier_token30] = ACTIONS(1064), - [aux_sym_cmd_identifier_token31] = ACTIONS(1064), - [aux_sym_cmd_identifier_token32] = ACTIONS(1064), - [aux_sym_cmd_identifier_token33] = ACTIONS(1064), - [aux_sym_cmd_identifier_token34] = ACTIONS(1064), - [aux_sym_cmd_identifier_token35] = ACTIONS(1064), - [aux_sym_cmd_identifier_token36] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1066), - [aux_sym_cmd_identifier_token38] = ACTIONS(1064), - [aux_sym_cmd_identifier_token39] = ACTIONS(1066), - [aux_sym_cmd_identifier_token40] = ACTIONS(1066), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [anon_sym_def] = ACTIONS(1064), - [anon_sym_export_DASHenv] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym_module] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_error] = ACTIONS(1064), - [anon_sym_list] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_loop] = ACTIONS(1064), - [anon_sym_make] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_catch] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_source] = ACTIONS(1064), - [anon_sym_source_DASHenv] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_hide] = ACTIONS(1064), - [anon_sym_hide_DASHenv] = ACTIONS(1064), - [anon_sym_overlay] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [aux_sym_expr_binary_token1] = ACTIONS(1066), - [aux_sym_expr_binary_token2] = ACTIONS(1066), - [aux_sym_expr_binary_token3] = ACTIONS(1066), - [aux_sym_expr_binary_token4] = ACTIONS(1066), - [aux_sym_expr_binary_token5] = ACTIONS(1066), - [aux_sym_expr_binary_token6] = ACTIONS(1066), - [aux_sym_expr_binary_token7] = ACTIONS(1066), - [aux_sym_expr_binary_token8] = ACTIONS(1066), - [aux_sym_expr_binary_token9] = ACTIONS(1066), - [aux_sym_expr_binary_token10] = ACTIONS(1066), - [aux_sym_expr_binary_token11] = ACTIONS(1066), - [aux_sym_expr_binary_token12] = ACTIONS(1066), - [aux_sym_expr_binary_token13] = ACTIONS(1066), - [aux_sym_expr_binary_token14] = ACTIONS(1066), - [aux_sym_expr_binary_token15] = ACTIONS(1066), - [aux_sym_expr_binary_token16] = ACTIONS(1066), - [aux_sym_expr_binary_token17] = ACTIONS(1066), - [aux_sym_expr_binary_token18] = ACTIONS(1066), - [aux_sym_expr_binary_token19] = ACTIONS(1066), - [aux_sym_expr_binary_token20] = ACTIONS(1066), - [aux_sym_expr_binary_token21] = ACTIONS(1066), - [aux_sym_expr_binary_token22] = ACTIONS(1066), - [aux_sym_expr_binary_token23] = ACTIONS(1066), - [aux_sym_expr_binary_token24] = ACTIONS(1066), - [aux_sym_expr_binary_token25] = ACTIONS(1066), - [aux_sym_expr_binary_token26] = ACTIONS(1066), - [aux_sym_expr_binary_token27] = ACTIONS(1066), - [aux_sym_expr_binary_token28] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1066), - [aux_sym__val_number_token1] = ACTIONS(1066), - [aux_sym__val_number_token2] = ACTIONS(1066), - [aux_sym__val_number_token3] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym__str_single_quotes] = ACTIONS(1066), - [sym__str_back_ticks] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), - [aux_sym_record_entry_token1] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(247), - }, - [146] = { - [sym_comment] = STATE(146), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_alias] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_let_DASHenv] = ACTIONS(1068), - [anon_sym_mut] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_PLUS_EQ] = ACTIONS(1072), - [anon_sym_DASH_EQ] = ACTIONS(1072), - [anon_sym_STAR_EQ] = ACTIONS(1072), - [anon_sym_SLASH_EQ] = ACTIONS(1072), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), - [aux_sym_cmd_identifier_token1] = ACTIONS(1068), - [aux_sym_cmd_identifier_token2] = ACTIONS(1068), - [aux_sym_cmd_identifier_token3] = ACTIONS(1068), - [aux_sym_cmd_identifier_token4] = ACTIONS(1068), - [aux_sym_cmd_identifier_token5] = ACTIONS(1068), - [aux_sym_cmd_identifier_token6] = ACTIONS(1068), - [aux_sym_cmd_identifier_token7] = ACTIONS(1068), - [aux_sym_cmd_identifier_token8] = ACTIONS(1068), - [aux_sym_cmd_identifier_token9] = ACTIONS(1068), - [aux_sym_cmd_identifier_token10] = ACTIONS(1068), - [aux_sym_cmd_identifier_token11] = ACTIONS(1068), - [aux_sym_cmd_identifier_token12] = ACTIONS(1068), - [aux_sym_cmd_identifier_token13] = ACTIONS(1068), - [aux_sym_cmd_identifier_token14] = ACTIONS(1068), - [aux_sym_cmd_identifier_token15] = ACTIONS(1068), - [aux_sym_cmd_identifier_token16] = ACTIONS(1068), - [aux_sym_cmd_identifier_token17] = ACTIONS(1068), - [aux_sym_cmd_identifier_token18] = ACTIONS(1068), - [aux_sym_cmd_identifier_token19] = ACTIONS(1068), - [aux_sym_cmd_identifier_token20] = ACTIONS(1068), - [aux_sym_cmd_identifier_token21] = ACTIONS(1068), - [aux_sym_cmd_identifier_token22] = ACTIONS(1068), - [aux_sym_cmd_identifier_token23] = ACTIONS(1068), - [aux_sym_cmd_identifier_token24] = ACTIONS(1068), - [aux_sym_cmd_identifier_token25] = ACTIONS(1068), - [aux_sym_cmd_identifier_token26] = ACTIONS(1068), - [aux_sym_cmd_identifier_token27] = ACTIONS(1068), - [aux_sym_cmd_identifier_token28] = ACTIONS(1068), - [aux_sym_cmd_identifier_token29] = ACTIONS(1068), - [aux_sym_cmd_identifier_token30] = ACTIONS(1068), - [aux_sym_cmd_identifier_token31] = ACTIONS(1068), - [aux_sym_cmd_identifier_token32] = ACTIONS(1068), - [aux_sym_cmd_identifier_token33] = ACTIONS(1068), - [aux_sym_cmd_identifier_token34] = ACTIONS(1068), - [aux_sym_cmd_identifier_token35] = ACTIONS(1068), - [aux_sym_cmd_identifier_token36] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [anon_sym_null] = ACTIONS(1074), - [aux_sym_cmd_identifier_token38] = ACTIONS(1068), - [aux_sym_cmd_identifier_token39] = ACTIONS(1074), - [aux_sym_cmd_identifier_token40] = ACTIONS(1074), - [sym__newline] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_def] = ACTIONS(1068), - [anon_sym_export_DASHenv] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_use] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_error] = ACTIONS(1068), - [anon_sym_list] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_in] = ACTIONS(1068), - [anon_sym_loop] = ACTIONS(1068), - [anon_sym_make] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_else] = ACTIONS(1068), - [anon_sym_match] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_try] = ACTIONS(1068), - [anon_sym_catch] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_source] = ACTIONS(1068), - [anon_sym_source_DASHenv] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_hide] = ACTIONS(1068), - [anon_sym_hide_DASHenv] = ACTIONS(1068), - [anon_sym_overlay] = ACTIONS(1068), - [anon_sym_new] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1068), - [aux_sym_expr_binary_token1] = ACTIONS(1078), - [aux_sym_expr_binary_token2] = ACTIONS(1078), - [aux_sym_expr_binary_token3] = ACTIONS(1078), - [aux_sym_expr_binary_token4] = ACTIONS(1078), - [aux_sym_expr_binary_token5] = ACTIONS(1078), - [aux_sym_expr_binary_token6] = ACTIONS(1078), - [aux_sym_expr_binary_token7] = ACTIONS(1078), - [aux_sym_expr_binary_token8] = ACTIONS(1078), - [aux_sym_expr_binary_token9] = ACTIONS(1078), - [aux_sym_expr_binary_token10] = ACTIONS(1078), - [aux_sym_expr_binary_token11] = ACTIONS(1078), - [aux_sym_expr_binary_token12] = ACTIONS(1078), - [aux_sym_expr_binary_token13] = ACTIONS(1078), - [aux_sym_expr_binary_token14] = ACTIONS(1078), - [aux_sym_expr_binary_token15] = ACTIONS(1078), - [aux_sym_expr_binary_token16] = ACTIONS(1078), - [aux_sym_expr_binary_token17] = ACTIONS(1078), - [aux_sym_expr_binary_token18] = ACTIONS(1078), - [aux_sym_expr_binary_token19] = ACTIONS(1078), - [aux_sym_expr_binary_token20] = ACTIONS(1078), - [aux_sym_expr_binary_token21] = ACTIONS(1078), - [aux_sym_expr_binary_token22] = ACTIONS(1078), - [aux_sym_expr_binary_token23] = ACTIONS(1078), - [aux_sym_expr_binary_token24] = ACTIONS(1078), - [aux_sym_expr_binary_token25] = ACTIONS(1078), - [aux_sym_expr_binary_token26] = ACTIONS(1078), - [aux_sym_expr_binary_token27] = ACTIONS(1078), - [aux_sym_expr_binary_token28] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), - [anon_sym_DOT_DOT2] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1074), - [aux_sym__val_number_decimal_token3] = ACTIONS(1074), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), - [aux_sym__val_number_token1] = ACTIONS(1074), - [aux_sym__val_number_token2] = ACTIONS(1074), - [aux_sym__val_number_token3] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym__str_single_quotes] = ACTIONS(1074), - [sym__str_back_ticks] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1074), - [aux_sym_record_entry_token1] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(247), - }, - [147] = { - [sym_pipeline] = STATE(6955), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), - [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym_pipe_element_repeat2] = STATE(406), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [148] = { - [sym_pipeline] = STATE(6727), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym_pipe_element_repeat2] = STATE(406), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [149] = { - [sym_pipeline] = STATE(6728), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym_pipe_element_repeat2] = STATE(406), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [150] = { - [sym_pipeline] = STATE(6530), - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(150), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -93209,227 +90867,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [151] = { - [sym_pipeline_parenthesized] = STATE(6723), - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(151), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(247), - }, - [152] = { - [sym_pipeline_parenthesized] = STATE(6909), - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(152), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [138] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7648), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -93445,112 +91037,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [153] = { - [sym_pipeline_parenthesized] = STATE(6913), - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(153), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [139] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7534), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -93566,233 +91213,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(247), - }, - [154] = { - [sym_pipeline] = STATE(7290), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym_pipe_element_repeat2] = STATE(406), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [155] = { - [sym_pipeline] = STATE(6602), - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym_pipe_element_repeat2] = STATE(399), + [140] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7387), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(140), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -93814,106 +91395,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [156] = { - [sym_pipeline] = STATE(6618), - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym_pipe_element_repeat2] = STATE(399), + [141] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7392), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(141), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -93935,106 +91571,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [157] = { - [sym_pipeline_parenthesized] = STATE(6672), - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [142] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7663), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(142), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -94050,112 +91741,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [158] = { - [sym_pipeline] = STATE(6527), - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym_pipe_element_repeat2] = STATE(399), + [143] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7710), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(143), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -94177,106 +91923,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [159] = { - [sym_pipeline_parenthesized] = STATE(6676), - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4635), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [144] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7490), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(144), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -94292,112 +92093,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [160] = { - [sym_pipeline] = STATE(6619), - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4561), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(166), - [aux_sym_pipe_element_repeat2] = STATE(399), + [145] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7430), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(145), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -94419,106 +92275,1041 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(375), [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [161] = { - [sym_pipeline] = STATE(7060), - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4679), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), - [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(163), - [aux_sym_pipe_element_repeat2] = STATE(406), + [146] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7554), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [147] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7572), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(147), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [148] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7688), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [149] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7722), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(149), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [150] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7396), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(150), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [151] = { + [sym__block_body_statement] = STATE(6362), + [sym__declaration] = STATE(7079), + [sym_decl_alias] = STATE(7169), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6847), + [sym__statement] = STATE(7079), + [sym_pipeline] = STATE(6842), + [sym_cmd_identifier] = STATE(4801), + [sym_decl_def] = STATE(7169), + [sym_decl_export] = STATE(7169), + [sym_decl_extern] = STATE(7169), + [sym_decl_module] = STATE(7169), + [sym_decl_use] = STATE(7169), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_for] = STATE(6702), + [sym_ctrl_loop] = STATE(6702), + [sym_ctrl_error] = STATE(6702), + [sym_ctrl_while] = STATE(6702), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(6758), + [sym_hide_env] = STATE(6758), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6961), + [sym_overlay_hide] = STATE(6961), + [sym_overlay_new] = STATE(6961), + [sym_overlay_use] = STATE(6961), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1330), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(151), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(260), + [aux_sym__block_body_repeat2] = STATE(155), + [aux_sym_pipe_element_repeat2] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(635), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), [aux_sym_cmd_identifier_token22] = ACTIONS(19), [aux_sym_cmd_identifier_token23] = ACTIONS(19), [aux_sym_cmd_identifier_token24] = ACTIONS(21), @@ -94540,19 +93331,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(27), [aux_sym_cmd_identifier_token39] = ACTIONS(29), [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), [anon_sym_if] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), [anon_sym_DOT_DOT] = ACTIONS(73), [anon_sym_try] = ACTIONS(75), [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), [anon_sym_where] = ACTIONS(89), [aux_sym_expr_unary_token1] = ACTIONS(91), [anon_sym_DOT_DOT_EQ] = ACTIONS(93), @@ -94577,188 +93385,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [162] = { - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4989), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(162), - [aux_sym_pipe_element_repeat2] = STATE(399), - [aux_sym_cmd_identifier_token1] = ACTIONS(1091), - [aux_sym_cmd_identifier_token2] = ACTIONS(1094), - [aux_sym_cmd_identifier_token3] = ACTIONS(1094), - [aux_sym_cmd_identifier_token4] = ACTIONS(1094), - [aux_sym_cmd_identifier_token5] = ACTIONS(1094), - [aux_sym_cmd_identifier_token6] = ACTIONS(1094), - [aux_sym_cmd_identifier_token7] = ACTIONS(1094), - [aux_sym_cmd_identifier_token8] = ACTIONS(1094), - [aux_sym_cmd_identifier_token9] = ACTIONS(1091), - [aux_sym_cmd_identifier_token10] = ACTIONS(1094), - [aux_sym_cmd_identifier_token11] = ACTIONS(1094), - [aux_sym_cmd_identifier_token12] = ACTIONS(1094), - [aux_sym_cmd_identifier_token13] = ACTIONS(1091), - [aux_sym_cmd_identifier_token14] = ACTIONS(1094), - [aux_sym_cmd_identifier_token15] = ACTIONS(1091), - [aux_sym_cmd_identifier_token16] = ACTIONS(1094), - [aux_sym_cmd_identifier_token17] = ACTIONS(1094), - [aux_sym_cmd_identifier_token18] = ACTIONS(1094), - [aux_sym_cmd_identifier_token19] = ACTIONS(1094), - [aux_sym_cmd_identifier_token20] = ACTIONS(1094), - [aux_sym_cmd_identifier_token21] = ACTIONS(1094), - [aux_sym_cmd_identifier_token22] = ACTIONS(1091), - [aux_sym_cmd_identifier_token23] = ACTIONS(1091), - [aux_sym_cmd_identifier_token24] = ACTIONS(1094), - [aux_sym_cmd_identifier_token25] = ACTIONS(1091), - [aux_sym_cmd_identifier_token26] = ACTIONS(1094), - [aux_sym_cmd_identifier_token27] = ACTIONS(1091), - [aux_sym_cmd_identifier_token28] = ACTIONS(1091), - [aux_sym_cmd_identifier_token29] = ACTIONS(1091), - [aux_sym_cmd_identifier_token30] = ACTIONS(1091), - [aux_sym_cmd_identifier_token31] = ACTIONS(1094), - [aux_sym_cmd_identifier_token32] = ACTIONS(1094), - [aux_sym_cmd_identifier_token33] = ACTIONS(1094), - [aux_sym_cmd_identifier_token34] = ACTIONS(1094), - [aux_sym_cmd_identifier_token35] = ACTIONS(1094), - [aux_sym_cmd_identifier_token36] = ACTIONS(1091), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_null] = ACTIONS(1100), - [aux_sym_cmd_identifier_token38] = ACTIONS(1103), - [aux_sym_cmd_identifier_token39] = ACTIONS(1106), - [aux_sym_cmd_identifier_token40] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_match] = ACTIONS(1133), - [aux_sym_ctrl_match_token1] = ACTIONS(1136), - [anon_sym_DOT_DOT] = ACTIONS(1139), - [anon_sym_try] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_where] = ACTIONS(1148), - [aux_sym_expr_unary_token1] = ACTIONS(1151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_DOT_DOT_LT] = ACTIONS(1154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1157), - [aux_sym__val_number_decimal_token2] = ACTIONS(1160), - [aux_sym__val_number_decimal_token3] = ACTIONS(1163), - [aux_sym__val_number_decimal_token4] = ACTIONS(1166), - [aux_sym__val_number_token1] = ACTIONS(1169), - [aux_sym__val_number_token2] = ACTIONS(1169), - [aux_sym__val_number_token3] = ACTIONS(1169), - [anon_sym_0b] = ACTIONS(1172), - [anon_sym_0o] = ACTIONS(1175), - [anon_sym_0x] = ACTIONS(1175), - [sym_val_date] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym__str_single_quotes] = ACTIONS(1184), - [sym__str_back_ticks] = ACTIONS(1184), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), - [aux_sym_env_var_token1] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1196), + [152] = { + [sym__block_body_statement] = STATE(5894), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym__block_body] = STATE(7640), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(152), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [163] = { - [sym_cmd_identifier] = STATE(4711), - [sym__ctrl_expression] = STATE(5052), - [sym_ctrl_do] = STATE(5084), - [sym_ctrl_if] = STATE(5084), - [sym_ctrl_match] = STATE(5084), - [sym_ctrl_try] = STATE(5084), - [sym_ctrl_return] = STATE(5084), - [sym_pipe_element] = STATE(4691), - [sym_where_command] = STATE(4956), - [sym__expression] = STATE(3760), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4956), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(162), - [aux_sym_pipe_element_repeat2] = STATE(406), + [153] = { + [sym__block_body_statement] = STATE(6362), + [sym__declaration] = STATE(7079), + [sym_decl_alias] = STATE(7169), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6847), + [sym__statement] = STATE(7079), + [sym_pipeline] = STATE(6842), + [sym_cmd_identifier] = STATE(4801), + [sym_decl_def] = STATE(7169), + [sym_decl_export] = STATE(7169), + [sym_decl_extern] = STATE(7169), + [sym_decl_module] = STATE(7169), + [sym_decl_use] = STATE(7169), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_for] = STATE(6702), + [sym_ctrl_loop] = STATE(6702), + [sym_ctrl_error] = STATE(6702), + [sym_ctrl_while] = STATE(6702), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(6758), + [sym_hide_env] = STATE(6758), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6961), + [sym_overlay_hide] = STATE(6961), + [sym_overlay_new] = STATE(6961), + [sym_overlay_use] = STATE(6961), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1330), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(157), + [aux_sym_pipe_element_repeat2] = STATE(413), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), [aux_sym_cmd_identifier_token22] = ACTIONS(19), [aux_sym_cmd_identifier_token23] = ACTIONS(19), [aux_sym_cmd_identifier_token24] = ACTIONS(21), @@ -94780,19 +93681,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(27), [aux_sym_cmd_identifier_token39] = ACTIONS(29), [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), [anon_sym_if] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), [anon_sym_DOT_DOT] = ACTIONS(73), [anon_sym_try] = ACTIONS(75), [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), [anon_sym_where] = ACTIONS(89), [aux_sym_expr_unary_token1] = ACTIONS(91), [anon_sym_DOT_DOT_EQ] = ACTIONS(93), @@ -94817,188 +93733,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [164] = { - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(5055), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(164), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), - [aux_sym_cmd_identifier_token1] = ACTIONS(1199), - [aux_sym_cmd_identifier_token2] = ACTIONS(1202), - [aux_sym_cmd_identifier_token3] = ACTIONS(1202), - [aux_sym_cmd_identifier_token4] = ACTIONS(1202), - [aux_sym_cmd_identifier_token5] = ACTIONS(1202), - [aux_sym_cmd_identifier_token6] = ACTIONS(1202), - [aux_sym_cmd_identifier_token7] = ACTIONS(1202), - [aux_sym_cmd_identifier_token8] = ACTIONS(1202), - [aux_sym_cmd_identifier_token9] = ACTIONS(1199), - [aux_sym_cmd_identifier_token10] = ACTIONS(1202), - [aux_sym_cmd_identifier_token11] = ACTIONS(1202), - [aux_sym_cmd_identifier_token12] = ACTIONS(1202), - [aux_sym_cmd_identifier_token13] = ACTIONS(1199), - [aux_sym_cmd_identifier_token14] = ACTIONS(1202), - [aux_sym_cmd_identifier_token15] = ACTIONS(1199), - [aux_sym_cmd_identifier_token16] = ACTIONS(1202), - [aux_sym_cmd_identifier_token17] = ACTIONS(1202), - [aux_sym_cmd_identifier_token18] = ACTIONS(1202), - [aux_sym_cmd_identifier_token19] = ACTIONS(1202), - [aux_sym_cmd_identifier_token20] = ACTIONS(1202), - [aux_sym_cmd_identifier_token21] = ACTIONS(1202), - [aux_sym_cmd_identifier_token22] = ACTIONS(1199), - [aux_sym_cmd_identifier_token23] = ACTIONS(1199), - [aux_sym_cmd_identifier_token24] = ACTIONS(1202), - [aux_sym_cmd_identifier_token25] = ACTIONS(1199), - [aux_sym_cmd_identifier_token26] = ACTIONS(1202), - [aux_sym_cmd_identifier_token27] = ACTIONS(1199), - [aux_sym_cmd_identifier_token28] = ACTIONS(1199), - [aux_sym_cmd_identifier_token29] = ACTIONS(1199), - [aux_sym_cmd_identifier_token30] = ACTIONS(1199), - [aux_sym_cmd_identifier_token31] = ACTIONS(1202), - [aux_sym_cmd_identifier_token32] = ACTIONS(1202), - [aux_sym_cmd_identifier_token33] = ACTIONS(1202), - [aux_sym_cmd_identifier_token34] = ACTIONS(1202), - [aux_sym_cmd_identifier_token35] = ACTIONS(1202), - [aux_sym_cmd_identifier_token36] = ACTIONS(1199), - [anon_sym_true] = ACTIONS(1205), - [anon_sym_false] = ACTIONS(1205), - [anon_sym_null] = ACTIONS(1208), - [aux_sym_cmd_identifier_token38] = ACTIONS(1211), - [aux_sym_cmd_identifier_token39] = ACTIONS(1214), - [aux_sym_cmd_identifier_token40] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1241), - [aux_sym_ctrl_match_token1] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_where] = ACTIONS(1256), - [aux_sym_expr_unary_token1] = ACTIONS(1259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1262), - [anon_sym_DOT_DOT_LT] = ACTIONS(1262), - [aux_sym__val_number_decimal_token1] = ACTIONS(1265), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1271), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(1277), - [aux_sym__val_number_token2] = ACTIONS(1277), - [aux_sym__val_number_token3] = ACTIONS(1277), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1283), - [anon_sym_0x] = ACTIONS(1283), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym__str_single_quotes] = ACTIONS(1292), - [sym__str_back_ticks] = ACTIONS(1292), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1295), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), - [aux_sym_env_var_token1] = ACTIONS(1301), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(247), - }, - [165] = { - [sym_cmd_identifier] = STATE(4634), - [sym__ctrl_expression_parenthesized] = STATE(4969), - [sym_ctrl_do_parenthesized] = STATE(4970), - [sym_ctrl_if_parenthesized] = STATE(4970), - [sym_ctrl_match] = STATE(4970), - [sym_ctrl_try_parenthesized] = STATE(4970), - [sym_ctrl_return] = STATE(4970), - [sym_pipe_element_parenthesized] = STATE(4589), - [sym_where_command_parenthesized] = STATE(4971), - [sym__expression_parenthesized] = STATE(3748), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(4975), - [sym_comment] = STATE(165), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(164), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [154] = { + [sym__block_body_statement] = STATE(6003), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat2] = STATE(157), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -95014,111 +93847,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_do] = ACTIONS(477), - [anon_sym_if] = ACTIONS(479), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(483), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(485), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [166] = { - [sym_cmd_identifier] = STATE(4558), - [sym__ctrl_expression] = STATE(4796), - [sym_ctrl_do] = STATE(4799), - [sym_ctrl_if] = STATE(4799), - [sym_ctrl_match] = STATE(4799), - [sym_ctrl_try] = STATE(4799), - [sym_ctrl_return] = STATE(4799), - [sym_pipe_element] = STATE(4526), - [sym_where_command] = STATE(4804), - [sym__expression] = STATE(3725), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4804), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(162), - [aux_sym_pipe_element_repeat2] = STATE(399), + [155] = { + [sym__block_body_statement] = STATE(6087), + [sym__declaration] = STATE(7079), + [sym_decl_alias] = STATE(7169), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6847), + [sym__statement] = STATE(7079), + [sym_pipeline] = STATE(6842), + [sym_cmd_identifier] = STATE(4801), + [sym_decl_def] = STATE(7169), + [sym_decl_export] = STATE(7169), + [sym_decl_extern] = STATE(7169), + [sym_decl_module] = STATE(7169), + [sym_decl_use] = STATE(7169), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_for] = STATE(6702), + [sym_ctrl_loop] = STATE(6702), + [sym_ctrl_error] = STATE(6702), + [sym_ctrl_while] = STATE(6702), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(6758), + [sym_hide_env] = STATE(6758), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6961), + [sym_overlay_hide] = STATE(6961), + [sym_overlay_new] = STATE(6961), + [sym_overlay_use] = STATE(6961), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1330), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(157), + [aux_sym_pipe_element_repeat2] = STATE(413), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [156] = { + [sym__block_body_statement_parenthesized] = STATE(5884), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(156), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(159), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), [aux_sym_cmd_identifier_token22] = ACTIONS(367), [aux_sym_cmd_identifier_token23] = ACTIONS(367), [aux_sym_cmd_identifier_token24] = ACTIONS(369), @@ -95134,123 +94191,5644 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_do] = ACTIONS(407), - [anon_sym_if] = ACTIONS(409), - [anon_sym_match] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(415), - [anon_sym_return] = ACTIONS(417), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [167] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7717), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(167), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_record_body_repeat1] = STATE(179), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(273), + [157] = { + [sym__block_body_statement] = STATE(6652), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat2] = STATE(157), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(675), + [anon_sym_alias] = ACTIONS(678), + [anon_sym_let] = ACTIONS(681), + [anon_sym_let_DASHenv] = ACTIONS(681), + [anon_sym_mut] = ACTIONS(684), + [anon_sym_const] = ACTIONS(687), + [aux_sym_cmd_identifier_token1] = ACTIONS(690), + [aux_sym_cmd_identifier_token2] = ACTIONS(690), + [aux_sym_cmd_identifier_token3] = ACTIONS(690), + [aux_sym_cmd_identifier_token4] = ACTIONS(690), + [aux_sym_cmd_identifier_token5] = ACTIONS(690), + [aux_sym_cmd_identifier_token6] = ACTIONS(690), + [aux_sym_cmd_identifier_token7] = ACTIONS(690), + [aux_sym_cmd_identifier_token8] = ACTIONS(690), + [aux_sym_cmd_identifier_token9] = ACTIONS(690), + [aux_sym_cmd_identifier_token10] = ACTIONS(690), + [aux_sym_cmd_identifier_token11] = ACTIONS(690), + [aux_sym_cmd_identifier_token12] = ACTIONS(690), + [aux_sym_cmd_identifier_token13] = ACTIONS(690), + [aux_sym_cmd_identifier_token14] = ACTIONS(690), + [aux_sym_cmd_identifier_token15] = ACTIONS(690), + [aux_sym_cmd_identifier_token16] = ACTIONS(690), + [aux_sym_cmd_identifier_token17] = ACTIONS(690), + [aux_sym_cmd_identifier_token18] = ACTIONS(690), + [aux_sym_cmd_identifier_token19] = ACTIONS(690), + [aux_sym_cmd_identifier_token20] = ACTIONS(690), + [aux_sym_cmd_identifier_token21] = ACTIONS(690), + [aux_sym_cmd_identifier_token22] = ACTIONS(690), + [aux_sym_cmd_identifier_token23] = ACTIONS(690), + [aux_sym_cmd_identifier_token24] = ACTIONS(693), + [aux_sym_cmd_identifier_token25] = ACTIONS(690), + [aux_sym_cmd_identifier_token26] = ACTIONS(693), + [aux_sym_cmd_identifier_token27] = ACTIONS(690), + [aux_sym_cmd_identifier_token28] = ACTIONS(690), + [aux_sym_cmd_identifier_token29] = ACTIONS(690), + [aux_sym_cmd_identifier_token30] = ACTIONS(690), + [aux_sym_cmd_identifier_token31] = ACTIONS(693), + [aux_sym_cmd_identifier_token32] = ACTIONS(693), + [aux_sym_cmd_identifier_token33] = ACTIONS(693), + [aux_sym_cmd_identifier_token34] = ACTIONS(693), + [aux_sym_cmd_identifier_token35] = ACTIONS(693), + [aux_sym_cmd_identifier_token36] = ACTIONS(690), + [anon_sym_true] = ACTIONS(696), + [anon_sym_false] = ACTIONS(696), + [anon_sym_null] = ACTIONS(699), + [aux_sym_cmd_identifier_token38] = ACTIONS(702), + [aux_sym_cmd_identifier_token39] = ACTIONS(705), + [aux_sym_cmd_identifier_token40] = ACTIONS(705), + [anon_sym_def] = ACTIONS(708), + [anon_sym_export_DASHenv] = ACTIONS(711), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_module] = ACTIONS(717), + [anon_sym_use] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_error] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(735), + [anon_sym_break] = ACTIONS(738), + [anon_sym_continue] = ACTIONS(741), + [anon_sym_for] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(747), + [anon_sym_while] = ACTIONS(750), + [anon_sym_do] = ACTIONS(753), + [anon_sym_if] = ACTIONS(756), + [anon_sym_match] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_DOT_DOT] = ACTIONS(765), + [anon_sym_try] = ACTIONS(768), + [anon_sym_return] = ACTIONS(771), + [anon_sym_source] = ACTIONS(774), + [anon_sym_source_DASHenv] = ACTIONS(774), + [anon_sym_register] = ACTIONS(777), + [anon_sym_hide] = ACTIONS(780), + [anon_sym_hide_DASHenv] = ACTIONS(783), + [anon_sym_overlay] = ACTIONS(786), + [anon_sym_where] = ACTIONS(789), + [aux_sym_expr_unary_token1] = ACTIONS(792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(795), + [anon_sym_DOT_DOT_LT] = ACTIONS(795), + [aux_sym__val_number_decimal_token1] = ACTIONS(798), + [aux_sym__val_number_decimal_token2] = ACTIONS(801), + [aux_sym__val_number_decimal_token3] = ACTIONS(804), + [aux_sym__val_number_decimal_token4] = ACTIONS(807), + [aux_sym__val_number_token1] = ACTIONS(810), + [aux_sym__val_number_token2] = ACTIONS(810), + [aux_sym__val_number_token3] = ACTIONS(810), + [anon_sym_0b] = ACTIONS(813), + [anon_sym_0o] = ACTIONS(816), + [anon_sym_0x] = ACTIONS(816), + [sym_val_date] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(822), + [sym__str_single_quotes] = ACTIONS(825), + [sym__str_back_ticks] = ACTIONS(825), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(831), + [aux_sym_env_var_token1] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(247), + }, + [158] = { + [sym__block_body_statement_parenthesized] = STATE(5661), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(158), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(159), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [159] = { + [sym__block_body_statement_parenthesized] = STATE(6576), + [sym__declaration_parenthesized] = STATE(6810), + [sym_decl_alias_parenthesized] = STATE(6895), + [sym_stmt_let_parenthesized] = STATE(6948), + [sym_stmt_mut_parenthesized] = STATE(6948), + [sym_stmt_const_parenthesized] = STATE(6948), + [sym_assignment_parenthesized] = STATE(6948), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), + [sym__statement_parenthesized] = STATE(6810), + [sym_pipeline_parenthesized] = STATE(6948), + [sym_cmd_identifier] = STATE(4758), + [sym_decl_def] = STATE(6895), + [sym_decl_export] = STATE(6895), + [sym_decl_extern] = STATE(6895), + [sym_decl_module] = STATE(6895), + [sym_decl_use] = STATE(6895), + [sym__ctrl_statement] = STATE(6948), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_stmt_source] = STATE(6948), + [sym_stmt_register] = STATE(6948), + [sym__stmt_hide] = STATE(6948), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6948), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(1303), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(159), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym__parenthesized_body_repeat2] = STATE(159), + [anon_sym_export] = ACTIONS(840), + [anon_sym_alias] = ACTIONS(843), + [anon_sym_let] = ACTIONS(846), + [anon_sym_let_DASHenv] = ACTIONS(846), + [anon_sym_mut] = ACTIONS(849), + [anon_sym_const] = ACTIONS(852), + [aux_sym_cmd_identifier_token1] = ACTIONS(855), + [aux_sym_cmd_identifier_token2] = ACTIONS(855), + [aux_sym_cmd_identifier_token3] = ACTIONS(855), + [aux_sym_cmd_identifier_token4] = ACTIONS(855), + [aux_sym_cmd_identifier_token5] = ACTIONS(855), + [aux_sym_cmd_identifier_token6] = ACTIONS(855), + [aux_sym_cmd_identifier_token7] = ACTIONS(855), + [aux_sym_cmd_identifier_token8] = ACTIONS(855), + [aux_sym_cmd_identifier_token9] = ACTIONS(855), + [aux_sym_cmd_identifier_token10] = ACTIONS(855), + [aux_sym_cmd_identifier_token11] = ACTIONS(855), + [aux_sym_cmd_identifier_token12] = ACTIONS(855), + [aux_sym_cmd_identifier_token13] = ACTIONS(855), + [aux_sym_cmd_identifier_token14] = ACTIONS(855), + [aux_sym_cmd_identifier_token15] = ACTIONS(855), + [aux_sym_cmd_identifier_token16] = ACTIONS(855), + [aux_sym_cmd_identifier_token17] = ACTIONS(855), + [aux_sym_cmd_identifier_token18] = ACTIONS(855), + [aux_sym_cmd_identifier_token19] = ACTIONS(855), + [aux_sym_cmd_identifier_token20] = ACTIONS(855), + [aux_sym_cmd_identifier_token21] = ACTIONS(855), + [aux_sym_cmd_identifier_token22] = ACTIONS(855), + [aux_sym_cmd_identifier_token23] = ACTIONS(855), + [aux_sym_cmd_identifier_token24] = ACTIONS(858), + [aux_sym_cmd_identifier_token25] = ACTIONS(855), + [aux_sym_cmd_identifier_token26] = ACTIONS(858), + [aux_sym_cmd_identifier_token27] = ACTIONS(855), + [aux_sym_cmd_identifier_token28] = ACTIONS(855), + [aux_sym_cmd_identifier_token29] = ACTIONS(855), + [aux_sym_cmd_identifier_token30] = ACTIONS(855), + [aux_sym_cmd_identifier_token31] = ACTIONS(858), + [aux_sym_cmd_identifier_token32] = ACTIONS(858), + [aux_sym_cmd_identifier_token33] = ACTIONS(858), + [aux_sym_cmd_identifier_token34] = ACTIONS(858), + [aux_sym_cmd_identifier_token35] = ACTIONS(858), + [aux_sym_cmd_identifier_token36] = ACTIONS(855), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [anon_sym_null] = ACTIONS(864), + [aux_sym_cmd_identifier_token38] = ACTIONS(867), + [aux_sym_cmd_identifier_token39] = ACTIONS(870), + [aux_sym_cmd_identifier_token40] = ACTIONS(870), + [anon_sym_def] = ACTIONS(873), + [anon_sym_export_DASHenv] = ACTIONS(876), + [anon_sym_extern] = ACTIONS(879), + [anon_sym_module] = ACTIONS(882), + [anon_sym_use] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_error] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_for] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(912), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(918), + [anon_sym_if] = ACTIONS(921), + [anon_sym_match] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_try] = ACTIONS(933), + [anon_sym_return] = ACTIONS(936), + [anon_sym_source] = ACTIONS(939), + [anon_sym_source_DASHenv] = ACTIONS(939), + [anon_sym_register] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_where] = ACTIONS(954), + [aux_sym_expr_unary_token1] = ACTIONS(957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(963), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(975), + [aux_sym__val_number_token2] = ACTIONS(975), + [aux_sym__val_number_token3] = ACTIONS(975), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(981), + [anon_sym_0x] = ACTIONS(981), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [aux_sym_env_var_token1] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + }, + [160] = { + [sym__block_body_statement] = STATE(5958), + [sym__declaration] = STATE(6090), + [sym_decl_alias] = STATE(6129), + [sym_stmt_let] = STATE(6177), + [sym_stmt_mut] = STATE(6177), + [sym_stmt_const] = STATE(6177), + [sym_assignment] = STATE(6177), + [sym__mutable_assignment_pattern] = STATE(6191), + [sym__statement] = STATE(6090), + [sym_pipeline] = STATE(6177), + [sym_cmd_identifier] = STATE(4514), + [sym_decl_def] = STATE(6129), + [sym_decl_export] = STATE(6129), + [sym_decl_extern] = STATE(6129), + [sym_decl_module] = STATE(6129), + [sym_decl_use] = STATE(6129), + [sym__ctrl_statement] = STATE(6177), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_for] = STATE(6230), + [sym_ctrl_loop] = STATE(6230), + [sym_ctrl_error] = STATE(6230), + [sym_ctrl_while] = STATE(6230), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_stmt_source] = STATE(6177), + [sym_stmt_register] = STATE(6177), + [sym__stmt_hide] = STATE(6177), + [sym_hide_mod] = STATE(6289), + [sym_hide_env] = STATE(6289), + [sym__stmt_overlay] = STATE(6177), + [sym_overlay_list] = STATE(6301), + [sym_overlay_hide] = STATE(6301), + [sym_overlay_new] = STATE(6301), + [sym_overlay_use] = STATE(6301), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1268), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat2] = STATE(157), + [aux_sym_pipe_element_repeat2] = STATE(411), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [161] = { + [sym_cell_path] = STATE(172), + [sym_path] = STATE(169), + [sym_comment] = STATE(161), + [aux_sym_cell_path_repeat1] = STATE(162), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), + [aux_sym_cmd_identifier_token1] = ACTIONS(1005), + [aux_sym_cmd_identifier_token2] = ACTIONS(1005), + [aux_sym_cmd_identifier_token3] = ACTIONS(1005), + [aux_sym_cmd_identifier_token4] = ACTIONS(1005), + [aux_sym_cmd_identifier_token5] = ACTIONS(1005), + [aux_sym_cmd_identifier_token6] = ACTIONS(1005), + [aux_sym_cmd_identifier_token7] = ACTIONS(1005), + [aux_sym_cmd_identifier_token8] = ACTIONS(1005), + [aux_sym_cmd_identifier_token9] = ACTIONS(1005), + [aux_sym_cmd_identifier_token10] = ACTIONS(1005), + [aux_sym_cmd_identifier_token11] = ACTIONS(1005), + [aux_sym_cmd_identifier_token12] = ACTIONS(1005), + [aux_sym_cmd_identifier_token13] = ACTIONS(1005), + [aux_sym_cmd_identifier_token14] = ACTIONS(1005), + [aux_sym_cmd_identifier_token15] = ACTIONS(1005), + [aux_sym_cmd_identifier_token16] = ACTIONS(1005), + [aux_sym_cmd_identifier_token17] = ACTIONS(1005), + [aux_sym_cmd_identifier_token18] = ACTIONS(1005), + [aux_sym_cmd_identifier_token19] = ACTIONS(1005), + [aux_sym_cmd_identifier_token20] = ACTIONS(1005), + [aux_sym_cmd_identifier_token21] = ACTIONS(1005), + [aux_sym_cmd_identifier_token22] = ACTIONS(1005), + [aux_sym_cmd_identifier_token23] = ACTIONS(1005), + [aux_sym_cmd_identifier_token24] = ACTIONS(1005), + [aux_sym_cmd_identifier_token25] = ACTIONS(1005), + [aux_sym_cmd_identifier_token26] = ACTIONS(1005), + [aux_sym_cmd_identifier_token27] = ACTIONS(1005), + [aux_sym_cmd_identifier_token28] = ACTIONS(1005), + [aux_sym_cmd_identifier_token29] = ACTIONS(1005), + [aux_sym_cmd_identifier_token30] = ACTIONS(1005), + [aux_sym_cmd_identifier_token31] = ACTIONS(1005), + [aux_sym_cmd_identifier_token32] = ACTIONS(1005), + [aux_sym_cmd_identifier_token33] = ACTIONS(1005), + [aux_sym_cmd_identifier_token34] = ACTIONS(1005), + [aux_sym_cmd_identifier_token35] = ACTIONS(1005), + [aux_sym_cmd_identifier_token36] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1005), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [sym__newline] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_make] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [aux_sym_expr_binary_token1] = ACTIONS(1007), + [aux_sym_expr_binary_token2] = ACTIONS(1007), + [aux_sym_expr_binary_token3] = ACTIONS(1007), + [aux_sym_expr_binary_token4] = ACTIONS(1007), + [aux_sym_expr_binary_token5] = ACTIONS(1007), + [aux_sym_expr_binary_token6] = ACTIONS(1007), + [aux_sym_expr_binary_token7] = ACTIONS(1007), + [aux_sym_expr_binary_token8] = ACTIONS(1007), + [aux_sym_expr_binary_token9] = ACTIONS(1007), + [aux_sym_expr_binary_token10] = ACTIONS(1007), + [aux_sym_expr_binary_token11] = ACTIONS(1007), + [aux_sym_expr_binary_token12] = ACTIONS(1007), + [aux_sym_expr_binary_token13] = ACTIONS(1007), + [aux_sym_expr_binary_token14] = ACTIONS(1007), + [aux_sym_expr_binary_token15] = ACTIONS(1007), + [aux_sym_expr_binary_token16] = ACTIONS(1007), + [aux_sym_expr_binary_token17] = ACTIONS(1007), + [aux_sym_expr_binary_token18] = ACTIONS(1007), + [aux_sym_expr_binary_token19] = ACTIONS(1007), + [aux_sym_expr_binary_token20] = ACTIONS(1007), + [aux_sym_expr_binary_token21] = ACTIONS(1007), + [aux_sym_expr_binary_token22] = ACTIONS(1007), + [aux_sym_expr_binary_token23] = ACTIONS(1007), + [aux_sym_expr_binary_token24] = ACTIONS(1007), + [aux_sym_expr_binary_token25] = ACTIONS(1007), + [aux_sym_expr_binary_token26] = ACTIONS(1007), + [aux_sym_expr_binary_token27] = ACTIONS(1007), + [aux_sym_expr_binary_token28] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), + [aux_sym_record_entry_token1] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(247), + }, + [162] = { + [sym_path] = STATE(169), + [sym_comment] = STATE(162), + [aux_sym_cell_path_repeat1] = STATE(163), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [aux_sym_record_entry_token1] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(247), + }, + [163] = { + [sym_path] = STATE(169), + [sym_comment] = STATE(163), + [aux_sym_cell_path_repeat1] = STATE(163), + [anon_sym_export] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_let_DASHenv] = ACTIONS(1015), + [anon_sym_mut] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), + [aux_sym_cmd_identifier_token1] = ACTIONS(1015), + [aux_sym_cmd_identifier_token2] = ACTIONS(1015), + [aux_sym_cmd_identifier_token3] = ACTIONS(1015), + [aux_sym_cmd_identifier_token4] = ACTIONS(1015), + [aux_sym_cmd_identifier_token5] = ACTIONS(1015), + [aux_sym_cmd_identifier_token6] = ACTIONS(1015), + [aux_sym_cmd_identifier_token7] = ACTIONS(1015), + [aux_sym_cmd_identifier_token8] = ACTIONS(1015), + [aux_sym_cmd_identifier_token9] = ACTIONS(1015), + [aux_sym_cmd_identifier_token10] = ACTIONS(1015), + [aux_sym_cmd_identifier_token11] = ACTIONS(1015), + [aux_sym_cmd_identifier_token12] = ACTIONS(1015), + [aux_sym_cmd_identifier_token13] = ACTIONS(1015), + [aux_sym_cmd_identifier_token14] = ACTIONS(1015), + [aux_sym_cmd_identifier_token15] = ACTIONS(1015), + [aux_sym_cmd_identifier_token16] = ACTIONS(1015), + [aux_sym_cmd_identifier_token17] = ACTIONS(1015), + [aux_sym_cmd_identifier_token18] = ACTIONS(1015), + [aux_sym_cmd_identifier_token19] = ACTIONS(1015), + [aux_sym_cmd_identifier_token20] = ACTIONS(1015), + [aux_sym_cmd_identifier_token21] = ACTIONS(1015), + [aux_sym_cmd_identifier_token22] = ACTIONS(1015), + [aux_sym_cmd_identifier_token23] = ACTIONS(1015), + [aux_sym_cmd_identifier_token24] = ACTIONS(1015), + [aux_sym_cmd_identifier_token25] = ACTIONS(1015), + [aux_sym_cmd_identifier_token26] = ACTIONS(1015), + [aux_sym_cmd_identifier_token27] = ACTIONS(1015), + [aux_sym_cmd_identifier_token28] = ACTIONS(1015), + [aux_sym_cmd_identifier_token29] = ACTIONS(1015), + [aux_sym_cmd_identifier_token30] = ACTIONS(1015), + [aux_sym_cmd_identifier_token31] = ACTIONS(1015), + [aux_sym_cmd_identifier_token32] = ACTIONS(1015), + [aux_sym_cmd_identifier_token33] = ACTIONS(1015), + [aux_sym_cmd_identifier_token34] = ACTIONS(1015), + [aux_sym_cmd_identifier_token35] = ACTIONS(1015), + [aux_sym_cmd_identifier_token36] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1015), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [sym__newline] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_def] = ACTIONS(1015), + [anon_sym_export_DASHenv] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_error] = ACTIONS(1015), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_in] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_make] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_source] = ACTIONS(1015), + [anon_sym_source_DASHenv] = ACTIONS(1015), + [anon_sym_register] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_hide_DASHenv] = ACTIONS(1015), + [anon_sym_overlay] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [aux_sym_expr_binary_token1] = ACTIONS(1017), + [aux_sym_expr_binary_token2] = ACTIONS(1017), + [aux_sym_expr_binary_token3] = ACTIONS(1017), + [aux_sym_expr_binary_token4] = ACTIONS(1017), + [aux_sym_expr_binary_token5] = ACTIONS(1017), + [aux_sym_expr_binary_token6] = ACTIONS(1017), + [aux_sym_expr_binary_token7] = ACTIONS(1017), + [aux_sym_expr_binary_token8] = ACTIONS(1017), + [aux_sym_expr_binary_token9] = ACTIONS(1017), + [aux_sym_expr_binary_token10] = ACTIONS(1017), + [aux_sym_expr_binary_token11] = ACTIONS(1017), + [aux_sym_expr_binary_token12] = ACTIONS(1017), + [aux_sym_expr_binary_token13] = ACTIONS(1017), + [aux_sym_expr_binary_token14] = ACTIONS(1017), + [aux_sym_expr_binary_token15] = ACTIONS(1017), + [aux_sym_expr_binary_token16] = ACTIONS(1017), + [aux_sym_expr_binary_token17] = ACTIONS(1017), + [aux_sym_expr_binary_token18] = ACTIONS(1017), + [aux_sym_expr_binary_token19] = ACTIONS(1017), + [aux_sym_expr_binary_token20] = ACTIONS(1017), + [aux_sym_expr_binary_token21] = ACTIONS(1017), + [aux_sym_expr_binary_token22] = ACTIONS(1017), + [aux_sym_expr_binary_token23] = ACTIONS(1017), + [aux_sym_expr_binary_token24] = ACTIONS(1017), + [aux_sym_expr_binary_token25] = ACTIONS(1017), + [aux_sym_expr_binary_token26] = ACTIONS(1017), + [aux_sym_expr_binary_token27] = ACTIONS(1017), + [aux_sym_expr_binary_token28] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), + [aux_sym_record_entry_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(247), + }, + [164] = { + [sym_comment] = STATE(164), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [sym__newline] = ACTIONS(1022), + [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_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_make] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(1026), + [aux_sym_expr_binary_token1] = ACTIONS(1024), + [aux_sym_expr_binary_token2] = ACTIONS(1024), + [aux_sym_expr_binary_token3] = ACTIONS(1024), + [aux_sym_expr_binary_token4] = ACTIONS(1024), + [aux_sym_expr_binary_token5] = ACTIONS(1024), + [aux_sym_expr_binary_token6] = ACTIONS(1024), + [aux_sym_expr_binary_token7] = ACTIONS(1024), + [aux_sym_expr_binary_token8] = ACTIONS(1024), + [aux_sym_expr_binary_token9] = ACTIONS(1024), + [aux_sym_expr_binary_token10] = ACTIONS(1024), + [aux_sym_expr_binary_token11] = ACTIONS(1024), + [aux_sym_expr_binary_token12] = ACTIONS(1024), + [aux_sym_expr_binary_token13] = ACTIONS(1024), + [aux_sym_expr_binary_token14] = ACTIONS(1024), + [aux_sym_expr_binary_token15] = ACTIONS(1024), + [aux_sym_expr_binary_token16] = ACTIONS(1024), + [aux_sym_expr_binary_token17] = ACTIONS(1024), + [aux_sym_expr_binary_token18] = ACTIONS(1024), + [aux_sym_expr_binary_token19] = ACTIONS(1024), + [aux_sym_expr_binary_token20] = ACTIONS(1024), + [aux_sym_expr_binary_token21] = ACTIONS(1024), + [aux_sym_expr_binary_token22] = ACTIONS(1024), + [aux_sym_expr_binary_token23] = ACTIONS(1024), + [aux_sym_expr_binary_token24] = ACTIONS(1024), + [aux_sym_expr_binary_token25] = ACTIONS(1024), + [aux_sym_expr_binary_token26] = ACTIONS(1024), + [aux_sym_expr_binary_token27] = ACTIONS(1024), + [aux_sym_expr_binary_token28] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), + [aux_sym_record_entry_token1] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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(247), + }, + [165] = { + [sym_comment] = STATE(165), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(1032), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), + [aux_sym_record_entry_token1] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(247), + }, + [166] = { + [sym_comment] = STATE(166), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(1036), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [aux_sym_record_entry_token1] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(247), + }, + [167] = { + [sym_comment] = STATE(167), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_COMMA] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(247), + }, + [168] = { + [sym_comment] = STATE(168), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), + }, + [169] = { + [sym_comment] = STATE(169), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_alias] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_let_DASHenv] = ACTIONS(1046), + [anon_sym_mut] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1046), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1046), + [aux_sym_cmd_identifier_token9] = ACTIONS(1046), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1046), + [aux_sym_cmd_identifier_token13] = ACTIONS(1046), + [aux_sym_cmd_identifier_token14] = ACTIONS(1046), + [aux_sym_cmd_identifier_token15] = ACTIONS(1046), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1046), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_export_DASHenv] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1046), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_make] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_source] = ACTIONS(1046), + [anon_sym_source_DASHenv] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_hide] = ACTIONS(1046), + [anon_sym_hide_DASHenv] = ACTIONS(1046), + [anon_sym_overlay] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [aux_sym_expr_binary_token1] = ACTIONS(1048), + [aux_sym_expr_binary_token2] = ACTIONS(1048), + [aux_sym_expr_binary_token3] = ACTIONS(1048), + [aux_sym_expr_binary_token4] = ACTIONS(1048), + [aux_sym_expr_binary_token5] = ACTIONS(1048), + [aux_sym_expr_binary_token6] = ACTIONS(1048), + [aux_sym_expr_binary_token7] = ACTIONS(1048), + [aux_sym_expr_binary_token8] = ACTIONS(1048), + [aux_sym_expr_binary_token9] = ACTIONS(1048), + [aux_sym_expr_binary_token10] = ACTIONS(1048), + [aux_sym_expr_binary_token11] = ACTIONS(1048), + [aux_sym_expr_binary_token12] = ACTIONS(1048), + [aux_sym_expr_binary_token13] = ACTIONS(1048), + [aux_sym_expr_binary_token14] = ACTIONS(1048), + [aux_sym_expr_binary_token15] = ACTIONS(1048), + [aux_sym_expr_binary_token16] = ACTIONS(1048), + [aux_sym_expr_binary_token17] = ACTIONS(1048), + [aux_sym_expr_binary_token18] = ACTIONS(1048), + [aux_sym_expr_binary_token19] = ACTIONS(1048), + [aux_sym_expr_binary_token20] = ACTIONS(1048), + [aux_sym_expr_binary_token21] = ACTIONS(1048), + [aux_sym_expr_binary_token22] = ACTIONS(1048), + [aux_sym_expr_binary_token23] = ACTIONS(1048), + [aux_sym_expr_binary_token24] = ACTIONS(1048), + [aux_sym_expr_binary_token25] = ACTIONS(1048), + [aux_sym_expr_binary_token26] = ACTIONS(1048), + [aux_sym_expr_binary_token27] = ACTIONS(1048), + [aux_sym_expr_binary_token28] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [aux_sym_record_entry_token1] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(247), + }, + [170] = { + [sym_comment] = STATE(170), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_alias] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_let_DASHenv] = ACTIONS(1050), + [anon_sym_mut] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1052), + [anon_sym_DASH_EQ] = ACTIONS(1052), + [anon_sym_STAR_EQ] = ACTIONS(1052), + [anon_sym_SLASH_EQ] = ACTIONS(1052), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1050), + [aux_sym_cmd_identifier_token4] = ACTIONS(1050), + [aux_sym_cmd_identifier_token5] = ACTIONS(1050), + [aux_sym_cmd_identifier_token6] = ACTIONS(1050), + [aux_sym_cmd_identifier_token7] = ACTIONS(1050), + [aux_sym_cmd_identifier_token8] = ACTIONS(1050), + [aux_sym_cmd_identifier_token9] = ACTIONS(1050), + [aux_sym_cmd_identifier_token10] = ACTIONS(1050), + [aux_sym_cmd_identifier_token11] = ACTIONS(1050), + [aux_sym_cmd_identifier_token12] = ACTIONS(1050), + [aux_sym_cmd_identifier_token13] = ACTIONS(1050), + [aux_sym_cmd_identifier_token14] = ACTIONS(1050), + [aux_sym_cmd_identifier_token15] = ACTIONS(1050), + [aux_sym_cmd_identifier_token16] = ACTIONS(1050), + [aux_sym_cmd_identifier_token17] = ACTIONS(1050), + [aux_sym_cmd_identifier_token18] = ACTIONS(1050), + [aux_sym_cmd_identifier_token19] = ACTIONS(1050), + [aux_sym_cmd_identifier_token20] = ACTIONS(1050), + [aux_sym_cmd_identifier_token21] = ACTIONS(1050), + [aux_sym_cmd_identifier_token22] = ACTIONS(1050), + [aux_sym_cmd_identifier_token23] = ACTIONS(1050), + [aux_sym_cmd_identifier_token24] = ACTIONS(1050), + [aux_sym_cmd_identifier_token25] = ACTIONS(1050), + [aux_sym_cmd_identifier_token26] = ACTIONS(1050), + [aux_sym_cmd_identifier_token27] = ACTIONS(1050), + [aux_sym_cmd_identifier_token28] = ACTIONS(1050), + [aux_sym_cmd_identifier_token29] = ACTIONS(1050), + [aux_sym_cmd_identifier_token30] = ACTIONS(1050), + [aux_sym_cmd_identifier_token31] = ACTIONS(1050), + [aux_sym_cmd_identifier_token32] = ACTIONS(1050), + [aux_sym_cmd_identifier_token33] = ACTIONS(1050), + [aux_sym_cmd_identifier_token34] = ACTIONS(1050), + [aux_sym_cmd_identifier_token35] = ACTIONS(1050), + [aux_sym_cmd_identifier_token36] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1050), + [anon_sym_export_DASHenv] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1050), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_make] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_catch] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_source] = ACTIONS(1050), + [anon_sym_source_DASHenv] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_hide] = ACTIONS(1050), + [anon_sym_hide_DASHenv] = ACTIONS(1050), + [anon_sym_overlay] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [aux_sym_expr_binary_token1] = ACTIONS(1052), + [aux_sym_expr_binary_token2] = ACTIONS(1052), + [aux_sym_expr_binary_token3] = ACTIONS(1052), + [aux_sym_expr_binary_token4] = ACTIONS(1052), + [aux_sym_expr_binary_token5] = ACTIONS(1052), + [aux_sym_expr_binary_token6] = ACTIONS(1052), + [aux_sym_expr_binary_token7] = ACTIONS(1052), + [aux_sym_expr_binary_token8] = ACTIONS(1052), + [aux_sym_expr_binary_token9] = ACTIONS(1052), + [aux_sym_expr_binary_token10] = ACTIONS(1052), + [aux_sym_expr_binary_token11] = ACTIONS(1052), + [aux_sym_expr_binary_token12] = ACTIONS(1052), + [aux_sym_expr_binary_token13] = ACTIONS(1052), + [aux_sym_expr_binary_token14] = ACTIONS(1052), + [aux_sym_expr_binary_token15] = ACTIONS(1052), + [aux_sym_expr_binary_token16] = ACTIONS(1052), + [aux_sym_expr_binary_token17] = ACTIONS(1052), + [aux_sym_expr_binary_token18] = ACTIONS(1052), + [aux_sym_expr_binary_token19] = ACTIONS(1052), + [aux_sym_expr_binary_token20] = ACTIONS(1052), + [aux_sym_expr_binary_token21] = ACTIONS(1052), + [aux_sym_expr_binary_token22] = ACTIONS(1052), + [aux_sym_expr_binary_token23] = ACTIONS(1052), + [aux_sym_expr_binary_token24] = ACTIONS(1052), + [aux_sym_expr_binary_token25] = ACTIONS(1052), + [aux_sym_expr_binary_token26] = ACTIONS(1052), + [aux_sym_expr_binary_token27] = ACTIONS(1052), + [aux_sym_expr_binary_token28] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [aux_sym_record_entry_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(247), + }, + [171] = { + [sym_comment] = STATE(171), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [aux_sym_expr_binary_token1] = ACTIONS(1056), + [aux_sym_expr_binary_token2] = ACTIONS(1056), + [aux_sym_expr_binary_token3] = ACTIONS(1056), + [aux_sym_expr_binary_token4] = ACTIONS(1056), + [aux_sym_expr_binary_token5] = ACTIONS(1056), + [aux_sym_expr_binary_token6] = ACTIONS(1056), + [aux_sym_expr_binary_token7] = ACTIONS(1056), + [aux_sym_expr_binary_token8] = ACTIONS(1056), + [aux_sym_expr_binary_token9] = ACTIONS(1056), + [aux_sym_expr_binary_token10] = ACTIONS(1056), + [aux_sym_expr_binary_token11] = ACTIONS(1056), + [aux_sym_expr_binary_token12] = ACTIONS(1056), + [aux_sym_expr_binary_token13] = ACTIONS(1056), + [aux_sym_expr_binary_token14] = ACTIONS(1056), + [aux_sym_expr_binary_token15] = ACTIONS(1056), + [aux_sym_expr_binary_token16] = ACTIONS(1056), + [aux_sym_expr_binary_token17] = ACTIONS(1056), + [aux_sym_expr_binary_token18] = ACTIONS(1056), + [aux_sym_expr_binary_token19] = ACTIONS(1056), + [aux_sym_expr_binary_token20] = ACTIONS(1056), + [aux_sym_expr_binary_token21] = ACTIONS(1056), + [aux_sym_expr_binary_token22] = ACTIONS(1056), + [aux_sym_expr_binary_token23] = ACTIONS(1056), + [aux_sym_expr_binary_token24] = ACTIONS(1056), + [aux_sym_expr_binary_token25] = ACTIONS(1056), + [aux_sym_expr_binary_token26] = ACTIONS(1056), + [aux_sym_expr_binary_token27] = ACTIONS(1056), + [aux_sym_expr_binary_token28] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [aux_sym_record_entry_token1] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(247), + }, + [172] = { + [sym_comment] = STATE(172), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [aux_sym_record_entry_token1] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(247), + }, + [173] = { + [sym_comment] = STATE(173), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [sym__newline] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [aux_sym_expr_binary_token1] = ACTIONS(1072), + [aux_sym_expr_binary_token2] = ACTIONS(1072), + [aux_sym_expr_binary_token3] = ACTIONS(1072), + [aux_sym_expr_binary_token4] = ACTIONS(1072), + [aux_sym_expr_binary_token5] = ACTIONS(1072), + [aux_sym_expr_binary_token6] = ACTIONS(1072), + [aux_sym_expr_binary_token7] = ACTIONS(1072), + [aux_sym_expr_binary_token8] = ACTIONS(1072), + [aux_sym_expr_binary_token9] = ACTIONS(1072), + [aux_sym_expr_binary_token10] = ACTIONS(1072), + [aux_sym_expr_binary_token11] = ACTIONS(1072), + [aux_sym_expr_binary_token12] = ACTIONS(1072), + [aux_sym_expr_binary_token13] = ACTIONS(1072), + [aux_sym_expr_binary_token14] = ACTIONS(1072), + [aux_sym_expr_binary_token15] = ACTIONS(1072), + [aux_sym_expr_binary_token16] = ACTIONS(1072), + [aux_sym_expr_binary_token17] = ACTIONS(1072), + [aux_sym_expr_binary_token18] = ACTIONS(1072), + [aux_sym_expr_binary_token19] = ACTIONS(1072), + [aux_sym_expr_binary_token20] = ACTIONS(1072), + [aux_sym_expr_binary_token21] = ACTIONS(1072), + [aux_sym_expr_binary_token22] = ACTIONS(1072), + [aux_sym_expr_binary_token23] = ACTIONS(1072), + [aux_sym_expr_binary_token24] = ACTIONS(1072), + [aux_sym_expr_binary_token25] = ACTIONS(1072), + [aux_sym_expr_binary_token26] = ACTIONS(1072), + [aux_sym_expr_binary_token27] = ACTIONS(1072), + [aux_sym_expr_binary_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), + [aux_sym_record_entry_token1] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(247), + }, + [174] = { + [sym_pipeline] = STATE(6614), + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(174), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [175] = { + [sym_pipeline] = STATE(6350), + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [176] = { + [sym_pipeline_parenthesized] = STATE(7185), + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(176), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [177] = { + [sym_pipeline_parenthesized] = STATE(7184), + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [178] = { + [sym_pipeline] = STATE(6857), + [sym_cmd_identifier] = STATE(4801), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [179] = { + [sym_pipeline] = STATE(6766), + [sym_cmd_identifier] = STATE(4801), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [180] = { + [sym_pipeline] = STATE(6640), + [sym_cmd_identifier] = STATE(4801), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [181] = { + [sym_pipeline] = STATE(6942), + [sym_cmd_identifier] = STATE(4801), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [182] = { + [sym_pipeline_parenthesized] = STATE(7179), + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(182), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [183] = { + [sym_pipeline_parenthesized] = STATE(6890), + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [184] = { + [sym_pipeline_parenthesized] = STATE(6893), + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4698), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [185] = { + [sym_pipeline] = STATE(6099), + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [186] = { + [sym_pipeline] = STATE(6690), + [sym_cmd_identifier] = STATE(4801), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4775), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [187] = { + [sym_pipeline] = STATE(6105), + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [188] = { + [sym_pipeline] = STATE(6240), + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [189] = { + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(5077), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(1085), + [aux_sym_cmd_identifier_token2] = ACTIONS(1088), + [aux_sym_cmd_identifier_token3] = ACTIONS(1088), + [aux_sym_cmd_identifier_token4] = ACTIONS(1088), + [aux_sym_cmd_identifier_token5] = ACTIONS(1088), + [aux_sym_cmd_identifier_token6] = ACTIONS(1088), + [aux_sym_cmd_identifier_token7] = ACTIONS(1088), + [aux_sym_cmd_identifier_token8] = ACTIONS(1088), + [aux_sym_cmd_identifier_token9] = ACTIONS(1085), + [aux_sym_cmd_identifier_token10] = ACTIONS(1088), + [aux_sym_cmd_identifier_token11] = ACTIONS(1088), + [aux_sym_cmd_identifier_token12] = ACTIONS(1088), + [aux_sym_cmd_identifier_token13] = ACTIONS(1085), + [aux_sym_cmd_identifier_token14] = ACTIONS(1088), + [aux_sym_cmd_identifier_token15] = ACTIONS(1085), + [aux_sym_cmd_identifier_token16] = ACTIONS(1088), + [aux_sym_cmd_identifier_token17] = ACTIONS(1088), + [aux_sym_cmd_identifier_token18] = ACTIONS(1088), + [aux_sym_cmd_identifier_token19] = ACTIONS(1088), + [aux_sym_cmd_identifier_token20] = ACTIONS(1088), + [aux_sym_cmd_identifier_token21] = ACTIONS(1088), + [aux_sym_cmd_identifier_token22] = ACTIONS(1085), + [aux_sym_cmd_identifier_token23] = ACTIONS(1085), + [aux_sym_cmd_identifier_token24] = ACTIONS(1088), + [aux_sym_cmd_identifier_token25] = ACTIONS(1085), + [aux_sym_cmd_identifier_token26] = ACTIONS(1088), + [aux_sym_cmd_identifier_token27] = ACTIONS(1085), + [aux_sym_cmd_identifier_token28] = ACTIONS(1085), + [aux_sym_cmd_identifier_token29] = ACTIONS(1085), + [aux_sym_cmd_identifier_token30] = ACTIONS(1085), + [aux_sym_cmd_identifier_token31] = ACTIONS(1088), + [aux_sym_cmd_identifier_token32] = ACTIONS(1088), + [aux_sym_cmd_identifier_token33] = ACTIONS(1088), + [aux_sym_cmd_identifier_token34] = ACTIONS(1088), + [aux_sym_cmd_identifier_token35] = ACTIONS(1088), + [aux_sym_cmd_identifier_token36] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1094), + [aux_sym_cmd_identifier_token38] = ACTIONS(1097), + [aux_sym_cmd_identifier_token39] = ACTIONS(1100), + [aux_sym_cmd_identifier_token40] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_match] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1133), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_where] = ACTIONS(1142), + [aux_sym_expr_unary_token1] = ACTIONS(1145), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), + [anon_sym_DOT_DOT_LT] = ACTIONS(1148), + [aux_sym__val_number_decimal_token1] = ACTIONS(1151), + [aux_sym__val_number_decimal_token2] = ACTIONS(1154), + [aux_sym__val_number_decimal_token3] = ACTIONS(1157), + [aux_sym__val_number_decimal_token4] = ACTIONS(1160), + [aux_sym__val_number_token1] = ACTIONS(1163), + [aux_sym__val_number_token2] = ACTIONS(1163), + [aux_sym__val_number_token3] = ACTIONS(1163), + [anon_sym_0b] = ACTIONS(1166), + [anon_sym_0o] = ACTIONS(1169), + [anon_sym_0x] = ACTIONS(1169), + [sym_val_date] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym__str_single_quotes] = ACTIONS(1178), + [sym__str_back_ticks] = ACTIONS(1178), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1184), + [aux_sym_env_var_token1] = ACTIONS(1187), + [anon_sym_CARET] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(247), + }, + [190] = { + [sym_cmd_identifier] = STATE(4758), + [sym__ctrl_expression_parenthesized] = STATE(5002), + [sym_ctrl_do_parenthesized] = STATE(5003), + [sym_ctrl_if_parenthesized] = STATE(5003), + [sym_ctrl_match] = STATE(5003), + [sym_ctrl_try_parenthesized] = STATE(5003), + [sym_ctrl_return] = STATE(5003), + [sym_pipe_element_parenthesized] = STATE(4701), + [sym_where_command_parenthesized] = STATE(5004), + [sym__expression_parenthesized] = STATE(3796), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5010), + [sym_comment] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_break] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_do] = ACTIONS(481), + [anon_sym_if] = ACTIONS(483), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(487), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(489), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [191] = { + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(4591), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [192] = { + [sym_cmd_identifier] = STATE(4514), + [sym__ctrl_expression] = STATE(4840), + [sym_ctrl_do] = STATE(4854), + [sym_ctrl_if] = STATE(4854), + [sym_ctrl_match] = STATE(4854), + [sym_ctrl_try] = STATE(4854), + [sym_ctrl_return] = STATE(4854), + [sym_pipe_element] = STATE(5020), + [sym_where_command] = STATE(4904), + [sym__expression] = STATE(3773), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4904), + [sym_comment] = STATE(192), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(411), + [aux_sym_cmd_identifier_token1] = ACTIONS(1193), + [aux_sym_cmd_identifier_token2] = ACTIONS(1196), + [aux_sym_cmd_identifier_token3] = ACTIONS(1196), + [aux_sym_cmd_identifier_token4] = ACTIONS(1196), + [aux_sym_cmd_identifier_token5] = ACTIONS(1196), + [aux_sym_cmd_identifier_token6] = ACTIONS(1196), + [aux_sym_cmd_identifier_token7] = ACTIONS(1196), + [aux_sym_cmd_identifier_token8] = ACTIONS(1196), + [aux_sym_cmd_identifier_token9] = ACTIONS(1193), + [aux_sym_cmd_identifier_token10] = ACTIONS(1196), + [aux_sym_cmd_identifier_token11] = ACTIONS(1196), + [aux_sym_cmd_identifier_token12] = ACTIONS(1196), + [aux_sym_cmd_identifier_token13] = ACTIONS(1193), + [aux_sym_cmd_identifier_token14] = ACTIONS(1196), + [aux_sym_cmd_identifier_token15] = ACTIONS(1193), + [aux_sym_cmd_identifier_token16] = ACTIONS(1196), + [aux_sym_cmd_identifier_token17] = ACTIONS(1196), + [aux_sym_cmd_identifier_token18] = ACTIONS(1196), + [aux_sym_cmd_identifier_token19] = ACTIONS(1196), + [aux_sym_cmd_identifier_token20] = ACTIONS(1196), + [aux_sym_cmd_identifier_token21] = ACTIONS(1196), + [aux_sym_cmd_identifier_token22] = ACTIONS(1193), + [aux_sym_cmd_identifier_token23] = ACTIONS(1193), + [aux_sym_cmd_identifier_token24] = ACTIONS(1196), + [aux_sym_cmd_identifier_token25] = ACTIONS(1193), + [aux_sym_cmd_identifier_token26] = ACTIONS(1196), + [aux_sym_cmd_identifier_token27] = ACTIONS(1193), + [aux_sym_cmd_identifier_token28] = ACTIONS(1193), + [aux_sym_cmd_identifier_token29] = ACTIONS(1193), + [aux_sym_cmd_identifier_token30] = ACTIONS(1193), + [aux_sym_cmd_identifier_token31] = ACTIONS(1196), + [aux_sym_cmd_identifier_token32] = ACTIONS(1196), + [aux_sym_cmd_identifier_token33] = ACTIONS(1196), + [aux_sym_cmd_identifier_token34] = ACTIONS(1196), + [aux_sym_cmd_identifier_token35] = ACTIONS(1196), + [aux_sym_cmd_identifier_token36] = ACTIONS(1193), + [anon_sym_true] = ACTIONS(1199), + [anon_sym_false] = ACTIONS(1199), + [anon_sym_null] = ACTIONS(1202), + [aux_sym_cmd_identifier_token38] = ACTIONS(1205), + [aux_sym_cmd_identifier_token39] = ACTIONS(1208), + [aux_sym_cmd_identifier_token40] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_where] = ACTIONS(1250), + [aux_sym_expr_unary_token1] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1256), + [anon_sym_DOT_DOT_LT] = ACTIONS(1256), + [aux_sym__val_number_decimal_token1] = ACTIONS(1259), + [aux_sym__val_number_decimal_token2] = ACTIONS(1262), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1274), + [anon_sym_0o] = ACTIONS(1277), + [anon_sym_0x] = ACTIONS(1277), + [sym_val_date] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__str_single_quotes] = ACTIONS(1286), + [sym__str_back_ticks] = ACTIONS(1286), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(247), + }, + [193] = { + [sym_cmd_identifier] = STATE(4801), + [sym__ctrl_expression] = STATE(5080), + [sym_ctrl_do] = STATE(5113), + [sym_ctrl_if] = STATE(5113), + [sym_ctrl_match] = STATE(5113), + [sym_ctrl_try] = STATE(5113), + [sym_ctrl_return] = STATE(5113), + [sym_pipe_element] = STATE(4721), + [sym_where_command] = STATE(5143), + [sym__expression] = STATE(3799), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5143), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [194] = { + [sym_comment] = STATE(194), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_alias] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_let_DASHenv] = ACTIONS(1301), + [anon_sym_mut] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1301), + [aux_sym_cmd_identifier_token3] = ACTIONS(1301), + [aux_sym_cmd_identifier_token4] = ACTIONS(1301), + [aux_sym_cmd_identifier_token5] = ACTIONS(1301), + [aux_sym_cmd_identifier_token6] = ACTIONS(1301), + [aux_sym_cmd_identifier_token7] = ACTIONS(1301), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1301), + [aux_sym_cmd_identifier_token11] = ACTIONS(1301), + [aux_sym_cmd_identifier_token12] = ACTIONS(1301), + [aux_sym_cmd_identifier_token13] = ACTIONS(1301), + [aux_sym_cmd_identifier_token14] = ACTIONS(1301), + [aux_sym_cmd_identifier_token15] = ACTIONS(1301), + [aux_sym_cmd_identifier_token16] = ACTIONS(1301), + [aux_sym_cmd_identifier_token17] = ACTIONS(1301), + [aux_sym_cmd_identifier_token18] = ACTIONS(1301), + [aux_sym_cmd_identifier_token19] = ACTIONS(1301), + [aux_sym_cmd_identifier_token20] = ACTIONS(1301), + [aux_sym_cmd_identifier_token21] = ACTIONS(1301), + [aux_sym_cmd_identifier_token22] = ACTIONS(1301), + [aux_sym_cmd_identifier_token23] = ACTIONS(1301), + [aux_sym_cmd_identifier_token24] = ACTIONS(1301), + [aux_sym_cmd_identifier_token25] = ACTIONS(1301), + [aux_sym_cmd_identifier_token26] = ACTIONS(1301), + [aux_sym_cmd_identifier_token27] = ACTIONS(1301), + [aux_sym_cmd_identifier_token28] = ACTIONS(1301), + [aux_sym_cmd_identifier_token29] = ACTIONS(1301), + [aux_sym_cmd_identifier_token30] = ACTIONS(1301), + [aux_sym_cmd_identifier_token31] = ACTIONS(1301), + [aux_sym_cmd_identifier_token32] = ACTIONS(1301), + [aux_sym_cmd_identifier_token33] = ACTIONS(1301), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1301), + [aux_sym_cmd_identifier_token36] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [anon_sym_null] = ACTIONS(1304), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1304), + [aux_sym_cmd_identifier_token40] = ACTIONS(1304), + [sym__newline] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1301), + [anon_sym_export_DASHenv] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_use] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_error] = ACTIONS(1301), + [anon_sym_list] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1301), + [anon_sym_make] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_source] = ACTIONS(1301), + [anon_sym_source_DASHenv] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_hide] = ACTIONS(1301), + [anon_sym_hide_DASHenv] = ACTIONS(1301), + [anon_sym_overlay] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(1304), + [aux_sym_expr_unary_token1] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), + [anon_sym_DOT_DOT_LT] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1301), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), + [aux_sym__val_number_token1] = ACTIONS(1304), + [aux_sym__val_number_token2] = ACTIONS(1304), + [aux_sym__val_number_token3] = ACTIONS(1304), + [anon_sym_0b] = ACTIONS(1301), + [anon_sym_0o] = ACTIONS(1301), + [anon_sym_0x] = ACTIONS(1301), + [sym_val_date] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym__str_single_quotes] = ACTIONS(1304), + [sym__str_back_ticks] = ACTIONS(1304), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1311), + [aux_sym_env_var_token1] = ACTIONS(1301), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(247), + }, + [195] = { + [sym_comment] = STATE(195), + [aux_sym_shebang_repeat1] = STATE(195), + [anon_sym_export] = ACTIONS(1313), + [anon_sym_alias] = ACTIONS(1313), + [anon_sym_let] = ACTIONS(1313), + [anon_sym_let_DASHenv] = ACTIONS(1313), + [anon_sym_mut] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [aux_sym_cmd_identifier_token1] = ACTIONS(1313), + [aux_sym_cmd_identifier_token2] = ACTIONS(1313), + [aux_sym_cmd_identifier_token3] = ACTIONS(1313), + [aux_sym_cmd_identifier_token4] = ACTIONS(1313), + [aux_sym_cmd_identifier_token5] = ACTIONS(1313), + [aux_sym_cmd_identifier_token6] = ACTIONS(1313), + [aux_sym_cmd_identifier_token7] = ACTIONS(1313), + [aux_sym_cmd_identifier_token8] = ACTIONS(1313), + [aux_sym_cmd_identifier_token9] = ACTIONS(1313), + [aux_sym_cmd_identifier_token10] = ACTIONS(1313), + [aux_sym_cmd_identifier_token11] = ACTIONS(1313), + [aux_sym_cmd_identifier_token12] = ACTIONS(1313), + [aux_sym_cmd_identifier_token13] = ACTIONS(1313), + [aux_sym_cmd_identifier_token14] = ACTIONS(1313), + [aux_sym_cmd_identifier_token15] = ACTIONS(1313), + [aux_sym_cmd_identifier_token16] = ACTIONS(1313), + [aux_sym_cmd_identifier_token17] = ACTIONS(1313), + [aux_sym_cmd_identifier_token18] = ACTIONS(1313), + [aux_sym_cmd_identifier_token19] = ACTIONS(1313), + [aux_sym_cmd_identifier_token20] = ACTIONS(1313), + [aux_sym_cmd_identifier_token21] = ACTIONS(1313), + [aux_sym_cmd_identifier_token22] = ACTIONS(1313), + [aux_sym_cmd_identifier_token23] = ACTIONS(1313), + [aux_sym_cmd_identifier_token24] = ACTIONS(1313), + [aux_sym_cmd_identifier_token25] = ACTIONS(1313), + [aux_sym_cmd_identifier_token26] = ACTIONS(1313), + [aux_sym_cmd_identifier_token27] = ACTIONS(1313), + [aux_sym_cmd_identifier_token28] = ACTIONS(1313), + [aux_sym_cmd_identifier_token29] = ACTIONS(1313), + [aux_sym_cmd_identifier_token30] = ACTIONS(1313), + [aux_sym_cmd_identifier_token31] = ACTIONS(1313), + [aux_sym_cmd_identifier_token32] = ACTIONS(1313), + [aux_sym_cmd_identifier_token33] = ACTIONS(1313), + [aux_sym_cmd_identifier_token34] = ACTIONS(1313), + [aux_sym_cmd_identifier_token35] = ACTIONS(1313), + [aux_sym_cmd_identifier_token36] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_null] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1313), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [sym__newline] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_def] = ACTIONS(1313), + [anon_sym_export_DASHenv] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_module] = ACTIONS(1313), + [anon_sym_use] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_error] = ACTIONS(1313), + [anon_sym_list] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_in] = ACTIONS(1313), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_make] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1313), + [anon_sym_catch] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_source] = ACTIONS(1313), + [anon_sym_source_DASHenv] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_hide] = ACTIONS(1313), + [anon_sym_hide_DASHenv] = ACTIONS(1313), + [anon_sym_overlay] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_as] = ACTIONS(1313), + [anon_sym_where] = ACTIONS(1315), + [aux_sym_expr_unary_token1] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_LT] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1315), + [aux_sym__val_number_token1] = ACTIONS(1315), + [aux_sym__val_number_token2] = ACTIONS(1315), + [aux_sym__val_number_token3] = ACTIONS(1315), + [anon_sym_0b] = ACTIONS(1313), + [anon_sym_0o] = ACTIONS(1313), + [anon_sym_0x] = ACTIONS(1313), + [sym_val_date] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym__str_single_quotes] = ACTIONS(1315), + [sym__str_back_ticks] = ACTIONS(1315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1313), + [aux_sym_env_var_token1] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(247), + }, + [196] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7481), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(196), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [sym__newline] = ACTIONS(1328), + [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -95265,7 +99843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -95279,10 +99857,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -95293,80 +99871,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [168] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7485), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(168), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_record_body_repeat1] = STATE(179), + [197] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7384), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(197), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [sym__newline] = ACTIONS(1328), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -95381,7 +99959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1342), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -95395,10 +99973,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -95409,80 +99987,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [169] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7563), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(169), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_record_body_repeat1] = STATE(179), + [198] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7725), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(198), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [sym__newline] = ACTIONS(1328), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -95497,7 +100075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1344), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -95511,10 +100089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -95525,80 +100103,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [170] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7525), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(170), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_record_body_repeat1] = STATE(179), + [199] = { + [sym_comment] = STATE(199), + [anon_sym_export] = ACTIONS(1311), + [anon_sym_alias] = ACTIONS(1311), + [anon_sym_let] = ACTIONS(1311), + [anon_sym_let_DASHenv] = ACTIONS(1311), + [anon_sym_mut] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [aux_sym_cmd_identifier_token1] = ACTIONS(1311), + [aux_sym_cmd_identifier_token2] = ACTIONS(1311), + [aux_sym_cmd_identifier_token3] = ACTIONS(1311), + [aux_sym_cmd_identifier_token4] = ACTIONS(1311), + [aux_sym_cmd_identifier_token5] = ACTIONS(1311), + [aux_sym_cmd_identifier_token6] = ACTIONS(1311), + [aux_sym_cmd_identifier_token7] = ACTIONS(1311), + [aux_sym_cmd_identifier_token8] = ACTIONS(1311), + [aux_sym_cmd_identifier_token9] = ACTIONS(1311), + [aux_sym_cmd_identifier_token10] = ACTIONS(1311), + [aux_sym_cmd_identifier_token11] = ACTIONS(1311), + [aux_sym_cmd_identifier_token12] = ACTIONS(1311), + [aux_sym_cmd_identifier_token13] = ACTIONS(1311), + [aux_sym_cmd_identifier_token14] = ACTIONS(1311), + [aux_sym_cmd_identifier_token15] = ACTIONS(1311), + [aux_sym_cmd_identifier_token16] = ACTIONS(1311), + [aux_sym_cmd_identifier_token17] = ACTIONS(1311), + [aux_sym_cmd_identifier_token18] = ACTIONS(1311), + [aux_sym_cmd_identifier_token19] = ACTIONS(1311), + [aux_sym_cmd_identifier_token20] = ACTIONS(1311), + [aux_sym_cmd_identifier_token21] = ACTIONS(1311), + [aux_sym_cmd_identifier_token22] = ACTIONS(1311), + [aux_sym_cmd_identifier_token23] = ACTIONS(1311), + [aux_sym_cmd_identifier_token24] = ACTIONS(1311), + [aux_sym_cmd_identifier_token25] = ACTIONS(1311), + [aux_sym_cmd_identifier_token26] = ACTIONS(1311), + [aux_sym_cmd_identifier_token27] = ACTIONS(1311), + [aux_sym_cmd_identifier_token28] = ACTIONS(1311), + [aux_sym_cmd_identifier_token29] = ACTIONS(1311), + [aux_sym_cmd_identifier_token30] = ACTIONS(1311), + [aux_sym_cmd_identifier_token31] = ACTIONS(1311), + [aux_sym_cmd_identifier_token32] = ACTIONS(1311), + [aux_sym_cmd_identifier_token33] = ACTIONS(1311), + [aux_sym_cmd_identifier_token34] = ACTIONS(1311), + [aux_sym_cmd_identifier_token35] = ACTIONS(1311), + [aux_sym_cmd_identifier_token36] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1311), + [anon_sym_export_DASHenv] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_module] = ACTIONS(1311), + [anon_sym_use] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1311), + [anon_sym_error] = ACTIONS(1311), + [anon_sym_list] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1311), + [anon_sym_make] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_source] = ACTIONS(1311), + [anon_sym_source_DASHenv] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_hide] = ACTIONS(1311), + [anon_sym_hide_DASHenv] = ACTIONS(1311), + [anon_sym_overlay] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(1307), + [aux_sym_expr_unary_token1] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1307), + [aux_sym__val_number_decimal_token3] = ACTIONS(1307), + [aux_sym__val_number_decimal_token4] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1311), + [anon_sym_0o] = ACTIONS(1311), + [anon_sym_0x] = ACTIONS(1311), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1311), + [aux_sym_env_var_token1] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(247), + }, + [200] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7553), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(200), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [sym__newline] = ACTIONS(1328), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -95613,7 +100307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1346), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -95627,10 +100321,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -95641,80 +100335,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [171] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_body] = STATE(7781), - [sym_record_entry] = STATE(6685), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(171), - [aux_sym_shebang_repeat1] = STATE(173), - [aux_sym_record_body_repeat1] = STATE(179), + [201] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_body] = STATE(7619), + [sym_record_entry] = STATE(6911), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(201), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(210), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [sym__newline] = ACTIONS(1328), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -95729,7 +100423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1348), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -95743,10 +100437,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -95757,195 +100451,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [172] = { - [sym_comment] = STATE(172), - [anon_sym_export] = ACTIONS(1337), - [anon_sym_alias] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_let_DASHenv] = ACTIONS(1337), - [anon_sym_mut] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [aux_sym_cmd_identifier_token1] = ACTIONS(1337), - [aux_sym_cmd_identifier_token2] = ACTIONS(1337), - [aux_sym_cmd_identifier_token3] = ACTIONS(1337), - [aux_sym_cmd_identifier_token4] = ACTIONS(1337), - [aux_sym_cmd_identifier_token5] = ACTIONS(1337), - [aux_sym_cmd_identifier_token6] = ACTIONS(1337), - [aux_sym_cmd_identifier_token7] = ACTIONS(1337), - [aux_sym_cmd_identifier_token8] = ACTIONS(1337), - [aux_sym_cmd_identifier_token9] = ACTIONS(1337), - [aux_sym_cmd_identifier_token10] = ACTIONS(1337), - [aux_sym_cmd_identifier_token11] = ACTIONS(1337), - [aux_sym_cmd_identifier_token12] = ACTIONS(1337), - [aux_sym_cmd_identifier_token13] = ACTIONS(1337), - [aux_sym_cmd_identifier_token14] = ACTIONS(1337), - [aux_sym_cmd_identifier_token15] = ACTIONS(1337), - [aux_sym_cmd_identifier_token16] = ACTIONS(1337), - [aux_sym_cmd_identifier_token17] = ACTIONS(1337), - [aux_sym_cmd_identifier_token18] = ACTIONS(1337), - [aux_sym_cmd_identifier_token19] = ACTIONS(1337), - [aux_sym_cmd_identifier_token20] = ACTIONS(1337), - [aux_sym_cmd_identifier_token21] = ACTIONS(1337), - [aux_sym_cmd_identifier_token22] = ACTIONS(1337), - [aux_sym_cmd_identifier_token23] = ACTIONS(1337), - [aux_sym_cmd_identifier_token24] = ACTIONS(1337), - [aux_sym_cmd_identifier_token25] = ACTIONS(1337), - [aux_sym_cmd_identifier_token26] = ACTIONS(1337), - [aux_sym_cmd_identifier_token27] = ACTIONS(1337), - [aux_sym_cmd_identifier_token28] = ACTIONS(1337), - [aux_sym_cmd_identifier_token29] = ACTIONS(1337), - [aux_sym_cmd_identifier_token30] = ACTIONS(1337), - [aux_sym_cmd_identifier_token31] = ACTIONS(1337), - [aux_sym_cmd_identifier_token32] = ACTIONS(1337), - [aux_sym_cmd_identifier_token33] = ACTIONS(1337), - [aux_sym_cmd_identifier_token34] = ACTIONS(1337), - [aux_sym_cmd_identifier_token35] = ACTIONS(1337), - [aux_sym_cmd_identifier_token36] = ACTIONS(1337), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [anon_sym_null] = ACTIONS(1340), - [aux_sym_cmd_identifier_token38] = ACTIONS(1337), - [aux_sym_cmd_identifier_token39] = ACTIONS(1340), - [aux_sym_cmd_identifier_token40] = ACTIONS(1340), - [sym__newline] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_def] = ACTIONS(1337), - [anon_sym_export_DASHenv] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_module] = ACTIONS(1337), - [anon_sym_use] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_error] = ACTIONS(1337), - [anon_sym_list] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_in] = ACTIONS(1345), - [anon_sym_loop] = ACTIONS(1337), - [anon_sym_make] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1337), - [aux_sym_ctrl_match_token1] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(1337), - [anon_sym_catch] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_source] = ACTIONS(1337), - [anon_sym_source_DASHenv] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_hide] = ACTIONS(1337), - [anon_sym_hide_DASHenv] = ACTIONS(1337), - [anon_sym_overlay] = ACTIONS(1337), - [anon_sym_new] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_where] = ACTIONS(1343), - [aux_sym_expr_unary_token1] = ACTIONS(1343), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), - [anon_sym_DOT_DOT_LT] = ACTIONS(1343), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1349), - [aux_sym__val_number_decimal_token1] = ACTIONS(1337), - [aux_sym__val_number_decimal_token2] = ACTIONS(1340), - [aux_sym__val_number_decimal_token3] = ACTIONS(1340), + [202] = { + [sym_cmd_identifier] = STATE(7456), + [sym__match_pattern_record_variable] = STATE(656), + [sym_expr_parenthesized] = STATE(7535), + [sym__spread_parenthesized] = STATE(658), + [sym__spread_variable] = STATE(697), + [sym_val_variable] = STATE(513), + [sym_val_number] = STATE(7535), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7535), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(658), + [sym_record_entry] = STATE(656), + [sym__record_key] = STATE(7456), + [sym_comment] = STATE(202), + [aux_sym__match_pattern_record_repeat1] = STATE(203), + [anon_sym_export] = ACTIONS(1350), + [anon_sym_alias] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_let_DASHenv] = ACTIONS(1350), + [anon_sym_mut] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [anon_sym_def] = ACTIONS(1350), + [anon_sym_export_DASHenv] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_module] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1352), + [anon_sym_error] = ACTIONS(1350), + [anon_sym_list] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_in] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_make] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1350), + [anon_sym_catch] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_source] = ACTIONS(1350), + [anon_sym_source_DASHenv] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_hide] = ACTIONS(1350), + [anon_sym_hide_DASHenv] = ACTIONS(1350), + [anon_sym_overlay] = ACTIONS(1350), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), + [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(1340), - [aux_sym__val_number_token1] = ACTIONS(1340), - [aux_sym__val_number_token2] = ACTIONS(1340), - [aux_sym__val_number_token3] = ACTIONS(1340), - [anon_sym_0b] = ACTIONS(1347), - [anon_sym_0o] = ACTIONS(1347), - [anon_sym_0x] = ACTIONS(1347), - [sym_val_date] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym__str_single_quotes] = ACTIONS(1340), - [sym__str_back_ticks] = ACTIONS(1340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1345), - [aux_sym_env_var_token1] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1343), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [173] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_entry] = STATE(6801), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(173), - [aux_sym_shebang_repeat1] = STATE(551), - [aux_sym_record_body_repeat1] = STATE(181), + [203] = { + [sym_cmd_identifier] = STATE(7456), + [sym__match_pattern_record_variable] = STATE(656), + [sym_expr_parenthesized] = STATE(7535), + [sym__spread_parenthesized] = STATE(658), + [sym__spread_variable] = STATE(697), + [sym_val_variable] = STATE(513), + [sym_val_number] = STATE(7535), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7535), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(658), + [sym_record_entry] = STATE(656), + [sym__record_key] = STATE(7456), + [sym_comment] = STATE(203), + [aux_sym__match_pattern_record_repeat1] = STATE(204), + [anon_sym_export] = ACTIONS(1350), + [anon_sym_alias] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_let_DASHenv] = ACTIONS(1350), + [anon_sym_mut] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [anon_sym_def] = ACTIONS(1350), + [anon_sym_export_DASHenv] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_module] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1352), + [anon_sym_error] = ACTIONS(1350), + [anon_sym_list] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_in] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_make] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_try] = ACTIONS(1350), + [anon_sym_catch] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_source] = ACTIONS(1350), + [anon_sym_source_DASHenv] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_hide] = ACTIONS(1350), + [anon_sym_hide_DASHenv] = ACTIONS(1350), + [anon_sym_overlay] = ACTIONS(1350), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), + [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(1340), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), + }, + [204] = { + [sym_cmd_identifier] = STATE(7456), + [sym__match_pattern_record_variable] = STATE(656), + [sym_expr_parenthesized] = STATE(7535), + [sym__spread_parenthesized] = STATE(658), + [sym__spread_variable] = STATE(697), + [sym_val_variable] = STATE(513), + [sym_val_number] = STATE(7535), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7535), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(658), + [sym_record_entry] = STATE(656), + [sym__record_key] = STATE(7456), + [sym_comment] = STATE(204), + [aux_sym__match_pattern_record_repeat1] = STATE(204), + [anon_sym_export] = ACTIONS(1364), + [anon_sym_alias] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_let_DASHenv] = ACTIONS(1364), + [anon_sym_mut] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [aux_sym_cmd_identifier_token1] = ACTIONS(1367), + [aux_sym_cmd_identifier_token2] = ACTIONS(1367), + [aux_sym_cmd_identifier_token3] = ACTIONS(1367), + [aux_sym_cmd_identifier_token4] = ACTIONS(1367), + [aux_sym_cmd_identifier_token5] = ACTIONS(1367), + [aux_sym_cmd_identifier_token6] = ACTIONS(1367), + [aux_sym_cmd_identifier_token7] = ACTIONS(1367), + [aux_sym_cmd_identifier_token8] = ACTIONS(1367), + [aux_sym_cmd_identifier_token9] = ACTIONS(1367), + [aux_sym_cmd_identifier_token10] = ACTIONS(1367), + [aux_sym_cmd_identifier_token11] = ACTIONS(1367), + [aux_sym_cmd_identifier_token12] = ACTIONS(1367), + [aux_sym_cmd_identifier_token13] = ACTIONS(1367), + [aux_sym_cmd_identifier_token14] = ACTIONS(1367), + [aux_sym_cmd_identifier_token15] = ACTIONS(1367), + [aux_sym_cmd_identifier_token16] = ACTIONS(1367), + [aux_sym_cmd_identifier_token17] = ACTIONS(1367), + [aux_sym_cmd_identifier_token18] = ACTIONS(1367), + [aux_sym_cmd_identifier_token19] = ACTIONS(1367), + [aux_sym_cmd_identifier_token20] = ACTIONS(1367), + [aux_sym_cmd_identifier_token21] = ACTIONS(1367), + [aux_sym_cmd_identifier_token22] = ACTIONS(1367), + [aux_sym_cmd_identifier_token23] = ACTIONS(1367), + [aux_sym_cmd_identifier_token24] = ACTIONS(1367), + [aux_sym_cmd_identifier_token25] = ACTIONS(1367), + [aux_sym_cmd_identifier_token26] = ACTIONS(1367), + [aux_sym_cmd_identifier_token27] = ACTIONS(1367), + [aux_sym_cmd_identifier_token28] = ACTIONS(1367), + [aux_sym_cmd_identifier_token29] = ACTIONS(1367), + [aux_sym_cmd_identifier_token30] = ACTIONS(1367), + [aux_sym_cmd_identifier_token31] = ACTIONS(1367), + [aux_sym_cmd_identifier_token32] = ACTIONS(1367), + [aux_sym_cmd_identifier_token33] = ACTIONS(1367), + [aux_sym_cmd_identifier_token34] = ACTIONS(1367), + [aux_sym_cmd_identifier_token35] = ACTIONS(1367), + [aux_sym_cmd_identifier_token36] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1370), + [aux_sym_cmd_identifier_token38] = ACTIONS(1373), + [aux_sym_cmd_identifier_token39] = ACTIONS(1376), + [aux_sym_cmd_identifier_token40] = ACTIONS(1376), + [anon_sym_def] = ACTIONS(1364), + [anon_sym_export_DASHenv] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_module] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_error] = ACTIONS(1364), + [anon_sym_list] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_in] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_make] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1364), + [anon_sym_catch] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_source] = ACTIONS(1364), + [anon_sym_source_DASHenv] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_hide] = ACTIONS(1364), + [anon_sym_hide_DASHenv] = ACTIONS(1364), + [anon_sym_overlay] = ACTIONS(1364), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_as] = ACTIONS(1364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1393), + [aux_sym__val_number_decimal_token1] = ACTIONS(1396), + [aux_sym__val_number_decimal_token2] = ACTIONS(1399), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1405), + [aux_sym__val_number_token1] = ACTIONS(1408), + [aux_sym__val_number_token2] = ACTIONS(1408), + [aux_sym__val_number_token3] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1411), + [sym__str_single_quotes] = ACTIONS(1414), + [sym__str_back_ticks] = ACTIONS(1414), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(247), + }, + [205] = { + [sym_cmd_identifier] = STATE(7456), + [sym__match_pattern_record_variable] = STATE(656), + [sym_expr_parenthesized] = STATE(7535), + [sym__spread_parenthesized] = STATE(658), + [sym__spread_variable] = STATE(697), + [sym_val_variable] = STATE(513), + [sym_val_number] = STATE(7535), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7535), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(658), + [sym_record_entry] = STATE(656), + [sym__record_key] = STATE(7456), + [sym_comment] = STATE(205), + [aux_sym__match_pattern_record_repeat1] = STATE(204), + [anon_sym_export] = ACTIONS(1350), + [anon_sym_alias] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_let_DASHenv] = ACTIONS(1350), + [anon_sym_mut] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [anon_sym_def] = ACTIONS(1350), + [anon_sym_export_DASHenv] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_module] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1352), + [anon_sym_error] = ACTIONS(1350), + [anon_sym_list] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_in] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_make] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_try] = ACTIONS(1350), + [anon_sym_catch] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_source] = ACTIONS(1350), + [anon_sym_source_DASHenv] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_hide] = ACTIONS(1350), + [anon_sym_hide_DASHenv] = ACTIONS(1350), + [anon_sym_overlay] = ACTIONS(1350), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), + [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(1340), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), + }, + [206] = { + [sym_cmd_identifier] = STATE(7456), + [sym__match_pattern_record_variable] = STATE(656), + [sym_expr_parenthesized] = STATE(7535), + [sym__spread_parenthesized] = STATE(658), + [sym__spread_variable] = STATE(697), + [sym_val_variable] = STATE(513), + [sym_val_number] = STATE(7535), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7535), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(658), + [sym_record_entry] = STATE(656), + [sym__record_key] = STATE(7456), + [sym_comment] = STATE(206), + [aux_sym__match_pattern_record_repeat1] = STATE(205), + [anon_sym_export] = ACTIONS(1350), + [anon_sym_alias] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_let_DASHenv] = ACTIONS(1350), + [anon_sym_mut] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [anon_sym_def] = ACTIONS(1350), + [anon_sym_export_DASHenv] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_module] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1352), + [anon_sym_error] = ACTIONS(1350), + [anon_sym_list] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_in] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_make] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_try] = ACTIONS(1350), + [anon_sym_catch] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_source] = ACTIONS(1350), + [anon_sym_source_DASHenv] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_hide] = ACTIONS(1350), + [anon_sym_hide_DASHenv] = ACTIONS(1350), + [anon_sym_overlay] = ACTIONS(1350), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), + [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(1340), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), + }, + [207] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6724), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(207), + [aux_sym_shebang_repeat1] = STATE(594), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [sym__newline] = ACTIONS(1315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), + [sym__newline] = ACTIONS(1328), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -95973,10 +101121,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -95987,647 +101135,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [174] = { - [sym_cmd_identifier] = STATE(7579), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7647), - [sym__spread_parenthesized] = STATE(634), - [sym__spread_variable] = STATE(635), - [sym_val_variable] = STATE(481), - [sym_val_number] = STATE(7647), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7647), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(634), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7579), - [sym_comment] = STATE(174), - [aux_sym__match_pattern_record_repeat1] = STATE(175), - [anon_sym_export] = ACTIONS(1351), - [anon_sym_alias] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1351), - [anon_sym_let_DASHenv] = ACTIONS(1351), - [anon_sym_mut] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1351), - [anon_sym_export_DASHenv] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym_module] = ACTIONS(1351), - [anon_sym_use] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1353), - [anon_sym_error] = ACTIONS(1351), - [anon_sym_list] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_in] = ACTIONS(1351), - [anon_sym_loop] = ACTIONS(1351), - [anon_sym_make] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1351), - [anon_sym_match] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_try] = ACTIONS(1351), - [anon_sym_catch] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_source] = ACTIONS(1351), - [anon_sym_source_DASHenv] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_hide] = ACTIONS(1351), - [anon_sym_hide_DASHenv] = ACTIONS(1351), - [anon_sym_overlay] = ACTIONS(1351), - [anon_sym_new] = ACTIONS(1351), - [anon_sym_as] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), - }, - [175] = { - [sym_cmd_identifier] = STATE(7579), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7647), - [sym__spread_parenthesized] = STATE(634), - [sym__spread_variable] = STATE(635), - [sym_val_variable] = STATE(481), - [sym_val_number] = STATE(7647), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7647), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(634), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7579), - [sym_comment] = STATE(175), - [aux_sym__match_pattern_record_repeat1] = STATE(177), - [anon_sym_export] = ACTIONS(1351), - [anon_sym_alias] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1351), - [anon_sym_let_DASHenv] = ACTIONS(1351), - [anon_sym_mut] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1351), - [anon_sym_export_DASHenv] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym_module] = ACTIONS(1351), - [anon_sym_use] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1353), - [anon_sym_error] = ACTIONS(1351), - [anon_sym_list] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_in] = ACTIONS(1351), - [anon_sym_loop] = ACTIONS(1351), - [anon_sym_make] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1351), - [anon_sym_match] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_try] = ACTIONS(1351), - [anon_sym_catch] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_source] = ACTIONS(1351), - [anon_sym_source_DASHenv] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_hide] = ACTIONS(1351), - [anon_sym_hide_DASHenv] = ACTIONS(1351), - [anon_sym_overlay] = ACTIONS(1351), - [anon_sym_new] = ACTIONS(1351), - [anon_sym_as] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), - }, - [176] = { - [sym_cmd_identifier] = STATE(7579), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7647), - [sym__spread_parenthesized] = STATE(634), - [sym__spread_variable] = STATE(635), - [sym_val_variable] = STATE(481), - [sym_val_number] = STATE(7647), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7647), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(634), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7579), - [sym_comment] = STATE(176), - [aux_sym__match_pattern_record_repeat1] = STATE(178), - [anon_sym_export] = ACTIONS(1351), - [anon_sym_alias] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1351), - [anon_sym_let_DASHenv] = ACTIONS(1351), - [anon_sym_mut] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1351), - [anon_sym_export_DASHenv] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym_module] = ACTIONS(1351), - [anon_sym_use] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1353), - [anon_sym_error] = ACTIONS(1351), - [anon_sym_list] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_in] = ACTIONS(1351), - [anon_sym_loop] = ACTIONS(1351), - [anon_sym_make] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1351), - [anon_sym_match] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_try] = ACTIONS(1351), - [anon_sym_catch] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_source] = ACTIONS(1351), - [anon_sym_source_DASHenv] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_hide] = ACTIONS(1351), - [anon_sym_hide_DASHenv] = ACTIONS(1351), - [anon_sym_overlay] = ACTIONS(1351), - [anon_sym_new] = ACTIONS(1351), - [anon_sym_as] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), - }, - [177] = { - [sym_cmd_identifier] = STATE(7579), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7647), - [sym__spread_parenthesized] = STATE(634), - [sym__spread_variable] = STATE(635), - [sym_val_variable] = STATE(481), - [sym_val_number] = STATE(7647), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7647), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(634), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7579), - [sym_comment] = STATE(177), - [aux_sym__match_pattern_record_repeat1] = STATE(177), - [anon_sym_export] = ACTIONS(1367), - [anon_sym_alias] = ACTIONS(1367), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_let_DASHenv] = ACTIONS(1367), - [anon_sym_mut] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [aux_sym_cmd_identifier_token1] = ACTIONS(1370), - [aux_sym_cmd_identifier_token2] = ACTIONS(1370), - [aux_sym_cmd_identifier_token3] = ACTIONS(1370), - [aux_sym_cmd_identifier_token4] = ACTIONS(1370), - [aux_sym_cmd_identifier_token5] = ACTIONS(1370), - [aux_sym_cmd_identifier_token6] = ACTIONS(1370), - [aux_sym_cmd_identifier_token7] = ACTIONS(1370), - [aux_sym_cmd_identifier_token8] = ACTIONS(1370), - [aux_sym_cmd_identifier_token9] = ACTIONS(1370), - [aux_sym_cmd_identifier_token10] = ACTIONS(1370), - [aux_sym_cmd_identifier_token11] = ACTIONS(1370), - [aux_sym_cmd_identifier_token12] = ACTIONS(1370), - [aux_sym_cmd_identifier_token13] = ACTIONS(1370), - [aux_sym_cmd_identifier_token14] = ACTIONS(1370), - [aux_sym_cmd_identifier_token15] = ACTIONS(1370), - [aux_sym_cmd_identifier_token16] = ACTIONS(1370), - [aux_sym_cmd_identifier_token17] = ACTIONS(1370), - [aux_sym_cmd_identifier_token18] = ACTIONS(1370), - [aux_sym_cmd_identifier_token19] = ACTIONS(1370), - [aux_sym_cmd_identifier_token20] = ACTIONS(1370), - [aux_sym_cmd_identifier_token21] = ACTIONS(1370), - [aux_sym_cmd_identifier_token22] = ACTIONS(1370), - [aux_sym_cmd_identifier_token23] = ACTIONS(1370), - [aux_sym_cmd_identifier_token24] = ACTIONS(1370), - [aux_sym_cmd_identifier_token25] = ACTIONS(1370), - [aux_sym_cmd_identifier_token26] = ACTIONS(1370), - [aux_sym_cmd_identifier_token27] = ACTIONS(1370), - [aux_sym_cmd_identifier_token28] = ACTIONS(1370), - [aux_sym_cmd_identifier_token29] = ACTIONS(1370), - [aux_sym_cmd_identifier_token30] = ACTIONS(1370), - [aux_sym_cmd_identifier_token31] = ACTIONS(1370), - [aux_sym_cmd_identifier_token32] = ACTIONS(1370), - [aux_sym_cmd_identifier_token33] = ACTIONS(1370), - [aux_sym_cmd_identifier_token34] = ACTIONS(1370), - [aux_sym_cmd_identifier_token35] = ACTIONS(1370), - [aux_sym_cmd_identifier_token36] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1373), - [aux_sym_cmd_identifier_token38] = ACTIONS(1376), - [aux_sym_cmd_identifier_token39] = ACTIONS(1379), - [aux_sym_cmd_identifier_token40] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1367), - [anon_sym_export_DASHenv] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_use] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_error] = ACTIONS(1367), - [anon_sym_list] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_loop] = ACTIONS(1367), - [anon_sym_make] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_match] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_try] = ACTIONS(1367), - [anon_sym_catch] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_source] = ACTIONS(1367), - [anon_sym_source_DASHenv] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_hide] = ACTIONS(1367), - [anon_sym_hide_DASHenv] = ACTIONS(1367), - [anon_sym_overlay] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(1367), - [anon_sym_as] = ACTIONS(1367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1393), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1399), - [aux_sym__val_number_decimal_token2] = ACTIONS(1402), - [aux_sym__val_number_decimal_token3] = ACTIONS(1405), - [aux_sym__val_number_decimal_token4] = ACTIONS(1408), - [aux_sym__val_number_token1] = ACTIONS(1411), - [aux_sym__val_number_token2] = ACTIONS(1411), - [aux_sym__val_number_token3] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1414), - [sym__str_single_quotes] = ACTIONS(1417), - [sym__str_back_ticks] = ACTIONS(1417), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(247), - }, - [178] = { - [sym_cmd_identifier] = STATE(7579), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7647), - [sym__spread_parenthesized] = STATE(634), - [sym__spread_variable] = STATE(635), - [sym_val_variable] = STATE(481), - [sym_val_number] = STATE(7647), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7647), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(634), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7579), - [sym_comment] = STATE(178), - [aux_sym__match_pattern_record_repeat1] = STATE(177), - [anon_sym_export] = ACTIONS(1351), - [anon_sym_alias] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1351), - [anon_sym_let_DASHenv] = ACTIONS(1351), - [anon_sym_mut] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), - [anon_sym_def] = ACTIONS(1351), - [anon_sym_export_DASHenv] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym_module] = ACTIONS(1351), - [anon_sym_use] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1353), - [anon_sym_error] = ACTIONS(1351), - [anon_sym_list] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_in] = ACTIONS(1351), - [anon_sym_loop] = ACTIONS(1351), - [anon_sym_make] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1351), - [anon_sym_match] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_try] = ACTIONS(1351), - [anon_sym_catch] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_source] = ACTIONS(1351), - [anon_sym_source_DASHenv] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_hide] = ACTIONS(1351), - [anon_sym_hide_DASHenv] = ACTIONS(1351), - [anon_sym_overlay] = ACTIONS(1351), - [anon_sym_new] = ACTIONS(1351), - [anon_sym_as] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(243), + [208] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(7349), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(208), + [aux_sym_record_body_repeat1] = STATE(208), + [anon_sym_export] = ACTIONS(1424), + [anon_sym_alias] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_let_DASHenv] = ACTIONS(1424), + [anon_sym_mut] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [aux_sym_cmd_identifier_token1] = ACTIONS(1427), + [aux_sym_cmd_identifier_token2] = ACTIONS(1427), + [aux_sym_cmd_identifier_token3] = ACTIONS(1427), + [aux_sym_cmd_identifier_token4] = ACTIONS(1427), + [aux_sym_cmd_identifier_token5] = ACTIONS(1427), + [aux_sym_cmd_identifier_token6] = ACTIONS(1427), + [aux_sym_cmd_identifier_token7] = ACTIONS(1427), + [aux_sym_cmd_identifier_token8] = ACTIONS(1427), + [aux_sym_cmd_identifier_token9] = ACTIONS(1427), + [aux_sym_cmd_identifier_token10] = ACTIONS(1427), + [aux_sym_cmd_identifier_token11] = ACTIONS(1427), + [aux_sym_cmd_identifier_token12] = ACTIONS(1427), + [aux_sym_cmd_identifier_token13] = ACTIONS(1427), + [aux_sym_cmd_identifier_token14] = ACTIONS(1427), + [aux_sym_cmd_identifier_token15] = ACTIONS(1427), + [aux_sym_cmd_identifier_token16] = ACTIONS(1427), + [aux_sym_cmd_identifier_token17] = ACTIONS(1427), + [aux_sym_cmd_identifier_token18] = ACTIONS(1427), + [aux_sym_cmd_identifier_token19] = ACTIONS(1427), + [aux_sym_cmd_identifier_token20] = ACTIONS(1427), + [aux_sym_cmd_identifier_token21] = ACTIONS(1427), + [aux_sym_cmd_identifier_token22] = ACTIONS(1427), + [aux_sym_cmd_identifier_token23] = ACTIONS(1427), + [aux_sym_cmd_identifier_token24] = ACTIONS(1427), + [aux_sym_cmd_identifier_token25] = ACTIONS(1427), + [aux_sym_cmd_identifier_token26] = ACTIONS(1427), + [aux_sym_cmd_identifier_token27] = ACTIONS(1427), + [aux_sym_cmd_identifier_token28] = ACTIONS(1427), + [aux_sym_cmd_identifier_token29] = ACTIONS(1427), + [aux_sym_cmd_identifier_token30] = ACTIONS(1427), + [aux_sym_cmd_identifier_token31] = ACTIONS(1427), + [aux_sym_cmd_identifier_token32] = ACTIONS(1427), + [aux_sym_cmd_identifier_token33] = ACTIONS(1427), + [aux_sym_cmd_identifier_token34] = ACTIONS(1427), + [aux_sym_cmd_identifier_token35] = ACTIONS(1427), + [aux_sym_cmd_identifier_token36] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), + [anon_sym_null] = ACTIONS(1430), + [aux_sym_cmd_identifier_token38] = ACTIONS(1433), + [aux_sym_cmd_identifier_token39] = ACTIONS(1436), + [aux_sym_cmd_identifier_token40] = ACTIONS(1436), + [anon_sym_def] = ACTIONS(1424), + [anon_sym_export_DASHenv] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_module] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_error] = ACTIONS(1424), + [anon_sym_list] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_in] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_make] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_try] = ACTIONS(1424), + [anon_sym_catch] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_source] = ACTIONS(1424), + [anon_sym_source_DASHenv] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_hide] = ACTIONS(1424), + [anon_sym_hide_DASHenv] = ACTIONS(1424), + [anon_sym_overlay] = ACTIONS(1424), + [anon_sym_new] = ACTIONS(1424), + [anon_sym_as] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1451), + [aux_sym__val_number_decimal_token1] = ACTIONS(1454), + [aux_sym__val_number_decimal_token2] = ACTIONS(1457), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1466), + [aux_sym__val_number_token2] = ACTIONS(1466), + [aux_sym__val_number_token3] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym__str_single_quotes] = ACTIONS(1472), + [sym__str_back_ticks] = ACTIONS(1472), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(247), }, - [179] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_entry] = STATE(6858), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(179), - [aux_sym_record_body_repeat1] = STATE(180), + [209] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6729), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(208), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -96655,10 +101345,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -96669,189 +101359,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [180] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_entry] = STATE(7344), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(180), - [aux_sym_record_body_repeat1] = STATE(180), - [anon_sym_export] = ACTIONS(1425), - [anon_sym_alias] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_let_DASHenv] = ACTIONS(1425), - [anon_sym_mut] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [aux_sym_cmd_identifier_token1] = ACTIONS(1428), - [aux_sym_cmd_identifier_token2] = ACTIONS(1428), - [aux_sym_cmd_identifier_token3] = ACTIONS(1428), - [aux_sym_cmd_identifier_token4] = ACTIONS(1428), - [aux_sym_cmd_identifier_token5] = ACTIONS(1428), - [aux_sym_cmd_identifier_token6] = ACTIONS(1428), - [aux_sym_cmd_identifier_token7] = ACTIONS(1428), - [aux_sym_cmd_identifier_token8] = ACTIONS(1428), - [aux_sym_cmd_identifier_token9] = ACTIONS(1428), - [aux_sym_cmd_identifier_token10] = ACTIONS(1428), - [aux_sym_cmd_identifier_token11] = ACTIONS(1428), - [aux_sym_cmd_identifier_token12] = ACTIONS(1428), - [aux_sym_cmd_identifier_token13] = ACTIONS(1428), - [aux_sym_cmd_identifier_token14] = ACTIONS(1428), - [aux_sym_cmd_identifier_token15] = ACTIONS(1428), - [aux_sym_cmd_identifier_token16] = ACTIONS(1428), - [aux_sym_cmd_identifier_token17] = ACTIONS(1428), - [aux_sym_cmd_identifier_token18] = ACTIONS(1428), - [aux_sym_cmd_identifier_token19] = ACTIONS(1428), - [aux_sym_cmd_identifier_token20] = ACTIONS(1428), - [aux_sym_cmd_identifier_token21] = ACTIONS(1428), - [aux_sym_cmd_identifier_token22] = ACTIONS(1428), - [aux_sym_cmd_identifier_token23] = ACTIONS(1428), - [aux_sym_cmd_identifier_token24] = ACTIONS(1428), - [aux_sym_cmd_identifier_token25] = ACTIONS(1428), - [aux_sym_cmd_identifier_token26] = ACTIONS(1428), - [aux_sym_cmd_identifier_token27] = ACTIONS(1428), - [aux_sym_cmd_identifier_token28] = ACTIONS(1428), - [aux_sym_cmd_identifier_token29] = ACTIONS(1428), - [aux_sym_cmd_identifier_token30] = ACTIONS(1428), - [aux_sym_cmd_identifier_token31] = ACTIONS(1428), - [aux_sym_cmd_identifier_token32] = ACTIONS(1428), - [aux_sym_cmd_identifier_token33] = ACTIONS(1428), - [aux_sym_cmd_identifier_token34] = ACTIONS(1428), - [aux_sym_cmd_identifier_token35] = ACTIONS(1428), - [aux_sym_cmd_identifier_token36] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [aux_sym_cmd_identifier_token38] = ACTIONS(1434), - [aux_sym_cmd_identifier_token39] = ACTIONS(1437), - [aux_sym_cmd_identifier_token40] = ACTIONS(1437), - [anon_sym_def] = ACTIONS(1425), - [anon_sym_export_DASHenv] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_module] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1443), - [anon_sym_error] = ACTIONS(1425), - [anon_sym_list] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_in] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_make] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [anon_sym_catch] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_source] = ACTIONS(1425), - [anon_sym_source_DASHenv] = ACTIONS(1425), - [anon_sym_register] = ACTIONS(1425), - [anon_sym_hide] = ACTIONS(1425), - [anon_sym_hide_DASHenv] = ACTIONS(1425), - [anon_sym_overlay] = ACTIONS(1425), - [anon_sym_new] = ACTIONS(1425), - [anon_sym_as] = ACTIONS(1425), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1452), - [aux_sym__val_number_decimal_token1] = ACTIONS(1455), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1464), - [aux_sym__val_number_token1] = ACTIONS(1467), - [aux_sym__val_number_token2] = ACTIONS(1467), - [aux_sym__val_number_token3] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1473), - [sym__str_back_ticks] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(247), - }, - [181] = { - [sym_cmd_identifier] = STATE(7700), - [sym_expr_parenthesized] = STATE(7569), - [sym__spread_parenthesized] = STATE(584), - [sym__spread_variable] = STATE(586), - [sym_val_variable] = STATE(7569), - [sym_val_number] = STATE(7569), - [sym__val_number_decimal] = STATE(6229), - [sym__val_number] = STATE(1676), - [sym_val_string] = STATE(7569), - [sym__str_double_quotes] = STATE(1389), - [sym__spread_record] = STATE(584), - [sym_record_entry] = STATE(6879), - [sym__record_key] = STATE(7700), - [sym_comment] = STATE(181), - [aux_sym_record_body_repeat1] = STATE(180), + [210] = { + [sym_cmd_identifier] = STATE(7516), + [sym_expr_parenthesized] = STATE(7410), + [sym__spread_parenthesized] = STATE(567), + [sym__spread_variable] = STATE(571), + [sym_val_variable] = STATE(7410), + [sym_val_number] = STATE(7410), + [sym__val_number_decimal] = STATE(6126), + [sym__val_number] = STATE(1647), + [sym_val_string] = STATE(7410), + [sym__str_double_quotes] = STATE(1418), + [sym__spread_record] = STATE(567), + [sym_record_entry] = STATE(6730), + [sym__record_key] = STATE(7516), + [sym_comment] = STATE(210), + [aux_sym_record_body_repeat1] = STATE(208), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1307), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1307), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1307), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1307), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1307), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1313), - [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [aux_sym_cmd_identifier_token1] = ACTIONS(1320), + [aux_sym_cmd_identifier_token2] = ACTIONS(1320), + [aux_sym_cmd_identifier_token3] = ACTIONS(1320), + [aux_sym_cmd_identifier_token4] = ACTIONS(1320), + [aux_sym_cmd_identifier_token5] = ACTIONS(1320), + [aux_sym_cmd_identifier_token6] = ACTIONS(1320), + [aux_sym_cmd_identifier_token7] = ACTIONS(1320), + [aux_sym_cmd_identifier_token8] = ACTIONS(1320), + [aux_sym_cmd_identifier_token9] = ACTIONS(1320), + [aux_sym_cmd_identifier_token10] = ACTIONS(1320), + [aux_sym_cmd_identifier_token11] = ACTIONS(1320), + [aux_sym_cmd_identifier_token12] = ACTIONS(1320), + [aux_sym_cmd_identifier_token13] = ACTIONS(1320), + [aux_sym_cmd_identifier_token14] = ACTIONS(1320), + [aux_sym_cmd_identifier_token15] = ACTIONS(1320), + [aux_sym_cmd_identifier_token16] = ACTIONS(1320), + [aux_sym_cmd_identifier_token17] = ACTIONS(1320), + [aux_sym_cmd_identifier_token18] = ACTIONS(1320), + [aux_sym_cmd_identifier_token19] = ACTIONS(1320), + [aux_sym_cmd_identifier_token20] = ACTIONS(1320), + [aux_sym_cmd_identifier_token21] = ACTIONS(1320), + [aux_sym_cmd_identifier_token22] = ACTIONS(1320), + [aux_sym_cmd_identifier_token23] = ACTIONS(1320), + [aux_sym_cmd_identifier_token24] = ACTIONS(1320), + [aux_sym_cmd_identifier_token25] = ACTIONS(1320), + [aux_sym_cmd_identifier_token26] = ACTIONS(1320), + [aux_sym_cmd_identifier_token27] = ACTIONS(1320), + [aux_sym_cmd_identifier_token28] = ACTIONS(1320), + [aux_sym_cmd_identifier_token29] = ACTIONS(1320), + [aux_sym_cmd_identifier_token30] = ACTIONS(1320), + [aux_sym_cmd_identifier_token31] = ACTIONS(1320), + [aux_sym_cmd_identifier_token32] = ACTIONS(1320), + [aux_sym_cmd_identifier_token33] = ACTIONS(1320), + [aux_sym_cmd_identifier_token34] = ACTIONS(1320), + [aux_sym_cmd_identifier_token35] = ACTIONS(1320), + [aux_sym_cmd_identifier_token36] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_null] = ACTIONS(1322), + [aux_sym_cmd_identifier_token38] = ACTIONS(1324), + [aux_sym_cmd_identifier_token39] = ACTIONS(1326), + [aux_sym_cmd_identifier_token40] = ACTIONS(1326), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1332), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -96879,10 +101457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1321), - [aux_sym__val_number_decimal_token2] = ACTIONS(1323), - [aux_sym__val_number_decimal_token3] = ACTIONS(1325), - [aux_sym__val_number_decimal_token4] = ACTIONS(1327), + [aux_sym__val_number_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(1340), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -96893,4529 +101471,6542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [182] = { - [sym__expr_parenthesized_immediate] = STATE(385), - [sym__immediate_decimal] = STATE(286), - [sym_val_variable] = STATE(385), - [sym_comment] = STATE(182), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_alias] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_let_DASHenv] = ACTIONS(1479), - [anon_sym_mut] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [aux_sym_cmd_identifier_token1] = ACTIONS(1479), - [aux_sym_cmd_identifier_token2] = ACTIONS(1479), - [aux_sym_cmd_identifier_token3] = ACTIONS(1479), - [aux_sym_cmd_identifier_token4] = ACTIONS(1479), - [aux_sym_cmd_identifier_token5] = ACTIONS(1479), - [aux_sym_cmd_identifier_token6] = ACTIONS(1479), - [aux_sym_cmd_identifier_token7] = ACTIONS(1479), - [aux_sym_cmd_identifier_token8] = ACTIONS(1479), - [aux_sym_cmd_identifier_token9] = ACTIONS(1479), - [aux_sym_cmd_identifier_token10] = ACTIONS(1479), - [aux_sym_cmd_identifier_token11] = ACTIONS(1479), - [aux_sym_cmd_identifier_token12] = ACTIONS(1479), - [aux_sym_cmd_identifier_token13] = ACTIONS(1479), - [aux_sym_cmd_identifier_token14] = ACTIONS(1479), - [aux_sym_cmd_identifier_token15] = ACTIONS(1479), - [aux_sym_cmd_identifier_token16] = ACTIONS(1479), - [aux_sym_cmd_identifier_token17] = ACTIONS(1479), - [aux_sym_cmd_identifier_token18] = ACTIONS(1479), - [aux_sym_cmd_identifier_token19] = ACTIONS(1479), - [aux_sym_cmd_identifier_token20] = ACTIONS(1479), - [aux_sym_cmd_identifier_token21] = ACTIONS(1479), - [aux_sym_cmd_identifier_token22] = ACTIONS(1479), - [aux_sym_cmd_identifier_token23] = ACTIONS(1479), - [aux_sym_cmd_identifier_token24] = ACTIONS(1479), - [aux_sym_cmd_identifier_token25] = ACTIONS(1479), - [aux_sym_cmd_identifier_token26] = ACTIONS(1479), - [aux_sym_cmd_identifier_token27] = ACTIONS(1479), - [aux_sym_cmd_identifier_token28] = ACTIONS(1479), - [aux_sym_cmd_identifier_token29] = ACTIONS(1479), - [aux_sym_cmd_identifier_token30] = ACTIONS(1479), - [aux_sym_cmd_identifier_token31] = ACTIONS(1479), - [aux_sym_cmd_identifier_token32] = ACTIONS(1479), - [aux_sym_cmd_identifier_token33] = ACTIONS(1479), - [aux_sym_cmd_identifier_token34] = ACTIONS(1479), - [aux_sym_cmd_identifier_token35] = ACTIONS(1479), - [aux_sym_cmd_identifier_token36] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [aux_sym_cmd_identifier_token38] = ACTIONS(1479), - [aux_sym_cmd_identifier_token39] = ACTIONS(1479), - [aux_sym_cmd_identifier_token40] = ACTIONS(1479), - [anon_sym_def] = ACTIONS(1479), - [anon_sym_export_DASHenv] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_error] = ACTIONS(1479), - [anon_sym_list] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_make] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_try] = ACTIONS(1479), - [anon_sym_catch] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_source] = ACTIONS(1479), - [anon_sym_source_DASHenv] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_hide] = ACTIONS(1479), - [anon_sym_hide_DASHenv] = ACTIONS(1479), - [anon_sym_overlay] = ACTIONS(1479), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1485), - [aux_sym__immediate_decimal_token1] = ACTIONS(1487), - [aux_sym__immediate_decimal_token3] = ACTIONS(1487), - [aux_sym__immediate_decimal_token4] = ACTIONS(1489), - [aux_sym__immediate_decimal_token5] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1479), - [aux_sym__val_number_token2] = ACTIONS(1479), - [aux_sym__val_number_token3] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym__str_single_quotes] = ACTIONS(1479), - [sym__str_back_ticks] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), - [sym__entry_separator] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1479), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [211] = { + [sym__expr_parenthesized_immediate] = STATE(386), + [sym__immediate_decimal] = STATE(296), + [sym_val_variable] = STATE(386), + [sym_comment] = STATE(211), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [aux_sym_cmd_identifier_token1] = ACTIONS(1478), + [aux_sym_cmd_identifier_token2] = ACTIONS(1478), + [aux_sym_cmd_identifier_token3] = ACTIONS(1478), + [aux_sym_cmd_identifier_token4] = ACTIONS(1478), + [aux_sym_cmd_identifier_token5] = ACTIONS(1478), + [aux_sym_cmd_identifier_token6] = ACTIONS(1478), + [aux_sym_cmd_identifier_token7] = ACTIONS(1478), + [aux_sym_cmd_identifier_token8] = ACTIONS(1478), + [aux_sym_cmd_identifier_token9] = ACTIONS(1478), + [aux_sym_cmd_identifier_token10] = ACTIONS(1478), + [aux_sym_cmd_identifier_token11] = ACTIONS(1478), + [aux_sym_cmd_identifier_token12] = ACTIONS(1478), + [aux_sym_cmd_identifier_token13] = ACTIONS(1478), + [aux_sym_cmd_identifier_token14] = ACTIONS(1478), + [aux_sym_cmd_identifier_token15] = ACTIONS(1478), + [aux_sym_cmd_identifier_token16] = ACTIONS(1478), + [aux_sym_cmd_identifier_token17] = ACTIONS(1478), + [aux_sym_cmd_identifier_token18] = ACTIONS(1478), + [aux_sym_cmd_identifier_token19] = ACTIONS(1478), + [aux_sym_cmd_identifier_token20] = ACTIONS(1478), + [aux_sym_cmd_identifier_token21] = ACTIONS(1478), + [aux_sym_cmd_identifier_token22] = ACTIONS(1478), + [aux_sym_cmd_identifier_token23] = ACTIONS(1478), + [aux_sym_cmd_identifier_token24] = ACTIONS(1478), + [aux_sym_cmd_identifier_token25] = ACTIONS(1478), + [aux_sym_cmd_identifier_token26] = ACTIONS(1478), + [aux_sym_cmd_identifier_token27] = ACTIONS(1478), + [aux_sym_cmd_identifier_token28] = ACTIONS(1478), + [aux_sym_cmd_identifier_token29] = ACTIONS(1478), + [aux_sym_cmd_identifier_token30] = ACTIONS(1478), + [aux_sym_cmd_identifier_token31] = ACTIONS(1478), + [aux_sym_cmd_identifier_token32] = ACTIONS(1478), + [aux_sym_cmd_identifier_token33] = ACTIONS(1478), + [aux_sym_cmd_identifier_token34] = ACTIONS(1478), + [aux_sym_cmd_identifier_token35] = ACTIONS(1478), + [aux_sym_cmd_identifier_token36] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [anon_sym_null] = ACTIONS(1478), + [aux_sym_cmd_identifier_token38] = ACTIONS(1478), + [aux_sym_cmd_identifier_token39] = ACTIONS(1478), + [aux_sym_cmd_identifier_token40] = ACTIONS(1478), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_list] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_make] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_catch] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1484), + [aux_sym__immediate_decimal_token1] = ACTIONS(1486), + [aux_sym__immediate_decimal_token3] = ACTIONS(1486), + [aux_sym__immediate_decimal_token4] = ACTIONS(1488), + [aux_sym__immediate_decimal_token5] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1478), + [aux_sym__val_number_token2] = ACTIONS(1478), + [aux_sym__val_number_token3] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__str_single_quotes] = ACTIONS(1478), + [sym__str_back_ticks] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1478), + [sym__entry_separator] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1478), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(3), }, - [183] = { - [sym_comment] = STATE(183), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [aux_sym_cmd_identifier_token1] = ACTIONS(1497), - [aux_sym_cmd_identifier_token2] = ACTIONS(1497), - [aux_sym_cmd_identifier_token3] = ACTIONS(1497), - [aux_sym_cmd_identifier_token4] = ACTIONS(1497), - [aux_sym_cmd_identifier_token5] = ACTIONS(1497), - [aux_sym_cmd_identifier_token6] = ACTIONS(1497), - [aux_sym_cmd_identifier_token7] = ACTIONS(1497), - [aux_sym_cmd_identifier_token8] = ACTIONS(1497), - [aux_sym_cmd_identifier_token9] = ACTIONS(1497), - [aux_sym_cmd_identifier_token10] = ACTIONS(1497), - [aux_sym_cmd_identifier_token11] = ACTIONS(1497), - [aux_sym_cmd_identifier_token12] = ACTIONS(1497), - [aux_sym_cmd_identifier_token13] = ACTIONS(1497), - [aux_sym_cmd_identifier_token14] = ACTIONS(1497), - [aux_sym_cmd_identifier_token15] = ACTIONS(1497), - [aux_sym_cmd_identifier_token16] = ACTIONS(1497), - [aux_sym_cmd_identifier_token17] = ACTIONS(1497), - [aux_sym_cmd_identifier_token18] = ACTIONS(1497), - [aux_sym_cmd_identifier_token19] = ACTIONS(1497), - [aux_sym_cmd_identifier_token20] = ACTIONS(1497), - [aux_sym_cmd_identifier_token21] = ACTIONS(1497), - [aux_sym_cmd_identifier_token22] = ACTIONS(1497), - [aux_sym_cmd_identifier_token23] = ACTIONS(1497), - [aux_sym_cmd_identifier_token24] = ACTIONS(1497), - [aux_sym_cmd_identifier_token25] = ACTIONS(1497), - [aux_sym_cmd_identifier_token26] = ACTIONS(1497), - [aux_sym_cmd_identifier_token27] = ACTIONS(1497), - [aux_sym_cmd_identifier_token28] = ACTIONS(1497), - [aux_sym_cmd_identifier_token29] = ACTIONS(1497), - [aux_sym_cmd_identifier_token30] = ACTIONS(1497), - [aux_sym_cmd_identifier_token31] = ACTIONS(1497), - [aux_sym_cmd_identifier_token32] = ACTIONS(1497), - [aux_sym_cmd_identifier_token33] = ACTIONS(1497), - [aux_sym_cmd_identifier_token34] = ACTIONS(1497), - [aux_sym_cmd_identifier_token35] = ACTIONS(1497), - [aux_sym_cmd_identifier_token36] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1497), - [aux_sym_cmd_identifier_token38] = ACTIONS(1497), - [aux_sym_cmd_identifier_token39] = ACTIONS(1497), - [aux_sym_cmd_identifier_token40] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_list] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_make] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1497), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1497), - [aux_sym__val_number_decimal_token3] = ACTIONS(1497), - [aux_sym__val_number_decimal_token4] = ACTIONS(1497), - [aux_sym__val_number_token1] = ACTIONS(1497), - [aux_sym__val_number_token2] = ACTIONS(1497), - [aux_sym__val_number_token3] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1497), - [sym_duration_unit] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1497), - [sym__entry_separator] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [212] = { + [sym__expr_parenthesized_immediate] = STATE(384), + [sym__immediate_decimal] = STATE(385), + [sym_val_variable] = STATE(384), + [sym_comment] = STATE(212), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1496), + [aux_sym_cmd_identifier_token40] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_list] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1498), + [aux_sym__immediate_decimal_token1] = ACTIONS(1500), + [aux_sym__immediate_decimal_token3] = ACTIONS(1500), + [aux_sym__immediate_decimal_token4] = ACTIONS(1502), + [aux_sym__immediate_decimal_token5] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1496), + [aux_sym__val_number_token2] = ACTIONS(1496), + [aux_sym__val_number_token3] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym__str_single_quotes] = ACTIONS(1496), + [sym__str_back_ticks] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), + [sym__entry_separator] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(3), }, - [184] = { - [sym__expr_parenthesized_immediate] = STATE(383), - [sym__immediate_decimal] = STATE(384), - [sym_val_variable] = STATE(383), - [sym_comment] = STATE(184), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [aux_sym_cmd_identifier_token1] = ACTIONS(1505), - [aux_sym_cmd_identifier_token2] = ACTIONS(1505), - [aux_sym_cmd_identifier_token3] = ACTIONS(1505), - [aux_sym_cmd_identifier_token4] = ACTIONS(1505), - [aux_sym_cmd_identifier_token5] = ACTIONS(1505), - [aux_sym_cmd_identifier_token6] = ACTIONS(1505), - [aux_sym_cmd_identifier_token7] = ACTIONS(1505), - [aux_sym_cmd_identifier_token8] = ACTIONS(1505), - [aux_sym_cmd_identifier_token9] = ACTIONS(1505), - [aux_sym_cmd_identifier_token10] = ACTIONS(1505), - [aux_sym_cmd_identifier_token11] = ACTIONS(1505), - [aux_sym_cmd_identifier_token12] = ACTIONS(1505), - [aux_sym_cmd_identifier_token13] = ACTIONS(1505), - [aux_sym_cmd_identifier_token14] = ACTIONS(1505), - [aux_sym_cmd_identifier_token15] = ACTIONS(1505), - [aux_sym_cmd_identifier_token16] = ACTIONS(1505), - [aux_sym_cmd_identifier_token17] = ACTIONS(1505), - [aux_sym_cmd_identifier_token18] = ACTIONS(1505), - [aux_sym_cmd_identifier_token19] = ACTIONS(1505), - [aux_sym_cmd_identifier_token20] = ACTIONS(1505), - [aux_sym_cmd_identifier_token21] = ACTIONS(1505), - [aux_sym_cmd_identifier_token22] = ACTIONS(1505), - [aux_sym_cmd_identifier_token23] = ACTIONS(1505), - [aux_sym_cmd_identifier_token24] = ACTIONS(1505), - [aux_sym_cmd_identifier_token25] = ACTIONS(1505), - [aux_sym_cmd_identifier_token26] = ACTIONS(1505), - [aux_sym_cmd_identifier_token27] = ACTIONS(1505), - [aux_sym_cmd_identifier_token28] = ACTIONS(1505), - [aux_sym_cmd_identifier_token29] = ACTIONS(1505), - [aux_sym_cmd_identifier_token30] = ACTIONS(1505), - [aux_sym_cmd_identifier_token31] = ACTIONS(1505), - [aux_sym_cmd_identifier_token32] = ACTIONS(1505), - [aux_sym_cmd_identifier_token33] = ACTIONS(1505), - [aux_sym_cmd_identifier_token34] = ACTIONS(1505), - [aux_sym_cmd_identifier_token35] = ACTIONS(1505), - [aux_sym_cmd_identifier_token36] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_null] = ACTIONS(1505), - [aux_sym_cmd_identifier_token38] = ACTIONS(1505), - [aux_sym_cmd_identifier_token39] = ACTIONS(1505), - [aux_sym_cmd_identifier_token40] = ACTIONS(1505), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_list] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_make] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_catch] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_new] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1507), - [aux_sym__immediate_decimal_token1] = ACTIONS(1509), - [aux_sym__immediate_decimal_token3] = ACTIONS(1509), - [aux_sym__immediate_decimal_token4] = ACTIONS(1511), - [aux_sym__immediate_decimal_token5] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1505), - [aux_sym__val_number_token2] = ACTIONS(1505), - [aux_sym__val_number_token3] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym__str_single_quotes] = ACTIONS(1505), - [sym__str_back_ticks] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1505), - [sym__entry_separator] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1505), + [213] = { + [sym__expr_parenthesized_immediate] = STATE(599), + [sym__immediate_decimal] = STATE(489), + [sym_val_variable] = STATE(599), + [sym_comment] = STATE(213), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [aux_sym_cmd_identifier_token1] = ACTIONS(1478), + [aux_sym_cmd_identifier_token2] = ACTIONS(1478), + [aux_sym_cmd_identifier_token3] = ACTIONS(1478), + [aux_sym_cmd_identifier_token4] = ACTIONS(1478), + [aux_sym_cmd_identifier_token5] = ACTIONS(1478), + [aux_sym_cmd_identifier_token6] = ACTIONS(1478), + [aux_sym_cmd_identifier_token7] = ACTIONS(1478), + [aux_sym_cmd_identifier_token8] = ACTIONS(1478), + [aux_sym_cmd_identifier_token9] = ACTIONS(1478), + [aux_sym_cmd_identifier_token10] = ACTIONS(1478), + [aux_sym_cmd_identifier_token11] = ACTIONS(1478), + [aux_sym_cmd_identifier_token12] = ACTIONS(1478), + [aux_sym_cmd_identifier_token13] = ACTIONS(1478), + [aux_sym_cmd_identifier_token14] = ACTIONS(1478), + [aux_sym_cmd_identifier_token15] = ACTIONS(1478), + [aux_sym_cmd_identifier_token16] = ACTIONS(1478), + [aux_sym_cmd_identifier_token17] = ACTIONS(1478), + [aux_sym_cmd_identifier_token18] = ACTIONS(1478), + [aux_sym_cmd_identifier_token19] = ACTIONS(1478), + [aux_sym_cmd_identifier_token20] = ACTIONS(1478), + [aux_sym_cmd_identifier_token21] = ACTIONS(1478), + [aux_sym_cmd_identifier_token22] = ACTIONS(1478), + [aux_sym_cmd_identifier_token23] = ACTIONS(1478), + [aux_sym_cmd_identifier_token24] = ACTIONS(1478), + [aux_sym_cmd_identifier_token25] = ACTIONS(1478), + [aux_sym_cmd_identifier_token26] = ACTIONS(1478), + [aux_sym_cmd_identifier_token27] = ACTIONS(1478), + [aux_sym_cmd_identifier_token28] = ACTIONS(1478), + [aux_sym_cmd_identifier_token29] = ACTIONS(1478), + [aux_sym_cmd_identifier_token30] = ACTIONS(1478), + [aux_sym_cmd_identifier_token31] = ACTIONS(1478), + [aux_sym_cmd_identifier_token32] = ACTIONS(1478), + [aux_sym_cmd_identifier_token33] = ACTIONS(1478), + [aux_sym_cmd_identifier_token34] = ACTIONS(1478), + [aux_sym_cmd_identifier_token35] = ACTIONS(1478), + [aux_sym_cmd_identifier_token36] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [anon_sym_null] = ACTIONS(1478), + [aux_sym_cmd_identifier_token38] = ACTIONS(1478), + [aux_sym_cmd_identifier_token39] = ACTIONS(1478), + [aux_sym_cmd_identifier_token40] = ACTIONS(1478), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_list] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_make] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_catch] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1478), + [aux_sym__immediate_decimal_token1] = ACTIONS(1512), + [aux_sym__immediate_decimal_token3] = ACTIONS(1512), + [aux_sym__immediate_decimal_token4] = ACTIONS(1514), + [aux_sym__immediate_decimal_token5] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1478), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1478), + [aux_sym__val_number_token2] = ACTIONS(1478), + [aux_sym__val_number_token3] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym__str_single_quotes] = ACTIONS(1478), + [sym__str_back_ticks] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1478), + [sym__entry_separator] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1478), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(3), }, - [185] = { - [sym_comment] = STATE(185), - [anon_sym_export] = ACTIONS(1517), - [anon_sym_alias] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_let_DASHenv] = ACTIONS(1517), - [anon_sym_mut] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [aux_sym_cmd_identifier_token1] = ACTIONS(1517), - [aux_sym_cmd_identifier_token2] = ACTIONS(1517), - [aux_sym_cmd_identifier_token3] = ACTIONS(1517), - [aux_sym_cmd_identifier_token4] = ACTIONS(1517), - [aux_sym_cmd_identifier_token5] = ACTIONS(1517), - [aux_sym_cmd_identifier_token6] = ACTIONS(1517), - [aux_sym_cmd_identifier_token7] = ACTIONS(1517), - [aux_sym_cmd_identifier_token8] = ACTIONS(1517), - [aux_sym_cmd_identifier_token9] = ACTIONS(1517), - [aux_sym_cmd_identifier_token10] = ACTIONS(1517), - [aux_sym_cmd_identifier_token11] = ACTIONS(1517), - [aux_sym_cmd_identifier_token12] = ACTIONS(1517), - [aux_sym_cmd_identifier_token13] = ACTIONS(1517), - [aux_sym_cmd_identifier_token14] = ACTIONS(1517), - [aux_sym_cmd_identifier_token15] = ACTIONS(1517), - [aux_sym_cmd_identifier_token16] = ACTIONS(1517), - [aux_sym_cmd_identifier_token17] = ACTIONS(1517), - [aux_sym_cmd_identifier_token18] = ACTIONS(1517), - [aux_sym_cmd_identifier_token19] = ACTIONS(1517), - [aux_sym_cmd_identifier_token20] = ACTIONS(1517), - [aux_sym_cmd_identifier_token21] = ACTIONS(1517), - [aux_sym_cmd_identifier_token22] = ACTIONS(1517), - [aux_sym_cmd_identifier_token23] = ACTIONS(1517), - [aux_sym_cmd_identifier_token24] = ACTIONS(1517), - [aux_sym_cmd_identifier_token25] = ACTIONS(1517), - [aux_sym_cmd_identifier_token26] = ACTIONS(1517), - [aux_sym_cmd_identifier_token27] = ACTIONS(1517), - [aux_sym_cmd_identifier_token28] = ACTIONS(1517), - [aux_sym_cmd_identifier_token29] = ACTIONS(1517), - [aux_sym_cmd_identifier_token30] = ACTIONS(1517), - [aux_sym_cmd_identifier_token31] = ACTIONS(1517), - [aux_sym_cmd_identifier_token32] = ACTIONS(1517), - [aux_sym_cmd_identifier_token33] = ACTIONS(1517), - [aux_sym_cmd_identifier_token34] = ACTIONS(1517), - [aux_sym_cmd_identifier_token35] = ACTIONS(1517), - [aux_sym_cmd_identifier_token36] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [aux_sym_cmd_identifier_token38] = ACTIONS(1517), - [aux_sym_cmd_identifier_token39] = ACTIONS(1517), - [aux_sym_cmd_identifier_token40] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1517), - [anon_sym_export_DASHenv] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_module] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_error] = ACTIONS(1517), - [anon_sym_list] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_make] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [anon_sym_catch] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_source] = ACTIONS(1517), - [anon_sym_source_DASHenv] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_hide] = ACTIONS(1517), - [anon_sym_hide_DASHenv] = ACTIONS(1517), - [anon_sym_overlay] = ACTIONS(1517), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1517), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1517), - [aux_sym__val_number_decimal_token4] = ACTIONS(1517), - [aux_sym__val_number_token1] = ACTIONS(1517), - [aux_sym__val_number_token2] = ACTIONS(1517), - [aux_sym__val_number_token3] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1517), - [sym_duration_unit] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym__str_single_quotes] = ACTIONS(1517), - [sym__str_back_ticks] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1517), - [sym__entry_separator] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1517), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), + [214] = { + [sym_comment] = STATE(214), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [anon_sym_null] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_list] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1518), + [sym_duration_unit] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), + [sym__entry_separator] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1518), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), }, - [186] = { - [sym__expr_parenthesized_immediate] = STATE(416), - [sym__immediate_decimal] = STATE(332), - [sym_val_variable] = STATE(416), - [sym_comment] = STATE(186), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_alias] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_let_DASHenv] = ACTIONS(1479), - [anon_sym_mut] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [aux_sym_cmd_identifier_token1] = ACTIONS(1479), - [aux_sym_cmd_identifier_token2] = ACTIONS(1479), - [aux_sym_cmd_identifier_token3] = ACTIONS(1479), - [aux_sym_cmd_identifier_token4] = ACTIONS(1479), - [aux_sym_cmd_identifier_token5] = ACTIONS(1479), - [aux_sym_cmd_identifier_token6] = ACTIONS(1479), - [aux_sym_cmd_identifier_token7] = ACTIONS(1479), - [aux_sym_cmd_identifier_token8] = ACTIONS(1479), - [aux_sym_cmd_identifier_token9] = ACTIONS(1479), - [aux_sym_cmd_identifier_token10] = ACTIONS(1479), - [aux_sym_cmd_identifier_token11] = ACTIONS(1479), - [aux_sym_cmd_identifier_token12] = ACTIONS(1479), - [aux_sym_cmd_identifier_token13] = ACTIONS(1479), - [aux_sym_cmd_identifier_token14] = ACTIONS(1479), - [aux_sym_cmd_identifier_token15] = ACTIONS(1479), - [aux_sym_cmd_identifier_token16] = ACTIONS(1479), - [aux_sym_cmd_identifier_token17] = ACTIONS(1479), - [aux_sym_cmd_identifier_token18] = ACTIONS(1479), - [aux_sym_cmd_identifier_token19] = ACTIONS(1479), - [aux_sym_cmd_identifier_token20] = ACTIONS(1479), - [aux_sym_cmd_identifier_token21] = ACTIONS(1479), - [aux_sym_cmd_identifier_token22] = ACTIONS(1479), - [aux_sym_cmd_identifier_token23] = ACTIONS(1479), - [aux_sym_cmd_identifier_token24] = ACTIONS(1479), - [aux_sym_cmd_identifier_token25] = ACTIONS(1479), - [aux_sym_cmd_identifier_token26] = ACTIONS(1479), - [aux_sym_cmd_identifier_token27] = ACTIONS(1479), - [aux_sym_cmd_identifier_token28] = ACTIONS(1479), - [aux_sym_cmd_identifier_token29] = ACTIONS(1479), - [aux_sym_cmd_identifier_token30] = ACTIONS(1479), - [aux_sym_cmd_identifier_token31] = ACTIONS(1479), - [aux_sym_cmd_identifier_token32] = ACTIONS(1479), - [aux_sym_cmd_identifier_token33] = ACTIONS(1479), - [aux_sym_cmd_identifier_token34] = ACTIONS(1479), - [aux_sym_cmd_identifier_token35] = ACTIONS(1479), - [aux_sym_cmd_identifier_token36] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_null] = ACTIONS(1493), - [aux_sym_cmd_identifier_token38] = ACTIONS(1479), - [aux_sym_cmd_identifier_token39] = ACTIONS(1493), - [aux_sym_cmd_identifier_token40] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1479), - [anon_sym_export_DASHenv] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_error] = ACTIONS(1479), - [anon_sym_list] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_make] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1479), - [anon_sym_catch] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_source] = ACTIONS(1479), - [anon_sym_source_DASHenv] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_hide] = ACTIONS(1479), - [anon_sym_hide_DASHenv] = ACTIONS(1479), - [anon_sym_overlay] = ACTIONS(1479), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1529), - [aux_sym__immediate_decimal_token1] = ACTIONS(1531), - [aux_sym__immediate_decimal_token3] = ACTIONS(1533), - [aux_sym__immediate_decimal_token4] = ACTIONS(1535), - [aux_sym__immediate_decimal_token5] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1493), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1479), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [215] = { + [sym__expr_parenthesized_immediate] = STATE(485), + [sym__immediate_decimal] = STATE(373), + [sym_val_variable] = STATE(485), + [sym_comment] = STATE(215), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [aux_sym_cmd_identifier_token1] = ACTIONS(1478), + [aux_sym_cmd_identifier_token2] = ACTIONS(1478), + [aux_sym_cmd_identifier_token3] = ACTIONS(1478), + [aux_sym_cmd_identifier_token4] = ACTIONS(1478), + [aux_sym_cmd_identifier_token5] = ACTIONS(1478), + [aux_sym_cmd_identifier_token6] = ACTIONS(1478), + [aux_sym_cmd_identifier_token7] = ACTIONS(1478), + [aux_sym_cmd_identifier_token8] = ACTIONS(1478), + [aux_sym_cmd_identifier_token9] = ACTIONS(1478), + [aux_sym_cmd_identifier_token10] = ACTIONS(1478), + [aux_sym_cmd_identifier_token11] = ACTIONS(1478), + [aux_sym_cmd_identifier_token12] = ACTIONS(1478), + [aux_sym_cmd_identifier_token13] = ACTIONS(1478), + [aux_sym_cmd_identifier_token14] = ACTIONS(1478), + [aux_sym_cmd_identifier_token15] = ACTIONS(1478), + [aux_sym_cmd_identifier_token16] = ACTIONS(1478), + [aux_sym_cmd_identifier_token17] = ACTIONS(1478), + [aux_sym_cmd_identifier_token18] = ACTIONS(1478), + [aux_sym_cmd_identifier_token19] = ACTIONS(1478), + [aux_sym_cmd_identifier_token20] = ACTIONS(1478), + [aux_sym_cmd_identifier_token21] = ACTIONS(1478), + [aux_sym_cmd_identifier_token22] = ACTIONS(1478), + [aux_sym_cmd_identifier_token23] = ACTIONS(1478), + [aux_sym_cmd_identifier_token24] = ACTIONS(1478), + [aux_sym_cmd_identifier_token25] = ACTIONS(1478), + [aux_sym_cmd_identifier_token26] = ACTIONS(1478), + [aux_sym_cmd_identifier_token27] = ACTIONS(1478), + [aux_sym_cmd_identifier_token28] = ACTIONS(1478), + [aux_sym_cmd_identifier_token29] = ACTIONS(1478), + [aux_sym_cmd_identifier_token30] = ACTIONS(1478), + [aux_sym_cmd_identifier_token31] = ACTIONS(1478), + [aux_sym_cmd_identifier_token32] = ACTIONS(1478), + [aux_sym_cmd_identifier_token33] = ACTIONS(1478), + [aux_sym_cmd_identifier_token34] = ACTIONS(1478), + [aux_sym_cmd_identifier_token35] = ACTIONS(1478), + [aux_sym_cmd_identifier_token36] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1478), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_list] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_make] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_catch] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(1532), + [aux_sym__immediate_decimal_token3] = ACTIONS(1534), + [aux_sym__immediate_decimal_token4] = ACTIONS(1536), + [aux_sym__immediate_decimal_token5] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1478), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(247), }, - [187] = { - [sym__expr_parenthesized_immediate] = STATE(567), - [sym__immediate_decimal] = STATE(421), - [sym_val_variable] = STATE(567), - [sym_comment] = STATE(187), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_alias] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_let_DASHenv] = ACTIONS(1479), - [anon_sym_mut] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [aux_sym_cmd_identifier_token1] = ACTIONS(1479), - [aux_sym_cmd_identifier_token2] = ACTIONS(1479), - [aux_sym_cmd_identifier_token3] = ACTIONS(1479), - [aux_sym_cmd_identifier_token4] = ACTIONS(1479), - [aux_sym_cmd_identifier_token5] = ACTIONS(1479), - [aux_sym_cmd_identifier_token6] = ACTIONS(1479), - [aux_sym_cmd_identifier_token7] = ACTIONS(1479), - [aux_sym_cmd_identifier_token8] = ACTIONS(1479), - [aux_sym_cmd_identifier_token9] = ACTIONS(1479), - [aux_sym_cmd_identifier_token10] = ACTIONS(1479), - [aux_sym_cmd_identifier_token11] = ACTIONS(1479), - [aux_sym_cmd_identifier_token12] = ACTIONS(1479), - [aux_sym_cmd_identifier_token13] = ACTIONS(1479), - [aux_sym_cmd_identifier_token14] = ACTIONS(1479), - [aux_sym_cmd_identifier_token15] = ACTIONS(1479), - [aux_sym_cmd_identifier_token16] = ACTIONS(1479), - [aux_sym_cmd_identifier_token17] = ACTIONS(1479), - [aux_sym_cmd_identifier_token18] = ACTIONS(1479), - [aux_sym_cmd_identifier_token19] = ACTIONS(1479), - [aux_sym_cmd_identifier_token20] = ACTIONS(1479), - [aux_sym_cmd_identifier_token21] = ACTIONS(1479), - [aux_sym_cmd_identifier_token22] = ACTIONS(1479), - [aux_sym_cmd_identifier_token23] = ACTIONS(1479), - [aux_sym_cmd_identifier_token24] = ACTIONS(1479), - [aux_sym_cmd_identifier_token25] = ACTIONS(1479), - [aux_sym_cmd_identifier_token26] = ACTIONS(1479), - [aux_sym_cmd_identifier_token27] = ACTIONS(1479), - [aux_sym_cmd_identifier_token28] = ACTIONS(1479), - [aux_sym_cmd_identifier_token29] = ACTIONS(1479), - [aux_sym_cmd_identifier_token30] = ACTIONS(1479), - [aux_sym_cmd_identifier_token31] = ACTIONS(1479), - [aux_sym_cmd_identifier_token32] = ACTIONS(1479), - [aux_sym_cmd_identifier_token33] = ACTIONS(1479), - [aux_sym_cmd_identifier_token34] = ACTIONS(1479), - [aux_sym_cmd_identifier_token35] = ACTIONS(1479), - [aux_sym_cmd_identifier_token36] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [aux_sym_cmd_identifier_token38] = ACTIONS(1479), - [aux_sym_cmd_identifier_token39] = ACTIONS(1479), - [aux_sym_cmd_identifier_token40] = ACTIONS(1479), - [anon_sym_def] = ACTIONS(1479), - [anon_sym_export_DASHenv] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1539), - [anon_sym_error] = ACTIONS(1479), - [anon_sym_list] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_make] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_try] = ACTIONS(1479), - [anon_sym_catch] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_source] = ACTIONS(1479), - [anon_sym_source_DASHenv] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_hide] = ACTIONS(1479), - [anon_sym_hide_DASHenv] = ACTIONS(1479), - [anon_sym_overlay] = ACTIONS(1479), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), - [aux_sym__immediate_decimal_token1] = ACTIONS(1543), - [aux_sym__immediate_decimal_token3] = ACTIONS(1543), - [aux_sym__immediate_decimal_token4] = ACTIONS(1545), - [aux_sym__immediate_decimal_token5] = ACTIONS(1547), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1479), - [aux_sym__val_number_token2] = ACTIONS(1479), - [aux_sym__val_number_token3] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym__str_single_quotes] = ACTIONS(1479), - [sym__str_back_ticks] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), - [sym__entry_separator] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1479), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [216] = { + [sym_comment] = STATE(216), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [aux_sym_cmd_identifier_token1] = ACTIONS(1540), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1540), + [aux_sym_cmd_identifier_token9] = ACTIONS(1540), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1540), + [aux_sym_cmd_identifier_token13] = ACTIONS(1540), + [aux_sym_cmd_identifier_token14] = ACTIONS(1540), + [aux_sym_cmd_identifier_token15] = ACTIONS(1540), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1540), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1540), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1540), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1540), + [aux_sym_cmd_identifier_token38] = ACTIONS(1540), + [aux_sym_cmd_identifier_token39] = ACTIONS(1540), + [aux_sym_cmd_identifier_token40] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_list] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_make] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_catch] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_new] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(1544), + [aux_sym__immediate_decimal_token2] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1540), + [sym_duration_unit] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), + [sym__entry_separator] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1540), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(3), }, - [188] = { - [sym__expr_parenthesized_immediate] = STATE(578), - [sym__immediate_decimal] = STATE(423), - [sym_val_variable] = STATE(578), - [sym_comment] = STATE(188), - [anon_sym_export] = ACTIONS(1549), - [anon_sym_alias] = ACTIONS(1549), - [anon_sym_let] = ACTIONS(1549), - [anon_sym_let_DASHenv] = ACTIONS(1549), - [anon_sym_mut] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [aux_sym_cmd_identifier_token1] = ACTIONS(1549), - [aux_sym_cmd_identifier_token2] = ACTIONS(1549), - [aux_sym_cmd_identifier_token3] = ACTIONS(1549), - [aux_sym_cmd_identifier_token4] = ACTIONS(1549), - [aux_sym_cmd_identifier_token5] = ACTIONS(1549), - [aux_sym_cmd_identifier_token6] = ACTIONS(1549), - [aux_sym_cmd_identifier_token7] = ACTIONS(1549), - [aux_sym_cmd_identifier_token8] = ACTIONS(1549), - [aux_sym_cmd_identifier_token9] = ACTIONS(1549), - [aux_sym_cmd_identifier_token10] = ACTIONS(1549), - [aux_sym_cmd_identifier_token11] = ACTIONS(1549), - [aux_sym_cmd_identifier_token12] = ACTIONS(1549), - [aux_sym_cmd_identifier_token13] = ACTIONS(1549), - [aux_sym_cmd_identifier_token14] = ACTIONS(1549), - [aux_sym_cmd_identifier_token15] = ACTIONS(1549), - [aux_sym_cmd_identifier_token16] = ACTIONS(1549), - [aux_sym_cmd_identifier_token17] = ACTIONS(1549), - [aux_sym_cmd_identifier_token18] = ACTIONS(1549), - [aux_sym_cmd_identifier_token19] = ACTIONS(1549), - [aux_sym_cmd_identifier_token20] = ACTIONS(1549), - [aux_sym_cmd_identifier_token21] = ACTIONS(1549), - [aux_sym_cmd_identifier_token22] = ACTIONS(1549), - [aux_sym_cmd_identifier_token23] = ACTIONS(1549), - [aux_sym_cmd_identifier_token24] = ACTIONS(1549), - [aux_sym_cmd_identifier_token25] = ACTIONS(1549), - [aux_sym_cmd_identifier_token26] = ACTIONS(1549), - [aux_sym_cmd_identifier_token27] = ACTIONS(1549), - [aux_sym_cmd_identifier_token28] = ACTIONS(1549), - [aux_sym_cmd_identifier_token29] = ACTIONS(1549), - [aux_sym_cmd_identifier_token30] = ACTIONS(1549), - [aux_sym_cmd_identifier_token31] = ACTIONS(1549), - [aux_sym_cmd_identifier_token32] = ACTIONS(1549), - [aux_sym_cmd_identifier_token33] = ACTIONS(1549), - [aux_sym_cmd_identifier_token34] = ACTIONS(1549), - [aux_sym_cmd_identifier_token35] = ACTIONS(1549), - [aux_sym_cmd_identifier_token36] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [aux_sym_cmd_identifier_token38] = ACTIONS(1549), - [aux_sym_cmd_identifier_token39] = ACTIONS(1549), - [aux_sym_cmd_identifier_token40] = ACTIONS(1549), - [anon_sym_def] = ACTIONS(1549), - [anon_sym_export_DASHenv] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_module] = ACTIONS(1549), - [anon_sym_use] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1539), - [anon_sym_error] = ACTIONS(1549), - [anon_sym_list] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_loop] = ACTIONS(1549), - [anon_sym_make] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_match] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_catch] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_source] = ACTIONS(1549), - [anon_sym_source_DASHenv] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_hide] = ACTIONS(1549), - [anon_sym_hide_DASHenv] = ACTIONS(1549), - [anon_sym_overlay] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [anon_sym_as] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1549), - [aux_sym__immediate_decimal_token1] = ACTIONS(1543), - [aux_sym__immediate_decimal_token3] = ACTIONS(1543), - [aux_sym__immediate_decimal_token4] = ACTIONS(1545), - [aux_sym__immediate_decimal_token5] = ACTIONS(1547), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1549), - [aux_sym__val_number_decimal_token1] = ACTIONS(1549), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_decimal_token4] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1549), - [aux_sym__val_number_token2] = ACTIONS(1549), - [aux_sym__val_number_token3] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym__str_single_quotes] = ACTIONS(1549), - [sym__str_back_ticks] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1549), - [sym__entry_separator] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1549), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), + [217] = { + [sym__expr_parenthesized_immediate] = STATE(609), + [sym__immediate_decimal] = STATE(492), + [sym_val_variable] = STATE(609), + [sym_comment] = STATE(217), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_alias] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_let_DASHenv] = ACTIONS(1548), + [anon_sym_mut] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [aux_sym_cmd_identifier_token1] = ACTIONS(1548), + [aux_sym_cmd_identifier_token2] = ACTIONS(1548), + [aux_sym_cmd_identifier_token3] = ACTIONS(1548), + [aux_sym_cmd_identifier_token4] = ACTIONS(1548), + [aux_sym_cmd_identifier_token5] = ACTIONS(1548), + [aux_sym_cmd_identifier_token6] = ACTIONS(1548), + [aux_sym_cmd_identifier_token7] = ACTIONS(1548), + [aux_sym_cmd_identifier_token8] = ACTIONS(1548), + [aux_sym_cmd_identifier_token9] = ACTIONS(1548), + [aux_sym_cmd_identifier_token10] = ACTIONS(1548), + [aux_sym_cmd_identifier_token11] = ACTIONS(1548), + [aux_sym_cmd_identifier_token12] = ACTIONS(1548), + [aux_sym_cmd_identifier_token13] = ACTIONS(1548), + [aux_sym_cmd_identifier_token14] = ACTIONS(1548), + [aux_sym_cmd_identifier_token15] = ACTIONS(1548), + [aux_sym_cmd_identifier_token16] = ACTIONS(1548), + [aux_sym_cmd_identifier_token17] = ACTIONS(1548), + [aux_sym_cmd_identifier_token18] = ACTIONS(1548), + [aux_sym_cmd_identifier_token19] = ACTIONS(1548), + [aux_sym_cmd_identifier_token20] = ACTIONS(1548), + [aux_sym_cmd_identifier_token21] = ACTIONS(1548), + [aux_sym_cmd_identifier_token22] = ACTIONS(1548), + [aux_sym_cmd_identifier_token23] = ACTIONS(1548), + [aux_sym_cmd_identifier_token24] = ACTIONS(1548), + [aux_sym_cmd_identifier_token25] = ACTIONS(1548), + [aux_sym_cmd_identifier_token26] = ACTIONS(1548), + [aux_sym_cmd_identifier_token27] = ACTIONS(1548), + [aux_sym_cmd_identifier_token28] = ACTIONS(1548), + [aux_sym_cmd_identifier_token29] = ACTIONS(1548), + [aux_sym_cmd_identifier_token30] = ACTIONS(1548), + [aux_sym_cmd_identifier_token31] = ACTIONS(1548), + [aux_sym_cmd_identifier_token32] = ACTIONS(1548), + [aux_sym_cmd_identifier_token33] = ACTIONS(1548), + [aux_sym_cmd_identifier_token34] = ACTIONS(1548), + [aux_sym_cmd_identifier_token35] = ACTIONS(1548), + [aux_sym_cmd_identifier_token36] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1548), + [aux_sym_cmd_identifier_token38] = ACTIONS(1548), + [aux_sym_cmd_identifier_token39] = ACTIONS(1548), + [aux_sym_cmd_identifier_token40] = ACTIONS(1548), + [anon_sym_def] = ACTIONS(1548), + [anon_sym_export_DASHenv] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1548), + [anon_sym_list] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_in] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_make] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_catch] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_source] = ACTIONS(1548), + [anon_sym_source_DASHenv] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_hide] = ACTIONS(1548), + [anon_sym_hide_DASHenv] = ACTIONS(1548), + [anon_sym_overlay] = ACTIONS(1548), + [anon_sym_new] = ACTIONS(1548), + [anon_sym_as] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1548), + [aux_sym__immediate_decimal_token1] = ACTIONS(1512), + [aux_sym__immediate_decimal_token3] = ACTIONS(1512), + [aux_sym__immediate_decimal_token4] = ACTIONS(1514), + [aux_sym__immediate_decimal_token5] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1548), + [aux_sym__val_number_decimal_token1] = ACTIONS(1548), + [aux_sym__val_number_decimal_token2] = ACTIONS(1548), + [aux_sym__val_number_decimal_token3] = ACTIONS(1548), + [aux_sym__val_number_decimal_token4] = ACTIONS(1548), + [aux_sym__val_number_token1] = ACTIONS(1548), + [aux_sym__val_number_token2] = ACTIONS(1548), + [aux_sym__val_number_token3] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym__str_single_quotes] = ACTIONS(1548), + [sym__str_back_ticks] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1548), + [sym__entry_separator] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1548), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), [anon_sym_POUND] = ACTIONS(3), }, - [189] = { - [sym__expr_parenthesized_immediate] = STATE(558), - [sym__immediate_decimal] = STATE(563), - [sym_val_variable] = STATE(558), - [sym_comment] = STATE(189), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [aux_sym_cmd_identifier_token1] = ACTIONS(1505), - [aux_sym_cmd_identifier_token2] = ACTIONS(1505), - [aux_sym_cmd_identifier_token3] = ACTIONS(1505), - [aux_sym_cmd_identifier_token4] = ACTIONS(1505), - [aux_sym_cmd_identifier_token5] = ACTIONS(1505), - [aux_sym_cmd_identifier_token6] = ACTIONS(1505), - [aux_sym_cmd_identifier_token7] = ACTIONS(1505), - [aux_sym_cmd_identifier_token8] = ACTIONS(1505), - [aux_sym_cmd_identifier_token9] = ACTIONS(1505), - [aux_sym_cmd_identifier_token10] = ACTIONS(1505), - [aux_sym_cmd_identifier_token11] = ACTIONS(1505), - [aux_sym_cmd_identifier_token12] = ACTIONS(1505), - [aux_sym_cmd_identifier_token13] = ACTIONS(1505), - [aux_sym_cmd_identifier_token14] = ACTIONS(1505), - [aux_sym_cmd_identifier_token15] = ACTIONS(1505), - [aux_sym_cmd_identifier_token16] = ACTIONS(1505), - [aux_sym_cmd_identifier_token17] = ACTIONS(1505), - [aux_sym_cmd_identifier_token18] = ACTIONS(1505), - [aux_sym_cmd_identifier_token19] = ACTIONS(1505), - [aux_sym_cmd_identifier_token20] = ACTIONS(1505), - [aux_sym_cmd_identifier_token21] = ACTIONS(1505), - [aux_sym_cmd_identifier_token22] = ACTIONS(1505), - [aux_sym_cmd_identifier_token23] = ACTIONS(1505), - [aux_sym_cmd_identifier_token24] = ACTIONS(1505), - [aux_sym_cmd_identifier_token25] = ACTIONS(1505), - [aux_sym_cmd_identifier_token26] = ACTIONS(1505), - [aux_sym_cmd_identifier_token27] = ACTIONS(1505), - [aux_sym_cmd_identifier_token28] = ACTIONS(1505), - [aux_sym_cmd_identifier_token29] = ACTIONS(1505), - [aux_sym_cmd_identifier_token30] = ACTIONS(1505), - [aux_sym_cmd_identifier_token31] = ACTIONS(1505), - [aux_sym_cmd_identifier_token32] = ACTIONS(1505), - [aux_sym_cmd_identifier_token33] = ACTIONS(1505), - [aux_sym_cmd_identifier_token34] = ACTIONS(1505), - [aux_sym_cmd_identifier_token35] = ACTIONS(1505), - [aux_sym_cmd_identifier_token36] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_null] = ACTIONS(1505), - [aux_sym_cmd_identifier_token38] = ACTIONS(1505), - [aux_sym_cmd_identifier_token39] = ACTIONS(1505), - [aux_sym_cmd_identifier_token40] = ACTIONS(1505), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1539), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_list] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_make] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_catch] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_new] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1505), - [aux_sym__immediate_decimal_token1] = ACTIONS(1555), - [aux_sym__immediate_decimal_token3] = ACTIONS(1555), - [aux_sym__immediate_decimal_token4] = ACTIONS(1557), - [aux_sym__immediate_decimal_token5] = ACTIONS(1559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1505), - [aux_sym__val_number_token2] = ACTIONS(1505), - [aux_sym__val_number_token3] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym__str_single_quotes] = ACTIONS(1505), - [sym__str_back_ticks] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1505), - [sym__entry_separator] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1505), + [218] = { + [sym_comment] = STATE(218), + [anon_sym_export] = ACTIONS(1554), + [anon_sym_alias] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_let_DASHenv] = ACTIONS(1554), + [anon_sym_mut] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [aux_sym_cmd_identifier_token1] = ACTIONS(1554), + [aux_sym_cmd_identifier_token2] = ACTIONS(1554), + [aux_sym_cmd_identifier_token3] = ACTIONS(1554), + [aux_sym_cmd_identifier_token4] = ACTIONS(1554), + [aux_sym_cmd_identifier_token5] = ACTIONS(1554), + [aux_sym_cmd_identifier_token6] = ACTIONS(1554), + [aux_sym_cmd_identifier_token7] = ACTIONS(1554), + [aux_sym_cmd_identifier_token8] = ACTIONS(1554), + [aux_sym_cmd_identifier_token9] = ACTIONS(1554), + [aux_sym_cmd_identifier_token10] = ACTIONS(1554), + [aux_sym_cmd_identifier_token11] = ACTIONS(1554), + [aux_sym_cmd_identifier_token12] = ACTIONS(1554), + [aux_sym_cmd_identifier_token13] = ACTIONS(1554), + [aux_sym_cmd_identifier_token14] = ACTIONS(1554), + [aux_sym_cmd_identifier_token15] = ACTIONS(1554), + [aux_sym_cmd_identifier_token16] = ACTIONS(1554), + [aux_sym_cmd_identifier_token17] = ACTIONS(1554), + [aux_sym_cmd_identifier_token18] = ACTIONS(1554), + [aux_sym_cmd_identifier_token19] = ACTIONS(1554), + [aux_sym_cmd_identifier_token20] = ACTIONS(1554), + [aux_sym_cmd_identifier_token21] = ACTIONS(1554), + [aux_sym_cmd_identifier_token22] = ACTIONS(1554), + [aux_sym_cmd_identifier_token23] = ACTIONS(1554), + [aux_sym_cmd_identifier_token24] = ACTIONS(1554), + [aux_sym_cmd_identifier_token25] = ACTIONS(1554), + [aux_sym_cmd_identifier_token26] = ACTIONS(1554), + [aux_sym_cmd_identifier_token27] = ACTIONS(1554), + [aux_sym_cmd_identifier_token28] = ACTIONS(1554), + [aux_sym_cmd_identifier_token29] = ACTIONS(1554), + [aux_sym_cmd_identifier_token30] = ACTIONS(1554), + [aux_sym_cmd_identifier_token31] = ACTIONS(1554), + [aux_sym_cmd_identifier_token32] = ACTIONS(1554), + [aux_sym_cmd_identifier_token33] = ACTIONS(1554), + [aux_sym_cmd_identifier_token34] = ACTIONS(1554), + [aux_sym_cmd_identifier_token35] = ACTIONS(1554), + [aux_sym_cmd_identifier_token36] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [anon_sym_null] = ACTIONS(1554), + [aux_sym_cmd_identifier_token38] = ACTIONS(1554), + [aux_sym_cmd_identifier_token39] = ACTIONS(1554), + [aux_sym_cmd_identifier_token40] = ACTIONS(1554), + [anon_sym_def] = ACTIONS(1554), + [anon_sym_export_DASHenv] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_module] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_error] = ACTIONS(1554), + [anon_sym_list] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_make] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_try] = ACTIONS(1554), + [anon_sym_catch] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_source] = ACTIONS(1554), + [anon_sym_source_DASHenv] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_hide] = ACTIONS(1554), + [anon_sym_hide_DASHenv] = ACTIONS(1554), + [anon_sym_overlay] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1554), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1554), + [aux_sym__val_number_decimal_token3] = ACTIONS(1554), + [aux_sym__val_number_decimal_token4] = ACTIONS(1554), + [aux_sym__val_number_token1] = ACTIONS(1554), + [aux_sym__val_number_token2] = ACTIONS(1554), + [aux_sym__val_number_token3] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1554), + [sym_duration_unit] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym__str_single_quotes] = ACTIONS(1554), + [sym__str_back_ticks] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1554), + [sym__entry_separator] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1554), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(3), }, - [190] = { - [sym__expr_parenthesized_immediate] = STATE(575), - [sym__immediate_decimal] = STATE(576), - [sym_val_variable] = STATE(575), - [sym_comment] = STATE(190), - [anon_sym_export] = ACTIONS(1561), - [anon_sym_alias] = ACTIONS(1561), - [anon_sym_let] = ACTIONS(1561), - [anon_sym_let_DASHenv] = ACTIONS(1561), - [anon_sym_mut] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [aux_sym_cmd_identifier_token1] = ACTIONS(1561), - [aux_sym_cmd_identifier_token2] = ACTIONS(1561), - [aux_sym_cmd_identifier_token3] = ACTIONS(1561), - [aux_sym_cmd_identifier_token4] = ACTIONS(1561), - [aux_sym_cmd_identifier_token5] = ACTIONS(1561), - [aux_sym_cmd_identifier_token6] = ACTIONS(1561), - [aux_sym_cmd_identifier_token7] = ACTIONS(1561), - [aux_sym_cmd_identifier_token8] = ACTIONS(1561), - [aux_sym_cmd_identifier_token9] = ACTIONS(1561), - [aux_sym_cmd_identifier_token10] = ACTIONS(1561), - [aux_sym_cmd_identifier_token11] = ACTIONS(1561), - [aux_sym_cmd_identifier_token12] = ACTIONS(1561), - [aux_sym_cmd_identifier_token13] = ACTIONS(1561), - [aux_sym_cmd_identifier_token14] = ACTIONS(1561), - [aux_sym_cmd_identifier_token15] = ACTIONS(1561), - [aux_sym_cmd_identifier_token16] = ACTIONS(1561), - [aux_sym_cmd_identifier_token17] = ACTIONS(1561), - [aux_sym_cmd_identifier_token18] = ACTIONS(1561), - [aux_sym_cmd_identifier_token19] = ACTIONS(1561), - [aux_sym_cmd_identifier_token20] = ACTIONS(1561), - [aux_sym_cmd_identifier_token21] = ACTIONS(1561), - [aux_sym_cmd_identifier_token22] = ACTIONS(1561), - [aux_sym_cmd_identifier_token23] = ACTIONS(1561), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1561), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1561), - [aux_sym_cmd_identifier_token28] = ACTIONS(1561), - [aux_sym_cmd_identifier_token29] = ACTIONS(1561), - [aux_sym_cmd_identifier_token30] = ACTIONS(1561), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1561), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1561), - [anon_sym_export_DASHenv] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym_module] = ACTIONS(1561), - [anon_sym_use] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1539), - [anon_sym_error] = ACTIONS(1561), - [anon_sym_list] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [anon_sym_loop] = ACTIONS(1561), - [anon_sym_make] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_match] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_catch] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_source] = ACTIONS(1561), - [anon_sym_source_DASHenv] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_hide] = ACTIONS(1561), - [anon_sym_hide_DASHenv] = ACTIONS(1561), - [anon_sym_overlay] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [anon_sym_as] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1561), - [aux_sym__immediate_decimal_token1] = ACTIONS(1555), - [aux_sym__immediate_decimal_token3] = ACTIONS(1555), - [aux_sym__immediate_decimal_token4] = ACTIONS(1557), - [aux_sym__immediate_decimal_token5] = ACTIONS(1559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1561), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1561), - [sym__entry_separator] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1561), + [219] = { + [sym__expr_parenthesized_immediate] = STATE(7334), + [sym_comment] = STATE(219), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [anon_sym_null] = ACTIONS(1560), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1560), + [aux_sym_cmd_identifier_token40] = ACTIONS(1560), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(1564), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1566), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1566), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [sym_filesize_unit] = ACTIONS(1568), + [sym_duration_unit] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), + [sym__entry_separator] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1560), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, - [191] = { - [sym_comment] = STATE(191), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_null] = ACTIONS(1565), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1565), - [aux_sym_cmd_identifier_token40] = ACTIONS(1565), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_list] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1565), - [aux_sym__val_number_token2] = ACTIONS(1565), - [aux_sym__val_number_token3] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1565), - [sym_duration_unit] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym__str_single_quotes] = ACTIONS(1565), - [sym__str_back_ticks] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), - [sym__entry_separator] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1565), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), + [220] = { + [sym__expr_parenthesized_immediate] = STATE(607), + [sym__immediate_decimal] = STATE(608), + [sym_val_variable] = STATE(607), + [sym_comment] = STATE(220), + [anon_sym_export] = ACTIONS(1576), + [anon_sym_alias] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1576), + [anon_sym_let_DASHenv] = ACTIONS(1576), + [anon_sym_mut] = ACTIONS(1576), + [anon_sym_const] = ACTIONS(1576), + [aux_sym_cmd_identifier_token1] = ACTIONS(1576), + [aux_sym_cmd_identifier_token2] = ACTIONS(1576), + [aux_sym_cmd_identifier_token3] = ACTIONS(1576), + [aux_sym_cmd_identifier_token4] = ACTIONS(1576), + [aux_sym_cmd_identifier_token5] = ACTIONS(1576), + [aux_sym_cmd_identifier_token6] = ACTIONS(1576), + [aux_sym_cmd_identifier_token7] = ACTIONS(1576), + [aux_sym_cmd_identifier_token8] = ACTIONS(1576), + [aux_sym_cmd_identifier_token9] = ACTIONS(1576), + [aux_sym_cmd_identifier_token10] = ACTIONS(1576), + [aux_sym_cmd_identifier_token11] = ACTIONS(1576), + [aux_sym_cmd_identifier_token12] = ACTIONS(1576), + [aux_sym_cmd_identifier_token13] = ACTIONS(1576), + [aux_sym_cmd_identifier_token14] = ACTIONS(1576), + [aux_sym_cmd_identifier_token15] = ACTIONS(1576), + [aux_sym_cmd_identifier_token16] = ACTIONS(1576), + [aux_sym_cmd_identifier_token17] = ACTIONS(1576), + [aux_sym_cmd_identifier_token18] = ACTIONS(1576), + [aux_sym_cmd_identifier_token19] = ACTIONS(1576), + [aux_sym_cmd_identifier_token20] = ACTIONS(1576), + [aux_sym_cmd_identifier_token21] = ACTIONS(1576), + [aux_sym_cmd_identifier_token22] = ACTIONS(1576), + [aux_sym_cmd_identifier_token23] = ACTIONS(1576), + [aux_sym_cmd_identifier_token24] = ACTIONS(1576), + [aux_sym_cmd_identifier_token25] = ACTIONS(1576), + [aux_sym_cmd_identifier_token26] = ACTIONS(1576), + [aux_sym_cmd_identifier_token27] = ACTIONS(1576), + [aux_sym_cmd_identifier_token28] = ACTIONS(1576), + [aux_sym_cmd_identifier_token29] = ACTIONS(1576), + [aux_sym_cmd_identifier_token30] = ACTIONS(1576), + [aux_sym_cmd_identifier_token31] = ACTIONS(1576), + [aux_sym_cmd_identifier_token32] = ACTIONS(1576), + [aux_sym_cmd_identifier_token33] = ACTIONS(1576), + [aux_sym_cmd_identifier_token34] = ACTIONS(1576), + [aux_sym_cmd_identifier_token35] = ACTIONS(1576), + [aux_sym_cmd_identifier_token36] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_null] = ACTIONS(1576), + [aux_sym_cmd_identifier_token38] = ACTIONS(1576), + [aux_sym_cmd_identifier_token39] = ACTIONS(1576), + [aux_sym_cmd_identifier_token40] = ACTIONS(1576), + [anon_sym_def] = ACTIONS(1576), + [anon_sym_export_DASHenv] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1576), + [anon_sym_module] = ACTIONS(1576), + [anon_sym_use] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1576), + [anon_sym_list] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_break] = ACTIONS(1576), + [anon_sym_continue] = ACTIONS(1576), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1576), + [anon_sym_make] = ACTIONS(1576), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1576), + [anon_sym_else] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_catch] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_source] = ACTIONS(1576), + [anon_sym_source_DASHenv] = ACTIONS(1576), + [anon_sym_register] = ACTIONS(1576), + [anon_sym_hide] = ACTIONS(1576), + [anon_sym_hide_DASHenv] = ACTIONS(1576), + [anon_sym_overlay] = ACTIONS(1576), + [anon_sym_new] = ACTIONS(1576), + [anon_sym_as] = ACTIONS(1576), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1576), + [aux_sym__immediate_decimal_token1] = ACTIONS(1578), + [aux_sym__immediate_decimal_token3] = ACTIONS(1578), + [aux_sym__immediate_decimal_token4] = ACTIONS(1580), + [aux_sym__immediate_decimal_token5] = ACTIONS(1582), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1576), + [aux_sym__val_number_decimal_token1] = ACTIONS(1576), + [aux_sym__val_number_decimal_token2] = ACTIONS(1576), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1576), + [aux_sym__val_number_token1] = ACTIONS(1576), + [aux_sym__val_number_token2] = ACTIONS(1576), + [aux_sym__val_number_token3] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [sym__str_single_quotes] = ACTIONS(1576), + [sym__str_back_ticks] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1576), + [sym__entry_separator] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1576), [anon_sym_POUND] = ACTIONS(3), }, - [192] = { - [sym_comment] = STATE(192), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [aux_sym_cmd_identifier_token1] = ACTIONS(1497), - [aux_sym_cmd_identifier_token2] = ACTIONS(1497), - [aux_sym_cmd_identifier_token3] = ACTIONS(1497), - [aux_sym_cmd_identifier_token4] = ACTIONS(1497), - [aux_sym_cmd_identifier_token5] = ACTIONS(1497), - [aux_sym_cmd_identifier_token6] = ACTIONS(1497), - [aux_sym_cmd_identifier_token7] = ACTIONS(1497), - [aux_sym_cmd_identifier_token8] = ACTIONS(1497), - [aux_sym_cmd_identifier_token9] = ACTIONS(1497), - [aux_sym_cmd_identifier_token10] = ACTIONS(1497), - [aux_sym_cmd_identifier_token11] = ACTIONS(1497), - [aux_sym_cmd_identifier_token12] = ACTIONS(1497), - [aux_sym_cmd_identifier_token13] = ACTIONS(1497), - [aux_sym_cmd_identifier_token14] = ACTIONS(1497), - [aux_sym_cmd_identifier_token15] = ACTIONS(1497), - [aux_sym_cmd_identifier_token16] = ACTIONS(1497), - [aux_sym_cmd_identifier_token17] = ACTIONS(1497), - [aux_sym_cmd_identifier_token18] = ACTIONS(1497), - [aux_sym_cmd_identifier_token19] = ACTIONS(1497), - [aux_sym_cmd_identifier_token20] = ACTIONS(1497), - [aux_sym_cmd_identifier_token21] = ACTIONS(1497), - [aux_sym_cmd_identifier_token22] = ACTIONS(1497), - [aux_sym_cmd_identifier_token23] = ACTIONS(1497), - [aux_sym_cmd_identifier_token24] = ACTIONS(1497), - [aux_sym_cmd_identifier_token25] = ACTIONS(1497), - [aux_sym_cmd_identifier_token26] = ACTIONS(1497), - [aux_sym_cmd_identifier_token27] = ACTIONS(1497), - [aux_sym_cmd_identifier_token28] = ACTIONS(1497), - [aux_sym_cmd_identifier_token29] = ACTIONS(1497), - [aux_sym_cmd_identifier_token30] = ACTIONS(1497), - [aux_sym_cmd_identifier_token31] = ACTIONS(1497), - [aux_sym_cmd_identifier_token32] = ACTIONS(1497), - [aux_sym_cmd_identifier_token33] = ACTIONS(1497), - [aux_sym_cmd_identifier_token34] = ACTIONS(1497), - [aux_sym_cmd_identifier_token35] = ACTIONS(1497), - [aux_sym_cmd_identifier_token36] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1497), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_list] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_make] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1497), - [sym_duration_unit] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [221] = { + [sym__expr_parenthesized_immediate] = STATE(605), + [sym__immediate_decimal] = STATE(606), + [sym_val_variable] = STATE(605), + [sym_comment] = STATE(221), + [anon_sym_export] = ACTIONS(1586), + [anon_sym_alias] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_let_DASHenv] = ACTIONS(1586), + [anon_sym_mut] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [aux_sym_cmd_identifier_token1] = ACTIONS(1586), + [aux_sym_cmd_identifier_token2] = ACTIONS(1586), + [aux_sym_cmd_identifier_token3] = ACTIONS(1586), + [aux_sym_cmd_identifier_token4] = ACTIONS(1586), + [aux_sym_cmd_identifier_token5] = ACTIONS(1586), + [aux_sym_cmd_identifier_token6] = ACTIONS(1586), + [aux_sym_cmd_identifier_token7] = ACTIONS(1586), + [aux_sym_cmd_identifier_token8] = ACTIONS(1586), + [aux_sym_cmd_identifier_token9] = ACTIONS(1586), + [aux_sym_cmd_identifier_token10] = ACTIONS(1586), + [aux_sym_cmd_identifier_token11] = ACTIONS(1586), + [aux_sym_cmd_identifier_token12] = ACTIONS(1586), + [aux_sym_cmd_identifier_token13] = ACTIONS(1586), + [aux_sym_cmd_identifier_token14] = ACTIONS(1586), + [aux_sym_cmd_identifier_token15] = ACTIONS(1586), + [aux_sym_cmd_identifier_token16] = ACTIONS(1586), + [aux_sym_cmd_identifier_token17] = ACTIONS(1586), + [aux_sym_cmd_identifier_token18] = ACTIONS(1586), + [aux_sym_cmd_identifier_token19] = ACTIONS(1586), + [aux_sym_cmd_identifier_token20] = ACTIONS(1586), + [aux_sym_cmd_identifier_token21] = ACTIONS(1586), + [aux_sym_cmd_identifier_token22] = ACTIONS(1586), + [aux_sym_cmd_identifier_token23] = ACTIONS(1586), + [aux_sym_cmd_identifier_token24] = ACTIONS(1586), + [aux_sym_cmd_identifier_token25] = ACTIONS(1586), + [aux_sym_cmd_identifier_token26] = ACTIONS(1586), + [aux_sym_cmd_identifier_token27] = ACTIONS(1586), + [aux_sym_cmd_identifier_token28] = ACTIONS(1586), + [aux_sym_cmd_identifier_token29] = ACTIONS(1586), + [aux_sym_cmd_identifier_token30] = ACTIONS(1586), + [aux_sym_cmd_identifier_token31] = ACTIONS(1586), + [aux_sym_cmd_identifier_token32] = ACTIONS(1586), + [aux_sym_cmd_identifier_token33] = ACTIONS(1586), + [aux_sym_cmd_identifier_token34] = ACTIONS(1586), + [aux_sym_cmd_identifier_token35] = ACTIONS(1586), + [aux_sym_cmd_identifier_token36] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [anon_sym_null] = ACTIONS(1586), + [aux_sym_cmd_identifier_token38] = ACTIONS(1586), + [aux_sym_cmd_identifier_token39] = ACTIONS(1586), + [aux_sym_cmd_identifier_token40] = ACTIONS(1586), + [anon_sym_def] = ACTIONS(1586), + [anon_sym_export_DASHenv] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_module] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1586), + [anon_sym_list] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_make] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_do] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_else] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_try] = ACTIONS(1586), + [anon_sym_catch] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_source] = ACTIONS(1586), + [anon_sym_source_DASHenv] = ACTIONS(1586), + [anon_sym_register] = ACTIONS(1586), + [anon_sym_hide] = ACTIONS(1586), + [anon_sym_hide_DASHenv] = ACTIONS(1586), + [anon_sym_overlay] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1586), + [anon_sym_as] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(1578), + [aux_sym__immediate_decimal_token3] = ACTIONS(1578), + [aux_sym__immediate_decimal_token4] = ACTIONS(1580), + [aux_sym__immediate_decimal_token5] = ACTIONS(1582), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1586), + [aux_sym__val_number_decimal_token1] = ACTIONS(1586), + [aux_sym__val_number_decimal_token2] = ACTIONS(1586), + [aux_sym__val_number_decimal_token3] = ACTIONS(1586), + [aux_sym__val_number_decimal_token4] = ACTIONS(1586), + [aux_sym__val_number_token1] = ACTIONS(1586), + [aux_sym__val_number_token2] = ACTIONS(1586), + [aux_sym__val_number_token3] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [sym__str_single_quotes] = ACTIONS(1586), + [sym__str_back_ticks] = ACTIONS(1586), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1586), + [sym__entry_separator] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(3), + }, + [222] = { + [sym__expr_parenthesized_immediate] = STATE(634), + [sym__immediate_decimal] = STATE(541), + [sym_val_variable] = STATE(634), + [sym_comment] = STATE(222), + [anon_sym_export] = ACTIONS(1478), + [anon_sym_alias] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_let_DASHenv] = ACTIONS(1478), + [anon_sym_mut] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [aux_sym_cmd_identifier_token1] = ACTIONS(1478), + [aux_sym_cmd_identifier_token2] = ACTIONS(1478), + [aux_sym_cmd_identifier_token3] = ACTIONS(1478), + [aux_sym_cmd_identifier_token4] = ACTIONS(1478), + [aux_sym_cmd_identifier_token5] = ACTIONS(1478), + [aux_sym_cmd_identifier_token6] = ACTIONS(1478), + [aux_sym_cmd_identifier_token7] = ACTIONS(1478), + [aux_sym_cmd_identifier_token8] = ACTIONS(1478), + [aux_sym_cmd_identifier_token9] = ACTIONS(1478), + [aux_sym_cmd_identifier_token10] = ACTIONS(1478), + [aux_sym_cmd_identifier_token11] = ACTIONS(1478), + [aux_sym_cmd_identifier_token12] = ACTIONS(1478), + [aux_sym_cmd_identifier_token13] = ACTIONS(1478), + [aux_sym_cmd_identifier_token14] = ACTIONS(1478), + [aux_sym_cmd_identifier_token15] = ACTIONS(1478), + [aux_sym_cmd_identifier_token16] = ACTIONS(1478), + [aux_sym_cmd_identifier_token17] = ACTIONS(1478), + [aux_sym_cmd_identifier_token18] = ACTIONS(1478), + [aux_sym_cmd_identifier_token19] = ACTIONS(1478), + [aux_sym_cmd_identifier_token20] = ACTIONS(1478), + [aux_sym_cmd_identifier_token21] = ACTIONS(1478), + [aux_sym_cmd_identifier_token22] = ACTIONS(1478), + [aux_sym_cmd_identifier_token23] = ACTIONS(1478), + [aux_sym_cmd_identifier_token24] = ACTIONS(1478), + [aux_sym_cmd_identifier_token25] = ACTIONS(1478), + [aux_sym_cmd_identifier_token26] = ACTIONS(1478), + [aux_sym_cmd_identifier_token27] = ACTIONS(1478), + [aux_sym_cmd_identifier_token28] = ACTIONS(1478), + [aux_sym_cmd_identifier_token29] = ACTIONS(1478), + [aux_sym_cmd_identifier_token30] = ACTIONS(1478), + [aux_sym_cmd_identifier_token31] = ACTIONS(1478), + [aux_sym_cmd_identifier_token32] = ACTIONS(1478), + [aux_sym_cmd_identifier_token33] = ACTIONS(1478), + [aux_sym_cmd_identifier_token34] = ACTIONS(1478), + [aux_sym_cmd_identifier_token35] = ACTIONS(1478), + [aux_sym_cmd_identifier_token36] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1478), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [anon_sym_def] = ACTIONS(1478), + [anon_sym_export_DASHenv] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_error] = ACTIONS(1478), + [anon_sym_list] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_make] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1478), + [anon_sym_catch] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_source] = ACTIONS(1478), + [anon_sym_source_DASHenv] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_hide] = ACTIONS(1478), + [anon_sym_hide_DASHenv] = ACTIONS(1478), + [anon_sym_overlay] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1598), + [aux_sym__immediate_decimal_token5] = ACTIONS(1600), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1478), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(247), }, - [193] = { - [sym_comment] = STATE(193), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [aux_sym_cmd_identifier_token1] = ACTIONS(1497), - [aux_sym_cmd_identifier_token2] = ACTIONS(1497), - [aux_sym_cmd_identifier_token3] = ACTIONS(1497), - [aux_sym_cmd_identifier_token4] = ACTIONS(1497), - [aux_sym_cmd_identifier_token5] = ACTIONS(1497), - [aux_sym_cmd_identifier_token6] = ACTIONS(1497), - [aux_sym_cmd_identifier_token7] = ACTIONS(1497), - [aux_sym_cmd_identifier_token8] = ACTIONS(1497), - [aux_sym_cmd_identifier_token9] = ACTIONS(1497), - [aux_sym_cmd_identifier_token10] = ACTIONS(1497), - [aux_sym_cmd_identifier_token11] = ACTIONS(1497), - [aux_sym_cmd_identifier_token12] = ACTIONS(1497), - [aux_sym_cmd_identifier_token13] = ACTIONS(1497), - [aux_sym_cmd_identifier_token14] = ACTIONS(1497), - [aux_sym_cmd_identifier_token15] = ACTIONS(1497), - [aux_sym_cmd_identifier_token16] = ACTIONS(1497), - [aux_sym_cmd_identifier_token17] = ACTIONS(1497), - [aux_sym_cmd_identifier_token18] = ACTIONS(1497), - [aux_sym_cmd_identifier_token19] = ACTIONS(1497), - [aux_sym_cmd_identifier_token20] = ACTIONS(1497), - [aux_sym_cmd_identifier_token21] = ACTIONS(1497), - [aux_sym_cmd_identifier_token22] = ACTIONS(1497), - [aux_sym_cmd_identifier_token23] = ACTIONS(1497), - [aux_sym_cmd_identifier_token24] = ACTIONS(1497), - [aux_sym_cmd_identifier_token25] = ACTIONS(1497), - [aux_sym_cmd_identifier_token26] = ACTIONS(1497), - [aux_sym_cmd_identifier_token27] = ACTIONS(1497), - [aux_sym_cmd_identifier_token28] = ACTIONS(1497), - [aux_sym_cmd_identifier_token29] = ACTIONS(1497), - [aux_sym_cmd_identifier_token30] = ACTIONS(1497), - [aux_sym_cmd_identifier_token31] = ACTIONS(1497), - [aux_sym_cmd_identifier_token32] = ACTIONS(1497), - [aux_sym_cmd_identifier_token33] = ACTIONS(1497), - [aux_sym_cmd_identifier_token34] = ACTIONS(1497), - [aux_sym_cmd_identifier_token35] = ACTIONS(1497), - [aux_sym_cmd_identifier_token36] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1497), - [aux_sym_cmd_identifier_token38] = ACTIONS(1497), - [aux_sym_cmd_identifier_token39] = ACTIONS(1497), - [aux_sym_cmd_identifier_token40] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_list] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_make] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1497), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1497), - [aux_sym__val_number_decimal_token3] = ACTIONS(1497), - [aux_sym__val_number_decimal_token4] = ACTIONS(1497), - [aux_sym__val_number_token1] = ACTIONS(1497), - [aux_sym__val_number_token2] = ACTIONS(1497), - [aux_sym__val_number_token3] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1497), - [sym_duration_unit] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1497), - [sym__entry_separator] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [223] = { + [sym__expr_parenthesized_immediate] = STATE(644), + [sym__immediate_decimal] = STATE(543), + [sym_val_variable] = STATE(644), + [sym_comment] = STATE(223), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_alias] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_let_DASHenv] = ACTIONS(1548), + [anon_sym_mut] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [aux_sym_cmd_identifier_token1] = ACTIONS(1548), + [aux_sym_cmd_identifier_token2] = ACTIONS(1548), + [aux_sym_cmd_identifier_token3] = ACTIONS(1548), + [aux_sym_cmd_identifier_token4] = ACTIONS(1548), + [aux_sym_cmd_identifier_token5] = ACTIONS(1548), + [aux_sym_cmd_identifier_token6] = ACTIONS(1548), + [aux_sym_cmd_identifier_token7] = ACTIONS(1548), + [aux_sym_cmd_identifier_token8] = ACTIONS(1548), + [aux_sym_cmd_identifier_token9] = ACTIONS(1548), + [aux_sym_cmd_identifier_token10] = ACTIONS(1548), + [aux_sym_cmd_identifier_token11] = ACTIONS(1548), + [aux_sym_cmd_identifier_token12] = ACTIONS(1548), + [aux_sym_cmd_identifier_token13] = ACTIONS(1548), + [aux_sym_cmd_identifier_token14] = ACTIONS(1548), + [aux_sym_cmd_identifier_token15] = ACTIONS(1548), + [aux_sym_cmd_identifier_token16] = ACTIONS(1548), + [aux_sym_cmd_identifier_token17] = ACTIONS(1548), + [aux_sym_cmd_identifier_token18] = ACTIONS(1548), + [aux_sym_cmd_identifier_token19] = ACTIONS(1548), + [aux_sym_cmd_identifier_token20] = ACTIONS(1548), + [aux_sym_cmd_identifier_token21] = ACTIONS(1548), + [aux_sym_cmd_identifier_token22] = ACTIONS(1548), + [aux_sym_cmd_identifier_token23] = ACTIONS(1548), + [aux_sym_cmd_identifier_token24] = ACTIONS(1548), + [aux_sym_cmd_identifier_token25] = ACTIONS(1548), + [aux_sym_cmd_identifier_token26] = ACTIONS(1548), + [aux_sym_cmd_identifier_token27] = ACTIONS(1548), + [aux_sym_cmd_identifier_token28] = ACTIONS(1548), + [aux_sym_cmd_identifier_token29] = ACTIONS(1548), + [aux_sym_cmd_identifier_token30] = ACTIONS(1548), + [aux_sym_cmd_identifier_token31] = ACTIONS(1548), + [aux_sym_cmd_identifier_token32] = ACTIONS(1548), + [aux_sym_cmd_identifier_token33] = ACTIONS(1548), + [aux_sym_cmd_identifier_token34] = ACTIONS(1548), + [aux_sym_cmd_identifier_token35] = ACTIONS(1548), + [aux_sym_cmd_identifier_token36] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [anon_sym_null] = ACTIONS(1550), + [aux_sym_cmd_identifier_token38] = ACTIONS(1548), + [aux_sym_cmd_identifier_token39] = ACTIONS(1550), + [aux_sym_cmd_identifier_token40] = ACTIONS(1550), + [anon_sym_def] = ACTIONS(1548), + [anon_sym_export_DASHenv] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_error] = ACTIONS(1548), + [anon_sym_list] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_in] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_make] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_catch] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_source] = ACTIONS(1548), + [anon_sym_source_DASHenv] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_hide] = ACTIONS(1548), + [anon_sym_hide_DASHenv] = ACTIONS(1548), + [anon_sym_overlay] = ACTIONS(1548), + [anon_sym_new] = ACTIONS(1548), + [anon_sym_as] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1550), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1598), + [aux_sym__immediate_decimal_token5] = ACTIONS(1600), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1550), + [aux_sym__val_number_decimal_token1] = ACTIONS(1548), + [aux_sym__val_number_decimal_token2] = ACTIONS(1548), + [aux_sym__val_number_decimal_token3] = ACTIONS(1548), + [aux_sym__val_number_decimal_token4] = ACTIONS(1548), + [aux_sym__val_number_token1] = ACTIONS(1550), + [aux_sym__val_number_token2] = ACTIONS(1550), + [aux_sym__val_number_token3] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym__str_single_quotes] = ACTIONS(1550), + [sym__str_back_ticks] = ACTIONS(1550), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1548), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(247), + }, + [224] = { + [sym_comment] = STATE(224), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [anon_sym_null] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_list] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1518), + [sym_duration_unit] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), + [sym__entry_separator] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1518), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), }, - [194] = { - [sym__expr_parenthesized_immediate] = STATE(7340), - [sym_comment] = STATE(194), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_list] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1583), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [sym__entry_separator] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [225] = { + [sym__expr_parenthesized_immediate] = STATE(597), + [sym__immediate_decimal] = STATE(598), + [sym_val_variable] = STATE(597), + [sym_comment] = STATE(225), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1496), + [aux_sym_cmd_identifier_token40] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_list] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), + [aux_sym__immediate_decimal_token1] = ACTIONS(1578), + [aux_sym__immediate_decimal_token3] = ACTIONS(1578), + [aux_sym__immediate_decimal_token4] = ACTIONS(1580), + [aux_sym__immediate_decimal_token5] = ACTIONS(1582), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1496), + [aux_sym__val_number_token2] = ACTIONS(1496), + [aux_sym__val_number_token3] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym__str_single_quotes] = ACTIONS(1496), + [sym__str_back_ticks] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), + [sym__entry_separator] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(3), }, - [195] = { - [sym__expr_parenthesized_immediate] = STATE(604), - [sym__immediate_decimal] = STATE(497), - [sym_val_variable] = STATE(604), - [sym_comment] = STATE(195), - [anon_sym_export] = ACTIONS(1549), - [anon_sym_alias] = ACTIONS(1549), - [anon_sym_let] = ACTIONS(1549), - [anon_sym_let_DASHenv] = ACTIONS(1549), - [anon_sym_mut] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [aux_sym_cmd_identifier_token1] = ACTIONS(1549), - [aux_sym_cmd_identifier_token2] = ACTIONS(1549), - [aux_sym_cmd_identifier_token3] = ACTIONS(1549), - [aux_sym_cmd_identifier_token4] = ACTIONS(1549), - [aux_sym_cmd_identifier_token5] = ACTIONS(1549), - [aux_sym_cmd_identifier_token6] = ACTIONS(1549), - [aux_sym_cmd_identifier_token7] = ACTIONS(1549), - [aux_sym_cmd_identifier_token8] = ACTIONS(1549), - [aux_sym_cmd_identifier_token9] = ACTIONS(1549), - [aux_sym_cmd_identifier_token10] = ACTIONS(1549), - [aux_sym_cmd_identifier_token11] = ACTIONS(1549), - [aux_sym_cmd_identifier_token12] = ACTIONS(1549), - [aux_sym_cmd_identifier_token13] = ACTIONS(1549), - [aux_sym_cmd_identifier_token14] = ACTIONS(1549), - [aux_sym_cmd_identifier_token15] = ACTIONS(1549), - [aux_sym_cmd_identifier_token16] = ACTIONS(1549), - [aux_sym_cmd_identifier_token17] = ACTIONS(1549), - [aux_sym_cmd_identifier_token18] = ACTIONS(1549), - [aux_sym_cmd_identifier_token19] = ACTIONS(1549), - [aux_sym_cmd_identifier_token20] = ACTIONS(1549), - [aux_sym_cmd_identifier_token21] = ACTIONS(1549), - [aux_sym_cmd_identifier_token22] = ACTIONS(1549), - [aux_sym_cmd_identifier_token23] = ACTIONS(1549), - [aux_sym_cmd_identifier_token24] = ACTIONS(1549), - [aux_sym_cmd_identifier_token25] = ACTIONS(1549), - [aux_sym_cmd_identifier_token26] = ACTIONS(1549), - [aux_sym_cmd_identifier_token27] = ACTIONS(1549), - [aux_sym_cmd_identifier_token28] = ACTIONS(1549), - [aux_sym_cmd_identifier_token29] = ACTIONS(1549), - [aux_sym_cmd_identifier_token30] = ACTIONS(1549), - [aux_sym_cmd_identifier_token31] = ACTIONS(1549), - [aux_sym_cmd_identifier_token32] = ACTIONS(1549), - [aux_sym_cmd_identifier_token33] = ACTIONS(1549), - [aux_sym_cmd_identifier_token34] = ACTIONS(1549), - [aux_sym_cmd_identifier_token35] = ACTIONS(1549), - [aux_sym_cmd_identifier_token36] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [aux_sym_cmd_identifier_token38] = ACTIONS(1549), - [aux_sym_cmd_identifier_token39] = ACTIONS(1551), - [aux_sym_cmd_identifier_token40] = ACTIONS(1551), - [anon_sym_def] = ACTIONS(1549), - [anon_sym_export_DASHenv] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_module] = ACTIONS(1549), - [anon_sym_use] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1549), - [anon_sym_list] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_loop] = ACTIONS(1549), - [anon_sym_make] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_match] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_try] = ACTIONS(1549), - [anon_sym_catch] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_source] = ACTIONS(1549), - [anon_sym_source_DASHenv] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_hide] = ACTIONS(1549), - [anon_sym_hide_DASHenv] = ACTIONS(1549), - [anon_sym_overlay] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1549), - [anon_sym_as] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1551), - [aux_sym__immediate_decimal_token1] = ACTIONS(1595), - [aux_sym__immediate_decimal_token3] = ACTIONS(1597), - [aux_sym__immediate_decimal_token4] = ACTIONS(1599), - [aux_sym__immediate_decimal_token5] = ACTIONS(1601), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1551), - [aux_sym__val_number_decimal_token1] = ACTIONS(1549), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_decimal_token4] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1551), - [aux_sym__val_number_token2] = ACTIONS(1551), - [aux_sym__val_number_token3] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym__str_single_quotes] = ACTIONS(1551), - [sym__str_back_ticks] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1549), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(247), + [226] = { + [sym__expr_parenthesized_immediate] = STATE(603), + [sym__immediate_decimal] = STATE(604), + [sym_val_variable] = STATE(603), + [sym_comment] = STATE(226), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_alias] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_let_DASHenv] = ACTIONS(1602), + [anon_sym_mut] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [aux_sym_cmd_identifier_token1] = ACTIONS(1602), + [aux_sym_cmd_identifier_token2] = ACTIONS(1602), + [aux_sym_cmd_identifier_token3] = ACTIONS(1602), + [aux_sym_cmd_identifier_token4] = ACTIONS(1602), + [aux_sym_cmd_identifier_token5] = ACTIONS(1602), + [aux_sym_cmd_identifier_token6] = ACTIONS(1602), + [aux_sym_cmd_identifier_token7] = ACTIONS(1602), + [aux_sym_cmd_identifier_token8] = ACTIONS(1602), + [aux_sym_cmd_identifier_token9] = ACTIONS(1602), + [aux_sym_cmd_identifier_token10] = ACTIONS(1602), + [aux_sym_cmd_identifier_token11] = ACTIONS(1602), + [aux_sym_cmd_identifier_token12] = ACTIONS(1602), + [aux_sym_cmd_identifier_token13] = ACTIONS(1602), + [aux_sym_cmd_identifier_token14] = ACTIONS(1602), + [aux_sym_cmd_identifier_token15] = ACTIONS(1602), + [aux_sym_cmd_identifier_token16] = ACTIONS(1602), + [aux_sym_cmd_identifier_token17] = ACTIONS(1602), + [aux_sym_cmd_identifier_token18] = ACTIONS(1602), + [aux_sym_cmd_identifier_token19] = ACTIONS(1602), + [aux_sym_cmd_identifier_token20] = ACTIONS(1602), + [aux_sym_cmd_identifier_token21] = ACTIONS(1602), + [aux_sym_cmd_identifier_token22] = ACTIONS(1602), + [aux_sym_cmd_identifier_token23] = ACTIONS(1602), + [aux_sym_cmd_identifier_token24] = ACTIONS(1602), + [aux_sym_cmd_identifier_token25] = ACTIONS(1602), + [aux_sym_cmd_identifier_token26] = ACTIONS(1602), + [aux_sym_cmd_identifier_token27] = ACTIONS(1602), + [aux_sym_cmd_identifier_token28] = ACTIONS(1602), + [aux_sym_cmd_identifier_token29] = ACTIONS(1602), + [aux_sym_cmd_identifier_token30] = ACTIONS(1602), + [aux_sym_cmd_identifier_token31] = ACTIONS(1602), + [aux_sym_cmd_identifier_token32] = ACTIONS(1602), + [aux_sym_cmd_identifier_token33] = ACTIONS(1602), + [aux_sym_cmd_identifier_token34] = ACTIONS(1602), + [aux_sym_cmd_identifier_token35] = ACTIONS(1602), + [aux_sym_cmd_identifier_token36] = ACTIONS(1602), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), + [anon_sym_null] = ACTIONS(1602), + [aux_sym_cmd_identifier_token38] = ACTIONS(1602), + [aux_sym_cmd_identifier_token39] = ACTIONS(1602), + [aux_sym_cmd_identifier_token40] = ACTIONS(1602), + [anon_sym_def] = ACTIONS(1602), + [anon_sym_export_DASHenv] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1602), + [anon_sym_list] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_make] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_do] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_try] = ACTIONS(1602), + [anon_sym_catch] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_source] = ACTIONS(1602), + [anon_sym_source_DASHenv] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_hide] = ACTIONS(1602), + [anon_sym_hide_DASHenv] = ACTIONS(1602), + [anon_sym_overlay] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1602), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1602), + [aux_sym__immediate_decimal_token1] = ACTIONS(1578), + [aux_sym__immediate_decimal_token3] = ACTIONS(1578), + [aux_sym__immediate_decimal_token4] = ACTIONS(1580), + [aux_sym__immediate_decimal_token5] = ACTIONS(1582), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1602), + [aux_sym__val_number_decimal_token1] = ACTIONS(1602), + [aux_sym__val_number_decimal_token2] = ACTIONS(1602), + [aux_sym__val_number_decimal_token3] = ACTIONS(1602), + [aux_sym__val_number_decimal_token4] = ACTIONS(1602), + [aux_sym__val_number_token1] = ACTIONS(1602), + [aux_sym__val_number_token2] = ACTIONS(1602), + [aux_sym__val_number_token3] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [sym__str_single_quotes] = ACTIONS(1602), + [sym__str_back_ticks] = ACTIONS(1602), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1602), + [sym__entry_separator] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(3), }, - [196] = { - [sym_comment] = STATE(196), - [anon_sym_export] = ACTIONS(1517), - [anon_sym_alias] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_let_DASHenv] = ACTIONS(1517), - [anon_sym_mut] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [aux_sym_cmd_identifier_token1] = ACTIONS(1517), - [aux_sym_cmd_identifier_token2] = ACTIONS(1517), - [aux_sym_cmd_identifier_token3] = ACTIONS(1517), - [aux_sym_cmd_identifier_token4] = ACTIONS(1517), - [aux_sym_cmd_identifier_token5] = ACTIONS(1517), - [aux_sym_cmd_identifier_token6] = ACTIONS(1517), - [aux_sym_cmd_identifier_token7] = ACTIONS(1517), - [aux_sym_cmd_identifier_token8] = ACTIONS(1517), - [aux_sym_cmd_identifier_token9] = ACTIONS(1517), - [aux_sym_cmd_identifier_token10] = ACTIONS(1517), - [aux_sym_cmd_identifier_token11] = ACTIONS(1517), - [aux_sym_cmd_identifier_token12] = ACTIONS(1517), - [aux_sym_cmd_identifier_token13] = ACTIONS(1517), - [aux_sym_cmd_identifier_token14] = ACTIONS(1517), - [aux_sym_cmd_identifier_token15] = ACTIONS(1517), - [aux_sym_cmd_identifier_token16] = ACTIONS(1517), - [aux_sym_cmd_identifier_token17] = ACTIONS(1517), - [aux_sym_cmd_identifier_token18] = ACTIONS(1517), - [aux_sym_cmd_identifier_token19] = ACTIONS(1517), - [aux_sym_cmd_identifier_token20] = ACTIONS(1517), - [aux_sym_cmd_identifier_token21] = ACTIONS(1517), - [aux_sym_cmd_identifier_token22] = ACTIONS(1517), - [aux_sym_cmd_identifier_token23] = ACTIONS(1517), - [aux_sym_cmd_identifier_token24] = ACTIONS(1517), - [aux_sym_cmd_identifier_token25] = ACTIONS(1517), - [aux_sym_cmd_identifier_token26] = ACTIONS(1517), - [aux_sym_cmd_identifier_token27] = ACTIONS(1517), - [aux_sym_cmd_identifier_token28] = ACTIONS(1517), - [aux_sym_cmd_identifier_token29] = ACTIONS(1517), - [aux_sym_cmd_identifier_token30] = ACTIONS(1517), - [aux_sym_cmd_identifier_token31] = ACTIONS(1517), - [aux_sym_cmd_identifier_token32] = ACTIONS(1517), - [aux_sym_cmd_identifier_token33] = ACTIONS(1517), - [aux_sym_cmd_identifier_token34] = ACTIONS(1517), - [aux_sym_cmd_identifier_token35] = ACTIONS(1517), - [aux_sym_cmd_identifier_token36] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1517), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [anon_sym_def] = ACTIONS(1517), - [anon_sym_export_DASHenv] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_module] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1517), - [anon_sym_list] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_make] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1517), - [anon_sym_catch] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_source] = ACTIONS(1517), - [anon_sym_source_DASHenv] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_hide] = ACTIONS(1517), - [anon_sym_hide_DASHenv] = ACTIONS(1517), - [anon_sym_overlay] = ACTIONS(1517), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(1603), - [aux_sym__immediate_decimal_token2] = ACTIONS(1605), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1517), - [sym_duration_unit] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1517), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), + [227] = { + [sym_comment] = STATE(227), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [aux_sym_cmd_identifier_token1] = ACTIONS(1540), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1540), + [aux_sym_cmd_identifier_token9] = ACTIONS(1540), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1540), + [aux_sym_cmd_identifier_token13] = ACTIONS(1540), + [aux_sym_cmd_identifier_token14] = ACTIONS(1540), + [aux_sym_cmd_identifier_token15] = ACTIONS(1540), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1540), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1540), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1540), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1540), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_list] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_make] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_catch] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_new] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(1606), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1540), + [sym_duration_unit] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1540), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, - [197] = { - [sym__expr_parenthesized_immediate] = STATE(414), - [sym__immediate_decimal] = STATE(415), - [sym_val_variable] = STATE(414), - [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [aux_sym_cmd_identifier_token1] = ACTIONS(1505), - [aux_sym_cmd_identifier_token2] = ACTIONS(1505), - [aux_sym_cmd_identifier_token3] = ACTIONS(1505), - [aux_sym_cmd_identifier_token4] = ACTIONS(1505), - [aux_sym_cmd_identifier_token5] = ACTIONS(1505), - [aux_sym_cmd_identifier_token6] = ACTIONS(1505), - [aux_sym_cmd_identifier_token7] = ACTIONS(1505), - [aux_sym_cmd_identifier_token8] = ACTIONS(1505), - [aux_sym_cmd_identifier_token9] = ACTIONS(1505), - [aux_sym_cmd_identifier_token10] = ACTIONS(1505), - [aux_sym_cmd_identifier_token11] = ACTIONS(1505), - [aux_sym_cmd_identifier_token12] = ACTIONS(1505), - [aux_sym_cmd_identifier_token13] = ACTIONS(1505), - [aux_sym_cmd_identifier_token14] = ACTIONS(1505), - [aux_sym_cmd_identifier_token15] = ACTIONS(1505), - [aux_sym_cmd_identifier_token16] = ACTIONS(1505), - [aux_sym_cmd_identifier_token17] = ACTIONS(1505), - [aux_sym_cmd_identifier_token18] = ACTIONS(1505), - [aux_sym_cmd_identifier_token19] = ACTIONS(1505), - [aux_sym_cmd_identifier_token20] = ACTIONS(1505), - [aux_sym_cmd_identifier_token21] = ACTIONS(1505), - [aux_sym_cmd_identifier_token22] = ACTIONS(1505), - [aux_sym_cmd_identifier_token23] = ACTIONS(1505), - [aux_sym_cmd_identifier_token24] = ACTIONS(1505), - [aux_sym_cmd_identifier_token25] = ACTIONS(1505), - [aux_sym_cmd_identifier_token26] = ACTIONS(1505), - [aux_sym_cmd_identifier_token27] = ACTIONS(1505), - [aux_sym_cmd_identifier_token28] = ACTIONS(1505), - [aux_sym_cmd_identifier_token29] = ACTIONS(1505), - [aux_sym_cmd_identifier_token30] = ACTIONS(1505), - [aux_sym_cmd_identifier_token31] = ACTIONS(1505), - [aux_sym_cmd_identifier_token32] = ACTIONS(1505), - [aux_sym_cmd_identifier_token33] = ACTIONS(1505), - [aux_sym_cmd_identifier_token34] = ACTIONS(1505), - [aux_sym_cmd_identifier_token35] = ACTIONS(1505), - [aux_sym_cmd_identifier_token36] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [aux_sym_cmd_identifier_token38] = ACTIONS(1505), - [aux_sym_cmd_identifier_token39] = ACTIONS(1515), - [aux_sym_cmd_identifier_token40] = ACTIONS(1515), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_list] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_make] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_catch] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_new] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1607), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1613), - [aux_sym__immediate_decimal_token5] = ACTIONS(1615), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1505), + [228] = { + [sym_comment] = STATE(228), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_list] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1518), + [sym_duration_unit] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1518), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, - [198] = { - [sym__expr_parenthesized_immediate] = STATE(651), - [sym__immediate_decimal] = STATE(489), - [sym_val_variable] = STATE(651), - [sym_comment] = STATE(198), - [anon_sym_export] = ACTIONS(1479), - [anon_sym_alias] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_let_DASHenv] = ACTIONS(1479), - [anon_sym_mut] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [aux_sym_cmd_identifier_token1] = ACTIONS(1479), - [aux_sym_cmd_identifier_token2] = ACTIONS(1479), - [aux_sym_cmd_identifier_token3] = ACTIONS(1479), - [aux_sym_cmd_identifier_token4] = ACTIONS(1479), - [aux_sym_cmd_identifier_token5] = ACTIONS(1479), - [aux_sym_cmd_identifier_token6] = ACTIONS(1479), - [aux_sym_cmd_identifier_token7] = ACTIONS(1479), - [aux_sym_cmd_identifier_token8] = ACTIONS(1479), - [aux_sym_cmd_identifier_token9] = ACTIONS(1479), - [aux_sym_cmd_identifier_token10] = ACTIONS(1479), - [aux_sym_cmd_identifier_token11] = ACTIONS(1479), - [aux_sym_cmd_identifier_token12] = ACTIONS(1479), - [aux_sym_cmd_identifier_token13] = ACTIONS(1479), - [aux_sym_cmd_identifier_token14] = ACTIONS(1479), - [aux_sym_cmd_identifier_token15] = ACTIONS(1479), - [aux_sym_cmd_identifier_token16] = ACTIONS(1479), - [aux_sym_cmd_identifier_token17] = ACTIONS(1479), - [aux_sym_cmd_identifier_token18] = ACTIONS(1479), - [aux_sym_cmd_identifier_token19] = ACTIONS(1479), - [aux_sym_cmd_identifier_token20] = ACTIONS(1479), - [aux_sym_cmd_identifier_token21] = ACTIONS(1479), - [aux_sym_cmd_identifier_token22] = ACTIONS(1479), - [aux_sym_cmd_identifier_token23] = ACTIONS(1479), - [aux_sym_cmd_identifier_token24] = ACTIONS(1479), - [aux_sym_cmd_identifier_token25] = ACTIONS(1479), - [aux_sym_cmd_identifier_token26] = ACTIONS(1479), - [aux_sym_cmd_identifier_token27] = ACTIONS(1479), - [aux_sym_cmd_identifier_token28] = ACTIONS(1479), - [aux_sym_cmd_identifier_token29] = ACTIONS(1479), - [aux_sym_cmd_identifier_token30] = ACTIONS(1479), - [aux_sym_cmd_identifier_token31] = ACTIONS(1479), - [aux_sym_cmd_identifier_token32] = ACTIONS(1479), - [aux_sym_cmd_identifier_token33] = ACTIONS(1479), - [aux_sym_cmd_identifier_token34] = ACTIONS(1479), - [aux_sym_cmd_identifier_token35] = ACTIONS(1479), - [aux_sym_cmd_identifier_token36] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_null] = ACTIONS(1493), - [aux_sym_cmd_identifier_token38] = ACTIONS(1479), - [aux_sym_cmd_identifier_token39] = ACTIONS(1493), - [aux_sym_cmd_identifier_token40] = ACTIONS(1493), - [anon_sym_def] = ACTIONS(1479), - [anon_sym_export_DASHenv] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_module] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1479), - [anon_sym_list] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_make] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1479), - [anon_sym_catch] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_source] = ACTIONS(1479), - [anon_sym_source_DASHenv] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_hide] = ACTIONS(1479), - [anon_sym_hide_DASHenv] = ACTIONS(1479), - [anon_sym_overlay] = ACTIONS(1479), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1493), - [aux_sym__immediate_decimal_token1] = ACTIONS(1595), - [aux_sym__immediate_decimal_token3] = ACTIONS(1597), - [aux_sym__immediate_decimal_token4] = ACTIONS(1599), - [aux_sym__immediate_decimal_token5] = ACTIONS(1601), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1493), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1479), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [229] = { + [sym__expr_parenthesized_immediate] = STATE(483), + [sym__immediate_decimal] = STATE(484), + [sym_val_variable] = STATE(483), + [sym_comment] = STATE(229), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_list] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1614), + [aux_sym__immediate_decimal_token1] = ACTIONS(1616), + [aux_sym__immediate_decimal_token3] = ACTIONS(1618), + [aux_sym__immediate_decimal_token4] = ACTIONS(1620), + [aux_sym__immediate_decimal_token5] = ACTIONS(1622), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(247), }, - [199] = { - [sym__expr_parenthesized_immediate] = STATE(571), - [sym__immediate_decimal] = STATE(572), - [sym_val_variable] = STATE(571), - [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(1617), - [anon_sym_alias] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_let_DASHenv] = ACTIONS(1617), - [anon_sym_mut] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [aux_sym_cmd_identifier_token1] = ACTIONS(1617), - [aux_sym_cmd_identifier_token2] = ACTIONS(1617), - [aux_sym_cmd_identifier_token3] = ACTIONS(1617), - [aux_sym_cmd_identifier_token4] = ACTIONS(1617), - [aux_sym_cmd_identifier_token5] = ACTIONS(1617), - [aux_sym_cmd_identifier_token6] = ACTIONS(1617), - [aux_sym_cmd_identifier_token7] = ACTIONS(1617), - [aux_sym_cmd_identifier_token8] = ACTIONS(1617), - [aux_sym_cmd_identifier_token9] = ACTIONS(1617), - [aux_sym_cmd_identifier_token10] = ACTIONS(1617), - [aux_sym_cmd_identifier_token11] = ACTIONS(1617), - [aux_sym_cmd_identifier_token12] = ACTIONS(1617), - [aux_sym_cmd_identifier_token13] = ACTIONS(1617), - [aux_sym_cmd_identifier_token14] = ACTIONS(1617), - [aux_sym_cmd_identifier_token15] = ACTIONS(1617), - [aux_sym_cmd_identifier_token16] = ACTIONS(1617), - [aux_sym_cmd_identifier_token17] = ACTIONS(1617), - [aux_sym_cmd_identifier_token18] = ACTIONS(1617), - [aux_sym_cmd_identifier_token19] = ACTIONS(1617), - [aux_sym_cmd_identifier_token20] = ACTIONS(1617), - [aux_sym_cmd_identifier_token21] = ACTIONS(1617), - [aux_sym_cmd_identifier_token22] = ACTIONS(1617), - [aux_sym_cmd_identifier_token23] = ACTIONS(1617), - [aux_sym_cmd_identifier_token24] = ACTIONS(1617), - [aux_sym_cmd_identifier_token25] = ACTIONS(1617), - [aux_sym_cmd_identifier_token26] = ACTIONS(1617), - [aux_sym_cmd_identifier_token27] = ACTIONS(1617), - [aux_sym_cmd_identifier_token28] = ACTIONS(1617), - [aux_sym_cmd_identifier_token29] = ACTIONS(1617), - [aux_sym_cmd_identifier_token30] = ACTIONS(1617), - [aux_sym_cmd_identifier_token31] = ACTIONS(1617), - [aux_sym_cmd_identifier_token32] = ACTIONS(1617), - [aux_sym_cmd_identifier_token33] = ACTIONS(1617), - [aux_sym_cmd_identifier_token34] = ACTIONS(1617), - [aux_sym_cmd_identifier_token35] = ACTIONS(1617), - [aux_sym_cmd_identifier_token36] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [aux_sym_cmd_identifier_token38] = ACTIONS(1617), - [aux_sym_cmd_identifier_token39] = ACTIONS(1617), - [aux_sym_cmd_identifier_token40] = ACTIONS(1617), - [anon_sym_def] = ACTIONS(1617), - [anon_sym_export_DASHenv] = ACTIONS(1617), - [anon_sym_extern] = ACTIONS(1617), - [anon_sym_module] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1539), - [anon_sym_error] = ACTIONS(1617), - [anon_sym_list] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_make] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_else] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(1617), - [anon_sym_catch] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_source] = ACTIONS(1617), - [anon_sym_source_DASHenv] = ACTIONS(1617), - [anon_sym_register] = ACTIONS(1617), - [anon_sym_hide] = ACTIONS(1617), - [anon_sym_hide_DASHenv] = ACTIONS(1617), - [anon_sym_overlay] = ACTIONS(1617), - [anon_sym_new] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1617), - [aux_sym__immediate_decimal_token1] = ACTIONS(1555), - [aux_sym__immediate_decimal_token3] = ACTIONS(1555), - [aux_sym__immediate_decimal_token4] = ACTIONS(1557), - [aux_sym__immediate_decimal_token5] = ACTIONS(1559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1617), - [aux_sym__val_number_decimal_token1] = ACTIONS(1617), - [aux_sym__val_number_decimal_token2] = ACTIONS(1617), - [aux_sym__val_number_decimal_token3] = ACTIONS(1617), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(1617), - [aux_sym__val_number_token2] = ACTIONS(1617), - [aux_sym__val_number_token3] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym__str_single_quotes] = ACTIONS(1617), - [sym__str_back_ticks] = ACTIONS(1617), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1617), - [sym__entry_separator] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_POUND] = ACTIONS(3), - }, - [200] = { - [sym__expr_parenthesized_immediate] = STATE(573), - [sym__immediate_decimal] = STATE(574), - [sym_val_variable] = STATE(573), - [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(1621), - [anon_sym_alias] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_let_DASHenv] = ACTIONS(1621), - [anon_sym_mut] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [aux_sym_cmd_identifier_token1] = ACTIONS(1621), - [aux_sym_cmd_identifier_token2] = ACTIONS(1621), - [aux_sym_cmd_identifier_token3] = ACTIONS(1621), - [aux_sym_cmd_identifier_token4] = ACTIONS(1621), - [aux_sym_cmd_identifier_token5] = ACTIONS(1621), - [aux_sym_cmd_identifier_token6] = ACTIONS(1621), - [aux_sym_cmd_identifier_token7] = ACTIONS(1621), - [aux_sym_cmd_identifier_token8] = ACTIONS(1621), - [aux_sym_cmd_identifier_token9] = ACTIONS(1621), - [aux_sym_cmd_identifier_token10] = ACTIONS(1621), - [aux_sym_cmd_identifier_token11] = ACTIONS(1621), - [aux_sym_cmd_identifier_token12] = ACTIONS(1621), - [aux_sym_cmd_identifier_token13] = ACTIONS(1621), - [aux_sym_cmd_identifier_token14] = ACTIONS(1621), - [aux_sym_cmd_identifier_token15] = ACTIONS(1621), - [aux_sym_cmd_identifier_token16] = ACTIONS(1621), - [aux_sym_cmd_identifier_token17] = ACTIONS(1621), - [aux_sym_cmd_identifier_token18] = ACTIONS(1621), - [aux_sym_cmd_identifier_token19] = ACTIONS(1621), - [aux_sym_cmd_identifier_token20] = ACTIONS(1621), - [aux_sym_cmd_identifier_token21] = ACTIONS(1621), - [aux_sym_cmd_identifier_token22] = ACTIONS(1621), - [aux_sym_cmd_identifier_token23] = ACTIONS(1621), - [aux_sym_cmd_identifier_token24] = ACTIONS(1621), - [aux_sym_cmd_identifier_token25] = ACTIONS(1621), - [aux_sym_cmd_identifier_token26] = ACTIONS(1621), - [aux_sym_cmd_identifier_token27] = ACTIONS(1621), - [aux_sym_cmd_identifier_token28] = ACTIONS(1621), - [aux_sym_cmd_identifier_token29] = ACTIONS(1621), - [aux_sym_cmd_identifier_token30] = ACTIONS(1621), - [aux_sym_cmd_identifier_token31] = ACTIONS(1621), - [aux_sym_cmd_identifier_token32] = ACTIONS(1621), - [aux_sym_cmd_identifier_token33] = ACTIONS(1621), - [aux_sym_cmd_identifier_token34] = ACTIONS(1621), - [aux_sym_cmd_identifier_token35] = ACTIONS(1621), - [aux_sym_cmd_identifier_token36] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [aux_sym_cmd_identifier_token38] = ACTIONS(1621), - [aux_sym_cmd_identifier_token39] = ACTIONS(1621), - [aux_sym_cmd_identifier_token40] = ACTIONS(1621), - [anon_sym_def] = ACTIONS(1621), - [anon_sym_export_DASHenv] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_module] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1539), - [anon_sym_error] = ACTIONS(1621), - [anon_sym_list] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_in] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_make] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_source] = ACTIONS(1621), - [anon_sym_source_DASHenv] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_hide_DASHenv] = ACTIONS(1621), - [anon_sym_overlay] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [anon_sym_as] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1621), - [aux_sym__immediate_decimal_token1] = ACTIONS(1555), - [aux_sym__immediate_decimal_token3] = ACTIONS(1555), - [aux_sym__immediate_decimal_token4] = ACTIONS(1557), - [aux_sym__immediate_decimal_token5] = ACTIONS(1559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1621), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1621), - [aux_sym__val_number_decimal_token3] = ACTIONS(1621), - [aux_sym__val_number_decimal_token4] = ACTIONS(1621), - [aux_sym__val_number_token1] = ACTIONS(1621), - [aux_sym__val_number_token2] = ACTIONS(1621), - [aux_sym__val_number_token3] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym__str_single_quotes] = ACTIONS(1621), - [sym__str_back_ticks] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1621), - [sym__entry_separator] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), - }, - [201] = { - [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [aux_sym_cmd_identifier_token1] = ACTIONS(1497), - [aux_sym_cmd_identifier_token2] = ACTIONS(1497), - [aux_sym_cmd_identifier_token3] = ACTIONS(1497), - [aux_sym_cmd_identifier_token4] = ACTIONS(1497), - [aux_sym_cmd_identifier_token5] = ACTIONS(1497), - [aux_sym_cmd_identifier_token6] = ACTIONS(1497), - [aux_sym_cmd_identifier_token7] = ACTIONS(1497), - [aux_sym_cmd_identifier_token8] = ACTIONS(1497), - [aux_sym_cmd_identifier_token9] = ACTIONS(1497), - [aux_sym_cmd_identifier_token10] = ACTIONS(1497), - [aux_sym_cmd_identifier_token11] = ACTIONS(1497), - [aux_sym_cmd_identifier_token12] = ACTIONS(1497), - [aux_sym_cmd_identifier_token13] = ACTIONS(1497), - [aux_sym_cmd_identifier_token14] = ACTIONS(1497), - [aux_sym_cmd_identifier_token15] = ACTIONS(1497), - [aux_sym_cmd_identifier_token16] = ACTIONS(1497), - [aux_sym_cmd_identifier_token17] = ACTIONS(1497), - [aux_sym_cmd_identifier_token18] = ACTIONS(1497), - [aux_sym_cmd_identifier_token19] = ACTIONS(1497), - [aux_sym_cmd_identifier_token20] = ACTIONS(1497), - [aux_sym_cmd_identifier_token21] = ACTIONS(1497), - [aux_sym_cmd_identifier_token22] = ACTIONS(1497), - [aux_sym_cmd_identifier_token23] = ACTIONS(1497), - [aux_sym_cmd_identifier_token24] = ACTIONS(1497), - [aux_sym_cmd_identifier_token25] = ACTIONS(1497), - [aux_sym_cmd_identifier_token26] = ACTIONS(1497), - [aux_sym_cmd_identifier_token27] = ACTIONS(1497), - [aux_sym_cmd_identifier_token28] = ACTIONS(1497), - [aux_sym_cmd_identifier_token29] = ACTIONS(1497), - [aux_sym_cmd_identifier_token30] = ACTIONS(1497), - [aux_sym_cmd_identifier_token31] = ACTIONS(1497), - [aux_sym_cmd_identifier_token32] = ACTIONS(1497), - [aux_sym_cmd_identifier_token33] = ACTIONS(1497), - [aux_sym_cmd_identifier_token34] = ACTIONS(1497), - [aux_sym_cmd_identifier_token35] = ACTIONS(1497), - [aux_sym_cmd_identifier_token36] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1497), - [aux_sym_cmd_identifier_token38] = ACTIONS(1497), - [aux_sym_cmd_identifier_token39] = ACTIONS(1497), - [aux_sym_cmd_identifier_token40] = ACTIONS(1497), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_list] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_make] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1497), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1497), - [aux_sym__val_number_decimal_token3] = ACTIONS(1497), - [aux_sym__val_number_decimal_token4] = ACTIONS(1497), - [aux_sym__val_number_token1] = ACTIONS(1497), - [aux_sym__val_number_token2] = ACTIONS(1497), - [aux_sym__val_number_token3] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1497), - [sym_duration_unit] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym__str_single_quotes] = ACTIONS(1497), - [sym__str_back_ticks] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1497), - [sym__entry_separator] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [230] = { + [sym_comment] = STATE(230), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [anon_sym_null] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_list] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1518), + [sym_duration_unit] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), + [sym__entry_separator] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1518), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(3), }, - [202] = { - [sym_cell_path] = STATE(409), - [sym_path] = STATE(340), - [sym_comment] = STATE(202), - [aux_sym_cell_path_repeat1] = STATE(225), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_alias] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_let_DASHenv] = ACTIONS(1625), - [anon_sym_mut] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [aux_sym_cmd_identifier_token1] = ACTIONS(1625), - [aux_sym_cmd_identifier_token2] = ACTIONS(1625), - [aux_sym_cmd_identifier_token3] = ACTIONS(1625), - [aux_sym_cmd_identifier_token4] = ACTIONS(1625), - [aux_sym_cmd_identifier_token5] = ACTIONS(1625), - [aux_sym_cmd_identifier_token6] = ACTIONS(1625), - [aux_sym_cmd_identifier_token7] = ACTIONS(1625), - [aux_sym_cmd_identifier_token8] = ACTIONS(1625), - [aux_sym_cmd_identifier_token9] = ACTIONS(1625), - [aux_sym_cmd_identifier_token10] = ACTIONS(1625), - [aux_sym_cmd_identifier_token11] = ACTIONS(1625), - [aux_sym_cmd_identifier_token12] = ACTIONS(1625), - [aux_sym_cmd_identifier_token13] = ACTIONS(1625), - [aux_sym_cmd_identifier_token14] = ACTIONS(1625), - [aux_sym_cmd_identifier_token15] = ACTIONS(1625), - [aux_sym_cmd_identifier_token16] = ACTIONS(1625), - [aux_sym_cmd_identifier_token17] = ACTIONS(1625), - [aux_sym_cmd_identifier_token18] = ACTIONS(1625), - [aux_sym_cmd_identifier_token19] = ACTIONS(1625), - [aux_sym_cmd_identifier_token20] = ACTIONS(1625), - [aux_sym_cmd_identifier_token21] = ACTIONS(1625), - [aux_sym_cmd_identifier_token22] = ACTIONS(1625), - [aux_sym_cmd_identifier_token23] = ACTIONS(1625), - [aux_sym_cmd_identifier_token24] = ACTIONS(1625), - [aux_sym_cmd_identifier_token25] = ACTIONS(1625), - [aux_sym_cmd_identifier_token26] = ACTIONS(1625), - [aux_sym_cmd_identifier_token27] = ACTIONS(1625), - [aux_sym_cmd_identifier_token28] = ACTIONS(1625), - [aux_sym_cmd_identifier_token29] = ACTIONS(1625), - [aux_sym_cmd_identifier_token30] = ACTIONS(1625), - [aux_sym_cmd_identifier_token31] = ACTIONS(1625), - [aux_sym_cmd_identifier_token32] = ACTIONS(1625), - [aux_sym_cmd_identifier_token33] = ACTIONS(1625), - [aux_sym_cmd_identifier_token34] = ACTIONS(1625), - [aux_sym_cmd_identifier_token35] = ACTIONS(1625), - [aux_sym_cmd_identifier_token36] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [aux_sym_cmd_identifier_token38] = ACTIONS(1625), - [aux_sym_cmd_identifier_token39] = ACTIONS(1625), - [aux_sym_cmd_identifier_token40] = ACTIONS(1625), - [anon_sym_def] = ACTIONS(1625), - [anon_sym_export_DASHenv] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_error] = ACTIONS(1625), - [anon_sym_list] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_in] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_make] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_source] = ACTIONS(1625), - [anon_sym_source_DASHenv] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_hide] = ACTIONS(1625), - [anon_sym_hide_DASHenv] = ACTIONS(1625), - [anon_sym_overlay] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_as] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1625), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(1627), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1625), - [aux_sym__val_number_decimal_token3] = ACTIONS(1625), - [aux_sym__val_number_decimal_token4] = ACTIONS(1625), - [aux_sym__val_number_token1] = ACTIONS(1625), - [aux_sym__val_number_token2] = ACTIONS(1625), - [aux_sym__val_number_token3] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [sym__str_single_quotes] = ACTIONS(1625), - [sym__str_back_ticks] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_POUND] = ACTIONS(3), + [231] = { + [sym__expr_parenthesized_immediate] = STATE(642), + [sym__immediate_decimal] = STATE(643), + [sym_val_variable] = STATE(642), + [sym_comment] = STATE(231), + [anon_sym_export] = ACTIONS(1576), + [anon_sym_alias] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1576), + [anon_sym_let_DASHenv] = ACTIONS(1576), + [anon_sym_mut] = ACTIONS(1576), + [anon_sym_const] = ACTIONS(1576), + [aux_sym_cmd_identifier_token1] = ACTIONS(1576), + [aux_sym_cmd_identifier_token2] = ACTIONS(1576), + [aux_sym_cmd_identifier_token3] = ACTIONS(1576), + [aux_sym_cmd_identifier_token4] = ACTIONS(1576), + [aux_sym_cmd_identifier_token5] = ACTIONS(1576), + [aux_sym_cmd_identifier_token6] = ACTIONS(1576), + [aux_sym_cmd_identifier_token7] = ACTIONS(1576), + [aux_sym_cmd_identifier_token8] = ACTIONS(1576), + [aux_sym_cmd_identifier_token9] = ACTIONS(1576), + [aux_sym_cmd_identifier_token10] = ACTIONS(1576), + [aux_sym_cmd_identifier_token11] = ACTIONS(1576), + [aux_sym_cmd_identifier_token12] = ACTIONS(1576), + [aux_sym_cmd_identifier_token13] = ACTIONS(1576), + [aux_sym_cmd_identifier_token14] = ACTIONS(1576), + [aux_sym_cmd_identifier_token15] = ACTIONS(1576), + [aux_sym_cmd_identifier_token16] = ACTIONS(1576), + [aux_sym_cmd_identifier_token17] = ACTIONS(1576), + [aux_sym_cmd_identifier_token18] = ACTIONS(1576), + [aux_sym_cmd_identifier_token19] = ACTIONS(1576), + [aux_sym_cmd_identifier_token20] = ACTIONS(1576), + [aux_sym_cmd_identifier_token21] = ACTIONS(1576), + [aux_sym_cmd_identifier_token22] = ACTIONS(1576), + [aux_sym_cmd_identifier_token23] = ACTIONS(1576), + [aux_sym_cmd_identifier_token24] = ACTIONS(1576), + [aux_sym_cmd_identifier_token25] = ACTIONS(1576), + [aux_sym_cmd_identifier_token26] = ACTIONS(1576), + [aux_sym_cmd_identifier_token27] = ACTIONS(1576), + [aux_sym_cmd_identifier_token28] = ACTIONS(1576), + [aux_sym_cmd_identifier_token29] = ACTIONS(1576), + [aux_sym_cmd_identifier_token30] = ACTIONS(1576), + [aux_sym_cmd_identifier_token31] = ACTIONS(1576), + [aux_sym_cmd_identifier_token32] = ACTIONS(1576), + [aux_sym_cmd_identifier_token33] = ACTIONS(1576), + [aux_sym_cmd_identifier_token34] = ACTIONS(1576), + [aux_sym_cmd_identifier_token35] = ACTIONS(1576), + [aux_sym_cmd_identifier_token36] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_null] = ACTIONS(1584), + [aux_sym_cmd_identifier_token38] = ACTIONS(1576), + [aux_sym_cmd_identifier_token39] = ACTIONS(1584), + [aux_sym_cmd_identifier_token40] = ACTIONS(1584), + [anon_sym_def] = ACTIONS(1576), + [anon_sym_export_DASHenv] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1576), + [anon_sym_module] = ACTIONS(1576), + [anon_sym_use] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_error] = ACTIONS(1576), + [anon_sym_list] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_break] = ACTIONS(1576), + [anon_sym_continue] = ACTIONS(1576), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_in] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1576), + [anon_sym_make] = ACTIONS(1576), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1576), + [anon_sym_else] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_catch] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_source] = ACTIONS(1576), + [anon_sym_source_DASHenv] = ACTIONS(1576), + [anon_sym_register] = ACTIONS(1576), + [anon_sym_hide] = ACTIONS(1576), + [anon_sym_hide_DASHenv] = ACTIONS(1576), + [anon_sym_overlay] = ACTIONS(1576), + [anon_sym_new] = ACTIONS(1576), + [anon_sym_as] = ACTIONS(1576), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1624), + [aux_sym__immediate_decimal_token3] = ACTIONS(1626), + [aux_sym__immediate_decimal_token4] = ACTIONS(1628), + [aux_sym__immediate_decimal_token5] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1584), + [aux_sym__val_number_decimal_token1] = ACTIONS(1576), + [aux_sym__val_number_decimal_token2] = ACTIONS(1576), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1576), + [aux_sym__val_number_token1] = ACTIONS(1584), + [aux_sym__val_number_token2] = ACTIONS(1584), + [aux_sym__val_number_token3] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [sym__str_single_quotes] = ACTIONS(1584), + [sym__str_back_ticks] = ACTIONS(1584), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(247), }, - [203] = { - [sym_comment] = STATE(203), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), + [232] = { + [sym__expr_parenthesized_immediate] = STATE(640), + [sym__immediate_decimal] = STATE(641), + [sym_val_variable] = STATE(640), + [sym_comment] = STATE(232), + [anon_sym_export] = ACTIONS(1586), + [anon_sym_alias] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_let_DASHenv] = ACTIONS(1586), + [anon_sym_mut] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [aux_sym_cmd_identifier_token1] = ACTIONS(1586), + [aux_sym_cmd_identifier_token2] = ACTIONS(1586), + [aux_sym_cmd_identifier_token3] = ACTIONS(1586), + [aux_sym_cmd_identifier_token4] = ACTIONS(1586), + [aux_sym_cmd_identifier_token5] = ACTIONS(1586), + [aux_sym_cmd_identifier_token6] = ACTIONS(1586), + [aux_sym_cmd_identifier_token7] = ACTIONS(1586), + [aux_sym_cmd_identifier_token8] = ACTIONS(1586), + [aux_sym_cmd_identifier_token9] = ACTIONS(1586), + [aux_sym_cmd_identifier_token10] = ACTIONS(1586), + [aux_sym_cmd_identifier_token11] = ACTIONS(1586), + [aux_sym_cmd_identifier_token12] = ACTIONS(1586), + [aux_sym_cmd_identifier_token13] = ACTIONS(1586), + [aux_sym_cmd_identifier_token14] = ACTIONS(1586), + [aux_sym_cmd_identifier_token15] = ACTIONS(1586), + [aux_sym_cmd_identifier_token16] = ACTIONS(1586), + [aux_sym_cmd_identifier_token17] = ACTIONS(1586), + [aux_sym_cmd_identifier_token18] = ACTIONS(1586), + [aux_sym_cmd_identifier_token19] = ACTIONS(1586), + [aux_sym_cmd_identifier_token20] = ACTIONS(1586), + [aux_sym_cmd_identifier_token21] = ACTIONS(1586), + [aux_sym_cmd_identifier_token22] = ACTIONS(1586), + [aux_sym_cmd_identifier_token23] = ACTIONS(1586), + [aux_sym_cmd_identifier_token24] = ACTIONS(1586), + [aux_sym_cmd_identifier_token25] = ACTIONS(1586), + [aux_sym_cmd_identifier_token26] = ACTIONS(1586), + [aux_sym_cmd_identifier_token27] = ACTIONS(1586), + [aux_sym_cmd_identifier_token28] = ACTIONS(1586), + [aux_sym_cmd_identifier_token29] = ACTIONS(1586), + [aux_sym_cmd_identifier_token30] = ACTIONS(1586), + [aux_sym_cmd_identifier_token31] = ACTIONS(1586), + [aux_sym_cmd_identifier_token32] = ACTIONS(1586), + [aux_sym_cmd_identifier_token33] = ACTIONS(1586), + [aux_sym_cmd_identifier_token34] = ACTIONS(1586), + [aux_sym_cmd_identifier_token35] = ACTIONS(1586), + [aux_sym_cmd_identifier_token36] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_null] = ACTIONS(1588), + [aux_sym_cmd_identifier_token38] = ACTIONS(1586), + [aux_sym_cmd_identifier_token39] = ACTIONS(1588), + [aux_sym_cmd_identifier_token40] = ACTIONS(1588), + [anon_sym_def] = ACTIONS(1586), + [anon_sym_export_DASHenv] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_module] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_error] = ACTIONS(1586), + [anon_sym_list] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_make] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_do] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_else] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1586), + [anon_sym_catch] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_source] = ACTIONS(1586), + [anon_sym_source_DASHenv] = ACTIONS(1586), + [anon_sym_register] = ACTIONS(1586), + [anon_sym_hide] = ACTIONS(1586), + [anon_sym_hide_DASHenv] = ACTIONS(1586), + [anon_sym_overlay] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1586), + [anon_sym_as] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1588), + [aux_sym__immediate_decimal_token1] = ACTIONS(1624), + [aux_sym__immediate_decimal_token3] = ACTIONS(1626), + [aux_sym__immediate_decimal_token4] = ACTIONS(1628), + [aux_sym__immediate_decimal_token5] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1588), + [aux_sym__val_number_decimal_token1] = ACTIONS(1586), + [aux_sym__val_number_decimal_token2] = ACTIONS(1586), + [aux_sym__val_number_decimal_token3] = ACTIONS(1586), + [aux_sym__val_number_decimal_token4] = ACTIONS(1586), + [aux_sym__val_number_token1] = ACTIONS(1588), + [aux_sym__val_number_token2] = ACTIONS(1588), + [aux_sym__val_number_token3] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [sym__str_single_quotes] = ACTIONS(1588), + [sym__str_back_ticks] = ACTIONS(1588), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(247), }, - [204] = { - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_null] = ACTIONS(1565), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1565), - [aux_sym_cmd_identifier_token40] = ACTIONS(1565), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_list] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1565), - [aux_sym__val_number_token2] = ACTIONS(1565), - [aux_sym__val_number_token3] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1565), - [sym_duration_unit] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym__str_single_quotes] = ACTIONS(1565), - [sym__str_back_ticks] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), - [sym__entry_separator] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1565), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(3), + [233] = { + [sym_comment] = STATE(233), + [anon_sym_export] = ACTIONS(1554), + [anon_sym_alias] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_let_DASHenv] = ACTIONS(1554), + [anon_sym_mut] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [aux_sym_cmd_identifier_token1] = ACTIONS(1554), + [aux_sym_cmd_identifier_token2] = ACTIONS(1554), + [aux_sym_cmd_identifier_token3] = ACTIONS(1554), + [aux_sym_cmd_identifier_token4] = ACTIONS(1554), + [aux_sym_cmd_identifier_token5] = ACTIONS(1554), + [aux_sym_cmd_identifier_token6] = ACTIONS(1554), + [aux_sym_cmd_identifier_token7] = ACTIONS(1554), + [aux_sym_cmd_identifier_token8] = ACTIONS(1554), + [aux_sym_cmd_identifier_token9] = ACTIONS(1554), + [aux_sym_cmd_identifier_token10] = ACTIONS(1554), + [aux_sym_cmd_identifier_token11] = ACTIONS(1554), + [aux_sym_cmd_identifier_token12] = ACTIONS(1554), + [aux_sym_cmd_identifier_token13] = ACTIONS(1554), + [aux_sym_cmd_identifier_token14] = ACTIONS(1554), + [aux_sym_cmd_identifier_token15] = ACTIONS(1554), + [aux_sym_cmd_identifier_token16] = ACTIONS(1554), + [aux_sym_cmd_identifier_token17] = ACTIONS(1554), + [aux_sym_cmd_identifier_token18] = ACTIONS(1554), + [aux_sym_cmd_identifier_token19] = ACTIONS(1554), + [aux_sym_cmd_identifier_token20] = ACTIONS(1554), + [aux_sym_cmd_identifier_token21] = ACTIONS(1554), + [aux_sym_cmd_identifier_token22] = ACTIONS(1554), + [aux_sym_cmd_identifier_token23] = ACTIONS(1554), + [aux_sym_cmd_identifier_token24] = ACTIONS(1554), + [aux_sym_cmd_identifier_token25] = ACTIONS(1554), + [aux_sym_cmd_identifier_token26] = ACTIONS(1554), + [aux_sym_cmd_identifier_token27] = ACTIONS(1554), + [aux_sym_cmd_identifier_token28] = ACTIONS(1554), + [aux_sym_cmd_identifier_token29] = ACTIONS(1554), + [aux_sym_cmd_identifier_token30] = ACTIONS(1554), + [aux_sym_cmd_identifier_token31] = ACTIONS(1554), + [aux_sym_cmd_identifier_token32] = ACTIONS(1554), + [aux_sym_cmd_identifier_token33] = ACTIONS(1554), + [aux_sym_cmd_identifier_token34] = ACTIONS(1554), + [aux_sym_cmd_identifier_token35] = ACTIONS(1554), + [aux_sym_cmd_identifier_token36] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1554), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = ACTIONS(1556), + [anon_sym_def] = ACTIONS(1554), + [anon_sym_export_DASHenv] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_module] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_error] = ACTIONS(1554), + [anon_sym_list] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_make] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_try] = ACTIONS(1554), + [anon_sym_catch] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_source] = ACTIONS(1554), + [anon_sym_source_DASHenv] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_hide] = ACTIONS(1554), + [anon_sym_hide_DASHenv] = ACTIONS(1554), + [anon_sym_overlay] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1554), + [sym_duration_unit] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1554), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), }, - [205] = { - [sym_comment] = STATE(205), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_alias] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_let_DASHenv] = ACTIONS(1639), - [anon_sym_mut] = ACTIONS(1639), - [anon_sym_const] = ACTIONS(1639), - [aux_sym_cmd_identifier_token1] = ACTIONS(1639), - [aux_sym_cmd_identifier_token2] = ACTIONS(1639), - [aux_sym_cmd_identifier_token3] = ACTIONS(1639), - [aux_sym_cmd_identifier_token4] = ACTIONS(1639), - [aux_sym_cmd_identifier_token5] = ACTIONS(1639), - [aux_sym_cmd_identifier_token6] = ACTIONS(1639), - [aux_sym_cmd_identifier_token7] = ACTIONS(1639), - [aux_sym_cmd_identifier_token8] = ACTIONS(1639), - [aux_sym_cmd_identifier_token9] = ACTIONS(1639), - [aux_sym_cmd_identifier_token10] = ACTIONS(1639), - [aux_sym_cmd_identifier_token11] = ACTIONS(1639), - [aux_sym_cmd_identifier_token12] = ACTIONS(1639), - [aux_sym_cmd_identifier_token13] = ACTIONS(1639), - [aux_sym_cmd_identifier_token14] = ACTIONS(1639), - [aux_sym_cmd_identifier_token15] = ACTIONS(1639), - [aux_sym_cmd_identifier_token16] = ACTIONS(1639), - [aux_sym_cmd_identifier_token17] = ACTIONS(1639), - [aux_sym_cmd_identifier_token18] = ACTIONS(1639), - [aux_sym_cmd_identifier_token19] = ACTIONS(1639), - [aux_sym_cmd_identifier_token20] = ACTIONS(1639), - [aux_sym_cmd_identifier_token21] = ACTIONS(1639), - [aux_sym_cmd_identifier_token22] = ACTIONS(1639), - [aux_sym_cmd_identifier_token23] = ACTIONS(1639), - [aux_sym_cmd_identifier_token24] = ACTIONS(1639), - [aux_sym_cmd_identifier_token25] = ACTIONS(1639), - [aux_sym_cmd_identifier_token26] = ACTIONS(1639), - [aux_sym_cmd_identifier_token27] = ACTIONS(1639), - [aux_sym_cmd_identifier_token28] = ACTIONS(1639), - [aux_sym_cmd_identifier_token29] = ACTIONS(1639), - [aux_sym_cmd_identifier_token30] = ACTIONS(1639), - [aux_sym_cmd_identifier_token31] = ACTIONS(1639), - [aux_sym_cmd_identifier_token32] = ACTIONS(1639), - [aux_sym_cmd_identifier_token33] = ACTIONS(1639), - [aux_sym_cmd_identifier_token34] = ACTIONS(1639), - [aux_sym_cmd_identifier_token35] = ACTIONS(1639), - [aux_sym_cmd_identifier_token36] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [anon_sym_null] = ACTIONS(1639), - [aux_sym_cmd_identifier_token38] = ACTIONS(1639), - [aux_sym_cmd_identifier_token39] = ACTIONS(1639), - [aux_sym_cmd_identifier_token40] = ACTIONS(1639), - [anon_sym_def] = ACTIONS(1639), - [anon_sym_export_DASHenv] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_use] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_error] = ACTIONS(1639), - [anon_sym_list] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_break] = ACTIONS(1639), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_loop] = ACTIONS(1639), - [anon_sym_make] = ACTIONS(1639), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_do] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1639), - [anon_sym_else] = ACTIONS(1639), - [anon_sym_match] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1639), - [anon_sym_catch] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1639), - [anon_sym_source] = ACTIONS(1639), - [anon_sym_source_DASHenv] = ACTIONS(1639), - [anon_sym_register] = ACTIONS(1639), - [anon_sym_hide] = ACTIONS(1639), - [anon_sym_hide_DASHenv] = ACTIONS(1639), - [anon_sym_overlay] = ACTIONS(1639), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_as] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), - [sym__entry_separator] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1639), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), + [234] = { + [sym_comment] = STATE(234), + [aux_sym__block_body_repeat1] = STATE(234), + [anon_sym_export] = ACTIONS(1634), + [anon_sym_alias] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_let_DASHenv] = ACTIONS(1634), + [anon_sym_mut] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [aux_sym_cmd_identifier_token1] = ACTIONS(1634), + [aux_sym_cmd_identifier_token2] = ACTIONS(1634), + [aux_sym_cmd_identifier_token3] = ACTIONS(1634), + [aux_sym_cmd_identifier_token4] = ACTIONS(1634), + [aux_sym_cmd_identifier_token5] = ACTIONS(1634), + [aux_sym_cmd_identifier_token6] = ACTIONS(1634), + [aux_sym_cmd_identifier_token7] = ACTIONS(1634), + [aux_sym_cmd_identifier_token8] = ACTIONS(1634), + [aux_sym_cmd_identifier_token9] = ACTIONS(1634), + [aux_sym_cmd_identifier_token10] = ACTIONS(1634), + [aux_sym_cmd_identifier_token11] = ACTIONS(1634), + [aux_sym_cmd_identifier_token12] = ACTIONS(1634), + [aux_sym_cmd_identifier_token13] = ACTIONS(1634), + [aux_sym_cmd_identifier_token14] = ACTIONS(1634), + [aux_sym_cmd_identifier_token15] = ACTIONS(1634), + [aux_sym_cmd_identifier_token16] = ACTIONS(1634), + [aux_sym_cmd_identifier_token17] = ACTIONS(1634), + [aux_sym_cmd_identifier_token18] = ACTIONS(1634), + [aux_sym_cmd_identifier_token19] = ACTIONS(1634), + [aux_sym_cmd_identifier_token20] = ACTIONS(1634), + [aux_sym_cmd_identifier_token21] = ACTIONS(1634), + [aux_sym_cmd_identifier_token22] = ACTIONS(1634), + [aux_sym_cmd_identifier_token23] = ACTIONS(1634), + [aux_sym_cmd_identifier_token24] = ACTIONS(1636), + [aux_sym_cmd_identifier_token25] = ACTIONS(1634), + [aux_sym_cmd_identifier_token26] = ACTIONS(1636), + [aux_sym_cmd_identifier_token27] = ACTIONS(1634), + [aux_sym_cmd_identifier_token28] = ACTIONS(1634), + [aux_sym_cmd_identifier_token29] = ACTIONS(1634), + [aux_sym_cmd_identifier_token30] = ACTIONS(1634), + [aux_sym_cmd_identifier_token31] = ACTIONS(1636), + [aux_sym_cmd_identifier_token32] = ACTIONS(1636), + [aux_sym_cmd_identifier_token33] = ACTIONS(1636), + [aux_sym_cmd_identifier_token34] = ACTIONS(1636), + [aux_sym_cmd_identifier_token35] = ACTIONS(1636), + [aux_sym_cmd_identifier_token36] = ACTIONS(1634), + [anon_sym_true] = ACTIONS(1636), + [anon_sym_false] = ACTIONS(1636), + [anon_sym_null] = ACTIONS(1636), + [aux_sym_cmd_identifier_token38] = ACTIONS(1634), + [aux_sym_cmd_identifier_token39] = ACTIONS(1636), + [aux_sym_cmd_identifier_token40] = ACTIONS(1636), + [sym__newline] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_def] = ACTIONS(1634), + [anon_sym_export_DASHenv] = ACTIONS(1634), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_module] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_error] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_do] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1634), + [anon_sym_try] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_source] = ACTIONS(1634), + [anon_sym_source_DASHenv] = ACTIONS(1634), + [anon_sym_register] = ACTIONS(1634), + [anon_sym_hide] = ACTIONS(1634), + [anon_sym_hide_DASHenv] = ACTIONS(1634), + [anon_sym_overlay] = ACTIONS(1634), + [anon_sym_where] = ACTIONS(1636), + [aux_sym_expr_unary_token1] = ACTIONS(1636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1636), + [anon_sym_DOT_DOT_LT] = ACTIONS(1636), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1636), + [aux_sym__val_number_decimal_token4] = ACTIONS(1636), + [aux_sym__val_number_token1] = ACTIONS(1636), + [aux_sym__val_number_token2] = ACTIONS(1636), + [aux_sym__val_number_token3] = ACTIONS(1636), + [anon_sym_0b] = ACTIONS(1634), + [anon_sym_0o] = ACTIONS(1634), + [anon_sym_0x] = ACTIONS(1634), + [sym_val_date] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [sym__str_single_quotes] = ACTIONS(1636), + [sym__str_back_ticks] = ACTIONS(1636), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), + [aux_sym_env_var_token1] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(247), }, - [206] = { - [sym_comment] = STATE(206), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1647), + [235] = { + [sym_cell_path] = STATE(418), + [sym_path] = STATE(369), + [sym_comment] = STATE(235), + [aux_sym_cell_path_repeat1] = STATE(272), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_alias] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_let_DASHenv] = ACTIONS(1641), + [anon_sym_mut] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [aux_sym_cmd_identifier_token1] = ACTIONS(1641), + [aux_sym_cmd_identifier_token2] = ACTIONS(1641), + [aux_sym_cmd_identifier_token3] = ACTIONS(1641), + [aux_sym_cmd_identifier_token4] = ACTIONS(1641), + [aux_sym_cmd_identifier_token5] = ACTIONS(1641), + [aux_sym_cmd_identifier_token6] = ACTIONS(1641), + [aux_sym_cmd_identifier_token7] = ACTIONS(1641), + [aux_sym_cmd_identifier_token8] = ACTIONS(1641), + [aux_sym_cmd_identifier_token9] = ACTIONS(1641), + [aux_sym_cmd_identifier_token10] = ACTIONS(1641), + [aux_sym_cmd_identifier_token11] = ACTIONS(1641), + [aux_sym_cmd_identifier_token12] = ACTIONS(1641), + [aux_sym_cmd_identifier_token13] = ACTIONS(1641), + [aux_sym_cmd_identifier_token14] = ACTIONS(1641), + [aux_sym_cmd_identifier_token15] = ACTIONS(1641), + [aux_sym_cmd_identifier_token16] = ACTIONS(1641), + [aux_sym_cmd_identifier_token17] = ACTIONS(1641), + [aux_sym_cmd_identifier_token18] = ACTIONS(1641), + [aux_sym_cmd_identifier_token19] = ACTIONS(1641), + [aux_sym_cmd_identifier_token20] = ACTIONS(1641), + [aux_sym_cmd_identifier_token21] = ACTIONS(1641), + [aux_sym_cmd_identifier_token22] = ACTIONS(1641), + [aux_sym_cmd_identifier_token23] = ACTIONS(1641), + [aux_sym_cmd_identifier_token24] = ACTIONS(1641), + [aux_sym_cmd_identifier_token25] = ACTIONS(1641), + [aux_sym_cmd_identifier_token26] = ACTIONS(1641), + [aux_sym_cmd_identifier_token27] = ACTIONS(1641), + [aux_sym_cmd_identifier_token28] = ACTIONS(1641), + [aux_sym_cmd_identifier_token29] = ACTIONS(1641), + [aux_sym_cmd_identifier_token30] = ACTIONS(1641), + [aux_sym_cmd_identifier_token31] = ACTIONS(1641), + [aux_sym_cmd_identifier_token32] = ACTIONS(1641), + [aux_sym_cmd_identifier_token33] = ACTIONS(1641), + [aux_sym_cmd_identifier_token34] = ACTIONS(1641), + [aux_sym_cmd_identifier_token35] = ACTIONS(1641), + [aux_sym_cmd_identifier_token36] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1641), + [aux_sym_cmd_identifier_token39] = ACTIONS(1641), + [aux_sym_cmd_identifier_token40] = ACTIONS(1641), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_export_DASHenv] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_error] = ACTIONS(1641), + [anon_sym_list] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_make] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_else] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_catch] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_source] = ACTIONS(1641), + [anon_sym_source_DASHenv] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_hide] = ACTIONS(1641), + [anon_sym_hide_DASHenv] = ACTIONS(1641), + [anon_sym_overlay] = ACTIONS(1641), + [anon_sym_new] = ACTIONS(1641), + [anon_sym_as] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1643), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1649), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_decimal_token2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token3] = ACTIONS(1641), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1641), [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, - [207] = { - [sym_cell_path] = STATE(354), - [sym_path] = STATE(340), - [sym_comment] = STATE(207), - [aux_sym_cell_path_repeat1] = STATE(225), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1011), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1011), - [aux_sym_cmd_identifier_token40] = ACTIONS(1011), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1627), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1011), - [aux_sym__val_number_decimal_token3] = ACTIONS(1011), - [aux_sym__val_number_decimal_token4] = ACTIONS(1011), - [aux_sym__val_number_token1] = ACTIONS(1011), - [aux_sym__val_number_token2] = ACTIONS(1011), - [aux_sym__val_number_token3] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym__str_single_quotes] = ACTIONS(1011), - [sym__str_back_ticks] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), - [sym__entry_separator] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), + [236] = { + [sym_comment] = STATE(236), + [aux_sym__block_body_repeat1] = STATE(234), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(247), + }, + [237] = { + [sym_comment] = STATE(237), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [aux_sym_cmd_identifier_token1] = ACTIONS(1540), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1540), + [aux_sym_cmd_identifier_token9] = ACTIONS(1540), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1540), + [aux_sym_cmd_identifier_token13] = ACTIONS(1540), + [aux_sym_cmd_identifier_token14] = ACTIONS(1540), + [aux_sym_cmd_identifier_token15] = ACTIONS(1540), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1540), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1540), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1540), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1540), + [aux_sym_cmd_identifier_token38] = ACTIONS(1540), + [aux_sym_cmd_identifier_token39] = ACTIONS(1540), + [aux_sym_cmd_identifier_token40] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_list] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_make] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_catch] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_new] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1540), + [sym_duration_unit] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), + [sym__entry_separator] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1540), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(3), }, - [208] = { - [sym_comment] = STATE(208), - [anon_sym_export] = ACTIONS(1517), - [anon_sym_alias] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_let_DASHenv] = ACTIONS(1517), - [anon_sym_mut] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [aux_sym_cmd_identifier_token1] = ACTIONS(1517), - [aux_sym_cmd_identifier_token2] = ACTIONS(1517), - [aux_sym_cmd_identifier_token3] = ACTIONS(1517), - [aux_sym_cmd_identifier_token4] = ACTIONS(1517), - [aux_sym_cmd_identifier_token5] = ACTIONS(1517), - [aux_sym_cmd_identifier_token6] = ACTIONS(1517), - [aux_sym_cmd_identifier_token7] = ACTIONS(1517), - [aux_sym_cmd_identifier_token8] = ACTIONS(1517), - [aux_sym_cmd_identifier_token9] = ACTIONS(1517), - [aux_sym_cmd_identifier_token10] = ACTIONS(1517), - [aux_sym_cmd_identifier_token11] = ACTIONS(1517), - [aux_sym_cmd_identifier_token12] = ACTIONS(1517), - [aux_sym_cmd_identifier_token13] = ACTIONS(1517), - [aux_sym_cmd_identifier_token14] = ACTIONS(1517), - [aux_sym_cmd_identifier_token15] = ACTIONS(1517), - [aux_sym_cmd_identifier_token16] = ACTIONS(1517), - [aux_sym_cmd_identifier_token17] = ACTIONS(1517), - [aux_sym_cmd_identifier_token18] = ACTIONS(1517), - [aux_sym_cmd_identifier_token19] = ACTIONS(1517), - [aux_sym_cmd_identifier_token20] = ACTIONS(1517), - [aux_sym_cmd_identifier_token21] = ACTIONS(1517), - [aux_sym_cmd_identifier_token22] = ACTIONS(1517), - [aux_sym_cmd_identifier_token23] = ACTIONS(1517), - [aux_sym_cmd_identifier_token24] = ACTIONS(1517), - [aux_sym_cmd_identifier_token25] = ACTIONS(1517), - [aux_sym_cmd_identifier_token26] = ACTIONS(1517), - [aux_sym_cmd_identifier_token27] = ACTIONS(1517), - [aux_sym_cmd_identifier_token28] = ACTIONS(1517), - [aux_sym_cmd_identifier_token29] = ACTIONS(1517), - [aux_sym_cmd_identifier_token30] = ACTIONS(1517), - [aux_sym_cmd_identifier_token31] = ACTIONS(1517), - [aux_sym_cmd_identifier_token32] = ACTIONS(1517), - [aux_sym_cmd_identifier_token33] = ACTIONS(1517), - [aux_sym_cmd_identifier_token34] = ACTIONS(1517), - [aux_sym_cmd_identifier_token35] = ACTIONS(1517), - [aux_sym_cmd_identifier_token36] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [aux_sym_cmd_identifier_token38] = ACTIONS(1517), - [aux_sym_cmd_identifier_token39] = ACTIONS(1517), - [aux_sym_cmd_identifier_token40] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1517), - [anon_sym_export_DASHenv] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_module] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_error] = ACTIONS(1517), - [anon_sym_list] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_make] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [anon_sym_catch] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_source] = ACTIONS(1517), - [anon_sym_source_DASHenv] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_hide] = ACTIONS(1517), - [anon_sym_hide_DASHenv] = ACTIONS(1517), - [anon_sym_overlay] = ACTIONS(1517), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1517), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1517), - [aux_sym__val_number_decimal_token4] = ACTIONS(1517), - [aux_sym__val_number_token1] = ACTIONS(1517), - [aux_sym__val_number_token2] = ACTIONS(1517), - [aux_sym__val_number_token3] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1517), - [sym_duration_unit] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym__str_single_quotes] = ACTIONS(1517), - [sym__str_back_ticks] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1517), - [sym__entry_separator] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1517), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), + [238] = { + [sym_cell_path] = STATE(398), + [sym_path] = STATE(369), + [sym_comment] = STATE(238), + [aux_sym_cell_path_repeat1] = STATE(272), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [aux_sym_cmd_identifier_token1] = ACTIONS(1005), + [aux_sym_cmd_identifier_token2] = ACTIONS(1005), + [aux_sym_cmd_identifier_token3] = ACTIONS(1005), + [aux_sym_cmd_identifier_token4] = ACTIONS(1005), + [aux_sym_cmd_identifier_token5] = ACTIONS(1005), + [aux_sym_cmd_identifier_token6] = ACTIONS(1005), + [aux_sym_cmd_identifier_token7] = ACTIONS(1005), + [aux_sym_cmd_identifier_token8] = ACTIONS(1005), + [aux_sym_cmd_identifier_token9] = ACTIONS(1005), + [aux_sym_cmd_identifier_token10] = ACTIONS(1005), + [aux_sym_cmd_identifier_token11] = ACTIONS(1005), + [aux_sym_cmd_identifier_token12] = ACTIONS(1005), + [aux_sym_cmd_identifier_token13] = ACTIONS(1005), + [aux_sym_cmd_identifier_token14] = ACTIONS(1005), + [aux_sym_cmd_identifier_token15] = ACTIONS(1005), + [aux_sym_cmd_identifier_token16] = ACTIONS(1005), + [aux_sym_cmd_identifier_token17] = ACTIONS(1005), + [aux_sym_cmd_identifier_token18] = ACTIONS(1005), + [aux_sym_cmd_identifier_token19] = ACTIONS(1005), + [aux_sym_cmd_identifier_token20] = ACTIONS(1005), + [aux_sym_cmd_identifier_token21] = ACTIONS(1005), + [aux_sym_cmd_identifier_token22] = ACTIONS(1005), + [aux_sym_cmd_identifier_token23] = ACTIONS(1005), + [aux_sym_cmd_identifier_token24] = ACTIONS(1005), + [aux_sym_cmd_identifier_token25] = ACTIONS(1005), + [aux_sym_cmd_identifier_token26] = ACTIONS(1005), + [aux_sym_cmd_identifier_token27] = ACTIONS(1005), + [aux_sym_cmd_identifier_token28] = ACTIONS(1005), + [aux_sym_cmd_identifier_token29] = ACTIONS(1005), + [aux_sym_cmd_identifier_token30] = ACTIONS(1005), + [aux_sym_cmd_identifier_token31] = ACTIONS(1005), + [aux_sym_cmd_identifier_token32] = ACTIONS(1005), + [aux_sym_cmd_identifier_token33] = ACTIONS(1005), + [aux_sym_cmd_identifier_token34] = ACTIONS(1005), + [aux_sym_cmd_identifier_token35] = ACTIONS(1005), + [aux_sym_cmd_identifier_token36] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [anon_sym_null] = ACTIONS(1005), + [aux_sym_cmd_identifier_token38] = ACTIONS(1005), + [aux_sym_cmd_identifier_token39] = ACTIONS(1005), + [aux_sym_cmd_identifier_token40] = ACTIONS(1005), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_make] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1005), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1005), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1005), + [aux_sym__val_number_decimal_token3] = ACTIONS(1005), + [aux_sym__val_number_decimal_token4] = ACTIONS(1005), + [aux_sym__val_number_token1] = ACTIONS(1005), + [aux_sym__val_number_token2] = ACTIONS(1005), + [aux_sym__val_number_token3] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [sym__str_single_quotes] = ACTIONS(1005), + [sym__str_back_ticks] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1005), + [sym__entry_separator] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), [anon_sym_POUND] = ACTIONS(3), }, - [209] = { - [sym_comment] = STATE(209), - [aux_sym__block_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [239] = { + [sym_comment] = STATE(239), + [anon_sym_export] = ACTIONS(1554), + [anon_sym_alias] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_let_DASHenv] = ACTIONS(1554), + [anon_sym_mut] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [aux_sym_cmd_identifier_token1] = ACTIONS(1554), + [aux_sym_cmd_identifier_token2] = ACTIONS(1554), + [aux_sym_cmd_identifier_token3] = ACTIONS(1554), + [aux_sym_cmd_identifier_token4] = ACTIONS(1554), + [aux_sym_cmd_identifier_token5] = ACTIONS(1554), + [aux_sym_cmd_identifier_token6] = ACTIONS(1554), + [aux_sym_cmd_identifier_token7] = ACTIONS(1554), + [aux_sym_cmd_identifier_token8] = ACTIONS(1554), + [aux_sym_cmd_identifier_token9] = ACTIONS(1554), + [aux_sym_cmd_identifier_token10] = ACTIONS(1554), + [aux_sym_cmd_identifier_token11] = ACTIONS(1554), + [aux_sym_cmd_identifier_token12] = ACTIONS(1554), + [aux_sym_cmd_identifier_token13] = ACTIONS(1554), + [aux_sym_cmd_identifier_token14] = ACTIONS(1554), + [aux_sym_cmd_identifier_token15] = ACTIONS(1554), + [aux_sym_cmd_identifier_token16] = ACTIONS(1554), + [aux_sym_cmd_identifier_token17] = ACTIONS(1554), + [aux_sym_cmd_identifier_token18] = ACTIONS(1554), + [aux_sym_cmd_identifier_token19] = ACTIONS(1554), + [aux_sym_cmd_identifier_token20] = ACTIONS(1554), + [aux_sym_cmd_identifier_token21] = ACTIONS(1554), + [aux_sym_cmd_identifier_token22] = ACTIONS(1554), + [aux_sym_cmd_identifier_token23] = ACTIONS(1554), + [aux_sym_cmd_identifier_token24] = ACTIONS(1554), + [aux_sym_cmd_identifier_token25] = ACTIONS(1554), + [aux_sym_cmd_identifier_token26] = ACTIONS(1554), + [aux_sym_cmd_identifier_token27] = ACTIONS(1554), + [aux_sym_cmd_identifier_token28] = ACTIONS(1554), + [aux_sym_cmd_identifier_token29] = ACTIONS(1554), + [aux_sym_cmd_identifier_token30] = ACTIONS(1554), + [aux_sym_cmd_identifier_token31] = ACTIONS(1554), + [aux_sym_cmd_identifier_token32] = ACTIONS(1554), + [aux_sym_cmd_identifier_token33] = ACTIONS(1554), + [aux_sym_cmd_identifier_token34] = ACTIONS(1554), + [aux_sym_cmd_identifier_token35] = ACTIONS(1554), + [aux_sym_cmd_identifier_token36] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [anon_sym_null] = ACTIONS(1554), + [aux_sym_cmd_identifier_token38] = ACTIONS(1554), + [aux_sym_cmd_identifier_token39] = ACTIONS(1554), + [aux_sym_cmd_identifier_token40] = ACTIONS(1554), + [anon_sym_def] = ACTIONS(1554), + [anon_sym_export_DASHenv] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_module] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_error] = ACTIONS(1554), + [anon_sym_list] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_make] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_try] = ACTIONS(1554), + [anon_sym_catch] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_source] = ACTIONS(1554), + [anon_sym_source_DASHenv] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_hide] = ACTIONS(1554), + [anon_sym_hide_DASHenv] = ACTIONS(1554), + [anon_sym_overlay] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1554), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1554), + [aux_sym__val_number_decimal_token3] = ACTIONS(1554), + [aux_sym__val_number_decimal_token4] = ACTIONS(1554), + [aux_sym__val_number_token1] = ACTIONS(1554), + [aux_sym__val_number_token2] = ACTIONS(1554), + [aux_sym__val_number_token3] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1554), + [sym_duration_unit] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym__str_single_quotes] = ACTIONS(1554), + [sym__str_back_ticks] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1554), + [sym__entry_separator] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1554), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(3), + }, + [240] = { + [sym__expr_parenthesized_immediate] = STATE(632), + [sym__immediate_decimal] = STATE(633), + [sym_val_variable] = STATE(632), + [sym_comment] = STATE(240), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_list] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(1624), + [aux_sym__immediate_decimal_token3] = ACTIONS(1626), + [aux_sym__immediate_decimal_token4] = ACTIONS(1628), + [aux_sym__immediate_decimal_token5] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(247), + }, + [241] = { + [sym_comment] = STATE(241), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_list] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1518), + [sym_duration_unit] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1518), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [242] = { + [sym_comment] = STATE(242), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1653), + [aux_sym_cmd_identifier_token3] = ACTIONS(1653), + [aux_sym_cmd_identifier_token4] = ACTIONS(1653), + [aux_sym_cmd_identifier_token5] = ACTIONS(1653), + [aux_sym_cmd_identifier_token6] = ACTIONS(1653), + [aux_sym_cmd_identifier_token7] = ACTIONS(1653), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1653), + [aux_sym_cmd_identifier_token11] = ACTIONS(1653), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1653), + [aux_sym_cmd_identifier_token17] = ACTIONS(1653), + [aux_sym_cmd_identifier_token18] = ACTIONS(1653), + [aux_sym_cmd_identifier_token19] = ACTIONS(1653), + [aux_sym_cmd_identifier_token20] = ACTIONS(1653), + [aux_sym_cmd_identifier_token21] = ACTIONS(1653), + [aux_sym_cmd_identifier_token22] = ACTIONS(1653), + [aux_sym_cmd_identifier_token23] = ACTIONS(1653), [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token25] = ACTIONS(1653), [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token27] = ACTIONS(1653), + [aux_sym_cmd_identifier_token28] = ACTIONS(1653), + [aux_sym_cmd_identifier_token29] = ACTIONS(1653), + [aux_sym_cmd_identifier_token30] = ACTIONS(1653), [aux_sym_cmd_identifier_token31] = ACTIONS(1653), [aux_sym_cmd_identifier_token32] = ACTIONS(1653), [aux_sym_cmd_identifier_token33] = ACTIONS(1653), [aux_sym_cmd_identifier_token34] = ACTIONS(1653), [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [aux_sym_cmd_identifier_token36] = ACTIONS(1653), [anon_sym_true] = ACTIONS(1653), [anon_sym_false] = ACTIONS(1653), [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), [aux_sym_cmd_identifier_token39] = ACTIONS(1653), [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_list] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), [aux_sym__val_number_decimal_token2] = ACTIONS(1653), [aux_sym__val_number_decimal_token3] = ACTIONS(1653), [aux_sym__val_number_decimal_token4] = ACTIONS(1653), [aux_sym__val_number_token1] = ACTIONS(1653), [aux_sym__val_number_token2] = ACTIONS(1653), [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(1653), + [sym_duration_unit] = ACTIONS(1653), [anon_sym_DQUOTE] = ACTIONS(1653), [sym__str_single_quotes] = ACTIONS(1653), [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1653), + [sym__entry_separator] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1653), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), + }, + [243] = { + [sym_comment] = STATE(243), + [aux_sym__block_body_repeat1] = STATE(234), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), [anon_sym_POUND] = ACTIONS(247), }, - [210] = { - [sym_comment] = STATE(210), - [aux_sym__block_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_alias] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_let_DASHenv] = ACTIONS(1657), - [anon_sym_mut] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(1657), - [aux_sym_cmd_identifier_token2] = ACTIONS(1657), - [aux_sym_cmd_identifier_token3] = ACTIONS(1657), - [aux_sym_cmd_identifier_token4] = ACTIONS(1657), - [aux_sym_cmd_identifier_token5] = ACTIONS(1657), - [aux_sym_cmd_identifier_token6] = ACTIONS(1657), - [aux_sym_cmd_identifier_token7] = ACTIONS(1657), - [aux_sym_cmd_identifier_token8] = ACTIONS(1657), - [aux_sym_cmd_identifier_token9] = ACTIONS(1657), - [aux_sym_cmd_identifier_token10] = ACTIONS(1657), - [aux_sym_cmd_identifier_token11] = ACTIONS(1657), - [aux_sym_cmd_identifier_token12] = ACTIONS(1657), - [aux_sym_cmd_identifier_token13] = ACTIONS(1657), - [aux_sym_cmd_identifier_token14] = ACTIONS(1657), - [aux_sym_cmd_identifier_token15] = ACTIONS(1657), - [aux_sym_cmd_identifier_token16] = ACTIONS(1657), - [aux_sym_cmd_identifier_token17] = ACTIONS(1657), - [aux_sym_cmd_identifier_token18] = ACTIONS(1657), - [aux_sym_cmd_identifier_token19] = ACTIONS(1657), - [aux_sym_cmd_identifier_token20] = ACTIONS(1657), - [aux_sym_cmd_identifier_token21] = ACTIONS(1657), - [aux_sym_cmd_identifier_token22] = ACTIONS(1657), - [aux_sym_cmd_identifier_token23] = ACTIONS(1657), + [244] = { + [sym_comment] = STATE(244), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1657), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1657), - [aux_sym_cmd_identifier_token28] = ACTIONS(1657), - [aux_sym_cmd_identifier_token29] = ACTIONS(1657), - [aux_sym_cmd_identifier_token30] = ACTIONS(1657), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), [aux_sym_cmd_identifier_token31] = ACTIONS(1659), [aux_sym_cmd_identifier_token32] = ACTIONS(1659), [aux_sym_cmd_identifier_token33] = ACTIONS(1659), [aux_sym_cmd_identifier_token34] = ACTIONS(1659), [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1657), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), [anon_sym_true] = ACTIONS(1659), [anon_sym_false] = ACTIONS(1659), [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1657), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), [aux_sym_cmd_identifier_token39] = ACTIONS(1659), [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_export_DASHenv] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1657), - [anon_sym_error] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [aux_sym_ctrl_match_token1] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_source] = ACTIONS(1657), - [anon_sym_source_DASHenv] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_hide_DASHenv] = ACTIONS(1657), - [anon_sym_overlay] = ACTIONS(1657), - [anon_sym_where] = ACTIONS(1659), - [aux_sym_expr_unary_token1] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), [aux_sym__val_number_decimal_token2] = ACTIONS(1659), [aux_sym__val_number_decimal_token3] = ACTIONS(1659), [aux_sym__val_number_decimal_token4] = ACTIONS(1659), [aux_sym__val_number_token1] = ACTIONS(1659), [aux_sym__val_number_token2] = ACTIONS(1659), [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_0b] = ACTIONS(1657), - [anon_sym_0o] = ACTIONS(1657), - [anon_sym_0x] = ACTIONS(1657), - [sym_val_date] = ACTIONS(1659), [anon_sym_DQUOTE] = ACTIONS(1659), [sym__str_single_quotes] = ACTIONS(1659), [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), - [aux_sym_env_var_token1] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, + [245] = { + [sym_comment] = STATE(245), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [246] = { + [sym_cell_path] = STATE(420), + [sym_path] = STATE(369), + [sym_comment] = STATE(246), + [aux_sym_cell_path_repeat1] = STATE(272), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [aux_sym_cmd_identifier_token1] = ACTIONS(1675), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1675), + [aux_sym_cmd_identifier_token9] = ACTIONS(1675), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1675), + [aux_sym_cmd_identifier_token13] = ACTIONS(1675), + [aux_sym_cmd_identifier_token14] = ACTIONS(1675), + [aux_sym_cmd_identifier_token15] = ACTIONS(1675), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1675), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1675), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_list] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_make] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_catch] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_new] = ACTIONS(1675), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), + [sym__entry_separator] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), + }, + [247] = { + [sym__expr_parenthesized_immediate] = STATE(7285), + [sym_comment] = STATE(247), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(1679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1572), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1560), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(247), }, - [211] = { - [sym_comment] = STATE(211), - [aux_sym__block_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [248] = { + [sym_comment] = STATE(248), + [aux_sym__block_body_repeat1] = STATE(234), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_POUND] = ACTIONS(247), + }, + [249] = { + [sym__expr_parenthesized_immediate] = STATE(638), + [sym__immediate_decimal] = STATE(639), + [sym_val_variable] = STATE(638), + [sym_comment] = STATE(249), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_alias] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_let_DASHenv] = ACTIONS(1602), + [anon_sym_mut] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [aux_sym_cmd_identifier_token1] = ACTIONS(1602), + [aux_sym_cmd_identifier_token2] = ACTIONS(1602), + [aux_sym_cmd_identifier_token3] = ACTIONS(1602), + [aux_sym_cmd_identifier_token4] = ACTIONS(1602), + [aux_sym_cmd_identifier_token5] = ACTIONS(1602), + [aux_sym_cmd_identifier_token6] = ACTIONS(1602), + [aux_sym_cmd_identifier_token7] = ACTIONS(1602), + [aux_sym_cmd_identifier_token8] = ACTIONS(1602), + [aux_sym_cmd_identifier_token9] = ACTIONS(1602), + [aux_sym_cmd_identifier_token10] = ACTIONS(1602), + [aux_sym_cmd_identifier_token11] = ACTIONS(1602), + [aux_sym_cmd_identifier_token12] = ACTIONS(1602), + [aux_sym_cmd_identifier_token13] = ACTIONS(1602), + [aux_sym_cmd_identifier_token14] = ACTIONS(1602), + [aux_sym_cmd_identifier_token15] = ACTIONS(1602), + [aux_sym_cmd_identifier_token16] = ACTIONS(1602), + [aux_sym_cmd_identifier_token17] = ACTIONS(1602), + [aux_sym_cmd_identifier_token18] = ACTIONS(1602), + [aux_sym_cmd_identifier_token19] = ACTIONS(1602), + [aux_sym_cmd_identifier_token20] = ACTIONS(1602), + [aux_sym_cmd_identifier_token21] = ACTIONS(1602), + [aux_sym_cmd_identifier_token22] = ACTIONS(1602), + [aux_sym_cmd_identifier_token23] = ACTIONS(1602), + [aux_sym_cmd_identifier_token24] = ACTIONS(1602), + [aux_sym_cmd_identifier_token25] = ACTIONS(1602), + [aux_sym_cmd_identifier_token26] = ACTIONS(1602), + [aux_sym_cmd_identifier_token27] = ACTIONS(1602), + [aux_sym_cmd_identifier_token28] = ACTIONS(1602), + [aux_sym_cmd_identifier_token29] = ACTIONS(1602), + [aux_sym_cmd_identifier_token30] = ACTIONS(1602), + [aux_sym_cmd_identifier_token31] = ACTIONS(1602), + [aux_sym_cmd_identifier_token32] = ACTIONS(1602), + [aux_sym_cmd_identifier_token33] = ACTIONS(1602), + [aux_sym_cmd_identifier_token34] = ACTIONS(1602), + [aux_sym_cmd_identifier_token35] = ACTIONS(1602), + [aux_sym_cmd_identifier_token36] = ACTIONS(1602), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [anon_sym_null] = ACTIONS(1604), + [aux_sym_cmd_identifier_token38] = ACTIONS(1602), + [aux_sym_cmd_identifier_token39] = ACTIONS(1604), + [aux_sym_cmd_identifier_token40] = ACTIONS(1604), + [anon_sym_def] = ACTIONS(1602), + [anon_sym_export_DASHenv] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_error] = ACTIONS(1602), + [anon_sym_list] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_make] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_do] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_try] = ACTIONS(1602), + [anon_sym_catch] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_source] = ACTIONS(1602), + [anon_sym_source_DASHenv] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_hide] = ACTIONS(1602), + [anon_sym_hide_DASHenv] = ACTIONS(1602), + [anon_sym_overlay] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1602), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1604), + [aux_sym__immediate_decimal_token1] = ACTIONS(1624), + [aux_sym__immediate_decimal_token3] = ACTIONS(1626), + [aux_sym__immediate_decimal_token4] = ACTIONS(1628), + [aux_sym__immediate_decimal_token5] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1604), + [aux_sym__val_number_decimal_token1] = ACTIONS(1602), + [aux_sym__val_number_decimal_token2] = ACTIONS(1602), + [aux_sym__val_number_decimal_token3] = ACTIONS(1602), + [aux_sym__val_number_decimal_token4] = ACTIONS(1602), + [aux_sym__val_number_token1] = ACTIONS(1604), + [aux_sym__val_number_token2] = ACTIONS(1604), + [aux_sym__val_number_token3] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [sym__str_single_quotes] = ACTIONS(1604), + [sym__str_back_ticks] = ACTIONS(1604), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(247), + }, + [250] = { + [sym_comment] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(1309), + [anon_sym_POUND_BANG] = ACTIONS(1307), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_alias] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_let_DASHenv] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [aux_sym_cmd_identifier_token1] = ACTIONS(1691), + [aux_sym_cmd_identifier_token2] = ACTIONS(1691), + [aux_sym_cmd_identifier_token3] = ACTIONS(1691), + [aux_sym_cmd_identifier_token4] = ACTIONS(1691), + [aux_sym_cmd_identifier_token5] = ACTIONS(1691), + [aux_sym_cmd_identifier_token6] = ACTIONS(1691), + [aux_sym_cmd_identifier_token7] = ACTIONS(1691), + [aux_sym_cmd_identifier_token8] = ACTIONS(1691), + [aux_sym_cmd_identifier_token9] = ACTIONS(1691), + [aux_sym_cmd_identifier_token10] = ACTIONS(1691), + [aux_sym_cmd_identifier_token11] = ACTIONS(1691), + [aux_sym_cmd_identifier_token12] = ACTIONS(1691), + [aux_sym_cmd_identifier_token13] = ACTIONS(1691), + [aux_sym_cmd_identifier_token14] = ACTIONS(1691), + [aux_sym_cmd_identifier_token15] = ACTIONS(1691), + [aux_sym_cmd_identifier_token16] = ACTIONS(1691), + [aux_sym_cmd_identifier_token17] = ACTIONS(1691), + [aux_sym_cmd_identifier_token18] = ACTIONS(1691), + [aux_sym_cmd_identifier_token19] = ACTIONS(1691), + [aux_sym_cmd_identifier_token20] = ACTIONS(1691), + [aux_sym_cmd_identifier_token21] = ACTIONS(1691), + [aux_sym_cmd_identifier_token22] = ACTIONS(1691), + [aux_sym_cmd_identifier_token23] = ACTIONS(1691), + [aux_sym_cmd_identifier_token24] = ACTIONS(1309), + [aux_sym_cmd_identifier_token25] = ACTIONS(1691), + [aux_sym_cmd_identifier_token26] = ACTIONS(1309), + [aux_sym_cmd_identifier_token27] = ACTIONS(1691), + [aux_sym_cmd_identifier_token28] = ACTIONS(1691), + [aux_sym_cmd_identifier_token29] = ACTIONS(1691), + [aux_sym_cmd_identifier_token30] = ACTIONS(1691), + [aux_sym_cmd_identifier_token31] = ACTIONS(1309), + [aux_sym_cmd_identifier_token32] = ACTIONS(1309), + [aux_sym_cmd_identifier_token33] = ACTIONS(1309), + [aux_sym_cmd_identifier_token34] = ACTIONS(1309), + [aux_sym_cmd_identifier_token35] = ACTIONS(1309), + [aux_sym_cmd_identifier_token36] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1691), + [aux_sym_cmd_identifier_token39] = ACTIONS(1309), + [aux_sym_cmd_identifier_token40] = ACTIONS(1309), + [sym__newline] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_where] = ACTIONS(1309), + [aux_sym_expr_unary_token1] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_DOT_DOT_LT] = ACTIONS(1309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1309), + [aux_sym__val_number_decimal_token3] = ACTIONS(1309), + [aux_sym__val_number_decimal_token4] = ACTIONS(1309), + [aux_sym__val_number_token1] = ACTIONS(1309), + [aux_sym__val_number_token2] = ACTIONS(1309), + [aux_sym__val_number_token3] = ACTIONS(1309), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym__str_single_quotes] = ACTIONS(1309), + [sym__str_back_ticks] = ACTIONS(1309), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), + [aux_sym_env_var_token1] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(3), + }, + [251] = { + [sym_path] = STATE(369), + [sym_comment] = STATE(251), + [aux_sym_cell_path_repeat1] = STATE(251), + [anon_sym_export] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_let_DASHenv] = ACTIONS(1015), + [anon_sym_mut] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [aux_sym_cmd_identifier_token1] = ACTIONS(1015), + [aux_sym_cmd_identifier_token2] = ACTIONS(1015), + [aux_sym_cmd_identifier_token3] = ACTIONS(1015), + [aux_sym_cmd_identifier_token4] = ACTIONS(1015), + [aux_sym_cmd_identifier_token5] = ACTIONS(1015), + [aux_sym_cmd_identifier_token6] = ACTIONS(1015), + [aux_sym_cmd_identifier_token7] = ACTIONS(1015), + [aux_sym_cmd_identifier_token8] = ACTIONS(1015), + [aux_sym_cmd_identifier_token9] = ACTIONS(1015), + [aux_sym_cmd_identifier_token10] = ACTIONS(1015), + [aux_sym_cmd_identifier_token11] = ACTIONS(1015), + [aux_sym_cmd_identifier_token12] = ACTIONS(1015), + [aux_sym_cmd_identifier_token13] = ACTIONS(1015), + [aux_sym_cmd_identifier_token14] = ACTIONS(1015), + [aux_sym_cmd_identifier_token15] = ACTIONS(1015), + [aux_sym_cmd_identifier_token16] = ACTIONS(1015), + [aux_sym_cmd_identifier_token17] = ACTIONS(1015), + [aux_sym_cmd_identifier_token18] = ACTIONS(1015), + [aux_sym_cmd_identifier_token19] = ACTIONS(1015), + [aux_sym_cmd_identifier_token20] = ACTIONS(1015), + [aux_sym_cmd_identifier_token21] = ACTIONS(1015), + [aux_sym_cmd_identifier_token22] = ACTIONS(1015), + [aux_sym_cmd_identifier_token23] = ACTIONS(1015), + [aux_sym_cmd_identifier_token24] = ACTIONS(1015), + [aux_sym_cmd_identifier_token25] = ACTIONS(1015), + [aux_sym_cmd_identifier_token26] = ACTIONS(1015), + [aux_sym_cmd_identifier_token27] = ACTIONS(1015), + [aux_sym_cmd_identifier_token28] = ACTIONS(1015), + [aux_sym_cmd_identifier_token29] = ACTIONS(1015), + [aux_sym_cmd_identifier_token30] = ACTIONS(1015), + [aux_sym_cmd_identifier_token31] = ACTIONS(1015), + [aux_sym_cmd_identifier_token32] = ACTIONS(1015), + [aux_sym_cmd_identifier_token33] = ACTIONS(1015), + [aux_sym_cmd_identifier_token34] = ACTIONS(1015), + [aux_sym_cmd_identifier_token35] = ACTIONS(1015), + [aux_sym_cmd_identifier_token36] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1015), + [anon_sym_false] = ACTIONS(1015), + [anon_sym_null] = ACTIONS(1015), + [aux_sym_cmd_identifier_token38] = ACTIONS(1015), + [aux_sym_cmd_identifier_token39] = ACTIONS(1015), + [aux_sym_cmd_identifier_token40] = ACTIONS(1015), + [anon_sym_def] = ACTIONS(1015), + [anon_sym_export_DASHenv] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_error] = ACTIONS(1015), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_in] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_make] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_source] = ACTIONS(1015), + [anon_sym_source_DASHenv] = ACTIONS(1015), + [anon_sym_register] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_hide_DASHenv] = ACTIONS(1015), + [anon_sym_overlay] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1015), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1015), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1015), + [aux_sym__val_number_decimal_token3] = ACTIONS(1015), + [aux_sym__val_number_decimal_token4] = ACTIONS(1015), + [aux_sym__val_number_token1] = ACTIONS(1015), + [aux_sym__val_number_token2] = ACTIONS(1015), + [aux_sym__val_number_token3] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym__str_single_quotes] = ACTIONS(1015), + [sym__str_back_ticks] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1015), + [sym__entry_separator] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(3), + }, + [252] = { + [sym_comment] = STATE(252), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1696), + [aux_sym__immediate_decimal_token2] = ACTIONS(1698), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [253] = { + [sym_comment] = STATE(253), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_list] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1518), + [sym_duration_unit] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1518), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, - [212] = { - [sym_comment] = STATE(212), - [aux_sym__block_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [254] = { + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(6992), + [aux_sym__parenthesized_body_repeat1] = STATE(254), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_alias] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_let_DASHenv] = ACTIONS(1700), + [anon_sym_mut] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [aux_sym_cmd_identifier_token1] = ACTIONS(1700), + [aux_sym_cmd_identifier_token2] = ACTIONS(1700), + [aux_sym_cmd_identifier_token3] = ACTIONS(1700), + [aux_sym_cmd_identifier_token4] = ACTIONS(1700), + [aux_sym_cmd_identifier_token5] = ACTIONS(1700), + [aux_sym_cmd_identifier_token6] = ACTIONS(1700), + [aux_sym_cmd_identifier_token7] = ACTIONS(1700), + [aux_sym_cmd_identifier_token8] = ACTIONS(1700), + [aux_sym_cmd_identifier_token9] = ACTIONS(1700), + [aux_sym_cmd_identifier_token10] = ACTIONS(1700), + [aux_sym_cmd_identifier_token11] = ACTIONS(1700), + [aux_sym_cmd_identifier_token12] = ACTIONS(1700), + [aux_sym_cmd_identifier_token13] = ACTIONS(1700), + [aux_sym_cmd_identifier_token14] = ACTIONS(1700), + [aux_sym_cmd_identifier_token15] = ACTIONS(1700), + [aux_sym_cmd_identifier_token16] = ACTIONS(1700), + [aux_sym_cmd_identifier_token17] = ACTIONS(1700), + [aux_sym_cmd_identifier_token18] = ACTIONS(1700), + [aux_sym_cmd_identifier_token19] = ACTIONS(1700), + [aux_sym_cmd_identifier_token20] = ACTIONS(1700), + [aux_sym_cmd_identifier_token21] = ACTIONS(1700), + [aux_sym_cmd_identifier_token22] = ACTIONS(1700), + [aux_sym_cmd_identifier_token23] = ACTIONS(1700), + [aux_sym_cmd_identifier_token24] = ACTIONS(1702), + [aux_sym_cmd_identifier_token25] = ACTIONS(1700), + [aux_sym_cmd_identifier_token26] = ACTIONS(1702), + [aux_sym_cmd_identifier_token27] = ACTIONS(1700), + [aux_sym_cmd_identifier_token28] = ACTIONS(1700), + [aux_sym_cmd_identifier_token29] = ACTIONS(1700), + [aux_sym_cmd_identifier_token30] = ACTIONS(1700), + [aux_sym_cmd_identifier_token31] = ACTIONS(1702), + [aux_sym_cmd_identifier_token32] = ACTIONS(1702), + [aux_sym_cmd_identifier_token33] = ACTIONS(1702), + [aux_sym_cmd_identifier_token34] = ACTIONS(1702), + [aux_sym_cmd_identifier_token35] = ACTIONS(1702), + [aux_sym_cmd_identifier_token36] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1702), + [anon_sym_false] = ACTIONS(1702), + [anon_sym_null] = ACTIONS(1702), + [aux_sym_cmd_identifier_token38] = ACTIONS(1700), + [aux_sym_cmd_identifier_token39] = ACTIONS(1702), + [aux_sym_cmd_identifier_token40] = ACTIONS(1702), + [sym__newline] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1700), + [anon_sym_export_DASHenv] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_use] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_error] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_loop] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_source] = ACTIONS(1700), + [anon_sym_source_DASHenv] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_hide] = ACTIONS(1700), + [anon_sym_hide_DASHenv] = ACTIONS(1700), + [anon_sym_overlay] = ACTIONS(1700), + [anon_sym_where] = ACTIONS(1702), + [aux_sym_expr_unary_token1] = ACTIONS(1702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT] = ACTIONS(1702), + [aux_sym__val_number_decimal_token1] = ACTIONS(1700), + [aux_sym__val_number_decimal_token2] = ACTIONS(1702), + [aux_sym__val_number_decimal_token3] = ACTIONS(1702), + [aux_sym__val_number_decimal_token4] = ACTIONS(1702), + [aux_sym__val_number_token1] = ACTIONS(1702), + [aux_sym__val_number_token2] = ACTIONS(1702), + [aux_sym__val_number_token3] = ACTIONS(1702), + [anon_sym_0b] = ACTIONS(1700), + [anon_sym_0o] = ACTIONS(1700), + [anon_sym_0x] = ACTIONS(1700), + [sym_val_date] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym__str_single_quotes] = ACTIONS(1702), + [sym__str_back_ticks] = ACTIONS(1702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1702), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1702), + [aux_sym_env_var_token1] = ACTIONS(1700), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(247), + }, + [255] = { + [sym_comment] = STATE(255), + [anon_sym_export] = ACTIONS(1540), + [anon_sym_alias] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_let_DASHenv] = ACTIONS(1540), + [anon_sym_mut] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [aux_sym_cmd_identifier_token1] = ACTIONS(1540), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1540), + [aux_sym_cmd_identifier_token9] = ACTIONS(1540), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1540), + [aux_sym_cmd_identifier_token13] = ACTIONS(1540), + [aux_sym_cmd_identifier_token14] = ACTIONS(1540), + [aux_sym_cmd_identifier_token15] = ACTIONS(1540), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1540), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1540), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1540), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1540), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [anon_sym_def] = ACTIONS(1540), + [anon_sym_export_DASHenv] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_module] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_error] = ACTIONS(1540), + [anon_sym_list] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_make] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_try] = ACTIONS(1540), + [anon_sym_catch] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_source] = ACTIONS(1540), + [anon_sym_source_DASHenv] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_hide] = ACTIONS(1540), + [anon_sym_hide_DASHenv] = ACTIONS(1540), + [anon_sym_overlay] = ACTIONS(1540), + [anon_sym_new] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1540), + [sym_duration_unit] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1540), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(247), + }, + [256] = { + [sym_comment] = STATE(256), + [anon_sym_export] = ACTIONS(1554), + [anon_sym_alias] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_let_DASHenv] = ACTIONS(1554), + [anon_sym_mut] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [aux_sym_cmd_identifier_token1] = ACTIONS(1554), + [aux_sym_cmd_identifier_token2] = ACTIONS(1554), + [aux_sym_cmd_identifier_token3] = ACTIONS(1554), + [aux_sym_cmd_identifier_token4] = ACTIONS(1554), + [aux_sym_cmd_identifier_token5] = ACTIONS(1554), + [aux_sym_cmd_identifier_token6] = ACTIONS(1554), + [aux_sym_cmd_identifier_token7] = ACTIONS(1554), + [aux_sym_cmd_identifier_token8] = ACTIONS(1554), + [aux_sym_cmd_identifier_token9] = ACTIONS(1554), + [aux_sym_cmd_identifier_token10] = ACTIONS(1554), + [aux_sym_cmd_identifier_token11] = ACTIONS(1554), + [aux_sym_cmd_identifier_token12] = ACTIONS(1554), + [aux_sym_cmd_identifier_token13] = ACTIONS(1554), + [aux_sym_cmd_identifier_token14] = ACTIONS(1554), + [aux_sym_cmd_identifier_token15] = ACTIONS(1554), + [aux_sym_cmd_identifier_token16] = ACTIONS(1554), + [aux_sym_cmd_identifier_token17] = ACTIONS(1554), + [aux_sym_cmd_identifier_token18] = ACTIONS(1554), + [aux_sym_cmd_identifier_token19] = ACTIONS(1554), + [aux_sym_cmd_identifier_token20] = ACTIONS(1554), + [aux_sym_cmd_identifier_token21] = ACTIONS(1554), + [aux_sym_cmd_identifier_token22] = ACTIONS(1554), + [aux_sym_cmd_identifier_token23] = ACTIONS(1554), + [aux_sym_cmd_identifier_token24] = ACTIONS(1554), + [aux_sym_cmd_identifier_token25] = ACTIONS(1554), + [aux_sym_cmd_identifier_token26] = ACTIONS(1554), + [aux_sym_cmd_identifier_token27] = ACTIONS(1554), + [aux_sym_cmd_identifier_token28] = ACTIONS(1554), + [aux_sym_cmd_identifier_token29] = ACTIONS(1554), + [aux_sym_cmd_identifier_token30] = ACTIONS(1554), + [aux_sym_cmd_identifier_token31] = ACTIONS(1554), + [aux_sym_cmd_identifier_token32] = ACTIONS(1554), + [aux_sym_cmd_identifier_token33] = ACTIONS(1554), + [aux_sym_cmd_identifier_token34] = ACTIONS(1554), + [aux_sym_cmd_identifier_token35] = ACTIONS(1554), + [aux_sym_cmd_identifier_token36] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1554), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = ACTIONS(1556), + [anon_sym_def] = ACTIONS(1554), + [anon_sym_export_DASHenv] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_module] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_error] = ACTIONS(1554), + [anon_sym_list] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_make] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_try] = ACTIONS(1554), + [anon_sym_catch] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_source] = ACTIONS(1554), + [anon_sym_source_DASHenv] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_hide] = ACTIONS(1554), + [anon_sym_hide_DASHenv] = ACTIONS(1554), + [anon_sym_overlay] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1554), + [sym_duration_unit] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1554), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [257] = { + [sym_comment] = STATE(257), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1653), + [aux_sym_cmd_identifier_token3] = ACTIONS(1653), + [aux_sym_cmd_identifier_token4] = ACTIONS(1653), + [aux_sym_cmd_identifier_token5] = ACTIONS(1653), + [aux_sym_cmd_identifier_token6] = ACTIONS(1653), + [aux_sym_cmd_identifier_token7] = ACTIONS(1653), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1653), + [aux_sym_cmd_identifier_token11] = ACTIONS(1653), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1653), + [aux_sym_cmd_identifier_token17] = ACTIONS(1653), + [aux_sym_cmd_identifier_token18] = ACTIONS(1653), + [aux_sym_cmd_identifier_token19] = ACTIONS(1653), + [aux_sym_cmd_identifier_token20] = ACTIONS(1653), + [aux_sym_cmd_identifier_token21] = ACTIONS(1653), + [aux_sym_cmd_identifier_token22] = ACTIONS(1653), + [aux_sym_cmd_identifier_token23] = ACTIONS(1653), [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token25] = ACTIONS(1653), [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token27] = ACTIONS(1653), + [aux_sym_cmd_identifier_token28] = ACTIONS(1653), + [aux_sym_cmd_identifier_token29] = ACTIONS(1653), + [aux_sym_cmd_identifier_token30] = ACTIONS(1653), [aux_sym_cmd_identifier_token31] = ACTIONS(1653), [aux_sym_cmd_identifier_token32] = ACTIONS(1653), [aux_sym_cmd_identifier_token33] = ACTIONS(1653), [aux_sym_cmd_identifier_token34] = ACTIONS(1653), [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1655), + [aux_sym_cmd_identifier_token40] = ACTIONS(1655), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_list] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token3] = ACTIONS(1655), + [aux_sym__val_number_decimal_token4] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1653), + [sym_duration_unit] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1653), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, - [213] = { - [sym__expr_parenthesized_immediate] = STATE(7323), - [sym_comment] = STATE(213), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_list] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1672), - [sym_duration_unit] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1676), + [258] = { + [sym_comment] = STATE(258), + [aux_sym_shebang_repeat1] = STATE(314), + [aux_sym__parenthesized_body_repeat1] = STATE(254), + [anon_sym_export] = ACTIONS(1710), + [anon_sym_alias] = ACTIONS(1710), + [anon_sym_let] = ACTIONS(1710), + [anon_sym_let_DASHenv] = ACTIONS(1710), + [anon_sym_mut] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [aux_sym_cmd_identifier_token1] = ACTIONS(1710), + [aux_sym_cmd_identifier_token2] = ACTIONS(1710), + [aux_sym_cmd_identifier_token3] = ACTIONS(1710), + [aux_sym_cmd_identifier_token4] = ACTIONS(1710), + [aux_sym_cmd_identifier_token5] = ACTIONS(1710), + [aux_sym_cmd_identifier_token6] = ACTIONS(1710), + [aux_sym_cmd_identifier_token7] = ACTIONS(1710), + [aux_sym_cmd_identifier_token8] = ACTIONS(1710), + [aux_sym_cmd_identifier_token9] = ACTIONS(1710), + [aux_sym_cmd_identifier_token10] = ACTIONS(1710), + [aux_sym_cmd_identifier_token11] = ACTIONS(1710), + [aux_sym_cmd_identifier_token12] = ACTIONS(1710), + [aux_sym_cmd_identifier_token13] = ACTIONS(1710), + [aux_sym_cmd_identifier_token14] = ACTIONS(1710), + [aux_sym_cmd_identifier_token15] = ACTIONS(1710), + [aux_sym_cmd_identifier_token16] = ACTIONS(1710), + [aux_sym_cmd_identifier_token17] = ACTIONS(1710), + [aux_sym_cmd_identifier_token18] = ACTIONS(1710), + [aux_sym_cmd_identifier_token19] = ACTIONS(1710), + [aux_sym_cmd_identifier_token20] = ACTIONS(1710), + [aux_sym_cmd_identifier_token21] = ACTIONS(1710), + [aux_sym_cmd_identifier_token22] = ACTIONS(1710), + [aux_sym_cmd_identifier_token23] = ACTIONS(1710), + [aux_sym_cmd_identifier_token24] = ACTIONS(1712), + [aux_sym_cmd_identifier_token25] = ACTIONS(1710), + [aux_sym_cmd_identifier_token26] = ACTIONS(1712), + [aux_sym_cmd_identifier_token27] = ACTIONS(1710), + [aux_sym_cmd_identifier_token28] = ACTIONS(1710), + [aux_sym_cmd_identifier_token29] = ACTIONS(1710), + [aux_sym_cmd_identifier_token30] = ACTIONS(1710), + [aux_sym_cmd_identifier_token31] = ACTIONS(1712), + [aux_sym_cmd_identifier_token32] = ACTIONS(1712), + [aux_sym_cmd_identifier_token33] = ACTIONS(1712), + [aux_sym_cmd_identifier_token34] = ACTIONS(1712), + [aux_sym_cmd_identifier_token35] = ACTIONS(1712), + [aux_sym_cmd_identifier_token36] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), + [anon_sym_null] = ACTIONS(1712), + [aux_sym_cmd_identifier_token38] = ACTIONS(1710), + [aux_sym_cmd_identifier_token39] = ACTIONS(1712), + [aux_sym_cmd_identifier_token40] = ACTIONS(1712), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_def] = ACTIONS(1710), + [anon_sym_export_DASHenv] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_module] = ACTIONS(1710), + [anon_sym_use] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_error] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_loop] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_do] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_DOT_DOT] = ACTIONS(1710), + [anon_sym_try] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_source] = ACTIONS(1710), + [anon_sym_source_DASHenv] = ACTIONS(1710), + [anon_sym_register] = ACTIONS(1710), + [anon_sym_hide] = ACTIONS(1710), + [anon_sym_hide_DASHenv] = ACTIONS(1710), + [anon_sym_overlay] = ACTIONS(1710), + [anon_sym_where] = ACTIONS(1712), + [aux_sym_expr_unary_token1] = ACTIONS(1712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1712), + [anon_sym_DOT_DOT_LT] = ACTIONS(1712), + [aux_sym__val_number_decimal_token1] = ACTIONS(1710), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1712), + [aux_sym__val_number_token2] = ACTIONS(1712), + [aux_sym__val_number_token3] = ACTIONS(1712), + [anon_sym_0b] = ACTIONS(1710), + [anon_sym_0o] = ACTIONS(1710), + [anon_sym_0x] = ACTIONS(1710), + [sym_val_date] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [sym__str_single_quotes] = ACTIONS(1712), + [sym__str_back_ticks] = ACTIONS(1712), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1712), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1712), + [aux_sym_env_var_token1] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1712), [anon_sym_POUND] = ACTIONS(247), }, - [214] = { - [sym_comment] = STATE(214), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [aux_sym_cmd_identifier_token1] = ACTIONS(1497), - [aux_sym_cmd_identifier_token2] = ACTIONS(1497), - [aux_sym_cmd_identifier_token3] = ACTIONS(1497), - [aux_sym_cmd_identifier_token4] = ACTIONS(1497), - [aux_sym_cmd_identifier_token5] = ACTIONS(1497), - [aux_sym_cmd_identifier_token6] = ACTIONS(1497), - [aux_sym_cmd_identifier_token7] = ACTIONS(1497), - [aux_sym_cmd_identifier_token8] = ACTIONS(1497), - [aux_sym_cmd_identifier_token9] = ACTIONS(1497), - [aux_sym_cmd_identifier_token10] = ACTIONS(1497), - [aux_sym_cmd_identifier_token11] = ACTIONS(1497), - [aux_sym_cmd_identifier_token12] = ACTIONS(1497), - [aux_sym_cmd_identifier_token13] = ACTIONS(1497), - [aux_sym_cmd_identifier_token14] = ACTIONS(1497), - [aux_sym_cmd_identifier_token15] = ACTIONS(1497), - [aux_sym_cmd_identifier_token16] = ACTIONS(1497), - [aux_sym_cmd_identifier_token17] = ACTIONS(1497), - [aux_sym_cmd_identifier_token18] = ACTIONS(1497), - [aux_sym_cmd_identifier_token19] = ACTIONS(1497), - [aux_sym_cmd_identifier_token20] = ACTIONS(1497), - [aux_sym_cmd_identifier_token21] = ACTIONS(1497), - [aux_sym_cmd_identifier_token22] = ACTIONS(1497), - [aux_sym_cmd_identifier_token23] = ACTIONS(1497), - [aux_sym_cmd_identifier_token24] = ACTIONS(1497), - [aux_sym_cmd_identifier_token25] = ACTIONS(1497), - [aux_sym_cmd_identifier_token26] = ACTIONS(1497), - [aux_sym_cmd_identifier_token27] = ACTIONS(1497), - [aux_sym_cmd_identifier_token28] = ACTIONS(1497), - [aux_sym_cmd_identifier_token29] = ACTIONS(1497), - [aux_sym_cmd_identifier_token30] = ACTIONS(1497), - [aux_sym_cmd_identifier_token31] = ACTIONS(1497), - [aux_sym_cmd_identifier_token32] = ACTIONS(1497), - [aux_sym_cmd_identifier_token33] = ACTIONS(1497), - [aux_sym_cmd_identifier_token34] = ACTIONS(1497), - [aux_sym_cmd_identifier_token35] = ACTIONS(1497), - [aux_sym_cmd_identifier_token36] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1497), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_list] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_make] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1497), - [sym_duration_unit] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [259] = { + [sym_comment] = STATE(259), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [260] = { + [sym_comment] = STATE(260), + [aux_sym__block_body_repeat1] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(1636), + [anon_sym_export] = ACTIONS(1634), + [anon_sym_alias] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_let_DASHenv] = ACTIONS(1634), + [anon_sym_mut] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [aux_sym_cmd_identifier_token1] = ACTIONS(1634), + [aux_sym_cmd_identifier_token2] = ACTIONS(1634), + [aux_sym_cmd_identifier_token3] = ACTIONS(1634), + [aux_sym_cmd_identifier_token4] = ACTIONS(1634), + [aux_sym_cmd_identifier_token5] = ACTIONS(1634), + [aux_sym_cmd_identifier_token6] = ACTIONS(1634), + [aux_sym_cmd_identifier_token7] = ACTIONS(1634), + [aux_sym_cmd_identifier_token8] = ACTIONS(1634), + [aux_sym_cmd_identifier_token9] = ACTIONS(1634), + [aux_sym_cmd_identifier_token10] = ACTIONS(1634), + [aux_sym_cmd_identifier_token11] = ACTIONS(1634), + [aux_sym_cmd_identifier_token12] = ACTIONS(1634), + [aux_sym_cmd_identifier_token13] = ACTIONS(1634), + [aux_sym_cmd_identifier_token14] = ACTIONS(1634), + [aux_sym_cmd_identifier_token15] = ACTIONS(1634), + [aux_sym_cmd_identifier_token16] = ACTIONS(1634), + [aux_sym_cmd_identifier_token17] = ACTIONS(1634), + [aux_sym_cmd_identifier_token18] = ACTIONS(1634), + [aux_sym_cmd_identifier_token19] = ACTIONS(1634), + [aux_sym_cmd_identifier_token20] = ACTIONS(1634), + [aux_sym_cmd_identifier_token21] = ACTIONS(1634), + [aux_sym_cmd_identifier_token22] = ACTIONS(1634), + [aux_sym_cmd_identifier_token23] = ACTIONS(1634), + [aux_sym_cmd_identifier_token24] = ACTIONS(1636), + [aux_sym_cmd_identifier_token25] = ACTIONS(1634), + [aux_sym_cmd_identifier_token26] = ACTIONS(1636), + [aux_sym_cmd_identifier_token27] = ACTIONS(1634), + [aux_sym_cmd_identifier_token28] = ACTIONS(1634), + [aux_sym_cmd_identifier_token29] = ACTIONS(1634), + [aux_sym_cmd_identifier_token30] = ACTIONS(1634), + [aux_sym_cmd_identifier_token31] = ACTIONS(1636), + [aux_sym_cmd_identifier_token32] = ACTIONS(1636), + [aux_sym_cmd_identifier_token33] = ACTIONS(1636), + [aux_sym_cmd_identifier_token34] = ACTIONS(1636), + [aux_sym_cmd_identifier_token35] = ACTIONS(1636), + [aux_sym_cmd_identifier_token36] = ACTIONS(1634), + [anon_sym_true] = ACTIONS(1636), + [anon_sym_false] = ACTIONS(1636), + [anon_sym_null] = ACTIONS(1636), + [aux_sym_cmd_identifier_token38] = ACTIONS(1634), + [aux_sym_cmd_identifier_token39] = ACTIONS(1636), + [aux_sym_cmd_identifier_token40] = ACTIONS(1636), + [sym__newline] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_def] = ACTIONS(1634), + [anon_sym_export_DASHenv] = ACTIONS(1634), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_module] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_error] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_do] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1634), + [anon_sym_try] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_source] = ACTIONS(1634), + [anon_sym_source_DASHenv] = ACTIONS(1634), + [anon_sym_register] = ACTIONS(1634), + [anon_sym_hide] = ACTIONS(1634), + [anon_sym_hide_DASHenv] = ACTIONS(1634), + [anon_sym_overlay] = ACTIONS(1634), + [anon_sym_where] = ACTIONS(1636), + [aux_sym_expr_unary_token1] = ACTIONS(1636), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1636), + [anon_sym_DOT_DOT_LT] = ACTIONS(1636), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1636), + [aux_sym__val_number_decimal_token4] = ACTIONS(1636), + [aux_sym__val_number_token1] = ACTIONS(1636), + [aux_sym__val_number_token2] = ACTIONS(1636), + [aux_sym__val_number_token3] = ACTIONS(1636), + [anon_sym_0b] = ACTIONS(1634), + [anon_sym_0o] = ACTIONS(1634), + [anon_sym_0x] = ACTIONS(1634), + [sym_val_date] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [sym__str_single_quotes] = ACTIONS(1636), + [sym__str_back_ticks] = ACTIONS(1636), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), + [aux_sym_env_var_token1] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1636), [anon_sym_POUND] = ACTIONS(247), }, - [215] = { - [sym__expr_parenthesized_immediate] = STATE(638), - [sym__immediate_decimal] = STATE(643), - [sym_val_variable] = STATE(638), - [sym_comment] = STATE(215), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [aux_sym_cmd_identifier_token1] = ACTIONS(1505), - [aux_sym_cmd_identifier_token2] = ACTIONS(1505), - [aux_sym_cmd_identifier_token3] = ACTIONS(1505), - [aux_sym_cmd_identifier_token4] = ACTIONS(1505), - [aux_sym_cmd_identifier_token5] = ACTIONS(1505), - [aux_sym_cmd_identifier_token6] = ACTIONS(1505), - [aux_sym_cmd_identifier_token7] = ACTIONS(1505), - [aux_sym_cmd_identifier_token8] = ACTIONS(1505), - [aux_sym_cmd_identifier_token9] = ACTIONS(1505), - [aux_sym_cmd_identifier_token10] = ACTIONS(1505), - [aux_sym_cmd_identifier_token11] = ACTIONS(1505), - [aux_sym_cmd_identifier_token12] = ACTIONS(1505), - [aux_sym_cmd_identifier_token13] = ACTIONS(1505), - [aux_sym_cmd_identifier_token14] = ACTIONS(1505), - [aux_sym_cmd_identifier_token15] = ACTIONS(1505), - [aux_sym_cmd_identifier_token16] = ACTIONS(1505), - [aux_sym_cmd_identifier_token17] = ACTIONS(1505), - [aux_sym_cmd_identifier_token18] = ACTIONS(1505), - [aux_sym_cmd_identifier_token19] = ACTIONS(1505), - [aux_sym_cmd_identifier_token20] = ACTIONS(1505), - [aux_sym_cmd_identifier_token21] = ACTIONS(1505), - [aux_sym_cmd_identifier_token22] = ACTIONS(1505), - [aux_sym_cmd_identifier_token23] = ACTIONS(1505), - [aux_sym_cmd_identifier_token24] = ACTIONS(1505), - [aux_sym_cmd_identifier_token25] = ACTIONS(1505), - [aux_sym_cmd_identifier_token26] = ACTIONS(1505), - [aux_sym_cmd_identifier_token27] = ACTIONS(1505), - [aux_sym_cmd_identifier_token28] = ACTIONS(1505), - [aux_sym_cmd_identifier_token29] = ACTIONS(1505), - [aux_sym_cmd_identifier_token30] = ACTIONS(1505), - [aux_sym_cmd_identifier_token31] = ACTIONS(1505), - [aux_sym_cmd_identifier_token32] = ACTIONS(1505), - [aux_sym_cmd_identifier_token33] = ACTIONS(1505), - [aux_sym_cmd_identifier_token34] = ACTIONS(1505), - [aux_sym_cmd_identifier_token35] = ACTIONS(1505), - [aux_sym_cmd_identifier_token36] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [aux_sym_cmd_identifier_token38] = ACTIONS(1505), - [aux_sym_cmd_identifier_token39] = ACTIONS(1515), - [aux_sym_cmd_identifier_token40] = ACTIONS(1515), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_list] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_make] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_catch] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_new] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1515), - [aux_sym__immediate_decimal_token1] = ACTIONS(1678), - [aux_sym__immediate_decimal_token3] = ACTIONS(1680), - [aux_sym__immediate_decimal_token4] = ACTIONS(1682), - [aux_sym__immediate_decimal_token5] = ACTIONS(1684), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1515), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1505), + [261] = { + [sym_comment] = STATE(261), + [aux_sym__block_body_repeat1] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), [anon_sym_POUND] = ACTIONS(247), }, - [216] = { - [sym_cell_path] = STATE(407), - [sym_path] = STATE(340), - [sym_comment] = STATE(216), - [aux_sym_cell_path_repeat1] = STATE(225), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_alias] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_let_DASHenv] = ACTIONS(1686), - [anon_sym_mut] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [aux_sym_cmd_identifier_token1] = ACTIONS(1686), - [aux_sym_cmd_identifier_token2] = ACTIONS(1686), - [aux_sym_cmd_identifier_token3] = ACTIONS(1686), - [aux_sym_cmd_identifier_token4] = ACTIONS(1686), - [aux_sym_cmd_identifier_token5] = ACTIONS(1686), - [aux_sym_cmd_identifier_token6] = ACTIONS(1686), - [aux_sym_cmd_identifier_token7] = ACTIONS(1686), - [aux_sym_cmd_identifier_token8] = ACTIONS(1686), - [aux_sym_cmd_identifier_token9] = ACTIONS(1686), - [aux_sym_cmd_identifier_token10] = ACTIONS(1686), - [aux_sym_cmd_identifier_token11] = ACTIONS(1686), - [aux_sym_cmd_identifier_token12] = ACTIONS(1686), - [aux_sym_cmd_identifier_token13] = ACTIONS(1686), - [aux_sym_cmd_identifier_token14] = ACTIONS(1686), - [aux_sym_cmd_identifier_token15] = ACTIONS(1686), - [aux_sym_cmd_identifier_token16] = ACTIONS(1686), - [aux_sym_cmd_identifier_token17] = ACTIONS(1686), - [aux_sym_cmd_identifier_token18] = ACTIONS(1686), - [aux_sym_cmd_identifier_token19] = ACTIONS(1686), - [aux_sym_cmd_identifier_token20] = ACTIONS(1686), - [aux_sym_cmd_identifier_token21] = ACTIONS(1686), - [aux_sym_cmd_identifier_token22] = ACTIONS(1686), - [aux_sym_cmd_identifier_token23] = ACTIONS(1686), - [aux_sym_cmd_identifier_token24] = ACTIONS(1686), - [aux_sym_cmd_identifier_token25] = ACTIONS(1686), - [aux_sym_cmd_identifier_token26] = ACTIONS(1686), - [aux_sym_cmd_identifier_token27] = ACTIONS(1686), - [aux_sym_cmd_identifier_token28] = ACTIONS(1686), - [aux_sym_cmd_identifier_token29] = ACTIONS(1686), - [aux_sym_cmd_identifier_token30] = ACTIONS(1686), - [aux_sym_cmd_identifier_token31] = ACTIONS(1686), - [aux_sym_cmd_identifier_token32] = ACTIONS(1686), - [aux_sym_cmd_identifier_token33] = ACTIONS(1686), - [aux_sym_cmd_identifier_token34] = ACTIONS(1686), - [aux_sym_cmd_identifier_token35] = ACTIONS(1686), - [aux_sym_cmd_identifier_token36] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [aux_sym_cmd_identifier_token38] = ACTIONS(1686), - [aux_sym_cmd_identifier_token39] = ACTIONS(1686), - [aux_sym_cmd_identifier_token40] = ACTIONS(1686), - [anon_sym_def] = ACTIONS(1686), - [anon_sym_export_DASHenv] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_module] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_error] = ACTIONS(1686), - [anon_sym_list] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_make] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_catch] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_source] = ACTIONS(1686), - [anon_sym_source_DASHenv] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_hide] = ACTIONS(1686), - [anon_sym_hide_DASHenv] = ACTIONS(1686), - [anon_sym_overlay] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1686), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1627), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), - [aux_sym__val_number_decimal_token1] = ACTIONS(1686), - [aux_sym__val_number_decimal_token2] = ACTIONS(1686), - [aux_sym__val_number_decimal_token3] = ACTIONS(1686), - [aux_sym__val_number_decimal_token4] = ACTIONS(1686), - [aux_sym__val_number_token1] = ACTIONS(1686), - [aux_sym__val_number_token2] = ACTIONS(1686), - [aux_sym__val_number_token3] = ACTIONS(1686), - [anon_sym_DQUOTE] = ACTIONS(1686), - [sym__str_single_quotes] = ACTIONS(1686), - [sym__str_back_ticks] = ACTIONS(1686), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), - [sym__entry_separator] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), + [262] = { + [sym_comment] = STATE(262), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [217] = { - [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_list] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(1690), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1565), - [sym_duration_unit] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1565), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), + [263] = { + [sym_comment] = STATE(263), + [aux_sym__block_body_repeat1] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), [anon_sym_POUND] = ACTIONS(247), }, - [218] = { - [sym__expr_parenthesized_immediate] = STATE(627), - [sym__immediate_decimal] = STATE(636), - [sym_val_variable] = STATE(627), - [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(1617), - [anon_sym_alias] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_let_DASHenv] = ACTIONS(1617), - [anon_sym_mut] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [aux_sym_cmd_identifier_token1] = ACTIONS(1617), - [aux_sym_cmd_identifier_token2] = ACTIONS(1617), - [aux_sym_cmd_identifier_token3] = ACTIONS(1617), - [aux_sym_cmd_identifier_token4] = ACTIONS(1617), - [aux_sym_cmd_identifier_token5] = ACTIONS(1617), - [aux_sym_cmd_identifier_token6] = ACTIONS(1617), - [aux_sym_cmd_identifier_token7] = ACTIONS(1617), - [aux_sym_cmd_identifier_token8] = ACTIONS(1617), - [aux_sym_cmd_identifier_token9] = ACTIONS(1617), - [aux_sym_cmd_identifier_token10] = ACTIONS(1617), - [aux_sym_cmd_identifier_token11] = ACTIONS(1617), - [aux_sym_cmd_identifier_token12] = ACTIONS(1617), - [aux_sym_cmd_identifier_token13] = ACTIONS(1617), - [aux_sym_cmd_identifier_token14] = ACTIONS(1617), - [aux_sym_cmd_identifier_token15] = ACTIONS(1617), - [aux_sym_cmd_identifier_token16] = ACTIONS(1617), - [aux_sym_cmd_identifier_token17] = ACTIONS(1617), - [aux_sym_cmd_identifier_token18] = ACTIONS(1617), - [aux_sym_cmd_identifier_token19] = ACTIONS(1617), - [aux_sym_cmd_identifier_token20] = ACTIONS(1617), - [aux_sym_cmd_identifier_token21] = ACTIONS(1617), - [aux_sym_cmd_identifier_token22] = ACTIONS(1617), - [aux_sym_cmd_identifier_token23] = ACTIONS(1617), - [aux_sym_cmd_identifier_token24] = ACTIONS(1617), - [aux_sym_cmd_identifier_token25] = ACTIONS(1617), - [aux_sym_cmd_identifier_token26] = ACTIONS(1617), - [aux_sym_cmd_identifier_token27] = ACTIONS(1617), - [aux_sym_cmd_identifier_token28] = ACTIONS(1617), - [aux_sym_cmd_identifier_token29] = ACTIONS(1617), - [aux_sym_cmd_identifier_token30] = ACTIONS(1617), - [aux_sym_cmd_identifier_token31] = ACTIONS(1617), - [aux_sym_cmd_identifier_token32] = ACTIONS(1617), - [aux_sym_cmd_identifier_token33] = ACTIONS(1617), - [aux_sym_cmd_identifier_token34] = ACTIONS(1617), - [aux_sym_cmd_identifier_token35] = ACTIONS(1617), - [aux_sym_cmd_identifier_token36] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [aux_sym_cmd_identifier_token38] = ACTIONS(1617), - [aux_sym_cmd_identifier_token39] = ACTIONS(1619), - [aux_sym_cmd_identifier_token40] = ACTIONS(1619), - [anon_sym_def] = ACTIONS(1617), - [anon_sym_export_DASHenv] = ACTIONS(1617), - [anon_sym_extern] = ACTIONS(1617), - [anon_sym_module] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1617), - [anon_sym_list] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_make] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_else] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(1617), - [anon_sym_catch] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_source] = ACTIONS(1617), - [anon_sym_source_DASHenv] = ACTIONS(1617), - [anon_sym_register] = ACTIONS(1617), - [anon_sym_hide] = ACTIONS(1617), - [anon_sym_hide_DASHenv] = ACTIONS(1617), - [anon_sym_overlay] = ACTIONS(1617), - [anon_sym_new] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1619), - [aux_sym__immediate_decimal_token1] = ACTIONS(1678), - [aux_sym__immediate_decimal_token3] = ACTIONS(1680), - [aux_sym__immediate_decimal_token4] = ACTIONS(1682), - [aux_sym__immediate_decimal_token5] = ACTIONS(1684), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1619), - [aux_sym__val_number_decimal_token1] = ACTIONS(1617), - [aux_sym__val_number_decimal_token2] = ACTIONS(1617), - [aux_sym__val_number_decimal_token3] = ACTIONS(1617), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(1619), - [aux_sym__val_number_token2] = ACTIONS(1619), - [aux_sym__val_number_token3] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [sym__str_single_quotes] = ACTIONS(1619), - [sym__str_back_ticks] = ACTIONS(1619), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1617), + [264] = { + [sym_comment] = STATE(264), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, - [219] = { - [sym__expr_parenthesized_immediate] = STATE(597), - [sym__immediate_decimal] = STATE(610), - [sym_val_variable] = STATE(597), - [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(1621), - [anon_sym_alias] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_let_DASHenv] = ACTIONS(1621), - [anon_sym_mut] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [aux_sym_cmd_identifier_token1] = ACTIONS(1621), - [aux_sym_cmd_identifier_token2] = ACTIONS(1621), - [aux_sym_cmd_identifier_token3] = ACTIONS(1621), - [aux_sym_cmd_identifier_token4] = ACTIONS(1621), - [aux_sym_cmd_identifier_token5] = ACTIONS(1621), - [aux_sym_cmd_identifier_token6] = ACTIONS(1621), - [aux_sym_cmd_identifier_token7] = ACTIONS(1621), - [aux_sym_cmd_identifier_token8] = ACTIONS(1621), - [aux_sym_cmd_identifier_token9] = ACTIONS(1621), - [aux_sym_cmd_identifier_token10] = ACTIONS(1621), - [aux_sym_cmd_identifier_token11] = ACTIONS(1621), - [aux_sym_cmd_identifier_token12] = ACTIONS(1621), - [aux_sym_cmd_identifier_token13] = ACTIONS(1621), - [aux_sym_cmd_identifier_token14] = ACTIONS(1621), - [aux_sym_cmd_identifier_token15] = ACTIONS(1621), - [aux_sym_cmd_identifier_token16] = ACTIONS(1621), - [aux_sym_cmd_identifier_token17] = ACTIONS(1621), - [aux_sym_cmd_identifier_token18] = ACTIONS(1621), - [aux_sym_cmd_identifier_token19] = ACTIONS(1621), - [aux_sym_cmd_identifier_token20] = ACTIONS(1621), - [aux_sym_cmd_identifier_token21] = ACTIONS(1621), - [aux_sym_cmd_identifier_token22] = ACTIONS(1621), - [aux_sym_cmd_identifier_token23] = ACTIONS(1621), - [aux_sym_cmd_identifier_token24] = ACTIONS(1621), - [aux_sym_cmd_identifier_token25] = ACTIONS(1621), - [aux_sym_cmd_identifier_token26] = ACTIONS(1621), - [aux_sym_cmd_identifier_token27] = ACTIONS(1621), - [aux_sym_cmd_identifier_token28] = ACTIONS(1621), - [aux_sym_cmd_identifier_token29] = ACTIONS(1621), - [aux_sym_cmd_identifier_token30] = ACTIONS(1621), - [aux_sym_cmd_identifier_token31] = ACTIONS(1621), - [aux_sym_cmd_identifier_token32] = ACTIONS(1621), - [aux_sym_cmd_identifier_token33] = ACTIONS(1621), - [aux_sym_cmd_identifier_token34] = ACTIONS(1621), - [aux_sym_cmd_identifier_token35] = ACTIONS(1621), - [aux_sym_cmd_identifier_token36] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [aux_sym_cmd_identifier_token38] = ACTIONS(1621), - [aux_sym_cmd_identifier_token39] = ACTIONS(1623), - [aux_sym_cmd_identifier_token40] = ACTIONS(1623), - [anon_sym_def] = ACTIONS(1621), - [anon_sym_export_DASHenv] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_module] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1621), - [anon_sym_list] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_in] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_make] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_source] = ACTIONS(1621), - [anon_sym_source_DASHenv] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_hide_DASHenv] = ACTIONS(1621), - [anon_sym_overlay] = ACTIONS(1621), - [anon_sym_new] = ACTIONS(1621), - [anon_sym_as] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(1678), - [aux_sym__immediate_decimal_token3] = ACTIONS(1680), - [aux_sym__immediate_decimal_token4] = ACTIONS(1682), - [aux_sym__immediate_decimal_token5] = ACTIONS(1684), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1621), - [aux_sym__val_number_decimal_token3] = ACTIONS(1621), - [aux_sym__val_number_decimal_token4] = ACTIONS(1621), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), + [265] = { + [sym_comment] = STATE(265), + [aux_sym__block_body_repeat1] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(1657), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), [anon_sym_POUND] = ACTIONS(247), }, - [220] = { - [sym__expr_parenthesized_immediate] = STATE(639), - [sym__immediate_decimal] = STATE(601), - [sym_val_variable] = STATE(639), - [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(1561), - [anon_sym_alias] = ACTIONS(1561), - [anon_sym_let] = ACTIONS(1561), - [anon_sym_let_DASHenv] = ACTIONS(1561), - [anon_sym_mut] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [aux_sym_cmd_identifier_token1] = ACTIONS(1561), - [aux_sym_cmd_identifier_token2] = ACTIONS(1561), - [aux_sym_cmd_identifier_token3] = ACTIONS(1561), - [aux_sym_cmd_identifier_token4] = ACTIONS(1561), - [aux_sym_cmd_identifier_token5] = ACTIONS(1561), - [aux_sym_cmd_identifier_token6] = ACTIONS(1561), - [aux_sym_cmd_identifier_token7] = ACTIONS(1561), - [aux_sym_cmd_identifier_token8] = ACTIONS(1561), - [aux_sym_cmd_identifier_token9] = ACTIONS(1561), - [aux_sym_cmd_identifier_token10] = ACTIONS(1561), - [aux_sym_cmd_identifier_token11] = ACTIONS(1561), - [aux_sym_cmd_identifier_token12] = ACTIONS(1561), - [aux_sym_cmd_identifier_token13] = ACTIONS(1561), - [aux_sym_cmd_identifier_token14] = ACTIONS(1561), - [aux_sym_cmd_identifier_token15] = ACTIONS(1561), - [aux_sym_cmd_identifier_token16] = ACTIONS(1561), - [aux_sym_cmd_identifier_token17] = ACTIONS(1561), - [aux_sym_cmd_identifier_token18] = ACTIONS(1561), - [aux_sym_cmd_identifier_token19] = ACTIONS(1561), - [aux_sym_cmd_identifier_token20] = ACTIONS(1561), - [aux_sym_cmd_identifier_token21] = ACTIONS(1561), - [aux_sym_cmd_identifier_token22] = ACTIONS(1561), - [aux_sym_cmd_identifier_token23] = ACTIONS(1561), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1561), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1561), - [aux_sym_cmd_identifier_token28] = ACTIONS(1561), - [aux_sym_cmd_identifier_token29] = ACTIONS(1561), - [aux_sym_cmd_identifier_token30] = ACTIONS(1561), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [aux_sym_cmd_identifier_token38] = ACTIONS(1561), - [aux_sym_cmd_identifier_token39] = ACTIONS(1563), - [aux_sym_cmd_identifier_token40] = ACTIONS(1563), - [anon_sym_def] = ACTIONS(1561), - [anon_sym_export_DASHenv] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym_module] = ACTIONS(1561), - [anon_sym_use] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1561), - [anon_sym_list] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [anon_sym_loop] = ACTIONS(1561), - [anon_sym_make] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_match] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_catch] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_source] = ACTIONS(1561), - [anon_sym_source_DASHenv] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_hide] = ACTIONS(1561), - [anon_sym_hide_DASHenv] = ACTIONS(1561), - [anon_sym_overlay] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1561), - [anon_sym_as] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1563), - [aux_sym__immediate_decimal_token1] = ACTIONS(1678), - [aux_sym__immediate_decimal_token3] = ACTIONS(1680), - [aux_sym__immediate_decimal_token4] = ACTIONS(1682), - [aux_sym__immediate_decimal_token5] = ACTIONS(1684), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1563), - [aux_sym__val_number_decimal_token1] = ACTIONS(1561), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1563), - [aux_sym__val_number_token2] = ACTIONS(1563), - [aux_sym__val_number_token3] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym__str_single_quotes] = ACTIONS(1563), - [sym__str_back_ticks] = ACTIONS(1563), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1561), + [266] = { + [sym_comment] = STATE(266), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_alias] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_let_DASHenv] = ACTIONS(1301), + [anon_sym_mut] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1301), + [aux_sym_cmd_identifier_token3] = ACTIONS(1301), + [aux_sym_cmd_identifier_token4] = ACTIONS(1301), + [aux_sym_cmd_identifier_token5] = ACTIONS(1301), + [aux_sym_cmd_identifier_token6] = ACTIONS(1301), + [aux_sym_cmd_identifier_token7] = ACTIONS(1301), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1301), + [aux_sym_cmd_identifier_token11] = ACTIONS(1301), + [aux_sym_cmd_identifier_token12] = ACTIONS(1301), + [aux_sym_cmd_identifier_token13] = ACTIONS(1301), + [aux_sym_cmd_identifier_token14] = ACTIONS(1301), + [aux_sym_cmd_identifier_token15] = ACTIONS(1301), + [aux_sym_cmd_identifier_token16] = ACTIONS(1301), + [aux_sym_cmd_identifier_token17] = ACTIONS(1301), + [aux_sym_cmd_identifier_token18] = ACTIONS(1301), + [aux_sym_cmd_identifier_token19] = ACTIONS(1301), + [aux_sym_cmd_identifier_token20] = ACTIONS(1301), + [aux_sym_cmd_identifier_token21] = ACTIONS(1301), + [aux_sym_cmd_identifier_token22] = ACTIONS(1301), + [aux_sym_cmd_identifier_token23] = ACTIONS(1301), + [aux_sym_cmd_identifier_token24] = ACTIONS(1304), + [aux_sym_cmd_identifier_token25] = ACTIONS(1301), + [aux_sym_cmd_identifier_token26] = ACTIONS(1304), + [aux_sym_cmd_identifier_token27] = ACTIONS(1301), + [aux_sym_cmd_identifier_token28] = ACTIONS(1301), + [aux_sym_cmd_identifier_token29] = ACTIONS(1301), + [aux_sym_cmd_identifier_token30] = ACTIONS(1301), + [aux_sym_cmd_identifier_token31] = ACTIONS(1304), + [aux_sym_cmd_identifier_token32] = ACTIONS(1304), + [aux_sym_cmd_identifier_token33] = ACTIONS(1304), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1304), + [aux_sym_cmd_identifier_token36] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [anon_sym_null] = ACTIONS(1304), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1304), + [aux_sym_cmd_identifier_token40] = ACTIONS(1304), + [sym__newline] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1301), + [anon_sym_export_DASHenv] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_use] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_error] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_loop] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_match] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_try] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_source] = ACTIONS(1301), + [anon_sym_source_DASHenv] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_hide] = ACTIONS(1301), + [anon_sym_hide_DASHenv] = ACTIONS(1301), + [anon_sym_overlay] = ACTIONS(1301), + [anon_sym_where] = ACTIONS(1304), + [aux_sym_expr_unary_token1] = ACTIONS(1304), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), + [anon_sym_DOT_DOT_LT] = ACTIONS(1304), + [aux_sym__val_number_decimal_token1] = ACTIONS(1301), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), + [aux_sym__val_number_token1] = ACTIONS(1304), + [aux_sym__val_number_token2] = ACTIONS(1304), + [aux_sym__val_number_token3] = ACTIONS(1304), + [anon_sym_0b] = ACTIONS(1301), + [anon_sym_0o] = ACTIONS(1301), + [anon_sym_0x] = ACTIONS(1301), + [sym_val_date] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym__str_single_quotes] = ACTIONS(1304), + [sym__str_back_ticks] = ACTIONS(1304), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1304), + [aux_sym_env_var_token1] = ACTIONS(1301), + [anon_sym_CARET] = ACTIONS(1304), [anon_sym_POUND] = ACTIONS(247), }, - [221] = { - [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1692), - [aux_sym__immediate_decimal_token2] = ACTIONS(1694), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [267] = { + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(267), + [anon_sym_export] = ACTIONS(1313), + [anon_sym_alias] = ACTIONS(1313), + [anon_sym_let] = ACTIONS(1313), + [anon_sym_let_DASHenv] = ACTIONS(1313), + [anon_sym_mut] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [aux_sym_cmd_identifier_token1] = ACTIONS(1313), + [aux_sym_cmd_identifier_token2] = ACTIONS(1313), + [aux_sym_cmd_identifier_token3] = ACTIONS(1313), + [aux_sym_cmd_identifier_token4] = ACTIONS(1313), + [aux_sym_cmd_identifier_token5] = ACTIONS(1313), + [aux_sym_cmd_identifier_token6] = ACTIONS(1313), + [aux_sym_cmd_identifier_token7] = ACTIONS(1313), + [aux_sym_cmd_identifier_token8] = ACTIONS(1313), + [aux_sym_cmd_identifier_token9] = ACTIONS(1313), + [aux_sym_cmd_identifier_token10] = ACTIONS(1313), + [aux_sym_cmd_identifier_token11] = ACTIONS(1313), + [aux_sym_cmd_identifier_token12] = ACTIONS(1313), + [aux_sym_cmd_identifier_token13] = ACTIONS(1313), + [aux_sym_cmd_identifier_token14] = ACTIONS(1313), + [aux_sym_cmd_identifier_token15] = ACTIONS(1313), + [aux_sym_cmd_identifier_token16] = ACTIONS(1313), + [aux_sym_cmd_identifier_token17] = ACTIONS(1313), + [aux_sym_cmd_identifier_token18] = ACTIONS(1313), + [aux_sym_cmd_identifier_token19] = ACTIONS(1313), + [aux_sym_cmd_identifier_token20] = ACTIONS(1313), + [aux_sym_cmd_identifier_token21] = ACTIONS(1313), + [aux_sym_cmd_identifier_token22] = ACTIONS(1313), + [aux_sym_cmd_identifier_token23] = ACTIONS(1313), + [aux_sym_cmd_identifier_token24] = ACTIONS(1315), + [aux_sym_cmd_identifier_token25] = ACTIONS(1313), + [aux_sym_cmd_identifier_token26] = ACTIONS(1315), + [aux_sym_cmd_identifier_token27] = ACTIONS(1313), + [aux_sym_cmd_identifier_token28] = ACTIONS(1313), + [aux_sym_cmd_identifier_token29] = ACTIONS(1313), + [aux_sym_cmd_identifier_token30] = ACTIONS(1313), + [aux_sym_cmd_identifier_token31] = ACTIONS(1315), + [aux_sym_cmd_identifier_token32] = ACTIONS(1315), + [aux_sym_cmd_identifier_token33] = ACTIONS(1315), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1315), + [aux_sym_cmd_identifier_token36] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_null] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1313), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [sym__newline] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_def] = ACTIONS(1313), + [anon_sym_export_DASHenv] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_module] = ACTIONS(1313), + [anon_sym_use] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_error] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_source] = ACTIONS(1313), + [anon_sym_source_DASHenv] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_hide] = ACTIONS(1313), + [anon_sym_hide_DASHenv] = ACTIONS(1313), + [anon_sym_overlay] = ACTIONS(1313), + [anon_sym_where] = ACTIONS(1315), + [aux_sym_expr_unary_token1] = ACTIONS(1315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_LT] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1315), + [aux_sym__val_number_token1] = ACTIONS(1315), + [aux_sym__val_number_token2] = ACTIONS(1315), + [aux_sym__val_number_token3] = ACTIONS(1315), + [anon_sym_0b] = ACTIONS(1313), + [anon_sym_0o] = ACTIONS(1313), + [anon_sym_0x] = ACTIONS(1313), + [sym_val_date] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym__str_single_quotes] = ACTIONS(1315), + [sym__str_back_ticks] = ACTIONS(1315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), + [aux_sym_env_var_token1] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(247), }, - [222] = { - [sym_comment] = STATE(222), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), + [268] = { + [sym_cell_path] = STATE(445), + [sym_path] = STATE(428), + [sym_comment] = STATE(268), + [aux_sym_cell_path_repeat1] = STATE(315), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_alias] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_let_DASHenv] = ACTIONS(1641), + [anon_sym_mut] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [aux_sym_cmd_identifier_token1] = ACTIONS(1641), + [aux_sym_cmd_identifier_token2] = ACTIONS(1641), + [aux_sym_cmd_identifier_token3] = ACTIONS(1641), + [aux_sym_cmd_identifier_token4] = ACTIONS(1641), + [aux_sym_cmd_identifier_token5] = ACTIONS(1641), + [aux_sym_cmd_identifier_token6] = ACTIONS(1641), + [aux_sym_cmd_identifier_token7] = ACTIONS(1641), + [aux_sym_cmd_identifier_token8] = ACTIONS(1641), + [aux_sym_cmd_identifier_token9] = ACTIONS(1641), + [aux_sym_cmd_identifier_token10] = ACTIONS(1641), + [aux_sym_cmd_identifier_token11] = ACTIONS(1641), + [aux_sym_cmd_identifier_token12] = ACTIONS(1641), + [aux_sym_cmd_identifier_token13] = ACTIONS(1641), + [aux_sym_cmd_identifier_token14] = ACTIONS(1641), + [aux_sym_cmd_identifier_token15] = ACTIONS(1641), + [aux_sym_cmd_identifier_token16] = ACTIONS(1641), + [aux_sym_cmd_identifier_token17] = ACTIONS(1641), + [aux_sym_cmd_identifier_token18] = ACTIONS(1641), + [aux_sym_cmd_identifier_token19] = ACTIONS(1641), + [aux_sym_cmd_identifier_token20] = ACTIONS(1641), + [aux_sym_cmd_identifier_token21] = ACTIONS(1641), + [aux_sym_cmd_identifier_token22] = ACTIONS(1641), + [aux_sym_cmd_identifier_token23] = ACTIONS(1641), + [aux_sym_cmd_identifier_token24] = ACTIONS(1641), + [aux_sym_cmd_identifier_token25] = ACTIONS(1641), + [aux_sym_cmd_identifier_token26] = ACTIONS(1641), + [aux_sym_cmd_identifier_token27] = ACTIONS(1641), + [aux_sym_cmd_identifier_token28] = ACTIONS(1641), + [aux_sym_cmd_identifier_token29] = ACTIONS(1641), + [aux_sym_cmd_identifier_token30] = ACTIONS(1641), + [aux_sym_cmd_identifier_token31] = ACTIONS(1641), + [aux_sym_cmd_identifier_token32] = ACTIONS(1641), + [aux_sym_cmd_identifier_token33] = ACTIONS(1641), + [aux_sym_cmd_identifier_token34] = ACTIONS(1641), + [aux_sym_cmd_identifier_token35] = ACTIONS(1641), + [aux_sym_cmd_identifier_token36] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1641), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_export_DASHenv] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1641), + [anon_sym_list] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_make] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_else] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_catch] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_source] = ACTIONS(1641), + [anon_sym_source_DASHenv] = ACTIONS(1641), + [anon_sym_register] = ACTIONS(1641), + [anon_sym_hide] = ACTIONS(1641), + [anon_sym_hide_DASHenv] = ACTIONS(1641), + [anon_sym_overlay] = ACTIONS(1641), + [anon_sym_new] = ACTIONS(1641), + [anon_sym_as] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(1734), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1649), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(247), }, - [223] = { - [sym_comment] = STATE(223), - [aux_sym__block_body_repeat1] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), + [269] = { + [sym_cell_path] = STATE(446), + [sym_path] = STATE(428), + [sym_comment] = STATE(269), + [aux_sym_cell_path_repeat1] = STATE(315), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [aux_sym_cmd_identifier_token1] = ACTIONS(1675), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1675), + [aux_sym_cmd_identifier_token9] = ACTIONS(1675), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1675), + [aux_sym_cmd_identifier_token13] = ACTIONS(1675), + [aux_sym_cmd_identifier_token14] = ACTIONS(1675), + [aux_sym_cmd_identifier_token15] = ACTIONS(1675), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1675), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1675), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1677), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_list] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_make] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_catch] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_new] = ACTIONS(1675), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(247), }, - [224] = { - [sym_cell_path] = STATE(430), - [sym_path] = STATE(388), - [sym_comment] = STATE(224), - [aux_sym_cell_path_repeat1] = STATE(287), + [270] = { + [sym_cell_path] = STATE(455), + [sym_path] = STATE(428), + [sym_comment] = STATE(270), + [aux_sym_cell_path_repeat1] = STATE(315), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [aux_sym_cmd_identifier_token1] = ACTIONS(1005), + [aux_sym_cmd_identifier_token2] = ACTIONS(1005), + [aux_sym_cmd_identifier_token3] = ACTIONS(1005), + [aux_sym_cmd_identifier_token4] = ACTIONS(1005), + [aux_sym_cmd_identifier_token5] = ACTIONS(1005), + [aux_sym_cmd_identifier_token6] = ACTIONS(1005), + [aux_sym_cmd_identifier_token7] = ACTIONS(1005), + [aux_sym_cmd_identifier_token8] = ACTIONS(1005), + [aux_sym_cmd_identifier_token9] = ACTIONS(1005), + [aux_sym_cmd_identifier_token10] = ACTIONS(1005), + [aux_sym_cmd_identifier_token11] = ACTIONS(1005), + [aux_sym_cmd_identifier_token12] = ACTIONS(1005), + [aux_sym_cmd_identifier_token13] = ACTIONS(1005), + [aux_sym_cmd_identifier_token14] = ACTIONS(1005), + [aux_sym_cmd_identifier_token15] = ACTIONS(1005), + [aux_sym_cmd_identifier_token16] = ACTIONS(1005), + [aux_sym_cmd_identifier_token17] = ACTIONS(1005), + [aux_sym_cmd_identifier_token18] = ACTIONS(1005), + [aux_sym_cmd_identifier_token19] = ACTIONS(1005), + [aux_sym_cmd_identifier_token20] = ACTIONS(1005), + [aux_sym_cmd_identifier_token21] = ACTIONS(1005), + [aux_sym_cmd_identifier_token22] = ACTIONS(1005), + [aux_sym_cmd_identifier_token23] = ACTIONS(1005), + [aux_sym_cmd_identifier_token24] = ACTIONS(1005), + [aux_sym_cmd_identifier_token25] = ACTIONS(1005), + [aux_sym_cmd_identifier_token26] = ACTIONS(1005), + [aux_sym_cmd_identifier_token27] = ACTIONS(1005), + [aux_sym_cmd_identifier_token28] = ACTIONS(1005), + [aux_sym_cmd_identifier_token29] = ACTIONS(1005), + [aux_sym_cmd_identifier_token30] = ACTIONS(1005), + [aux_sym_cmd_identifier_token31] = ACTIONS(1005), + [aux_sym_cmd_identifier_token32] = ACTIONS(1005), + [aux_sym_cmd_identifier_token33] = ACTIONS(1005), + [aux_sym_cmd_identifier_token34] = ACTIONS(1005), + [aux_sym_cmd_identifier_token35] = ACTIONS(1005), + [aux_sym_cmd_identifier_token36] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1005), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_make] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(247), + }, + [271] = { + [sym_comment] = STATE(271), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_alias] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_let_DASHenv] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [aux_sym_cmd_identifier_token1] = ACTIONS(1691), + [aux_sym_cmd_identifier_token2] = ACTIONS(1691), + [aux_sym_cmd_identifier_token3] = ACTIONS(1691), + [aux_sym_cmd_identifier_token4] = ACTIONS(1691), + [aux_sym_cmd_identifier_token5] = ACTIONS(1691), + [aux_sym_cmd_identifier_token6] = ACTIONS(1691), + [aux_sym_cmd_identifier_token7] = ACTIONS(1691), + [aux_sym_cmd_identifier_token8] = ACTIONS(1691), + [aux_sym_cmd_identifier_token9] = ACTIONS(1691), + [aux_sym_cmd_identifier_token10] = ACTIONS(1691), + [aux_sym_cmd_identifier_token11] = ACTIONS(1691), + [aux_sym_cmd_identifier_token12] = ACTIONS(1691), + [aux_sym_cmd_identifier_token13] = ACTIONS(1691), + [aux_sym_cmd_identifier_token14] = ACTIONS(1691), + [aux_sym_cmd_identifier_token15] = ACTIONS(1691), + [aux_sym_cmd_identifier_token16] = ACTIONS(1691), + [aux_sym_cmd_identifier_token17] = ACTIONS(1691), + [aux_sym_cmd_identifier_token18] = ACTIONS(1691), + [aux_sym_cmd_identifier_token19] = ACTIONS(1691), + [aux_sym_cmd_identifier_token20] = ACTIONS(1691), + [aux_sym_cmd_identifier_token21] = ACTIONS(1691), + [aux_sym_cmd_identifier_token22] = ACTIONS(1691), + [aux_sym_cmd_identifier_token23] = ACTIONS(1691), + [aux_sym_cmd_identifier_token24] = ACTIONS(1309), + [aux_sym_cmd_identifier_token25] = ACTIONS(1691), + [aux_sym_cmd_identifier_token26] = ACTIONS(1309), + [aux_sym_cmd_identifier_token27] = ACTIONS(1691), + [aux_sym_cmd_identifier_token28] = ACTIONS(1691), + [aux_sym_cmd_identifier_token29] = ACTIONS(1691), + [aux_sym_cmd_identifier_token30] = ACTIONS(1691), + [aux_sym_cmd_identifier_token31] = ACTIONS(1309), + [aux_sym_cmd_identifier_token32] = ACTIONS(1309), + [aux_sym_cmd_identifier_token33] = ACTIONS(1309), + [aux_sym_cmd_identifier_token34] = ACTIONS(1309), + [aux_sym_cmd_identifier_token35] = ACTIONS(1309), + [aux_sym_cmd_identifier_token36] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1691), + [aux_sym_cmd_identifier_token39] = ACTIONS(1309), + [aux_sym_cmd_identifier_token40] = ACTIONS(1309), + [sym__newline] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_where] = ACTIONS(1309), + [aux_sym_expr_unary_token1] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_DOT_DOT_LT] = ACTIONS(1309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1309), + [aux_sym__val_number_decimal_token3] = ACTIONS(1309), + [aux_sym__val_number_decimal_token4] = ACTIONS(1309), + [aux_sym__val_number_token1] = ACTIONS(1309), + [aux_sym__val_number_token2] = ACTIONS(1309), + [aux_sym__val_number_token3] = ACTIONS(1309), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym__str_single_quotes] = ACTIONS(1309), + [sym__str_back_ticks] = ACTIONS(1309), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), + [aux_sym_env_var_token1] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(247), + }, + [272] = { + [sym_path] = STATE(369), + [sym_comment] = STATE(272), + [aux_sym_cell_path_repeat1] = STATE(251), [anon_sym_export] = ACTIONS(1011), [anon_sym_alias] = ACTIONS(1011), [anon_sym_let] = ACTIONS(1011), @@ -101458,19 +108049,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1011), [aux_sym_cmd_identifier_token35] = ACTIONS(1011), [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1011), [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1011), + [aux_sym_cmd_identifier_token40] = ACTIONS(1011), [anon_sym_def] = ACTIONS(1011), [anon_sym_export_DASHenv] = ACTIONS(1011), [anon_sym_extern] = ACTIONS(1011), [anon_sym_module] = ACTIONS(1011), [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1011), [anon_sym_error] = ACTIONS(1011), [anon_sym_list] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), @@ -101485,7 +108076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1011), [anon_sym_else] = ACTIONS(1011), [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1011), [anon_sym_try] = ACTIONS(1011), [anon_sym_catch] = ACTIONS(1011), [anon_sym_return] = ACTIONS(1011), @@ -101497,1514 +108088,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1011), [anon_sym_new] = ACTIONS(1011), [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1643), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [aux_sym__val_number_decimal_token2] = ACTIONS(1011), + [aux_sym__val_number_decimal_token3] = ACTIONS(1011), + [aux_sym__val_number_decimal_token4] = ACTIONS(1011), + [aux_sym__val_number_token1] = ACTIONS(1011), + [aux_sym__val_number_token2] = ACTIONS(1011), + [aux_sym__val_number_token3] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym__str_single_quotes] = ACTIONS(1011), + [sym__str_back_ticks] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), + [sym__entry_separator] = ACTIONS(1013), [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), - }, - [225] = { - [sym_path] = STATE(340), - [sym_comment] = STATE(225), - [aux_sym_cell_path_repeat1] = STATE(227), - [anon_sym_export] = ACTIONS(1017), - [anon_sym_alias] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_let_DASHenv] = ACTIONS(1017), - [anon_sym_mut] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [aux_sym_cmd_identifier_token1] = ACTIONS(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(1017), - [aux_sym_cmd_identifier_token3] = ACTIONS(1017), - [aux_sym_cmd_identifier_token4] = ACTIONS(1017), - [aux_sym_cmd_identifier_token5] = ACTIONS(1017), - [aux_sym_cmd_identifier_token6] = ACTIONS(1017), - [aux_sym_cmd_identifier_token7] = ACTIONS(1017), - [aux_sym_cmd_identifier_token8] = ACTIONS(1017), - [aux_sym_cmd_identifier_token9] = ACTIONS(1017), - [aux_sym_cmd_identifier_token10] = ACTIONS(1017), - [aux_sym_cmd_identifier_token11] = ACTIONS(1017), - [aux_sym_cmd_identifier_token12] = ACTIONS(1017), - [aux_sym_cmd_identifier_token13] = ACTIONS(1017), - [aux_sym_cmd_identifier_token14] = ACTIONS(1017), - [aux_sym_cmd_identifier_token15] = ACTIONS(1017), - [aux_sym_cmd_identifier_token16] = ACTIONS(1017), - [aux_sym_cmd_identifier_token17] = ACTIONS(1017), - [aux_sym_cmd_identifier_token18] = ACTIONS(1017), - [aux_sym_cmd_identifier_token19] = ACTIONS(1017), - [aux_sym_cmd_identifier_token20] = ACTIONS(1017), - [aux_sym_cmd_identifier_token21] = ACTIONS(1017), - [aux_sym_cmd_identifier_token22] = ACTIONS(1017), - [aux_sym_cmd_identifier_token23] = ACTIONS(1017), - [aux_sym_cmd_identifier_token24] = ACTIONS(1017), - [aux_sym_cmd_identifier_token25] = ACTIONS(1017), - [aux_sym_cmd_identifier_token26] = ACTIONS(1017), - [aux_sym_cmd_identifier_token27] = ACTIONS(1017), - [aux_sym_cmd_identifier_token28] = ACTIONS(1017), - [aux_sym_cmd_identifier_token29] = ACTIONS(1017), - [aux_sym_cmd_identifier_token30] = ACTIONS(1017), - [aux_sym_cmd_identifier_token31] = ACTIONS(1017), - [aux_sym_cmd_identifier_token32] = ACTIONS(1017), - [aux_sym_cmd_identifier_token33] = ACTIONS(1017), - [aux_sym_cmd_identifier_token34] = ACTIONS(1017), - [aux_sym_cmd_identifier_token35] = ACTIONS(1017), - [aux_sym_cmd_identifier_token36] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1017), - [anon_sym_export_DASHenv] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_make] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_catch] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_source] = ACTIONS(1017), - [anon_sym_source_DASHenv] = ACTIONS(1017), - [anon_sym_register] = ACTIONS(1017), - [anon_sym_hide] = ACTIONS(1017), - [anon_sym_hide_DASHenv] = ACTIONS(1017), - [anon_sym_overlay] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1627), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), - [sym__entry_separator] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(3), - }, - [226] = { - [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(1517), - [anon_sym_alias] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_let_DASHenv] = ACTIONS(1517), - [anon_sym_mut] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [aux_sym_cmd_identifier_token1] = ACTIONS(1517), - [aux_sym_cmd_identifier_token2] = ACTIONS(1517), - [aux_sym_cmd_identifier_token3] = ACTIONS(1517), - [aux_sym_cmd_identifier_token4] = ACTIONS(1517), - [aux_sym_cmd_identifier_token5] = ACTIONS(1517), - [aux_sym_cmd_identifier_token6] = ACTIONS(1517), - [aux_sym_cmd_identifier_token7] = ACTIONS(1517), - [aux_sym_cmd_identifier_token8] = ACTIONS(1517), - [aux_sym_cmd_identifier_token9] = ACTIONS(1517), - [aux_sym_cmd_identifier_token10] = ACTIONS(1517), - [aux_sym_cmd_identifier_token11] = ACTIONS(1517), - [aux_sym_cmd_identifier_token12] = ACTIONS(1517), - [aux_sym_cmd_identifier_token13] = ACTIONS(1517), - [aux_sym_cmd_identifier_token14] = ACTIONS(1517), - [aux_sym_cmd_identifier_token15] = ACTIONS(1517), - [aux_sym_cmd_identifier_token16] = ACTIONS(1517), - [aux_sym_cmd_identifier_token17] = ACTIONS(1517), - [aux_sym_cmd_identifier_token18] = ACTIONS(1517), - [aux_sym_cmd_identifier_token19] = ACTIONS(1517), - [aux_sym_cmd_identifier_token20] = ACTIONS(1517), - [aux_sym_cmd_identifier_token21] = ACTIONS(1517), - [aux_sym_cmd_identifier_token22] = ACTIONS(1517), - [aux_sym_cmd_identifier_token23] = ACTIONS(1517), - [aux_sym_cmd_identifier_token24] = ACTIONS(1517), - [aux_sym_cmd_identifier_token25] = ACTIONS(1517), - [aux_sym_cmd_identifier_token26] = ACTIONS(1517), - [aux_sym_cmd_identifier_token27] = ACTIONS(1517), - [aux_sym_cmd_identifier_token28] = ACTIONS(1517), - [aux_sym_cmd_identifier_token29] = ACTIONS(1517), - [aux_sym_cmd_identifier_token30] = ACTIONS(1517), - [aux_sym_cmd_identifier_token31] = ACTIONS(1517), - [aux_sym_cmd_identifier_token32] = ACTIONS(1517), - [aux_sym_cmd_identifier_token33] = ACTIONS(1517), - [aux_sym_cmd_identifier_token34] = ACTIONS(1517), - [aux_sym_cmd_identifier_token35] = ACTIONS(1517), - [aux_sym_cmd_identifier_token36] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1517), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [anon_sym_def] = ACTIONS(1517), - [anon_sym_export_DASHenv] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_module] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1517), - [anon_sym_list] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_make] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1517), - [anon_sym_catch] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_source] = ACTIONS(1517), - [anon_sym_source_DASHenv] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_hide] = ACTIONS(1517), - [anon_sym_hide_DASHenv] = ACTIONS(1517), - [anon_sym_overlay] = ACTIONS(1517), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1517), - [sym_duration_unit] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1517), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(247), - }, - [227] = { - [sym_path] = STATE(340), - [sym_comment] = STATE(227), - [aux_sym_cell_path_repeat1] = STATE(227), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_null] = ACTIONS(1021), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1021), - [aux_sym_cmd_identifier_token40] = ACTIONS(1021), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1021), - [aux_sym__val_number_decimal_token3] = ACTIONS(1021), - [aux_sym__val_number_decimal_token4] = ACTIONS(1021), - [aux_sym__val_number_token1] = ACTIONS(1021), - [aux_sym__val_number_token2] = ACTIONS(1021), - [aux_sym__val_number_token3] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym__str_single_quotes] = ACTIONS(1021), - [sym__str_back_ticks] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), - [sym__entry_separator] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(3), - }, - [228] = { - [sym_comment] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(1343), - [anon_sym_POUND_BANG] = ACTIONS(1349), - [anon_sym_export] = ACTIONS(1347), - [anon_sym_alias] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1347), - [anon_sym_let_DASHenv] = ACTIONS(1347), - [anon_sym_mut] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [aux_sym_cmd_identifier_token1] = ACTIONS(1347), - [aux_sym_cmd_identifier_token2] = ACTIONS(1347), - [aux_sym_cmd_identifier_token3] = ACTIONS(1347), - [aux_sym_cmd_identifier_token4] = ACTIONS(1347), - [aux_sym_cmd_identifier_token5] = ACTIONS(1347), - [aux_sym_cmd_identifier_token6] = ACTIONS(1347), - [aux_sym_cmd_identifier_token7] = ACTIONS(1347), - [aux_sym_cmd_identifier_token8] = ACTIONS(1347), - [aux_sym_cmd_identifier_token9] = ACTIONS(1347), - [aux_sym_cmd_identifier_token10] = ACTIONS(1347), - [aux_sym_cmd_identifier_token11] = ACTIONS(1347), - [aux_sym_cmd_identifier_token12] = ACTIONS(1347), - [aux_sym_cmd_identifier_token13] = ACTIONS(1347), - [aux_sym_cmd_identifier_token14] = ACTIONS(1347), - [aux_sym_cmd_identifier_token15] = ACTIONS(1347), - [aux_sym_cmd_identifier_token16] = ACTIONS(1347), - [aux_sym_cmd_identifier_token17] = ACTIONS(1347), - [aux_sym_cmd_identifier_token18] = ACTIONS(1347), - [aux_sym_cmd_identifier_token19] = ACTIONS(1347), - [aux_sym_cmd_identifier_token20] = ACTIONS(1347), - [aux_sym_cmd_identifier_token21] = ACTIONS(1347), - [aux_sym_cmd_identifier_token22] = ACTIONS(1347), - [aux_sym_cmd_identifier_token23] = ACTIONS(1347), - [aux_sym_cmd_identifier_token24] = ACTIONS(1343), - [aux_sym_cmd_identifier_token25] = ACTIONS(1347), - [aux_sym_cmd_identifier_token26] = ACTIONS(1343), - [aux_sym_cmd_identifier_token27] = ACTIONS(1347), - [aux_sym_cmd_identifier_token28] = ACTIONS(1347), - [aux_sym_cmd_identifier_token29] = ACTIONS(1347), - [aux_sym_cmd_identifier_token30] = ACTIONS(1347), - [aux_sym_cmd_identifier_token31] = ACTIONS(1343), - [aux_sym_cmd_identifier_token32] = ACTIONS(1343), - [aux_sym_cmd_identifier_token33] = ACTIONS(1343), - [aux_sym_cmd_identifier_token34] = ACTIONS(1343), - [aux_sym_cmd_identifier_token35] = ACTIONS(1343), - [aux_sym_cmd_identifier_token36] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_null] = ACTIONS(1343), - [aux_sym_cmd_identifier_token38] = ACTIONS(1347), - [aux_sym_cmd_identifier_token39] = ACTIONS(1343), - [aux_sym_cmd_identifier_token40] = ACTIONS(1343), - [sym__newline] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_def] = ACTIONS(1347), - [anon_sym_export_DASHenv] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym_module] = ACTIONS(1347), - [anon_sym_use] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_error] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_loop] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_match] = ACTIONS(1347), - [aux_sym_ctrl_match_token1] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_source] = ACTIONS(1347), - [anon_sym_source_DASHenv] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_hide] = ACTIONS(1347), - [anon_sym_hide_DASHenv] = ACTIONS(1347), - [anon_sym_overlay] = ACTIONS(1347), - [anon_sym_where] = ACTIONS(1343), - [aux_sym_expr_unary_token1] = ACTIONS(1343), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), - [anon_sym_DOT_DOT_LT] = ACTIONS(1343), - [aux_sym__val_number_decimal_token1] = ACTIONS(1347), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1343), - [aux_sym__val_number_decimal_token4] = ACTIONS(1343), - [aux_sym__val_number_token1] = ACTIONS(1343), - [aux_sym__val_number_token2] = ACTIONS(1343), - [aux_sym__val_number_token3] = ACTIONS(1343), - [anon_sym_0b] = ACTIONS(1347), - [anon_sym_0o] = ACTIONS(1347), - [anon_sym_0x] = ACTIONS(1347), - [sym_val_date] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym__str_single_quotes] = ACTIONS(1343), - [sym__str_back_ticks] = ACTIONS(1343), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), - [aux_sym_env_var_token1] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(3), - }, - [229] = { - [sym_comment] = STATE(229), - [anon_sym_export] = ACTIONS(1347), - [anon_sym_alias] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1347), - [anon_sym_let_DASHenv] = ACTIONS(1347), - [anon_sym_mut] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [aux_sym_cmd_identifier_token1] = ACTIONS(1347), - [aux_sym_cmd_identifier_token2] = ACTIONS(1347), - [aux_sym_cmd_identifier_token3] = ACTIONS(1347), - [aux_sym_cmd_identifier_token4] = ACTIONS(1347), - [aux_sym_cmd_identifier_token5] = ACTIONS(1347), - [aux_sym_cmd_identifier_token6] = ACTIONS(1347), - [aux_sym_cmd_identifier_token7] = ACTIONS(1347), - [aux_sym_cmd_identifier_token8] = ACTIONS(1347), - [aux_sym_cmd_identifier_token9] = ACTIONS(1347), - [aux_sym_cmd_identifier_token10] = ACTIONS(1347), - [aux_sym_cmd_identifier_token11] = ACTIONS(1347), - [aux_sym_cmd_identifier_token12] = ACTIONS(1347), - [aux_sym_cmd_identifier_token13] = ACTIONS(1347), - [aux_sym_cmd_identifier_token14] = ACTIONS(1347), - [aux_sym_cmd_identifier_token15] = ACTIONS(1347), - [aux_sym_cmd_identifier_token16] = ACTIONS(1347), - [aux_sym_cmd_identifier_token17] = ACTIONS(1347), - [aux_sym_cmd_identifier_token18] = ACTIONS(1347), - [aux_sym_cmd_identifier_token19] = ACTIONS(1347), - [aux_sym_cmd_identifier_token20] = ACTIONS(1347), - [aux_sym_cmd_identifier_token21] = ACTIONS(1347), - [aux_sym_cmd_identifier_token22] = ACTIONS(1347), - [aux_sym_cmd_identifier_token23] = ACTIONS(1347), - [aux_sym_cmd_identifier_token24] = ACTIONS(1343), - [aux_sym_cmd_identifier_token25] = ACTIONS(1347), - [aux_sym_cmd_identifier_token26] = ACTIONS(1343), - [aux_sym_cmd_identifier_token27] = ACTIONS(1347), - [aux_sym_cmd_identifier_token28] = ACTIONS(1347), - [aux_sym_cmd_identifier_token29] = ACTIONS(1347), - [aux_sym_cmd_identifier_token30] = ACTIONS(1347), - [aux_sym_cmd_identifier_token31] = ACTIONS(1343), - [aux_sym_cmd_identifier_token32] = ACTIONS(1343), - [aux_sym_cmd_identifier_token33] = ACTIONS(1343), - [aux_sym_cmd_identifier_token34] = ACTIONS(1343), - [aux_sym_cmd_identifier_token35] = ACTIONS(1343), - [aux_sym_cmd_identifier_token36] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_null] = ACTIONS(1343), - [aux_sym_cmd_identifier_token38] = ACTIONS(1347), - [aux_sym_cmd_identifier_token39] = ACTIONS(1343), - [aux_sym_cmd_identifier_token40] = ACTIONS(1343), - [sym__newline] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_def] = ACTIONS(1347), - [anon_sym_export_DASHenv] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym_module] = ACTIONS(1347), - [anon_sym_use] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_error] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_loop] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_match] = ACTIONS(1347), - [aux_sym_ctrl_match_token1] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_source] = ACTIONS(1347), - [anon_sym_source_DASHenv] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_hide] = ACTIONS(1347), - [anon_sym_hide_DASHenv] = ACTIONS(1347), - [anon_sym_overlay] = ACTIONS(1347), - [anon_sym_where] = ACTIONS(1343), - [aux_sym_expr_unary_token1] = ACTIONS(1343), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), - [anon_sym_DOT_DOT_LT] = ACTIONS(1343), - [aux_sym__val_number_decimal_token1] = ACTIONS(1347), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1343), - [aux_sym__val_number_decimal_token4] = ACTIONS(1343), - [aux_sym__val_number_token1] = ACTIONS(1343), - [aux_sym__val_number_token2] = ACTIONS(1343), - [aux_sym__val_number_token3] = ACTIONS(1343), - [anon_sym_0b] = ACTIONS(1347), - [anon_sym_0o] = ACTIONS(1347), - [anon_sym_0x] = ACTIONS(1347), - [sym_val_date] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym__str_single_quotes] = ACTIONS(1343), - [sym__str_back_ticks] = ACTIONS(1343), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), - [aux_sym_env_var_token1] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(247), - }, - [230] = { - [sym_cell_path] = STATE(425), - [sym_path] = STATE(388), - [sym_comment] = STATE(230), - [aux_sym_cell_path_repeat1] = STATE(287), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_alias] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_let_DASHenv] = ACTIONS(1686), - [anon_sym_mut] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [aux_sym_cmd_identifier_token1] = ACTIONS(1686), - [aux_sym_cmd_identifier_token2] = ACTIONS(1686), - [aux_sym_cmd_identifier_token3] = ACTIONS(1686), - [aux_sym_cmd_identifier_token4] = ACTIONS(1686), - [aux_sym_cmd_identifier_token5] = ACTIONS(1686), - [aux_sym_cmd_identifier_token6] = ACTIONS(1686), - [aux_sym_cmd_identifier_token7] = ACTIONS(1686), - [aux_sym_cmd_identifier_token8] = ACTIONS(1686), - [aux_sym_cmd_identifier_token9] = ACTIONS(1686), - [aux_sym_cmd_identifier_token10] = ACTIONS(1686), - [aux_sym_cmd_identifier_token11] = ACTIONS(1686), - [aux_sym_cmd_identifier_token12] = ACTIONS(1686), - [aux_sym_cmd_identifier_token13] = ACTIONS(1686), - [aux_sym_cmd_identifier_token14] = ACTIONS(1686), - [aux_sym_cmd_identifier_token15] = ACTIONS(1686), - [aux_sym_cmd_identifier_token16] = ACTIONS(1686), - [aux_sym_cmd_identifier_token17] = ACTIONS(1686), - [aux_sym_cmd_identifier_token18] = ACTIONS(1686), - [aux_sym_cmd_identifier_token19] = ACTIONS(1686), - [aux_sym_cmd_identifier_token20] = ACTIONS(1686), - [aux_sym_cmd_identifier_token21] = ACTIONS(1686), - [aux_sym_cmd_identifier_token22] = ACTIONS(1686), - [aux_sym_cmd_identifier_token23] = ACTIONS(1686), - [aux_sym_cmd_identifier_token24] = ACTIONS(1686), - [aux_sym_cmd_identifier_token25] = ACTIONS(1686), - [aux_sym_cmd_identifier_token26] = ACTIONS(1686), - [aux_sym_cmd_identifier_token27] = ACTIONS(1686), - [aux_sym_cmd_identifier_token28] = ACTIONS(1686), - [aux_sym_cmd_identifier_token29] = ACTIONS(1686), - [aux_sym_cmd_identifier_token30] = ACTIONS(1686), - [aux_sym_cmd_identifier_token31] = ACTIONS(1686), - [aux_sym_cmd_identifier_token32] = ACTIONS(1686), - [aux_sym_cmd_identifier_token33] = ACTIONS(1686), - [aux_sym_cmd_identifier_token34] = ACTIONS(1686), - [aux_sym_cmd_identifier_token35] = ACTIONS(1686), - [aux_sym_cmd_identifier_token36] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [anon_sym_null] = ACTIONS(1688), - [aux_sym_cmd_identifier_token38] = ACTIONS(1686), - [aux_sym_cmd_identifier_token39] = ACTIONS(1688), - [aux_sym_cmd_identifier_token40] = ACTIONS(1688), - [anon_sym_def] = ACTIONS(1686), - [anon_sym_export_DASHenv] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_module] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_error] = ACTIONS(1686), - [anon_sym_list] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_make] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_catch] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_source] = ACTIONS(1686), - [anon_sym_source_DASHenv] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_hide] = ACTIONS(1686), - [anon_sym_hide_DASHenv] = ACTIONS(1686), - [anon_sym_overlay] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1686), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), - [aux_sym__val_number_decimal_token1] = ACTIONS(1686), - [aux_sym__val_number_decimal_token2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token3] = ACTIONS(1688), - [aux_sym__val_number_decimal_token4] = ACTIONS(1688), - [aux_sym__val_number_token1] = ACTIONS(1688), - [aux_sym__val_number_token2] = ACTIONS(1688), - [aux_sym__val_number_token3] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__str_single_quotes] = ACTIONS(1688), - [sym__str_back_ticks] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(247), - }, - [231] = { - [sym_comment] = STATE(231), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [232] = { - [sym_comment] = STATE(232), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(3), }, - [233] = { - [sym_comment] = STATE(233), - [aux_sym__block_body_repeat1] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(1659), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_alias] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_let_DASHenv] = ACTIONS(1657), - [anon_sym_mut] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(1657), - [aux_sym_cmd_identifier_token2] = ACTIONS(1657), - [aux_sym_cmd_identifier_token3] = ACTIONS(1657), - [aux_sym_cmd_identifier_token4] = ACTIONS(1657), - [aux_sym_cmd_identifier_token5] = ACTIONS(1657), - [aux_sym_cmd_identifier_token6] = ACTIONS(1657), - [aux_sym_cmd_identifier_token7] = ACTIONS(1657), - [aux_sym_cmd_identifier_token8] = ACTIONS(1657), - [aux_sym_cmd_identifier_token9] = ACTIONS(1657), - [aux_sym_cmd_identifier_token10] = ACTIONS(1657), - [aux_sym_cmd_identifier_token11] = ACTIONS(1657), - [aux_sym_cmd_identifier_token12] = ACTIONS(1657), - [aux_sym_cmd_identifier_token13] = ACTIONS(1657), - [aux_sym_cmd_identifier_token14] = ACTIONS(1657), - [aux_sym_cmd_identifier_token15] = ACTIONS(1657), - [aux_sym_cmd_identifier_token16] = ACTIONS(1657), - [aux_sym_cmd_identifier_token17] = ACTIONS(1657), - [aux_sym_cmd_identifier_token18] = ACTIONS(1657), - [aux_sym_cmd_identifier_token19] = ACTIONS(1657), - [aux_sym_cmd_identifier_token20] = ACTIONS(1657), - [aux_sym_cmd_identifier_token21] = ACTIONS(1657), - [aux_sym_cmd_identifier_token22] = ACTIONS(1657), - [aux_sym_cmd_identifier_token23] = ACTIONS(1657), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1657), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1657), - [aux_sym_cmd_identifier_token28] = ACTIONS(1657), - [aux_sym_cmd_identifier_token29] = ACTIONS(1657), - [aux_sym_cmd_identifier_token30] = ACTIONS(1657), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1657), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_export_DASHenv] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1657), - [anon_sym_error] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [aux_sym_ctrl_match_token1] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_source] = ACTIONS(1657), - [anon_sym_source_DASHenv] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_hide_DASHenv] = ACTIONS(1657), - [anon_sym_overlay] = ACTIONS(1657), - [anon_sym_where] = ACTIONS(1659), - [aux_sym_expr_unary_token1] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_0b] = ACTIONS(1657), - [anon_sym_0o] = ACTIONS(1657), - [anon_sym_0x] = ACTIONS(1657), - [sym_val_date] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), - [aux_sym_env_var_token1] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [234] = { - [sym_comment] = STATE(234), - [aux_sym__block_body_repeat1] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), - }, - [235] = { - [sym_comment] = STATE(235), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_alias] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_let_DASHenv] = ACTIONS(1497), - [anon_sym_mut] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [aux_sym_cmd_identifier_token1] = ACTIONS(1497), - [aux_sym_cmd_identifier_token2] = ACTIONS(1497), - [aux_sym_cmd_identifier_token3] = ACTIONS(1497), - [aux_sym_cmd_identifier_token4] = ACTIONS(1497), - [aux_sym_cmd_identifier_token5] = ACTIONS(1497), - [aux_sym_cmd_identifier_token6] = ACTIONS(1497), - [aux_sym_cmd_identifier_token7] = ACTIONS(1497), - [aux_sym_cmd_identifier_token8] = ACTIONS(1497), - [aux_sym_cmd_identifier_token9] = ACTIONS(1497), - [aux_sym_cmd_identifier_token10] = ACTIONS(1497), - [aux_sym_cmd_identifier_token11] = ACTIONS(1497), - [aux_sym_cmd_identifier_token12] = ACTIONS(1497), - [aux_sym_cmd_identifier_token13] = ACTIONS(1497), - [aux_sym_cmd_identifier_token14] = ACTIONS(1497), - [aux_sym_cmd_identifier_token15] = ACTIONS(1497), - [aux_sym_cmd_identifier_token16] = ACTIONS(1497), - [aux_sym_cmd_identifier_token17] = ACTIONS(1497), - [aux_sym_cmd_identifier_token18] = ACTIONS(1497), - [aux_sym_cmd_identifier_token19] = ACTIONS(1497), - [aux_sym_cmd_identifier_token20] = ACTIONS(1497), - [aux_sym_cmd_identifier_token21] = ACTIONS(1497), - [aux_sym_cmd_identifier_token22] = ACTIONS(1497), - [aux_sym_cmd_identifier_token23] = ACTIONS(1497), - [aux_sym_cmd_identifier_token24] = ACTIONS(1497), - [aux_sym_cmd_identifier_token25] = ACTIONS(1497), - [aux_sym_cmd_identifier_token26] = ACTIONS(1497), - [aux_sym_cmd_identifier_token27] = ACTIONS(1497), - [aux_sym_cmd_identifier_token28] = ACTIONS(1497), - [aux_sym_cmd_identifier_token29] = ACTIONS(1497), - [aux_sym_cmd_identifier_token30] = ACTIONS(1497), - [aux_sym_cmd_identifier_token31] = ACTIONS(1497), - [aux_sym_cmd_identifier_token32] = ACTIONS(1497), - [aux_sym_cmd_identifier_token33] = ACTIONS(1497), - [aux_sym_cmd_identifier_token34] = ACTIONS(1497), - [aux_sym_cmd_identifier_token35] = ACTIONS(1497), - [aux_sym_cmd_identifier_token36] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1497), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [anon_sym_def] = ACTIONS(1497), - [anon_sym_export_DASHenv] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_error] = ACTIONS(1497), - [anon_sym_list] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_make] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_source] = ACTIONS(1497), - [anon_sym_source_DASHenv] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_hide] = ACTIONS(1497), - [anon_sym_hide_DASHenv] = ACTIONS(1497), - [anon_sym_overlay] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1497), - [sym_duration_unit] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [236] = { - [sym_comment] = STATE(236), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_list] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_new] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1565), - [sym_duration_unit] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1565), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(247), - }, - [237] = { - [sym_comment] = STATE(237), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_alias] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_let_DASHenv] = ACTIONS(1639), - [anon_sym_mut] = ACTIONS(1639), - [anon_sym_const] = ACTIONS(1639), - [aux_sym_cmd_identifier_token1] = ACTIONS(1639), - [aux_sym_cmd_identifier_token2] = ACTIONS(1639), - [aux_sym_cmd_identifier_token3] = ACTIONS(1639), - [aux_sym_cmd_identifier_token4] = ACTIONS(1639), - [aux_sym_cmd_identifier_token5] = ACTIONS(1639), - [aux_sym_cmd_identifier_token6] = ACTIONS(1639), - [aux_sym_cmd_identifier_token7] = ACTIONS(1639), - [aux_sym_cmd_identifier_token8] = ACTIONS(1639), - [aux_sym_cmd_identifier_token9] = ACTIONS(1639), - [aux_sym_cmd_identifier_token10] = ACTIONS(1639), - [aux_sym_cmd_identifier_token11] = ACTIONS(1639), - [aux_sym_cmd_identifier_token12] = ACTIONS(1639), - [aux_sym_cmd_identifier_token13] = ACTIONS(1639), - [aux_sym_cmd_identifier_token14] = ACTIONS(1639), - [aux_sym_cmd_identifier_token15] = ACTIONS(1639), - [aux_sym_cmd_identifier_token16] = ACTIONS(1639), - [aux_sym_cmd_identifier_token17] = ACTIONS(1639), - [aux_sym_cmd_identifier_token18] = ACTIONS(1639), - [aux_sym_cmd_identifier_token19] = ACTIONS(1639), - [aux_sym_cmd_identifier_token20] = ACTIONS(1639), - [aux_sym_cmd_identifier_token21] = ACTIONS(1639), - [aux_sym_cmd_identifier_token22] = ACTIONS(1639), - [aux_sym_cmd_identifier_token23] = ACTIONS(1639), - [aux_sym_cmd_identifier_token24] = ACTIONS(1639), - [aux_sym_cmd_identifier_token25] = ACTIONS(1639), - [aux_sym_cmd_identifier_token26] = ACTIONS(1639), - [aux_sym_cmd_identifier_token27] = ACTIONS(1639), - [aux_sym_cmd_identifier_token28] = ACTIONS(1639), - [aux_sym_cmd_identifier_token29] = ACTIONS(1639), - [aux_sym_cmd_identifier_token30] = ACTIONS(1639), - [aux_sym_cmd_identifier_token31] = ACTIONS(1639), - [aux_sym_cmd_identifier_token32] = ACTIONS(1639), - [aux_sym_cmd_identifier_token33] = ACTIONS(1639), - [aux_sym_cmd_identifier_token34] = ACTIONS(1639), - [aux_sym_cmd_identifier_token35] = ACTIONS(1639), - [aux_sym_cmd_identifier_token36] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1639), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [anon_sym_def] = ACTIONS(1639), - [anon_sym_export_DASHenv] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_use] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_error] = ACTIONS(1639), - [anon_sym_list] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_break] = ACTIONS(1639), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_loop] = ACTIONS(1639), - [anon_sym_make] = ACTIONS(1639), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_do] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1639), - [anon_sym_else] = ACTIONS(1639), - [anon_sym_match] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1639), - [anon_sym_catch] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1639), - [anon_sym_source] = ACTIONS(1639), - [anon_sym_source_DASHenv] = ACTIONS(1639), - [anon_sym_register] = ACTIONS(1639), - [anon_sym_hide] = ACTIONS(1639), - [anon_sym_hide_DASHenv] = ACTIONS(1639), - [anon_sym_overlay] = ACTIONS(1639), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_as] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1641), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1639), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(247), - }, - [238] = { - [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(6970), - [aux_sym__parenthesized_body_repeat1] = STATE(239), - [anon_sym_export] = ACTIONS(1714), - [anon_sym_alias] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_let_DASHenv] = ACTIONS(1714), - [anon_sym_mut] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [aux_sym_cmd_identifier_token1] = ACTIONS(1714), - [aux_sym_cmd_identifier_token2] = ACTIONS(1714), - [aux_sym_cmd_identifier_token3] = ACTIONS(1714), - [aux_sym_cmd_identifier_token4] = ACTIONS(1714), - [aux_sym_cmd_identifier_token5] = ACTIONS(1714), - [aux_sym_cmd_identifier_token6] = ACTIONS(1714), - [aux_sym_cmd_identifier_token7] = ACTIONS(1714), - [aux_sym_cmd_identifier_token8] = ACTIONS(1714), - [aux_sym_cmd_identifier_token9] = ACTIONS(1714), - [aux_sym_cmd_identifier_token10] = ACTIONS(1714), - [aux_sym_cmd_identifier_token11] = ACTIONS(1714), - [aux_sym_cmd_identifier_token12] = ACTIONS(1714), - [aux_sym_cmd_identifier_token13] = ACTIONS(1714), - [aux_sym_cmd_identifier_token14] = ACTIONS(1714), - [aux_sym_cmd_identifier_token15] = ACTIONS(1714), - [aux_sym_cmd_identifier_token16] = ACTIONS(1714), - [aux_sym_cmd_identifier_token17] = ACTIONS(1714), - [aux_sym_cmd_identifier_token18] = ACTIONS(1714), - [aux_sym_cmd_identifier_token19] = ACTIONS(1714), - [aux_sym_cmd_identifier_token20] = ACTIONS(1714), - [aux_sym_cmd_identifier_token21] = ACTIONS(1714), - [aux_sym_cmd_identifier_token22] = ACTIONS(1714), - [aux_sym_cmd_identifier_token23] = ACTIONS(1714), - [aux_sym_cmd_identifier_token24] = ACTIONS(712), - [aux_sym_cmd_identifier_token25] = ACTIONS(1714), - [aux_sym_cmd_identifier_token26] = ACTIONS(712), - [aux_sym_cmd_identifier_token27] = ACTIONS(1714), - [aux_sym_cmd_identifier_token28] = ACTIONS(1714), - [aux_sym_cmd_identifier_token29] = ACTIONS(1714), - [aux_sym_cmd_identifier_token30] = ACTIONS(1714), - [aux_sym_cmd_identifier_token31] = ACTIONS(712), - [aux_sym_cmd_identifier_token32] = ACTIONS(712), - [aux_sym_cmd_identifier_token33] = ACTIONS(712), - [aux_sym_cmd_identifier_token34] = ACTIONS(712), - [aux_sym_cmd_identifier_token35] = ACTIONS(712), - [aux_sym_cmd_identifier_token36] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [anon_sym_null] = ACTIONS(712), - [aux_sym_cmd_identifier_token38] = ACTIONS(1714), - [aux_sym_cmd_identifier_token39] = ACTIONS(712), - [aux_sym_cmd_identifier_token40] = ACTIONS(712), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1714), - [anon_sym_export_DASHenv] = ACTIONS(1714), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_use] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(1714), - [anon_sym_error] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_loop] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_match] = ACTIONS(1714), - [aux_sym_ctrl_match_token1] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_source] = ACTIONS(1714), - [anon_sym_source_DASHenv] = ACTIONS(1714), - [anon_sym_register] = ACTIONS(1714), - [anon_sym_hide] = ACTIONS(1714), - [anon_sym_hide_DASHenv] = ACTIONS(1714), - [anon_sym_overlay] = ACTIONS(1714), - [anon_sym_where] = ACTIONS(712), - [aux_sym_expr_unary_token1] = ACTIONS(712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(712), - [anon_sym_DOT_DOT_LT] = ACTIONS(712), - [aux_sym__val_number_decimal_token1] = ACTIONS(1714), - [aux_sym__val_number_decimal_token2] = ACTIONS(712), - [aux_sym__val_number_decimal_token3] = ACTIONS(712), - [aux_sym__val_number_decimal_token4] = ACTIONS(712), - [aux_sym__val_number_token1] = ACTIONS(712), - [aux_sym__val_number_token2] = ACTIONS(712), - [aux_sym__val_number_token3] = ACTIONS(712), - [anon_sym_0b] = ACTIONS(1714), - [anon_sym_0o] = ACTIONS(1714), - [anon_sym_0x] = ACTIONS(1714), - [sym_val_date] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [sym__str_single_quotes] = ACTIONS(712), - [sym__str_back_ticks] = ACTIONS(712), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(712), - [aux_sym_env_var_token1] = ACTIONS(1714), - [anon_sym_CARET] = ACTIONS(712), + [273] = { + [sym_comment] = STATE(273), + [ts_builtin_sym_end] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_alias] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_let_DASHenv] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [aux_sym_cmd_identifier_token1] = ACTIONS(1691), + [aux_sym_cmd_identifier_token2] = ACTIONS(1691), + [aux_sym_cmd_identifier_token3] = ACTIONS(1691), + [aux_sym_cmd_identifier_token4] = ACTIONS(1691), + [aux_sym_cmd_identifier_token5] = ACTIONS(1691), + [aux_sym_cmd_identifier_token6] = ACTIONS(1691), + [aux_sym_cmd_identifier_token7] = ACTIONS(1691), + [aux_sym_cmd_identifier_token8] = ACTIONS(1691), + [aux_sym_cmd_identifier_token9] = ACTIONS(1691), + [aux_sym_cmd_identifier_token10] = ACTIONS(1691), + [aux_sym_cmd_identifier_token11] = ACTIONS(1691), + [aux_sym_cmd_identifier_token12] = ACTIONS(1691), + [aux_sym_cmd_identifier_token13] = ACTIONS(1691), + [aux_sym_cmd_identifier_token14] = ACTIONS(1691), + [aux_sym_cmd_identifier_token15] = ACTIONS(1691), + [aux_sym_cmd_identifier_token16] = ACTIONS(1691), + [aux_sym_cmd_identifier_token17] = ACTIONS(1691), + [aux_sym_cmd_identifier_token18] = ACTIONS(1691), + [aux_sym_cmd_identifier_token19] = ACTIONS(1691), + [aux_sym_cmd_identifier_token20] = ACTIONS(1691), + [aux_sym_cmd_identifier_token21] = ACTIONS(1691), + [aux_sym_cmd_identifier_token22] = ACTIONS(1691), + [aux_sym_cmd_identifier_token23] = ACTIONS(1691), + [aux_sym_cmd_identifier_token24] = ACTIONS(1309), + [aux_sym_cmd_identifier_token25] = ACTIONS(1691), + [aux_sym_cmd_identifier_token26] = ACTIONS(1309), + [aux_sym_cmd_identifier_token27] = ACTIONS(1691), + [aux_sym_cmd_identifier_token28] = ACTIONS(1691), + [aux_sym_cmd_identifier_token29] = ACTIONS(1691), + [aux_sym_cmd_identifier_token30] = ACTIONS(1691), + [aux_sym_cmd_identifier_token31] = ACTIONS(1309), + [aux_sym_cmd_identifier_token32] = ACTIONS(1309), + [aux_sym_cmd_identifier_token33] = ACTIONS(1309), + [aux_sym_cmd_identifier_token34] = ACTIONS(1309), + [aux_sym_cmd_identifier_token35] = ACTIONS(1309), + [aux_sym_cmd_identifier_token36] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1691), + [aux_sym_cmd_identifier_token39] = ACTIONS(1309), + [aux_sym_cmd_identifier_token40] = ACTIONS(1309), + [sym__newline] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_where] = ACTIONS(1309), + [aux_sym_expr_unary_token1] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_DOT_DOT_LT] = ACTIONS(1309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1309), + [aux_sym__val_number_decimal_token3] = ACTIONS(1309), + [aux_sym__val_number_decimal_token4] = ACTIONS(1309), + [aux_sym__val_number_token1] = ACTIONS(1309), + [aux_sym__val_number_token2] = ACTIONS(1309), + [aux_sym__val_number_token3] = ACTIONS(1309), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym__str_single_quotes] = ACTIONS(1309), + [sym__str_back_ticks] = ACTIONS(1309), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), + [aux_sym_env_var_token1] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1309), [anon_sym_POUND] = ACTIONS(247), }, - [239] = { - [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(6970), - [aux_sym__parenthesized_body_repeat1] = STATE(239), + [274] = { + [sym_comment] = STATE(274), [anon_sym_export] = ACTIONS(1721), [anon_sym_alias] = ACTIONS(1721), [anon_sym_let] = ACTIONS(1721), @@ -103034,18 +108245,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1721), [aux_sym_cmd_identifier_token22] = ACTIONS(1721), [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1723), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1723), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), [aux_sym_cmd_identifier_token27] = ACTIONS(1721), [aux_sym_cmd_identifier_token28] = ACTIONS(1721), [aux_sym_cmd_identifier_token29] = ACTIONS(1721), [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1723), - [aux_sym_cmd_identifier_token32] = ACTIONS(1723), - [aux_sym_cmd_identifier_token33] = ACTIONS(1723), - [aux_sym_cmd_identifier_token34] = ACTIONS(1723), - [aux_sym_cmd_identifier_token35] = ACTIONS(1723), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), [aux_sym_cmd_identifier_token36] = ACTIONS(1721), [anon_sym_true] = ACTIONS(1723), [anon_sym_false] = ACTIONS(1723), @@ -103053,29 +108264,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1721), [aux_sym_cmd_identifier_token39] = ACTIONS(1723), [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1728), [anon_sym_def] = ACTIONS(1721), [anon_sym_export_DASHenv] = ACTIONS(1721), [anon_sym_extern] = ACTIONS(1721), [anon_sym_module] = ACTIONS(1721), [anon_sym_use] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), [anon_sym_DASH] = ACTIONS(1721), [anon_sym_break] = ACTIONS(1721), [anon_sym_continue] = ACTIONS(1721), [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), [anon_sym_while] = ACTIONS(1721), [anon_sym_do] = ACTIONS(1721), [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), [anon_sym_match] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), [anon_sym_return] = ACTIONS(1721), [anon_sym_source] = ACTIONS(1721), [anon_sym_source_DASHenv] = ACTIONS(1721), @@ -103083,10 +108295,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1721), [anon_sym_hide_DASHenv] = ACTIONS(1721), [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_where] = ACTIONS(1723), - [aux_sym_expr_unary_token1] = ACTIONS(1723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(1736), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), [aux_sym__val_number_decimal_token1] = ACTIONS(1721), [aux_sym__val_number_decimal_token2] = ACTIONS(1723), [aux_sym__val_number_decimal_token3] = ACTIONS(1723), @@ -103094,264 +108311,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1723), [aux_sym__val_number_token2] = ACTIONS(1723), [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), [anon_sym_DQUOTE] = ACTIONS(1723), [sym__str_single_quotes] = ACTIONS(1723), [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [aux_sym_env_var_token1] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, - [240] = { - [sym_comment] = STATE(240), - [aux_sym__block_body_repeat1] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), + [275] = { + [sym_comment] = STATE(275), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [276] = { + [sym_comment] = STATE(276), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(3), + }, + [277] = { + [sym_comment] = STATE(277), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1738), + [aux_sym_cmd_identifier_token40] = ACTIONS(1738), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), + [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(1738), + [aux_sym__val_number_token2] = ACTIONS(1738), + [aux_sym__val_number_token3] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym__str_single_quotes] = ACTIONS(1738), + [sym__str_back_ticks] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), + [sym__entry_separator] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + }, + [278] = { + [sym_comment] = STATE(278), + [aux_sym__block_body_repeat1] = STATE(234), + [anon_sym_export] = ACTIONS(1647), + [anon_sym_alias] = ACTIONS(1647), + [anon_sym_let] = ACTIONS(1647), + [anon_sym_let_DASHenv] = ACTIONS(1647), + [anon_sym_mut] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [aux_sym_cmd_identifier_token1] = ACTIONS(1647), + [aux_sym_cmd_identifier_token2] = ACTIONS(1647), + [aux_sym_cmd_identifier_token3] = ACTIONS(1647), + [aux_sym_cmd_identifier_token4] = ACTIONS(1647), + [aux_sym_cmd_identifier_token5] = ACTIONS(1647), + [aux_sym_cmd_identifier_token6] = ACTIONS(1647), + [aux_sym_cmd_identifier_token7] = ACTIONS(1647), + [aux_sym_cmd_identifier_token8] = ACTIONS(1647), + [aux_sym_cmd_identifier_token9] = ACTIONS(1647), + [aux_sym_cmd_identifier_token10] = ACTIONS(1647), + [aux_sym_cmd_identifier_token11] = ACTIONS(1647), + [aux_sym_cmd_identifier_token12] = ACTIONS(1647), + [aux_sym_cmd_identifier_token13] = ACTIONS(1647), + [aux_sym_cmd_identifier_token14] = ACTIONS(1647), + [aux_sym_cmd_identifier_token15] = ACTIONS(1647), + [aux_sym_cmd_identifier_token16] = ACTIONS(1647), + [aux_sym_cmd_identifier_token17] = ACTIONS(1647), + [aux_sym_cmd_identifier_token18] = ACTIONS(1647), + [aux_sym_cmd_identifier_token19] = ACTIONS(1647), + [aux_sym_cmd_identifier_token20] = ACTIONS(1647), + [aux_sym_cmd_identifier_token21] = ACTIONS(1647), + [aux_sym_cmd_identifier_token22] = ACTIONS(1647), + [aux_sym_cmd_identifier_token23] = ACTIONS(1647), + [aux_sym_cmd_identifier_token24] = ACTIONS(1649), + [aux_sym_cmd_identifier_token25] = ACTIONS(1647), + [aux_sym_cmd_identifier_token26] = ACTIONS(1649), + [aux_sym_cmd_identifier_token27] = ACTIONS(1647), + [aux_sym_cmd_identifier_token28] = ACTIONS(1647), + [aux_sym_cmd_identifier_token29] = ACTIONS(1647), + [aux_sym_cmd_identifier_token30] = ACTIONS(1647), + [aux_sym_cmd_identifier_token31] = ACTIONS(1649), + [aux_sym_cmd_identifier_token32] = ACTIONS(1649), + [aux_sym_cmd_identifier_token33] = ACTIONS(1649), + [aux_sym_cmd_identifier_token34] = ACTIONS(1649), + [aux_sym_cmd_identifier_token35] = ACTIONS(1649), + [aux_sym_cmd_identifier_token36] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [anon_sym_null] = ACTIONS(1649), + [aux_sym_cmd_identifier_token38] = ACTIONS(1647), + [aux_sym_cmd_identifier_token39] = ACTIONS(1649), + [aux_sym_cmd_identifier_token40] = ACTIONS(1649), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1647), + [anon_sym_export_DASHenv] = ACTIONS(1647), + [anon_sym_extern] = ACTIONS(1647), + [anon_sym_module] = ACTIONS(1647), + [anon_sym_use] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_loop] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_try] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_source] = ACTIONS(1647), + [anon_sym_source_DASHenv] = ACTIONS(1647), + [anon_sym_register] = ACTIONS(1647), + [anon_sym_hide] = ACTIONS(1647), + [anon_sym_hide_DASHenv] = ACTIONS(1647), + [anon_sym_overlay] = ACTIONS(1647), + [anon_sym_where] = ACTIONS(1649), + [aux_sym_expr_unary_token1] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), + [anon_sym_DOT_DOT_LT] = ACTIONS(1649), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1649), + [aux_sym__val_number_decimal_token4] = ACTIONS(1649), + [aux_sym__val_number_token1] = ACTIONS(1649), + [aux_sym__val_number_token2] = ACTIONS(1649), + [aux_sym__val_number_token3] = ACTIONS(1649), + [anon_sym_0b] = ACTIONS(1647), + [anon_sym_0o] = ACTIONS(1647), + [anon_sym_0x] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), + [aux_sym_env_var_token1] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1649), [anon_sym_POUND] = ACTIONS(247), }, - [241] = { - [sym_cell_path] = STATE(426), - [sym_path] = STATE(388), - [sym_comment] = STATE(241), - [aux_sym_cell_path_repeat1] = STATE(287), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_alias] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_let_DASHenv] = ACTIONS(1625), - [anon_sym_mut] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [aux_sym_cmd_identifier_token1] = ACTIONS(1625), - [aux_sym_cmd_identifier_token2] = ACTIONS(1625), - [aux_sym_cmd_identifier_token3] = ACTIONS(1625), - [aux_sym_cmd_identifier_token4] = ACTIONS(1625), - [aux_sym_cmd_identifier_token5] = ACTIONS(1625), - [aux_sym_cmd_identifier_token6] = ACTIONS(1625), - [aux_sym_cmd_identifier_token7] = ACTIONS(1625), - [aux_sym_cmd_identifier_token8] = ACTIONS(1625), - [aux_sym_cmd_identifier_token9] = ACTIONS(1625), - [aux_sym_cmd_identifier_token10] = ACTIONS(1625), - [aux_sym_cmd_identifier_token11] = ACTIONS(1625), - [aux_sym_cmd_identifier_token12] = ACTIONS(1625), - [aux_sym_cmd_identifier_token13] = ACTIONS(1625), - [aux_sym_cmd_identifier_token14] = ACTIONS(1625), - [aux_sym_cmd_identifier_token15] = ACTIONS(1625), - [aux_sym_cmd_identifier_token16] = ACTIONS(1625), - [aux_sym_cmd_identifier_token17] = ACTIONS(1625), - [aux_sym_cmd_identifier_token18] = ACTIONS(1625), - [aux_sym_cmd_identifier_token19] = ACTIONS(1625), - [aux_sym_cmd_identifier_token20] = ACTIONS(1625), - [aux_sym_cmd_identifier_token21] = ACTIONS(1625), - [aux_sym_cmd_identifier_token22] = ACTIONS(1625), - [aux_sym_cmd_identifier_token23] = ACTIONS(1625), - [aux_sym_cmd_identifier_token24] = ACTIONS(1625), - [aux_sym_cmd_identifier_token25] = ACTIONS(1625), - [aux_sym_cmd_identifier_token26] = ACTIONS(1625), - [aux_sym_cmd_identifier_token27] = ACTIONS(1625), - [aux_sym_cmd_identifier_token28] = ACTIONS(1625), - [aux_sym_cmd_identifier_token29] = ACTIONS(1625), - [aux_sym_cmd_identifier_token30] = ACTIONS(1625), - [aux_sym_cmd_identifier_token31] = ACTIONS(1625), - [aux_sym_cmd_identifier_token32] = ACTIONS(1625), - [aux_sym_cmd_identifier_token33] = ACTIONS(1625), - [aux_sym_cmd_identifier_token34] = ACTIONS(1625), - [aux_sym_cmd_identifier_token35] = ACTIONS(1625), - [aux_sym_cmd_identifier_token36] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1625), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [anon_sym_def] = ACTIONS(1625), - [anon_sym_export_DASHenv] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1629), - [anon_sym_error] = ACTIONS(1625), - [anon_sym_list] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_in] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_make] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_source] = ACTIONS(1625), - [anon_sym_source_DASHenv] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_hide] = ACTIONS(1625), - [anon_sym_hide_DASHenv] = ACTIONS(1625), - [anon_sym_overlay] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_as] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token3] = ACTIONS(1629), - [aux_sym__val_number_decimal_token4] = ACTIONS(1629), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1625), + [279] = { + [sym_comment] = STATE(279), + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1744), + [anon_sym_alias] = ACTIONS(1744), + [anon_sym_let] = ACTIONS(1744), + [anon_sym_let_DASHenv] = ACTIONS(1744), + [anon_sym_mut] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [aux_sym_cmd_identifier_token1] = ACTIONS(1744), + [aux_sym_cmd_identifier_token2] = ACTIONS(1744), + [aux_sym_cmd_identifier_token3] = ACTIONS(1744), + [aux_sym_cmd_identifier_token4] = ACTIONS(1744), + [aux_sym_cmd_identifier_token5] = ACTIONS(1744), + [aux_sym_cmd_identifier_token6] = ACTIONS(1744), + [aux_sym_cmd_identifier_token7] = ACTIONS(1744), + [aux_sym_cmd_identifier_token8] = ACTIONS(1744), + [aux_sym_cmd_identifier_token9] = ACTIONS(1744), + [aux_sym_cmd_identifier_token10] = ACTIONS(1744), + [aux_sym_cmd_identifier_token11] = ACTIONS(1744), + [aux_sym_cmd_identifier_token12] = ACTIONS(1744), + [aux_sym_cmd_identifier_token13] = ACTIONS(1744), + [aux_sym_cmd_identifier_token14] = ACTIONS(1744), + [aux_sym_cmd_identifier_token15] = ACTIONS(1744), + [aux_sym_cmd_identifier_token16] = ACTIONS(1744), + [aux_sym_cmd_identifier_token17] = ACTIONS(1744), + [aux_sym_cmd_identifier_token18] = ACTIONS(1744), + [aux_sym_cmd_identifier_token19] = ACTIONS(1744), + [aux_sym_cmd_identifier_token20] = ACTIONS(1744), + [aux_sym_cmd_identifier_token21] = ACTIONS(1744), + [aux_sym_cmd_identifier_token22] = ACTIONS(1744), + [aux_sym_cmd_identifier_token23] = ACTIONS(1744), + [aux_sym_cmd_identifier_token24] = ACTIONS(1742), + [aux_sym_cmd_identifier_token25] = ACTIONS(1744), + [aux_sym_cmd_identifier_token26] = ACTIONS(1742), + [aux_sym_cmd_identifier_token27] = ACTIONS(1744), + [aux_sym_cmd_identifier_token28] = ACTIONS(1744), + [aux_sym_cmd_identifier_token29] = ACTIONS(1744), + [aux_sym_cmd_identifier_token30] = ACTIONS(1744), + [aux_sym_cmd_identifier_token31] = ACTIONS(1742), + [aux_sym_cmd_identifier_token32] = ACTIONS(1742), + [aux_sym_cmd_identifier_token33] = ACTIONS(1742), + [aux_sym_cmd_identifier_token34] = ACTIONS(1742), + [aux_sym_cmd_identifier_token35] = ACTIONS(1742), + [aux_sym_cmd_identifier_token36] = ACTIONS(1744), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [anon_sym_null] = ACTIONS(1742), + [aux_sym_cmd_identifier_token38] = ACTIONS(1744), + [aux_sym_cmd_identifier_token39] = ACTIONS(1742), + [aux_sym_cmd_identifier_token40] = ACTIONS(1742), + [sym__newline] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_def] = ACTIONS(1744), + [anon_sym_export_DASHenv] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_module] = ACTIONS(1744), + [anon_sym_use] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_DOLLAR] = ACTIONS(1744), + [anon_sym_error] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_loop] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_match] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_source] = ACTIONS(1744), + [anon_sym_source_DASHenv] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_hide] = ACTIONS(1744), + [anon_sym_hide_DASHenv] = ACTIONS(1744), + [anon_sym_overlay] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1742), + [aux_sym_expr_unary_token1] = ACTIONS(1742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [anon_sym_DOT_DOT_LT] = ACTIONS(1742), + [aux_sym__val_number_decimal_token1] = ACTIONS(1744), + [aux_sym__val_number_decimal_token2] = ACTIONS(1742), + [aux_sym__val_number_decimal_token3] = ACTIONS(1742), + [aux_sym__val_number_decimal_token4] = ACTIONS(1742), + [aux_sym__val_number_token1] = ACTIONS(1742), + [aux_sym__val_number_token2] = ACTIONS(1742), + [aux_sym__val_number_token3] = ACTIONS(1742), + [anon_sym_0b] = ACTIONS(1744), + [anon_sym_0o] = ACTIONS(1744), + [anon_sym_0x] = ACTIONS(1744), + [sym_val_date] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), + [aux_sym_env_var_token1] = ACTIONS(1744), + [anon_sym_CARET] = ACTIONS(1742), [anon_sym_POUND] = ACTIONS(247), }, - [242] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4957), - [sym_block] = STATE(4958), - [sym__expression_parenthesized] = STATE(4958), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4958), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(260), + [280] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5072), + [sym_block] = STATE(5073), + [sym__expression_parenthesized] = STATE(5073), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5073), + [sym_comment] = STATE(280), + [aux_sym_shebang_repeat1] = STATE(285), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103388,705 +108913,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [243] = { - [sym_comment] = STATE(243), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(1751), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [sym__entry_separator] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(3), - }, - [244] = { - [sym_comment] = STATE(244), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), - [sym__entry_separator] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(3), + [281] = { + [sym_comment] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_alias] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_let_DASHenv] = ACTIONS(1768), + [anon_sym_mut] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [aux_sym_cmd_identifier_token1] = ACTIONS(1768), + [aux_sym_cmd_identifier_token2] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1768), + [aux_sym_cmd_identifier_token4] = ACTIONS(1768), + [aux_sym_cmd_identifier_token5] = ACTIONS(1768), + [aux_sym_cmd_identifier_token6] = ACTIONS(1768), + [aux_sym_cmd_identifier_token7] = ACTIONS(1768), + [aux_sym_cmd_identifier_token8] = ACTIONS(1768), + [aux_sym_cmd_identifier_token9] = ACTIONS(1768), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1768), + [aux_sym_cmd_identifier_token13] = ACTIONS(1768), + [aux_sym_cmd_identifier_token14] = ACTIONS(1768), + [aux_sym_cmd_identifier_token15] = ACTIONS(1768), + [aux_sym_cmd_identifier_token16] = ACTIONS(1768), + [aux_sym_cmd_identifier_token17] = ACTIONS(1768), + [aux_sym_cmd_identifier_token18] = ACTIONS(1768), + [aux_sym_cmd_identifier_token19] = ACTIONS(1768), + [aux_sym_cmd_identifier_token20] = ACTIONS(1768), + [aux_sym_cmd_identifier_token21] = ACTIONS(1768), + [aux_sym_cmd_identifier_token22] = ACTIONS(1768), + [aux_sym_cmd_identifier_token23] = ACTIONS(1768), + [aux_sym_cmd_identifier_token24] = ACTIONS(1766), + [aux_sym_cmd_identifier_token25] = ACTIONS(1768), + [aux_sym_cmd_identifier_token26] = ACTIONS(1766), + [aux_sym_cmd_identifier_token27] = ACTIONS(1768), + [aux_sym_cmd_identifier_token28] = ACTIONS(1768), + [aux_sym_cmd_identifier_token29] = ACTIONS(1768), + [aux_sym_cmd_identifier_token30] = ACTIONS(1768), + [aux_sym_cmd_identifier_token31] = ACTIONS(1766), + [aux_sym_cmd_identifier_token32] = ACTIONS(1766), + [aux_sym_cmd_identifier_token33] = ACTIONS(1766), + [aux_sym_cmd_identifier_token34] = ACTIONS(1766), + [aux_sym_cmd_identifier_token35] = ACTIONS(1766), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [anon_sym_null] = ACTIONS(1766), + [aux_sym_cmd_identifier_token38] = ACTIONS(1768), + [aux_sym_cmd_identifier_token39] = ACTIONS(1766), + [aux_sym_cmd_identifier_token40] = ACTIONS(1766), + [sym__newline] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_def] = ACTIONS(1768), + [anon_sym_export_DASHenv] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_error] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_source] = ACTIONS(1768), + [anon_sym_source_DASHenv] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_hide] = ACTIONS(1768), + [anon_sym_hide_DASHenv] = ACTIONS(1768), + [anon_sym_overlay] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1766), + [aux_sym_expr_unary_token1] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_LT] = ACTIONS(1766), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1766), + [aux_sym__val_number_decimal_token3] = ACTIONS(1766), + [aux_sym__val_number_decimal_token4] = ACTIONS(1766), + [aux_sym__val_number_token1] = ACTIONS(1766), + [aux_sym__val_number_token2] = ACTIONS(1766), + [aux_sym__val_number_token3] = ACTIONS(1766), + [anon_sym_0b] = ACTIONS(1768), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym__str_single_quotes] = ACTIONS(1766), + [sym__str_back_ticks] = ACTIONS(1766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1766), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1766), + [aux_sym_env_var_token1] = ACTIONS(1768), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(247), }, - [245] = { - [sym_comment] = STATE(245), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [sym__entry_separator] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), + [282] = { + [sym_comment] = STATE(282), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1770), + [aux_sym__immediate_decimal_token2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, - [246] = { - [sym_comment] = STATE(246), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [sym__entry_separator] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), + [283] = { + [sym_comment] = STATE(283), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, - [247] = { - [sym_comment] = STATE(247), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [248] = { - [sym_comment] = STATE(248), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [284] = { + [sym_comment] = STATE(284), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, - [249] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5049), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5050), - [sym_comment] = STATE(249), - [aux_sym_shebang_repeat1] = STATE(256), + [285] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5135), + [sym_block] = STATE(5141), + [sym__expression_parenthesized] = STATE(5141), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5141), + [sym_comment] = STATE(285), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104123,705 +109438,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [250] = { - [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - }, - [251] = { - [sym_comment] = STATE(251), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [252] = { - [sym_comment] = STATE(252), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(3), - }, - [253] = { - [sym_comment] = STATE(253), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1755), - [anon_sym_false] = ACTIONS(1755), - [anon_sym_null] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - }, - [254] = { - [sym_comment] = STATE(254), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1759), - [aux_sym__immediate_decimal_token2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), + [286] = { + [sym_comment] = STATE(286), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_null] = ACTIONS(1038), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1038), + [aux_sym_cmd_identifier_token40] = ACTIONS(1038), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1038), + [aux_sym__val_number_decimal_token3] = ACTIONS(1038), + [aux_sym__val_number_decimal_token4] = ACTIONS(1038), + [aux_sym__val_number_token1] = ACTIONS(1038), + [aux_sym__val_number_token2] = ACTIONS(1038), + [aux_sym__val_number_token3] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym__str_single_quotes] = ACTIONS(1038), + [sym__str_back_ticks] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), + [sym__entry_separator] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), [anon_sym_POUND] = ACTIONS(3), }, - [255] = { - [sym_comment] = STATE(255), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), + [287] = { + [sym_comment] = STATE(287), + [anon_sym_export] = ACTIONS(1311), + [anon_sym_alias] = ACTIONS(1311), + [anon_sym_let] = ACTIONS(1311), + [anon_sym_let_DASHenv] = ACTIONS(1311), + [anon_sym_mut] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [aux_sym_cmd_identifier_token1] = ACTIONS(1311), + [aux_sym_cmd_identifier_token2] = ACTIONS(1311), + [aux_sym_cmd_identifier_token3] = ACTIONS(1311), + [aux_sym_cmd_identifier_token4] = ACTIONS(1311), + [aux_sym_cmd_identifier_token5] = ACTIONS(1311), + [aux_sym_cmd_identifier_token6] = ACTIONS(1311), + [aux_sym_cmd_identifier_token7] = ACTIONS(1311), + [aux_sym_cmd_identifier_token8] = ACTIONS(1311), + [aux_sym_cmd_identifier_token9] = ACTIONS(1311), + [aux_sym_cmd_identifier_token10] = ACTIONS(1311), + [aux_sym_cmd_identifier_token11] = ACTIONS(1311), + [aux_sym_cmd_identifier_token12] = ACTIONS(1311), + [aux_sym_cmd_identifier_token13] = ACTIONS(1311), + [aux_sym_cmd_identifier_token14] = ACTIONS(1311), + [aux_sym_cmd_identifier_token15] = ACTIONS(1311), + [aux_sym_cmd_identifier_token16] = ACTIONS(1311), + [aux_sym_cmd_identifier_token17] = ACTIONS(1311), + [aux_sym_cmd_identifier_token18] = ACTIONS(1311), + [aux_sym_cmd_identifier_token19] = ACTIONS(1311), + [aux_sym_cmd_identifier_token20] = ACTIONS(1311), + [aux_sym_cmd_identifier_token21] = ACTIONS(1311), + [aux_sym_cmd_identifier_token22] = ACTIONS(1311), + [aux_sym_cmd_identifier_token23] = ACTIONS(1311), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1311), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1311), + [aux_sym_cmd_identifier_token28] = ACTIONS(1311), + [aux_sym_cmd_identifier_token29] = ACTIONS(1311), + [aux_sym_cmd_identifier_token30] = ACTIONS(1311), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1311), + [anon_sym_export_DASHenv] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_module] = ACTIONS(1311), + [anon_sym_use] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1311), + [anon_sym_error] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_source] = ACTIONS(1311), + [anon_sym_source_DASHenv] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_hide] = ACTIONS(1311), + [anon_sym_hide_DASHenv] = ACTIONS(1311), + [anon_sym_overlay] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(1307), + [aux_sym_expr_unary_token1] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1307), + [aux_sym__val_number_decimal_token3] = ACTIONS(1307), + [aux_sym__val_number_decimal_token4] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1311), + [anon_sym_0o] = ACTIONS(1311), + [anon_sym_0x] = ACTIONS(1311), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [aux_sym_env_var_token1] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(247), }, - [256] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4957), - [sym_block] = STATE(4958), - [sym__expression_parenthesized] = STATE(4958), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4958), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(1022), + [288] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5135), + [sym_block] = STATE(5141), + [sym__expression_parenthesized] = STATE(5141), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5141), + [sym_comment] = STATE(288), + [aux_sym_shebang_repeat1] = STATE(291), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104858,180 +109753,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [257] = { - [sym_comment] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(1343), - [anon_sym_export] = ACTIONS(1347), - [anon_sym_alias] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1347), - [anon_sym_let_DASHenv] = ACTIONS(1347), - [anon_sym_mut] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [aux_sym_cmd_identifier_token1] = ACTIONS(1347), - [aux_sym_cmd_identifier_token2] = ACTIONS(1347), - [aux_sym_cmd_identifier_token3] = ACTIONS(1347), - [aux_sym_cmd_identifier_token4] = ACTIONS(1347), - [aux_sym_cmd_identifier_token5] = ACTIONS(1347), - [aux_sym_cmd_identifier_token6] = ACTIONS(1347), - [aux_sym_cmd_identifier_token7] = ACTIONS(1347), - [aux_sym_cmd_identifier_token8] = ACTIONS(1347), - [aux_sym_cmd_identifier_token9] = ACTIONS(1347), - [aux_sym_cmd_identifier_token10] = ACTIONS(1347), - [aux_sym_cmd_identifier_token11] = ACTIONS(1347), - [aux_sym_cmd_identifier_token12] = ACTIONS(1347), - [aux_sym_cmd_identifier_token13] = ACTIONS(1347), - [aux_sym_cmd_identifier_token14] = ACTIONS(1347), - [aux_sym_cmd_identifier_token15] = ACTIONS(1347), - [aux_sym_cmd_identifier_token16] = ACTIONS(1347), - [aux_sym_cmd_identifier_token17] = ACTIONS(1347), - [aux_sym_cmd_identifier_token18] = ACTIONS(1347), - [aux_sym_cmd_identifier_token19] = ACTIONS(1347), - [aux_sym_cmd_identifier_token20] = ACTIONS(1347), - [aux_sym_cmd_identifier_token21] = ACTIONS(1347), - [aux_sym_cmd_identifier_token22] = ACTIONS(1347), - [aux_sym_cmd_identifier_token23] = ACTIONS(1347), - [aux_sym_cmd_identifier_token24] = ACTIONS(1343), - [aux_sym_cmd_identifier_token25] = ACTIONS(1347), - [aux_sym_cmd_identifier_token26] = ACTIONS(1343), - [aux_sym_cmd_identifier_token27] = ACTIONS(1347), - [aux_sym_cmd_identifier_token28] = ACTIONS(1347), - [aux_sym_cmd_identifier_token29] = ACTIONS(1347), - [aux_sym_cmd_identifier_token30] = ACTIONS(1347), - [aux_sym_cmd_identifier_token31] = ACTIONS(1343), - [aux_sym_cmd_identifier_token32] = ACTIONS(1343), - [aux_sym_cmd_identifier_token33] = ACTIONS(1343), - [aux_sym_cmd_identifier_token34] = ACTIONS(1343), - [aux_sym_cmd_identifier_token35] = ACTIONS(1343), - [aux_sym_cmd_identifier_token36] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_null] = ACTIONS(1343), - [aux_sym_cmd_identifier_token38] = ACTIONS(1347), - [aux_sym_cmd_identifier_token39] = ACTIONS(1343), - [aux_sym_cmd_identifier_token40] = ACTIONS(1343), - [sym__newline] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_def] = ACTIONS(1347), - [anon_sym_export_DASHenv] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym_module] = ACTIONS(1347), - [anon_sym_use] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_error] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_loop] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_match] = ACTIONS(1347), - [aux_sym_ctrl_match_token1] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_try] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_source] = ACTIONS(1347), - [anon_sym_source_DASHenv] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_hide] = ACTIONS(1347), - [anon_sym_hide_DASHenv] = ACTIONS(1347), - [anon_sym_overlay] = ACTIONS(1347), - [anon_sym_where] = ACTIONS(1343), - [aux_sym_expr_unary_token1] = ACTIONS(1343), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), - [anon_sym_DOT_DOT_LT] = ACTIONS(1343), - [aux_sym__val_number_decimal_token1] = ACTIONS(1347), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1343), - [aux_sym__val_number_decimal_token4] = ACTIONS(1343), - [aux_sym__val_number_token1] = ACTIONS(1343), - [aux_sym__val_number_token2] = ACTIONS(1343), - [aux_sym__val_number_token3] = ACTIONS(1343), - [anon_sym_0b] = ACTIONS(1347), - [anon_sym_0o] = ACTIONS(1347), - [anon_sym_0x] = ACTIONS(1347), - [sym_val_date] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym__str_single_quotes] = ACTIONS(1343), - [sym__str_back_ticks] = ACTIONS(1343), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), - [aux_sym_env_var_token1] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(247), - }, - [258] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4959), - [sym_block] = STATE(4960), - [sym__expression_parenthesized] = STATE(4960), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4960), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(289), + [289] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5144), + [sym_block] = STATE(5145), + [sym__expression_parenthesized] = STATE(5145), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5145), + [sym_comment] = STATE(289), + [aux_sym_shebang_repeat1] = STATE(294), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105068,75 +109858,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [259] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4961), - [sym_block] = STATE(4962), - [sym__expression_parenthesized] = STATE(4962), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4962), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(264), + [290] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5146), + [sym_block] = STATE(5147), + [sym__expression_parenthesized] = STATE(5147), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5147), + [sym_comment] = STATE(290), + [aux_sym_shebang_repeat1] = STATE(297), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105173,75 +109963,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [260] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4983), - [sym_block] = STATE(4984), - [sym__expression_parenthesized] = STATE(4984), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4984), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(1022), + [291] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5013), + [sym_block] = STATE(5014), + [sym__expression_parenthesized] = STATE(5014), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5014), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105278,75 +110068,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [261] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4983), - [sym_block] = STATE(4984), - [sym__expression_parenthesized] = STATE(4984), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4984), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(268), + [292] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5013), + [sym_block] = STATE(5014), + [sym__expression_parenthesized] = STATE(5014), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5014), + [sym_comment] = STATE(292), + [aux_sym_shebang_repeat1] = STATE(301), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105357,206 +110147,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token8] = ACTIONS(369), [aux_sym_cmd_identifier_token9] = ACTIONS(367), [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [262] = { - [sym_comment] = STATE(262), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [293] = { + [sym_comment] = STATE(293), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1778), + [aux_sym_cmd_identifier_token40] = ACTIONS(1778), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), + [anon_sym_DOT_DOT2] = ACTIONS(1782), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1778), + [aux_sym__val_number_decimal_token3] = ACTIONS(1778), + [aux_sym__val_number_decimal_token4] = ACTIONS(1778), + [aux_sym__val_number_token1] = ACTIONS(1778), + [aux_sym__val_number_token2] = ACTIONS(1778), + [aux_sym__val_number_token3] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym__str_single_quotes] = ACTIONS(1778), + [sym__str_back_ticks] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), + [sym__entry_separator] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1778), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(3), }, - [263] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4985), - [sym_block] = STATE(4986), - [sym__expression_parenthesized] = STATE(4986), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4986), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(269), + [294] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5016), + [sym_block] = STATE(5017), + [sym__expression_parenthesized] = STATE(5017), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5017), + [sym_comment] = STATE(294), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105593,75 +110383,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [264] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4987), - [sym_block] = STATE(4988), - [sym__expression_parenthesized] = STATE(4988), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4988), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(1022), + [295] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5016), + [sym_block] = STATE(5017), + [sym__expression_parenthesized] = STATE(5017), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5017), + [sym_comment] = STATE(295), + [aux_sym_shebang_repeat1] = STATE(302), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105698,75 +110488,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [265] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4987), - [sym_block] = STATE(4988), - [sym__expression_parenthesized] = STATE(4988), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4988), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(271), + [296] = { + [sym_comment] = STATE(296), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [sym__entry_separator] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(3), + }, + [297] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5018), + [sym_block] = STATE(5019), + [sym__expression_parenthesized] = STATE(5019), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5019), + [sym_comment] = STATE(297), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105803,75 +110698,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [266] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4990), - [sym_block] = STATE(4991), - [sym__expression_parenthesized] = STATE(4991), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4991), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(273), + [298] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5018), + [sym_block] = STATE(5019), + [sym__expression_parenthesized] = STATE(5019), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5019), + [sym_comment] = STATE(298), + [aux_sym_shebang_repeat1] = STATE(304), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105908,180 +110803,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [267] = { - [sym_cell_path] = STATE(467), - [sym_path] = STATE(431), - [sym_comment] = STATE(267), - [aux_sym_cell_path_repeat1] = STATE(315), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [aux_sym_record_entry_token1] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), - }, - [268] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4999), - [sym_block] = STATE(5001), - [sym__expression_parenthesized] = STATE(5001), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5001), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(1022), + [299] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5021), + [sym_block] = STATE(5022), + [sym__expression_parenthesized] = STATE(5022), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5022), + [sym_comment] = STATE(299), + [aux_sym_shebang_repeat1] = STATE(306), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106118,75 +110908,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [269] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5002), - [sym_block] = STATE(5003), - [sym__expression_parenthesized] = STATE(5003), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5003), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1022), + [300] = { + [sym_comment] = STATE(300), + [anon_sym_export] = ACTIONS(1800), + [anon_sym_alias] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_let_DASHenv] = ACTIONS(1800), + [anon_sym_mut] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [aux_sym_cmd_identifier_token1] = ACTIONS(1800), + [aux_sym_cmd_identifier_token2] = ACTIONS(1800), + [aux_sym_cmd_identifier_token3] = ACTIONS(1800), + [aux_sym_cmd_identifier_token4] = ACTIONS(1800), + [aux_sym_cmd_identifier_token5] = ACTIONS(1800), + [aux_sym_cmd_identifier_token6] = ACTIONS(1800), + [aux_sym_cmd_identifier_token7] = ACTIONS(1800), + [aux_sym_cmd_identifier_token8] = ACTIONS(1800), + [aux_sym_cmd_identifier_token9] = ACTIONS(1800), + [aux_sym_cmd_identifier_token10] = ACTIONS(1800), + [aux_sym_cmd_identifier_token11] = ACTIONS(1800), + [aux_sym_cmd_identifier_token12] = ACTIONS(1800), + [aux_sym_cmd_identifier_token13] = ACTIONS(1800), + [aux_sym_cmd_identifier_token14] = ACTIONS(1800), + [aux_sym_cmd_identifier_token15] = ACTIONS(1800), + [aux_sym_cmd_identifier_token16] = ACTIONS(1800), + [aux_sym_cmd_identifier_token17] = ACTIONS(1800), + [aux_sym_cmd_identifier_token18] = ACTIONS(1800), + [aux_sym_cmd_identifier_token19] = ACTIONS(1800), + [aux_sym_cmd_identifier_token20] = ACTIONS(1800), + [aux_sym_cmd_identifier_token21] = ACTIONS(1800), + [aux_sym_cmd_identifier_token22] = ACTIONS(1800), + [aux_sym_cmd_identifier_token23] = ACTIONS(1800), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token25] = ACTIONS(1800), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token27] = ACTIONS(1800), + [aux_sym_cmd_identifier_token28] = ACTIONS(1800), + [aux_sym_cmd_identifier_token29] = ACTIONS(1800), + [aux_sym_cmd_identifier_token30] = ACTIONS(1800), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token36] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [aux_sym_cmd_identifier_token38] = ACTIONS(1800), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [sym__newline] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_def] = ACTIONS(1800), + [anon_sym_export_DASHenv] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym_module] = ACTIONS(1800), + [anon_sym_use] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_error] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_match] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_source] = ACTIONS(1800), + [anon_sym_source_DASHenv] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_hide] = ACTIONS(1800), + [anon_sym_hide_DASHenv] = ACTIONS(1800), + [anon_sym_overlay] = ACTIONS(1800), + [anon_sym_where] = ACTIONS(1802), + [aux_sym_expr_unary_token1] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1800), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1800), + [anon_sym_0o] = ACTIONS(1800), + [anon_sym_0x] = ACTIONS(1800), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [aux_sym_env_var_token1] = ACTIONS(1800), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(247), + }, + [301] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5029), + [sym_block] = STATE(5030), + [sym__expression_parenthesized] = STATE(5030), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5030), + [sym_comment] = STATE(301), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106223,75 +111118,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [270] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5002), - [sym_block] = STATE(5003), - [sym__expression_parenthesized] = STATE(5003), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5003), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(275), + [302] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5031), + [sym_block] = STATE(5032), + [sym__expression_parenthesized] = STATE(5032), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5032), + [sym_comment] = STATE(302), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106328,75 +111223,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [271] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5005), - [sym_block] = STATE(5006), - [sym__expression_parenthesized] = STATE(5006), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5006), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(1022), + [303] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5031), + [sym_block] = STATE(5032), + [sym__expression_parenthesized] = STATE(5032), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5032), + [sym_comment] = STATE(303), + [aux_sym_shebang_repeat1] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106433,75 +111328,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [272] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5005), - [sym_block] = STATE(5006), - [sym__expression_parenthesized] = STATE(5006), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5006), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(276), + [304] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5033), + [sym_block] = STATE(5034), + [sym__expression_parenthesized] = STATE(5034), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5034), + [sym_comment] = STATE(304), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106538,75 +111433,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [273] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5007), - [sym_block] = STATE(5008), - [sym__expression_parenthesized] = STATE(5008), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5008), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(1022), + [305] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5033), + [sym_block] = STATE(5034), + [sym__expression_parenthesized] = STATE(5034), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5034), + [sym_comment] = STATE(305), + [aux_sym_shebang_repeat1] = STATE(310), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106643,75 +111538,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [274] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5007), - [sym_block] = STATE(5008), - [sym__expression_parenthesized] = STATE(5008), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5008), - [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(277), + [306] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5035), + [sym_block] = STATE(5036), + [sym__expression_parenthesized] = STATE(5036), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5036), + [sym_comment] = STATE(306), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106748,75 +111643,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [275] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5013), - [sym_block] = STATE(5014), - [sym__expression_parenthesized] = STATE(5014), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5014), - [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(1022), + [307] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5035), + [sym_block] = STATE(5036), + [sym__expression_parenthesized] = STATE(5036), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5036), + [sym_comment] = STATE(307), + [aux_sym_shebang_repeat1] = STATE(311), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106853,75 +111748,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [276] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5015), - [sym_block] = STATE(5016), - [sym__expression_parenthesized] = STATE(5016), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5016), - [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(1022), + [308] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5038), + [sym_block] = STATE(5039), + [sym__expression_parenthesized] = STATE(5039), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5039), + [sym_comment] = STATE(308), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -106958,75 +111853,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [277] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5017), - [sym_block] = STATE(5018), - [sym__expression_parenthesized] = STATE(5018), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5018), - [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(1022), + [309] = { + [sym_cell_path] = STATE(546), + [sym_path] = STATE(456), + [sym_comment] = STATE(309), + [aux_sym_cell_path_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [aux_sym_cmd_identifier_token1] = ACTIONS(1005), + [aux_sym_cmd_identifier_token2] = ACTIONS(1005), + [aux_sym_cmd_identifier_token3] = ACTIONS(1005), + [aux_sym_cmd_identifier_token4] = ACTIONS(1005), + [aux_sym_cmd_identifier_token5] = ACTIONS(1005), + [aux_sym_cmd_identifier_token6] = ACTIONS(1005), + [aux_sym_cmd_identifier_token7] = ACTIONS(1005), + [aux_sym_cmd_identifier_token8] = ACTIONS(1005), + [aux_sym_cmd_identifier_token9] = ACTIONS(1005), + [aux_sym_cmd_identifier_token10] = ACTIONS(1005), + [aux_sym_cmd_identifier_token11] = ACTIONS(1005), + [aux_sym_cmd_identifier_token12] = ACTIONS(1005), + [aux_sym_cmd_identifier_token13] = ACTIONS(1005), + [aux_sym_cmd_identifier_token14] = ACTIONS(1005), + [aux_sym_cmd_identifier_token15] = ACTIONS(1005), + [aux_sym_cmd_identifier_token16] = ACTIONS(1005), + [aux_sym_cmd_identifier_token17] = ACTIONS(1005), + [aux_sym_cmd_identifier_token18] = ACTIONS(1005), + [aux_sym_cmd_identifier_token19] = ACTIONS(1005), + [aux_sym_cmd_identifier_token20] = ACTIONS(1005), + [aux_sym_cmd_identifier_token21] = ACTIONS(1005), + [aux_sym_cmd_identifier_token22] = ACTIONS(1005), + [aux_sym_cmd_identifier_token23] = ACTIONS(1005), + [aux_sym_cmd_identifier_token24] = ACTIONS(1005), + [aux_sym_cmd_identifier_token25] = ACTIONS(1005), + [aux_sym_cmd_identifier_token26] = ACTIONS(1005), + [aux_sym_cmd_identifier_token27] = ACTIONS(1005), + [aux_sym_cmd_identifier_token28] = ACTIONS(1005), + [aux_sym_cmd_identifier_token29] = ACTIONS(1005), + [aux_sym_cmd_identifier_token30] = ACTIONS(1005), + [aux_sym_cmd_identifier_token31] = ACTIONS(1005), + [aux_sym_cmd_identifier_token32] = ACTIONS(1005), + [aux_sym_cmd_identifier_token33] = ACTIONS(1005), + [aux_sym_cmd_identifier_token34] = ACTIONS(1005), + [aux_sym_cmd_identifier_token35] = ACTIONS(1005), + [aux_sym_cmd_identifier_token36] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1005), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_make] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), + [aux_sym_record_entry_token1] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(247), + }, + [310] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5040), + [sym_block] = STATE(5041), + [sym__expression_parenthesized] = STATE(5041), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5041), + [sym_comment] = STATE(310), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -107063,75 +112063,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [278] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5017), - [sym_block] = STATE(5018), - [sym__expression_parenthesized] = STATE(5018), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5018), - [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(279), + [311] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5043), + [sym_comment] = STATE(311), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -107168,75 +112168,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [279] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(5019), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(5020), - [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(1022), + [312] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5043), + [sym_comment] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -107273,1020 +112273,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [280] = { - [sym_comment] = STATE(280), - [anon_sym_export] = ACTIONS(1337), - [anon_sym_alias] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_let_DASHenv] = ACTIONS(1337), - [anon_sym_mut] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [aux_sym_cmd_identifier_token1] = ACTIONS(1337), - [aux_sym_cmd_identifier_token2] = ACTIONS(1337), - [aux_sym_cmd_identifier_token3] = ACTIONS(1337), - [aux_sym_cmd_identifier_token4] = ACTIONS(1337), - [aux_sym_cmd_identifier_token5] = ACTIONS(1337), - [aux_sym_cmd_identifier_token6] = ACTIONS(1337), - [aux_sym_cmd_identifier_token7] = ACTIONS(1337), - [aux_sym_cmd_identifier_token8] = ACTIONS(1337), - [aux_sym_cmd_identifier_token9] = ACTIONS(1337), - [aux_sym_cmd_identifier_token10] = ACTIONS(1337), - [aux_sym_cmd_identifier_token11] = ACTIONS(1337), - [aux_sym_cmd_identifier_token12] = ACTIONS(1337), - [aux_sym_cmd_identifier_token13] = ACTIONS(1337), - [aux_sym_cmd_identifier_token14] = ACTIONS(1337), - [aux_sym_cmd_identifier_token15] = ACTIONS(1337), - [aux_sym_cmd_identifier_token16] = ACTIONS(1337), - [aux_sym_cmd_identifier_token17] = ACTIONS(1337), - [aux_sym_cmd_identifier_token18] = ACTIONS(1337), - [aux_sym_cmd_identifier_token19] = ACTIONS(1337), - [aux_sym_cmd_identifier_token20] = ACTIONS(1337), - [aux_sym_cmd_identifier_token21] = ACTIONS(1337), - [aux_sym_cmd_identifier_token22] = ACTIONS(1337), - [aux_sym_cmd_identifier_token23] = ACTIONS(1337), - [aux_sym_cmd_identifier_token24] = ACTIONS(1340), - [aux_sym_cmd_identifier_token25] = ACTIONS(1337), - [aux_sym_cmd_identifier_token26] = ACTIONS(1340), - [aux_sym_cmd_identifier_token27] = ACTIONS(1337), - [aux_sym_cmd_identifier_token28] = ACTIONS(1337), - [aux_sym_cmd_identifier_token29] = ACTIONS(1337), - [aux_sym_cmd_identifier_token30] = ACTIONS(1337), - [aux_sym_cmd_identifier_token31] = ACTIONS(1340), - [aux_sym_cmd_identifier_token32] = ACTIONS(1340), - [aux_sym_cmd_identifier_token33] = ACTIONS(1340), - [aux_sym_cmd_identifier_token34] = ACTIONS(1340), - [aux_sym_cmd_identifier_token35] = ACTIONS(1340), - [aux_sym_cmd_identifier_token36] = ACTIONS(1337), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [anon_sym_null] = ACTIONS(1340), - [aux_sym_cmd_identifier_token38] = ACTIONS(1337), - [aux_sym_cmd_identifier_token39] = ACTIONS(1340), - [aux_sym_cmd_identifier_token40] = ACTIONS(1340), - [sym__newline] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_def] = ACTIONS(1337), - [anon_sym_export_DASHenv] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_module] = ACTIONS(1337), - [anon_sym_use] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_error] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_loop] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [aux_sym_ctrl_match_token1] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1337), - [anon_sym_try] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_source] = ACTIONS(1337), - [anon_sym_source_DASHenv] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_hide] = ACTIONS(1337), - [anon_sym_hide_DASHenv] = ACTIONS(1337), - [anon_sym_overlay] = ACTIONS(1337), - [anon_sym_where] = ACTIONS(1340), - [aux_sym_expr_unary_token1] = ACTIONS(1340), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1340), - [anon_sym_DOT_DOT_LT] = ACTIONS(1340), - [aux_sym__val_number_decimal_token1] = ACTIONS(1337), - [aux_sym__val_number_decimal_token2] = ACTIONS(1340), - [aux_sym__val_number_decimal_token3] = ACTIONS(1340), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(1340), - [aux_sym__val_number_token2] = ACTIONS(1340), - [aux_sym__val_number_token3] = ACTIONS(1340), - [anon_sym_0b] = ACTIONS(1337), - [anon_sym_0o] = ACTIONS(1337), - [anon_sym_0x] = ACTIONS(1337), - [sym_val_date] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym__str_single_quotes] = ACTIONS(1340), - [sym__str_back_ticks] = ACTIONS(1340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1340), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1340), - [aux_sym_env_var_token1] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(247), - }, - [281] = { - [sym_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1773), - [anon_sym_alias] = ACTIONS(1773), - [anon_sym_let] = ACTIONS(1773), - [anon_sym_let_DASHenv] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [aux_sym_cmd_identifier_token1] = ACTIONS(1773), - [aux_sym_cmd_identifier_token2] = ACTIONS(1773), - [aux_sym_cmd_identifier_token3] = ACTIONS(1773), - [aux_sym_cmd_identifier_token4] = ACTIONS(1773), - [aux_sym_cmd_identifier_token5] = ACTIONS(1773), - [aux_sym_cmd_identifier_token6] = ACTIONS(1773), - [aux_sym_cmd_identifier_token7] = ACTIONS(1773), - [aux_sym_cmd_identifier_token8] = ACTIONS(1773), - [aux_sym_cmd_identifier_token9] = ACTIONS(1773), - [aux_sym_cmd_identifier_token10] = ACTIONS(1773), - [aux_sym_cmd_identifier_token11] = ACTIONS(1773), - [aux_sym_cmd_identifier_token12] = ACTIONS(1773), - [aux_sym_cmd_identifier_token13] = ACTIONS(1773), - [aux_sym_cmd_identifier_token14] = ACTIONS(1773), - [aux_sym_cmd_identifier_token15] = ACTIONS(1773), - [aux_sym_cmd_identifier_token16] = ACTIONS(1773), - [aux_sym_cmd_identifier_token17] = ACTIONS(1773), - [aux_sym_cmd_identifier_token18] = ACTIONS(1773), - [aux_sym_cmd_identifier_token19] = ACTIONS(1773), - [aux_sym_cmd_identifier_token20] = ACTIONS(1773), - [aux_sym_cmd_identifier_token21] = ACTIONS(1773), - [aux_sym_cmd_identifier_token22] = ACTIONS(1773), - [aux_sym_cmd_identifier_token23] = ACTIONS(1773), - [aux_sym_cmd_identifier_token24] = ACTIONS(1771), - [aux_sym_cmd_identifier_token25] = ACTIONS(1773), - [aux_sym_cmd_identifier_token26] = ACTIONS(1771), - [aux_sym_cmd_identifier_token27] = ACTIONS(1773), - [aux_sym_cmd_identifier_token28] = ACTIONS(1773), - [aux_sym_cmd_identifier_token29] = ACTIONS(1773), - [aux_sym_cmd_identifier_token30] = ACTIONS(1773), - [aux_sym_cmd_identifier_token31] = ACTIONS(1771), - [aux_sym_cmd_identifier_token32] = ACTIONS(1771), - [aux_sym_cmd_identifier_token33] = ACTIONS(1771), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1771), - [aux_sym_cmd_identifier_token36] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1773), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1773), - [anon_sym_export_DASHenv] = ACTIONS(1773), - [anon_sym_extern] = ACTIONS(1773), - [anon_sym_module] = ACTIONS(1773), - [anon_sym_use] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_error] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_loop] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_do] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [aux_sym_ctrl_match_token1] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_source] = ACTIONS(1773), - [anon_sym_source_DASHenv] = ACTIONS(1773), - [anon_sym_register] = ACTIONS(1773), - [anon_sym_hide] = ACTIONS(1773), - [anon_sym_hide_DASHenv] = ACTIONS(1773), - [anon_sym_overlay] = ACTIONS(1773), - [anon_sym_where] = ACTIONS(1771), - [aux_sym_expr_unary_token1] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1773), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [anon_sym_0b] = ACTIONS(1773), - [anon_sym_0o] = ACTIONS(1773), - [anon_sym_0x] = ACTIONS(1773), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [aux_sym_env_var_token1] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(247), - }, - [282] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1775), - [anon_sym_export] = ACTIONS(1777), - [anon_sym_alias] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_let_DASHenv] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [aux_sym_cmd_identifier_token1] = ACTIONS(1777), - [aux_sym_cmd_identifier_token2] = ACTIONS(1777), - [aux_sym_cmd_identifier_token3] = ACTIONS(1777), - [aux_sym_cmd_identifier_token4] = ACTIONS(1777), - [aux_sym_cmd_identifier_token5] = ACTIONS(1777), - [aux_sym_cmd_identifier_token6] = ACTIONS(1777), - [aux_sym_cmd_identifier_token7] = ACTIONS(1777), - [aux_sym_cmd_identifier_token8] = ACTIONS(1777), - [aux_sym_cmd_identifier_token9] = ACTIONS(1777), - [aux_sym_cmd_identifier_token10] = ACTIONS(1777), - [aux_sym_cmd_identifier_token11] = ACTIONS(1777), - [aux_sym_cmd_identifier_token12] = ACTIONS(1777), - [aux_sym_cmd_identifier_token13] = ACTIONS(1777), - [aux_sym_cmd_identifier_token14] = ACTIONS(1777), - [aux_sym_cmd_identifier_token15] = ACTIONS(1777), - [aux_sym_cmd_identifier_token16] = ACTIONS(1777), - [aux_sym_cmd_identifier_token17] = ACTIONS(1777), - [aux_sym_cmd_identifier_token18] = ACTIONS(1777), - [aux_sym_cmd_identifier_token19] = ACTIONS(1777), - [aux_sym_cmd_identifier_token20] = ACTIONS(1777), - [aux_sym_cmd_identifier_token21] = ACTIONS(1777), - [aux_sym_cmd_identifier_token22] = ACTIONS(1777), - [aux_sym_cmd_identifier_token23] = ACTIONS(1777), - [aux_sym_cmd_identifier_token24] = ACTIONS(1775), - [aux_sym_cmd_identifier_token25] = ACTIONS(1777), - [aux_sym_cmd_identifier_token26] = ACTIONS(1775), - [aux_sym_cmd_identifier_token27] = ACTIONS(1777), - [aux_sym_cmd_identifier_token28] = ACTIONS(1777), - [aux_sym_cmd_identifier_token29] = ACTIONS(1777), - [aux_sym_cmd_identifier_token30] = ACTIONS(1777), - [aux_sym_cmd_identifier_token31] = ACTIONS(1775), - [aux_sym_cmd_identifier_token32] = ACTIONS(1775), - [aux_sym_cmd_identifier_token33] = ACTIONS(1775), - [aux_sym_cmd_identifier_token34] = ACTIONS(1775), - [aux_sym_cmd_identifier_token35] = ACTIONS(1775), - [aux_sym_cmd_identifier_token36] = ACTIONS(1777), - [anon_sym_true] = ACTIONS(1775), - [anon_sym_false] = ACTIONS(1775), - [anon_sym_null] = ACTIONS(1775), - [aux_sym_cmd_identifier_token38] = ACTIONS(1777), - [aux_sym_cmd_identifier_token39] = ACTIONS(1775), - [aux_sym_cmd_identifier_token40] = ACTIONS(1775), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_def] = ACTIONS(1777), - [anon_sym_export_DASHenv] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_module] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_error] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [aux_sym_ctrl_match_token1] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_source] = ACTIONS(1777), - [anon_sym_source_DASHenv] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_hide_DASHenv] = ACTIONS(1777), - [anon_sym_overlay] = ACTIONS(1777), - [anon_sym_where] = ACTIONS(1775), - [aux_sym_expr_unary_token1] = ACTIONS(1775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT] = ACTIONS(1775), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1775), - [aux_sym__val_number_decimal_token3] = ACTIONS(1775), - [aux_sym__val_number_decimal_token4] = ACTIONS(1775), - [aux_sym__val_number_token1] = ACTIONS(1775), - [aux_sym__val_number_token2] = ACTIONS(1775), - [aux_sym__val_number_token3] = ACTIONS(1775), - [anon_sym_0b] = ACTIONS(1777), - [anon_sym_0o] = ACTIONS(1777), - [anon_sym_0x] = ACTIONS(1777), - [sym_val_date] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym__str_single_quotes] = ACTIONS(1775), - [sym__str_back_ticks] = ACTIONS(1775), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1775), - [aux_sym_env_var_token1] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(247), - }, - [283] = { - [sym_comment] = STATE(283), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1781), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [aux_sym_ctrl_match_token1] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_where] = ACTIONS(1781), - [aux_sym_expr_unary_token1] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [aux_sym_env_var_token1] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(247), - }, - [284] = { - [sym_comment] = STATE(284), - [aux_sym__block_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_alias] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_let_DASHenv] = ACTIONS(1651), - [anon_sym_mut] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [aux_sym_cmd_identifier_token1] = ACTIONS(1651), - [aux_sym_cmd_identifier_token2] = ACTIONS(1651), - [aux_sym_cmd_identifier_token3] = ACTIONS(1651), - [aux_sym_cmd_identifier_token4] = ACTIONS(1651), - [aux_sym_cmd_identifier_token5] = ACTIONS(1651), - [aux_sym_cmd_identifier_token6] = ACTIONS(1651), - [aux_sym_cmd_identifier_token7] = ACTIONS(1651), - [aux_sym_cmd_identifier_token8] = ACTIONS(1651), - [aux_sym_cmd_identifier_token9] = ACTIONS(1651), - [aux_sym_cmd_identifier_token10] = ACTIONS(1651), - [aux_sym_cmd_identifier_token11] = ACTIONS(1651), - [aux_sym_cmd_identifier_token12] = ACTIONS(1651), - [aux_sym_cmd_identifier_token13] = ACTIONS(1651), - [aux_sym_cmd_identifier_token14] = ACTIONS(1651), - [aux_sym_cmd_identifier_token15] = ACTIONS(1651), - [aux_sym_cmd_identifier_token16] = ACTIONS(1651), - [aux_sym_cmd_identifier_token17] = ACTIONS(1651), - [aux_sym_cmd_identifier_token18] = ACTIONS(1651), - [aux_sym_cmd_identifier_token19] = ACTIONS(1651), - [aux_sym_cmd_identifier_token20] = ACTIONS(1651), - [aux_sym_cmd_identifier_token21] = ACTIONS(1651), - [aux_sym_cmd_identifier_token22] = ACTIONS(1651), - [aux_sym_cmd_identifier_token23] = ACTIONS(1651), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1651), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1651), - [aux_sym_cmd_identifier_token28] = ACTIONS(1651), - [aux_sym_cmd_identifier_token29] = ACTIONS(1651), - [aux_sym_cmd_identifier_token30] = ACTIONS(1651), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1651), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_export_DASHenv] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_error] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [aux_sym_ctrl_match_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_source] = ACTIONS(1651), - [anon_sym_source_DASHenv] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_hide] = ACTIONS(1651), - [anon_sym_hide_DASHenv] = ACTIONS(1651), - [anon_sym_overlay] = ACTIONS(1651), - [anon_sym_where] = ACTIONS(1653), - [aux_sym_expr_unary_token1] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1651), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), - [aux_sym_env_var_token1] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), - }, - [285] = { - [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_list] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [sym__entry_separator] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1786), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(3), - }, - [286] = { - [sym_comment] = STATE(286), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT_DOT2] = ACTIONS(1800), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), - [sym__entry_separator] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1796), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), - }, - [287] = { - [sym_path] = STATE(388), - [sym_comment] = STATE(287), - [aux_sym_cell_path_repeat1] = STATE(288), - [anon_sym_export] = ACTIONS(1017), - [anon_sym_alias] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_let_DASHenv] = ACTIONS(1017), - [anon_sym_mut] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [aux_sym_cmd_identifier_token1] = ACTIONS(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(1017), - [aux_sym_cmd_identifier_token3] = ACTIONS(1017), - [aux_sym_cmd_identifier_token4] = ACTIONS(1017), - [aux_sym_cmd_identifier_token5] = ACTIONS(1017), - [aux_sym_cmd_identifier_token6] = ACTIONS(1017), - [aux_sym_cmd_identifier_token7] = ACTIONS(1017), - [aux_sym_cmd_identifier_token8] = ACTIONS(1017), - [aux_sym_cmd_identifier_token9] = ACTIONS(1017), - [aux_sym_cmd_identifier_token10] = ACTIONS(1017), - [aux_sym_cmd_identifier_token11] = ACTIONS(1017), - [aux_sym_cmd_identifier_token12] = ACTIONS(1017), - [aux_sym_cmd_identifier_token13] = ACTIONS(1017), - [aux_sym_cmd_identifier_token14] = ACTIONS(1017), - [aux_sym_cmd_identifier_token15] = ACTIONS(1017), - [aux_sym_cmd_identifier_token16] = ACTIONS(1017), - [aux_sym_cmd_identifier_token17] = ACTIONS(1017), - [aux_sym_cmd_identifier_token18] = ACTIONS(1017), - [aux_sym_cmd_identifier_token19] = ACTIONS(1017), - [aux_sym_cmd_identifier_token20] = ACTIONS(1017), - [aux_sym_cmd_identifier_token21] = ACTIONS(1017), - [aux_sym_cmd_identifier_token22] = ACTIONS(1017), - [aux_sym_cmd_identifier_token23] = ACTIONS(1017), - [aux_sym_cmd_identifier_token24] = ACTIONS(1017), - [aux_sym_cmd_identifier_token25] = ACTIONS(1017), - [aux_sym_cmd_identifier_token26] = ACTIONS(1017), - [aux_sym_cmd_identifier_token27] = ACTIONS(1017), - [aux_sym_cmd_identifier_token28] = ACTIONS(1017), - [aux_sym_cmd_identifier_token29] = ACTIONS(1017), - [aux_sym_cmd_identifier_token30] = ACTIONS(1017), - [aux_sym_cmd_identifier_token31] = ACTIONS(1017), - [aux_sym_cmd_identifier_token32] = ACTIONS(1017), - [aux_sym_cmd_identifier_token33] = ACTIONS(1017), - [aux_sym_cmd_identifier_token34] = ACTIONS(1017), - [aux_sym_cmd_identifier_token35] = ACTIONS(1017), - [aux_sym_cmd_identifier_token36] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [anon_sym_def] = ACTIONS(1017), - [anon_sym_export_DASHenv] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_error] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_make] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_catch] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_source] = ACTIONS(1017), - [anon_sym_source_DASHenv] = ACTIONS(1017), - [anon_sym_register] = ACTIONS(1017), - [anon_sym_hide] = ACTIONS(1017), - [anon_sym_hide_DASHenv] = ACTIONS(1017), - [anon_sym_overlay] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), - }, - [288] = { - [sym_path] = STATE(388), - [sym_comment] = STATE(288), - [aux_sym_cell_path_repeat1] = STATE(288), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [289] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if_parenthesized] = STATE(4985), - [sym_block] = STATE(4986), - [sym__expression_parenthesized] = STATE(4986), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3012), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_command] = STATE(4986), - [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(1022), + [313] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3070), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_command] = STATE(5045), + [sym_comment] = STATE(313), + [aux_sym_shebang_repeat1] = STATE(1061), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108323,3149 +112378,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(369), [aux_sym_cmd_identifier_token35] = ACTIONS(369), [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_if] = ACTIONS(479), - [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1748), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_if] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1756), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), + [aux_sym_expr_unary_token1] = ACTIONS(491), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [290] = { - [sym_comment] = STATE(290), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [291] = { - [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - }, - [292] = { - [sym_comment] = STATE(292), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_alias] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_let_DASHenv] = ACTIONS(1060), - [anon_sym_mut] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(1060), - [aux_sym_cmd_identifier_token2] = ACTIONS(1060), - [aux_sym_cmd_identifier_token3] = ACTIONS(1060), - [aux_sym_cmd_identifier_token4] = ACTIONS(1060), - [aux_sym_cmd_identifier_token5] = ACTIONS(1060), - [aux_sym_cmd_identifier_token6] = ACTIONS(1060), - [aux_sym_cmd_identifier_token7] = ACTIONS(1060), - [aux_sym_cmd_identifier_token8] = ACTIONS(1060), - [aux_sym_cmd_identifier_token9] = ACTIONS(1060), - [aux_sym_cmd_identifier_token10] = ACTIONS(1060), - [aux_sym_cmd_identifier_token11] = ACTIONS(1060), - [aux_sym_cmd_identifier_token12] = ACTIONS(1060), - [aux_sym_cmd_identifier_token13] = ACTIONS(1060), - [aux_sym_cmd_identifier_token14] = ACTIONS(1060), - [aux_sym_cmd_identifier_token15] = ACTIONS(1060), - [aux_sym_cmd_identifier_token16] = ACTIONS(1060), - [aux_sym_cmd_identifier_token17] = ACTIONS(1060), - [aux_sym_cmd_identifier_token18] = ACTIONS(1060), - [aux_sym_cmd_identifier_token19] = ACTIONS(1060), - [aux_sym_cmd_identifier_token20] = ACTIONS(1060), - [aux_sym_cmd_identifier_token21] = ACTIONS(1060), - [aux_sym_cmd_identifier_token22] = ACTIONS(1060), - [aux_sym_cmd_identifier_token23] = ACTIONS(1060), - [aux_sym_cmd_identifier_token24] = ACTIONS(1060), - [aux_sym_cmd_identifier_token25] = ACTIONS(1060), - [aux_sym_cmd_identifier_token26] = ACTIONS(1060), - [aux_sym_cmd_identifier_token27] = ACTIONS(1060), - [aux_sym_cmd_identifier_token28] = ACTIONS(1060), - [aux_sym_cmd_identifier_token29] = ACTIONS(1060), - [aux_sym_cmd_identifier_token30] = ACTIONS(1060), - [aux_sym_cmd_identifier_token31] = ACTIONS(1060), - [aux_sym_cmd_identifier_token32] = ACTIONS(1060), - [aux_sym_cmd_identifier_token33] = ACTIONS(1060), - [aux_sym_cmd_identifier_token34] = ACTIONS(1060), - [aux_sym_cmd_identifier_token35] = ACTIONS(1060), - [aux_sym_cmd_identifier_token36] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [anon_sym_def] = ACTIONS(1060), - [anon_sym_export_DASHenv] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_module] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_error] = ACTIONS(1060), - [anon_sym_list] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_in] = ACTIONS(1060), - [anon_sym_loop] = ACTIONS(1060), - [anon_sym_make] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_catch] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_source] = ACTIONS(1060), - [anon_sym_source_DASHenv] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_hide] = ACTIONS(1060), - [anon_sym_hide_DASHenv] = ACTIONS(1060), - [anon_sym_overlay] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), - [sym__entry_separator] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(3), - }, - [293] = { - [sym_comment] = STATE(293), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(3), - }, - [294] = { - [sym_comment] = STATE(294), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [295] = { - [sym_comment] = STATE(295), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1817), - [aux_sym__immediate_decimal_token2] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - }, - [296] = { - [sym_comment] = STATE(296), - [anon_sym_export] = ACTIONS(1821), - [anon_sym_alias] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_let_DASHenv] = ACTIONS(1821), - [anon_sym_mut] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [aux_sym_cmd_identifier_token1] = ACTIONS(1821), - [aux_sym_cmd_identifier_token2] = ACTIONS(1821), - [aux_sym_cmd_identifier_token3] = ACTIONS(1821), - [aux_sym_cmd_identifier_token4] = ACTIONS(1821), - [aux_sym_cmd_identifier_token5] = ACTIONS(1821), - [aux_sym_cmd_identifier_token6] = ACTIONS(1821), - [aux_sym_cmd_identifier_token7] = ACTIONS(1821), - [aux_sym_cmd_identifier_token8] = ACTIONS(1821), - [aux_sym_cmd_identifier_token9] = ACTIONS(1821), - [aux_sym_cmd_identifier_token10] = ACTIONS(1821), - [aux_sym_cmd_identifier_token11] = ACTIONS(1821), - [aux_sym_cmd_identifier_token12] = ACTIONS(1821), - [aux_sym_cmd_identifier_token13] = ACTIONS(1821), - [aux_sym_cmd_identifier_token14] = ACTIONS(1821), - [aux_sym_cmd_identifier_token15] = ACTIONS(1821), - [aux_sym_cmd_identifier_token16] = ACTIONS(1821), - [aux_sym_cmd_identifier_token17] = ACTIONS(1821), - [aux_sym_cmd_identifier_token18] = ACTIONS(1821), - [aux_sym_cmd_identifier_token19] = ACTIONS(1821), - [aux_sym_cmd_identifier_token20] = ACTIONS(1821), - [aux_sym_cmd_identifier_token21] = ACTIONS(1821), - [aux_sym_cmd_identifier_token22] = ACTIONS(1821), - [aux_sym_cmd_identifier_token23] = ACTIONS(1821), - [aux_sym_cmd_identifier_token24] = ACTIONS(1823), - [aux_sym_cmd_identifier_token25] = ACTIONS(1821), - [aux_sym_cmd_identifier_token26] = ACTIONS(1823), - [aux_sym_cmd_identifier_token27] = ACTIONS(1821), - [aux_sym_cmd_identifier_token28] = ACTIONS(1821), - [aux_sym_cmd_identifier_token29] = ACTIONS(1821), - [aux_sym_cmd_identifier_token30] = ACTIONS(1821), - [aux_sym_cmd_identifier_token31] = ACTIONS(1823), - [aux_sym_cmd_identifier_token32] = ACTIONS(1823), - [aux_sym_cmd_identifier_token33] = ACTIONS(1823), - [aux_sym_cmd_identifier_token34] = ACTIONS(1823), - [aux_sym_cmd_identifier_token35] = ACTIONS(1823), - [aux_sym_cmd_identifier_token36] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_null] = ACTIONS(1823), - [aux_sym_cmd_identifier_token38] = ACTIONS(1821), - [aux_sym_cmd_identifier_token39] = ACTIONS(1823), - [aux_sym_cmd_identifier_token40] = ACTIONS(1823), - [sym__newline] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_export_DASHenv] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_module] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1821), - [anon_sym_error] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [aux_sym_ctrl_match_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_source] = ACTIONS(1821), - [anon_sym_source_DASHenv] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_hide] = ACTIONS(1821), - [anon_sym_hide_DASHenv] = ACTIONS(1821), - [anon_sym_overlay] = ACTIONS(1821), - [anon_sym_where] = ACTIONS(1823), - [aux_sym_expr_unary_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), - [anon_sym_DOT_DOT_LT] = ACTIONS(1823), - [aux_sym__val_number_decimal_token1] = ACTIONS(1821), - [aux_sym__val_number_decimal_token2] = ACTIONS(1823), - [aux_sym__val_number_decimal_token3] = ACTIONS(1823), - [aux_sym__val_number_decimal_token4] = ACTIONS(1823), - [aux_sym__val_number_token1] = ACTIONS(1823), - [aux_sym__val_number_token2] = ACTIONS(1823), - [aux_sym__val_number_token3] = ACTIONS(1823), - [anon_sym_0b] = ACTIONS(1821), - [anon_sym_0o] = ACTIONS(1821), - [anon_sym_0x] = ACTIONS(1821), - [sym_val_date] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym__str_single_quotes] = ACTIONS(1823), - [sym__str_back_ticks] = ACTIONS(1823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1823), - [aux_sym_env_var_token1] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_POUND] = ACTIONS(247), - }, - [297] = { - [sym_comment] = STATE(297), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - }, - [298] = { - [sym_comment] = STATE(298), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1825), - [aux_sym__immediate_decimal_token2] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [299] = { - [sym_cell_path] = STATE(523), - [sym_path] = STATE(482), - [sym_comment] = STATE(299), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [aux_sym_cmd_identifier_token1] = ACTIONS(1829), - [aux_sym_cmd_identifier_token2] = ACTIONS(1829), - [aux_sym_cmd_identifier_token3] = ACTIONS(1829), - [aux_sym_cmd_identifier_token4] = ACTIONS(1829), - [aux_sym_cmd_identifier_token5] = ACTIONS(1829), - [aux_sym_cmd_identifier_token6] = ACTIONS(1829), - [aux_sym_cmd_identifier_token7] = ACTIONS(1829), - [aux_sym_cmd_identifier_token8] = ACTIONS(1829), - [aux_sym_cmd_identifier_token9] = ACTIONS(1829), - [aux_sym_cmd_identifier_token10] = ACTIONS(1829), - [aux_sym_cmd_identifier_token11] = ACTIONS(1829), - [aux_sym_cmd_identifier_token12] = ACTIONS(1829), - [aux_sym_cmd_identifier_token13] = ACTIONS(1829), - [aux_sym_cmd_identifier_token14] = ACTIONS(1829), - [aux_sym_cmd_identifier_token15] = ACTIONS(1829), - [aux_sym_cmd_identifier_token16] = ACTIONS(1829), - [aux_sym_cmd_identifier_token17] = ACTIONS(1829), - [aux_sym_cmd_identifier_token18] = ACTIONS(1829), - [aux_sym_cmd_identifier_token19] = ACTIONS(1829), - [aux_sym_cmd_identifier_token20] = ACTIONS(1829), - [aux_sym_cmd_identifier_token21] = ACTIONS(1829), - [aux_sym_cmd_identifier_token22] = ACTIONS(1829), - [aux_sym_cmd_identifier_token23] = ACTIONS(1829), - [aux_sym_cmd_identifier_token24] = ACTIONS(1829), - [aux_sym_cmd_identifier_token25] = ACTIONS(1829), - [aux_sym_cmd_identifier_token26] = ACTIONS(1829), - [aux_sym_cmd_identifier_token27] = ACTIONS(1829), - [aux_sym_cmd_identifier_token28] = ACTIONS(1829), - [aux_sym_cmd_identifier_token29] = ACTIONS(1829), - [aux_sym_cmd_identifier_token30] = ACTIONS(1829), - [aux_sym_cmd_identifier_token31] = ACTIONS(1829), - [aux_sym_cmd_identifier_token32] = ACTIONS(1829), - [aux_sym_cmd_identifier_token33] = ACTIONS(1829), - [aux_sym_cmd_identifier_token34] = ACTIONS(1829), - [aux_sym_cmd_identifier_token35] = ACTIONS(1829), - [aux_sym_cmd_identifier_token36] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_null] = ACTIONS(1829), - [aux_sym_cmd_identifier_token38] = ACTIONS(1829), - [aux_sym_cmd_identifier_token39] = ACTIONS(1829), - [aux_sym_cmd_identifier_token40] = ACTIONS(1829), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_DOLLAR] = ACTIONS(1829), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_list] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_in] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_make] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1829), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_decimal_token2] = ACTIONS(1829), - [aux_sym__val_number_decimal_token3] = ACTIONS(1829), - [aux_sym__val_number_decimal_token4] = ACTIONS(1829), - [aux_sym__val_number_token1] = ACTIONS(1829), - [aux_sym__val_number_token2] = ACTIONS(1829), - [aux_sym__val_number_token3] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1829), - [sym__str_single_quotes] = ACTIONS(1829), - [sym__str_back_ticks] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1829), - [sym__entry_separator] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(3), - }, - [300] = { - [sym_cell_path] = STATE(524), - [sym_path] = STATE(482), - [sym_comment] = STATE(300), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_alias] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_let_DASHenv] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [aux_sym_cmd_identifier_token1] = ACTIONS(1835), - [aux_sym_cmd_identifier_token2] = ACTIONS(1835), - [aux_sym_cmd_identifier_token3] = ACTIONS(1835), - [aux_sym_cmd_identifier_token4] = ACTIONS(1835), - [aux_sym_cmd_identifier_token5] = ACTIONS(1835), - [aux_sym_cmd_identifier_token6] = ACTIONS(1835), - [aux_sym_cmd_identifier_token7] = ACTIONS(1835), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1835), - [aux_sym_cmd_identifier_token11] = ACTIONS(1835), - [aux_sym_cmd_identifier_token12] = ACTIONS(1835), - [aux_sym_cmd_identifier_token13] = ACTIONS(1835), - [aux_sym_cmd_identifier_token14] = ACTIONS(1835), - [aux_sym_cmd_identifier_token15] = ACTIONS(1835), - [aux_sym_cmd_identifier_token16] = ACTIONS(1835), - [aux_sym_cmd_identifier_token17] = ACTIONS(1835), - [aux_sym_cmd_identifier_token18] = ACTIONS(1835), - [aux_sym_cmd_identifier_token19] = ACTIONS(1835), - [aux_sym_cmd_identifier_token20] = ACTIONS(1835), - [aux_sym_cmd_identifier_token21] = ACTIONS(1835), - [aux_sym_cmd_identifier_token22] = ACTIONS(1835), - [aux_sym_cmd_identifier_token23] = ACTIONS(1835), - [aux_sym_cmd_identifier_token24] = ACTIONS(1835), - [aux_sym_cmd_identifier_token25] = ACTIONS(1835), - [aux_sym_cmd_identifier_token26] = ACTIONS(1835), - [aux_sym_cmd_identifier_token27] = ACTIONS(1835), - [aux_sym_cmd_identifier_token28] = ACTIONS(1835), - [aux_sym_cmd_identifier_token29] = ACTIONS(1835), - [aux_sym_cmd_identifier_token30] = ACTIONS(1835), - [aux_sym_cmd_identifier_token31] = ACTIONS(1835), - [aux_sym_cmd_identifier_token32] = ACTIONS(1835), - [aux_sym_cmd_identifier_token33] = ACTIONS(1835), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1835), - [aux_sym_cmd_identifier_token36] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_null] = ACTIONS(1835), - [aux_sym_cmd_identifier_token38] = ACTIONS(1835), - [aux_sym_cmd_identifier_token39] = ACTIONS(1835), - [aux_sym_cmd_identifier_token40] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_export_DASHenv] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_list] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_make] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_source] = ACTIONS(1835), - [anon_sym_source_DASHenv] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_hide] = ACTIONS(1835), - [anon_sym_hide_DASHenv] = ACTIONS(1835), - [anon_sym_overlay] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1835), - [aux_sym__val_number_decimal_token3] = ACTIONS(1835), - [aux_sym__val_number_decimal_token4] = ACTIONS(1835), - [aux_sym__val_number_token1] = ACTIONS(1835), - [aux_sym__val_number_token2] = ACTIONS(1835), - [aux_sym__val_number_token3] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(3), - }, - [301] = { - [sym_cell_path] = STATE(525), - [sym_path] = STATE(482), - [sym_comment] = STATE(301), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [aux_sym_cmd_identifier_token1] = ACTIONS(1839), - [aux_sym_cmd_identifier_token2] = ACTIONS(1839), - [aux_sym_cmd_identifier_token3] = ACTIONS(1839), - [aux_sym_cmd_identifier_token4] = ACTIONS(1839), - [aux_sym_cmd_identifier_token5] = ACTIONS(1839), - [aux_sym_cmd_identifier_token6] = ACTIONS(1839), - [aux_sym_cmd_identifier_token7] = ACTIONS(1839), - [aux_sym_cmd_identifier_token8] = ACTIONS(1839), - [aux_sym_cmd_identifier_token9] = ACTIONS(1839), - [aux_sym_cmd_identifier_token10] = ACTIONS(1839), - [aux_sym_cmd_identifier_token11] = ACTIONS(1839), - [aux_sym_cmd_identifier_token12] = ACTIONS(1839), - [aux_sym_cmd_identifier_token13] = ACTIONS(1839), - [aux_sym_cmd_identifier_token14] = ACTIONS(1839), - [aux_sym_cmd_identifier_token15] = ACTIONS(1839), - [aux_sym_cmd_identifier_token16] = ACTIONS(1839), - [aux_sym_cmd_identifier_token17] = ACTIONS(1839), - [aux_sym_cmd_identifier_token18] = ACTIONS(1839), - [aux_sym_cmd_identifier_token19] = ACTIONS(1839), - [aux_sym_cmd_identifier_token20] = ACTIONS(1839), - [aux_sym_cmd_identifier_token21] = ACTIONS(1839), - [aux_sym_cmd_identifier_token22] = ACTIONS(1839), - [aux_sym_cmd_identifier_token23] = ACTIONS(1839), - [aux_sym_cmd_identifier_token24] = ACTIONS(1839), - [aux_sym_cmd_identifier_token25] = ACTIONS(1839), - [aux_sym_cmd_identifier_token26] = ACTIONS(1839), - [aux_sym_cmd_identifier_token27] = ACTIONS(1839), - [aux_sym_cmd_identifier_token28] = ACTIONS(1839), - [aux_sym_cmd_identifier_token29] = ACTIONS(1839), - [aux_sym_cmd_identifier_token30] = ACTIONS(1839), - [aux_sym_cmd_identifier_token31] = ACTIONS(1839), - [aux_sym_cmd_identifier_token32] = ACTIONS(1839), - [aux_sym_cmd_identifier_token33] = ACTIONS(1839), - [aux_sym_cmd_identifier_token34] = ACTIONS(1839), - [aux_sym_cmd_identifier_token35] = ACTIONS(1839), - [aux_sym_cmd_identifier_token36] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_null] = ACTIONS(1839), - [aux_sym_cmd_identifier_token38] = ACTIONS(1839), - [aux_sym_cmd_identifier_token39] = ACTIONS(1839), - [aux_sym_cmd_identifier_token40] = ACTIONS(1839), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_list] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1839), - [aux_sym__val_number_decimal_token3] = ACTIONS(1839), - [aux_sym__val_number_decimal_token4] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), - [sym__entry_separator] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(3), - }, - [302] = { - [sym_cell_path] = STATE(526), - [sym_path] = STATE(482), - [sym_comment] = STATE(302), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_list] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [sym__entry_separator] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(3), - }, - [303] = { - [sym_cell_path] = STATE(527), - [sym_path] = STATE(482), - [sym_comment] = STATE(303), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1847), - [aux_sym_cmd_identifier_token3] = ACTIONS(1847), - [aux_sym_cmd_identifier_token4] = ACTIONS(1847), - [aux_sym_cmd_identifier_token5] = ACTIONS(1847), - [aux_sym_cmd_identifier_token6] = ACTIONS(1847), - [aux_sym_cmd_identifier_token7] = ACTIONS(1847), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1847), - [aux_sym_cmd_identifier_token11] = ACTIONS(1847), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1847), - [aux_sym_cmd_identifier_token17] = ACTIONS(1847), - [aux_sym_cmd_identifier_token18] = ACTIONS(1847), - [aux_sym_cmd_identifier_token19] = ACTIONS(1847), - [aux_sym_cmd_identifier_token20] = ACTIONS(1847), - [aux_sym_cmd_identifier_token21] = ACTIONS(1847), - [aux_sym_cmd_identifier_token22] = ACTIONS(1847), - [aux_sym_cmd_identifier_token23] = ACTIONS(1847), - [aux_sym_cmd_identifier_token24] = ACTIONS(1847), - [aux_sym_cmd_identifier_token25] = ACTIONS(1847), - [aux_sym_cmd_identifier_token26] = ACTIONS(1847), - [aux_sym_cmd_identifier_token27] = ACTIONS(1847), - [aux_sym_cmd_identifier_token28] = ACTIONS(1847), - [aux_sym_cmd_identifier_token29] = ACTIONS(1847), - [aux_sym_cmd_identifier_token30] = ACTIONS(1847), - [aux_sym_cmd_identifier_token31] = ACTIONS(1847), - [aux_sym_cmd_identifier_token32] = ACTIONS(1847), - [aux_sym_cmd_identifier_token33] = ACTIONS(1847), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1847), - [aux_sym_cmd_identifier_token36] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1847), - [aux_sym_cmd_identifier_token40] = ACTIONS(1847), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_list] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1847), - [aux_sym__val_number_decimal_token3] = ACTIONS(1847), - [aux_sym__val_number_decimal_token4] = ACTIONS(1847), - [aux_sym__val_number_token1] = ACTIONS(1847), - [aux_sym__val_number_token2] = ACTIONS(1847), - [aux_sym__val_number_token3] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym__str_single_quotes] = ACTIONS(1847), - [sym__str_back_ticks] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), - [sym__entry_separator] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(3), - }, - [304] = { - [sym_cell_path] = STATE(528), - [sym_path] = STATE(482), - [sym_comment] = STATE(304), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1851), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [anon_sym_null] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_list] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [sym__entry_separator] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(3), - }, - [305] = { - [sym_cell_path] = STATE(529), - [sym_path] = STATE(482), - [sym_comment] = STATE(305), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_alias] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_let_DASHenv] = ACTIONS(1855), - [anon_sym_mut] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [aux_sym_cmd_identifier_token1] = ACTIONS(1855), - [aux_sym_cmd_identifier_token2] = ACTIONS(1855), - [aux_sym_cmd_identifier_token3] = ACTIONS(1855), - [aux_sym_cmd_identifier_token4] = ACTIONS(1855), - [aux_sym_cmd_identifier_token5] = ACTIONS(1855), - [aux_sym_cmd_identifier_token6] = ACTIONS(1855), - [aux_sym_cmd_identifier_token7] = ACTIONS(1855), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1855), - [aux_sym_cmd_identifier_token13] = ACTIONS(1855), - [aux_sym_cmd_identifier_token14] = ACTIONS(1855), - [aux_sym_cmd_identifier_token15] = ACTIONS(1855), - [aux_sym_cmd_identifier_token16] = ACTIONS(1855), - [aux_sym_cmd_identifier_token17] = ACTIONS(1855), - [aux_sym_cmd_identifier_token18] = ACTIONS(1855), - [aux_sym_cmd_identifier_token19] = ACTIONS(1855), - [aux_sym_cmd_identifier_token20] = ACTIONS(1855), - [aux_sym_cmd_identifier_token21] = ACTIONS(1855), - [aux_sym_cmd_identifier_token22] = ACTIONS(1855), - [aux_sym_cmd_identifier_token23] = ACTIONS(1855), - [aux_sym_cmd_identifier_token24] = ACTIONS(1855), - [aux_sym_cmd_identifier_token25] = ACTIONS(1855), - [aux_sym_cmd_identifier_token26] = ACTIONS(1855), - [aux_sym_cmd_identifier_token27] = ACTIONS(1855), - [aux_sym_cmd_identifier_token28] = ACTIONS(1855), - [aux_sym_cmd_identifier_token29] = ACTIONS(1855), - [aux_sym_cmd_identifier_token30] = ACTIONS(1855), - [aux_sym_cmd_identifier_token31] = ACTIONS(1855), - [aux_sym_cmd_identifier_token32] = ACTIONS(1855), - [aux_sym_cmd_identifier_token33] = ACTIONS(1855), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1855), - [aux_sym_cmd_identifier_token36] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_null] = ACTIONS(1855), - [aux_sym_cmd_identifier_token38] = ACTIONS(1855), - [aux_sym_cmd_identifier_token39] = ACTIONS(1855), - [aux_sym_cmd_identifier_token40] = ACTIONS(1855), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_export_DASHenv] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_list] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_make] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_source] = ACTIONS(1855), - [anon_sym_source_DASHenv] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_hide] = ACTIONS(1855), - [anon_sym_hide_DASHenv] = ACTIONS(1855), - [anon_sym_overlay] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1855), - [aux_sym__val_number_decimal_token3] = ACTIONS(1855), - [aux_sym__val_number_decimal_token4] = ACTIONS(1855), - [aux_sym__val_number_token1] = ACTIONS(1855), - [aux_sym__val_number_token2] = ACTIONS(1855), - [aux_sym__val_number_token3] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [sym__entry_separator] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(3), - }, - [306] = { - [sym_comment] = STATE(306), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_list] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_new] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [sym__entry_separator] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(3), - }, - [307] = { - [sym_cell_path] = STATE(530), - [sym_path] = STATE(482), - [sym_comment] = STATE(307), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1859), - [aux_sym_cmd_identifier_token3] = ACTIONS(1859), - [aux_sym_cmd_identifier_token4] = ACTIONS(1859), - [aux_sym_cmd_identifier_token5] = ACTIONS(1859), - [aux_sym_cmd_identifier_token6] = ACTIONS(1859), - [aux_sym_cmd_identifier_token7] = ACTIONS(1859), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1859), - [aux_sym_cmd_identifier_token11] = ACTIONS(1859), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1859), - [aux_sym_cmd_identifier_token17] = ACTIONS(1859), - [aux_sym_cmd_identifier_token18] = ACTIONS(1859), - [aux_sym_cmd_identifier_token19] = ACTIONS(1859), - [aux_sym_cmd_identifier_token20] = ACTIONS(1859), - [aux_sym_cmd_identifier_token21] = ACTIONS(1859), - [aux_sym_cmd_identifier_token22] = ACTIONS(1859), - [aux_sym_cmd_identifier_token23] = ACTIONS(1859), - [aux_sym_cmd_identifier_token24] = ACTIONS(1859), - [aux_sym_cmd_identifier_token25] = ACTIONS(1859), - [aux_sym_cmd_identifier_token26] = ACTIONS(1859), - [aux_sym_cmd_identifier_token27] = ACTIONS(1859), - [aux_sym_cmd_identifier_token28] = ACTIONS(1859), - [aux_sym_cmd_identifier_token29] = ACTIONS(1859), - [aux_sym_cmd_identifier_token30] = ACTIONS(1859), - [aux_sym_cmd_identifier_token31] = ACTIONS(1859), - [aux_sym_cmd_identifier_token32] = ACTIONS(1859), - [aux_sym_cmd_identifier_token33] = ACTIONS(1859), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1859), - [aux_sym_cmd_identifier_token36] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1859), - [anon_sym_false] = ACTIONS(1859), - [anon_sym_null] = ACTIONS(1859), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1859), - [aux_sym_cmd_identifier_token40] = ACTIONS(1859), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_list] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1859), - [aux_sym__val_number_decimal_token3] = ACTIONS(1859), - [aux_sym__val_number_decimal_token4] = ACTIONS(1859), - [aux_sym__val_number_token1] = ACTIONS(1859), - [aux_sym__val_number_token2] = ACTIONS(1859), - [aux_sym__val_number_token3] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [sym__str_single_quotes] = ACTIONS(1859), - [sym__str_back_ticks] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), - [sym__entry_separator] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(3), - }, - [308] = { - [sym_comment] = STATE(308), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [309] = { - [sym_cell_path] = STATE(531), - [sym_path] = STATE(482), - [sym_comment] = STATE(309), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_list] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [sym__entry_separator] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(3), - }, - [310] = { - [sym_cell_path] = STATE(532), - [sym_path] = STATE(482), - [sym_comment] = STATE(310), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1867), - [aux_sym_cmd_identifier_token17] = ACTIONS(1867), - [aux_sym_cmd_identifier_token18] = ACTIONS(1867), - [aux_sym_cmd_identifier_token19] = ACTIONS(1867), - [aux_sym_cmd_identifier_token20] = ACTIONS(1867), - [aux_sym_cmd_identifier_token21] = ACTIONS(1867), - [aux_sym_cmd_identifier_token22] = ACTIONS(1867), - [aux_sym_cmd_identifier_token23] = ACTIONS(1867), - [aux_sym_cmd_identifier_token24] = ACTIONS(1867), - [aux_sym_cmd_identifier_token25] = ACTIONS(1867), - [aux_sym_cmd_identifier_token26] = ACTIONS(1867), - [aux_sym_cmd_identifier_token27] = ACTIONS(1867), - [aux_sym_cmd_identifier_token28] = ACTIONS(1867), - [aux_sym_cmd_identifier_token29] = ACTIONS(1867), - [aux_sym_cmd_identifier_token30] = ACTIONS(1867), - [aux_sym_cmd_identifier_token31] = ACTIONS(1867), - [aux_sym_cmd_identifier_token32] = ACTIONS(1867), - [aux_sym_cmd_identifier_token33] = ACTIONS(1867), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1867), - [aux_sym_cmd_identifier_token36] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1867), - [anon_sym_false] = ACTIONS(1867), - [anon_sym_null] = ACTIONS(1867), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1867), - [aux_sym_cmd_identifier_token40] = ACTIONS(1867), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_list] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1867), - [aux_sym__val_number_decimal_token3] = ACTIONS(1867), - [aux_sym__val_number_decimal_token4] = ACTIONS(1867), - [aux_sym__val_number_token1] = ACTIONS(1867), - [aux_sym__val_number_token2] = ACTIONS(1867), - [aux_sym__val_number_token3] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym__str_single_quotes] = ACTIONS(1867), - [sym__str_back_ticks] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), - [sym__entry_separator] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(3), - }, - [311] = { - [sym_cell_path] = STATE(533), - [sym_path] = STATE(482), - [sym_comment] = STATE(311), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1871), - [anon_sym_false] = ACTIONS(1871), - [anon_sym_null] = ACTIONS(1871), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1871), - [aux_sym_cmd_identifier_token40] = ACTIONS(1871), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1871), - [aux_sym__val_number_decimal_token4] = ACTIONS(1871), - [aux_sym__val_number_token1] = ACTIONS(1871), - [aux_sym__val_number_token2] = ACTIONS(1871), - [aux_sym__val_number_token3] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [sym__str_single_quotes] = ACTIONS(1871), - [sym__str_back_ticks] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), - [sym__entry_separator] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(3), - }, - [312] = { - [sym_comment] = STATE(312), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [313] = { - [sym_cell_path] = STATE(534), - [sym_path] = STATE(482), - [sym_comment] = STATE(313), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_alias] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_let_DASHenv] = ACTIONS(1875), - [anon_sym_mut] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [aux_sym_cmd_identifier_token1] = ACTIONS(1875), - [aux_sym_cmd_identifier_token2] = ACTIONS(1875), - [aux_sym_cmd_identifier_token3] = ACTIONS(1875), - [aux_sym_cmd_identifier_token4] = ACTIONS(1875), - [aux_sym_cmd_identifier_token5] = ACTIONS(1875), - [aux_sym_cmd_identifier_token6] = ACTIONS(1875), - [aux_sym_cmd_identifier_token7] = ACTIONS(1875), - [aux_sym_cmd_identifier_token8] = ACTIONS(1875), - [aux_sym_cmd_identifier_token9] = ACTIONS(1875), - [aux_sym_cmd_identifier_token10] = ACTIONS(1875), - [aux_sym_cmd_identifier_token11] = ACTIONS(1875), - [aux_sym_cmd_identifier_token12] = ACTIONS(1875), - [aux_sym_cmd_identifier_token13] = ACTIONS(1875), - [aux_sym_cmd_identifier_token14] = ACTIONS(1875), - [aux_sym_cmd_identifier_token15] = ACTIONS(1875), - [aux_sym_cmd_identifier_token16] = ACTIONS(1875), - [aux_sym_cmd_identifier_token17] = ACTIONS(1875), - [aux_sym_cmd_identifier_token18] = ACTIONS(1875), - [aux_sym_cmd_identifier_token19] = ACTIONS(1875), - [aux_sym_cmd_identifier_token20] = ACTIONS(1875), - [aux_sym_cmd_identifier_token21] = ACTIONS(1875), - [aux_sym_cmd_identifier_token22] = ACTIONS(1875), - [aux_sym_cmd_identifier_token23] = ACTIONS(1875), - [aux_sym_cmd_identifier_token24] = ACTIONS(1875), - [aux_sym_cmd_identifier_token25] = ACTIONS(1875), - [aux_sym_cmd_identifier_token26] = ACTIONS(1875), - [aux_sym_cmd_identifier_token27] = ACTIONS(1875), - [aux_sym_cmd_identifier_token28] = ACTIONS(1875), - [aux_sym_cmd_identifier_token29] = ACTIONS(1875), - [aux_sym_cmd_identifier_token30] = ACTIONS(1875), - [aux_sym_cmd_identifier_token31] = ACTIONS(1875), - [aux_sym_cmd_identifier_token32] = ACTIONS(1875), - [aux_sym_cmd_identifier_token33] = ACTIONS(1875), - [aux_sym_cmd_identifier_token34] = ACTIONS(1875), - [aux_sym_cmd_identifier_token35] = ACTIONS(1875), - [aux_sym_cmd_identifier_token36] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(1875), - [anon_sym_false] = ACTIONS(1875), - [anon_sym_null] = ACTIONS(1875), - [aux_sym_cmd_identifier_token38] = ACTIONS(1875), - [aux_sym_cmd_identifier_token39] = ACTIONS(1875), - [aux_sym_cmd_identifier_token40] = ACTIONS(1875), - [anon_sym_def] = ACTIONS(1875), - [anon_sym_export_DASHenv] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_use] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_list] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in] = ACTIONS(1875), - [anon_sym_loop] = ACTIONS(1875), - [anon_sym_make] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_source] = ACTIONS(1875), - [anon_sym_source_DASHenv] = ACTIONS(1875), - [anon_sym_register] = ACTIONS(1875), - [anon_sym_hide] = ACTIONS(1875), - [anon_sym_hide_DASHenv] = ACTIONS(1875), - [anon_sym_overlay] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1875), - [aux_sym__val_number_decimal_token3] = ACTIONS(1875), - [aux_sym__val_number_decimal_token4] = ACTIONS(1875), - [aux_sym__val_number_token1] = ACTIONS(1875), - [aux_sym__val_number_token2] = ACTIONS(1875), - [aux_sym__val_number_token3] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [sym__str_single_quotes] = ACTIONS(1875), - [sym__str_back_ticks] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), - [sym__entry_separator] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(3), - }, [314] = { - [sym_cell_path] = STATE(553), - [sym_path] = STATE(482), [sym_comment] = STATE(314), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [anon_sym_null] = ACTIONS(1879), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1879), - [aux_sym_cmd_identifier_token40] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1879), - [aux_sym__val_number_decimal_token4] = ACTIONS(1879), - [aux_sym__val_number_token1] = ACTIONS(1879), - [aux_sym__val_number_token2] = ACTIONS(1879), - [aux_sym__val_number_token3] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [sym__str_single_quotes] = ACTIONS(1879), - [sym__str_back_ticks] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(267), + [anon_sym_export] = ACTIONS(1809), + [anon_sym_alias] = ACTIONS(1809), + [anon_sym_let] = ACTIONS(1809), + [anon_sym_let_DASHenv] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [aux_sym_cmd_identifier_token1] = ACTIONS(1809), + [aux_sym_cmd_identifier_token2] = ACTIONS(1809), + [aux_sym_cmd_identifier_token3] = ACTIONS(1809), + [aux_sym_cmd_identifier_token4] = ACTIONS(1809), + [aux_sym_cmd_identifier_token5] = ACTIONS(1809), + [aux_sym_cmd_identifier_token6] = ACTIONS(1809), + [aux_sym_cmd_identifier_token7] = ACTIONS(1809), + [aux_sym_cmd_identifier_token8] = ACTIONS(1809), + [aux_sym_cmd_identifier_token9] = ACTIONS(1809), + [aux_sym_cmd_identifier_token10] = ACTIONS(1809), + [aux_sym_cmd_identifier_token11] = ACTIONS(1809), + [aux_sym_cmd_identifier_token12] = ACTIONS(1809), + [aux_sym_cmd_identifier_token13] = ACTIONS(1809), + [aux_sym_cmd_identifier_token14] = ACTIONS(1809), + [aux_sym_cmd_identifier_token15] = ACTIONS(1809), + [aux_sym_cmd_identifier_token16] = ACTIONS(1809), + [aux_sym_cmd_identifier_token17] = ACTIONS(1809), + [aux_sym_cmd_identifier_token18] = ACTIONS(1809), + [aux_sym_cmd_identifier_token19] = ACTIONS(1809), + [aux_sym_cmd_identifier_token20] = ACTIONS(1809), + [aux_sym_cmd_identifier_token21] = ACTIONS(1809), + [aux_sym_cmd_identifier_token22] = ACTIONS(1809), + [aux_sym_cmd_identifier_token23] = ACTIONS(1809), + [aux_sym_cmd_identifier_token24] = ACTIONS(1811), + [aux_sym_cmd_identifier_token25] = ACTIONS(1809), + [aux_sym_cmd_identifier_token26] = ACTIONS(1811), + [aux_sym_cmd_identifier_token27] = ACTIONS(1809), + [aux_sym_cmd_identifier_token28] = ACTIONS(1809), + [aux_sym_cmd_identifier_token29] = ACTIONS(1809), + [aux_sym_cmd_identifier_token30] = ACTIONS(1809), + [aux_sym_cmd_identifier_token31] = ACTIONS(1811), + [aux_sym_cmd_identifier_token32] = ACTIONS(1811), + [aux_sym_cmd_identifier_token33] = ACTIONS(1811), + [aux_sym_cmd_identifier_token34] = ACTIONS(1811), + [aux_sym_cmd_identifier_token35] = ACTIONS(1811), + [aux_sym_cmd_identifier_token36] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [anon_sym_null] = ACTIONS(1811), + [aux_sym_cmd_identifier_token38] = ACTIONS(1809), + [aux_sym_cmd_identifier_token39] = ACTIONS(1811), + [aux_sym_cmd_identifier_token40] = ACTIONS(1811), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1809), + [anon_sym_export_DASHenv] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_module] = ACTIONS(1809), + [anon_sym_use] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1809), + [anon_sym_error] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_loop] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_do] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1809), + [anon_sym_try] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_source] = ACTIONS(1809), + [anon_sym_source_DASHenv] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_hide] = ACTIONS(1809), + [anon_sym_hide_DASHenv] = ACTIONS(1809), + [anon_sym_overlay] = ACTIONS(1809), + [anon_sym_where] = ACTIONS(1811), + [aux_sym_expr_unary_token1] = ACTIONS(1811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), + [anon_sym_DOT_DOT_LT] = ACTIONS(1811), + [aux_sym__val_number_decimal_token1] = ACTIONS(1809), + [aux_sym__val_number_decimal_token2] = ACTIONS(1811), + [aux_sym__val_number_decimal_token3] = ACTIONS(1811), + [aux_sym__val_number_decimal_token4] = ACTIONS(1811), + [aux_sym__val_number_token1] = ACTIONS(1811), + [aux_sym__val_number_token2] = ACTIONS(1811), + [aux_sym__val_number_token3] = ACTIONS(1811), + [anon_sym_0b] = ACTIONS(1809), + [anon_sym_0o] = ACTIONS(1809), + [anon_sym_0x] = ACTIONS(1809), + [sym_val_date] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym__str_single_quotes] = ACTIONS(1811), + [sym__str_back_ticks] = ACTIONS(1811), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), + [aux_sym_env_var_token1] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_POUND] = ACTIONS(247), }, [315] = { - [sym_path] = STATE(431), + [sym_path] = STATE(428), [sym_comment] = STATE(315), - [aux_sym_cell_path_repeat1] = STATE(317), - [anon_sym_export] = ACTIONS(1017), - [anon_sym_alias] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_let_DASHenv] = ACTIONS(1017), - [anon_sym_mut] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [aux_sym_cmd_identifier_token1] = ACTIONS(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(1017), - [aux_sym_cmd_identifier_token3] = ACTIONS(1017), - [aux_sym_cmd_identifier_token4] = ACTIONS(1017), - [aux_sym_cmd_identifier_token5] = ACTIONS(1017), - [aux_sym_cmd_identifier_token6] = ACTIONS(1017), - [aux_sym_cmd_identifier_token7] = ACTIONS(1017), - [aux_sym_cmd_identifier_token8] = ACTIONS(1017), - [aux_sym_cmd_identifier_token9] = ACTIONS(1017), - [aux_sym_cmd_identifier_token10] = ACTIONS(1017), - [aux_sym_cmd_identifier_token11] = ACTIONS(1017), - [aux_sym_cmd_identifier_token12] = ACTIONS(1017), - [aux_sym_cmd_identifier_token13] = ACTIONS(1017), - [aux_sym_cmd_identifier_token14] = ACTIONS(1017), - [aux_sym_cmd_identifier_token15] = ACTIONS(1017), - [aux_sym_cmd_identifier_token16] = ACTIONS(1017), - [aux_sym_cmd_identifier_token17] = ACTIONS(1017), - [aux_sym_cmd_identifier_token18] = ACTIONS(1017), - [aux_sym_cmd_identifier_token19] = ACTIONS(1017), - [aux_sym_cmd_identifier_token20] = ACTIONS(1017), - [aux_sym_cmd_identifier_token21] = ACTIONS(1017), - [aux_sym_cmd_identifier_token22] = ACTIONS(1017), - [aux_sym_cmd_identifier_token23] = ACTIONS(1017), - [aux_sym_cmd_identifier_token24] = ACTIONS(1017), - [aux_sym_cmd_identifier_token25] = ACTIONS(1017), - [aux_sym_cmd_identifier_token26] = ACTIONS(1017), - [aux_sym_cmd_identifier_token27] = ACTIONS(1017), - [aux_sym_cmd_identifier_token28] = ACTIONS(1017), - [aux_sym_cmd_identifier_token29] = ACTIONS(1017), - [aux_sym_cmd_identifier_token30] = ACTIONS(1017), - [aux_sym_cmd_identifier_token31] = ACTIONS(1017), - [aux_sym_cmd_identifier_token32] = ACTIONS(1017), - [aux_sym_cmd_identifier_token33] = ACTIONS(1017), - [aux_sym_cmd_identifier_token34] = ACTIONS(1017), - [aux_sym_cmd_identifier_token35] = ACTIONS(1017), - [aux_sym_cmd_identifier_token36] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [anon_sym_def] = ACTIONS(1017), - [anon_sym_export_DASHenv] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_error] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_make] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_catch] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_source] = ACTIONS(1017), - [anon_sym_source_DASHenv] = ACTIONS(1017), - [anon_sym_register] = ACTIONS(1017), - [anon_sym_hide] = ACTIONS(1017), - [anon_sym_hide_DASHenv] = ACTIONS(1017), - [anon_sym_overlay] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), - [aux_sym_record_entry_token1] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), + [aux_sym_cell_path_repeat1] = STATE(316), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [316] = { + [sym_path] = STATE(428), [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1883), - [aux_sym_cmd_identifier_token3] = ACTIONS(1883), - [aux_sym_cmd_identifier_token4] = ACTIONS(1883), - [aux_sym_cmd_identifier_token5] = ACTIONS(1883), - [aux_sym_cmd_identifier_token6] = ACTIONS(1883), - [aux_sym_cmd_identifier_token7] = ACTIONS(1883), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1883), - [aux_sym_cmd_identifier_token11] = ACTIONS(1883), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1883), - [aux_sym_cmd_identifier_token17] = ACTIONS(1883), - [aux_sym_cmd_identifier_token18] = ACTIONS(1883), - [aux_sym_cmd_identifier_token19] = ACTIONS(1883), - [aux_sym_cmd_identifier_token20] = ACTIONS(1883), - [aux_sym_cmd_identifier_token21] = ACTIONS(1883), - [aux_sym_cmd_identifier_token22] = ACTIONS(1883), - [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1885), - [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1885), - [aux_sym_cmd_identifier_token27] = ACTIONS(1883), - [aux_sym_cmd_identifier_token28] = ACTIONS(1883), - [aux_sym_cmd_identifier_token29] = ACTIONS(1883), - [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1885), - [aux_sym_cmd_identifier_token32] = ACTIONS(1885), - [aux_sym_cmd_identifier_token33] = ACTIONS(1885), - [aux_sym_cmd_identifier_token34] = ACTIONS(1885), - [aux_sym_cmd_identifier_token35] = ACTIONS(1885), - [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [aux_sym_ctrl_match_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_where] = ACTIONS(1885), - [aux_sym_expr_unary_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [aux_sym_env_var_token1] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1885), + [aux_sym_cell_path_repeat1] = STATE(316), + [anon_sym_export] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_let_DASHenv] = ACTIONS(1015), + [anon_sym_mut] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [aux_sym_cmd_identifier_token1] = ACTIONS(1015), + [aux_sym_cmd_identifier_token2] = ACTIONS(1015), + [aux_sym_cmd_identifier_token3] = ACTIONS(1015), + [aux_sym_cmd_identifier_token4] = ACTIONS(1015), + [aux_sym_cmd_identifier_token5] = ACTIONS(1015), + [aux_sym_cmd_identifier_token6] = ACTIONS(1015), + [aux_sym_cmd_identifier_token7] = ACTIONS(1015), + [aux_sym_cmd_identifier_token8] = ACTIONS(1015), + [aux_sym_cmd_identifier_token9] = ACTIONS(1015), + [aux_sym_cmd_identifier_token10] = ACTIONS(1015), + [aux_sym_cmd_identifier_token11] = ACTIONS(1015), + [aux_sym_cmd_identifier_token12] = ACTIONS(1015), + [aux_sym_cmd_identifier_token13] = ACTIONS(1015), + [aux_sym_cmd_identifier_token14] = ACTIONS(1015), + [aux_sym_cmd_identifier_token15] = ACTIONS(1015), + [aux_sym_cmd_identifier_token16] = ACTIONS(1015), + [aux_sym_cmd_identifier_token17] = ACTIONS(1015), + [aux_sym_cmd_identifier_token18] = ACTIONS(1015), + [aux_sym_cmd_identifier_token19] = ACTIONS(1015), + [aux_sym_cmd_identifier_token20] = ACTIONS(1015), + [aux_sym_cmd_identifier_token21] = ACTIONS(1015), + [aux_sym_cmd_identifier_token22] = ACTIONS(1015), + [aux_sym_cmd_identifier_token23] = ACTIONS(1015), + [aux_sym_cmd_identifier_token24] = ACTIONS(1015), + [aux_sym_cmd_identifier_token25] = ACTIONS(1015), + [aux_sym_cmd_identifier_token26] = ACTIONS(1015), + [aux_sym_cmd_identifier_token27] = ACTIONS(1015), + [aux_sym_cmd_identifier_token28] = ACTIONS(1015), + [aux_sym_cmd_identifier_token29] = ACTIONS(1015), + [aux_sym_cmd_identifier_token30] = ACTIONS(1015), + [aux_sym_cmd_identifier_token31] = ACTIONS(1015), + [aux_sym_cmd_identifier_token32] = ACTIONS(1015), + [aux_sym_cmd_identifier_token33] = ACTIONS(1015), + [aux_sym_cmd_identifier_token34] = ACTIONS(1015), + [aux_sym_cmd_identifier_token35] = ACTIONS(1015), + [aux_sym_cmd_identifier_token36] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1015), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [anon_sym_def] = ACTIONS(1015), + [anon_sym_export_DASHenv] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_error] = ACTIONS(1015), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_in] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_make] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_source] = ACTIONS(1015), + [anon_sym_source_DASHenv] = ACTIONS(1015), + [anon_sym_register] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_hide_DASHenv] = ACTIONS(1015), + [anon_sym_overlay] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(1815), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1015), [anon_sym_POUND] = ACTIONS(247), }, [317] = { - [sym_path] = STATE(431), [sym_comment] = STATE(317), - [aux_sym_cell_path_repeat1] = STATE(317), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), - [aux_sym_record_entry_token1] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [318] = { - [sym_cell_path] = STATE(536), - [sym_path] = STATE(482), - [sym_comment] = STATE(318), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_list] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_new] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [sym__entry_separator] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(3), - }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), [anon_sym_true] = ACTIONS(1042), [anon_sym_false] = ACTIONS(1042), [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), [aux_sym_cmd_identifier_token39] = ACTIONS(1042), [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), [anon_sym_LPAREN] = ACTIONS(1042), [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), [anon_sym_QMARK2] = ACTIONS(1042), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), [aux_sym__val_number_decimal_token2] = ACTIONS(1042), [aux_sym__val_number_decimal_token3] = ACTIONS(1042), [aux_sym__val_number_decimal_token4] = ACTIONS(1042), @@ -111476,1678 +112830,3242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1042), [sym__str_back_ticks] = ACTIONS(1042), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), + [sym__entry_separator] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(3), + }, + [318] = { + [sym_comment] = STATE(318), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(3), + }, + [319] = { + [sym_comment] = STATE(319), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1022), + [aux_sym_cmd_identifier_token40] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_make] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), + [sym__entry_separator] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), }, [320] = { [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1781), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [aux_sym_ctrl_match_token1] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_where] = ACTIONS(1781), - [aux_sym_expr_unary_token1] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [aux_sym_env_var_token1] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [anon_sym_null] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [sym__entry_separator] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(3), }, [321] = { [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [322] = { - [sym_comment] = STATE(322), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [323] = { - [sym_cell_path] = STATE(537), - [sym_path] = STATE(482), - [sym_comment] = STATE(323), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1894), - [aux_sym_cmd_identifier_token4] = ACTIONS(1894), - [aux_sym_cmd_identifier_token5] = ACTIONS(1894), - [aux_sym_cmd_identifier_token6] = ACTIONS(1894), - [aux_sym_cmd_identifier_token7] = ACTIONS(1894), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1894), - [aux_sym_cmd_identifier_token11] = ACTIONS(1894), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1894), - [aux_sym_cmd_identifier_token17] = ACTIONS(1894), - [aux_sym_cmd_identifier_token18] = ACTIONS(1894), - [aux_sym_cmd_identifier_token19] = ACTIONS(1894), - [aux_sym_cmd_identifier_token20] = ACTIONS(1894), - [aux_sym_cmd_identifier_token21] = ACTIONS(1894), - [aux_sym_cmd_identifier_token22] = ACTIONS(1894), - [aux_sym_cmd_identifier_token23] = ACTIONS(1894), - [aux_sym_cmd_identifier_token24] = ACTIONS(1894), - [aux_sym_cmd_identifier_token25] = ACTIONS(1894), - [aux_sym_cmd_identifier_token26] = ACTIONS(1894), - [aux_sym_cmd_identifier_token27] = ACTIONS(1894), - [aux_sym_cmd_identifier_token28] = ACTIONS(1894), - [aux_sym_cmd_identifier_token29] = ACTIONS(1894), - [aux_sym_cmd_identifier_token30] = ACTIONS(1894), - [aux_sym_cmd_identifier_token31] = ACTIONS(1894), - [aux_sym_cmd_identifier_token32] = ACTIONS(1894), - [aux_sym_cmd_identifier_token33] = ACTIONS(1894), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1894), - [aux_sym_cmd_identifier_token36] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_list] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_new] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), - [sym__entry_separator] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(3), - }, - [324] = { - [sym_comment] = STATE(324), - [aux_sym_shebang_repeat1] = STATE(324), - [anon_sym_export] = ACTIONS(1898), - [anon_sym_alias] = ACTIONS(1898), - [anon_sym_let] = ACTIONS(1898), - [anon_sym_let_DASHenv] = ACTIONS(1898), - [anon_sym_mut] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [aux_sym_cmd_identifier_token1] = ACTIONS(1898), - [aux_sym_cmd_identifier_token2] = ACTIONS(1898), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [aux_sym_cmd_identifier_token6] = ACTIONS(1898), - [aux_sym_cmd_identifier_token7] = ACTIONS(1898), - [aux_sym_cmd_identifier_token8] = ACTIONS(1898), - [aux_sym_cmd_identifier_token9] = ACTIONS(1898), - [aux_sym_cmd_identifier_token10] = ACTIONS(1898), - [aux_sym_cmd_identifier_token11] = ACTIONS(1898), - [aux_sym_cmd_identifier_token12] = ACTIONS(1898), - [aux_sym_cmd_identifier_token13] = ACTIONS(1898), - [aux_sym_cmd_identifier_token14] = ACTIONS(1898), - [aux_sym_cmd_identifier_token15] = ACTIONS(1898), - [aux_sym_cmd_identifier_token16] = ACTIONS(1898), - [aux_sym_cmd_identifier_token17] = ACTIONS(1898), - [aux_sym_cmd_identifier_token18] = ACTIONS(1898), - [aux_sym_cmd_identifier_token19] = ACTIONS(1898), - [aux_sym_cmd_identifier_token20] = ACTIONS(1898), - [aux_sym_cmd_identifier_token21] = ACTIONS(1898), - [aux_sym_cmd_identifier_token22] = ACTIONS(1898), - [aux_sym_cmd_identifier_token23] = ACTIONS(1898), - [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1898), - [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1898), - [aux_sym_cmd_identifier_token28] = ACTIONS(1898), - [aux_sym_cmd_identifier_token29] = ACTIONS(1898), - [aux_sym_cmd_identifier_token30] = ACTIONS(1898), - [aux_sym_cmd_identifier_token31] = ACTIONS(1900), - [aux_sym_cmd_identifier_token32] = ACTIONS(1900), - [aux_sym_cmd_identifier_token33] = ACTIONS(1900), - [aux_sym_cmd_identifier_token34] = ACTIONS(1900), - [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), - [aux_sym_cmd_identifier_token38] = ACTIONS(1898), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [sym__newline] = ACTIONS(1902), - [anon_sym_def] = ACTIONS(1898), - [anon_sym_export_DASHenv] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym_module] = ACTIONS(1898), - [anon_sym_use] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_error] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_loop] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_do] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [aux_sym_ctrl_match_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_try] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_source] = ACTIONS(1898), - [anon_sym_source_DASHenv] = ACTIONS(1898), - [anon_sym_register] = ACTIONS(1898), - [anon_sym_hide] = ACTIONS(1898), - [anon_sym_hide_DASHenv] = ACTIONS(1898), - [anon_sym_overlay] = ACTIONS(1898), - [anon_sym_where] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), - [anon_sym_DOT_DOT_LT] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1898), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_0b] = ACTIONS(1898), - [anon_sym_0o] = ACTIONS(1898), - [anon_sym_0x] = ACTIONS(1898), - [sym_val_date] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), - [aux_sym_env_var_token1] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1900), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, + [322] = { + [sym_comment] = STATE(322), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, + [323] = { + [sym_cell_path] = STATE(511), + [sym_path] = STATE(527), + [sym_comment] = STATE(323), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_alias] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_let_DASHenv] = ACTIONS(1822), + [anon_sym_mut] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [aux_sym_cmd_identifier_token1] = ACTIONS(1822), + [aux_sym_cmd_identifier_token2] = ACTIONS(1822), + [aux_sym_cmd_identifier_token3] = ACTIONS(1822), + [aux_sym_cmd_identifier_token4] = ACTIONS(1822), + [aux_sym_cmd_identifier_token5] = ACTIONS(1822), + [aux_sym_cmd_identifier_token6] = ACTIONS(1822), + [aux_sym_cmd_identifier_token7] = ACTIONS(1822), + [aux_sym_cmd_identifier_token8] = ACTIONS(1822), + [aux_sym_cmd_identifier_token9] = ACTIONS(1822), + [aux_sym_cmd_identifier_token10] = ACTIONS(1822), + [aux_sym_cmd_identifier_token11] = ACTIONS(1822), + [aux_sym_cmd_identifier_token12] = ACTIONS(1822), + [aux_sym_cmd_identifier_token13] = ACTIONS(1822), + [aux_sym_cmd_identifier_token14] = ACTIONS(1822), + [aux_sym_cmd_identifier_token15] = ACTIONS(1822), + [aux_sym_cmd_identifier_token16] = ACTIONS(1822), + [aux_sym_cmd_identifier_token17] = ACTIONS(1822), + [aux_sym_cmd_identifier_token18] = ACTIONS(1822), + [aux_sym_cmd_identifier_token19] = ACTIONS(1822), + [aux_sym_cmd_identifier_token20] = ACTIONS(1822), + [aux_sym_cmd_identifier_token21] = ACTIONS(1822), + [aux_sym_cmd_identifier_token22] = ACTIONS(1822), + [aux_sym_cmd_identifier_token23] = ACTIONS(1822), + [aux_sym_cmd_identifier_token24] = ACTIONS(1822), + [aux_sym_cmd_identifier_token25] = ACTIONS(1822), + [aux_sym_cmd_identifier_token26] = ACTIONS(1822), + [aux_sym_cmd_identifier_token27] = ACTIONS(1822), + [aux_sym_cmd_identifier_token28] = ACTIONS(1822), + [aux_sym_cmd_identifier_token29] = ACTIONS(1822), + [aux_sym_cmd_identifier_token30] = ACTIONS(1822), + [aux_sym_cmd_identifier_token31] = ACTIONS(1822), + [aux_sym_cmd_identifier_token32] = ACTIONS(1822), + [aux_sym_cmd_identifier_token33] = ACTIONS(1822), + [aux_sym_cmd_identifier_token34] = ACTIONS(1822), + [aux_sym_cmd_identifier_token35] = ACTIONS(1822), + [aux_sym_cmd_identifier_token36] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [aux_sym_cmd_identifier_token38] = ACTIONS(1822), + [aux_sym_cmd_identifier_token39] = ACTIONS(1822), + [aux_sym_cmd_identifier_token40] = ACTIONS(1822), + [anon_sym_def] = ACTIONS(1822), + [anon_sym_export_DASHenv] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_error] = ACTIONS(1822), + [anon_sym_list] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_make] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_source] = ACTIONS(1822), + [anon_sym_source_DASHenv] = ACTIONS(1822), + [anon_sym_register] = ACTIONS(1822), + [anon_sym_hide] = ACTIONS(1822), + [anon_sym_hide_DASHenv] = ACTIONS(1822), + [anon_sym_overlay] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1822), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), + [sym__entry_separator] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(3), + }, + [324] = { + [sym_cell_path] = STATE(534), + [sym_path] = STATE(527), + [sym_comment] = STATE(324), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1828), + [anon_sym_alias] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_let_DASHenv] = ACTIONS(1828), + [anon_sym_mut] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [aux_sym_cmd_identifier_token1] = ACTIONS(1828), + [aux_sym_cmd_identifier_token2] = ACTIONS(1828), + [aux_sym_cmd_identifier_token3] = ACTIONS(1828), + [aux_sym_cmd_identifier_token4] = ACTIONS(1828), + [aux_sym_cmd_identifier_token5] = ACTIONS(1828), + [aux_sym_cmd_identifier_token6] = ACTIONS(1828), + [aux_sym_cmd_identifier_token7] = ACTIONS(1828), + [aux_sym_cmd_identifier_token8] = ACTIONS(1828), + [aux_sym_cmd_identifier_token9] = ACTIONS(1828), + [aux_sym_cmd_identifier_token10] = ACTIONS(1828), + [aux_sym_cmd_identifier_token11] = ACTIONS(1828), + [aux_sym_cmd_identifier_token12] = ACTIONS(1828), + [aux_sym_cmd_identifier_token13] = ACTIONS(1828), + [aux_sym_cmd_identifier_token14] = ACTIONS(1828), + [aux_sym_cmd_identifier_token15] = ACTIONS(1828), + [aux_sym_cmd_identifier_token16] = ACTIONS(1828), + [aux_sym_cmd_identifier_token17] = ACTIONS(1828), + [aux_sym_cmd_identifier_token18] = ACTIONS(1828), + [aux_sym_cmd_identifier_token19] = ACTIONS(1828), + [aux_sym_cmd_identifier_token20] = ACTIONS(1828), + [aux_sym_cmd_identifier_token21] = ACTIONS(1828), + [aux_sym_cmd_identifier_token22] = ACTIONS(1828), + [aux_sym_cmd_identifier_token23] = ACTIONS(1828), + [aux_sym_cmd_identifier_token24] = ACTIONS(1828), + [aux_sym_cmd_identifier_token25] = ACTIONS(1828), + [aux_sym_cmd_identifier_token26] = ACTIONS(1828), + [aux_sym_cmd_identifier_token27] = ACTIONS(1828), + [aux_sym_cmd_identifier_token28] = ACTIONS(1828), + [aux_sym_cmd_identifier_token29] = ACTIONS(1828), + [aux_sym_cmd_identifier_token30] = ACTIONS(1828), + [aux_sym_cmd_identifier_token31] = ACTIONS(1828), + [aux_sym_cmd_identifier_token32] = ACTIONS(1828), + [aux_sym_cmd_identifier_token33] = ACTIONS(1828), + [aux_sym_cmd_identifier_token34] = ACTIONS(1828), + [aux_sym_cmd_identifier_token35] = ACTIONS(1828), + [aux_sym_cmd_identifier_token36] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1828), + [anon_sym_export_DASHenv] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym_module] = ACTIONS(1828), + [anon_sym_use] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1828), + [anon_sym_list] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_in] = ACTIONS(1828), + [anon_sym_loop] = ACTIONS(1828), + [anon_sym_make] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_match] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1828), + [anon_sym_catch] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_source] = ACTIONS(1828), + [anon_sym_source_DASHenv] = ACTIONS(1828), + [anon_sym_register] = ACTIONS(1828), + [anon_sym_hide] = ACTIONS(1828), + [anon_sym_hide_DASHenv] = ACTIONS(1828), + [anon_sym_overlay] = ACTIONS(1828), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1828), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [sym__entry_separator] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(3), + }, [325] = { - [sym_cell_path] = STATE(544), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(535), + [sym_path] = STATE(527), [sym_comment] = STATE(325), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [anon_sym_null] = ACTIONS(1905), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1905), - [aux_sym_cmd_identifier_token40] = ACTIONS(1905), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1905), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_alias] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_let_DASHenv] = ACTIONS(1832), + [anon_sym_mut] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [aux_sym_cmd_identifier_token1] = ACTIONS(1832), + [aux_sym_cmd_identifier_token2] = ACTIONS(1832), + [aux_sym_cmd_identifier_token3] = ACTIONS(1832), + [aux_sym_cmd_identifier_token4] = ACTIONS(1832), + [aux_sym_cmd_identifier_token5] = ACTIONS(1832), + [aux_sym_cmd_identifier_token6] = ACTIONS(1832), + [aux_sym_cmd_identifier_token7] = ACTIONS(1832), + [aux_sym_cmd_identifier_token8] = ACTIONS(1832), + [aux_sym_cmd_identifier_token9] = ACTIONS(1832), + [aux_sym_cmd_identifier_token10] = ACTIONS(1832), + [aux_sym_cmd_identifier_token11] = ACTIONS(1832), + [aux_sym_cmd_identifier_token12] = ACTIONS(1832), + [aux_sym_cmd_identifier_token13] = ACTIONS(1832), + [aux_sym_cmd_identifier_token14] = ACTIONS(1832), + [aux_sym_cmd_identifier_token15] = ACTIONS(1832), + [aux_sym_cmd_identifier_token16] = ACTIONS(1832), + [aux_sym_cmd_identifier_token17] = ACTIONS(1832), + [aux_sym_cmd_identifier_token18] = ACTIONS(1832), + [aux_sym_cmd_identifier_token19] = ACTIONS(1832), + [aux_sym_cmd_identifier_token20] = ACTIONS(1832), + [aux_sym_cmd_identifier_token21] = ACTIONS(1832), + [aux_sym_cmd_identifier_token22] = ACTIONS(1832), + [aux_sym_cmd_identifier_token23] = ACTIONS(1832), + [aux_sym_cmd_identifier_token24] = ACTIONS(1832), + [aux_sym_cmd_identifier_token25] = ACTIONS(1832), + [aux_sym_cmd_identifier_token26] = ACTIONS(1832), + [aux_sym_cmd_identifier_token27] = ACTIONS(1832), + [aux_sym_cmd_identifier_token28] = ACTIONS(1832), + [aux_sym_cmd_identifier_token29] = ACTIONS(1832), + [aux_sym_cmd_identifier_token30] = ACTIONS(1832), + [aux_sym_cmd_identifier_token31] = ACTIONS(1832), + [aux_sym_cmd_identifier_token32] = ACTIONS(1832), + [aux_sym_cmd_identifier_token33] = ACTIONS(1832), + [aux_sym_cmd_identifier_token34] = ACTIONS(1832), + [aux_sym_cmd_identifier_token35] = ACTIONS(1832), + [aux_sym_cmd_identifier_token36] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [anon_sym_null] = ACTIONS(1832), + [aux_sym_cmd_identifier_token38] = ACTIONS(1832), + [aux_sym_cmd_identifier_token39] = ACTIONS(1832), + [aux_sym_cmd_identifier_token40] = ACTIONS(1832), + [anon_sym_def] = ACTIONS(1832), + [anon_sym_export_DASHenv] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [anon_sym_error] = ACTIONS(1832), + [anon_sym_list] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_make] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_catch] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_source] = ACTIONS(1832), + [anon_sym_source_DASHenv] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_hide] = ACTIONS(1832), + [anon_sym_hide_DASHenv] = ACTIONS(1832), + [anon_sym_overlay] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1832), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1832), + [aux_sym__val_number_decimal_token1] = ACTIONS(1832), + [aux_sym__val_number_decimal_token2] = ACTIONS(1832), + [aux_sym__val_number_decimal_token3] = ACTIONS(1832), + [aux_sym__val_number_decimal_token4] = ACTIONS(1832), + [aux_sym__val_number_token1] = ACTIONS(1832), + [aux_sym__val_number_token2] = ACTIONS(1832), + [aux_sym__val_number_token3] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [sym__str_single_quotes] = ACTIONS(1832), + [sym__str_back_ticks] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1832), + [sym__entry_separator] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1832), [anon_sym_POUND] = ACTIONS(3), }, [326] = { - [sym_cell_path] = STATE(565), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(615), + [sym_path] = STATE(527), [sym_comment] = STATE(326), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [anon_sym_null] = ACTIONS(1909), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1909), - [aux_sym_cmd_identifier_token40] = ACTIONS(1909), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_list] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), - [sym__entry_separator] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1909), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_alias] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_let_DASHenv] = ACTIONS(1836), + [anon_sym_mut] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [aux_sym_cmd_identifier_token1] = ACTIONS(1836), + [aux_sym_cmd_identifier_token2] = ACTIONS(1836), + [aux_sym_cmd_identifier_token3] = ACTIONS(1836), + [aux_sym_cmd_identifier_token4] = ACTIONS(1836), + [aux_sym_cmd_identifier_token5] = ACTIONS(1836), + [aux_sym_cmd_identifier_token6] = ACTIONS(1836), + [aux_sym_cmd_identifier_token7] = ACTIONS(1836), + [aux_sym_cmd_identifier_token8] = ACTIONS(1836), + [aux_sym_cmd_identifier_token9] = ACTIONS(1836), + [aux_sym_cmd_identifier_token10] = ACTIONS(1836), + [aux_sym_cmd_identifier_token11] = ACTIONS(1836), + [aux_sym_cmd_identifier_token12] = ACTIONS(1836), + [aux_sym_cmd_identifier_token13] = ACTIONS(1836), + [aux_sym_cmd_identifier_token14] = ACTIONS(1836), + [aux_sym_cmd_identifier_token15] = ACTIONS(1836), + [aux_sym_cmd_identifier_token16] = ACTIONS(1836), + [aux_sym_cmd_identifier_token17] = ACTIONS(1836), + [aux_sym_cmd_identifier_token18] = ACTIONS(1836), + [aux_sym_cmd_identifier_token19] = ACTIONS(1836), + [aux_sym_cmd_identifier_token20] = ACTIONS(1836), + [aux_sym_cmd_identifier_token21] = ACTIONS(1836), + [aux_sym_cmd_identifier_token22] = ACTIONS(1836), + [aux_sym_cmd_identifier_token23] = ACTIONS(1836), + [aux_sym_cmd_identifier_token24] = ACTIONS(1836), + [aux_sym_cmd_identifier_token25] = ACTIONS(1836), + [aux_sym_cmd_identifier_token26] = ACTIONS(1836), + [aux_sym_cmd_identifier_token27] = ACTIONS(1836), + [aux_sym_cmd_identifier_token28] = ACTIONS(1836), + [aux_sym_cmd_identifier_token29] = ACTIONS(1836), + [aux_sym_cmd_identifier_token30] = ACTIONS(1836), + [aux_sym_cmd_identifier_token31] = ACTIONS(1836), + [aux_sym_cmd_identifier_token32] = ACTIONS(1836), + [aux_sym_cmd_identifier_token33] = ACTIONS(1836), + [aux_sym_cmd_identifier_token34] = ACTIONS(1836), + [aux_sym_cmd_identifier_token35] = ACTIONS(1836), + [aux_sym_cmd_identifier_token36] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [anon_sym_null] = ACTIONS(1836), + [aux_sym_cmd_identifier_token38] = ACTIONS(1836), + [aux_sym_cmd_identifier_token39] = ACTIONS(1836), + [aux_sym_cmd_identifier_token40] = ACTIONS(1836), + [anon_sym_def] = ACTIONS(1836), + [anon_sym_export_DASHenv] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_error] = ACTIONS(1836), + [anon_sym_list] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_in] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_make] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_else] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_try] = ACTIONS(1836), + [anon_sym_catch] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_source] = ACTIONS(1836), + [anon_sym_source_DASHenv] = ACTIONS(1836), + [anon_sym_register] = ACTIONS(1836), + [anon_sym_hide] = ACTIONS(1836), + [anon_sym_hide_DASHenv] = ACTIONS(1836), + [anon_sym_overlay] = ACTIONS(1836), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_as] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1836), + [aux_sym__val_number_decimal_token1] = ACTIONS(1836), + [aux_sym__val_number_decimal_token2] = ACTIONS(1836), + [aux_sym__val_number_decimal_token3] = ACTIONS(1836), + [aux_sym__val_number_decimal_token4] = ACTIONS(1836), + [aux_sym__val_number_token1] = ACTIONS(1836), + [aux_sym__val_number_token2] = ACTIONS(1836), + [aux_sym__val_number_token3] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [sym__str_single_quotes] = ACTIONS(1836), + [sym__str_back_ticks] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1836), + [sym__entry_separator] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1836), [anon_sym_POUND] = ACTIONS(3), }, [327] = { - [sym_cell_path] = STATE(498), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(619), + [sym_path] = STATE(527), [sym_comment] = STATE(327), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [anon_sym_null] = ACTIONS(1913), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1913), - [aux_sym_cmd_identifier_token40] = ACTIONS(1913), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_list] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1913), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_alias] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_let_DASHenv] = ACTIONS(1840), + [anon_sym_mut] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [aux_sym_cmd_identifier_token1] = ACTIONS(1840), + [aux_sym_cmd_identifier_token2] = ACTIONS(1840), + [aux_sym_cmd_identifier_token3] = ACTIONS(1840), + [aux_sym_cmd_identifier_token4] = ACTIONS(1840), + [aux_sym_cmd_identifier_token5] = ACTIONS(1840), + [aux_sym_cmd_identifier_token6] = ACTIONS(1840), + [aux_sym_cmd_identifier_token7] = ACTIONS(1840), + [aux_sym_cmd_identifier_token8] = ACTIONS(1840), + [aux_sym_cmd_identifier_token9] = ACTIONS(1840), + [aux_sym_cmd_identifier_token10] = ACTIONS(1840), + [aux_sym_cmd_identifier_token11] = ACTIONS(1840), + [aux_sym_cmd_identifier_token12] = ACTIONS(1840), + [aux_sym_cmd_identifier_token13] = ACTIONS(1840), + [aux_sym_cmd_identifier_token14] = ACTIONS(1840), + [aux_sym_cmd_identifier_token15] = ACTIONS(1840), + [aux_sym_cmd_identifier_token16] = ACTIONS(1840), + [aux_sym_cmd_identifier_token17] = ACTIONS(1840), + [aux_sym_cmd_identifier_token18] = ACTIONS(1840), + [aux_sym_cmd_identifier_token19] = ACTIONS(1840), + [aux_sym_cmd_identifier_token20] = ACTIONS(1840), + [aux_sym_cmd_identifier_token21] = ACTIONS(1840), + [aux_sym_cmd_identifier_token22] = ACTIONS(1840), + [aux_sym_cmd_identifier_token23] = ACTIONS(1840), + [aux_sym_cmd_identifier_token24] = ACTIONS(1840), + [aux_sym_cmd_identifier_token25] = ACTIONS(1840), + [aux_sym_cmd_identifier_token26] = ACTIONS(1840), + [aux_sym_cmd_identifier_token27] = ACTIONS(1840), + [aux_sym_cmd_identifier_token28] = ACTIONS(1840), + [aux_sym_cmd_identifier_token29] = ACTIONS(1840), + [aux_sym_cmd_identifier_token30] = ACTIONS(1840), + [aux_sym_cmd_identifier_token31] = ACTIONS(1840), + [aux_sym_cmd_identifier_token32] = ACTIONS(1840), + [aux_sym_cmd_identifier_token33] = ACTIONS(1840), + [aux_sym_cmd_identifier_token34] = ACTIONS(1840), + [aux_sym_cmd_identifier_token35] = ACTIONS(1840), + [aux_sym_cmd_identifier_token36] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1840), + [anon_sym_false] = ACTIONS(1840), + [anon_sym_null] = ACTIONS(1840), + [aux_sym_cmd_identifier_token38] = ACTIONS(1840), + [aux_sym_cmd_identifier_token39] = ACTIONS(1840), + [aux_sym_cmd_identifier_token40] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1840), + [anon_sym_export_DASHenv] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_error] = ACTIONS(1840), + [anon_sym_list] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_make] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_catch] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_source] = ACTIONS(1840), + [anon_sym_source_DASHenv] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_hide] = ACTIONS(1840), + [anon_sym_hide_DASHenv] = ACTIONS(1840), + [anon_sym_overlay] = ACTIONS(1840), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1840), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1840), + [aux_sym__val_number_decimal_token3] = ACTIONS(1840), + [aux_sym__val_number_decimal_token4] = ACTIONS(1840), + [aux_sym__val_number_token1] = ACTIONS(1840), + [aux_sym__val_number_token2] = ACTIONS(1840), + [aux_sym__val_number_token3] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym__str_single_quotes] = ACTIONS(1840), + [sym__str_back_ticks] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1840), + [sym__entry_separator] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1840), [anon_sym_POUND] = ACTIONS(3), }, [328] = { - [sym_cell_path] = STATE(499), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(559), + [sym_path] = STATE(527), [sym_comment] = STATE(328), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [anon_sym_null] = ACTIONS(1917), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1917), - [aux_sym_cmd_identifier_token40] = ACTIONS(1917), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_list] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), - [sym__entry_separator] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1917), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_alias] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_let_DASHenv] = ACTIONS(1844), + [anon_sym_mut] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [aux_sym_cmd_identifier_token1] = ACTIONS(1844), + [aux_sym_cmd_identifier_token2] = ACTIONS(1844), + [aux_sym_cmd_identifier_token3] = ACTIONS(1844), + [aux_sym_cmd_identifier_token4] = ACTIONS(1844), + [aux_sym_cmd_identifier_token5] = ACTIONS(1844), + [aux_sym_cmd_identifier_token6] = ACTIONS(1844), + [aux_sym_cmd_identifier_token7] = ACTIONS(1844), + [aux_sym_cmd_identifier_token8] = ACTIONS(1844), + [aux_sym_cmd_identifier_token9] = ACTIONS(1844), + [aux_sym_cmd_identifier_token10] = ACTIONS(1844), + [aux_sym_cmd_identifier_token11] = ACTIONS(1844), + [aux_sym_cmd_identifier_token12] = ACTIONS(1844), + [aux_sym_cmd_identifier_token13] = ACTIONS(1844), + [aux_sym_cmd_identifier_token14] = ACTIONS(1844), + [aux_sym_cmd_identifier_token15] = ACTIONS(1844), + [aux_sym_cmd_identifier_token16] = ACTIONS(1844), + [aux_sym_cmd_identifier_token17] = ACTIONS(1844), + [aux_sym_cmd_identifier_token18] = ACTIONS(1844), + [aux_sym_cmd_identifier_token19] = ACTIONS(1844), + [aux_sym_cmd_identifier_token20] = ACTIONS(1844), + [aux_sym_cmd_identifier_token21] = ACTIONS(1844), + [aux_sym_cmd_identifier_token22] = ACTIONS(1844), + [aux_sym_cmd_identifier_token23] = ACTIONS(1844), + [aux_sym_cmd_identifier_token24] = ACTIONS(1844), + [aux_sym_cmd_identifier_token25] = ACTIONS(1844), + [aux_sym_cmd_identifier_token26] = ACTIONS(1844), + [aux_sym_cmd_identifier_token27] = ACTIONS(1844), + [aux_sym_cmd_identifier_token28] = ACTIONS(1844), + [aux_sym_cmd_identifier_token29] = ACTIONS(1844), + [aux_sym_cmd_identifier_token30] = ACTIONS(1844), + [aux_sym_cmd_identifier_token31] = ACTIONS(1844), + [aux_sym_cmd_identifier_token32] = ACTIONS(1844), + [aux_sym_cmd_identifier_token33] = ACTIONS(1844), + [aux_sym_cmd_identifier_token34] = ACTIONS(1844), + [aux_sym_cmd_identifier_token35] = ACTIONS(1844), + [aux_sym_cmd_identifier_token36] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1844), + [anon_sym_false] = ACTIONS(1844), + [anon_sym_null] = ACTIONS(1844), + [aux_sym_cmd_identifier_token38] = ACTIONS(1844), + [aux_sym_cmd_identifier_token39] = ACTIONS(1844), + [aux_sym_cmd_identifier_token40] = ACTIONS(1844), + [anon_sym_def] = ACTIONS(1844), + [anon_sym_export_DASHenv] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1844), + [anon_sym_error] = ACTIONS(1844), + [anon_sym_list] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_make] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_catch] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_source] = ACTIONS(1844), + [anon_sym_source_DASHenv] = ACTIONS(1844), + [anon_sym_register] = ACTIONS(1844), + [anon_sym_hide] = ACTIONS(1844), + [anon_sym_hide_DASHenv] = ACTIONS(1844), + [anon_sym_overlay] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1844), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1844), + [aux_sym__val_number_decimal_token1] = ACTIONS(1844), + [aux_sym__val_number_decimal_token2] = ACTIONS(1844), + [aux_sym__val_number_decimal_token3] = ACTIONS(1844), + [aux_sym__val_number_decimal_token4] = ACTIONS(1844), + [aux_sym__val_number_token1] = ACTIONS(1844), + [aux_sym__val_number_token2] = ACTIONS(1844), + [aux_sym__val_number_token3] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [sym__str_single_quotes] = ACTIONS(1844), + [sym__str_back_ticks] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1844), + [sym__entry_separator] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(3), }, [329] = { - [sym_cell_path] = STATE(471), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(560), + [sym_path] = STATE(527), [sym_comment] = STATE(329), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [anon_sym_null] = ACTIONS(1921), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1921), - [aux_sym_cmd_identifier_token40] = ACTIONS(1921), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_list] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1921), - [aux_sym__val_number_decimal_token3] = ACTIONS(1921), - [aux_sym__val_number_decimal_token4] = ACTIONS(1921), - [aux_sym__val_number_token1] = ACTIONS(1921), - [aux_sym__val_number_token2] = ACTIONS(1921), - [aux_sym__val_number_token3] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), - [sym__entry_separator] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1921), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1848), + [anon_sym_alias] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_let_DASHenv] = ACTIONS(1848), + [anon_sym_mut] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [aux_sym_cmd_identifier_token1] = ACTIONS(1848), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1848), + [aux_sym_cmd_identifier_token9] = ACTIONS(1848), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1848), + [aux_sym_cmd_identifier_token13] = ACTIONS(1848), + [aux_sym_cmd_identifier_token14] = ACTIONS(1848), + [aux_sym_cmd_identifier_token15] = ACTIONS(1848), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1848), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [anon_sym_null] = ACTIONS(1848), + [aux_sym_cmd_identifier_token38] = ACTIONS(1848), + [aux_sym_cmd_identifier_token39] = ACTIONS(1848), + [aux_sym_cmd_identifier_token40] = ACTIONS(1848), + [anon_sym_def] = ACTIONS(1848), + [anon_sym_export_DASHenv] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_module] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_error] = ACTIONS(1848), + [anon_sym_list] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_make] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_else] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_catch] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_source] = ACTIONS(1848), + [anon_sym_source_DASHenv] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_hide] = ACTIONS(1848), + [anon_sym_hide_DASHenv] = ACTIONS(1848), + [anon_sym_overlay] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_as] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), + [sym__entry_separator] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(3), }, [330] = { + [sym_cell_path] = STATE(563), + [sym_path] = STATE(527), [sym_comment] = STATE(330), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_list] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), - [anon_sym_DOT_DOT2] = ACTIONS(1925), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1786), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1852), + [anon_sym_alias] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_let_DASHenv] = ACTIONS(1852), + [anon_sym_mut] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [aux_sym_cmd_identifier_token1] = ACTIONS(1852), + [aux_sym_cmd_identifier_token2] = ACTIONS(1852), + [aux_sym_cmd_identifier_token3] = ACTIONS(1852), + [aux_sym_cmd_identifier_token4] = ACTIONS(1852), + [aux_sym_cmd_identifier_token5] = ACTIONS(1852), + [aux_sym_cmd_identifier_token6] = ACTIONS(1852), + [aux_sym_cmd_identifier_token7] = ACTIONS(1852), + [aux_sym_cmd_identifier_token8] = ACTIONS(1852), + [aux_sym_cmd_identifier_token9] = ACTIONS(1852), + [aux_sym_cmd_identifier_token10] = ACTIONS(1852), + [aux_sym_cmd_identifier_token11] = ACTIONS(1852), + [aux_sym_cmd_identifier_token12] = ACTIONS(1852), + [aux_sym_cmd_identifier_token13] = ACTIONS(1852), + [aux_sym_cmd_identifier_token14] = ACTIONS(1852), + [aux_sym_cmd_identifier_token15] = ACTIONS(1852), + [aux_sym_cmd_identifier_token16] = ACTIONS(1852), + [aux_sym_cmd_identifier_token17] = ACTIONS(1852), + [aux_sym_cmd_identifier_token18] = ACTIONS(1852), + [aux_sym_cmd_identifier_token19] = ACTIONS(1852), + [aux_sym_cmd_identifier_token20] = ACTIONS(1852), + [aux_sym_cmd_identifier_token21] = ACTIONS(1852), + [aux_sym_cmd_identifier_token22] = ACTIONS(1852), + [aux_sym_cmd_identifier_token23] = ACTIONS(1852), + [aux_sym_cmd_identifier_token24] = ACTIONS(1852), + [aux_sym_cmd_identifier_token25] = ACTIONS(1852), + [aux_sym_cmd_identifier_token26] = ACTIONS(1852), + [aux_sym_cmd_identifier_token27] = ACTIONS(1852), + [aux_sym_cmd_identifier_token28] = ACTIONS(1852), + [aux_sym_cmd_identifier_token29] = ACTIONS(1852), + [aux_sym_cmd_identifier_token30] = ACTIONS(1852), + [aux_sym_cmd_identifier_token31] = ACTIONS(1852), + [aux_sym_cmd_identifier_token32] = ACTIONS(1852), + [aux_sym_cmd_identifier_token33] = ACTIONS(1852), + [aux_sym_cmd_identifier_token34] = ACTIONS(1852), + [aux_sym_cmd_identifier_token35] = ACTIONS(1852), + [aux_sym_cmd_identifier_token36] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [anon_sym_null] = ACTIONS(1852), + [aux_sym_cmd_identifier_token38] = ACTIONS(1852), + [aux_sym_cmd_identifier_token39] = ACTIONS(1852), + [aux_sym_cmd_identifier_token40] = ACTIONS(1852), + [anon_sym_def] = ACTIONS(1852), + [anon_sym_export_DASHenv] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_use] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(1852), + [anon_sym_error] = ACTIONS(1852), + [anon_sym_list] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [anon_sym_loop] = ACTIONS(1852), + [anon_sym_make] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_try] = ACTIONS(1852), + [anon_sym_catch] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_source] = ACTIONS(1852), + [anon_sym_source_DASHenv] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_hide] = ACTIONS(1852), + [anon_sym_hide_DASHenv] = ACTIONS(1852), + [anon_sym_overlay] = ACTIONS(1852), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_as] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1852), + [aux_sym__val_number_decimal_token1] = ACTIONS(1852), + [aux_sym__val_number_decimal_token2] = ACTIONS(1852), + [aux_sym__val_number_decimal_token3] = ACTIONS(1852), + [aux_sym__val_number_decimal_token4] = ACTIONS(1852), + [aux_sym__val_number_token1] = ACTIONS(1852), + [aux_sym__val_number_token2] = ACTIONS(1852), + [aux_sym__val_number_token3] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [sym__str_single_quotes] = ACTIONS(1852), + [sym__str_back_ticks] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1852), + [sym__entry_separator] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(3), }, [331] = { + [sym_cell_path] = STATE(564), + [sym_path] = STATE(527), [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_alias] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_let_DASHenv] = ACTIONS(1929), - [anon_sym_mut] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [aux_sym_cmd_identifier_token1] = ACTIONS(1929), - [aux_sym_cmd_identifier_token2] = ACTIONS(1929), - [aux_sym_cmd_identifier_token3] = ACTIONS(1929), - [aux_sym_cmd_identifier_token4] = ACTIONS(1929), - [aux_sym_cmd_identifier_token5] = ACTIONS(1929), - [aux_sym_cmd_identifier_token6] = ACTIONS(1929), - [aux_sym_cmd_identifier_token7] = ACTIONS(1929), - [aux_sym_cmd_identifier_token8] = ACTIONS(1929), - [aux_sym_cmd_identifier_token9] = ACTIONS(1929), - [aux_sym_cmd_identifier_token10] = ACTIONS(1929), - [aux_sym_cmd_identifier_token11] = ACTIONS(1929), - [aux_sym_cmd_identifier_token12] = ACTIONS(1929), - [aux_sym_cmd_identifier_token13] = ACTIONS(1929), - [aux_sym_cmd_identifier_token14] = ACTIONS(1929), - [aux_sym_cmd_identifier_token15] = ACTIONS(1929), - [aux_sym_cmd_identifier_token16] = ACTIONS(1929), - [aux_sym_cmd_identifier_token17] = ACTIONS(1929), - [aux_sym_cmd_identifier_token18] = ACTIONS(1929), - [aux_sym_cmd_identifier_token19] = ACTIONS(1929), - [aux_sym_cmd_identifier_token20] = ACTIONS(1929), - [aux_sym_cmd_identifier_token21] = ACTIONS(1929), - [aux_sym_cmd_identifier_token22] = ACTIONS(1929), - [aux_sym_cmd_identifier_token23] = ACTIONS(1929), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1929), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1929), - [aux_sym_cmd_identifier_token28] = ACTIONS(1929), - [aux_sym_cmd_identifier_token29] = ACTIONS(1929), - [aux_sym_cmd_identifier_token30] = ACTIONS(1929), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1929), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1929), - [anon_sym_export_DASHenv] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [aux_sym_ctrl_match_token1] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_source] = ACTIONS(1929), - [anon_sym_source_DASHenv] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1929), - [anon_sym_hide] = ACTIONS(1929), - [anon_sym_hide_DASHenv] = ACTIONS(1929), - [anon_sym_overlay] = ACTIONS(1929), - [anon_sym_where] = ACTIONS(1931), - [aux_sym_expr_unary_token1] = ACTIONS(1931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [anon_sym_0b] = ACTIONS(1929), - [anon_sym_0o] = ACTIONS(1929), - [anon_sym_0x] = ACTIONS(1929), - [sym_val_date] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [aux_sym_env_var_token1] = ACTIONS(1929), - [anon_sym_CARET] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1856), + [anon_sym_alias] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_let_DASHenv] = ACTIONS(1856), + [anon_sym_mut] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [aux_sym_cmd_identifier_token1] = ACTIONS(1856), + [aux_sym_cmd_identifier_token2] = ACTIONS(1856), + [aux_sym_cmd_identifier_token3] = ACTIONS(1856), + [aux_sym_cmd_identifier_token4] = ACTIONS(1856), + [aux_sym_cmd_identifier_token5] = ACTIONS(1856), + [aux_sym_cmd_identifier_token6] = ACTIONS(1856), + [aux_sym_cmd_identifier_token7] = ACTIONS(1856), + [aux_sym_cmd_identifier_token8] = ACTIONS(1856), + [aux_sym_cmd_identifier_token9] = ACTIONS(1856), + [aux_sym_cmd_identifier_token10] = ACTIONS(1856), + [aux_sym_cmd_identifier_token11] = ACTIONS(1856), + [aux_sym_cmd_identifier_token12] = ACTIONS(1856), + [aux_sym_cmd_identifier_token13] = ACTIONS(1856), + [aux_sym_cmd_identifier_token14] = ACTIONS(1856), + [aux_sym_cmd_identifier_token15] = ACTIONS(1856), + [aux_sym_cmd_identifier_token16] = ACTIONS(1856), + [aux_sym_cmd_identifier_token17] = ACTIONS(1856), + [aux_sym_cmd_identifier_token18] = ACTIONS(1856), + [aux_sym_cmd_identifier_token19] = ACTIONS(1856), + [aux_sym_cmd_identifier_token20] = ACTIONS(1856), + [aux_sym_cmd_identifier_token21] = ACTIONS(1856), + [aux_sym_cmd_identifier_token22] = ACTIONS(1856), + [aux_sym_cmd_identifier_token23] = ACTIONS(1856), + [aux_sym_cmd_identifier_token24] = ACTIONS(1856), + [aux_sym_cmd_identifier_token25] = ACTIONS(1856), + [aux_sym_cmd_identifier_token26] = ACTIONS(1856), + [aux_sym_cmd_identifier_token27] = ACTIONS(1856), + [aux_sym_cmd_identifier_token28] = ACTIONS(1856), + [aux_sym_cmd_identifier_token29] = ACTIONS(1856), + [aux_sym_cmd_identifier_token30] = ACTIONS(1856), + [aux_sym_cmd_identifier_token31] = ACTIONS(1856), + [aux_sym_cmd_identifier_token32] = ACTIONS(1856), + [aux_sym_cmd_identifier_token33] = ACTIONS(1856), + [aux_sym_cmd_identifier_token34] = ACTIONS(1856), + [aux_sym_cmd_identifier_token35] = ACTIONS(1856), + [aux_sym_cmd_identifier_token36] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [anon_sym_null] = ACTIONS(1856), + [aux_sym_cmd_identifier_token38] = ACTIONS(1856), + [aux_sym_cmd_identifier_token39] = ACTIONS(1856), + [aux_sym_cmd_identifier_token40] = ACTIONS(1856), + [anon_sym_def] = ACTIONS(1856), + [anon_sym_export_DASHenv] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym_module] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_DOLLAR] = ACTIONS(1856), + [anon_sym_error] = ACTIONS(1856), + [anon_sym_list] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [anon_sym_loop] = ACTIONS(1856), + [anon_sym_make] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_else] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_try] = ACTIONS(1856), + [anon_sym_catch] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_source] = ACTIONS(1856), + [anon_sym_source_DASHenv] = ACTIONS(1856), + [anon_sym_register] = ACTIONS(1856), + [anon_sym_hide] = ACTIONS(1856), + [anon_sym_hide_DASHenv] = ACTIONS(1856), + [anon_sym_overlay] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_as] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1856), + [aux_sym__val_number_decimal_token1] = ACTIONS(1856), + [aux_sym__val_number_decimal_token2] = ACTIONS(1856), + [aux_sym__val_number_decimal_token3] = ACTIONS(1856), + [aux_sym__val_number_decimal_token4] = ACTIONS(1856), + [aux_sym__val_number_token1] = ACTIONS(1856), + [aux_sym__val_number_token2] = ACTIONS(1856), + [aux_sym__val_number_token3] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym__str_single_quotes] = ACTIONS(1856), + [sym__str_back_ticks] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1856), + [sym__entry_separator] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), }, [332] = { + [sym_cell_path] = STATE(557), + [sym_path] = STATE(527), [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1804), - [anon_sym_DOT_DOT2] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_decimal_token4] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1796), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1860), + [anon_sym_alias] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_let_DASHenv] = ACTIONS(1860), + [anon_sym_mut] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [aux_sym_cmd_identifier_token1] = ACTIONS(1860), + [aux_sym_cmd_identifier_token2] = ACTIONS(1860), + [aux_sym_cmd_identifier_token3] = ACTIONS(1860), + [aux_sym_cmd_identifier_token4] = ACTIONS(1860), + [aux_sym_cmd_identifier_token5] = ACTIONS(1860), + [aux_sym_cmd_identifier_token6] = ACTIONS(1860), + [aux_sym_cmd_identifier_token7] = ACTIONS(1860), + [aux_sym_cmd_identifier_token8] = ACTIONS(1860), + [aux_sym_cmd_identifier_token9] = ACTIONS(1860), + [aux_sym_cmd_identifier_token10] = ACTIONS(1860), + [aux_sym_cmd_identifier_token11] = ACTIONS(1860), + [aux_sym_cmd_identifier_token12] = ACTIONS(1860), + [aux_sym_cmd_identifier_token13] = ACTIONS(1860), + [aux_sym_cmd_identifier_token14] = ACTIONS(1860), + [aux_sym_cmd_identifier_token15] = ACTIONS(1860), + [aux_sym_cmd_identifier_token16] = ACTIONS(1860), + [aux_sym_cmd_identifier_token17] = ACTIONS(1860), + [aux_sym_cmd_identifier_token18] = ACTIONS(1860), + [aux_sym_cmd_identifier_token19] = ACTIONS(1860), + [aux_sym_cmd_identifier_token20] = ACTIONS(1860), + [aux_sym_cmd_identifier_token21] = ACTIONS(1860), + [aux_sym_cmd_identifier_token22] = ACTIONS(1860), + [aux_sym_cmd_identifier_token23] = ACTIONS(1860), + [aux_sym_cmd_identifier_token24] = ACTIONS(1860), + [aux_sym_cmd_identifier_token25] = ACTIONS(1860), + [aux_sym_cmd_identifier_token26] = ACTIONS(1860), + [aux_sym_cmd_identifier_token27] = ACTIONS(1860), + [aux_sym_cmd_identifier_token28] = ACTIONS(1860), + [aux_sym_cmd_identifier_token29] = ACTIONS(1860), + [aux_sym_cmd_identifier_token30] = ACTIONS(1860), + [aux_sym_cmd_identifier_token31] = ACTIONS(1860), + [aux_sym_cmd_identifier_token32] = ACTIONS(1860), + [aux_sym_cmd_identifier_token33] = ACTIONS(1860), + [aux_sym_cmd_identifier_token34] = ACTIONS(1860), + [aux_sym_cmd_identifier_token35] = ACTIONS(1860), + [aux_sym_cmd_identifier_token36] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1860), + [anon_sym_false] = ACTIONS(1860), + [anon_sym_null] = ACTIONS(1860), + [aux_sym_cmd_identifier_token38] = ACTIONS(1860), + [aux_sym_cmd_identifier_token39] = ACTIONS(1860), + [aux_sym_cmd_identifier_token40] = ACTIONS(1860), + [anon_sym_def] = ACTIONS(1860), + [anon_sym_export_DASHenv] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym_module] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [anon_sym_error] = ACTIONS(1860), + [anon_sym_list] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_loop] = ACTIONS(1860), + [anon_sym_make] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_else] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_try] = ACTIONS(1860), + [anon_sym_catch] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_source] = ACTIONS(1860), + [anon_sym_source_DASHenv] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_hide] = ACTIONS(1860), + [anon_sym_hide_DASHenv] = ACTIONS(1860), + [anon_sym_overlay] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1860), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1860), + [aux_sym__val_number_decimal_token1] = ACTIONS(1860), + [aux_sym__val_number_decimal_token2] = ACTIONS(1860), + [aux_sym__val_number_decimal_token3] = ACTIONS(1860), + [aux_sym__val_number_decimal_token4] = ACTIONS(1860), + [aux_sym__val_number_token1] = ACTIONS(1860), + [aux_sym__val_number_token2] = ACTIONS(1860), + [aux_sym__val_number_token3] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [sym__str_single_quotes] = ACTIONS(1860), + [sym__str_back_ticks] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1860), + [sym__entry_separator] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(3), }, [333] = { - [sym_cell_path] = STATE(538), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(566), + [sym_path] = STATE(527), [sym_comment] = STATE(333), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_list] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [sym__entry_separator] = ACTIONS(1939), - [anon_sym_PLUS] = ACTIONS(1937), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_alias] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_let_DASHenv] = ACTIONS(1864), + [anon_sym_mut] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [aux_sym_cmd_identifier_token1] = ACTIONS(1864), + [aux_sym_cmd_identifier_token2] = ACTIONS(1864), + [aux_sym_cmd_identifier_token3] = ACTIONS(1864), + [aux_sym_cmd_identifier_token4] = ACTIONS(1864), + [aux_sym_cmd_identifier_token5] = ACTIONS(1864), + [aux_sym_cmd_identifier_token6] = ACTIONS(1864), + [aux_sym_cmd_identifier_token7] = ACTIONS(1864), + [aux_sym_cmd_identifier_token8] = ACTIONS(1864), + [aux_sym_cmd_identifier_token9] = ACTIONS(1864), + [aux_sym_cmd_identifier_token10] = ACTIONS(1864), + [aux_sym_cmd_identifier_token11] = ACTIONS(1864), + [aux_sym_cmd_identifier_token12] = ACTIONS(1864), + [aux_sym_cmd_identifier_token13] = ACTIONS(1864), + [aux_sym_cmd_identifier_token14] = ACTIONS(1864), + [aux_sym_cmd_identifier_token15] = ACTIONS(1864), + [aux_sym_cmd_identifier_token16] = ACTIONS(1864), + [aux_sym_cmd_identifier_token17] = ACTIONS(1864), + [aux_sym_cmd_identifier_token18] = ACTIONS(1864), + [aux_sym_cmd_identifier_token19] = ACTIONS(1864), + [aux_sym_cmd_identifier_token20] = ACTIONS(1864), + [aux_sym_cmd_identifier_token21] = ACTIONS(1864), + [aux_sym_cmd_identifier_token22] = ACTIONS(1864), + [aux_sym_cmd_identifier_token23] = ACTIONS(1864), + [aux_sym_cmd_identifier_token24] = ACTIONS(1864), + [aux_sym_cmd_identifier_token25] = ACTIONS(1864), + [aux_sym_cmd_identifier_token26] = ACTIONS(1864), + [aux_sym_cmd_identifier_token27] = ACTIONS(1864), + [aux_sym_cmd_identifier_token28] = ACTIONS(1864), + [aux_sym_cmd_identifier_token29] = ACTIONS(1864), + [aux_sym_cmd_identifier_token30] = ACTIONS(1864), + [aux_sym_cmd_identifier_token31] = ACTIONS(1864), + [aux_sym_cmd_identifier_token32] = ACTIONS(1864), + [aux_sym_cmd_identifier_token33] = ACTIONS(1864), + [aux_sym_cmd_identifier_token34] = ACTIONS(1864), + [aux_sym_cmd_identifier_token35] = ACTIONS(1864), + [aux_sym_cmd_identifier_token36] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [anon_sym_null] = ACTIONS(1864), + [aux_sym_cmd_identifier_token38] = ACTIONS(1864), + [aux_sym_cmd_identifier_token39] = ACTIONS(1864), + [aux_sym_cmd_identifier_token40] = ACTIONS(1864), + [anon_sym_def] = ACTIONS(1864), + [anon_sym_export_DASHenv] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1864), + [anon_sym_error] = ACTIONS(1864), + [anon_sym_list] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_make] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1864), + [anon_sym_catch] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_source] = ACTIONS(1864), + [anon_sym_source_DASHenv] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_hide] = ACTIONS(1864), + [anon_sym_hide_DASHenv] = ACTIONS(1864), + [anon_sym_overlay] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1864), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1864), + [aux_sym__val_number_decimal_token1] = ACTIONS(1864), + [aux_sym__val_number_decimal_token2] = ACTIONS(1864), + [aux_sym__val_number_decimal_token3] = ACTIONS(1864), + [aux_sym__val_number_decimal_token4] = ACTIONS(1864), + [aux_sym__val_number_token1] = ACTIONS(1864), + [aux_sym__val_number_token2] = ACTIONS(1864), + [aux_sym__val_number_token3] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [sym__str_single_quotes] = ACTIONS(1864), + [sym__str_back_ticks] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1864), + [sym__entry_separator] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1864), [anon_sym_POUND] = ACTIONS(3), }, [334] = { + [sym_cell_path] = STATE(572), + [sym_path] = STATE(527), [sym_comment] = STATE(334), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1941), - [aux_sym__immediate_decimal_token2] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_alias] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_let_DASHenv] = ACTIONS(1868), + [anon_sym_mut] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [aux_sym_cmd_identifier_token1] = ACTIONS(1868), + [aux_sym_cmd_identifier_token2] = ACTIONS(1868), + [aux_sym_cmd_identifier_token3] = ACTIONS(1868), + [aux_sym_cmd_identifier_token4] = ACTIONS(1868), + [aux_sym_cmd_identifier_token5] = ACTIONS(1868), + [aux_sym_cmd_identifier_token6] = ACTIONS(1868), + [aux_sym_cmd_identifier_token7] = ACTIONS(1868), + [aux_sym_cmd_identifier_token8] = ACTIONS(1868), + [aux_sym_cmd_identifier_token9] = ACTIONS(1868), + [aux_sym_cmd_identifier_token10] = ACTIONS(1868), + [aux_sym_cmd_identifier_token11] = ACTIONS(1868), + [aux_sym_cmd_identifier_token12] = ACTIONS(1868), + [aux_sym_cmd_identifier_token13] = ACTIONS(1868), + [aux_sym_cmd_identifier_token14] = ACTIONS(1868), + [aux_sym_cmd_identifier_token15] = ACTIONS(1868), + [aux_sym_cmd_identifier_token16] = ACTIONS(1868), + [aux_sym_cmd_identifier_token17] = ACTIONS(1868), + [aux_sym_cmd_identifier_token18] = ACTIONS(1868), + [aux_sym_cmd_identifier_token19] = ACTIONS(1868), + [aux_sym_cmd_identifier_token20] = ACTIONS(1868), + [aux_sym_cmd_identifier_token21] = ACTIONS(1868), + [aux_sym_cmd_identifier_token22] = ACTIONS(1868), + [aux_sym_cmd_identifier_token23] = ACTIONS(1868), + [aux_sym_cmd_identifier_token24] = ACTIONS(1868), + [aux_sym_cmd_identifier_token25] = ACTIONS(1868), + [aux_sym_cmd_identifier_token26] = ACTIONS(1868), + [aux_sym_cmd_identifier_token27] = ACTIONS(1868), + [aux_sym_cmd_identifier_token28] = ACTIONS(1868), + [aux_sym_cmd_identifier_token29] = ACTIONS(1868), + [aux_sym_cmd_identifier_token30] = ACTIONS(1868), + [aux_sym_cmd_identifier_token31] = ACTIONS(1868), + [aux_sym_cmd_identifier_token32] = ACTIONS(1868), + [aux_sym_cmd_identifier_token33] = ACTIONS(1868), + [aux_sym_cmd_identifier_token34] = ACTIONS(1868), + [aux_sym_cmd_identifier_token35] = ACTIONS(1868), + [aux_sym_cmd_identifier_token36] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1868), + [aux_sym_cmd_identifier_token38] = ACTIONS(1868), + [aux_sym_cmd_identifier_token39] = ACTIONS(1868), + [aux_sym_cmd_identifier_token40] = ACTIONS(1868), + [anon_sym_def] = ACTIONS(1868), + [anon_sym_export_DASHenv] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_use] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_error] = ACTIONS(1868), + [anon_sym_list] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_loop] = ACTIONS(1868), + [anon_sym_make] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_catch] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_source] = ACTIONS(1868), + [anon_sym_source_DASHenv] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_hide] = ACTIONS(1868), + [anon_sym_hide_DASHenv] = ACTIONS(1868), + [anon_sym_overlay] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_as] = ACTIONS(1868), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1868), + [aux_sym__val_number_decimal_token1] = ACTIONS(1868), + [aux_sym__val_number_decimal_token2] = ACTIONS(1868), + [aux_sym__val_number_decimal_token3] = ACTIONS(1868), + [aux_sym__val_number_decimal_token4] = ACTIONS(1868), + [aux_sym__val_number_token1] = ACTIONS(1868), + [aux_sym__val_number_token2] = ACTIONS(1868), + [aux_sym__val_number_token3] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [sym__str_single_quotes] = ACTIONS(1868), + [sym__str_back_ticks] = ACTIONS(1868), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1868), + [sym__entry_separator] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [335] = { - [sym_cell_path] = STATE(539), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(573), + [sym_path] = STATE(527), [sym_comment] = STATE(335), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_list] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [sym__entry_separator] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1945), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1872), + [anon_sym_false] = ACTIONS(1872), + [anon_sym_null] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_list] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, [336] = { - [sym_cell_path] = STATE(548), - [sym_path] = STATE(482), + [sym_cell_path] = STATE(574), + [sym_path] = STATE(527), [sym_comment] = STATE(336), - [aux_sym_cell_path_repeat1] = STATE(381), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1876), + [anon_sym_alias] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_let_DASHenv] = ACTIONS(1876), + [anon_sym_mut] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [aux_sym_cmd_identifier_token1] = ACTIONS(1876), + [aux_sym_cmd_identifier_token2] = ACTIONS(1876), + [aux_sym_cmd_identifier_token3] = ACTIONS(1876), + [aux_sym_cmd_identifier_token4] = ACTIONS(1876), + [aux_sym_cmd_identifier_token5] = ACTIONS(1876), + [aux_sym_cmd_identifier_token6] = ACTIONS(1876), + [aux_sym_cmd_identifier_token7] = ACTIONS(1876), + [aux_sym_cmd_identifier_token8] = ACTIONS(1876), + [aux_sym_cmd_identifier_token9] = ACTIONS(1876), + [aux_sym_cmd_identifier_token10] = ACTIONS(1876), + [aux_sym_cmd_identifier_token11] = ACTIONS(1876), + [aux_sym_cmd_identifier_token12] = ACTIONS(1876), + [aux_sym_cmd_identifier_token13] = ACTIONS(1876), + [aux_sym_cmd_identifier_token14] = ACTIONS(1876), + [aux_sym_cmd_identifier_token15] = ACTIONS(1876), + [aux_sym_cmd_identifier_token16] = ACTIONS(1876), + [aux_sym_cmd_identifier_token17] = ACTIONS(1876), + [aux_sym_cmd_identifier_token18] = ACTIONS(1876), + [aux_sym_cmd_identifier_token19] = ACTIONS(1876), + [aux_sym_cmd_identifier_token20] = ACTIONS(1876), + [aux_sym_cmd_identifier_token21] = ACTIONS(1876), + [aux_sym_cmd_identifier_token22] = ACTIONS(1876), + [aux_sym_cmd_identifier_token23] = ACTIONS(1876), + [aux_sym_cmd_identifier_token24] = ACTIONS(1876), + [aux_sym_cmd_identifier_token25] = ACTIONS(1876), + [aux_sym_cmd_identifier_token26] = ACTIONS(1876), + [aux_sym_cmd_identifier_token27] = ACTIONS(1876), + [aux_sym_cmd_identifier_token28] = ACTIONS(1876), + [aux_sym_cmd_identifier_token29] = ACTIONS(1876), + [aux_sym_cmd_identifier_token30] = ACTIONS(1876), + [aux_sym_cmd_identifier_token31] = ACTIONS(1876), + [aux_sym_cmd_identifier_token32] = ACTIONS(1876), + [aux_sym_cmd_identifier_token33] = ACTIONS(1876), + [aux_sym_cmd_identifier_token34] = ACTIONS(1876), + [aux_sym_cmd_identifier_token35] = ACTIONS(1876), + [aux_sym_cmd_identifier_token36] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1876), + [anon_sym_false] = ACTIONS(1876), + [anon_sym_null] = ACTIONS(1876), + [aux_sym_cmd_identifier_token38] = ACTIONS(1876), + [aux_sym_cmd_identifier_token39] = ACTIONS(1876), + [aux_sym_cmd_identifier_token40] = ACTIONS(1876), + [anon_sym_def] = ACTIONS(1876), + [anon_sym_export_DASHenv] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_module] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_error] = ACTIONS(1876), + [anon_sym_list] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_make] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_else] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_try] = ACTIONS(1876), + [anon_sym_catch] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_source] = ACTIONS(1876), + [anon_sym_source_DASHenv] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_hide] = ACTIONS(1876), + [anon_sym_hide_DASHenv] = ACTIONS(1876), + [anon_sym_overlay] = ACTIONS(1876), + [anon_sym_new] = ACTIONS(1876), + [anon_sym_as] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1876), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1876), + [aux_sym__val_number_decimal_token1] = ACTIONS(1876), + [aux_sym__val_number_decimal_token2] = ACTIONS(1876), + [aux_sym__val_number_decimal_token3] = ACTIONS(1876), + [aux_sym__val_number_decimal_token4] = ACTIONS(1876), + [aux_sym__val_number_token1] = ACTIONS(1876), + [aux_sym__val_number_token2] = ACTIONS(1876), + [aux_sym__val_number_token3] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [sym__str_single_quotes] = ACTIONS(1876), + [sym__str_back_ticks] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1876), + [sym__entry_separator] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [337] = { + [sym_cell_path] = STATE(575), + [sym_path] = STATE(527), + [sym_comment] = STATE(337), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_alias] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_let_DASHenv] = ACTIONS(1880), + [anon_sym_mut] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [aux_sym_cmd_identifier_token1] = ACTIONS(1880), + [aux_sym_cmd_identifier_token2] = ACTIONS(1880), + [aux_sym_cmd_identifier_token3] = ACTIONS(1880), + [aux_sym_cmd_identifier_token4] = ACTIONS(1880), + [aux_sym_cmd_identifier_token5] = ACTIONS(1880), + [aux_sym_cmd_identifier_token6] = ACTIONS(1880), + [aux_sym_cmd_identifier_token7] = ACTIONS(1880), + [aux_sym_cmd_identifier_token8] = ACTIONS(1880), + [aux_sym_cmd_identifier_token9] = ACTIONS(1880), + [aux_sym_cmd_identifier_token10] = ACTIONS(1880), + [aux_sym_cmd_identifier_token11] = ACTIONS(1880), + [aux_sym_cmd_identifier_token12] = ACTIONS(1880), + [aux_sym_cmd_identifier_token13] = ACTIONS(1880), + [aux_sym_cmd_identifier_token14] = ACTIONS(1880), + [aux_sym_cmd_identifier_token15] = ACTIONS(1880), + [aux_sym_cmd_identifier_token16] = ACTIONS(1880), + [aux_sym_cmd_identifier_token17] = ACTIONS(1880), + [aux_sym_cmd_identifier_token18] = ACTIONS(1880), + [aux_sym_cmd_identifier_token19] = ACTIONS(1880), + [aux_sym_cmd_identifier_token20] = ACTIONS(1880), + [aux_sym_cmd_identifier_token21] = ACTIONS(1880), + [aux_sym_cmd_identifier_token22] = ACTIONS(1880), + [aux_sym_cmd_identifier_token23] = ACTIONS(1880), + [aux_sym_cmd_identifier_token24] = ACTIONS(1880), + [aux_sym_cmd_identifier_token25] = ACTIONS(1880), + [aux_sym_cmd_identifier_token26] = ACTIONS(1880), + [aux_sym_cmd_identifier_token27] = ACTIONS(1880), + [aux_sym_cmd_identifier_token28] = ACTIONS(1880), + [aux_sym_cmd_identifier_token29] = ACTIONS(1880), + [aux_sym_cmd_identifier_token30] = ACTIONS(1880), + [aux_sym_cmd_identifier_token31] = ACTIONS(1880), + [aux_sym_cmd_identifier_token32] = ACTIONS(1880), + [aux_sym_cmd_identifier_token33] = ACTIONS(1880), + [aux_sym_cmd_identifier_token34] = ACTIONS(1880), + [aux_sym_cmd_identifier_token35] = ACTIONS(1880), + [aux_sym_cmd_identifier_token36] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1880), + [anon_sym_false] = ACTIONS(1880), + [anon_sym_null] = ACTIONS(1880), + [aux_sym_cmd_identifier_token38] = ACTIONS(1880), + [aux_sym_cmd_identifier_token39] = ACTIONS(1880), + [aux_sym_cmd_identifier_token40] = ACTIONS(1880), + [anon_sym_def] = ACTIONS(1880), + [anon_sym_export_DASHenv] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_DOLLAR] = ACTIONS(1880), + [anon_sym_error] = ACTIONS(1880), + [anon_sym_list] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_make] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_source] = ACTIONS(1880), + [anon_sym_source_DASHenv] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_hide] = ACTIONS(1880), + [anon_sym_hide_DASHenv] = ACTIONS(1880), + [anon_sym_overlay] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1880), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1880), + [aux_sym__val_number_decimal_token3] = ACTIONS(1880), + [aux_sym__val_number_decimal_token4] = ACTIONS(1880), + [aux_sym__val_number_token1] = ACTIONS(1880), + [aux_sym__val_number_token2] = ACTIONS(1880), + [aux_sym__val_number_token3] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1880), + [sym__str_single_quotes] = ACTIONS(1880), + [sym__str_back_ticks] = ACTIONS(1880), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1880), + [sym__entry_separator] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(3), + }, + [338] = { + [sym_cell_path] = STATE(577), + [sym_path] = STATE(527), + [sym_comment] = STATE(338), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1884), + [anon_sym_alias] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_let_DASHenv] = ACTIONS(1884), + [anon_sym_mut] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [aux_sym_cmd_identifier_token1] = ACTIONS(1884), + [aux_sym_cmd_identifier_token2] = ACTIONS(1884), + [aux_sym_cmd_identifier_token3] = ACTIONS(1884), + [aux_sym_cmd_identifier_token4] = ACTIONS(1884), + [aux_sym_cmd_identifier_token5] = ACTIONS(1884), + [aux_sym_cmd_identifier_token6] = ACTIONS(1884), + [aux_sym_cmd_identifier_token7] = ACTIONS(1884), + [aux_sym_cmd_identifier_token8] = ACTIONS(1884), + [aux_sym_cmd_identifier_token9] = ACTIONS(1884), + [aux_sym_cmd_identifier_token10] = ACTIONS(1884), + [aux_sym_cmd_identifier_token11] = ACTIONS(1884), + [aux_sym_cmd_identifier_token12] = ACTIONS(1884), + [aux_sym_cmd_identifier_token13] = ACTIONS(1884), + [aux_sym_cmd_identifier_token14] = ACTIONS(1884), + [aux_sym_cmd_identifier_token15] = ACTIONS(1884), + [aux_sym_cmd_identifier_token16] = ACTIONS(1884), + [aux_sym_cmd_identifier_token17] = ACTIONS(1884), + [aux_sym_cmd_identifier_token18] = ACTIONS(1884), + [aux_sym_cmd_identifier_token19] = ACTIONS(1884), + [aux_sym_cmd_identifier_token20] = ACTIONS(1884), + [aux_sym_cmd_identifier_token21] = ACTIONS(1884), + [aux_sym_cmd_identifier_token22] = ACTIONS(1884), + [aux_sym_cmd_identifier_token23] = ACTIONS(1884), + [aux_sym_cmd_identifier_token24] = ACTIONS(1884), + [aux_sym_cmd_identifier_token25] = ACTIONS(1884), + [aux_sym_cmd_identifier_token26] = ACTIONS(1884), + [aux_sym_cmd_identifier_token27] = ACTIONS(1884), + [aux_sym_cmd_identifier_token28] = ACTIONS(1884), + [aux_sym_cmd_identifier_token29] = ACTIONS(1884), + [aux_sym_cmd_identifier_token30] = ACTIONS(1884), + [aux_sym_cmd_identifier_token31] = ACTIONS(1884), + [aux_sym_cmd_identifier_token32] = ACTIONS(1884), + [aux_sym_cmd_identifier_token33] = ACTIONS(1884), + [aux_sym_cmd_identifier_token34] = ACTIONS(1884), + [aux_sym_cmd_identifier_token35] = ACTIONS(1884), + [aux_sym_cmd_identifier_token36] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_null] = ACTIONS(1884), + [aux_sym_cmd_identifier_token38] = ACTIONS(1884), + [aux_sym_cmd_identifier_token39] = ACTIONS(1884), + [aux_sym_cmd_identifier_token40] = ACTIONS(1884), + [anon_sym_def] = ACTIONS(1884), + [anon_sym_export_DASHenv] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_use] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_error] = ACTIONS(1884), + [anon_sym_list] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_loop] = ACTIONS(1884), + [anon_sym_make] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1884), + [anon_sym_catch] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_source] = ACTIONS(1884), + [anon_sym_source_DASHenv] = ACTIONS(1884), + [anon_sym_register] = ACTIONS(1884), + [anon_sym_hide] = ACTIONS(1884), + [anon_sym_hide_DASHenv] = ACTIONS(1884), + [anon_sym_overlay] = ACTIONS(1884), + [anon_sym_new] = ACTIONS(1884), + [anon_sym_as] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1884), + [aux_sym__val_number_decimal_token1] = ACTIONS(1884), + [aux_sym__val_number_decimal_token2] = ACTIONS(1884), + [aux_sym__val_number_decimal_token3] = ACTIONS(1884), + [aux_sym__val_number_decimal_token4] = ACTIONS(1884), + [aux_sym__val_number_token1] = ACTIONS(1884), + [aux_sym__val_number_token2] = ACTIONS(1884), + [aux_sym__val_number_token3] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym__str_single_quotes] = ACTIONS(1884), + [sym__str_back_ticks] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1884), + [sym__entry_separator] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(3), + }, + [339] = { + [sym_cell_path] = STATE(579), + [sym_path] = STATE(527), + [sym_comment] = STATE(339), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1888), + [anon_sym_alias] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_let_DASHenv] = ACTIONS(1888), + [anon_sym_mut] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [aux_sym_cmd_identifier_token1] = ACTIONS(1888), + [aux_sym_cmd_identifier_token2] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [aux_sym_cmd_identifier_token6] = ACTIONS(1888), + [aux_sym_cmd_identifier_token7] = ACTIONS(1888), + [aux_sym_cmd_identifier_token8] = ACTIONS(1888), + [aux_sym_cmd_identifier_token9] = ACTIONS(1888), + [aux_sym_cmd_identifier_token10] = ACTIONS(1888), + [aux_sym_cmd_identifier_token11] = ACTIONS(1888), + [aux_sym_cmd_identifier_token12] = ACTIONS(1888), + [aux_sym_cmd_identifier_token13] = ACTIONS(1888), + [aux_sym_cmd_identifier_token14] = ACTIONS(1888), + [aux_sym_cmd_identifier_token15] = ACTIONS(1888), + [aux_sym_cmd_identifier_token16] = ACTIONS(1888), + [aux_sym_cmd_identifier_token17] = ACTIONS(1888), + [aux_sym_cmd_identifier_token18] = ACTIONS(1888), + [aux_sym_cmd_identifier_token19] = ACTIONS(1888), + [aux_sym_cmd_identifier_token20] = ACTIONS(1888), + [aux_sym_cmd_identifier_token21] = ACTIONS(1888), + [aux_sym_cmd_identifier_token22] = ACTIONS(1888), + [aux_sym_cmd_identifier_token23] = ACTIONS(1888), + [aux_sym_cmd_identifier_token24] = ACTIONS(1888), + [aux_sym_cmd_identifier_token25] = ACTIONS(1888), + [aux_sym_cmd_identifier_token26] = ACTIONS(1888), + [aux_sym_cmd_identifier_token27] = ACTIONS(1888), + [aux_sym_cmd_identifier_token28] = ACTIONS(1888), + [aux_sym_cmd_identifier_token29] = ACTIONS(1888), + [aux_sym_cmd_identifier_token30] = ACTIONS(1888), + [aux_sym_cmd_identifier_token31] = ACTIONS(1888), + [aux_sym_cmd_identifier_token32] = ACTIONS(1888), + [aux_sym_cmd_identifier_token33] = ACTIONS(1888), + [aux_sym_cmd_identifier_token34] = ACTIONS(1888), + [aux_sym_cmd_identifier_token35] = ACTIONS(1888), + [aux_sym_cmd_identifier_token36] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [aux_sym_cmd_identifier_token38] = ACTIONS(1888), + [aux_sym_cmd_identifier_token39] = ACTIONS(1888), + [aux_sym_cmd_identifier_token40] = ACTIONS(1888), + [anon_sym_def] = ACTIONS(1888), + [anon_sym_export_DASHenv] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_module] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_error] = ACTIONS(1888), + [anon_sym_list] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_make] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_try] = ACTIONS(1888), + [anon_sym_catch] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_source] = ACTIONS(1888), + [anon_sym_source_DASHenv] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_hide] = ACTIONS(1888), + [anon_sym_hide_DASHenv] = ACTIONS(1888), + [anon_sym_overlay] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1888), + [anon_sym_as] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1888), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1888), + [sym__entry_separator] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + }, + [340] = { + [sym_cell_path] = STATE(580), + [sym_path] = STATE(527), + [sym_comment] = STATE(340), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1892), + [anon_sym_alias] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_let_DASHenv] = ACTIONS(1892), + [anon_sym_mut] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [aux_sym_cmd_identifier_token1] = ACTIONS(1892), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1892), + [aux_sym_cmd_identifier_token9] = ACTIONS(1892), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1892), + [aux_sym_cmd_identifier_token13] = ACTIONS(1892), + [aux_sym_cmd_identifier_token14] = ACTIONS(1892), + [aux_sym_cmd_identifier_token15] = ACTIONS(1892), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1892), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1892), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1892), + [anon_sym_export_DASHenv] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_module] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1892), + [anon_sym_list] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_make] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1892), + [anon_sym_catch] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_source] = ACTIONS(1892), + [anon_sym_source_DASHenv] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_hide] = ACTIONS(1892), + [anon_sym_hide_DASHenv] = ACTIONS(1892), + [anon_sym_overlay] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1892), + [anon_sym_as] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1892), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [sym__entry_separator] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(3), + }, + [341] = { + [sym_cell_path] = STATE(581), + [sym_path] = STATE(527), + [sym_comment] = STATE(341), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1896), + [anon_sym_alias] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_let_DASHenv] = ACTIONS(1896), + [anon_sym_mut] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [aux_sym_cmd_identifier_token1] = ACTIONS(1896), + [aux_sym_cmd_identifier_token2] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [aux_sym_cmd_identifier_token6] = ACTIONS(1896), + [aux_sym_cmd_identifier_token7] = ACTIONS(1896), + [aux_sym_cmd_identifier_token8] = ACTIONS(1896), + [aux_sym_cmd_identifier_token9] = ACTIONS(1896), + [aux_sym_cmd_identifier_token10] = ACTIONS(1896), + [aux_sym_cmd_identifier_token11] = ACTIONS(1896), + [aux_sym_cmd_identifier_token12] = ACTIONS(1896), + [aux_sym_cmd_identifier_token13] = ACTIONS(1896), + [aux_sym_cmd_identifier_token14] = ACTIONS(1896), + [aux_sym_cmd_identifier_token15] = ACTIONS(1896), + [aux_sym_cmd_identifier_token16] = ACTIONS(1896), + [aux_sym_cmd_identifier_token17] = ACTIONS(1896), + [aux_sym_cmd_identifier_token18] = ACTIONS(1896), + [aux_sym_cmd_identifier_token19] = ACTIONS(1896), + [aux_sym_cmd_identifier_token20] = ACTIONS(1896), + [aux_sym_cmd_identifier_token21] = ACTIONS(1896), + [aux_sym_cmd_identifier_token22] = ACTIONS(1896), + [aux_sym_cmd_identifier_token23] = ACTIONS(1896), + [aux_sym_cmd_identifier_token24] = ACTIONS(1896), + [aux_sym_cmd_identifier_token25] = ACTIONS(1896), + [aux_sym_cmd_identifier_token26] = ACTIONS(1896), + [aux_sym_cmd_identifier_token27] = ACTIONS(1896), + [aux_sym_cmd_identifier_token28] = ACTIONS(1896), + [aux_sym_cmd_identifier_token29] = ACTIONS(1896), + [aux_sym_cmd_identifier_token30] = ACTIONS(1896), + [aux_sym_cmd_identifier_token31] = ACTIONS(1896), + [aux_sym_cmd_identifier_token32] = ACTIONS(1896), + [aux_sym_cmd_identifier_token33] = ACTIONS(1896), + [aux_sym_cmd_identifier_token34] = ACTIONS(1896), + [aux_sym_cmd_identifier_token35] = ACTIONS(1896), + [aux_sym_cmd_identifier_token36] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token38] = ACTIONS(1896), + [aux_sym_cmd_identifier_token39] = ACTIONS(1896), + [aux_sym_cmd_identifier_token40] = ACTIONS(1896), + [anon_sym_def] = ACTIONS(1896), + [anon_sym_export_DASHenv] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_module] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_error] = ACTIONS(1896), + [anon_sym_list] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_in] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_make] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_else] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_try] = ACTIONS(1896), + [anon_sym_catch] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_source] = ACTIONS(1896), + [anon_sym_source_DASHenv] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_hide] = ACTIONS(1896), + [anon_sym_hide_DASHenv] = ACTIONS(1896), + [anon_sym_overlay] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1896), + [anon_sym_as] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), + [aux_sym__val_number_decimal_token1] = ACTIONS(1896), + [aux_sym__val_number_decimal_token2] = ACTIONS(1896), + [aux_sym__val_number_decimal_token3] = ACTIONS(1896), + [aux_sym__val_number_decimal_token4] = ACTIONS(1896), + [aux_sym__val_number_token1] = ACTIONS(1896), + [aux_sym__val_number_token2] = ACTIONS(1896), + [aux_sym__val_number_token3] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__str_single_quotes] = ACTIONS(1896), + [sym__str_back_ticks] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), + [sym__entry_separator] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(3), + }, + [342] = { + [sym_cell_path] = STATE(582), + [sym_path] = STATE(527), + [sym_comment] = STATE(342), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1900), + [anon_sym_alias] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_let_DASHenv] = ACTIONS(1900), + [anon_sym_mut] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [aux_sym_cmd_identifier_token1] = ACTIONS(1900), + [aux_sym_cmd_identifier_token2] = ACTIONS(1900), + [aux_sym_cmd_identifier_token3] = ACTIONS(1900), + [aux_sym_cmd_identifier_token4] = ACTIONS(1900), + [aux_sym_cmd_identifier_token5] = ACTIONS(1900), + [aux_sym_cmd_identifier_token6] = ACTIONS(1900), + [aux_sym_cmd_identifier_token7] = ACTIONS(1900), + [aux_sym_cmd_identifier_token8] = ACTIONS(1900), + [aux_sym_cmd_identifier_token9] = ACTIONS(1900), + [aux_sym_cmd_identifier_token10] = ACTIONS(1900), + [aux_sym_cmd_identifier_token11] = ACTIONS(1900), + [aux_sym_cmd_identifier_token12] = ACTIONS(1900), + [aux_sym_cmd_identifier_token13] = ACTIONS(1900), + [aux_sym_cmd_identifier_token14] = ACTIONS(1900), + [aux_sym_cmd_identifier_token15] = ACTIONS(1900), + [aux_sym_cmd_identifier_token16] = ACTIONS(1900), + [aux_sym_cmd_identifier_token17] = ACTIONS(1900), + [aux_sym_cmd_identifier_token18] = ACTIONS(1900), + [aux_sym_cmd_identifier_token19] = ACTIONS(1900), + [aux_sym_cmd_identifier_token20] = ACTIONS(1900), + [aux_sym_cmd_identifier_token21] = ACTIONS(1900), + [aux_sym_cmd_identifier_token22] = ACTIONS(1900), + [aux_sym_cmd_identifier_token23] = ACTIONS(1900), + [aux_sym_cmd_identifier_token24] = ACTIONS(1900), + [aux_sym_cmd_identifier_token25] = ACTIONS(1900), + [aux_sym_cmd_identifier_token26] = ACTIONS(1900), + [aux_sym_cmd_identifier_token27] = ACTIONS(1900), + [aux_sym_cmd_identifier_token28] = ACTIONS(1900), + [aux_sym_cmd_identifier_token29] = ACTIONS(1900), + [aux_sym_cmd_identifier_token30] = ACTIONS(1900), + [aux_sym_cmd_identifier_token31] = ACTIONS(1900), + [aux_sym_cmd_identifier_token32] = ACTIONS(1900), + [aux_sym_cmd_identifier_token33] = ACTIONS(1900), + [aux_sym_cmd_identifier_token34] = ACTIONS(1900), + [aux_sym_cmd_identifier_token35] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1900), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [anon_sym_def] = ACTIONS(1900), + [anon_sym_export_DASHenv] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_module] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_error] = ACTIONS(1900), + [anon_sym_list] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_make] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_else] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_try] = ACTIONS(1900), + [anon_sym_catch] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_source] = ACTIONS(1900), + [anon_sym_source_DASHenv] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_hide] = ACTIONS(1900), + [anon_sym_hide_DASHenv] = ACTIONS(1900), + [anon_sym_overlay] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1900), + [anon_sym_as] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1900), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1900), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1900), + [sym__entry_separator] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(3), + }, + [343] = { + [sym_cell_path] = STATE(585), + [sym_path] = STATE(527), + [sym_comment] = STATE(343), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1904), + [anon_sym_alias] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_let_DASHenv] = ACTIONS(1904), + [anon_sym_mut] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [aux_sym_cmd_identifier_token1] = ACTIONS(1904), + [aux_sym_cmd_identifier_token2] = ACTIONS(1904), + [aux_sym_cmd_identifier_token3] = ACTIONS(1904), + [aux_sym_cmd_identifier_token4] = ACTIONS(1904), + [aux_sym_cmd_identifier_token5] = ACTIONS(1904), + [aux_sym_cmd_identifier_token6] = ACTIONS(1904), + [aux_sym_cmd_identifier_token7] = ACTIONS(1904), + [aux_sym_cmd_identifier_token8] = ACTIONS(1904), + [aux_sym_cmd_identifier_token9] = ACTIONS(1904), + [aux_sym_cmd_identifier_token10] = ACTIONS(1904), + [aux_sym_cmd_identifier_token11] = ACTIONS(1904), + [aux_sym_cmd_identifier_token12] = ACTIONS(1904), + [aux_sym_cmd_identifier_token13] = ACTIONS(1904), + [aux_sym_cmd_identifier_token14] = ACTIONS(1904), + [aux_sym_cmd_identifier_token15] = ACTIONS(1904), + [aux_sym_cmd_identifier_token16] = ACTIONS(1904), + [aux_sym_cmd_identifier_token17] = ACTIONS(1904), + [aux_sym_cmd_identifier_token18] = ACTIONS(1904), + [aux_sym_cmd_identifier_token19] = ACTIONS(1904), + [aux_sym_cmd_identifier_token20] = ACTIONS(1904), + [aux_sym_cmd_identifier_token21] = ACTIONS(1904), + [aux_sym_cmd_identifier_token22] = ACTIONS(1904), + [aux_sym_cmd_identifier_token23] = ACTIONS(1904), + [aux_sym_cmd_identifier_token24] = ACTIONS(1904), + [aux_sym_cmd_identifier_token25] = ACTIONS(1904), + [aux_sym_cmd_identifier_token26] = ACTIONS(1904), + [aux_sym_cmd_identifier_token27] = ACTIONS(1904), + [aux_sym_cmd_identifier_token28] = ACTIONS(1904), + [aux_sym_cmd_identifier_token29] = ACTIONS(1904), + [aux_sym_cmd_identifier_token30] = ACTIONS(1904), + [aux_sym_cmd_identifier_token31] = ACTIONS(1904), + [aux_sym_cmd_identifier_token32] = ACTIONS(1904), + [aux_sym_cmd_identifier_token33] = ACTIONS(1904), + [aux_sym_cmd_identifier_token34] = ACTIONS(1904), + [aux_sym_cmd_identifier_token35] = ACTIONS(1904), + [aux_sym_cmd_identifier_token36] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1904), + [aux_sym_cmd_identifier_token38] = ACTIONS(1904), + [aux_sym_cmd_identifier_token39] = ACTIONS(1904), + [aux_sym_cmd_identifier_token40] = ACTIONS(1904), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_export_DASHenv] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_module] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_error] = ACTIONS(1904), + [anon_sym_list] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_make] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_try] = ACTIONS(1904), + [anon_sym_catch] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_source] = ACTIONS(1904), + [anon_sym_source_DASHenv] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_hide] = ACTIONS(1904), + [anon_sym_hide_DASHenv] = ACTIONS(1904), + [anon_sym_overlay] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1904), + [aux_sym__val_number_decimal_token3] = ACTIONS(1904), + [aux_sym__val_number_decimal_token4] = ACTIONS(1904), + [aux_sym__val_number_token1] = ACTIONS(1904), + [aux_sym__val_number_token2] = ACTIONS(1904), + [aux_sym__val_number_token3] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1904), + [sym__str_single_quotes] = ACTIONS(1904), + [sym__str_back_ticks] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1904), + [sym__entry_separator] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(3), + }, + [344] = { + [sym_comment] = STATE(344), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1908), + [aux_sym__immediate_decimal_token2] = ACTIONS(1910), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [345] = { + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [346] = { + [sym_cell_path] = STATE(523), + [sym_path] = STATE(527), + [sym_comment] = STATE(346), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1912), + [anon_sym_alias] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_let_DASHenv] = ACTIONS(1912), + [anon_sym_mut] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [aux_sym_cmd_identifier_token1] = ACTIONS(1912), + [aux_sym_cmd_identifier_token2] = ACTIONS(1912), + [aux_sym_cmd_identifier_token3] = ACTIONS(1912), + [aux_sym_cmd_identifier_token4] = ACTIONS(1912), + [aux_sym_cmd_identifier_token5] = ACTIONS(1912), + [aux_sym_cmd_identifier_token6] = ACTIONS(1912), + [aux_sym_cmd_identifier_token7] = ACTIONS(1912), + [aux_sym_cmd_identifier_token8] = ACTIONS(1912), + [aux_sym_cmd_identifier_token9] = ACTIONS(1912), + [aux_sym_cmd_identifier_token10] = ACTIONS(1912), + [aux_sym_cmd_identifier_token11] = ACTIONS(1912), + [aux_sym_cmd_identifier_token12] = ACTIONS(1912), + [aux_sym_cmd_identifier_token13] = ACTIONS(1912), + [aux_sym_cmd_identifier_token14] = ACTIONS(1912), + [aux_sym_cmd_identifier_token15] = ACTIONS(1912), + [aux_sym_cmd_identifier_token16] = ACTIONS(1912), + [aux_sym_cmd_identifier_token17] = ACTIONS(1912), + [aux_sym_cmd_identifier_token18] = ACTIONS(1912), + [aux_sym_cmd_identifier_token19] = ACTIONS(1912), + [aux_sym_cmd_identifier_token20] = ACTIONS(1912), + [aux_sym_cmd_identifier_token21] = ACTIONS(1912), + [aux_sym_cmd_identifier_token22] = ACTIONS(1912), + [aux_sym_cmd_identifier_token23] = ACTIONS(1912), + [aux_sym_cmd_identifier_token24] = ACTIONS(1912), + [aux_sym_cmd_identifier_token25] = ACTIONS(1912), + [aux_sym_cmd_identifier_token26] = ACTIONS(1912), + [aux_sym_cmd_identifier_token27] = ACTIONS(1912), + [aux_sym_cmd_identifier_token28] = ACTIONS(1912), + [aux_sym_cmd_identifier_token29] = ACTIONS(1912), + [aux_sym_cmd_identifier_token30] = ACTIONS(1912), + [aux_sym_cmd_identifier_token31] = ACTIONS(1912), + [aux_sym_cmd_identifier_token32] = ACTIONS(1912), + [aux_sym_cmd_identifier_token33] = ACTIONS(1912), + [aux_sym_cmd_identifier_token34] = ACTIONS(1912), + [aux_sym_cmd_identifier_token35] = ACTIONS(1912), + [aux_sym_cmd_identifier_token36] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [anon_sym_null] = ACTIONS(1912), + [aux_sym_cmd_identifier_token38] = ACTIONS(1912), + [aux_sym_cmd_identifier_token39] = ACTIONS(1912), + [aux_sym_cmd_identifier_token40] = ACTIONS(1912), + [anon_sym_def] = ACTIONS(1912), + [anon_sym_export_DASHenv] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_module] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1912), + [anon_sym_error] = ACTIONS(1912), + [anon_sym_list] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_make] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_else] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(1912), + [anon_sym_catch] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_source] = ACTIONS(1912), + [anon_sym_source_DASHenv] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_hide] = ACTIONS(1912), + [anon_sym_hide_DASHenv] = ACTIONS(1912), + [anon_sym_overlay] = ACTIONS(1912), + [anon_sym_new] = ACTIONS(1912), + [anon_sym_as] = ACTIONS(1912), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1912), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1912), + [aux_sym__val_number_decimal_token1] = ACTIONS(1912), + [aux_sym__val_number_decimal_token2] = ACTIONS(1912), + [aux_sym__val_number_decimal_token3] = ACTIONS(1912), + [aux_sym__val_number_decimal_token4] = ACTIONS(1912), + [aux_sym__val_number_token1] = ACTIONS(1912), + [aux_sym__val_number_token2] = ACTIONS(1912), + [aux_sym__val_number_token3] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym__str_single_quotes] = ACTIONS(1912), + [sym__str_back_ticks] = ACTIONS(1912), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1912), + [sym__entry_separator] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + }, + [347] = { + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(1916), + [aux_sym__immediate_decimal_token2] = ACTIONS(1918), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, + [348] = { + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1920), + [anon_sym_alias] = ACTIONS(1920), + [anon_sym_let] = ACTIONS(1920), + [anon_sym_let_DASHenv] = ACTIONS(1920), + [anon_sym_mut] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [aux_sym_cmd_identifier_token1] = ACTIONS(1920), + [aux_sym_cmd_identifier_token2] = ACTIONS(1920), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [aux_sym_cmd_identifier_token6] = ACTIONS(1920), + [aux_sym_cmd_identifier_token7] = ACTIONS(1920), + [aux_sym_cmd_identifier_token8] = ACTIONS(1920), + [aux_sym_cmd_identifier_token9] = ACTIONS(1920), + [aux_sym_cmd_identifier_token10] = ACTIONS(1920), + [aux_sym_cmd_identifier_token11] = ACTIONS(1920), + [aux_sym_cmd_identifier_token12] = ACTIONS(1920), + [aux_sym_cmd_identifier_token13] = ACTIONS(1920), + [aux_sym_cmd_identifier_token14] = ACTIONS(1920), + [aux_sym_cmd_identifier_token15] = ACTIONS(1920), + [aux_sym_cmd_identifier_token16] = ACTIONS(1920), + [aux_sym_cmd_identifier_token17] = ACTIONS(1920), + [aux_sym_cmd_identifier_token18] = ACTIONS(1920), + [aux_sym_cmd_identifier_token19] = ACTIONS(1920), + [aux_sym_cmd_identifier_token20] = ACTIONS(1920), + [aux_sym_cmd_identifier_token21] = ACTIONS(1920), + [aux_sym_cmd_identifier_token22] = ACTIONS(1920), + [aux_sym_cmd_identifier_token23] = ACTIONS(1920), + [aux_sym_cmd_identifier_token24] = ACTIONS(1922), + [aux_sym_cmd_identifier_token25] = ACTIONS(1920), + [aux_sym_cmd_identifier_token26] = ACTIONS(1922), + [aux_sym_cmd_identifier_token27] = ACTIONS(1920), + [aux_sym_cmd_identifier_token28] = ACTIONS(1920), + [aux_sym_cmd_identifier_token29] = ACTIONS(1920), + [aux_sym_cmd_identifier_token30] = ACTIONS(1920), + [aux_sym_cmd_identifier_token31] = ACTIONS(1922), + [aux_sym_cmd_identifier_token32] = ACTIONS(1922), + [aux_sym_cmd_identifier_token33] = ACTIONS(1922), + [aux_sym_cmd_identifier_token34] = ACTIONS(1922), + [aux_sym_cmd_identifier_token35] = ACTIONS(1922), + [aux_sym_cmd_identifier_token36] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [anon_sym_null] = ACTIONS(1922), + [aux_sym_cmd_identifier_token38] = ACTIONS(1920), + [aux_sym_cmd_identifier_token39] = ACTIONS(1922), + [aux_sym_cmd_identifier_token40] = ACTIONS(1922), + [sym__newline] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_def] = ACTIONS(1920), + [anon_sym_export_DASHenv] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_module] = ACTIONS(1920), + [anon_sym_use] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_error] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_loop] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_do] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_match] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_try] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_source] = ACTIONS(1920), + [anon_sym_source_DASHenv] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1920), + [anon_sym_hide] = ACTIONS(1920), + [anon_sym_hide_DASHenv] = ACTIONS(1920), + [anon_sym_overlay] = ACTIONS(1920), + [anon_sym_where] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(1922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1920), + [aux_sym__val_number_decimal_token2] = ACTIONS(1922), + [aux_sym__val_number_decimal_token3] = ACTIONS(1922), + [aux_sym__val_number_decimal_token4] = ACTIONS(1922), + [aux_sym__val_number_token1] = ACTIONS(1922), + [aux_sym__val_number_token2] = ACTIONS(1922), + [aux_sym__val_number_token3] = ACTIONS(1922), + [anon_sym_0b] = ACTIONS(1920), + [anon_sym_0o] = ACTIONS(1920), + [anon_sym_0x] = ACTIONS(1920), + [sym_val_date] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [sym__str_single_quotes] = ACTIONS(1922), + [sym__str_back_ticks] = ACTIONS(1922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1922), + [aux_sym_env_var_token1] = ACTIONS(1920), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(247), + }, + [349] = { + [sym_path] = STATE(456), + [sym_comment] = STATE(349), + [aux_sym_cell_path_repeat1] = STATE(350), [anon_sym_export] = ACTIONS(1011), [anon_sym_alias] = ACTIONS(1011), [anon_sym_let] = ACTIONS(1011), @@ -113190,19 +116108,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1011), [aux_sym_cmd_identifier_token35] = ACTIONS(1011), [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1011), - [aux_sym_cmd_identifier_token40] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), [anon_sym_def] = ACTIONS(1011), [anon_sym_export_DASHenv] = ACTIONS(1011), [anon_sym_extern] = ACTIONS(1011), [anon_sym_module] = ACTIONS(1011), [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), [anon_sym_error] = ACTIONS(1011), [anon_sym_list] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), @@ -113217,7 +116136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1011), [anon_sym_else] = ACTIONS(1011), [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), [anon_sym_try] = ACTIONS(1011), [anon_sym_catch] = ACTIONS(1011), [anon_sym_return] = ACTIONS(1011), @@ -113229,130 +116148,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1011), [anon_sym_new] = ACTIONS(1011), [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1011), - [aux_sym__val_number_decimal_token3] = ACTIONS(1011), - [aux_sym__val_number_decimal_token4] = ACTIONS(1011), - [aux_sym__val_number_token1] = ACTIONS(1011), - [aux_sym__val_number_token2] = ACTIONS(1011), - [aux_sym__val_number_token3] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym__str_single_quotes] = ACTIONS(1011), - [sym__str_back_ticks] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), - [sym__entry_separator] = ACTIONS(1013), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [aux_sym_record_entry_token1] = ACTIONS(1013), [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [337] = { - [sym_cell_path] = STATE(540), - [sym_path] = STATE(482), - [sym_comment] = STATE(337), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [350] = { + [sym_path] = STATE(456), + [sym_comment] = STATE(350), + [aux_sym_cell_path_repeat1] = STATE(350), + [anon_sym_export] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_let_DASHenv] = ACTIONS(1015), + [anon_sym_mut] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [aux_sym_cmd_identifier_token1] = ACTIONS(1015), + [aux_sym_cmd_identifier_token2] = ACTIONS(1015), + [aux_sym_cmd_identifier_token3] = ACTIONS(1015), + [aux_sym_cmd_identifier_token4] = ACTIONS(1015), + [aux_sym_cmd_identifier_token5] = ACTIONS(1015), + [aux_sym_cmd_identifier_token6] = ACTIONS(1015), + [aux_sym_cmd_identifier_token7] = ACTIONS(1015), + [aux_sym_cmd_identifier_token8] = ACTIONS(1015), + [aux_sym_cmd_identifier_token9] = ACTIONS(1015), + [aux_sym_cmd_identifier_token10] = ACTIONS(1015), + [aux_sym_cmd_identifier_token11] = ACTIONS(1015), + [aux_sym_cmd_identifier_token12] = ACTIONS(1015), + [aux_sym_cmd_identifier_token13] = ACTIONS(1015), + [aux_sym_cmd_identifier_token14] = ACTIONS(1015), + [aux_sym_cmd_identifier_token15] = ACTIONS(1015), + [aux_sym_cmd_identifier_token16] = ACTIONS(1015), + [aux_sym_cmd_identifier_token17] = ACTIONS(1015), + [aux_sym_cmd_identifier_token18] = ACTIONS(1015), + [aux_sym_cmd_identifier_token19] = ACTIONS(1015), + [aux_sym_cmd_identifier_token20] = ACTIONS(1015), + [aux_sym_cmd_identifier_token21] = ACTIONS(1015), + [aux_sym_cmd_identifier_token22] = ACTIONS(1015), + [aux_sym_cmd_identifier_token23] = ACTIONS(1015), + [aux_sym_cmd_identifier_token24] = ACTIONS(1015), + [aux_sym_cmd_identifier_token25] = ACTIONS(1015), + [aux_sym_cmd_identifier_token26] = ACTIONS(1015), + [aux_sym_cmd_identifier_token27] = ACTIONS(1015), + [aux_sym_cmd_identifier_token28] = ACTIONS(1015), + [aux_sym_cmd_identifier_token29] = ACTIONS(1015), + [aux_sym_cmd_identifier_token30] = ACTIONS(1015), + [aux_sym_cmd_identifier_token31] = ACTIONS(1015), + [aux_sym_cmd_identifier_token32] = ACTIONS(1015), + [aux_sym_cmd_identifier_token33] = ACTIONS(1015), + [aux_sym_cmd_identifier_token34] = ACTIONS(1015), + [aux_sym_cmd_identifier_token35] = ACTIONS(1015), + [aux_sym_cmd_identifier_token36] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1015), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [anon_sym_def] = ACTIONS(1015), + [anon_sym_export_DASHenv] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_error] = ACTIONS(1015), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_in] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_make] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_source] = ACTIONS(1015), + [anon_sym_source_DASHenv] = ACTIONS(1015), + [anon_sym_register] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_hide_DASHenv] = ACTIONS(1015), + [anon_sym_overlay] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), + [aux_sym_record_entry_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(247), + }, + [351] = { + [sym_comment] = STATE(351), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(247), + }, + [352] = { + [sym_cell_path] = STATE(617), + [sym_path] = STATE(527), + [sym_comment] = STATE(352), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1927), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [aux_sym_cmd_identifier_token6] = ACTIONS(1927), + [aux_sym_cmd_identifier_token7] = ACTIONS(1927), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1927), + [aux_sym_cmd_identifier_token11] = ACTIONS(1927), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1927), + [aux_sym_cmd_identifier_token17] = ACTIONS(1927), + [aux_sym_cmd_identifier_token18] = ACTIONS(1927), + [aux_sym_cmd_identifier_token19] = ACTIONS(1927), + [aux_sym_cmd_identifier_token20] = ACTIONS(1927), + [aux_sym_cmd_identifier_token21] = ACTIONS(1927), + [aux_sym_cmd_identifier_token22] = ACTIONS(1927), + [aux_sym_cmd_identifier_token23] = ACTIONS(1927), + [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token25] = ACTIONS(1927), + [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token27] = ACTIONS(1927), + [aux_sym_cmd_identifier_token28] = ACTIONS(1927), + [aux_sym_cmd_identifier_token29] = ACTIONS(1927), + [aux_sym_cmd_identifier_token30] = ACTIONS(1927), + [aux_sym_cmd_identifier_token31] = ACTIONS(1927), + [aux_sym_cmd_identifier_token32] = ACTIONS(1927), + [aux_sym_cmd_identifier_token33] = ACTIONS(1927), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [anon_sym_null] = ACTIONS(1927), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1927), + [aux_sym_cmd_identifier_token40] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_list] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1927), + [aux_sym__val_number_decimal_token3] = ACTIONS(1927), + [aux_sym__val_number_decimal_token4] = ACTIONS(1927), + [aux_sym__val_number_token1] = ACTIONS(1927), + [aux_sym__val_number_token2] = ACTIONS(1927), + [aux_sym__val_number_token3] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym__str_single_quotes] = ACTIONS(1927), + [sym__str_back_ticks] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), + [sym__entry_separator] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), [anon_sym_POUND] = ACTIONS(3), }, - [338] = { - [sym_comment] = STATE(338), + [353] = { + [sym_comment] = STATE(353), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(247), + }, + [354] = { + [sym_comment] = STATE(354), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1034), [anon_sym_let] = ACTIONS(1034), @@ -113434,7 +116665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1034), [anon_sym_new] = ACTIONS(1034), [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1953), + [anon_sym_QMARK2] = ACTIONS(1036), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), [anon_sym_DOT_DOT2] = ACTIONS(1034), [anon_sym_DOT] = ACTIONS(1034), @@ -113455,8 +116686,1152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [339] = { - [sym_comment] = STATE(339), + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(247), + }, + [356] = { + [sym_cell_path] = STATE(616), + [sym_path] = STATE(527), + [sym_comment] = STATE(356), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_let_DASHenv] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [aux_sym_cmd_identifier_token2] = ACTIONS(1931), + [aux_sym_cmd_identifier_token3] = ACTIONS(1931), + [aux_sym_cmd_identifier_token4] = ACTIONS(1931), + [aux_sym_cmd_identifier_token5] = ACTIONS(1931), + [aux_sym_cmd_identifier_token6] = ACTIONS(1931), + [aux_sym_cmd_identifier_token7] = ACTIONS(1931), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1931), + [aux_sym_cmd_identifier_token11] = ACTIONS(1931), + [aux_sym_cmd_identifier_token12] = ACTIONS(1931), + [aux_sym_cmd_identifier_token13] = ACTIONS(1931), + [aux_sym_cmd_identifier_token14] = ACTIONS(1931), + [aux_sym_cmd_identifier_token15] = ACTIONS(1931), + [aux_sym_cmd_identifier_token16] = ACTIONS(1931), + [aux_sym_cmd_identifier_token17] = ACTIONS(1931), + [aux_sym_cmd_identifier_token18] = ACTIONS(1931), + [aux_sym_cmd_identifier_token19] = ACTIONS(1931), + [aux_sym_cmd_identifier_token20] = ACTIONS(1931), + [aux_sym_cmd_identifier_token21] = ACTIONS(1931), + [aux_sym_cmd_identifier_token22] = ACTIONS(1931), + [aux_sym_cmd_identifier_token23] = ACTIONS(1931), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1931), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1931), + [aux_sym_cmd_identifier_token28] = ACTIONS(1931), + [aux_sym_cmd_identifier_token29] = ACTIONS(1931), + [aux_sym_cmd_identifier_token30] = ACTIONS(1931), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_export_DASHenv] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_list] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_make] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_source] = ACTIONS(1931), + [anon_sym_source_DASHenv] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [sym__entry_separator] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(3), + }, + [357] = { + [sym_cell_path] = STATE(549), + [sym_path] = STATE(527), + [sym_comment] = STATE(357), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_let_DASHenv] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1935), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1935), + [aux_sym_cmd_identifier_token13] = ACTIONS(1935), + [aux_sym_cmd_identifier_token14] = ACTIONS(1935), + [aux_sym_cmd_identifier_token15] = ACTIONS(1935), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [anon_sym_null] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1935), + [aux_sym_cmd_identifier_token40] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_list] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_make] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_source] = ACTIONS(1935), + [anon_sym_source_DASHenv] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1935), + [aux_sym__val_number_decimal_token3] = ACTIONS(1935), + [aux_sym__val_number_decimal_token4] = ACTIONS(1935), + [aux_sym__val_number_token1] = ACTIONS(1935), + [aux_sym__val_number_token2] = ACTIONS(1935), + [aux_sym__val_number_token3] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [sym__entry_separator] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(3), + }, + [358] = { + [sym_comment] = STATE(358), + [anon_sym_export] = ACTIONS(1939), + [anon_sym_alias] = ACTIONS(1939), + [anon_sym_let] = ACTIONS(1939), + [anon_sym_let_DASHenv] = ACTIONS(1939), + [anon_sym_mut] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [aux_sym_cmd_identifier_token1] = ACTIONS(1939), + [aux_sym_cmd_identifier_token2] = ACTIONS(1939), + [aux_sym_cmd_identifier_token3] = ACTIONS(1939), + [aux_sym_cmd_identifier_token4] = ACTIONS(1939), + [aux_sym_cmd_identifier_token5] = ACTIONS(1939), + [aux_sym_cmd_identifier_token6] = ACTIONS(1939), + [aux_sym_cmd_identifier_token7] = ACTIONS(1939), + [aux_sym_cmd_identifier_token8] = ACTIONS(1939), + [aux_sym_cmd_identifier_token9] = ACTIONS(1939), + [aux_sym_cmd_identifier_token10] = ACTIONS(1939), + [aux_sym_cmd_identifier_token11] = ACTIONS(1939), + [aux_sym_cmd_identifier_token12] = ACTIONS(1939), + [aux_sym_cmd_identifier_token13] = ACTIONS(1939), + [aux_sym_cmd_identifier_token14] = ACTIONS(1939), + [aux_sym_cmd_identifier_token15] = ACTIONS(1939), + [aux_sym_cmd_identifier_token16] = ACTIONS(1939), + [aux_sym_cmd_identifier_token17] = ACTIONS(1939), + [aux_sym_cmd_identifier_token18] = ACTIONS(1939), + [aux_sym_cmd_identifier_token19] = ACTIONS(1939), + [aux_sym_cmd_identifier_token20] = ACTIONS(1939), + [aux_sym_cmd_identifier_token21] = ACTIONS(1939), + [aux_sym_cmd_identifier_token22] = ACTIONS(1939), + [aux_sym_cmd_identifier_token23] = ACTIONS(1939), + [aux_sym_cmd_identifier_token24] = ACTIONS(1941), + [aux_sym_cmd_identifier_token25] = ACTIONS(1939), + [aux_sym_cmd_identifier_token26] = ACTIONS(1941), + [aux_sym_cmd_identifier_token27] = ACTIONS(1939), + [aux_sym_cmd_identifier_token28] = ACTIONS(1939), + [aux_sym_cmd_identifier_token29] = ACTIONS(1939), + [aux_sym_cmd_identifier_token30] = ACTIONS(1939), + [aux_sym_cmd_identifier_token31] = ACTIONS(1941), + [aux_sym_cmd_identifier_token32] = ACTIONS(1941), + [aux_sym_cmd_identifier_token33] = ACTIONS(1941), + [aux_sym_cmd_identifier_token34] = ACTIONS(1941), + [aux_sym_cmd_identifier_token35] = ACTIONS(1941), + [aux_sym_cmd_identifier_token36] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1939), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [sym__newline] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_def] = ACTIONS(1939), + [anon_sym_export_DASHenv] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym_module] = ACTIONS(1939), + [anon_sym_use] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_loop] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_match] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_source] = ACTIONS(1939), + [anon_sym_source_DASHenv] = ACTIONS(1939), + [anon_sym_register] = ACTIONS(1939), + [anon_sym_hide] = ACTIONS(1939), + [anon_sym_hide_DASHenv] = ACTIONS(1939), + [anon_sym_overlay] = ACTIONS(1939), + [anon_sym_where] = ACTIONS(1941), + [aux_sym_expr_unary_token1] = ACTIONS(1941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1939), + [aux_sym__val_number_decimal_token2] = ACTIONS(1941), + [aux_sym__val_number_decimal_token3] = ACTIONS(1941), + [aux_sym__val_number_decimal_token4] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1941), + [aux_sym__val_number_token2] = ACTIONS(1941), + [aux_sym__val_number_token3] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1939), + [anon_sym_0o] = ACTIONS(1939), + [anon_sym_0x] = ACTIONS(1939), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), + [aux_sym_env_var_token1] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_POUND] = ACTIONS(247), + }, + [359] = { + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_alias] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_let_DASHenv] = ACTIONS(1700), + [anon_sym_mut] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [aux_sym_cmd_identifier_token1] = ACTIONS(1700), + [aux_sym_cmd_identifier_token2] = ACTIONS(1700), + [aux_sym_cmd_identifier_token3] = ACTIONS(1700), + [aux_sym_cmd_identifier_token4] = ACTIONS(1700), + [aux_sym_cmd_identifier_token5] = ACTIONS(1700), + [aux_sym_cmd_identifier_token6] = ACTIONS(1700), + [aux_sym_cmd_identifier_token7] = ACTIONS(1700), + [aux_sym_cmd_identifier_token8] = ACTIONS(1700), + [aux_sym_cmd_identifier_token9] = ACTIONS(1700), + [aux_sym_cmd_identifier_token10] = ACTIONS(1700), + [aux_sym_cmd_identifier_token11] = ACTIONS(1700), + [aux_sym_cmd_identifier_token12] = ACTIONS(1700), + [aux_sym_cmd_identifier_token13] = ACTIONS(1700), + [aux_sym_cmd_identifier_token14] = ACTIONS(1700), + [aux_sym_cmd_identifier_token15] = ACTIONS(1700), + [aux_sym_cmd_identifier_token16] = ACTIONS(1700), + [aux_sym_cmd_identifier_token17] = ACTIONS(1700), + [aux_sym_cmd_identifier_token18] = ACTIONS(1700), + [aux_sym_cmd_identifier_token19] = ACTIONS(1700), + [aux_sym_cmd_identifier_token20] = ACTIONS(1700), + [aux_sym_cmd_identifier_token21] = ACTIONS(1700), + [aux_sym_cmd_identifier_token22] = ACTIONS(1700), + [aux_sym_cmd_identifier_token23] = ACTIONS(1700), + [aux_sym_cmd_identifier_token24] = ACTIONS(1702), + [aux_sym_cmd_identifier_token25] = ACTIONS(1700), + [aux_sym_cmd_identifier_token26] = ACTIONS(1702), + [aux_sym_cmd_identifier_token27] = ACTIONS(1700), + [aux_sym_cmd_identifier_token28] = ACTIONS(1700), + [aux_sym_cmd_identifier_token29] = ACTIONS(1700), + [aux_sym_cmd_identifier_token30] = ACTIONS(1700), + [aux_sym_cmd_identifier_token31] = ACTIONS(1702), + [aux_sym_cmd_identifier_token32] = ACTIONS(1702), + [aux_sym_cmd_identifier_token33] = ACTIONS(1702), + [aux_sym_cmd_identifier_token34] = ACTIONS(1702), + [aux_sym_cmd_identifier_token35] = ACTIONS(1702), + [aux_sym_cmd_identifier_token36] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1702), + [anon_sym_false] = ACTIONS(1702), + [anon_sym_null] = ACTIONS(1702), + [aux_sym_cmd_identifier_token38] = ACTIONS(1700), + [aux_sym_cmd_identifier_token39] = ACTIONS(1702), + [aux_sym_cmd_identifier_token40] = ACTIONS(1702), + [sym__newline] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_def] = ACTIONS(1700), + [anon_sym_export_DASHenv] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_module] = ACTIONS(1700), + [anon_sym_use] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_error] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_loop] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_source] = ACTIONS(1700), + [anon_sym_source_DASHenv] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_hide] = ACTIONS(1700), + [anon_sym_hide_DASHenv] = ACTIONS(1700), + [anon_sym_overlay] = ACTIONS(1700), + [anon_sym_where] = ACTIONS(1702), + [aux_sym_expr_unary_token1] = ACTIONS(1702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT] = ACTIONS(1702), + [aux_sym__val_number_decimal_token1] = ACTIONS(1700), + [aux_sym__val_number_decimal_token2] = ACTIONS(1702), + [aux_sym__val_number_decimal_token3] = ACTIONS(1702), + [aux_sym__val_number_decimal_token4] = ACTIONS(1702), + [aux_sym__val_number_token1] = ACTIONS(1702), + [aux_sym__val_number_token2] = ACTIONS(1702), + [aux_sym__val_number_token3] = ACTIONS(1702), + [anon_sym_0b] = ACTIONS(1700), + [anon_sym_0o] = ACTIONS(1700), + [anon_sym_0x] = ACTIONS(1700), + [sym_val_date] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym__str_single_quotes] = ACTIONS(1702), + [sym__str_back_ticks] = ACTIONS(1702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1702), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1702), + [aux_sym_env_var_token1] = ACTIONS(1700), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(247), + }, + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(1800), + [anon_sym_alias] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_let_DASHenv] = ACTIONS(1800), + [anon_sym_mut] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [aux_sym_cmd_identifier_token1] = ACTIONS(1800), + [aux_sym_cmd_identifier_token2] = ACTIONS(1800), + [aux_sym_cmd_identifier_token3] = ACTIONS(1800), + [aux_sym_cmd_identifier_token4] = ACTIONS(1800), + [aux_sym_cmd_identifier_token5] = ACTIONS(1800), + [aux_sym_cmd_identifier_token6] = ACTIONS(1800), + [aux_sym_cmd_identifier_token7] = ACTIONS(1800), + [aux_sym_cmd_identifier_token8] = ACTIONS(1800), + [aux_sym_cmd_identifier_token9] = ACTIONS(1800), + [aux_sym_cmd_identifier_token10] = ACTIONS(1800), + [aux_sym_cmd_identifier_token11] = ACTIONS(1800), + [aux_sym_cmd_identifier_token12] = ACTIONS(1800), + [aux_sym_cmd_identifier_token13] = ACTIONS(1800), + [aux_sym_cmd_identifier_token14] = ACTIONS(1800), + [aux_sym_cmd_identifier_token15] = ACTIONS(1800), + [aux_sym_cmd_identifier_token16] = ACTIONS(1800), + [aux_sym_cmd_identifier_token17] = ACTIONS(1800), + [aux_sym_cmd_identifier_token18] = ACTIONS(1800), + [aux_sym_cmd_identifier_token19] = ACTIONS(1800), + [aux_sym_cmd_identifier_token20] = ACTIONS(1800), + [aux_sym_cmd_identifier_token21] = ACTIONS(1800), + [aux_sym_cmd_identifier_token22] = ACTIONS(1800), + [aux_sym_cmd_identifier_token23] = ACTIONS(1800), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token25] = ACTIONS(1800), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token27] = ACTIONS(1800), + [aux_sym_cmd_identifier_token28] = ACTIONS(1800), + [aux_sym_cmd_identifier_token29] = ACTIONS(1800), + [aux_sym_cmd_identifier_token30] = ACTIONS(1800), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token36] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [aux_sym_cmd_identifier_token38] = ACTIONS(1800), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_def] = ACTIONS(1800), + [anon_sym_export_DASHenv] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym_module] = ACTIONS(1800), + [anon_sym_use] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_error] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_match] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_source] = ACTIONS(1800), + [anon_sym_source_DASHenv] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_hide] = ACTIONS(1800), + [anon_sym_hide_DASHenv] = ACTIONS(1800), + [anon_sym_overlay] = ACTIONS(1800), + [anon_sym_where] = ACTIONS(1802), + [aux_sym_expr_unary_token1] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1800), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1800), + [anon_sym_0o] = ACTIONS(1800), + [anon_sym_0x] = ACTIONS(1800), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [aux_sym_env_var_token1] = ACTIONS(1800), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(247), + }, + [362] = { + [sym_cell_path] = STATE(550), + [sym_path] = STATE(527), + [sym_comment] = STATE(362), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_let_DASHenv] = ACTIONS(1943), + [anon_sym_mut] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1943), + [aux_sym_cmd_identifier_token9] = ACTIONS(1943), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1943), + [aux_sym_cmd_identifier_token13] = ACTIONS(1943), + [aux_sym_cmd_identifier_token14] = ACTIONS(1943), + [aux_sym_cmd_identifier_token15] = ACTIONS(1943), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1943), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [anon_sym_null] = ACTIONS(1943), + [aux_sym_cmd_identifier_token38] = ACTIONS(1943), + [aux_sym_cmd_identifier_token39] = ACTIONS(1943), + [aux_sym_cmd_identifier_token40] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_export_DASHenv] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_module] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_error] = ACTIONS(1943), + [anon_sym_list] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_make] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_source] = ACTIONS(1943), + [anon_sym_source_DASHenv] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_hide] = ACTIONS(1943), + [anon_sym_hide_DASHenv] = ACTIONS(1943), + [anon_sym_overlay] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1943), + [aux_sym__val_number_decimal_token3] = ACTIONS(1943), + [aux_sym__val_number_decimal_token4] = ACTIONS(1943), + [aux_sym__val_number_token1] = ACTIONS(1943), + [aux_sym__val_number_token2] = ACTIONS(1943), + [aux_sym__val_number_token3] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym__str_single_quotes] = ACTIONS(1943), + [sym__str_back_ticks] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), + [sym__entry_separator] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(3), + }, + [363] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(527), + [sym_comment] = STATE(363), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [aux_sym_cmd_identifier_token1] = ACTIONS(1005), + [aux_sym_cmd_identifier_token2] = ACTIONS(1005), + [aux_sym_cmd_identifier_token3] = ACTIONS(1005), + [aux_sym_cmd_identifier_token4] = ACTIONS(1005), + [aux_sym_cmd_identifier_token5] = ACTIONS(1005), + [aux_sym_cmd_identifier_token6] = ACTIONS(1005), + [aux_sym_cmd_identifier_token7] = ACTIONS(1005), + [aux_sym_cmd_identifier_token8] = ACTIONS(1005), + [aux_sym_cmd_identifier_token9] = ACTIONS(1005), + [aux_sym_cmd_identifier_token10] = ACTIONS(1005), + [aux_sym_cmd_identifier_token11] = ACTIONS(1005), + [aux_sym_cmd_identifier_token12] = ACTIONS(1005), + [aux_sym_cmd_identifier_token13] = ACTIONS(1005), + [aux_sym_cmd_identifier_token14] = ACTIONS(1005), + [aux_sym_cmd_identifier_token15] = ACTIONS(1005), + [aux_sym_cmd_identifier_token16] = ACTIONS(1005), + [aux_sym_cmd_identifier_token17] = ACTIONS(1005), + [aux_sym_cmd_identifier_token18] = ACTIONS(1005), + [aux_sym_cmd_identifier_token19] = ACTIONS(1005), + [aux_sym_cmd_identifier_token20] = ACTIONS(1005), + [aux_sym_cmd_identifier_token21] = ACTIONS(1005), + [aux_sym_cmd_identifier_token22] = ACTIONS(1005), + [aux_sym_cmd_identifier_token23] = ACTIONS(1005), + [aux_sym_cmd_identifier_token24] = ACTIONS(1005), + [aux_sym_cmd_identifier_token25] = ACTIONS(1005), + [aux_sym_cmd_identifier_token26] = ACTIONS(1005), + [aux_sym_cmd_identifier_token27] = ACTIONS(1005), + [aux_sym_cmd_identifier_token28] = ACTIONS(1005), + [aux_sym_cmd_identifier_token29] = ACTIONS(1005), + [aux_sym_cmd_identifier_token30] = ACTIONS(1005), + [aux_sym_cmd_identifier_token31] = ACTIONS(1005), + [aux_sym_cmd_identifier_token32] = ACTIONS(1005), + [aux_sym_cmd_identifier_token33] = ACTIONS(1005), + [aux_sym_cmd_identifier_token34] = ACTIONS(1005), + [aux_sym_cmd_identifier_token35] = ACTIONS(1005), + [aux_sym_cmd_identifier_token36] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [anon_sym_null] = ACTIONS(1005), + [aux_sym_cmd_identifier_token38] = ACTIONS(1005), + [aux_sym_cmd_identifier_token39] = ACTIONS(1005), + [aux_sym_cmd_identifier_token40] = ACTIONS(1005), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_make] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1005), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1005), + [aux_sym__val_number_decimal_token3] = ACTIONS(1005), + [aux_sym__val_number_decimal_token4] = ACTIONS(1005), + [aux_sym__val_number_token1] = ACTIONS(1005), + [aux_sym__val_number_token2] = ACTIONS(1005), + [aux_sym__val_number_token3] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [sym__str_single_quotes] = ACTIONS(1005), + [sym__str_back_ticks] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1005), + [sym__entry_separator] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(3), + }, + [364] = { + [sym_cell_path] = STATE(522), + [sym_path] = STATE(527), + [sym_comment] = STATE(364), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_alias] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_let_DASHenv] = ACTIONS(1947), + [anon_sym_mut] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [aux_sym_cmd_identifier_token1] = ACTIONS(1947), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1947), + [aux_sym_cmd_identifier_token9] = ACTIONS(1947), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1947), + [aux_sym_cmd_identifier_token13] = ACTIONS(1947), + [aux_sym_cmd_identifier_token14] = ACTIONS(1947), + [aux_sym_cmd_identifier_token15] = ACTIONS(1947), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1947), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1947), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_export_DASHenv] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_module] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1947), + [anon_sym_list] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_make] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_source] = ACTIONS(1947), + [anon_sym_source_DASHenv] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_hide] = ACTIONS(1947), + [anon_sym_hide_DASHenv] = ACTIONS(1947), + [anon_sym_overlay] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_as] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1947), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [sym__entry_separator] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(3), + }, + [365] = { + [sym_comment] = STATE(365), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_make] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(247), + }, + [366] = { + [sym_comment] = STATE(366), [anon_sym_export] = ACTIONS(1028), [anon_sym_alias] = ACTIONS(1028), [anon_sym_let] = ACTIONS(1028), @@ -113538,7 +117913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1028), [anon_sym_new] = ACTIONS(1028), [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(1955), + [anon_sym_QMARK2] = ACTIONS(1953), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), [anon_sym_DOT_DOT2] = ACTIONS(1028), [anon_sym_DOT] = ACTIONS(1028), @@ -113559,112 +117934,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_list] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1056), - [aux_sym__val_number_decimal_token4] = ACTIONS(1056), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), - [sym__entry_separator] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), + [367] = { + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, - [341] = { - [sym_comment] = STATE(341), + [368] = { + [sym_comment] = STATE(368), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1955), + [aux_sym__immediate_decimal_token2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [369] = { + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_alias] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_let_DASHenv] = ACTIONS(1046), + [anon_sym_mut] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1046), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1046), + [aux_sym_cmd_identifier_token9] = ACTIONS(1046), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1046), + [aux_sym_cmd_identifier_token13] = ACTIONS(1046), + [aux_sym_cmd_identifier_token14] = ACTIONS(1046), + [aux_sym_cmd_identifier_token15] = ACTIONS(1046), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1046), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_export_DASHenv] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1046), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_make] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_source] = ACTIONS(1046), + [anon_sym_source_DASHenv] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_hide] = ACTIONS(1046), + [anon_sym_hide_DASHenv] = ACTIONS(1046), + [anon_sym_overlay] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [sym__entry_separator] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(3), + }, + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT2] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1778), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [371] = { + [sym_comment] = STATE(371), [anon_sym_export] = ACTIONS(1721), [anon_sym_alias] = ACTIONS(1721), [anon_sym_let] = ACTIONS(1721), @@ -113694,48 +118381,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1721), [aux_sym_cmd_identifier_token22] = ACTIONS(1721), [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1723), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1723), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), [aux_sym_cmd_identifier_token27] = ACTIONS(1721), [aux_sym_cmd_identifier_token28] = ACTIONS(1721), [aux_sym_cmd_identifier_token29] = ACTIONS(1721), [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1723), - [aux_sym_cmd_identifier_token32] = ACTIONS(1723), - [aux_sym_cmd_identifier_token33] = ACTIONS(1723), - [aux_sym_cmd_identifier_token34] = ACTIONS(1723), - [aux_sym_cmd_identifier_token35] = ACTIONS(1723), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), [anon_sym_def] = ACTIONS(1721), [anon_sym_export_DASHenv] = ACTIONS(1721), [anon_sym_extern] = ACTIONS(1721), [anon_sym_module] = ACTIONS(1721), [anon_sym_use] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), [anon_sym_DOLLAR] = ACTIONS(1721), [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), [anon_sym_DASH] = ACTIONS(1721), [anon_sym_break] = ACTIONS(1721), [anon_sym_continue] = ACTIONS(1721), [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), [anon_sym_while] = ACTIONS(1721), [anon_sym_do] = ACTIONS(1721), [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), [anon_sym_match] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), [anon_sym_return] = ACTIONS(1721), [anon_sym_source] = ACTIONS(1721), [anon_sym_source_DASHenv] = ACTIONS(1721), @@ -113743,1405 +118431,684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1721), [anon_sym_hide_DASHenv] = ACTIONS(1721), [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_where] = ACTIONS(1723), - [aux_sym_expr_unary_token1] = ACTIONS(1723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [aux_sym_env_var_token1] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(247), - }, - [342] = { - [sym_cell_path] = STATE(557), - [sym_path] = STATE(482), - [sym_comment] = STATE(342), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_null] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_list] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_new] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [sym__entry_separator] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(3), - }, - [343] = { - [sym_cell_path] = STATE(564), - [sym_path] = STATE(482), - [sym_comment] = STATE(343), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_list] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_new] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [sym__entry_separator] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(3), - }, - [344] = { - [sym_cell_path] = STATE(589), - [sym_path] = STATE(482), - [sym_comment] = STATE(344), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_list] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_new] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [sym__entry_separator] = ACTIONS(1967), - [anon_sym_PLUS] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [345] = { - [sym_cell_path] = STATE(535), - [sym_path] = STATE(482), - [sym_comment] = STATE(345), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = ACTIONS(1969), - [anon_sym_null] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_list] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [sym__entry_separator] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), }, - [346] = { - [sym_cell_path] = STATE(646), - [sym_path] = STATE(550), - [sym_comment] = STATE(346), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_list] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_new] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1957), + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT2] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(247), }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [aux_sym__immediate_decimal_token2] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [374] = { + [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_alias] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_let_DASHenv] = ACTIONS(1050), + [anon_sym_mut] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1050), + [aux_sym_cmd_identifier_token4] = ACTIONS(1050), + [aux_sym_cmd_identifier_token5] = ACTIONS(1050), + [aux_sym_cmd_identifier_token6] = ACTIONS(1050), + [aux_sym_cmd_identifier_token7] = ACTIONS(1050), + [aux_sym_cmd_identifier_token8] = ACTIONS(1050), + [aux_sym_cmd_identifier_token9] = ACTIONS(1050), + [aux_sym_cmd_identifier_token10] = ACTIONS(1050), + [aux_sym_cmd_identifier_token11] = ACTIONS(1050), + [aux_sym_cmd_identifier_token12] = ACTIONS(1050), + [aux_sym_cmd_identifier_token13] = ACTIONS(1050), + [aux_sym_cmd_identifier_token14] = ACTIONS(1050), + [aux_sym_cmd_identifier_token15] = ACTIONS(1050), + [aux_sym_cmd_identifier_token16] = ACTIONS(1050), + [aux_sym_cmd_identifier_token17] = ACTIONS(1050), + [aux_sym_cmd_identifier_token18] = ACTIONS(1050), + [aux_sym_cmd_identifier_token19] = ACTIONS(1050), + [aux_sym_cmd_identifier_token20] = ACTIONS(1050), + [aux_sym_cmd_identifier_token21] = ACTIONS(1050), + [aux_sym_cmd_identifier_token22] = ACTIONS(1050), + [aux_sym_cmd_identifier_token23] = ACTIONS(1050), + [aux_sym_cmd_identifier_token24] = ACTIONS(1050), + [aux_sym_cmd_identifier_token25] = ACTIONS(1050), + [aux_sym_cmd_identifier_token26] = ACTIONS(1050), + [aux_sym_cmd_identifier_token27] = ACTIONS(1050), + [aux_sym_cmd_identifier_token28] = ACTIONS(1050), + [aux_sym_cmd_identifier_token29] = ACTIONS(1050), + [aux_sym_cmd_identifier_token30] = ACTIONS(1050), + [aux_sym_cmd_identifier_token31] = ACTIONS(1050), + [aux_sym_cmd_identifier_token32] = ACTIONS(1050), + [aux_sym_cmd_identifier_token33] = ACTIONS(1050), + [aux_sym_cmd_identifier_token34] = ACTIONS(1050), + [aux_sym_cmd_identifier_token35] = ACTIONS(1050), + [aux_sym_cmd_identifier_token36] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1050), + [anon_sym_export_DASHenv] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1050), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_make] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_catch] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_source] = ACTIONS(1050), + [anon_sym_source_DASHenv] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_hide] = ACTIONS(1050), + [anon_sym_hide_DASHenv] = ACTIONS(1050), + [anon_sym_overlay] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [sym__entry_separator] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(3), }, - [348] = { - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), + [375] = { + [sym_comment] = STATE(375), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), }, - [349] = { - [sym_cmd_identifier] = STATE(4634), - [sym__expression_parenthesized] = STATE(3753), - [sym_expr_unary] = STATE(2310), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2310), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1961), - [sym_val_range] = STATE(3744), - [sym__value] = STATE(2310), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2168), - [sym_val_variable] = STATE(1934), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1512), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_env_var] = STATE(6934), - [sym__command_parenthesized] = STATE(5041), - [sym_comment] = STATE(349), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [anon_sym_null] = ACTIONS(455), - [aux_sym_cmd_identifier_token38] = ACTIONS(457), - [aux_sym_cmd_identifier_token39] = ACTIONS(459), - [aux_sym_cmd_identifier_token40] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(491), - [aux_sym__val_number_decimal_token2] = ACTIONS(493), - [aux_sym__val_number_decimal_token3] = ACTIONS(495), - [aux_sym__val_number_decimal_token4] = ACTIONS(497), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(247), - }, - [350] = { - [sym_cell_path] = STATE(613), - [sym_path] = STATE(550), - [sym_comment] = STATE(350), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1859), - [aux_sym_cmd_identifier_token3] = ACTIONS(1859), - [aux_sym_cmd_identifier_token4] = ACTIONS(1859), - [aux_sym_cmd_identifier_token5] = ACTIONS(1859), - [aux_sym_cmd_identifier_token6] = ACTIONS(1859), - [aux_sym_cmd_identifier_token7] = ACTIONS(1859), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1859), - [aux_sym_cmd_identifier_token11] = ACTIONS(1859), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1859), - [aux_sym_cmd_identifier_token17] = ACTIONS(1859), - [aux_sym_cmd_identifier_token18] = ACTIONS(1859), - [aux_sym_cmd_identifier_token19] = ACTIONS(1859), - [aux_sym_cmd_identifier_token20] = ACTIONS(1859), - [aux_sym_cmd_identifier_token21] = ACTIONS(1859), - [aux_sym_cmd_identifier_token22] = ACTIONS(1859), - [aux_sym_cmd_identifier_token23] = ACTIONS(1859), - [aux_sym_cmd_identifier_token24] = ACTIONS(1859), - [aux_sym_cmd_identifier_token25] = ACTIONS(1859), - [aux_sym_cmd_identifier_token26] = ACTIONS(1859), - [aux_sym_cmd_identifier_token27] = ACTIONS(1859), - [aux_sym_cmd_identifier_token28] = ACTIONS(1859), - [aux_sym_cmd_identifier_token29] = ACTIONS(1859), - [aux_sym_cmd_identifier_token30] = ACTIONS(1859), - [aux_sym_cmd_identifier_token31] = ACTIONS(1859), - [aux_sym_cmd_identifier_token32] = ACTIONS(1859), - [aux_sym_cmd_identifier_token33] = ACTIONS(1859), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1859), - [aux_sym_cmd_identifier_token36] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_list] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(247), - }, - [351] = { - [sym_cell_path] = STATE(654), - [sym_path] = STATE(550), - [sym_comment] = STATE(351), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(247), - }, - [352] = { - [sym_cell_path] = STATE(606), - [sym_path] = STATE(550), - [sym_comment] = STATE(352), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1845), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_list] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1843), + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1973), + [aux_sym_cmd_identifier_token4] = ACTIONS(1973), + [aux_sym_cmd_identifier_token5] = ACTIONS(1973), + [aux_sym_cmd_identifier_token6] = ACTIONS(1973), + [aux_sym_cmd_identifier_token7] = ACTIONS(1973), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1973), + [aux_sym_cmd_identifier_token11] = ACTIONS(1973), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1973), + [aux_sym_cmd_identifier_token17] = ACTIONS(1973), + [aux_sym_cmd_identifier_token18] = ACTIONS(1973), + [aux_sym_cmd_identifier_token19] = ACTIONS(1973), + [aux_sym_cmd_identifier_token20] = ACTIONS(1973), + [aux_sym_cmd_identifier_token21] = ACTIONS(1973), + [aux_sym_cmd_identifier_token22] = ACTIONS(1973), + [aux_sym_cmd_identifier_token23] = ACTIONS(1973), + [aux_sym_cmd_identifier_token24] = ACTIONS(1975), + [aux_sym_cmd_identifier_token25] = ACTIONS(1973), + [aux_sym_cmd_identifier_token26] = ACTIONS(1975), + [aux_sym_cmd_identifier_token27] = ACTIONS(1973), + [aux_sym_cmd_identifier_token28] = ACTIONS(1973), + [aux_sym_cmd_identifier_token29] = ACTIONS(1973), + [aux_sym_cmd_identifier_token30] = ACTIONS(1973), + [aux_sym_cmd_identifier_token31] = ACTIONS(1975), + [aux_sym_cmd_identifier_token32] = ACTIONS(1975), + [aux_sym_cmd_identifier_token33] = ACTIONS(1975), + [aux_sym_cmd_identifier_token34] = ACTIONS(1975), + [aux_sym_cmd_identifier_token35] = ACTIONS(1975), + [aux_sym_cmd_identifier_token36] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1975), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1975), + [aux_sym_cmd_identifier_token40] = ACTIONS(1975), + [sym__newline] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_where] = ACTIONS(1975), + [aux_sym_expr_unary_token1] = ACTIONS(1975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), + [anon_sym_DOT_DOT_LT] = ACTIONS(1975), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1975), + [aux_sym__val_number_decimal_token3] = ACTIONS(1975), + [aux_sym__val_number_decimal_token4] = ACTIONS(1975), + [aux_sym__val_number_token1] = ACTIONS(1975), + [aux_sym__val_number_token2] = ACTIONS(1975), + [aux_sym__val_number_token3] = ACTIONS(1975), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym__str_single_quotes] = ACTIONS(1975), + [sym__str_back_ticks] = ACTIONS(1975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), + [aux_sym_env_var_token1] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1975), [anon_sym_POUND] = ACTIONS(247), }, - [353] = { - [sym_cell_path] = STATE(615), - [sym_path] = STATE(550), - [sym_comment] = STATE(353), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_list] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(1863), + [377] = { + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, - [354] = { - [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(1064), - [anon_sym_alias] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_let_DASHenv] = ACTIONS(1064), - [anon_sym_mut] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [aux_sym_cmd_identifier_token1] = ACTIONS(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(1064), - [aux_sym_cmd_identifier_token3] = ACTIONS(1064), - [aux_sym_cmd_identifier_token4] = ACTIONS(1064), - [aux_sym_cmd_identifier_token5] = ACTIONS(1064), - [aux_sym_cmd_identifier_token6] = ACTIONS(1064), - [aux_sym_cmd_identifier_token7] = ACTIONS(1064), - [aux_sym_cmd_identifier_token8] = ACTIONS(1064), - [aux_sym_cmd_identifier_token9] = ACTIONS(1064), - [aux_sym_cmd_identifier_token10] = ACTIONS(1064), - [aux_sym_cmd_identifier_token11] = ACTIONS(1064), - [aux_sym_cmd_identifier_token12] = ACTIONS(1064), - [aux_sym_cmd_identifier_token13] = ACTIONS(1064), - [aux_sym_cmd_identifier_token14] = ACTIONS(1064), - [aux_sym_cmd_identifier_token15] = ACTIONS(1064), - [aux_sym_cmd_identifier_token16] = ACTIONS(1064), - [aux_sym_cmd_identifier_token17] = ACTIONS(1064), - [aux_sym_cmd_identifier_token18] = ACTIONS(1064), - [aux_sym_cmd_identifier_token19] = ACTIONS(1064), - [aux_sym_cmd_identifier_token20] = ACTIONS(1064), - [aux_sym_cmd_identifier_token21] = ACTIONS(1064), - [aux_sym_cmd_identifier_token22] = ACTIONS(1064), - [aux_sym_cmd_identifier_token23] = ACTIONS(1064), - [aux_sym_cmd_identifier_token24] = ACTIONS(1064), - [aux_sym_cmd_identifier_token25] = ACTIONS(1064), - [aux_sym_cmd_identifier_token26] = ACTIONS(1064), - [aux_sym_cmd_identifier_token27] = ACTIONS(1064), - [aux_sym_cmd_identifier_token28] = ACTIONS(1064), - [aux_sym_cmd_identifier_token29] = ACTIONS(1064), - [aux_sym_cmd_identifier_token30] = ACTIONS(1064), - [aux_sym_cmd_identifier_token31] = ACTIONS(1064), - [aux_sym_cmd_identifier_token32] = ACTIONS(1064), - [aux_sym_cmd_identifier_token33] = ACTIONS(1064), - [aux_sym_cmd_identifier_token34] = ACTIONS(1064), - [aux_sym_cmd_identifier_token35] = ACTIONS(1064), - [aux_sym_cmd_identifier_token36] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1064), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [anon_sym_def] = ACTIONS(1064), - [anon_sym_export_DASHenv] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym_module] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_error] = ACTIONS(1064), - [anon_sym_list] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_loop] = ACTIONS(1064), - [anon_sym_make] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_catch] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_source] = ACTIONS(1064), - [anon_sym_source_DASHenv] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_hide] = ACTIONS(1064), - [anon_sym_hide_DASHenv] = ACTIONS(1064), - [anon_sym_overlay] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1064), - [aux_sym__val_number_decimal_token4] = ACTIONS(1064), - [aux_sym__val_number_token1] = ACTIONS(1064), - [aux_sym__val_number_token2] = ACTIONS(1064), - [aux_sym__val_number_token3] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym__str_single_quotes] = ACTIONS(1064), - [sym__str_back_ticks] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), - [sym__entry_separator] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(3), - }, - [355] = { - [sym_cmd_identifier] = STATE(4558), - [sym_ctrl_if] = STATE(4944), - [sym_block] = STATE(4765), - [sym__expression] = STATE(4765), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3784), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2929), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_command] = STATE(4765), - [sym_comment] = STATE(355), + [378] = { + [sym_cmd_identifier] = STATE(4758), + [sym__expression_parenthesized] = STATE(3789), + [sym_expr_unary] = STATE(2344), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2344), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2023), + [sym_val_range] = STATE(3793), + [sym__value] = STATE(2344), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2013), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1532), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_env_var] = STATE(7165), + [sym__command_parenthesized] = STATE(5068), + [sym_comment] = STATE(378), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1065), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115164,881 +119131,1396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token20] = ACTIONS(369), [aux_sym_cmd_identifier_token21] = ACTIONS(369), [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1977), - [aux_sym_cmd_identifier_token38] = ACTIONS(1979), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_if] = ACTIONS(409), - [aux_sym_ctrl_match_token1] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1989), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [356] = { - [sym_cell_path] = STATE(608), - [sym_path] = STATE(550), - [sym_comment] = STATE(356), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), [anon_sym_POUND] = ACTIONS(247), }, - [357] = { - [sym_cell_path] = STATE(658), - [sym_path] = STATE(550), - [sym_comment] = STATE(357), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_list] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(247), + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), }, - [358] = { - [sym_cell_path] = STATE(616), - [sym_path] = STATE(550), - [sym_comment] = STATE(358), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1867), - [aux_sym_cmd_identifier_token17] = ACTIONS(1867), - [aux_sym_cmd_identifier_token18] = ACTIONS(1867), - [aux_sym_cmd_identifier_token19] = ACTIONS(1867), - [aux_sym_cmd_identifier_token20] = ACTIONS(1867), - [aux_sym_cmd_identifier_token21] = ACTIONS(1867), - [aux_sym_cmd_identifier_token22] = ACTIONS(1867), - [aux_sym_cmd_identifier_token23] = ACTIONS(1867), - [aux_sym_cmd_identifier_token24] = ACTIONS(1867), - [aux_sym_cmd_identifier_token25] = ACTIONS(1867), - [aux_sym_cmd_identifier_token26] = ACTIONS(1867), - [aux_sym_cmd_identifier_token27] = ACTIONS(1867), - [aux_sym_cmd_identifier_token28] = ACTIONS(1867), - [aux_sym_cmd_identifier_token29] = ACTIONS(1867), - [aux_sym_cmd_identifier_token30] = ACTIONS(1867), - [aux_sym_cmd_identifier_token31] = ACTIONS(1867), - [aux_sym_cmd_identifier_token32] = ACTIONS(1867), - [aux_sym_cmd_identifier_token33] = ACTIONS(1867), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1867), - [aux_sym_cmd_identifier_token36] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_list] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1977), + [aux_sym__immediate_decimal_token2] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [359] = { - [sym_cell_path] = STATE(620), - [sym_path] = STATE(550), - [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [anon_sym_null] = ACTIONS(1981), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1981), + [aux_sym_cmd_identifier_token40] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), + [anon_sym_DOT_DOT2] = ACTIONS(1983), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1985), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(1981), + [aux_sym__val_number_decimal_token4] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), + [sym__entry_separator] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(3), }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [aux_sym_record_entry_token1] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), + [382] = { + [sym_cell_path] = STATE(628), + [sym_path] = STATE(578), + [sym_comment] = STATE(382), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1927), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [aux_sym_cmd_identifier_token6] = ACTIONS(1927), + [aux_sym_cmd_identifier_token7] = ACTIONS(1927), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1927), + [aux_sym_cmd_identifier_token11] = ACTIONS(1927), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1927), + [aux_sym_cmd_identifier_token17] = ACTIONS(1927), + [aux_sym_cmd_identifier_token18] = ACTIONS(1927), + [aux_sym_cmd_identifier_token19] = ACTIONS(1927), + [aux_sym_cmd_identifier_token20] = ACTIONS(1927), + [aux_sym_cmd_identifier_token21] = ACTIONS(1927), + [aux_sym_cmd_identifier_token22] = ACTIONS(1927), + [aux_sym_cmd_identifier_token23] = ACTIONS(1927), + [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token25] = ACTIONS(1927), + [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token27] = ACTIONS(1927), + [aux_sym_cmd_identifier_token28] = ACTIONS(1927), + [aux_sym_cmd_identifier_token29] = ACTIONS(1927), + [aux_sym_cmd_identifier_token30] = ACTIONS(1927), + [aux_sym_cmd_identifier_token31] = ACTIONS(1927), + [aux_sym_cmd_identifier_token32] = ACTIONS(1927), + [aux_sym_cmd_identifier_token33] = ACTIONS(1927), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [anon_sym_null] = ACTIONS(1929), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1929), + [aux_sym_cmd_identifier_token40] = ACTIONS(1929), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_list] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1927), [anon_sym_POUND] = ACTIONS(247), }, - [361] = { - [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1755), - [anon_sym_false] = ACTIONS(1755), - [anon_sym_null] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, - [362] = { - [sym_comment] = STATE(362), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1993), - [aux_sym_cmd_identifier_token40] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT2] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1993), - [aux_sym__val_number_decimal_token3] = ACTIONS(1993), - [aux_sym__val_number_decimal_token4] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1993), - [aux_sym__val_number_token2] = ACTIONS(1993), - [aux_sym__val_number_token3] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym__str_single_quotes] = ACTIONS(1993), - [sym__str_back_ticks] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1993), + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_alias] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_let_DASHenv] = ACTIONS(1991), + [anon_sym_mut] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [aux_sym_cmd_identifier_token1] = ACTIONS(1991), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1991), + [aux_sym_cmd_identifier_token9] = ACTIONS(1991), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1991), + [aux_sym_cmd_identifier_token13] = ACTIONS(1991), + [aux_sym_cmd_identifier_token14] = ACTIONS(1991), + [aux_sym_cmd_identifier_token15] = ACTIONS(1991), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1991), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [anon_sym_null] = ACTIONS(1991), + [aux_sym_cmd_identifier_token38] = ACTIONS(1991), + [aux_sym_cmd_identifier_token39] = ACTIONS(1991), + [aux_sym_cmd_identifier_token40] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_export_DASHenv] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_error] = ACTIONS(1991), + [anon_sym_list] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_in] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_make] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_else] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_catch] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_source] = ACTIONS(1991), + [anon_sym_source_DASHenv] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1991), + [anon_sym_hide] = ACTIONS(1991), + [anon_sym_hide_DASHenv] = ACTIONS(1991), + [anon_sym_overlay] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_as] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), + [anon_sym_DOT_DOT2] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1991), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), + [sym__entry_separator] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1991), [anon_sym_POUND] = ACTIONS(3), }, - [363] = { - [sym_cmd_identifier] = STATE(4711), - [sym_ctrl_if] = STATE(5031), - [sym_block] = STATE(5032), - [sym__expression] = STATE(5032), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3788), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(3006), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_command] = STATE(5032), - [sym_comment] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(2001), - [anon_sym_false] = ACTIONS(2001), - [anon_sym_null] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [aux_sym_cmd_identifier_token1] = ACTIONS(1999), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1999), + [aux_sym_cmd_identifier_token9] = ACTIONS(1999), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1999), + [aux_sym_cmd_identifier_token13] = ACTIONS(1999), + [aux_sym_cmd_identifier_token14] = ACTIONS(1999), + [aux_sym_cmd_identifier_token15] = ACTIONS(1999), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1999), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1999), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_list] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_in] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_make] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_catch] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT2] = ACTIONS(2001), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [sym__entry_separator] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(3), + }, + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [aux_sym_cmd_identifier_token1] = ACTIONS(2007), + [aux_sym_cmd_identifier_token2] = ACTIONS(2007), + [aux_sym_cmd_identifier_token3] = ACTIONS(2007), + [aux_sym_cmd_identifier_token4] = ACTIONS(2007), + [aux_sym_cmd_identifier_token5] = ACTIONS(2007), + [aux_sym_cmd_identifier_token6] = ACTIONS(2007), + [aux_sym_cmd_identifier_token7] = ACTIONS(2007), + [aux_sym_cmd_identifier_token8] = ACTIONS(2007), + [aux_sym_cmd_identifier_token9] = ACTIONS(2007), + [aux_sym_cmd_identifier_token10] = ACTIONS(2007), + [aux_sym_cmd_identifier_token11] = ACTIONS(2007), + [aux_sym_cmd_identifier_token12] = ACTIONS(2007), + [aux_sym_cmd_identifier_token13] = ACTIONS(2007), + [aux_sym_cmd_identifier_token14] = ACTIONS(2007), + [aux_sym_cmd_identifier_token15] = ACTIONS(2007), + [aux_sym_cmd_identifier_token16] = ACTIONS(2007), + [aux_sym_cmd_identifier_token17] = ACTIONS(2007), + [aux_sym_cmd_identifier_token18] = ACTIONS(2007), + [aux_sym_cmd_identifier_token19] = ACTIONS(2007), + [aux_sym_cmd_identifier_token20] = ACTIONS(2007), + [aux_sym_cmd_identifier_token21] = ACTIONS(2007), + [aux_sym_cmd_identifier_token22] = ACTIONS(2007), + [aux_sym_cmd_identifier_token23] = ACTIONS(2007), + [aux_sym_cmd_identifier_token24] = ACTIONS(2007), + [aux_sym_cmd_identifier_token25] = ACTIONS(2007), + [aux_sym_cmd_identifier_token26] = ACTIONS(2007), + [aux_sym_cmd_identifier_token27] = ACTIONS(2007), + [aux_sym_cmd_identifier_token28] = ACTIONS(2007), + [aux_sym_cmd_identifier_token29] = ACTIONS(2007), + [aux_sym_cmd_identifier_token30] = ACTIONS(2007), + [aux_sym_cmd_identifier_token31] = ACTIONS(2007), + [aux_sym_cmd_identifier_token32] = ACTIONS(2007), + [aux_sym_cmd_identifier_token33] = ACTIONS(2007), + [aux_sym_cmd_identifier_token34] = ACTIONS(2007), + [aux_sym_cmd_identifier_token35] = ACTIONS(2007), + [aux_sym_cmd_identifier_token36] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [aux_sym_cmd_identifier_token38] = ACTIONS(2007), [aux_sym_cmd_identifier_token39] = ACTIONS(2007), [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_if] = ACTIONS(67), - [aux_sym_ctrl_match_token1] = ACTIONS(2009), - [anon_sym_DOT_DOT] = ACTIONS(73), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(2011), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_list] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_in] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_make] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_catch] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), + [anon_sym_DOT_DOT2] = ACTIONS(2009), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2011), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), + [sym__entry_separator] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(3), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [aux_sym_cmd_identifier_token1] = ACTIONS(2015), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2015), + [aux_sym_cmd_identifier_token9] = ACTIONS(2015), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2015), + [aux_sym_cmd_identifier_token13] = ACTIONS(2015), + [aux_sym_cmd_identifier_token14] = ACTIONS(2015), + [aux_sym_cmd_identifier_token15] = ACTIONS(2015), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2015), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2015), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT_DOT2] = ACTIONS(1983), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1985), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), + [sym__entry_separator] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(3), + }, + [388] = { + [sym_cell_path] = STATE(625), + [sym_path] = STATE(578), + [sym_comment] = STATE(388), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_let_DASHenv] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1935), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1935), + [aux_sym_cmd_identifier_token13] = ACTIONS(1935), + [aux_sym_cmd_identifier_token14] = ACTIONS(1935), + [aux_sym_cmd_identifier_token15] = ACTIONS(1935), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [anon_sym_null] = ACTIONS(1937), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_DOLLAR] = ACTIONS(1937), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_list] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_make] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_source] = ACTIONS(1935), + [anon_sym_source_DASHenv] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1937), + [aux_sym__val_number_decimal_token4] = ACTIONS(1937), + [aux_sym__val_number_token1] = ACTIONS(1937), + [aux_sym__val_number_token2] = ACTIONS(1937), + [aux_sym__val_number_token3] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1937), + [sym__str_single_quotes] = ACTIONS(1937), + [sym__str_back_ticks] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(1935), [anon_sym_POUND] = ACTIONS(247), }, - [364] = { - [sym_comment] = STATE(364), + [389] = { + [sym_cell_path] = STATE(626), + [sym_path] = STATE(578), + [sym_comment] = STATE(389), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_let_DASHenv] = ACTIONS(1943), + [anon_sym_mut] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1943), + [aux_sym_cmd_identifier_token9] = ACTIONS(1943), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1943), + [aux_sym_cmd_identifier_token13] = ACTIONS(1943), + [aux_sym_cmd_identifier_token14] = ACTIONS(1943), + [aux_sym_cmd_identifier_token15] = ACTIONS(1943), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1943), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1943), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_export_DASHenv] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_module] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1943), + [anon_sym_list] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_make] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_source] = ACTIONS(1943), + [anon_sym_source_DASHenv] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_hide] = ACTIONS(1943), + [anon_sym_hide_DASHenv] = ACTIONS(1943), + [anon_sym_overlay] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(247), + }, + [390] = { + [sym_cell_path] = STATE(627), + [sym_path] = STATE(578), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_alias] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_let_DASHenv] = ACTIONS(1947), + [anon_sym_mut] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [aux_sym_cmd_identifier_token1] = ACTIONS(1947), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1947), + [aux_sym_cmd_identifier_token9] = ACTIONS(1947), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1947), + [aux_sym_cmd_identifier_token13] = ACTIONS(1947), + [aux_sym_cmd_identifier_token14] = ACTIONS(1947), + [aux_sym_cmd_identifier_token15] = ACTIONS(1947), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1947), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1947), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_export_DASHenv] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_module] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1947), + [anon_sym_list] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_make] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_source] = ACTIONS(1947), + [anon_sym_source_DASHenv] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_hide] = ACTIONS(1947), + [anon_sym_hide_DASHenv] = ACTIONS(1947), + [anon_sym_overlay] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_as] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1947), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(247), + }, + [391] = { + [sym_comment] = STATE(391), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [392] = { + [sym_comment] = STATE(392), [anon_sym_export] = ACTIONS(2019), [anon_sym_alias] = ACTIONS(2019), [anon_sym_let] = ACTIONS(2019), @@ -116121,9 +120603,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2019), [anon_sym_as] = ACTIONS(2019), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), + [anon_sym_DOT_DOT2] = ACTIONS(2021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2023), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), [aux_sym__val_number_decimal_token1] = ACTIONS(2019), [aux_sym__val_number_decimal_token2] = ACTIONS(2019), @@ -116136,2469 +120618,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2019), [sym__str_back_ticks] = ACTIONS(2019), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [sym__entry_separator] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(3), - }, - [365] = { - [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_alias] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_let_DASHenv] = ACTIONS(2023), - [anon_sym_mut] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [aux_sym_cmd_identifier_token1] = ACTIONS(2023), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2023), - [aux_sym_cmd_identifier_token9] = ACTIONS(2023), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2023), - [aux_sym_cmd_identifier_token13] = ACTIONS(2023), - [aux_sym_cmd_identifier_token14] = ACTIONS(2023), - [aux_sym_cmd_identifier_token15] = ACTIONS(2023), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2023), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_null] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2023), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2023), - [anon_sym_export_DASHenv] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_module] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_error] = ACTIONS(2023), - [anon_sym_list] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_in] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_make] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_source] = ACTIONS(2023), - [anon_sym_source_DASHenv] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_hide_DASHenv] = ACTIONS(2023), - [anon_sym_overlay] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_as] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT_DOT2] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2023), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), [sym__entry_separator] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(3), }, - [366] = { - [sym_cell_path] = STATE(649), - [sym_path] = STATE(550), - [sym_comment] = STATE(366), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_list] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(247), - }, - [367] = { - [sym_cell_path] = STATE(657), - [sym_path] = STATE(550), - [sym_comment] = STATE(367), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1919), - [aux_sym_cmd_identifier_token40] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_list] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(247), - }, - [368] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(550), - [sym_comment] = STATE(368), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1923), - [aux_sym_cmd_identifier_token40] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_list] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_decimal_token4] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(247), - }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(2027), - [aux_sym__immediate_decimal_token2] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [371] = { - [sym_cell_path] = STATE(607), - [sym_path] = STATE(550), - [sym_comment] = STATE(371), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1847), - [aux_sym_cmd_identifier_token3] = ACTIONS(1847), - [aux_sym_cmd_identifier_token4] = ACTIONS(1847), - [aux_sym_cmd_identifier_token5] = ACTIONS(1847), - [aux_sym_cmd_identifier_token6] = ACTIONS(1847), - [aux_sym_cmd_identifier_token7] = ACTIONS(1847), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1847), - [aux_sym_cmd_identifier_token11] = ACTIONS(1847), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1847), - [aux_sym_cmd_identifier_token17] = ACTIONS(1847), - [aux_sym_cmd_identifier_token18] = ACTIONS(1847), - [aux_sym_cmd_identifier_token19] = ACTIONS(1847), - [aux_sym_cmd_identifier_token20] = ACTIONS(1847), - [aux_sym_cmd_identifier_token21] = ACTIONS(1847), - [aux_sym_cmd_identifier_token22] = ACTIONS(1847), - [aux_sym_cmd_identifier_token23] = ACTIONS(1847), - [aux_sym_cmd_identifier_token24] = ACTIONS(1847), - [aux_sym_cmd_identifier_token25] = ACTIONS(1847), - [aux_sym_cmd_identifier_token26] = ACTIONS(1847), - [aux_sym_cmd_identifier_token27] = ACTIONS(1847), - [aux_sym_cmd_identifier_token28] = ACTIONS(1847), - [aux_sym_cmd_identifier_token29] = ACTIONS(1847), - [aux_sym_cmd_identifier_token30] = ACTIONS(1847), - [aux_sym_cmd_identifier_token31] = ACTIONS(1847), - [aux_sym_cmd_identifier_token32] = ACTIONS(1847), - [aux_sym_cmd_identifier_token33] = ACTIONS(1847), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1847), - [aux_sym_cmd_identifier_token36] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1849), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_list] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(247), - }, - [372] = { - [sym_comment] = STATE(372), - [anon_sym_export] = ACTIONS(1345), - [anon_sym_alias] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(1345), - [anon_sym_let_DASHenv] = ACTIONS(1345), - [anon_sym_mut] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [aux_sym_cmd_identifier_token1] = ACTIONS(1345), - [aux_sym_cmd_identifier_token2] = ACTIONS(1345), - [aux_sym_cmd_identifier_token3] = ACTIONS(1345), - [aux_sym_cmd_identifier_token4] = ACTIONS(1345), - [aux_sym_cmd_identifier_token5] = ACTIONS(1345), - [aux_sym_cmd_identifier_token6] = ACTIONS(1345), - [aux_sym_cmd_identifier_token7] = ACTIONS(1345), - [aux_sym_cmd_identifier_token8] = ACTIONS(1345), - [aux_sym_cmd_identifier_token9] = ACTIONS(1345), - [aux_sym_cmd_identifier_token10] = ACTIONS(1345), - [aux_sym_cmd_identifier_token11] = ACTIONS(1345), - [aux_sym_cmd_identifier_token12] = ACTIONS(1345), - [aux_sym_cmd_identifier_token13] = ACTIONS(1345), - [aux_sym_cmd_identifier_token14] = ACTIONS(1345), - [aux_sym_cmd_identifier_token15] = ACTIONS(1345), - [aux_sym_cmd_identifier_token16] = ACTIONS(1345), - [aux_sym_cmd_identifier_token17] = ACTIONS(1345), - [aux_sym_cmd_identifier_token18] = ACTIONS(1345), - [aux_sym_cmd_identifier_token19] = ACTIONS(1345), - [aux_sym_cmd_identifier_token20] = ACTIONS(1345), - [aux_sym_cmd_identifier_token21] = ACTIONS(1345), - [aux_sym_cmd_identifier_token22] = ACTIONS(1345), - [aux_sym_cmd_identifier_token23] = ACTIONS(1345), - [aux_sym_cmd_identifier_token24] = ACTIONS(1349), - [aux_sym_cmd_identifier_token25] = ACTIONS(1345), - [aux_sym_cmd_identifier_token26] = ACTIONS(1349), - [aux_sym_cmd_identifier_token27] = ACTIONS(1345), - [aux_sym_cmd_identifier_token28] = ACTIONS(1345), - [aux_sym_cmd_identifier_token29] = ACTIONS(1345), - [aux_sym_cmd_identifier_token30] = ACTIONS(1345), - [aux_sym_cmd_identifier_token31] = ACTIONS(1349), - [aux_sym_cmd_identifier_token32] = ACTIONS(1349), - [aux_sym_cmd_identifier_token33] = ACTIONS(1349), - [aux_sym_cmd_identifier_token34] = ACTIONS(1349), - [aux_sym_cmd_identifier_token35] = ACTIONS(1349), - [aux_sym_cmd_identifier_token36] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [anon_sym_null] = ACTIONS(1349), - [aux_sym_cmd_identifier_token38] = ACTIONS(1345), - [aux_sym_cmd_identifier_token39] = ACTIONS(1349), - [aux_sym_cmd_identifier_token40] = ACTIONS(1349), - [sym__newline] = ACTIONS(1349), - [anon_sym_def] = ACTIONS(1345), - [anon_sym_export_DASHenv] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_module] = ACTIONS(1345), - [anon_sym_use] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_DOLLAR] = ACTIONS(1345), - [anon_sym_error] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_loop] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [aux_sym_ctrl_match_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_try] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_source] = ACTIONS(1345), - [anon_sym_source_DASHenv] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_hide] = ACTIONS(1345), - [anon_sym_hide_DASHenv] = ACTIONS(1345), - [anon_sym_overlay] = ACTIONS(1345), - [anon_sym_where] = ACTIONS(1349), - [aux_sym_expr_unary_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), - [anon_sym_DOT_DOT_LT] = ACTIONS(1349), - [aux_sym__val_number_decimal_token1] = ACTIONS(1345), - [aux_sym__val_number_decimal_token2] = ACTIONS(1349), - [aux_sym__val_number_decimal_token3] = ACTIONS(1349), - [aux_sym__val_number_decimal_token4] = ACTIONS(1349), - [aux_sym__val_number_token1] = ACTIONS(1349), - [aux_sym__val_number_token2] = ACTIONS(1349), - [aux_sym__val_number_token3] = ACTIONS(1349), - [anon_sym_0b] = ACTIONS(1345), - [anon_sym_0o] = ACTIONS(1345), - [anon_sym_0x] = ACTIONS(1345), - [sym_val_date] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym__str_single_quotes] = ACTIONS(1349), - [sym__str_back_ticks] = ACTIONS(1349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), - [aux_sym_env_var_token1] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(247), - }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2031), - [aux_sym__immediate_decimal_token2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [374] = { - [sym_cell_path] = STATE(624), - [sym_path] = STATE(550), - [sym_comment] = STATE(374), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_alias] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_let_DASHenv] = ACTIONS(1875), - [anon_sym_mut] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [aux_sym_cmd_identifier_token1] = ACTIONS(1875), - [aux_sym_cmd_identifier_token2] = ACTIONS(1875), - [aux_sym_cmd_identifier_token3] = ACTIONS(1875), - [aux_sym_cmd_identifier_token4] = ACTIONS(1875), - [aux_sym_cmd_identifier_token5] = ACTIONS(1875), - [aux_sym_cmd_identifier_token6] = ACTIONS(1875), - [aux_sym_cmd_identifier_token7] = ACTIONS(1875), - [aux_sym_cmd_identifier_token8] = ACTIONS(1875), - [aux_sym_cmd_identifier_token9] = ACTIONS(1875), - [aux_sym_cmd_identifier_token10] = ACTIONS(1875), - [aux_sym_cmd_identifier_token11] = ACTIONS(1875), - [aux_sym_cmd_identifier_token12] = ACTIONS(1875), - [aux_sym_cmd_identifier_token13] = ACTIONS(1875), - [aux_sym_cmd_identifier_token14] = ACTIONS(1875), - [aux_sym_cmd_identifier_token15] = ACTIONS(1875), - [aux_sym_cmd_identifier_token16] = ACTIONS(1875), - [aux_sym_cmd_identifier_token17] = ACTIONS(1875), - [aux_sym_cmd_identifier_token18] = ACTIONS(1875), - [aux_sym_cmd_identifier_token19] = ACTIONS(1875), - [aux_sym_cmd_identifier_token20] = ACTIONS(1875), - [aux_sym_cmd_identifier_token21] = ACTIONS(1875), - [aux_sym_cmd_identifier_token22] = ACTIONS(1875), - [aux_sym_cmd_identifier_token23] = ACTIONS(1875), - [aux_sym_cmd_identifier_token24] = ACTIONS(1875), - [aux_sym_cmd_identifier_token25] = ACTIONS(1875), - [aux_sym_cmd_identifier_token26] = ACTIONS(1875), - [aux_sym_cmd_identifier_token27] = ACTIONS(1875), - [aux_sym_cmd_identifier_token28] = ACTIONS(1875), - [aux_sym_cmd_identifier_token29] = ACTIONS(1875), - [aux_sym_cmd_identifier_token30] = ACTIONS(1875), - [aux_sym_cmd_identifier_token31] = ACTIONS(1875), - [aux_sym_cmd_identifier_token32] = ACTIONS(1875), - [aux_sym_cmd_identifier_token33] = ACTIONS(1875), - [aux_sym_cmd_identifier_token34] = ACTIONS(1875), - [aux_sym_cmd_identifier_token35] = ACTIONS(1875), - [aux_sym_cmd_identifier_token36] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1875), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [anon_sym_def] = ACTIONS(1875), - [anon_sym_export_DASHenv] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_use] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_list] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in] = ACTIONS(1875), - [anon_sym_loop] = ACTIONS(1875), - [anon_sym_make] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_source] = ACTIONS(1875), - [anon_sym_source_DASHenv] = ACTIONS(1875), - [anon_sym_register] = ACTIONS(1875), - [anon_sym_hide] = ACTIONS(1875), - [anon_sym_hide_DASHenv] = ACTIONS(1875), - [anon_sym_overlay] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(247), - }, - [375] = { - [sym_cell_path] = STATE(637), - [sym_path] = STATE(550), - [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_list] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_PLUS] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(247), - }, - [376] = { - [sym_comment] = STATE(376), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [377] = { - [sym_cell_path] = STATE(626), - [sym_path] = STATE(550), - [sym_comment] = STATE(377), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1971), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_list] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(247), - }, - [378] = { - [sym_cell_path] = STATE(640), - [sym_path] = STATE(550), - [sym_comment] = STATE(378), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_list] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(247), - }, - [379] = { - [sym_cell_path] = STATE(632), - [sym_path] = STATE(550), - [sym_comment] = STATE(379), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_list] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_new] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - }, - [380] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(550), - [sym_comment] = STATE(380), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1851), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1853), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_list] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(247), - }, - [381] = { - [sym_path] = STATE(482), - [sym_comment] = STATE(381), - [aux_sym_cell_path_repeat1] = STATE(412), - [anon_sym_export] = ACTIONS(1017), - [anon_sym_alias] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_let_DASHenv] = ACTIONS(1017), - [anon_sym_mut] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [aux_sym_cmd_identifier_token1] = ACTIONS(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(1017), - [aux_sym_cmd_identifier_token3] = ACTIONS(1017), - [aux_sym_cmd_identifier_token4] = ACTIONS(1017), - [aux_sym_cmd_identifier_token5] = ACTIONS(1017), - [aux_sym_cmd_identifier_token6] = ACTIONS(1017), - [aux_sym_cmd_identifier_token7] = ACTIONS(1017), - [aux_sym_cmd_identifier_token8] = ACTIONS(1017), - [aux_sym_cmd_identifier_token9] = ACTIONS(1017), - [aux_sym_cmd_identifier_token10] = ACTIONS(1017), - [aux_sym_cmd_identifier_token11] = ACTIONS(1017), - [aux_sym_cmd_identifier_token12] = ACTIONS(1017), - [aux_sym_cmd_identifier_token13] = ACTIONS(1017), - [aux_sym_cmd_identifier_token14] = ACTIONS(1017), - [aux_sym_cmd_identifier_token15] = ACTIONS(1017), - [aux_sym_cmd_identifier_token16] = ACTIONS(1017), - [aux_sym_cmd_identifier_token17] = ACTIONS(1017), - [aux_sym_cmd_identifier_token18] = ACTIONS(1017), - [aux_sym_cmd_identifier_token19] = ACTIONS(1017), - [aux_sym_cmd_identifier_token20] = ACTIONS(1017), - [aux_sym_cmd_identifier_token21] = ACTIONS(1017), - [aux_sym_cmd_identifier_token22] = ACTIONS(1017), - [aux_sym_cmd_identifier_token23] = ACTIONS(1017), - [aux_sym_cmd_identifier_token24] = ACTIONS(1017), - [aux_sym_cmd_identifier_token25] = ACTIONS(1017), - [aux_sym_cmd_identifier_token26] = ACTIONS(1017), - [aux_sym_cmd_identifier_token27] = ACTIONS(1017), - [aux_sym_cmd_identifier_token28] = ACTIONS(1017), - [aux_sym_cmd_identifier_token29] = ACTIONS(1017), - [aux_sym_cmd_identifier_token30] = ACTIONS(1017), - [aux_sym_cmd_identifier_token31] = ACTIONS(1017), - [aux_sym_cmd_identifier_token32] = ACTIONS(1017), - [aux_sym_cmd_identifier_token33] = ACTIONS(1017), - [aux_sym_cmd_identifier_token34] = ACTIONS(1017), - [aux_sym_cmd_identifier_token35] = ACTIONS(1017), - [aux_sym_cmd_identifier_token36] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1017), - [anon_sym_export_DASHenv] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_make] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_catch] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_source] = ACTIONS(1017), - [anon_sym_source_DASHenv] = ACTIONS(1017), - [anon_sym_register] = ACTIONS(1017), - [anon_sym_hide] = ACTIONS(1017), - [anon_sym_hide_DASHenv] = ACTIONS(1017), - [anon_sym_overlay] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), - [sym__entry_separator] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [382] = { - [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1738), + [aux_sym_cmd_identifier_token40] = ACTIONS(1738), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), + [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(1738), + [aux_sym__val_number_token2] = ACTIONS(1738), + [aux_sym__val_number_token3] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym__str_single_quotes] = ACTIONS(1738), + [sym__str_back_ticks] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), + [sym__entry_separator] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, - [383] = { - [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [aux_sym_cmd_identifier_token1] = ACTIONS(2035), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2035), - [aux_sym_cmd_identifier_token13] = ACTIONS(2035), - [aux_sym_cmd_identifier_token14] = ACTIONS(2035), - [aux_sym_cmd_identifier_token15] = ACTIONS(2035), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_make] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(2037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [sym__entry_separator] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(3), + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [aux_sym_cmd_identifier_token1] = ACTIONS(2043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2043), - [aux_sym_cmd_identifier_token9] = ACTIONS(2043), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2043), - [aux_sym_cmd_identifier_token13] = ACTIONS(2043), - [aux_sym_cmd_identifier_token14] = ACTIONS(2043), - [aux_sym_cmd_identifier_token15] = ACTIONS(2043), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2043), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2043), - [aux_sym_cmd_identifier_token40] = ACTIONS(2043), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_list] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_in] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_make] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_new] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT_DOT2] = ACTIONS(2045), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), - [sym__entry_separator] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2043), + [396] = { + [sym_comment] = STATE(396), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2029), + [aux_sym_cmd_identifier_token3] = ACTIONS(2029), + [aux_sym_cmd_identifier_token4] = ACTIONS(2029), + [aux_sym_cmd_identifier_token5] = ACTIONS(2029), + [aux_sym_cmd_identifier_token6] = ACTIONS(2029), + [aux_sym_cmd_identifier_token7] = ACTIONS(2029), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2029), + [aux_sym_cmd_identifier_token11] = ACTIONS(2029), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2029), + [aux_sym_cmd_identifier_token17] = ACTIONS(2029), + [aux_sym_cmd_identifier_token18] = ACTIONS(2029), + [aux_sym_cmd_identifier_token19] = ACTIONS(2029), + [aux_sym_cmd_identifier_token20] = ACTIONS(2029), + [aux_sym_cmd_identifier_token21] = ACTIONS(2029), + [aux_sym_cmd_identifier_token22] = ACTIONS(2029), + [aux_sym_cmd_identifier_token23] = ACTIONS(2029), + [aux_sym_cmd_identifier_token24] = ACTIONS(2029), + [aux_sym_cmd_identifier_token25] = ACTIONS(2029), + [aux_sym_cmd_identifier_token26] = ACTIONS(2029), + [aux_sym_cmd_identifier_token27] = ACTIONS(2029), + [aux_sym_cmd_identifier_token28] = ACTIONS(2029), + [aux_sym_cmd_identifier_token29] = ACTIONS(2029), + [aux_sym_cmd_identifier_token30] = ACTIONS(2029), + [aux_sym_cmd_identifier_token31] = ACTIONS(2029), + [aux_sym_cmd_identifier_token32] = ACTIONS(2029), + [aux_sym_cmd_identifier_token33] = ACTIONS(2029), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2029), + [aux_sym_cmd_identifier_token36] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [anon_sym_null] = ACTIONS(2029), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2029), + [aux_sym_cmd_identifier_token40] = ACTIONS(2029), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_list] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_new] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2029), + [anon_sym_DOT_DOT2] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2029), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2029), + [aux_sym__val_number_decimal_token3] = ACTIONS(2029), + [aux_sym__val_number_decimal_token4] = ACTIONS(2029), + [aux_sym__val_number_token1] = ACTIONS(2029), + [aux_sym__val_number_token2] = ACTIONS(2029), + [aux_sym__val_number_token3] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [sym__str_single_quotes] = ACTIONS(2029), + [sym__str_back_ticks] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2029), + [sym__entry_separator] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), [anon_sym_POUND] = ACTIONS(3), }, - [385] = { - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(2051), - [anon_sym_alias] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_let_DASHenv] = ACTIONS(2051), - [anon_sym_mut] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [aux_sym_cmd_identifier_token1] = ACTIONS(2051), - [aux_sym_cmd_identifier_token2] = ACTIONS(2051), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [aux_sym_cmd_identifier_token6] = ACTIONS(2051), - [aux_sym_cmd_identifier_token7] = ACTIONS(2051), - [aux_sym_cmd_identifier_token8] = ACTIONS(2051), - [aux_sym_cmd_identifier_token9] = ACTIONS(2051), - [aux_sym_cmd_identifier_token10] = ACTIONS(2051), - [aux_sym_cmd_identifier_token11] = ACTIONS(2051), - [aux_sym_cmd_identifier_token12] = ACTIONS(2051), - [aux_sym_cmd_identifier_token13] = ACTIONS(2051), - [aux_sym_cmd_identifier_token14] = ACTIONS(2051), - [aux_sym_cmd_identifier_token15] = ACTIONS(2051), - [aux_sym_cmd_identifier_token16] = ACTIONS(2051), - [aux_sym_cmd_identifier_token17] = ACTIONS(2051), - [aux_sym_cmd_identifier_token18] = ACTIONS(2051), - [aux_sym_cmd_identifier_token19] = ACTIONS(2051), - [aux_sym_cmd_identifier_token20] = ACTIONS(2051), - [aux_sym_cmd_identifier_token21] = ACTIONS(2051), - [aux_sym_cmd_identifier_token22] = ACTIONS(2051), - [aux_sym_cmd_identifier_token23] = ACTIONS(2051), - [aux_sym_cmd_identifier_token24] = ACTIONS(2051), - [aux_sym_cmd_identifier_token25] = ACTIONS(2051), - [aux_sym_cmd_identifier_token26] = ACTIONS(2051), - [aux_sym_cmd_identifier_token27] = ACTIONS(2051), - [aux_sym_cmd_identifier_token28] = ACTIONS(2051), - [aux_sym_cmd_identifier_token29] = ACTIONS(2051), - [aux_sym_cmd_identifier_token30] = ACTIONS(2051), - [aux_sym_cmd_identifier_token31] = ACTIONS(2051), - [aux_sym_cmd_identifier_token32] = ACTIONS(2051), - [aux_sym_cmd_identifier_token33] = ACTIONS(2051), - [aux_sym_cmd_identifier_token34] = ACTIONS(2051), - [aux_sym_cmd_identifier_token35] = ACTIONS(2051), - [aux_sym_cmd_identifier_token36] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [anon_sym_null] = ACTIONS(2051), - [aux_sym_cmd_identifier_token38] = ACTIONS(2051), - [aux_sym_cmd_identifier_token39] = ACTIONS(2051), - [aux_sym_cmd_identifier_token40] = ACTIONS(2051), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_export_DASHenv] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_module] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_error] = ACTIONS(2051), - [anon_sym_list] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_in] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_make] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_source] = ACTIONS(2051), - [anon_sym_source_DASHenv] = ACTIONS(2051), - [anon_sym_register] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_hide_DASHenv] = ACTIONS(2051), - [anon_sym_overlay] = ACTIONS(2051), - [anon_sym_new] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), - [anon_sym_DOT_DOT2] = ACTIONS(2053), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2051), - [aux_sym__val_number_decimal_token3] = ACTIONS(2051), - [aux_sym__val_number_decimal_token4] = ACTIONS(2051), - [aux_sym__val_number_token1] = ACTIONS(2051), - [aux_sym__val_number_token2] = ACTIONS(2051), - [aux_sym__val_number_token3] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), - [sym__entry_separator] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2051), + [397] = { + [sym_comment] = STATE(397), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2033), + [aux_sym_cmd_identifier_token3] = ACTIONS(2033), + [aux_sym_cmd_identifier_token4] = ACTIONS(2033), + [aux_sym_cmd_identifier_token5] = ACTIONS(2033), + [aux_sym_cmd_identifier_token6] = ACTIONS(2033), + [aux_sym_cmd_identifier_token7] = ACTIONS(2033), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2033), + [aux_sym_cmd_identifier_token11] = ACTIONS(2033), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2033), + [aux_sym_cmd_identifier_token17] = ACTIONS(2033), + [aux_sym_cmd_identifier_token18] = ACTIONS(2033), + [aux_sym_cmd_identifier_token19] = ACTIONS(2033), + [aux_sym_cmd_identifier_token20] = ACTIONS(2033), + [aux_sym_cmd_identifier_token21] = ACTIONS(2033), + [aux_sym_cmd_identifier_token22] = ACTIONS(2033), + [aux_sym_cmd_identifier_token23] = ACTIONS(2033), + [aux_sym_cmd_identifier_token24] = ACTIONS(2033), + [aux_sym_cmd_identifier_token25] = ACTIONS(2033), + [aux_sym_cmd_identifier_token26] = ACTIONS(2033), + [aux_sym_cmd_identifier_token27] = ACTIONS(2033), + [aux_sym_cmd_identifier_token28] = ACTIONS(2033), + [aux_sym_cmd_identifier_token29] = ACTIONS(2033), + [aux_sym_cmd_identifier_token30] = ACTIONS(2033), + [aux_sym_cmd_identifier_token31] = ACTIONS(2033), + [aux_sym_cmd_identifier_token32] = ACTIONS(2033), + [aux_sym_cmd_identifier_token33] = ACTIONS(2033), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2033), + [aux_sym_cmd_identifier_token36] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_null] = ACTIONS(2033), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2033), + [aux_sym_cmd_identifier_token40] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), + [anon_sym_DOT_DOT2] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2033), + [aux_sym__val_number_decimal_token3] = ACTIONS(2033), + [aux_sym__val_number_decimal_token4] = ACTIONS(2033), + [aux_sym__val_number_token1] = ACTIONS(2033), + [aux_sym__val_number_token2] = ACTIONS(2033), + [aux_sym__val_number_token3] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2033), + [sym__str_single_quotes] = ACTIONS(2033), + [sym__str_back_ticks] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), + [sym__entry_separator] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2033), [anon_sym_POUND] = ACTIONS(3), }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [aux_sym_record_entry_token1] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [387] = { - [sym_cell_path] = STATE(612), - [sym_path] = STATE(550), - [sym_comment] = STATE(387), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_alias] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_let_DASHenv] = ACTIONS(1855), - [anon_sym_mut] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [aux_sym_cmd_identifier_token1] = ACTIONS(1855), - [aux_sym_cmd_identifier_token2] = ACTIONS(1855), - [aux_sym_cmd_identifier_token3] = ACTIONS(1855), - [aux_sym_cmd_identifier_token4] = ACTIONS(1855), - [aux_sym_cmd_identifier_token5] = ACTIONS(1855), - [aux_sym_cmd_identifier_token6] = ACTIONS(1855), - [aux_sym_cmd_identifier_token7] = ACTIONS(1855), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1855), - [aux_sym_cmd_identifier_token13] = ACTIONS(1855), - [aux_sym_cmd_identifier_token14] = ACTIONS(1855), - [aux_sym_cmd_identifier_token15] = ACTIONS(1855), - [aux_sym_cmd_identifier_token16] = ACTIONS(1855), - [aux_sym_cmd_identifier_token17] = ACTIONS(1855), - [aux_sym_cmd_identifier_token18] = ACTIONS(1855), - [aux_sym_cmd_identifier_token19] = ACTIONS(1855), - [aux_sym_cmd_identifier_token20] = ACTIONS(1855), - [aux_sym_cmd_identifier_token21] = ACTIONS(1855), - [aux_sym_cmd_identifier_token22] = ACTIONS(1855), - [aux_sym_cmd_identifier_token23] = ACTIONS(1855), - [aux_sym_cmd_identifier_token24] = ACTIONS(1855), - [aux_sym_cmd_identifier_token25] = ACTIONS(1855), - [aux_sym_cmd_identifier_token26] = ACTIONS(1855), - [aux_sym_cmd_identifier_token27] = ACTIONS(1855), - [aux_sym_cmd_identifier_token28] = ACTIONS(1855), - [aux_sym_cmd_identifier_token29] = ACTIONS(1855), - [aux_sym_cmd_identifier_token30] = ACTIONS(1855), - [aux_sym_cmd_identifier_token31] = ACTIONS(1855), - [aux_sym_cmd_identifier_token32] = ACTIONS(1855), - [aux_sym_cmd_identifier_token33] = ACTIONS(1855), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1855), - [aux_sym_cmd_identifier_token36] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1855), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_export_DASHenv] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1857), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_list] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_make] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_source] = ACTIONS(1855), - [anon_sym_source_DASHenv] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_hide] = ACTIONS(1855), - [anon_sym_hide_DASHenv] = ACTIONS(1855), - [anon_sym_overlay] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(247), - }, - [388] = { - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [398] = { + [sym_comment] = STATE(398), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), [anon_sym_true] = ACTIONS(1058), [anon_sym_false] = ACTIONS(1058), [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), [aux_sym_cmd_identifier_token39] = ACTIONS(1058), [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), [anon_sym_LPAREN] = ACTIONS(1058), [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_list] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), [aux_sym__val_number_decimal_token2] = ACTIONS(1058), [aux_sym__val_number_decimal_token3] = ACTIONS(1058), [aux_sym__val_number_decimal_token4] = ACTIONS(1058), @@ -118609,320 +121236,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1058), [sym__str_back_ticks] = ACTIONS(1058), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), - }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), + [sym__entry_separator] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(3), }, - [390] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(550), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [399] = { + [sym_comment] = STATE(399), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_null] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), + [400] = { + [sym_expr_parenthesized] = STATE(4217), + [sym__spread_parenthesized] = STATE(4750), + [sym_val_range] = STATE(4769), + [sym__val_range] = STATE(7527), + [sym__val_range_with_end] = STATE(7302), + [sym__value] = STATE(4769), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(4456), + [sym__spread_variable] = STATE(4708), + [sym_val_variable] = STATE(4303), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(3935), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym__spread_list] = STATE(4750), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym__cmd_arg] = STATE(4640), + [sym_redirection] = STATE(4650), + [sym__flag] = STATE(4677), + [sym_short_flag] = STATE(4716), + [sym_long_flag] = STATE(4716), + [sym_unquoted] = STATE(4486), + [sym__unquoted_with_expr] = STATE(4763), + [sym__unquoted_anonymous_prefix] = STATE(6878), + [sym_comment] = STATE(400), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [anon_sym_null] = ACTIONS(2039), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [sym__newline] = ACTIONS(2043), + [sym__space] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_err_GT_PIPE] = ACTIONS(2043), + [anon_sym_out_GT_PIPE] = ACTIONS(2043), + [anon_sym_e_GT_PIPE] = ACTIONS(2043), + [anon_sym_o_GT_PIPE] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_DOT_DOT] = ACTIONS(2059), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT2] = ACTIONS(2063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2065), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2061), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(2061), - [aux_sym__val_number_token2] = ACTIONS(2061), - [aux_sym__val_number_token3] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), - [sym__entry_separator] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), + [anon_sym_DOT_DOT_LT] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2069), + [aux_sym__val_number_decimal_token4] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2081), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2089), + [anon_sym_err_GT] = ACTIONS(2091), + [anon_sym_out_GT] = ACTIONS(2091), + [anon_sym_e_GT] = ACTIONS(2091), + [anon_sym_o_GT] = ACTIONS(2091), + [anon_sym_err_PLUSout_GT] = ACTIONS(2091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2091), + [anon_sym_o_PLUSe_GT] = ACTIONS(2091), + [anon_sym_e_PLUSo_GT] = ACTIONS(2091), + [anon_sym_err_GT_GT] = ACTIONS(2091), + [anon_sym_out_GT_GT] = ACTIONS(2091), + [anon_sym_e_GT_GT] = ACTIONS(2091), + [anon_sym_o_GT_GT] = ACTIONS(2091), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(3), }, - [392] = { - [sym_comment] = STATE(392), + [401] = { + [sym_comment] = STATE(401), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_COMMA] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(247), + }, + [402] = { + [sym_comment] = STATE(402), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(2095), + [aux_sym__immediate_decimal_token2] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [403] = { + [sym_comment] = STATE(403), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1034), [anon_sym_let] = ACTIONS(1034), @@ -119005,7 +121736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1034), [anon_sym_new] = ACTIONS(1034), [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(2069), + [anon_sym_QMARK2] = ACTIONS(1036), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), [anon_sym_DOT] = ACTIONS(1034), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), @@ -119024,317 +121755,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [393] = { - [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [aux_sym__immediate_decimal_token2] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [404] = { + [sym_cmd_identifier] = STATE(4514), + [sym_ctrl_if] = STATE(4945), + [sym_block] = STATE(4899), + [sym__expression] = STATE(4899), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3819), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2992), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_command] = STATE(4899), + [sym_comment] = STATE(404), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(2099), + [anon_sym_false] = ACTIONS(2099), + [anon_sym_null] = ACTIONS(2101), + [aux_sym_cmd_identifier_token38] = ACTIONS(2103), + [aux_sym_cmd_identifier_token39] = ACTIONS(2105), + [aux_sym_cmd_identifier_token40] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_if] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(2109), + [aux_sym__val_number_decimal_token2] = ACTIONS(2111), + [aux_sym__val_number_decimal_token3] = ACTIONS(2113), + [aux_sym__val_number_decimal_token4] = ACTIONS(2115), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [405] = { + [sym_comment] = STATE(405), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1070), + [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), + [anon_sym_DOT_DOT2] = ACTIONS(1983), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1985), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token4] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1070), + [sym__entry_separator] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(3), }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_alias] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_let_DASHenv] = ACTIONS(1060), - [anon_sym_mut] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(1060), - [aux_sym_cmd_identifier_token2] = ACTIONS(1060), - [aux_sym_cmd_identifier_token3] = ACTIONS(1060), - [aux_sym_cmd_identifier_token4] = ACTIONS(1060), - [aux_sym_cmd_identifier_token5] = ACTIONS(1060), - [aux_sym_cmd_identifier_token6] = ACTIONS(1060), - [aux_sym_cmd_identifier_token7] = ACTIONS(1060), - [aux_sym_cmd_identifier_token8] = ACTIONS(1060), - [aux_sym_cmd_identifier_token9] = ACTIONS(1060), - [aux_sym_cmd_identifier_token10] = ACTIONS(1060), - [aux_sym_cmd_identifier_token11] = ACTIONS(1060), - [aux_sym_cmd_identifier_token12] = ACTIONS(1060), - [aux_sym_cmd_identifier_token13] = ACTIONS(1060), - [aux_sym_cmd_identifier_token14] = ACTIONS(1060), - [aux_sym_cmd_identifier_token15] = ACTIONS(1060), - [aux_sym_cmd_identifier_token16] = ACTIONS(1060), - [aux_sym_cmd_identifier_token17] = ACTIONS(1060), - [aux_sym_cmd_identifier_token18] = ACTIONS(1060), - [aux_sym_cmd_identifier_token19] = ACTIONS(1060), - [aux_sym_cmd_identifier_token20] = ACTIONS(1060), - [aux_sym_cmd_identifier_token21] = ACTIONS(1060), - [aux_sym_cmd_identifier_token22] = ACTIONS(1060), - [aux_sym_cmd_identifier_token23] = ACTIONS(1060), - [aux_sym_cmd_identifier_token24] = ACTIONS(1060), - [aux_sym_cmd_identifier_token25] = ACTIONS(1060), - [aux_sym_cmd_identifier_token26] = ACTIONS(1060), - [aux_sym_cmd_identifier_token27] = ACTIONS(1060), - [aux_sym_cmd_identifier_token28] = ACTIONS(1060), - [aux_sym_cmd_identifier_token29] = ACTIONS(1060), - [aux_sym_cmd_identifier_token30] = ACTIONS(1060), - [aux_sym_cmd_identifier_token31] = ACTIONS(1060), - [aux_sym_cmd_identifier_token32] = ACTIONS(1060), - [aux_sym_cmd_identifier_token33] = ACTIONS(1060), - [aux_sym_cmd_identifier_token34] = ACTIONS(1060), - [aux_sym_cmd_identifier_token35] = ACTIONS(1060), - [aux_sym_cmd_identifier_token36] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1062), - [aux_sym_cmd_identifier_token40] = ACTIONS(1062), - [anon_sym_def] = ACTIONS(1060), - [anon_sym_export_DASHenv] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_module] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_error] = ACTIONS(1060), - [anon_sym_list] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_in] = ACTIONS(1060), - [anon_sym_loop] = ACTIONS(1060), - [anon_sym_make] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_catch] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_source] = ACTIONS(1060), - [anon_sym_source_DASHenv] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_hide] = ACTIONS(1060), - [anon_sym_hide_DASHenv] = ACTIONS(1060), - [anon_sym_overlay] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token3] = ACTIONS(1062), - [aux_sym__val_number_decimal_token4] = ACTIONS(1062), - [aux_sym__val_number_token1] = ACTIONS(1062), - [aux_sym__val_number_token2] = ACTIONS(1062), - [aux_sym__val_number_token3] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym__str_single_quotes] = ACTIONS(1062), - [sym__str_back_ticks] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1060), + [406] = { + [sym_cell_path] = STATE(666), + [sym_path] = STATE(578), + [sym_comment] = STATE(406), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1912), + [anon_sym_alias] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_let_DASHenv] = ACTIONS(1912), + [anon_sym_mut] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [aux_sym_cmd_identifier_token1] = ACTIONS(1912), + [aux_sym_cmd_identifier_token2] = ACTIONS(1912), + [aux_sym_cmd_identifier_token3] = ACTIONS(1912), + [aux_sym_cmd_identifier_token4] = ACTIONS(1912), + [aux_sym_cmd_identifier_token5] = ACTIONS(1912), + [aux_sym_cmd_identifier_token6] = ACTIONS(1912), + [aux_sym_cmd_identifier_token7] = ACTIONS(1912), + [aux_sym_cmd_identifier_token8] = ACTIONS(1912), + [aux_sym_cmd_identifier_token9] = ACTIONS(1912), + [aux_sym_cmd_identifier_token10] = ACTIONS(1912), + [aux_sym_cmd_identifier_token11] = ACTIONS(1912), + [aux_sym_cmd_identifier_token12] = ACTIONS(1912), + [aux_sym_cmd_identifier_token13] = ACTIONS(1912), + [aux_sym_cmd_identifier_token14] = ACTIONS(1912), + [aux_sym_cmd_identifier_token15] = ACTIONS(1912), + [aux_sym_cmd_identifier_token16] = ACTIONS(1912), + [aux_sym_cmd_identifier_token17] = ACTIONS(1912), + [aux_sym_cmd_identifier_token18] = ACTIONS(1912), + [aux_sym_cmd_identifier_token19] = ACTIONS(1912), + [aux_sym_cmd_identifier_token20] = ACTIONS(1912), + [aux_sym_cmd_identifier_token21] = ACTIONS(1912), + [aux_sym_cmd_identifier_token22] = ACTIONS(1912), + [aux_sym_cmd_identifier_token23] = ACTIONS(1912), + [aux_sym_cmd_identifier_token24] = ACTIONS(1912), + [aux_sym_cmd_identifier_token25] = ACTIONS(1912), + [aux_sym_cmd_identifier_token26] = ACTIONS(1912), + [aux_sym_cmd_identifier_token27] = ACTIONS(1912), + [aux_sym_cmd_identifier_token28] = ACTIONS(1912), + [aux_sym_cmd_identifier_token29] = ACTIONS(1912), + [aux_sym_cmd_identifier_token30] = ACTIONS(1912), + [aux_sym_cmd_identifier_token31] = ACTIONS(1912), + [aux_sym_cmd_identifier_token32] = ACTIONS(1912), + [aux_sym_cmd_identifier_token33] = ACTIONS(1912), + [aux_sym_cmd_identifier_token34] = ACTIONS(1912), + [aux_sym_cmd_identifier_token35] = ACTIONS(1912), + [aux_sym_cmd_identifier_token36] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), + [aux_sym_cmd_identifier_token38] = ACTIONS(1912), + [aux_sym_cmd_identifier_token39] = ACTIONS(1914), + [aux_sym_cmd_identifier_token40] = ACTIONS(1914), + [anon_sym_def] = ACTIONS(1912), + [anon_sym_export_DASHenv] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_module] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_error] = ACTIONS(1912), + [anon_sym_list] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_make] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_else] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1912), + [anon_sym_catch] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_source] = ACTIONS(1912), + [anon_sym_source_DASHenv] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_hide] = ACTIONS(1912), + [anon_sym_hide_DASHenv] = ACTIONS(1912), + [anon_sym_overlay] = ACTIONS(1912), + [anon_sym_new] = ACTIONS(1912), + [anon_sym_as] = ACTIONS(1912), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1912), + [aux_sym__val_number_decimal_token2] = ACTIONS(1914), + [aux_sym__val_number_decimal_token3] = ACTIONS(1914), + [aux_sym__val_number_decimal_token4] = ACTIONS(1914), + [aux_sym__val_number_token1] = ACTIONS(1914), + [aux_sym__val_number_token2] = ACTIONS(1914), + [aux_sym__val_number_token3] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym__str_single_quotes] = ACTIONS(1914), + [sym__str_back_ticks] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(247), }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_list] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_new] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), + [407] = { + [sym_cell_path] = STATE(669), + [sym_path] = STATE(578), + [sym_comment] = STATE(407), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_alias] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_let_DASHenv] = ACTIONS(1822), + [anon_sym_mut] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [aux_sym_cmd_identifier_token1] = ACTIONS(1822), + [aux_sym_cmd_identifier_token2] = ACTIONS(1822), + [aux_sym_cmd_identifier_token3] = ACTIONS(1822), + [aux_sym_cmd_identifier_token4] = ACTIONS(1822), + [aux_sym_cmd_identifier_token5] = ACTIONS(1822), + [aux_sym_cmd_identifier_token6] = ACTIONS(1822), + [aux_sym_cmd_identifier_token7] = ACTIONS(1822), + [aux_sym_cmd_identifier_token8] = ACTIONS(1822), + [aux_sym_cmd_identifier_token9] = ACTIONS(1822), + [aux_sym_cmd_identifier_token10] = ACTIONS(1822), + [aux_sym_cmd_identifier_token11] = ACTIONS(1822), + [aux_sym_cmd_identifier_token12] = ACTIONS(1822), + [aux_sym_cmd_identifier_token13] = ACTIONS(1822), + [aux_sym_cmd_identifier_token14] = ACTIONS(1822), + [aux_sym_cmd_identifier_token15] = ACTIONS(1822), + [aux_sym_cmd_identifier_token16] = ACTIONS(1822), + [aux_sym_cmd_identifier_token17] = ACTIONS(1822), + [aux_sym_cmd_identifier_token18] = ACTIONS(1822), + [aux_sym_cmd_identifier_token19] = ACTIONS(1822), + [aux_sym_cmd_identifier_token20] = ACTIONS(1822), + [aux_sym_cmd_identifier_token21] = ACTIONS(1822), + [aux_sym_cmd_identifier_token22] = ACTIONS(1822), + [aux_sym_cmd_identifier_token23] = ACTIONS(1822), + [aux_sym_cmd_identifier_token24] = ACTIONS(1822), + [aux_sym_cmd_identifier_token25] = ACTIONS(1822), + [aux_sym_cmd_identifier_token26] = ACTIONS(1822), + [aux_sym_cmd_identifier_token27] = ACTIONS(1822), + [aux_sym_cmd_identifier_token28] = ACTIONS(1822), + [aux_sym_cmd_identifier_token29] = ACTIONS(1822), + [aux_sym_cmd_identifier_token30] = ACTIONS(1822), + [aux_sym_cmd_identifier_token31] = ACTIONS(1822), + [aux_sym_cmd_identifier_token32] = ACTIONS(1822), + [aux_sym_cmd_identifier_token33] = ACTIONS(1822), + [aux_sym_cmd_identifier_token34] = ACTIONS(1822), + [aux_sym_cmd_identifier_token35] = ACTIONS(1822), + [aux_sym_cmd_identifier_token36] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1822), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1822), + [anon_sym_export_DASHenv] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1822), + [anon_sym_list] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_make] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_source] = ACTIONS(1822), + [anon_sym_source_DASHenv] = ACTIONS(1822), + [anon_sym_register] = ACTIONS(1822), + [anon_sym_hide] = ACTIONS(1822), + [anon_sym_hide_DASHenv] = ACTIONS(1822), + [anon_sym_overlay] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1822), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(247), }, - [396] = { - [sym_comment] = STATE(396), + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_make] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(2117), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), + [aux_sym_record_entry_token1] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(247), + }, + [409] = { + [sym_comment] = STATE(409), [anon_sym_export] = ACTIONS(1028), [anon_sym_alias] = ACTIONS(1028), [anon_sym_let] = ACTIONS(1028), @@ -119417,7 +122354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1028), [anon_sym_new] = ACTIONS(1028), [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(2073), + [anon_sym_QMARK2] = ACTIONS(2119), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), [anon_sym_DOT] = ACTIONS(1028), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), @@ -119436,244 +122373,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, - [397] = { - [sym_cell_path] = STATE(633), - [sym_path] = STATE(550), - [sym_comment] = STATE(397), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1894), - [aux_sym_cmd_identifier_token4] = ACTIONS(1894), - [aux_sym_cmd_identifier_token5] = ACTIONS(1894), - [aux_sym_cmd_identifier_token6] = ACTIONS(1894), - [aux_sym_cmd_identifier_token7] = ACTIONS(1894), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1894), - [aux_sym_cmd_identifier_token11] = ACTIONS(1894), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1894), - [aux_sym_cmd_identifier_token17] = ACTIONS(1894), - [aux_sym_cmd_identifier_token18] = ACTIONS(1894), - [aux_sym_cmd_identifier_token19] = ACTIONS(1894), - [aux_sym_cmd_identifier_token20] = ACTIONS(1894), - [aux_sym_cmd_identifier_token21] = ACTIONS(1894), - [aux_sym_cmd_identifier_token22] = ACTIONS(1894), - [aux_sym_cmd_identifier_token23] = ACTIONS(1894), - [aux_sym_cmd_identifier_token24] = ACTIONS(1894), - [aux_sym_cmd_identifier_token25] = ACTIONS(1894), - [aux_sym_cmd_identifier_token26] = ACTIONS(1894), - [aux_sym_cmd_identifier_token27] = ACTIONS(1894), - [aux_sym_cmd_identifier_token28] = ACTIONS(1894), - [aux_sym_cmd_identifier_token29] = ACTIONS(1894), - [aux_sym_cmd_identifier_token30] = ACTIONS(1894), - [aux_sym_cmd_identifier_token31] = ACTIONS(1894), - [aux_sym_cmd_identifier_token32] = ACTIONS(1894), - [aux_sym_cmd_identifier_token33] = ACTIONS(1894), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1894), - [aux_sym_cmd_identifier_token36] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_list] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_new] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1894), + [410] = { + [sym_cell_path] = STATE(674), + [sym_path] = STATE(578), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1828), + [anon_sym_alias] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_let_DASHenv] = ACTIONS(1828), + [anon_sym_mut] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [aux_sym_cmd_identifier_token1] = ACTIONS(1828), + [aux_sym_cmd_identifier_token2] = ACTIONS(1828), + [aux_sym_cmd_identifier_token3] = ACTIONS(1828), + [aux_sym_cmd_identifier_token4] = ACTIONS(1828), + [aux_sym_cmd_identifier_token5] = ACTIONS(1828), + [aux_sym_cmd_identifier_token6] = ACTIONS(1828), + [aux_sym_cmd_identifier_token7] = ACTIONS(1828), + [aux_sym_cmd_identifier_token8] = ACTIONS(1828), + [aux_sym_cmd_identifier_token9] = ACTIONS(1828), + [aux_sym_cmd_identifier_token10] = ACTIONS(1828), + [aux_sym_cmd_identifier_token11] = ACTIONS(1828), + [aux_sym_cmd_identifier_token12] = ACTIONS(1828), + [aux_sym_cmd_identifier_token13] = ACTIONS(1828), + [aux_sym_cmd_identifier_token14] = ACTIONS(1828), + [aux_sym_cmd_identifier_token15] = ACTIONS(1828), + [aux_sym_cmd_identifier_token16] = ACTIONS(1828), + [aux_sym_cmd_identifier_token17] = ACTIONS(1828), + [aux_sym_cmd_identifier_token18] = ACTIONS(1828), + [aux_sym_cmd_identifier_token19] = ACTIONS(1828), + [aux_sym_cmd_identifier_token20] = ACTIONS(1828), + [aux_sym_cmd_identifier_token21] = ACTIONS(1828), + [aux_sym_cmd_identifier_token22] = ACTIONS(1828), + [aux_sym_cmd_identifier_token23] = ACTIONS(1828), + [aux_sym_cmd_identifier_token24] = ACTIONS(1828), + [aux_sym_cmd_identifier_token25] = ACTIONS(1828), + [aux_sym_cmd_identifier_token26] = ACTIONS(1828), + [aux_sym_cmd_identifier_token27] = ACTIONS(1828), + [aux_sym_cmd_identifier_token28] = ACTIONS(1828), + [aux_sym_cmd_identifier_token29] = ACTIONS(1828), + [aux_sym_cmd_identifier_token30] = ACTIONS(1828), + [aux_sym_cmd_identifier_token31] = ACTIONS(1828), + [aux_sym_cmd_identifier_token32] = ACTIONS(1828), + [aux_sym_cmd_identifier_token33] = ACTIONS(1828), + [aux_sym_cmd_identifier_token34] = ACTIONS(1828), + [aux_sym_cmd_identifier_token35] = ACTIONS(1828), + [aux_sym_cmd_identifier_token36] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [anon_sym_null] = ACTIONS(1830), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1830), + [aux_sym_cmd_identifier_token40] = ACTIONS(1830), + [anon_sym_def] = ACTIONS(1828), + [anon_sym_export_DASHenv] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym_module] = ACTIONS(1828), + [anon_sym_use] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_error] = ACTIONS(1828), + [anon_sym_list] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_in] = ACTIONS(1828), + [anon_sym_loop] = ACTIONS(1828), + [anon_sym_make] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_match] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1828), + [anon_sym_catch] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_source] = ACTIONS(1828), + [anon_sym_source_DASHenv] = ACTIONS(1828), + [anon_sym_register] = ACTIONS(1828), + [anon_sym_hide] = ACTIONS(1828), + [anon_sym_hide_DASHenv] = ACTIONS(1828), + [anon_sym_overlay] = ACTIONS(1828), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1830), + [aux_sym__val_number_decimal_token1] = ACTIONS(1828), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1830), + [aux_sym__val_number_decimal_token4] = ACTIONS(1830), + [aux_sym__val_number_token1] = ACTIONS(1830), + [aux_sym__val_number_token2] = ACTIONS(1830), + [aux_sym__val_number_token3] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym__str_single_quotes] = ACTIONS(1830), + [sym__str_back_ticks] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1828), [anon_sym_POUND] = ACTIONS(247), }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1076), - [anon_sym_alias] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_let_DASHenv] = ACTIONS(1076), - [anon_sym_mut] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1076), - [aux_sym_cmd_identifier_token2] = ACTIONS(1076), - [aux_sym_cmd_identifier_token3] = ACTIONS(1076), - [aux_sym_cmd_identifier_token4] = ACTIONS(1076), - [aux_sym_cmd_identifier_token5] = ACTIONS(1076), - [aux_sym_cmd_identifier_token6] = ACTIONS(1076), - [aux_sym_cmd_identifier_token7] = ACTIONS(1076), - [aux_sym_cmd_identifier_token8] = ACTIONS(1076), - [aux_sym_cmd_identifier_token9] = ACTIONS(1076), - [aux_sym_cmd_identifier_token10] = ACTIONS(1076), - [aux_sym_cmd_identifier_token11] = ACTIONS(1076), - [aux_sym_cmd_identifier_token12] = ACTIONS(1076), - [aux_sym_cmd_identifier_token13] = ACTIONS(1076), - [aux_sym_cmd_identifier_token14] = ACTIONS(1076), - [aux_sym_cmd_identifier_token15] = ACTIONS(1076), - [aux_sym_cmd_identifier_token16] = ACTIONS(1076), - [aux_sym_cmd_identifier_token17] = ACTIONS(1076), - [aux_sym_cmd_identifier_token18] = ACTIONS(1076), - [aux_sym_cmd_identifier_token19] = ACTIONS(1076), - [aux_sym_cmd_identifier_token20] = ACTIONS(1076), - [aux_sym_cmd_identifier_token21] = ACTIONS(1076), - [aux_sym_cmd_identifier_token22] = ACTIONS(1076), - [aux_sym_cmd_identifier_token23] = ACTIONS(1076), - [aux_sym_cmd_identifier_token24] = ACTIONS(1076), - [aux_sym_cmd_identifier_token25] = ACTIONS(1076), - [aux_sym_cmd_identifier_token26] = ACTIONS(1076), - [aux_sym_cmd_identifier_token27] = ACTIONS(1076), - [aux_sym_cmd_identifier_token28] = ACTIONS(1076), - [aux_sym_cmd_identifier_token29] = ACTIONS(1076), - [aux_sym_cmd_identifier_token30] = ACTIONS(1076), - [aux_sym_cmd_identifier_token31] = ACTIONS(1076), - [aux_sym_cmd_identifier_token32] = ACTIONS(1076), - [aux_sym_cmd_identifier_token33] = ACTIONS(1076), - [aux_sym_cmd_identifier_token34] = ACTIONS(1076), - [aux_sym_cmd_identifier_token35] = ACTIONS(1076), - [aux_sym_cmd_identifier_token36] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1076), - [anon_sym_export_DASHenv] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1076), - [anon_sym_list] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_loop] = ACTIONS(1076), - [anon_sym_make] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_catch] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_source] = ACTIONS(1076), - [anon_sym_source_DASHenv] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_hide] = ACTIONS(1076), - [anon_sym_hide_DASHenv] = ACTIONS(1076), - [anon_sym_overlay] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1997), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token3] = ACTIONS(1076), - [aux_sym__val_number_decimal_token4] = ACTIONS(1076), - [aux_sym__val_number_token1] = ACTIONS(1076), - [aux_sym__val_number_token2] = ACTIONS(1076), - [aux_sym__val_number_token3] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym__str_single_quotes] = ACTIONS(1076), - [sym__str_back_ticks] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), - [sym__entry_separator] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_POUND] = ACTIONS(3), - }, - [399] = { - [sym_cmd_identifier] = STATE(4558), - [sym__expression] = STATE(3729), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3774), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1442), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4903), - [sym_comment] = STATE(399), - [aux_sym_pipe_element_repeat2] = STATE(1032), + [411] = { + [sym_cmd_identifier] = STATE(4514), + [sym__expression] = STATE(3782), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3836), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1465), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(4810), + [sym_comment] = STATE(411), + [aux_sym_pipe_element_repeat2] = STATE(1060), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -119717,684 +122551,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(377), [aux_sym_cmd_identifier_token40] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [400] = { - [sym_cell_path] = STATE(623), - [sym_path] = STATE(550), - [sym_comment] = STATE(400), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_list] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_new] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(247), - }, - [401] = { - [sym_cell_path] = STATE(645), - [sym_path] = STATE(550), - [sym_comment] = STATE(401), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_list] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_new] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [anon_sym_PLUS] = ACTIONS(1965), + [412] = { + [sym_cell_path] = STATE(676), + [sym_path] = STATE(578), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_alias] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_let_DASHenv] = ACTIONS(1832), + [anon_sym_mut] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [aux_sym_cmd_identifier_token1] = ACTIONS(1832), + [aux_sym_cmd_identifier_token2] = ACTIONS(1832), + [aux_sym_cmd_identifier_token3] = ACTIONS(1832), + [aux_sym_cmd_identifier_token4] = ACTIONS(1832), + [aux_sym_cmd_identifier_token5] = ACTIONS(1832), + [aux_sym_cmd_identifier_token6] = ACTIONS(1832), + [aux_sym_cmd_identifier_token7] = ACTIONS(1832), + [aux_sym_cmd_identifier_token8] = ACTIONS(1832), + [aux_sym_cmd_identifier_token9] = ACTIONS(1832), + [aux_sym_cmd_identifier_token10] = ACTIONS(1832), + [aux_sym_cmd_identifier_token11] = ACTIONS(1832), + [aux_sym_cmd_identifier_token12] = ACTIONS(1832), + [aux_sym_cmd_identifier_token13] = ACTIONS(1832), + [aux_sym_cmd_identifier_token14] = ACTIONS(1832), + [aux_sym_cmd_identifier_token15] = ACTIONS(1832), + [aux_sym_cmd_identifier_token16] = ACTIONS(1832), + [aux_sym_cmd_identifier_token17] = ACTIONS(1832), + [aux_sym_cmd_identifier_token18] = ACTIONS(1832), + [aux_sym_cmd_identifier_token19] = ACTIONS(1832), + [aux_sym_cmd_identifier_token20] = ACTIONS(1832), + [aux_sym_cmd_identifier_token21] = ACTIONS(1832), + [aux_sym_cmd_identifier_token22] = ACTIONS(1832), + [aux_sym_cmd_identifier_token23] = ACTIONS(1832), + [aux_sym_cmd_identifier_token24] = ACTIONS(1832), + [aux_sym_cmd_identifier_token25] = ACTIONS(1832), + [aux_sym_cmd_identifier_token26] = ACTIONS(1832), + [aux_sym_cmd_identifier_token27] = ACTIONS(1832), + [aux_sym_cmd_identifier_token28] = ACTIONS(1832), + [aux_sym_cmd_identifier_token29] = ACTIONS(1832), + [aux_sym_cmd_identifier_token30] = ACTIONS(1832), + [aux_sym_cmd_identifier_token31] = ACTIONS(1832), + [aux_sym_cmd_identifier_token32] = ACTIONS(1832), + [aux_sym_cmd_identifier_token33] = ACTIONS(1832), + [aux_sym_cmd_identifier_token34] = ACTIONS(1832), + [aux_sym_cmd_identifier_token35] = ACTIONS(1832), + [aux_sym_cmd_identifier_token36] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [anon_sym_null] = ACTIONS(1834), + [aux_sym_cmd_identifier_token38] = ACTIONS(1832), + [aux_sym_cmd_identifier_token39] = ACTIONS(1834), + [aux_sym_cmd_identifier_token40] = ACTIONS(1834), + [anon_sym_def] = ACTIONS(1832), + [anon_sym_export_DASHenv] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_error] = ACTIONS(1832), + [anon_sym_list] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_make] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_catch] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_source] = ACTIONS(1832), + [anon_sym_source_DASHenv] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_hide] = ACTIONS(1832), + [anon_sym_hide_DASHenv] = ACTIONS(1832), + [anon_sym_overlay] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1834), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1834), + [aux_sym__val_number_decimal_token1] = ACTIONS(1832), + [aux_sym__val_number_decimal_token2] = ACTIONS(1834), + [aux_sym__val_number_decimal_token3] = ACTIONS(1834), + [aux_sym__val_number_decimal_token4] = ACTIONS(1834), + [aux_sym__val_number_token1] = ACTIONS(1834), + [aux_sym__val_number_token2] = ACTIONS(1834), + [aux_sym__val_number_token3] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym__str_single_quotes] = ACTIONS(1834), + [sym__str_back_ticks] = ACTIONS(1834), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1832), [anon_sym_POUND] = ACTIONS(247), }, - [402] = { - [sym_comment] = STATE(402), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [403] = { - [sym_cell_path] = STATE(594), - [sym_path] = STATE(550), - [sym_comment] = STATE(403), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), + [413] = { + [sym_cmd_identifier] = STATE(4801), + [sym__expression] = STATE(3807), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3832), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1568), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_env_var] = STATE(7340), + [sym_command] = STATE(5150), + [sym_comment] = STATE(413), + [aux_sym_pipe_element_repeat2] = STATE(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [404] = { - [sym_expr_parenthesized] = STATE(4195), - [sym__spread_parenthesized] = STATE(4666), - [sym_val_range] = STATE(4668), - [sym__val_range] = STATE(7733), - [sym__val_range_with_end] = STATE(7391), - [sym__value] = STATE(4668), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(4396), - [sym__spread_variable] = STATE(4669), - [sym_val_variable] = STATE(4253), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(3869), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym__spread_list] = STATE(4666), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym__cmd_arg] = STATE(4672), - [sym_redirection] = STATE(4676), - [sym__flag] = STATE(4681), - [sym_short_flag] = STATE(4627), - [sym_long_flag] = STATE(4627), - [sym_unquoted] = STATE(4290), - [sym__unquoted_with_expr] = STATE(4687), - [sym__unquoted_anonymous_prefix] = STATE(6985), - [sym_comment] = STATE(404), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2079), - [aux_sym_cmd_identifier_token40] = ACTIONS(2079), - [sym__newline] = ACTIONS(2081), - [sym__space] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_err_GT_PIPE] = ACTIONS(2081), - [anon_sym_out_GT_PIPE] = ACTIONS(2081), - [anon_sym_e_GT_PIPE] = ACTIONS(2081), - [anon_sym_o_GT_PIPE] = ACTIONS(2081), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2081), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2081), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2081), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2093), - [aux_sym_ctrl_match_token1] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2103), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2107), - [aux_sym__val_number_decimal_token4] = ACTIONS(2109), - [aux_sym__val_number_token1] = ACTIONS(2111), - [aux_sym__val_number_token2] = ACTIONS(2111), - [aux_sym__val_number_token3] = ACTIONS(2111), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2123), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2127), - [anon_sym_err_GT] = ACTIONS(2129), - [anon_sym_out_GT] = ACTIONS(2129), - [anon_sym_e_GT] = ACTIONS(2129), - [anon_sym_o_GT] = ACTIONS(2129), - [anon_sym_err_PLUSout_GT] = ACTIONS(2129), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2129), - [anon_sym_o_PLUSe_GT] = ACTIONS(2129), - [anon_sym_e_PLUSo_GT] = ACTIONS(2129), - [anon_sym_err_GT_GT] = ACTIONS(2129), - [anon_sym_out_GT_GT] = ACTIONS(2129), - [anon_sym_e_GT_GT] = ACTIONS(2129), - [anon_sym_o_GT_GT] = ACTIONS(2129), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2129), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2129), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2129), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2129), - [aux_sym_unquoted_token1] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(3), - }, - [405] = { - [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2133), - [aux_sym_cmd_identifier_token3] = ACTIONS(2133), - [aux_sym_cmd_identifier_token4] = ACTIONS(2133), - [aux_sym_cmd_identifier_token5] = ACTIONS(2133), - [aux_sym_cmd_identifier_token6] = ACTIONS(2133), - [aux_sym_cmd_identifier_token7] = ACTIONS(2133), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2133), - [aux_sym_cmd_identifier_token11] = ACTIONS(2133), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2133), - [aux_sym_cmd_identifier_token17] = ACTIONS(2133), - [aux_sym_cmd_identifier_token18] = ACTIONS(2133), - [aux_sym_cmd_identifier_token19] = ACTIONS(2133), - [aux_sym_cmd_identifier_token20] = ACTIONS(2133), - [aux_sym_cmd_identifier_token21] = ACTIONS(2133), - [aux_sym_cmd_identifier_token22] = ACTIONS(2133), - [aux_sym_cmd_identifier_token23] = ACTIONS(2133), - [aux_sym_cmd_identifier_token24] = ACTIONS(2133), - [aux_sym_cmd_identifier_token25] = ACTIONS(2133), - [aux_sym_cmd_identifier_token26] = ACTIONS(2133), - [aux_sym_cmd_identifier_token27] = ACTIONS(2133), - [aux_sym_cmd_identifier_token28] = ACTIONS(2133), - [aux_sym_cmd_identifier_token29] = ACTIONS(2133), - [aux_sym_cmd_identifier_token30] = ACTIONS(2133), - [aux_sym_cmd_identifier_token31] = ACTIONS(2133), - [aux_sym_cmd_identifier_token32] = ACTIONS(2133), - [aux_sym_cmd_identifier_token33] = ACTIONS(2133), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2133), - [aux_sym_cmd_identifier_token36] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2133), - [aux_sym_cmd_identifier_token40] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), - [anon_sym_DOT_DOT2] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2133), - [aux_sym__val_number_decimal_token3] = ACTIONS(2133), - [aux_sym__val_number_decimal_token4] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), - [sym__entry_separator] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2133), + [414] = { + [sym_comment] = STATE(414), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [aux_sym__immediate_decimal_token2] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [406] = { - [sym_cmd_identifier] = STATE(4711), - [sym__expression] = STATE(3766), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3781), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1497), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_env_var] = STATE(7300), - [sym_command] = STATE(4965), - [sym_comment] = STATE(406), - [aux_sym_pipe_element_repeat2] = STATE(1032), + [415] = { + [sym_cmd_identifier] = STATE(4801), + [sym_ctrl_if] = STATE(5057), + [sym_block] = STATE(5058), + [sym__expression] = STATE(5058), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3833), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(3097), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_command] = STATE(5058), + [sym_comment] = STATE(415), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -120417,7 +122942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), [aux_sym_cmd_identifier_token24] = ACTIONS(21), [aux_sym_cmd_identifier_token25] = ACTIONS(21), [aux_sym_cmd_identifier_token26] = ACTIONS(21), @@ -120431,25 +122956,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(21), [aux_sym_cmd_identifier_token35] = ACTIONS(21), [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [anon_sym_null] = ACTIONS(2125), + [aux_sym_cmd_identifier_token38] = ACTIONS(2127), + [aux_sym_cmd_identifier_token39] = ACTIONS(2129), + [aux_sym_cmd_identifier_token40] = ACTIONS(2129), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_if] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(2131), [anon_sym_DOT_DOT] = ACTIONS(73), [aux_sym_expr_unary_token1] = ACTIONS(91), [anon_sym_DOT_DOT_EQ] = ACTIONS(93), [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2139), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -120462,1548 +122988,3915 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [407] = { - [sym_comment] = STATE(407), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_alias] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_let_DASHenv] = ACTIONS(1625), - [anon_sym_mut] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [aux_sym_cmd_identifier_token1] = ACTIONS(1625), - [aux_sym_cmd_identifier_token2] = ACTIONS(1625), - [aux_sym_cmd_identifier_token3] = ACTIONS(1625), - [aux_sym_cmd_identifier_token4] = ACTIONS(1625), - [aux_sym_cmd_identifier_token5] = ACTIONS(1625), - [aux_sym_cmd_identifier_token6] = ACTIONS(1625), - [aux_sym_cmd_identifier_token7] = ACTIONS(1625), - [aux_sym_cmd_identifier_token8] = ACTIONS(1625), - [aux_sym_cmd_identifier_token9] = ACTIONS(1625), - [aux_sym_cmd_identifier_token10] = ACTIONS(1625), - [aux_sym_cmd_identifier_token11] = ACTIONS(1625), - [aux_sym_cmd_identifier_token12] = ACTIONS(1625), - [aux_sym_cmd_identifier_token13] = ACTIONS(1625), - [aux_sym_cmd_identifier_token14] = ACTIONS(1625), - [aux_sym_cmd_identifier_token15] = ACTIONS(1625), - [aux_sym_cmd_identifier_token16] = ACTIONS(1625), - [aux_sym_cmd_identifier_token17] = ACTIONS(1625), - [aux_sym_cmd_identifier_token18] = ACTIONS(1625), - [aux_sym_cmd_identifier_token19] = ACTIONS(1625), - [aux_sym_cmd_identifier_token20] = ACTIONS(1625), - [aux_sym_cmd_identifier_token21] = ACTIONS(1625), - [aux_sym_cmd_identifier_token22] = ACTIONS(1625), - [aux_sym_cmd_identifier_token23] = ACTIONS(1625), - [aux_sym_cmd_identifier_token24] = ACTIONS(1625), - [aux_sym_cmd_identifier_token25] = ACTIONS(1625), - [aux_sym_cmd_identifier_token26] = ACTIONS(1625), - [aux_sym_cmd_identifier_token27] = ACTIONS(1625), - [aux_sym_cmd_identifier_token28] = ACTIONS(1625), - [aux_sym_cmd_identifier_token29] = ACTIONS(1625), - [aux_sym_cmd_identifier_token30] = ACTIONS(1625), - [aux_sym_cmd_identifier_token31] = ACTIONS(1625), - [aux_sym_cmd_identifier_token32] = ACTIONS(1625), - [aux_sym_cmd_identifier_token33] = ACTIONS(1625), - [aux_sym_cmd_identifier_token34] = ACTIONS(1625), - [aux_sym_cmd_identifier_token35] = ACTIONS(1625), - [aux_sym_cmd_identifier_token36] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [aux_sym_cmd_identifier_token38] = ACTIONS(1625), - [aux_sym_cmd_identifier_token39] = ACTIONS(1625), - [aux_sym_cmd_identifier_token40] = ACTIONS(1625), - [anon_sym_def] = ACTIONS(1625), - [anon_sym_export_DASHenv] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_error] = ACTIONS(1625), - [anon_sym_list] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_in] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_make] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_source] = ACTIONS(1625), - [anon_sym_source_DASHenv] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_hide] = ACTIONS(1625), - [anon_sym_hide_DASHenv] = ACTIONS(1625), - [anon_sym_overlay] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_as] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1625), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1625), - [aux_sym__val_number_decimal_token3] = ACTIONS(1625), - [aux_sym__val_number_decimal_token4] = ACTIONS(1625), - [aux_sym__val_number_token1] = ACTIONS(1625), - [aux_sym__val_number_token2] = ACTIONS(1625), - [aux_sym__val_number_token3] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [sym__str_single_quotes] = ACTIONS(1625), - [sym__str_back_ticks] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1625), + [416] = { + [sym_cell_path] = STATE(646), + [sym_path] = STATE(578), + [sym_comment] = STATE(416), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [aux_sym_cmd_identifier_token1] = ACTIONS(1005), + [aux_sym_cmd_identifier_token2] = ACTIONS(1005), + [aux_sym_cmd_identifier_token3] = ACTIONS(1005), + [aux_sym_cmd_identifier_token4] = ACTIONS(1005), + [aux_sym_cmd_identifier_token5] = ACTIONS(1005), + [aux_sym_cmd_identifier_token6] = ACTIONS(1005), + [aux_sym_cmd_identifier_token7] = ACTIONS(1005), + [aux_sym_cmd_identifier_token8] = ACTIONS(1005), + [aux_sym_cmd_identifier_token9] = ACTIONS(1005), + [aux_sym_cmd_identifier_token10] = ACTIONS(1005), + [aux_sym_cmd_identifier_token11] = ACTIONS(1005), + [aux_sym_cmd_identifier_token12] = ACTIONS(1005), + [aux_sym_cmd_identifier_token13] = ACTIONS(1005), + [aux_sym_cmd_identifier_token14] = ACTIONS(1005), + [aux_sym_cmd_identifier_token15] = ACTIONS(1005), + [aux_sym_cmd_identifier_token16] = ACTIONS(1005), + [aux_sym_cmd_identifier_token17] = ACTIONS(1005), + [aux_sym_cmd_identifier_token18] = ACTIONS(1005), + [aux_sym_cmd_identifier_token19] = ACTIONS(1005), + [aux_sym_cmd_identifier_token20] = ACTIONS(1005), + [aux_sym_cmd_identifier_token21] = ACTIONS(1005), + [aux_sym_cmd_identifier_token22] = ACTIONS(1005), + [aux_sym_cmd_identifier_token23] = ACTIONS(1005), + [aux_sym_cmd_identifier_token24] = ACTIONS(1005), + [aux_sym_cmd_identifier_token25] = ACTIONS(1005), + [aux_sym_cmd_identifier_token26] = ACTIONS(1005), + [aux_sym_cmd_identifier_token27] = ACTIONS(1005), + [aux_sym_cmd_identifier_token28] = ACTIONS(1005), + [aux_sym_cmd_identifier_token29] = ACTIONS(1005), + [aux_sym_cmd_identifier_token30] = ACTIONS(1005), + [aux_sym_cmd_identifier_token31] = ACTIONS(1005), + [aux_sym_cmd_identifier_token32] = ACTIONS(1005), + [aux_sym_cmd_identifier_token33] = ACTIONS(1005), + [aux_sym_cmd_identifier_token34] = ACTIONS(1005), + [aux_sym_cmd_identifier_token35] = ACTIONS(1005), + [aux_sym_cmd_identifier_token36] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1005), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_make] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_catch] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(247), + }, + [417] = { + [sym_cell_path] = STATE(648), + [sym_path] = STATE(578), + [sym_comment] = STATE(417), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_let_DASHenv] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [aux_sym_cmd_identifier_token2] = ACTIONS(1931), + [aux_sym_cmd_identifier_token3] = ACTIONS(1931), + [aux_sym_cmd_identifier_token4] = ACTIONS(1931), + [aux_sym_cmd_identifier_token5] = ACTIONS(1931), + [aux_sym_cmd_identifier_token6] = ACTIONS(1931), + [aux_sym_cmd_identifier_token7] = ACTIONS(1931), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1931), + [aux_sym_cmd_identifier_token11] = ACTIONS(1931), + [aux_sym_cmd_identifier_token12] = ACTIONS(1931), + [aux_sym_cmd_identifier_token13] = ACTIONS(1931), + [aux_sym_cmd_identifier_token14] = ACTIONS(1931), + [aux_sym_cmd_identifier_token15] = ACTIONS(1931), + [aux_sym_cmd_identifier_token16] = ACTIONS(1931), + [aux_sym_cmd_identifier_token17] = ACTIONS(1931), + [aux_sym_cmd_identifier_token18] = ACTIONS(1931), + [aux_sym_cmd_identifier_token19] = ACTIONS(1931), + [aux_sym_cmd_identifier_token20] = ACTIONS(1931), + [aux_sym_cmd_identifier_token21] = ACTIONS(1931), + [aux_sym_cmd_identifier_token22] = ACTIONS(1931), + [aux_sym_cmd_identifier_token23] = ACTIONS(1931), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1931), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1931), + [aux_sym_cmd_identifier_token28] = ACTIONS(1931), + [aux_sym_cmd_identifier_token29] = ACTIONS(1931), + [aux_sym_cmd_identifier_token30] = ACTIONS(1931), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1933), + [aux_sym_cmd_identifier_token40] = ACTIONS(1933), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_export_DASHenv] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_list] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_make] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_source] = ACTIONS(1931), + [anon_sym_source_DASHenv] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(247), + }, + [418] = { + [sym_comment] = STATE(418), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [aux_sym_cmd_identifier_token1] = ACTIONS(1675), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1675), + [aux_sym_cmd_identifier_token9] = ACTIONS(1675), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1675), + [aux_sym_cmd_identifier_token13] = ACTIONS(1675), + [aux_sym_cmd_identifier_token14] = ACTIONS(1675), + [aux_sym_cmd_identifier_token15] = ACTIONS(1675), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1675), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1675), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_list] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_make] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_catch] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_new] = ACTIONS(1675), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), + [sym__entry_separator] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(3), }, - [408] = { - [sym_cell_path] = STATE(600), - [sym_path] = STATE(550), - [sym_comment] = STATE(408), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [aux_sym_cmd_identifier_token1] = ACTIONS(1829), - [aux_sym_cmd_identifier_token2] = ACTIONS(1829), - [aux_sym_cmd_identifier_token3] = ACTIONS(1829), - [aux_sym_cmd_identifier_token4] = ACTIONS(1829), - [aux_sym_cmd_identifier_token5] = ACTIONS(1829), - [aux_sym_cmd_identifier_token6] = ACTIONS(1829), - [aux_sym_cmd_identifier_token7] = ACTIONS(1829), - [aux_sym_cmd_identifier_token8] = ACTIONS(1829), - [aux_sym_cmd_identifier_token9] = ACTIONS(1829), - [aux_sym_cmd_identifier_token10] = ACTIONS(1829), - [aux_sym_cmd_identifier_token11] = ACTIONS(1829), - [aux_sym_cmd_identifier_token12] = ACTIONS(1829), - [aux_sym_cmd_identifier_token13] = ACTIONS(1829), - [aux_sym_cmd_identifier_token14] = ACTIONS(1829), - [aux_sym_cmd_identifier_token15] = ACTIONS(1829), - [aux_sym_cmd_identifier_token16] = ACTIONS(1829), - [aux_sym_cmd_identifier_token17] = ACTIONS(1829), - [aux_sym_cmd_identifier_token18] = ACTIONS(1829), - [aux_sym_cmd_identifier_token19] = ACTIONS(1829), - [aux_sym_cmd_identifier_token20] = ACTIONS(1829), - [aux_sym_cmd_identifier_token21] = ACTIONS(1829), - [aux_sym_cmd_identifier_token22] = ACTIONS(1829), - [aux_sym_cmd_identifier_token23] = ACTIONS(1829), - [aux_sym_cmd_identifier_token24] = ACTIONS(1829), - [aux_sym_cmd_identifier_token25] = ACTIONS(1829), - [aux_sym_cmd_identifier_token26] = ACTIONS(1829), - [aux_sym_cmd_identifier_token27] = ACTIONS(1829), - [aux_sym_cmd_identifier_token28] = ACTIONS(1829), - [aux_sym_cmd_identifier_token29] = ACTIONS(1829), - [aux_sym_cmd_identifier_token30] = ACTIONS(1829), - [aux_sym_cmd_identifier_token31] = ACTIONS(1829), - [aux_sym_cmd_identifier_token32] = ACTIONS(1829), - [aux_sym_cmd_identifier_token33] = ACTIONS(1829), - [aux_sym_cmd_identifier_token34] = ACTIONS(1829), - [aux_sym_cmd_identifier_token35] = ACTIONS(1829), - [aux_sym_cmd_identifier_token36] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1829), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1833), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_list] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_in] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_make] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_decimal_token4] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1829), + [419] = { + [sym_cell_path] = STATE(678), + [sym_path] = STATE(578), + [sym_comment] = STATE(419), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_alias] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_let_DASHenv] = ACTIONS(1836), + [anon_sym_mut] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [aux_sym_cmd_identifier_token1] = ACTIONS(1836), + [aux_sym_cmd_identifier_token2] = ACTIONS(1836), + [aux_sym_cmd_identifier_token3] = ACTIONS(1836), + [aux_sym_cmd_identifier_token4] = ACTIONS(1836), + [aux_sym_cmd_identifier_token5] = ACTIONS(1836), + [aux_sym_cmd_identifier_token6] = ACTIONS(1836), + [aux_sym_cmd_identifier_token7] = ACTIONS(1836), + [aux_sym_cmd_identifier_token8] = ACTIONS(1836), + [aux_sym_cmd_identifier_token9] = ACTIONS(1836), + [aux_sym_cmd_identifier_token10] = ACTIONS(1836), + [aux_sym_cmd_identifier_token11] = ACTIONS(1836), + [aux_sym_cmd_identifier_token12] = ACTIONS(1836), + [aux_sym_cmd_identifier_token13] = ACTIONS(1836), + [aux_sym_cmd_identifier_token14] = ACTIONS(1836), + [aux_sym_cmd_identifier_token15] = ACTIONS(1836), + [aux_sym_cmd_identifier_token16] = ACTIONS(1836), + [aux_sym_cmd_identifier_token17] = ACTIONS(1836), + [aux_sym_cmd_identifier_token18] = ACTIONS(1836), + [aux_sym_cmd_identifier_token19] = ACTIONS(1836), + [aux_sym_cmd_identifier_token20] = ACTIONS(1836), + [aux_sym_cmd_identifier_token21] = ACTIONS(1836), + [aux_sym_cmd_identifier_token22] = ACTIONS(1836), + [aux_sym_cmd_identifier_token23] = ACTIONS(1836), + [aux_sym_cmd_identifier_token24] = ACTIONS(1836), + [aux_sym_cmd_identifier_token25] = ACTIONS(1836), + [aux_sym_cmd_identifier_token26] = ACTIONS(1836), + [aux_sym_cmd_identifier_token27] = ACTIONS(1836), + [aux_sym_cmd_identifier_token28] = ACTIONS(1836), + [aux_sym_cmd_identifier_token29] = ACTIONS(1836), + [aux_sym_cmd_identifier_token30] = ACTIONS(1836), + [aux_sym_cmd_identifier_token31] = ACTIONS(1836), + [aux_sym_cmd_identifier_token32] = ACTIONS(1836), + [aux_sym_cmd_identifier_token33] = ACTIONS(1836), + [aux_sym_cmd_identifier_token34] = ACTIONS(1836), + [aux_sym_cmd_identifier_token35] = ACTIONS(1836), + [aux_sym_cmd_identifier_token36] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), + [aux_sym_cmd_identifier_token38] = ACTIONS(1836), + [aux_sym_cmd_identifier_token39] = ACTIONS(1838), + [aux_sym_cmd_identifier_token40] = ACTIONS(1838), + [anon_sym_def] = ACTIONS(1836), + [anon_sym_export_DASHenv] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_error] = ACTIONS(1836), + [anon_sym_list] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_in] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_make] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_else] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1836), + [anon_sym_catch] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_source] = ACTIONS(1836), + [anon_sym_source_DASHenv] = ACTIONS(1836), + [anon_sym_register] = ACTIONS(1836), + [anon_sym_hide] = ACTIONS(1836), + [anon_sym_hide_DASHenv] = ACTIONS(1836), + [anon_sym_overlay] = ACTIONS(1836), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_as] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1838), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1836), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1836), [anon_sym_POUND] = ACTIONS(247), }, - [409] = { - [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_alias] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_let_DASHenv] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [aux_sym_cmd_identifier_token1] = ACTIONS(2137), - [aux_sym_cmd_identifier_token2] = ACTIONS(2137), - [aux_sym_cmd_identifier_token3] = ACTIONS(2137), - [aux_sym_cmd_identifier_token4] = ACTIONS(2137), - [aux_sym_cmd_identifier_token5] = ACTIONS(2137), - [aux_sym_cmd_identifier_token6] = ACTIONS(2137), - [aux_sym_cmd_identifier_token7] = ACTIONS(2137), - [aux_sym_cmd_identifier_token8] = ACTIONS(2137), - [aux_sym_cmd_identifier_token9] = ACTIONS(2137), - [aux_sym_cmd_identifier_token10] = ACTIONS(2137), - [aux_sym_cmd_identifier_token11] = ACTIONS(2137), - [aux_sym_cmd_identifier_token12] = ACTIONS(2137), - [aux_sym_cmd_identifier_token13] = ACTIONS(2137), - [aux_sym_cmd_identifier_token14] = ACTIONS(2137), - [aux_sym_cmd_identifier_token15] = ACTIONS(2137), - [aux_sym_cmd_identifier_token16] = ACTIONS(2137), - [aux_sym_cmd_identifier_token17] = ACTIONS(2137), - [aux_sym_cmd_identifier_token18] = ACTIONS(2137), - [aux_sym_cmd_identifier_token19] = ACTIONS(2137), - [aux_sym_cmd_identifier_token20] = ACTIONS(2137), - [aux_sym_cmd_identifier_token21] = ACTIONS(2137), - [aux_sym_cmd_identifier_token22] = ACTIONS(2137), - [aux_sym_cmd_identifier_token23] = ACTIONS(2137), - [aux_sym_cmd_identifier_token24] = ACTIONS(2137), - [aux_sym_cmd_identifier_token25] = ACTIONS(2137), - [aux_sym_cmd_identifier_token26] = ACTIONS(2137), - [aux_sym_cmd_identifier_token27] = ACTIONS(2137), - [aux_sym_cmd_identifier_token28] = ACTIONS(2137), - [aux_sym_cmd_identifier_token29] = ACTIONS(2137), - [aux_sym_cmd_identifier_token30] = ACTIONS(2137), - [aux_sym_cmd_identifier_token31] = ACTIONS(2137), - [aux_sym_cmd_identifier_token32] = ACTIONS(2137), - [aux_sym_cmd_identifier_token33] = ACTIONS(2137), - [aux_sym_cmd_identifier_token34] = ACTIONS(2137), - [aux_sym_cmd_identifier_token35] = ACTIONS(2137), - [aux_sym_cmd_identifier_token36] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_null] = ACTIONS(2137), - [aux_sym_cmd_identifier_token38] = ACTIONS(2137), - [aux_sym_cmd_identifier_token39] = ACTIONS(2137), - [aux_sym_cmd_identifier_token40] = ACTIONS(2137), - [anon_sym_def] = ACTIONS(2137), - [anon_sym_export_DASHenv] = ACTIONS(2137), - [anon_sym_extern] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_error] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_make] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_catch] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_source] = ACTIONS(2137), - [anon_sym_source_DASHenv] = ACTIONS(2137), - [anon_sym_register] = ACTIONS(2137), - [anon_sym_hide] = ACTIONS(2137), - [anon_sym_hide_DASHenv] = ACTIONS(2137), - [anon_sym_overlay] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2137), - [anon_sym_DOT_DOT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2137), - [aux_sym__val_number_decimal_token1] = ACTIONS(2137), - [aux_sym__val_number_decimal_token2] = ACTIONS(2137), - [aux_sym__val_number_decimal_token3] = ACTIONS(2137), - [aux_sym__val_number_decimal_token4] = ACTIONS(2137), - [aux_sym__val_number_token1] = ACTIONS(2137), - [aux_sym__val_number_token2] = ACTIONS(2137), - [aux_sym__val_number_token3] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [sym__str_single_quotes] = ACTIONS(2137), - [sym__str_back_ticks] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2137), - [sym__entry_separator] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2137), + [420] = { + [sym_comment] = STATE(420), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_alias] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_let_DASHenv] = ACTIONS(2141), + [anon_sym_mut] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [aux_sym_cmd_identifier_token1] = ACTIONS(2141), + [aux_sym_cmd_identifier_token2] = ACTIONS(2141), + [aux_sym_cmd_identifier_token3] = ACTIONS(2141), + [aux_sym_cmd_identifier_token4] = ACTIONS(2141), + [aux_sym_cmd_identifier_token5] = ACTIONS(2141), + [aux_sym_cmd_identifier_token6] = ACTIONS(2141), + [aux_sym_cmd_identifier_token7] = ACTIONS(2141), + [aux_sym_cmd_identifier_token8] = ACTIONS(2141), + [aux_sym_cmd_identifier_token9] = ACTIONS(2141), + [aux_sym_cmd_identifier_token10] = ACTIONS(2141), + [aux_sym_cmd_identifier_token11] = ACTIONS(2141), + [aux_sym_cmd_identifier_token12] = ACTIONS(2141), + [aux_sym_cmd_identifier_token13] = ACTIONS(2141), + [aux_sym_cmd_identifier_token14] = ACTIONS(2141), + [aux_sym_cmd_identifier_token15] = ACTIONS(2141), + [aux_sym_cmd_identifier_token16] = ACTIONS(2141), + [aux_sym_cmd_identifier_token17] = ACTIONS(2141), + [aux_sym_cmd_identifier_token18] = ACTIONS(2141), + [aux_sym_cmd_identifier_token19] = ACTIONS(2141), + [aux_sym_cmd_identifier_token20] = ACTIONS(2141), + [aux_sym_cmd_identifier_token21] = ACTIONS(2141), + [aux_sym_cmd_identifier_token22] = ACTIONS(2141), + [aux_sym_cmd_identifier_token23] = ACTIONS(2141), + [aux_sym_cmd_identifier_token24] = ACTIONS(2141), + [aux_sym_cmd_identifier_token25] = ACTIONS(2141), + [aux_sym_cmd_identifier_token26] = ACTIONS(2141), + [aux_sym_cmd_identifier_token27] = ACTIONS(2141), + [aux_sym_cmd_identifier_token28] = ACTIONS(2141), + [aux_sym_cmd_identifier_token29] = ACTIONS(2141), + [aux_sym_cmd_identifier_token30] = ACTIONS(2141), + [aux_sym_cmd_identifier_token31] = ACTIONS(2141), + [aux_sym_cmd_identifier_token32] = ACTIONS(2141), + [aux_sym_cmd_identifier_token33] = ACTIONS(2141), + [aux_sym_cmd_identifier_token34] = ACTIONS(2141), + [aux_sym_cmd_identifier_token35] = ACTIONS(2141), + [aux_sym_cmd_identifier_token36] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_null] = ACTIONS(2141), + [aux_sym_cmd_identifier_token38] = ACTIONS(2141), + [aux_sym_cmd_identifier_token39] = ACTIONS(2141), + [aux_sym_cmd_identifier_token40] = ACTIONS(2141), + [anon_sym_def] = ACTIONS(2141), + [anon_sym_export_DASHenv] = ACTIONS(2141), + [anon_sym_extern] = ACTIONS(2141), + [anon_sym_module] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_DOLLAR] = ACTIONS(2141), + [anon_sym_error] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_in] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_make] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_else] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_catch] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_source] = ACTIONS(2141), + [anon_sym_source_DASHenv] = ACTIONS(2141), + [anon_sym_register] = ACTIONS(2141), + [anon_sym_hide] = ACTIONS(2141), + [anon_sym_hide_DASHenv] = ACTIONS(2141), + [anon_sym_overlay] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2141), + [anon_sym_DOT_DOT2] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2141), + [aux_sym__val_number_decimal_token1] = ACTIONS(2141), + [aux_sym__val_number_decimal_token2] = ACTIONS(2141), + [aux_sym__val_number_decimal_token3] = ACTIONS(2141), + [aux_sym__val_number_decimal_token4] = ACTIONS(2141), + [aux_sym__val_number_token1] = ACTIONS(2141), + [aux_sym__val_number_token2] = ACTIONS(2141), + [aux_sym__val_number_token3] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2141), + [sym__str_single_quotes] = ACTIONS(2141), + [sym__str_back_ticks] = ACTIONS(2141), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2141), + [sym__entry_separator] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2141), [anon_sym_POUND] = ACTIONS(3), }, - [410] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(550), - [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_alias] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_let_DASHenv] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [aux_sym_cmd_identifier_token1] = ACTIONS(1835), - [aux_sym_cmd_identifier_token2] = ACTIONS(1835), - [aux_sym_cmd_identifier_token3] = ACTIONS(1835), - [aux_sym_cmd_identifier_token4] = ACTIONS(1835), - [aux_sym_cmd_identifier_token5] = ACTIONS(1835), - [aux_sym_cmd_identifier_token6] = ACTIONS(1835), - [aux_sym_cmd_identifier_token7] = ACTIONS(1835), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1835), - [aux_sym_cmd_identifier_token11] = ACTIONS(1835), - [aux_sym_cmd_identifier_token12] = ACTIONS(1835), - [aux_sym_cmd_identifier_token13] = ACTIONS(1835), - [aux_sym_cmd_identifier_token14] = ACTIONS(1835), - [aux_sym_cmd_identifier_token15] = ACTIONS(1835), - [aux_sym_cmd_identifier_token16] = ACTIONS(1835), - [aux_sym_cmd_identifier_token17] = ACTIONS(1835), - [aux_sym_cmd_identifier_token18] = ACTIONS(1835), - [aux_sym_cmd_identifier_token19] = ACTIONS(1835), - [aux_sym_cmd_identifier_token20] = ACTIONS(1835), - [aux_sym_cmd_identifier_token21] = ACTIONS(1835), - [aux_sym_cmd_identifier_token22] = ACTIONS(1835), - [aux_sym_cmd_identifier_token23] = ACTIONS(1835), - [aux_sym_cmd_identifier_token24] = ACTIONS(1835), - [aux_sym_cmd_identifier_token25] = ACTIONS(1835), - [aux_sym_cmd_identifier_token26] = ACTIONS(1835), - [aux_sym_cmd_identifier_token27] = ACTIONS(1835), - [aux_sym_cmd_identifier_token28] = ACTIONS(1835), - [aux_sym_cmd_identifier_token29] = ACTIONS(1835), - [aux_sym_cmd_identifier_token30] = ACTIONS(1835), - [aux_sym_cmd_identifier_token31] = ACTIONS(1835), - [aux_sym_cmd_identifier_token32] = ACTIONS(1835), - [aux_sym_cmd_identifier_token33] = ACTIONS(1835), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1835), - [aux_sym_cmd_identifier_token36] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1835), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_export_DASHenv] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1837), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_list] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_make] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_source] = ACTIONS(1835), - [anon_sym_source_DASHenv] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_hide] = ACTIONS(1835), - [anon_sym_hide_DASHenv] = ACTIONS(1835), - [anon_sym_overlay] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1835), + [421] = { + [sym_cell_path] = STATE(679), + [sym_path] = STATE(578), + [sym_comment] = STATE(421), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_alias] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_let_DASHenv] = ACTIONS(1840), + [anon_sym_mut] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [aux_sym_cmd_identifier_token1] = ACTIONS(1840), + [aux_sym_cmd_identifier_token2] = ACTIONS(1840), + [aux_sym_cmd_identifier_token3] = ACTIONS(1840), + [aux_sym_cmd_identifier_token4] = ACTIONS(1840), + [aux_sym_cmd_identifier_token5] = ACTIONS(1840), + [aux_sym_cmd_identifier_token6] = ACTIONS(1840), + [aux_sym_cmd_identifier_token7] = ACTIONS(1840), + [aux_sym_cmd_identifier_token8] = ACTIONS(1840), + [aux_sym_cmd_identifier_token9] = ACTIONS(1840), + [aux_sym_cmd_identifier_token10] = ACTIONS(1840), + [aux_sym_cmd_identifier_token11] = ACTIONS(1840), + [aux_sym_cmd_identifier_token12] = ACTIONS(1840), + [aux_sym_cmd_identifier_token13] = ACTIONS(1840), + [aux_sym_cmd_identifier_token14] = ACTIONS(1840), + [aux_sym_cmd_identifier_token15] = ACTIONS(1840), + [aux_sym_cmd_identifier_token16] = ACTIONS(1840), + [aux_sym_cmd_identifier_token17] = ACTIONS(1840), + [aux_sym_cmd_identifier_token18] = ACTIONS(1840), + [aux_sym_cmd_identifier_token19] = ACTIONS(1840), + [aux_sym_cmd_identifier_token20] = ACTIONS(1840), + [aux_sym_cmd_identifier_token21] = ACTIONS(1840), + [aux_sym_cmd_identifier_token22] = ACTIONS(1840), + [aux_sym_cmd_identifier_token23] = ACTIONS(1840), + [aux_sym_cmd_identifier_token24] = ACTIONS(1840), + [aux_sym_cmd_identifier_token25] = ACTIONS(1840), + [aux_sym_cmd_identifier_token26] = ACTIONS(1840), + [aux_sym_cmd_identifier_token27] = ACTIONS(1840), + [aux_sym_cmd_identifier_token28] = ACTIONS(1840), + [aux_sym_cmd_identifier_token29] = ACTIONS(1840), + [aux_sym_cmd_identifier_token30] = ACTIONS(1840), + [aux_sym_cmd_identifier_token31] = ACTIONS(1840), + [aux_sym_cmd_identifier_token32] = ACTIONS(1840), + [aux_sym_cmd_identifier_token33] = ACTIONS(1840), + [aux_sym_cmd_identifier_token34] = ACTIONS(1840), + [aux_sym_cmd_identifier_token35] = ACTIONS(1840), + [aux_sym_cmd_identifier_token36] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), + [aux_sym_cmd_identifier_token38] = ACTIONS(1840), + [aux_sym_cmd_identifier_token39] = ACTIONS(1842), + [aux_sym_cmd_identifier_token40] = ACTIONS(1842), + [anon_sym_def] = ACTIONS(1840), + [anon_sym_export_DASHenv] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_error] = ACTIONS(1840), + [anon_sym_list] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_make] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_catch] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_source] = ACTIONS(1840), + [anon_sym_source_DASHenv] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_hide] = ACTIONS(1840), + [anon_sym_hide_DASHenv] = ACTIONS(1840), + [anon_sym_overlay] = ACTIONS(1840), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1842), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1842), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1842), + [aux_sym__val_number_decimal_token3] = ACTIONS(1842), + [aux_sym__val_number_decimal_token4] = ACTIONS(1842), + [aux_sym__val_number_token1] = ACTIONS(1842), + [aux_sym__val_number_token2] = ACTIONS(1842), + [aux_sym__val_number_token3] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym__str_single_quotes] = ACTIONS(1842), + [sym__str_back_ticks] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1842), + [anon_sym_PLUS] = ACTIONS(1840), [anon_sym_POUND] = ACTIONS(247), }, - [411] = { - [sym_cell_path] = STATE(605), - [sym_path] = STATE(550), - [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(434), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [aux_sym_cmd_identifier_token1] = ACTIONS(1839), - [aux_sym_cmd_identifier_token2] = ACTIONS(1839), - [aux_sym_cmd_identifier_token3] = ACTIONS(1839), - [aux_sym_cmd_identifier_token4] = ACTIONS(1839), - [aux_sym_cmd_identifier_token5] = ACTIONS(1839), - [aux_sym_cmd_identifier_token6] = ACTIONS(1839), - [aux_sym_cmd_identifier_token7] = ACTIONS(1839), - [aux_sym_cmd_identifier_token8] = ACTIONS(1839), - [aux_sym_cmd_identifier_token9] = ACTIONS(1839), - [aux_sym_cmd_identifier_token10] = ACTIONS(1839), - [aux_sym_cmd_identifier_token11] = ACTIONS(1839), - [aux_sym_cmd_identifier_token12] = ACTIONS(1839), - [aux_sym_cmd_identifier_token13] = ACTIONS(1839), - [aux_sym_cmd_identifier_token14] = ACTIONS(1839), - [aux_sym_cmd_identifier_token15] = ACTIONS(1839), - [aux_sym_cmd_identifier_token16] = ACTIONS(1839), - [aux_sym_cmd_identifier_token17] = ACTIONS(1839), - [aux_sym_cmd_identifier_token18] = ACTIONS(1839), - [aux_sym_cmd_identifier_token19] = ACTIONS(1839), - [aux_sym_cmd_identifier_token20] = ACTIONS(1839), - [aux_sym_cmd_identifier_token21] = ACTIONS(1839), - [aux_sym_cmd_identifier_token22] = ACTIONS(1839), - [aux_sym_cmd_identifier_token23] = ACTIONS(1839), - [aux_sym_cmd_identifier_token24] = ACTIONS(1839), - [aux_sym_cmd_identifier_token25] = ACTIONS(1839), - [aux_sym_cmd_identifier_token26] = ACTIONS(1839), - [aux_sym_cmd_identifier_token27] = ACTIONS(1839), - [aux_sym_cmd_identifier_token28] = ACTIONS(1839), - [aux_sym_cmd_identifier_token29] = ACTIONS(1839), - [aux_sym_cmd_identifier_token30] = ACTIONS(1839), - [aux_sym_cmd_identifier_token31] = ACTIONS(1839), - [aux_sym_cmd_identifier_token32] = ACTIONS(1839), - [aux_sym_cmd_identifier_token33] = ACTIONS(1839), - [aux_sym_cmd_identifier_token34] = ACTIONS(1839), - [aux_sym_cmd_identifier_token35] = ACTIONS(1839), - [aux_sym_cmd_identifier_token36] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1839), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_list] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1839), + [422] = { + [sym_cell_path] = STATE(680), + [sym_path] = STATE(578), + [sym_comment] = STATE(422), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_alias] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_let_DASHenv] = ACTIONS(1844), + [anon_sym_mut] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [aux_sym_cmd_identifier_token1] = ACTIONS(1844), + [aux_sym_cmd_identifier_token2] = ACTIONS(1844), + [aux_sym_cmd_identifier_token3] = ACTIONS(1844), + [aux_sym_cmd_identifier_token4] = ACTIONS(1844), + [aux_sym_cmd_identifier_token5] = ACTIONS(1844), + [aux_sym_cmd_identifier_token6] = ACTIONS(1844), + [aux_sym_cmd_identifier_token7] = ACTIONS(1844), + [aux_sym_cmd_identifier_token8] = ACTIONS(1844), + [aux_sym_cmd_identifier_token9] = ACTIONS(1844), + [aux_sym_cmd_identifier_token10] = ACTIONS(1844), + [aux_sym_cmd_identifier_token11] = ACTIONS(1844), + [aux_sym_cmd_identifier_token12] = ACTIONS(1844), + [aux_sym_cmd_identifier_token13] = ACTIONS(1844), + [aux_sym_cmd_identifier_token14] = ACTIONS(1844), + [aux_sym_cmd_identifier_token15] = ACTIONS(1844), + [aux_sym_cmd_identifier_token16] = ACTIONS(1844), + [aux_sym_cmd_identifier_token17] = ACTIONS(1844), + [aux_sym_cmd_identifier_token18] = ACTIONS(1844), + [aux_sym_cmd_identifier_token19] = ACTIONS(1844), + [aux_sym_cmd_identifier_token20] = ACTIONS(1844), + [aux_sym_cmd_identifier_token21] = ACTIONS(1844), + [aux_sym_cmd_identifier_token22] = ACTIONS(1844), + [aux_sym_cmd_identifier_token23] = ACTIONS(1844), + [aux_sym_cmd_identifier_token24] = ACTIONS(1844), + [aux_sym_cmd_identifier_token25] = ACTIONS(1844), + [aux_sym_cmd_identifier_token26] = ACTIONS(1844), + [aux_sym_cmd_identifier_token27] = ACTIONS(1844), + [aux_sym_cmd_identifier_token28] = ACTIONS(1844), + [aux_sym_cmd_identifier_token29] = ACTIONS(1844), + [aux_sym_cmd_identifier_token30] = ACTIONS(1844), + [aux_sym_cmd_identifier_token31] = ACTIONS(1844), + [aux_sym_cmd_identifier_token32] = ACTIONS(1844), + [aux_sym_cmd_identifier_token33] = ACTIONS(1844), + [aux_sym_cmd_identifier_token34] = ACTIONS(1844), + [aux_sym_cmd_identifier_token35] = ACTIONS(1844), + [aux_sym_cmd_identifier_token36] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [anon_sym_null] = ACTIONS(1846), + [aux_sym_cmd_identifier_token38] = ACTIONS(1844), + [aux_sym_cmd_identifier_token39] = ACTIONS(1846), + [aux_sym_cmd_identifier_token40] = ACTIONS(1846), + [anon_sym_def] = ACTIONS(1844), + [anon_sym_export_DASHenv] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1846), + [anon_sym_error] = ACTIONS(1844), + [anon_sym_list] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_make] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_catch] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_source] = ACTIONS(1844), + [anon_sym_source_DASHenv] = ACTIONS(1844), + [anon_sym_register] = ACTIONS(1844), + [anon_sym_hide] = ACTIONS(1844), + [anon_sym_hide_DASHenv] = ACTIONS(1844), + [anon_sym_overlay] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1846), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1846), + [aux_sym__val_number_decimal_token1] = ACTIONS(1844), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1846), + [aux_sym__val_number_token2] = ACTIONS(1846), + [aux_sym__val_number_token3] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym__str_single_quotes] = ACTIONS(1846), + [sym__str_back_ticks] = ACTIONS(1846), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(247), }, - [412] = { - [sym_path] = STATE(482), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(412), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_null] = ACTIONS(1021), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1021), - [aux_sym_cmd_identifier_token40] = ACTIONS(1021), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(2141), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1021), - [aux_sym__val_number_decimal_token3] = ACTIONS(1021), - [aux_sym__val_number_decimal_token4] = ACTIONS(1021), - [aux_sym__val_number_token1] = ACTIONS(1021), - [aux_sym__val_number_token2] = ACTIONS(1021), - [aux_sym__val_number_token3] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym__str_single_quotes] = ACTIONS(1021), - [sym__str_back_ticks] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), - [sym__entry_separator] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), + [423] = { + [sym_cell_path] = STATE(681), + [sym_path] = STATE(578), + [sym_comment] = STATE(423), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1848), + [anon_sym_alias] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_let_DASHenv] = ACTIONS(1848), + [anon_sym_mut] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [aux_sym_cmd_identifier_token1] = ACTIONS(1848), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1848), + [aux_sym_cmd_identifier_token9] = ACTIONS(1848), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1848), + [aux_sym_cmd_identifier_token13] = ACTIONS(1848), + [aux_sym_cmd_identifier_token14] = ACTIONS(1848), + [aux_sym_cmd_identifier_token15] = ACTIONS(1848), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1848), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1848), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [anon_sym_def] = ACTIONS(1848), + [anon_sym_export_DASHenv] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_module] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_error] = ACTIONS(1848), + [anon_sym_list] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_make] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_else] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_catch] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_source] = ACTIONS(1848), + [anon_sym_source_DASHenv] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_hide] = ACTIONS(1848), + [anon_sym_hide_DASHenv] = ACTIONS(1848), + [anon_sym_overlay] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_as] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(247), + }, + [424] = { + [sym_cell_path] = STATE(682), + [sym_path] = STATE(578), + [sym_comment] = STATE(424), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1852), + [anon_sym_alias] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_let_DASHenv] = ACTIONS(1852), + [anon_sym_mut] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [aux_sym_cmd_identifier_token1] = ACTIONS(1852), + [aux_sym_cmd_identifier_token2] = ACTIONS(1852), + [aux_sym_cmd_identifier_token3] = ACTIONS(1852), + [aux_sym_cmd_identifier_token4] = ACTIONS(1852), + [aux_sym_cmd_identifier_token5] = ACTIONS(1852), + [aux_sym_cmd_identifier_token6] = ACTIONS(1852), + [aux_sym_cmd_identifier_token7] = ACTIONS(1852), + [aux_sym_cmd_identifier_token8] = ACTIONS(1852), + [aux_sym_cmd_identifier_token9] = ACTIONS(1852), + [aux_sym_cmd_identifier_token10] = ACTIONS(1852), + [aux_sym_cmd_identifier_token11] = ACTIONS(1852), + [aux_sym_cmd_identifier_token12] = ACTIONS(1852), + [aux_sym_cmd_identifier_token13] = ACTIONS(1852), + [aux_sym_cmd_identifier_token14] = ACTIONS(1852), + [aux_sym_cmd_identifier_token15] = ACTIONS(1852), + [aux_sym_cmd_identifier_token16] = ACTIONS(1852), + [aux_sym_cmd_identifier_token17] = ACTIONS(1852), + [aux_sym_cmd_identifier_token18] = ACTIONS(1852), + [aux_sym_cmd_identifier_token19] = ACTIONS(1852), + [aux_sym_cmd_identifier_token20] = ACTIONS(1852), + [aux_sym_cmd_identifier_token21] = ACTIONS(1852), + [aux_sym_cmd_identifier_token22] = ACTIONS(1852), + [aux_sym_cmd_identifier_token23] = ACTIONS(1852), + [aux_sym_cmd_identifier_token24] = ACTIONS(1852), + [aux_sym_cmd_identifier_token25] = ACTIONS(1852), + [aux_sym_cmd_identifier_token26] = ACTIONS(1852), + [aux_sym_cmd_identifier_token27] = ACTIONS(1852), + [aux_sym_cmd_identifier_token28] = ACTIONS(1852), + [aux_sym_cmd_identifier_token29] = ACTIONS(1852), + [aux_sym_cmd_identifier_token30] = ACTIONS(1852), + [aux_sym_cmd_identifier_token31] = ACTIONS(1852), + [aux_sym_cmd_identifier_token32] = ACTIONS(1852), + [aux_sym_cmd_identifier_token33] = ACTIONS(1852), + [aux_sym_cmd_identifier_token34] = ACTIONS(1852), + [aux_sym_cmd_identifier_token35] = ACTIONS(1852), + [aux_sym_cmd_identifier_token36] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1854), + [aux_sym_cmd_identifier_token38] = ACTIONS(1852), + [aux_sym_cmd_identifier_token39] = ACTIONS(1854), + [aux_sym_cmd_identifier_token40] = ACTIONS(1854), + [anon_sym_def] = ACTIONS(1852), + [anon_sym_export_DASHenv] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_use] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_error] = ACTIONS(1852), + [anon_sym_list] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [anon_sym_loop] = ACTIONS(1852), + [anon_sym_make] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1852), + [anon_sym_catch] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_source] = ACTIONS(1852), + [anon_sym_source_DASHenv] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_hide] = ACTIONS(1852), + [anon_sym_hide_DASHenv] = ACTIONS(1852), + [anon_sym_overlay] = ACTIONS(1852), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_as] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1854), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1852), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1854), + [aux_sym__val_number_token2] = ACTIONS(1854), + [aux_sym__val_number_token3] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym__str_single_quotes] = ACTIONS(1854), + [sym__str_back_ticks] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(247), + }, + [425] = { + [sym_path] = STATE(527), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(426), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1011), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1011), + [aux_sym_cmd_identifier_token40] = ACTIONS(1011), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1011), + [aux_sym__val_number_decimal_token3] = ACTIONS(1011), + [aux_sym__val_number_decimal_token4] = ACTIONS(1011), + [aux_sym__val_number_token1] = ACTIONS(1011), + [aux_sym__val_number_token2] = ACTIONS(1011), + [aux_sym__val_number_token3] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym__str_single_quotes] = ACTIONS(1011), + [sym__str_back_ticks] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), + [sym__entry_separator] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(3), }, - [413] = { - [sym__expr_parenthesized_immediate] = STATE(7343), - [sym_comment] = STATE(413), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1993), - [aux_sym_cmd_identifier_token40] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1993), - [aux_sym__val_number_decimal_token3] = ACTIONS(1993), - [aux_sym__val_number_decimal_token4] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1993), - [aux_sym__val_number_token2] = ACTIONS(1993), - [aux_sym__val_number_token3] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym__str_single_quotes] = ACTIONS(1993), - [sym__str_back_ticks] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1993), + [426] = { + [sym_path] = STATE(527), + [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(426), + [anon_sym_export] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_let_DASHenv] = ACTIONS(1015), + [anon_sym_mut] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [aux_sym_cmd_identifier_token1] = ACTIONS(1015), + [aux_sym_cmd_identifier_token2] = ACTIONS(1015), + [aux_sym_cmd_identifier_token3] = ACTIONS(1015), + [aux_sym_cmd_identifier_token4] = ACTIONS(1015), + [aux_sym_cmd_identifier_token5] = ACTIONS(1015), + [aux_sym_cmd_identifier_token6] = ACTIONS(1015), + [aux_sym_cmd_identifier_token7] = ACTIONS(1015), + [aux_sym_cmd_identifier_token8] = ACTIONS(1015), + [aux_sym_cmd_identifier_token9] = ACTIONS(1015), + [aux_sym_cmd_identifier_token10] = ACTIONS(1015), + [aux_sym_cmd_identifier_token11] = ACTIONS(1015), + [aux_sym_cmd_identifier_token12] = ACTIONS(1015), + [aux_sym_cmd_identifier_token13] = ACTIONS(1015), + [aux_sym_cmd_identifier_token14] = ACTIONS(1015), + [aux_sym_cmd_identifier_token15] = ACTIONS(1015), + [aux_sym_cmd_identifier_token16] = ACTIONS(1015), + [aux_sym_cmd_identifier_token17] = ACTIONS(1015), + [aux_sym_cmd_identifier_token18] = ACTIONS(1015), + [aux_sym_cmd_identifier_token19] = ACTIONS(1015), + [aux_sym_cmd_identifier_token20] = ACTIONS(1015), + [aux_sym_cmd_identifier_token21] = ACTIONS(1015), + [aux_sym_cmd_identifier_token22] = ACTIONS(1015), + [aux_sym_cmd_identifier_token23] = ACTIONS(1015), + [aux_sym_cmd_identifier_token24] = ACTIONS(1015), + [aux_sym_cmd_identifier_token25] = ACTIONS(1015), + [aux_sym_cmd_identifier_token26] = ACTIONS(1015), + [aux_sym_cmd_identifier_token27] = ACTIONS(1015), + [aux_sym_cmd_identifier_token28] = ACTIONS(1015), + [aux_sym_cmd_identifier_token29] = ACTIONS(1015), + [aux_sym_cmd_identifier_token30] = ACTIONS(1015), + [aux_sym_cmd_identifier_token31] = ACTIONS(1015), + [aux_sym_cmd_identifier_token32] = ACTIONS(1015), + [aux_sym_cmd_identifier_token33] = ACTIONS(1015), + [aux_sym_cmd_identifier_token34] = ACTIONS(1015), + [aux_sym_cmd_identifier_token35] = ACTIONS(1015), + [aux_sym_cmd_identifier_token36] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1015), + [anon_sym_false] = ACTIONS(1015), + [anon_sym_null] = ACTIONS(1015), + [aux_sym_cmd_identifier_token38] = ACTIONS(1015), + [aux_sym_cmd_identifier_token39] = ACTIONS(1015), + [aux_sym_cmd_identifier_token40] = ACTIONS(1015), + [anon_sym_def] = ACTIONS(1015), + [anon_sym_export_DASHenv] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_error] = ACTIONS(1015), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_in] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_make] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_source] = ACTIONS(1015), + [anon_sym_source_DASHenv] = ACTIONS(1015), + [anon_sym_register] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_hide_DASHenv] = ACTIONS(1015), + [anon_sym_overlay] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(2145), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1015), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1015), + [aux_sym__val_number_decimal_token3] = ACTIONS(1015), + [aux_sym__val_number_decimal_token4] = ACTIONS(1015), + [aux_sym__val_number_token1] = ACTIONS(1015), + [aux_sym__val_number_token2] = ACTIONS(1015), + [aux_sym__val_number_token3] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym__str_single_quotes] = ACTIONS(1015), + [sym__str_back_ticks] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1015), + [sym__entry_separator] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1015), [anon_sym_POUND] = ACTIONS(3), }, - [414] = { - [sym_comment] = STATE(414), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [aux_sym_cmd_identifier_token1] = ACTIONS(2035), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2035), - [aux_sym_cmd_identifier_token13] = ACTIONS(2035), - [aux_sym_cmd_identifier_token14] = ACTIONS(2035), - [aux_sym_cmd_identifier_token15] = ACTIONS(2035), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_make] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT_DOT2] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2035), + [427] = { + [sym_cell_path] = STATE(683), + [sym_path] = STATE(578), + [sym_comment] = STATE(427), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1856), + [anon_sym_alias] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_let_DASHenv] = ACTIONS(1856), + [anon_sym_mut] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [aux_sym_cmd_identifier_token1] = ACTIONS(1856), + [aux_sym_cmd_identifier_token2] = ACTIONS(1856), + [aux_sym_cmd_identifier_token3] = ACTIONS(1856), + [aux_sym_cmd_identifier_token4] = ACTIONS(1856), + [aux_sym_cmd_identifier_token5] = ACTIONS(1856), + [aux_sym_cmd_identifier_token6] = ACTIONS(1856), + [aux_sym_cmd_identifier_token7] = ACTIONS(1856), + [aux_sym_cmd_identifier_token8] = ACTIONS(1856), + [aux_sym_cmd_identifier_token9] = ACTIONS(1856), + [aux_sym_cmd_identifier_token10] = ACTIONS(1856), + [aux_sym_cmd_identifier_token11] = ACTIONS(1856), + [aux_sym_cmd_identifier_token12] = ACTIONS(1856), + [aux_sym_cmd_identifier_token13] = ACTIONS(1856), + [aux_sym_cmd_identifier_token14] = ACTIONS(1856), + [aux_sym_cmd_identifier_token15] = ACTIONS(1856), + [aux_sym_cmd_identifier_token16] = ACTIONS(1856), + [aux_sym_cmd_identifier_token17] = ACTIONS(1856), + [aux_sym_cmd_identifier_token18] = ACTIONS(1856), + [aux_sym_cmd_identifier_token19] = ACTIONS(1856), + [aux_sym_cmd_identifier_token20] = ACTIONS(1856), + [aux_sym_cmd_identifier_token21] = ACTIONS(1856), + [aux_sym_cmd_identifier_token22] = ACTIONS(1856), + [aux_sym_cmd_identifier_token23] = ACTIONS(1856), + [aux_sym_cmd_identifier_token24] = ACTIONS(1856), + [aux_sym_cmd_identifier_token25] = ACTIONS(1856), + [aux_sym_cmd_identifier_token26] = ACTIONS(1856), + [aux_sym_cmd_identifier_token27] = ACTIONS(1856), + [aux_sym_cmd_identifier_token28] = ACTIONS(1856), + [aux_sym_cmd_identifier_token29] = ACTIONS(1856), + [aux_sym_cmd_identifier_token30] = ACTIONS(1856), + [aux_sym_cmd_identifier_token31] = ACTIONS(1856), + [aux_sym_cmd_identifier_token32] = ACTIONS(1856), + [aux_sym_cmd_identifier_token33] = ACTIONS(1856), + [aux_sym_cmd_identifier_token34] = ACTIONS(1856), + [aux_sym_cmd_identifier_token35] = ACTIONS(1856), + [aux_sym_cmd_identifier_token36] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_null] = ACTIONS(1858), + [aux_sym_cmd_identifier_token38] = ACTIONS(1856), + [aux_sym_cmd_identifier_token39] = ACTIONS(1858), + [aux_sym_cmd_identifier_token40] = ACTIONS(1858), + [anon_sym_def] = ACTIONS(1856), + [anon_sym_export_DASHenv] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym_module] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_error] = ACTIONS(1856), + [anon_sym_list] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [anon_sym_loop] = ACTIONS(1856), + [anon_sym_make] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_else] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1856), + [anon_sym_catch] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_source] = ACTIONS(1856), + [anon_sym_source_DASHenv] = ACTIONS(1856), + [anon_sym_register] = ACTIONS(1856), + [anon_sym_hide] = ACTIONS(1856), + [anon_sym_hide_DASHenv] = ACTIONS(1856), + [anon_sym_overlay] = ACTIONS(1856), + [anon_sym_new] = ACTIONS(1856), + [anon_sym_as] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1858), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1858), + [aux_sym__val_number_decimal_token1] = ACTIONS(1856), + [aux_sym__val_number_decimal_token2] = ACTIONS(1858), + [aux_sym__val_number_decimal_token3] = ACTIONS(1858), + [aux_sym__val_number_decimal_token4] = ACTIONS(1858), + [aux_sym__val_number_token1] = ACTIONS(1858), + [aux_sym__val_number_token2] = ACTIONS(1858), + [aux_sym__val_number_token3] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym__str_single_quotes] = ACTIONS(1858), + [sym__str_back_ticks] = ACTIONS(1858), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(247), }, - [415] = { - [sym_comment] = STATE(415), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [aux_sym_cmd_identifier_token1] = ACTIONS(2043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2043), - [aux_sym_cmd_identifier_token9] = ACTIONS(2043), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2043), - [aux_sym_cmd_identifier_token13] = ACTIONS(2043), - [aux_sym_cmd_identifier_token14] = ACTIONS(2043), - [aux_sym_cmd_identifier_token15] = ACTIONS(2043), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2043), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_list] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_in] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_make] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_new] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT_DOT2] = ACTIONS(2148), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2150), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2043), + [428] = { + [sym_comment] = STATE(428), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_alias] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_let_DASHenv] = ACTIONS(1046), + [anon_sym_mut] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1046), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1046), + [aux_sym_cmd_identifier_token9] = ACTIONS(1046), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1046), + [aux_sym_cmd_identifier_token13] = ACTIONS(1046), + [aux_sym_cmd_identifier_token14] = ACTIONS(1046), + [aux_sym_cmd_identifier_token15] = ACTIONS(1046), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1046), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_export_DASHenv] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1046), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_make] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_source] = ACTIONS(1046), + [anon_sym_source_DASHenv] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_hide] = ACTIONS(1046), + [anon_sym_hide_DASHenv] = ACTIONS(1046), + [anon_sym_overlay] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, - [416] = { - [sym_comment] = STATE(416), - [anon_sym_export] = ACTIONS(2051), - [anon_sym_alias] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_let_DASHenv] = ACTIONS(2051), - [anon_sym_mut] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [aux_sym_cmd_identifier_token1] = ACTIONS(2051), - [aux_sym_cmd_identifier_token2] = ACTIONS(2051), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [aux_sym_cmd_identifier_token6] = ACTIONS(2051), - [aux_sym_cmd_identifier_token7] = ACTIONS(2051), - [aux_sym_cmd_identifier_token8] = ACTIONS(2051), - [aux_sym_cmd_identifier_token9] = ACTIONS(2051), - [aux_sym_cmd_identifier_token10] = ACTIONS(2051), - [aux_sym_cmd_identifier_token11] = ACTIONS(2051), - [aux_sym_cmd_identifier_token12] = ACTIONS(2051), - [aux_sym_cmd_identifier_token13] = ACTIONS(2051), - [aux_sym_cmd_identifier_token14] = ACTIONS(2051), - [aux_sym_cmd_identifier_token15] = ACTIONS(2051), - [aux_sym_cmd_identifier_token16] = ACTIONS(2051), - [aux_sym_cmd_identifier_token17] = ACTIONS(2051), - [aux_sym_cmd_identifier_token18] = ACTIONS(2051), - [aux_sym_cmd_identifier_token19] = ACTIONS(2051), - [aux_sym_cmd_identifier_token20] = ACTIONS(2051), - [aux_sym_cmd_identifier_token21] = ACTIONS(2051), - [aux_sym_cmd_identifier_token22] = ACTIONS(2051), - [aux_sym_cmd_identifier_token23] = ACTIONS(2051), - [aux_sym_cmd_identifier_token24] = ACTIONS(2051), - [aux_sym_cmd_identifier_token25] = ACTIONS(2051), - [aux_sym_cmd_identifier_token26] = ACTIONS(2051), - [aux_sym_cmd_identifier_token27] = ACTIONS(2051), - [aux_sym_cmd_identifier_token28] = ACTIONS(2051), - [aux_sym_cmd_identifier_token29] = ACTIONS(2051), - [aux_sym_cmd_identifier_token30] = ACTIONS(2051), - [aux_sym_cmd_identifier_token31] = ACTIONS(2051), - [aux_sym_cmd_identifier_token32] = ACTIONS(2051), - [aux_sym_cmd_identifier_token33] = ACTIONS(2051), - [aux_sym_cmd_identifier_token34] = ACTIONS(2051), - [aux_sym_cmd_identifier_token35] = ACTIONS(2051), - [aux_sym_cmd_identifier_token36] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2051), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_export_DASHenv] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_module] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2051), - [anon_sym_list] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_in] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_make] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_source] = ACTIONS(2051), - [anon_sym_source_DASHenv] = ACTIONS(2051), - [anon_sym_register] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_hide_DASHenv] = ACTIONS(2051), - [anon_sym_overlay] = ACTIONS(2051), - [anon_sym_new] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT_DOT2] = ACTIONS(2152), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2154), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2051), + [429] = { + [sym_cell_path] = STATE(684), + [sym_path] = STATE(578), + [sym_comment] = STATE(429), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1860), + [anon_sym_alias] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_let_DASHenv] = ACTIONS(1860), + [anon_sym_mut] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [aux_sym_cmd_identifier_token1] = ACTIONS(1860), + [aux_sym_cmd_identifier_token2] = ACTIONS(1860), + [aux_sym_cmd_identifier_token3] = ACTIONS(1860), + [aux_sym_cmd_identifier_token4] = ACTIONS(1860), + [aux_sym_cmd_identifier_token5] = ACTIONS(1860), + [aux_sym_cmd_identifier_token6] = ACTIONS(1860), + [aux_sym_cmd_identifier_token7] = ACTIONS(1860), + [aux_sym_cmd_identifier_token8] = ACTIONS(1860), + [aux_sym_cmd_identifier_token9] = ACTIONS(1860), + [aux_sym_cmd_identifier_token10] = ACTIONS(1860), + [aux_sym_cmd_identifier_token11] = ACTIONS(1860), + [aux_sym_cmd_identifier_token12] = ACTIONS(1860), + [aux_sym_cmd_identifier_token13] = ACTIONS(1860), + [aux_sym_cmd_identifier_token14] = ACTIONS(1860), + [aux_sym_cmd_identifier_token15] = ACTIONS(1860), + [aux_sym_cmd_identifier_token16] = ACTIONS(1860), + [aux_sym_cmd_identifier_token17] = ACTIONS(1860), + [aux_sym_cmd_identifier_token18] = ACTIONS(1860), + [aux_sym_cmd_identifier_token19] = ACTIONS(1860), + [aux_sym_cmd_identifier_token20] = ACTIONS(1860), + [aux_sym_cmd_identifier_token21] = ACTIONS(1860), + [aux_sym_cmd_identifier_token22] = ACTIONS(1860), + [aux_sym_cmd_identifier_token23] = ACTIONS(1860), + [aux_sym_cmd_identifier_token24] = ACTIONS(1860), + [aux_sym_cmd_identifier_token25] = ACTIONS(1860), + [aux_sym_cmd_identifier_token26] = ACTIONS(1860), + [aux_sym_cmd_identifier_token27] = ACTIONS(1860), + [aux_sym_cmd_identifier_token28] = ACTIONS(1860), + [aux_sym_cmd_identifier_token29] = ACTIONS(1860), + [aux_sym_cmd_identifier_token30] = ACTIONS(1860), + [aux_sym_cmd_identifier_token31] = ACTIONS(1860), + [aux_sym_cmd_identifier_token32] = ACTIONS(1860), + [aux_sym_cmd_identifier_token33] = ACTIONS(1860), + [aux_sym_cmd_identifier_token34] = ACTIONS(1860), + [aux_sym_cmd_identifier_token35] = ACTIONS(1860), + [aux_sym_cmd_identifier_token36] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_null] = ACTIONS(1862), + [aux_sym_cmd_identifier_token38] = ACTIONS(1860), + [aux_sym_cmd_identifier_token39] = ACTIONS(1862), + [aux_sym_cmd_identifier_token40] = ACTIONS(1862), + [anon_sym_def] = ACTIONS(1860), + [anon_sym_export_DASHenv] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym_module] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_error] = ACTIONS(1860), + [anon_sym_list] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_loop] = ACTIONS(1860), + [anon_sym_make] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_else] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1860), + [anon_sym_catch] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_source] = ACTIONS(1860), + [anon_sym_source_DASHenv] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_hide] = ACTIONS(1860), + [anon_sym_hide_DASHenv] = ACTIONS(1860), + [anon_sym_overlay] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1862), + [aux_sym__val_number_decimal_token1] = ACTIONS(1860), + [aux_sym__val_number_decimal_token2] = ACTIONS(1862), + [aux_sym__val_number_decimal_token3] = ACTIONS(1862), + [aux_sym__val_number_decimal_token4] = ACTIONS(1862), + [aux_sym__val_number_token1] = ACTIONS(1862), + [aux_sym__val_number_token2] = ACTIONS(1862), + [aux_sym__val_number_token3] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym__str_single_quotes] = ACTIONS(1862), + [sym__str_back_ticks] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1860), [anon_sym_POUND] = ACTIONS(247), }, - [417] = { - [sym_comment] = STATE(417), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2067), - [aux_sym_cmd_identifier_token40] = ACTIONS(2067), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [430] = { + [sym_cell_path] = STATE(685), + [sym_path] = STATE(578), + [sym_comment] = STATE(430), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_alias] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_let_DASHenv] = ACTIONS(1864), + [anon_sym_mut] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [aux_sym_cmd_identifier_token1] = ACTIONS(1864), + [aux_sym_cmd_identifier_token2] = ACTIONS(1864), + [aux_sym_cmd_identifier_token3] = ACTIONS(1864), + [aux_sym_cmd_identifier_token4] = ACTIONS(1864), + [aux_sym_cmd_identifier_token5] = ACTIONS(1864), + [aux_sym_cmd_identifier_token6] = ACTIONS(1864), + [aux_sym_cmd_identifier_token7] = ACTIONS(1864), + [aux_sym_cmd_identifier_token8] = ACTIONS(1864), + [aux_sym_cmd_identifier_token9] = ACTIONS(1864), + [aux_sym_cmd_identifier_token10] = ACTIONS(1864), + [aux_sym_cmd_identifier_token11] = ACTIONS(1864), + [aux_sym_cmd_identifier_token12] = ACTIONS(1864), + [aux_sym_cmd_identifier_token13] = ACTIONS(1864), + [aux_sym_cmd_identifier_token14] = ACTIONS(1864), + [aux_sym_cmd_identifier_token15] = ACTIONS(1864), + [aux_sym_cmd_identifier_token16] = ACTIONS(1864), + [aux_sym_cmd_identifier_token17] = ACTIONS(1864), + [aux_sym_cmd_identifier_token18] = ACTIONS(1864), + [aux_sym_cmd_identifier_token19] = ACTIONS(1864), + [aux_sym_cmd_identifier_token20] = ACTIONS(1864), + [aux_sym_cmd_identifier_token21] = ACTIONS(1864), + [aux_sym_cmd_identifier_token22] = ACTIONS(1864), + [aux_sym_cmd_identifier_token23] = ACTIONS(1864), + [aux_sym_cmd_identifier_token24] = ACTIONS(1864), + [aux_sym_cmd_identifier_token25] = ACTIONS(1864), + [aux_sym_cmd_identifier_token26] = ACTIONS(1864), + [aux_sym_cmd_identifier_token27] = ACTIONS(1864), + [aux_sym_cmd_identifier_token28] = ACTIONS(1864), + [aux_sym_cmd_identifier_token29] = ACTIONS(1864), + [aux_sym_cmd_identifier_token30] = ACTIONS(1864), + [aux_sym_cmd_identifier_token31] = ACTIONS(1864), + [aux_sym_cmd_identifier_token32] = ACTIONS(1864), + [aux_sym_cmd_identifier_token33] = ACTIONS(1864), + [aux_sym_cmd_identifier_token34] = ACTIONS(1864), + [aux_sym_cmd_identifier_token35] = ACTIONS(1864), + [aux_sym_cmd_identifier_token36] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1864), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = ACTIONS(1866), + [anon_sym_def] = ACTIONS(1864), + [anon_sym_export_DASHenv] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1864), + [anon_sym_list] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_make] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1864), + [anon_sym_catch] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_source] = ACTIONS(1864), + [anon_sym_source_DASHenv] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_hide] = ACTIONS(1864), + [anon_sym_hide_DASHenv] = ACTIONS(1864), + [anon_sym_overlay] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1864), + [aux_sym__val_number_decimal_token2] = ACTIONS(1866), + [aux_sym__val_number_decimal_token3] = ACTIONS(1866), + [aux_sym__val_number_decimal_token4] = ACTIONS(1866), + [aux_sym__val_number_token1] = ACTIONS(1866), + [aux_sym__val_number_token2] = ACTIONS(1866), + [aux_sym__val_number_token3] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym__str_single_quotes] = ACTIONS(1866), + [sym__str_back_ticks] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(247), + }, + [431] = { + [sym_cell_path] = STATE(686), + [sym_path] = STATE(578), + [sym_comment] = STATE(431), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_alias] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_let_DASHenv] = ACTIONS(1868), + [anon_sym_mut] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [aux_sym_cmd_identifier_token1] = ACTIONS(1868), + [aux_sym_cmd_identifier_token2] = ACTIONS(1868), + [aux_sym_cmd_identifier_token3] = ACTIONS(1868), + [aux_sym_cmd_identifier_token4] = ACTIONS(1868), + [aux_sym_cmd_identifier_token5] = ACTIONS(1868), + [aux_sym_cmd_identifier_token6] = ACTIONS(1868), + [aux_sym_cmd_identifier_token7] = ACTIONS(1868), + [aux_sym_cmd_identifier_token8] = ACTIONS(1868), + [aux_sym_cmd_identifier_token9] = ACTIONS(1868), + [aux_sym_cmd_identifier_token10] = ACTIONS(1868), + [aux_sym_cmd_identifier_token11] = ACTIONS(1868), + [aux_sym_cmd_identifier_token12] = ACTIONS(1868), + [aux_sym_cmd_identifier_token13] = ACTIONS(1868), + [aux_sym_cmd_identifier_token14] = ACTIONS(1868), + [aux_sym_cmd_identifier_token15] = ACTIONS(1868), + [aux_sym_cmd_identifier_token16] = ACTIONS(1868), + [aux_sym_cmd_identifier_token17] = ACTIONS(1868), + [aux_sym_cmd_identifier_token18] = ACTIONS(1868), + [aux_sym_cmd_identifier_token19] = ACTIONS(1868), + [aux_sym_cmd_identifier_token20] = ACTIONS(1868), + [aux_sym_cmd_identifier_token21] = ACTIONS(1868), + [aux_sym_cmd_identifier_token22] = ACTIONS(1868), + [aux_sym_cmd_identifier_token23] = ACTIONS(1868), + [aux_sym_cmd_identifier_token24] = ACTIONS(1868), + [aux_sym_cmd_identifier_token25] = ACTIONS(1868), + [aux_sym_cmd_identifier_token26] = ACTIONS(1868), + [aux_sym_cmd_identifier_token27] = ACTIONS(1868), + [aux_sym_cmd_identifier_token28] = ACTIONS(1868), + [aux_sym_cmd_identifier_token29] = ACTIONS(1868), + [aux_sym_cmd_identifier_token30] = ACTIONS(1868), + [aux_sym_cmd_identifier_token31] = ACTIONS(1868), + [aux_sym_cmd_identifier_token32] = ACTIONS(1868), + [aux_sym_cmd_identifier_token33] = ACTIONS(1868), + [aux_sym_cmd_identifier_token34] = ACTIONS(1868), + [aux_sym_cmd_identifier_token35] = ACTIONS(1868), + [aux_sym_cmd_identifier_token36] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [anon_sym_null] = ACTIONS(1870), + [aux_sym_cmd_identifier_token38] = ACTIONS(1868), + [aux_sym_cmd_identifier_token39] = ACTIONS(1870), + [aux_sym_cmd_identifier_token40] = ACTIONS(1870), + [anon_sym_def] = ACTIONS(1868), + [anon_sym_export_DASHenv] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_use] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1870), + [anon_sym_error] = ACTIONS(1868), + [anon_sym_list] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_loop] = ACTIONS(1868), + [anon_sym_make] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_catch] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_source] = ACTIONS(1868), + [anon_sym_source_DASHenv] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_hide] = ACTIONS(1868), + [anon_sym_hide_DASHenv] = ACTIONS(1868), + [anon_sym_overlay] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_as] = ACTIONS(1868), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1870), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1870), + [aux_sym__val_number_decimal_token1] = ACTIONS(1868), + [aux_sym__val_number_decimal_token2] = ACTIONS(1870), + [aux_sym__val_number_decimal_token3] = ACTIONS(1870), + [aux_sym__val_number_decimal_token4] = ACTIONS(1870), + [aux_sym__val_number_token1] = ACTIONS(1870), + [aux_sym__val_number_token2] = ACTIONS(1870), + [aux_sym__val_number_token3] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym__str_single_quotes] = ACTIONS(1870), + [sym__str_back_ticks] = ACTIONS(1870), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(247), + }, + [432] = { + [sym_cell_path] = STATE(687), + [sym_path] = STATE(578), + [sym_comment] = STATE(432), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_list] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(247), + }, + [433] = { + [sym_comment] = STATE(433), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_alias] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_let_DASHenv] = ACTIONS(1050), + [anon_sym_mut] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1050), + [aux_sym_cmd_identifier_token4] = ACTIONS(1050), + [aux_sym_cmd_identifier_token5] = ACTIONS(1050), + [aux_sym_cmd_identifier_token6] = ACTIONS(1050), + [aux_sym_cmd_identifier_token7] = ACTIONS(1050), + [aux_sym_cmd_identifier_token8] = ACTIONS(1050), + [aux_sym_cmd_identifier_token9] = ACTIONS(1050), + [aux_sym_cmd_identifier_token10] = ACTIONS(1050), + [aux_sym_cmd_identifier_token11] = ACTIONS(1050), + [aux_sym_cmd_identifier_token12] = ACTIONS(1050), + [aux_sym_cmd_identifier_token13] = ACTIONS(1050), + [aux_sym_cmd_identifier_token14] = ACTIONS(1050), + [aux_sym_cmd_identifier_token15] = ACTIONS(1050), + [aux_sym_cmd_identifier_token16] = ACTIONS(1050), + [aux_sym_cmd_identifier_token17] = ACTIONS(1050), + [aux_sym_cmd_identifier_token18] = ACTIONS(1050), + [aux_sym_cmd_identifier_token19] = ACTIONS(1050), + [aux_sym_cmd_identifier_token20] = ACTIONS(1050), + [aux_sym_cmd_identifier_token21] = ACTIONS(1050), + [aux_sym_cmd_identifier_token22] = ACTIONS(1050), + [aux_sym_cmd_identifier_token23] = ACTIONS(1050), + [aux_sym_cmd_identifier_token24] = ACTIONS(1050), + [aux_sym_cmd_identifier_token25] = ACTIONS(1050), + [aux_sym_cmd_identifier_token26] = ACTIONS(1050), + [aux_sym_cmd_identifier_token27] = ACTIONS(1050), + [aux_sym_cmd_identifier_token28] = ACTIONS(1050), + [aux_sym_cmd_identifier_token29] = ACTIONS(1050), + [aux_sym_cmd_identifier_token30] = ACTIONS(1050), + [aux_sym_cmd_identifier_token31] = ACTIONS(1050), + [aux_sym_cmd_identifier_token32] = ACTIONS(1050), + [aux_sym_cmd_identifier_token33] = ACTIONS(1050), + [aux_sym_cmd_identifier_token34] = ACTIONS(1050), + [aux_sym_cmd_identifier_token35] = ACTIONS(1050), + [aux_sym_cmd_identifier_token36] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1050), + [anon_sym_export_DASHenv] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1050), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_make] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_catch] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_source] = ACTIONS(1050), + [anon_sym_source_DASHenv] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_hide] = ACTIONS(1050), + [anon_sym_hide_DASHenv] = ACTIONS(1050), + [anon_sym_overlay] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(247), + }, + [434] = { + [sym_cell_path] = STATE(688), + [sym_path] = STATE(578), + [sym_comment] = STATE(434), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1876), + [anon_sym_alias] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_let_DASHenv] = ACTIONS(1876), + [anon_sym_mut] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [aux_sym_cmd_identifier_token1] = ACTIONS(1876), + [aux_sym_cmd_identifier_token2] = ACTIONS(1876), + [aux_sym_cmd_identifier_token3] = ACTIONS(1876), + [aux_sym_cmd_identifier_token4] = ACTIONS(1876), + [aux_sym_cmd_identifier_token5] = ACTIONS(1876), + [aux_sym_cmd_identifier_token6] = ACTIONS(1876), + [aux_sym_cmd_identifier_token7] = ACTIONS(1876), + [aux_sym_cmd_identifier_token8] = ACTIONS(1876), + [aux_sym_cmd_identifier_token9] = ACTIONS(1876), + [aux_sym_cmd_identifier_token10] = ACTIONS(1876), + [aux_sym_cmd_identifier_token11] = ACTIONS(1876), + [aux_sym_cmd_identifier_token12] = ACTIONS(1876), + [aux_sym_cmd_identifier_token13] = ACTIONS(1876), + [aux_sym_cmd_identifier_token14] = ACTIONS(1876), + [aux_sym_cmd_identifier_token15] = ACTIONS(1876), + [aux_sym_cmd_identifier_token16] = ACTIONS(1876), + [aux_sym_cmd_identifier_token17] = ACTIONS(1876), + [aux_sym_cmd_identifier_token18] = ACTIONS(1876), + [aux_sym_cmd_identifier_token19] = ACTIONS(1876), + [aux_sym_cmd_identifier_token20] = ACTIONS(1876), + [aux_sym_cmd_identifier_token21] = ACTIONS(1876), + [aux_sym_cmd_identifier_token22] = ACTIONS(1876), + [aux_sym_cmd_identifier_token23] = ACTIONS(1876), + [aux_sym_cmd_identifier_token24] = ACTIONS(1876), + [aux_sym_cmd_identifier_token25] = ACTIONS(1876), + [aux_sym_cmd_identifier_token26] = ACTIONS(1876), + [aux_sym_cmd_identifier_token27] = ACTIONS(1876), + [aux_sym_cmd_identifier_token28] = ACTIONS(1876), + [aux_sym_cmd_identifier_token29] = ACTIONS(1876), + [aux_sym_cmd_identifier_token30] = ACTIONS(1876), + [aux_sym_cmd_identifier_token31] = ACTIONS(1876), + [aux_sym_cmd_identifier_token32] = ACTIONS(1876), + [aux_sym_cmd_identifier_token33] = ACTIONS(1876), + [aux_sym_cmd_identifier_token34] = ACTIONS(1876), + [aux_sym_cmd_identifier_token35] = ACTIONS(1876), + [aux_sym_cmd_identifier_token36] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), + [aux_sym_cmd_identifier_token38] = ACTIONS(1876), + [aux_sym_cmd_identifier_token39] = ACTIONS(1878), + [aux_sym_cmd_identifier_token40] = ACTIONS(1878), + [anon_sym_def] = ACTIONS(1876), + [anon_sym_export_DASHenv] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_module] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_error] = ACTIONS(1876), + [anon_sym_list] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_make] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_else] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1876), + [anon_sym_catch] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_source] = ACTIONS(1876), + [anon_sym_source_DASHenv] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_hide] = ACTIONS(1876), + [anon_sym_hide_DASHenv] = ACTIONS(1876), + [anon_sym_overlay] = ACTIONS(1876), + [anon_sym_new] = ACTIONS(1876), + [anon_sym_as] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1876), + [aux_sym__val_number_decimal_token2] = ACTIONS(1878), + [aux_sym__val_number_decimal_token3] = ACTIONS(1878), + [aux_sym__val_number_decimal_token4] = ACTIONS(1878), + [aux_sym__val_number_token1] = ACTIONS(1878), + [aux_sym__val_number_token2] = ACTIONS(1878), + [aux_sym__val_number_token3] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym__str_single_quotes] = ACTIONS(1878), + [sym__str_back_ticks] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(247), + }, + [435] = { + [sym_cell_path] = STATE(689), + [sym_path] = STATE(578), + [sym_comment] = STATE(435), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_alias] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_let_DASHenv] = ACTIONS(1880), + [anon_sym_mut] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [aux_sym_cmd_identifier_token1] = ACTIONS(1880), + [aux_sym_cmd_identifier_token2] = ACTIONS(1880), + [aux_sym_cmd_identifier_token3] = ACTIONS(1880), + [aux_sym_cmd_identifier_token4] = ACTIONS(1880), + [aux_sym_cmd_identifier_token5] = ACTIONS(1880), + [aux_sym_cmd_identifier_token6] = ACTIONS(1880), + [aux_sym_cmd_identifier_token7] = ACTIONS(1880), + [aux_sym_cmd_identifier_token8] = ACTIONS(1880), + [aux_sym_cmd_identifier_token9] = ACTIONS(1880), + [aux_sym_cmd_identifier_token10] = ACTIONS(1880), + [aux_sym_cmd_identifier_token11] = ACTIONS(1880), + [aux_sym_cmd_identifier_token12] = ACTIONS(1880), + [aux_sym_cmd_identifier_token13] = ACTIONS(1880), + [aux_sym_cmd_identifier_token14] = ACTIONS(1880), + [aux_sym_cmd_identifier_token15] = ACTIONS(1880), + [aux_sym_cmd_identifier_token16] = ACTIONS(1880), + [aux_sym_cmd_identifier_token17] = ACTIONS(1880), + [aux_sym_cmd_identifier_token18] = ACTIONS(1880), + [aux_sym_cmd_identifier_token19] = ACTIONS(1880), + [aux_sym_cmd_identifier_token20] = ACTIONS(1880), + [aux_sym_cmd_identifier_token21] = ACTIONS(1880), + [aux_sym_cmd_identifier_token22] = ACTIONS(1880), + [aux_sym_cmd_identifier_token23] = ACTIONS(1880), + [aux_sym_cmd_identifier_token24] = ACTIONS(1880), + [aux_sym_cmd_identifier_token25] = ACTIONS(1880), + [aux_sym_cmd_identifier_token26] = ACTIONS(1880), + [aux_sym_cmd_identifier_token27] = ACTIONS(1880), + [aux_sym_cmd_identifier_token28] = ACTIONS(1880), + [aux_sym_cmd_identifier_token29] = ACTIONS(1880), + [aux_sym_cmd_identifier_token30] = ACTIONS(1880), + [aux_sym_cmd_identifier_token31] = ACTIONS(1880), + [aux_sym_cmd_identifier_token32] = ACTIONS(1880), + [aux_sym_cmd_identifier_token33] = ACTIONS(1880), + [aux_sym_cmd_identifier_token34] = ACTIONS(1880), + [aux_sym_cmd_identifier_token35] = ACTIONS(1880), + [aux_sym_cmd_identifier_token36] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_null] = ACTIONS(1882), + [aux_sym_cmd_identifier_token38] = ACTIONS(1880), + [aux_sym_cmd_identifier_token39] = ACTIONS(1882), + [aux_sym_cmd_identifier_token40] = ACTIONS(1882), + [anon_sym_def] = ACTIONS(1880), + [anon_sym_export_DASHenv] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_error] = ACTIONS(1880), + [anon_sym_list] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_make] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_source] = ACTIONS(1880), + [anon_sym_source_DASHenv] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_hide] = ACTIONS(1880), + [anon_sym_hide_DASHenv] = ACTIONS(1880), + [anon_sym_overlay] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_decimal_token4] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(247), + }, + [436] = { + [sym_cell_path] = STATE(690), + [sym_path] = STATE(578), + [sym_comment] = STATE(436), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1884), + [anon_sym_alias] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_let_DASHenv] = ACTIONS(1884), + [anon_sym_mut] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [aux_sym_cmd_identifier_token1] = ACTIONS(1884), + [aux_sym_cmd_identifier_token2] = ACTIONS(1884), + [aux_sym_cmd_identifier_token3] = ACTIONS(1884), + [aux_sym_cmd_identifier_token4] = ACTIONS(1884), + [aux_sym_cmd_identifier_token5] = ACTIONS(1884), + [aux_sym_cmd_identifier_token6] = ACTIONS(1884), + [aux_sym_cmd_identifier_token7] = ACTIONS(1884), + [aux_sym_cmd_identifier_token8] = ACTIONS(1884), + [aux_sym_cmd_identifier_token9] = ACTIONS(1884), + [aux_sym_cmd_identifier_token10] = ACTIONS(1884), + [aux_sym_cmd_identifier_token11] = ACTIONS(1884), + [aux_sym_cmd_identifier_token12] = ACTIONS(1884), + [aux_sym_cmd_identifier_token13] = ACTIONS(1884), + [aux_sym_cmd_identifier_token14] = ACTIONS(1884), + [aux_sym_cmd_identifier_token15] = ACTIONS(1884), + [aux_sym_cmd_identifier_token16] = ACTIONS(1884), + [aux_sym_cmd_identifier_token17] = ACTIONS(1884), + [aux_sym_cmd_identifier_token18] = ACTIONS(1884), + [aux_sym_cmd_identifier_token19] = ACTIONS(1884), + [aux_sym_cmd_identifier_token20] = ACTIONS(1884), + [aux_sym_cmd_identifier_token21] = ACTIONS(1884), + [aux_sym_cmd_identifier_token22] = ACTIONS(1884), + [aux_sym_cmd_identifier_token23] = ACTIONS(1884), + [aux_sym_cmd_identifier_token24] = ACTIONS(1884), + [aux_sym_cmd_identifier_token25] = ACTIONS(1884), + [aux_sym_cmd_identifier_token26] = ACTIONS(1884), + [aux_sym_cmd_identifier_token27] = ACTIONS(1884), + [aux_sym_cmd_identifier_token28] = ACTIONS(1884), + [aux_sym_cmd_identifier_token29] = ACTIONS(1884), + [aux_sym_cmd_identifier_token30] = ACTIONS(1884), + [aux_sym_cmd_identifier_token31] = ACTIONS(1884), + [aux_sym_cmd_identifier_token32] = ACTIONS(1884), + [aux_sym_cmd_identifier_token33] = ACTIONS(1884), + [aux_sym_cmd_identifier_token34] = ACTIONS(1884), + [aux_sym_cmd_identifier_token35] = ACTIONS(1884), + [aux_sym_cmd_identifier_token36] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1884), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = ACTIONS(1886), + [anon_sym_def] = ACTIONS(1884), + [anon_sym_export_DASHenv] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_use] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_error] = ACTIONS(1884), + [anon_sym_list] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_loop] = ACTIONS(1884), + [anon_sym_make] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1884), + [anon_sym_catch] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_source] = ACTIONS(1884), + [anon_sym_source_DASHenv] = ACTIONS(1884), + [anon_sym_register] = ACTIONS(1884), + [anon_sym_hide] = ACTIONS(1884), + [anon_sym_hide_DASHenv] = ACTIONS(1884), + [anon_sym_overlay] = ACTIONS(1884), + [anon_sym_new] = ACTIONS(1884), + [anon_sym_as] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1884), + [aux_sym__val_number_decimal_token2] = ACTIONS(1886), + [aux_sym__val_number_decimal_token3] = ACTIONS(1886), + [aux_sym__val_number_decimal_token4] = ACTIONS(1886), + [aux_sym__val_number_token1] = ACTIONS(1886), + [aux_sym__val_number_token2] = ACTIONS(1886), + [aux_sym__val_number_token3] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym__str_single_quotes] = ACTIONS(1886), + [sym__str_back_ticks] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(247), + }, + [437] = { + [sym_cell_path] = STATE(691), + [sym_path] = STATE(578), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1888), + [anon_sym_alias] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_let_DASHenv] = ACTIONS(1888), + [anon_sym_mut] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [aux_sym_cmd_identifier_token1] = ACTIONS(1888), + [aux_sym_cmd_identifier_token2] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [aux_sym_cmd_identifier_token6] = ACTIONS(1888), + [aux_sym_cmd_identifier_token7] = ACTIONS(1888), + [aux_sym_cmd_identifier_token8] = ACTIONS(1888), + [aux_sym_cmd_identifier_token9] = ACTIONS(1888), + [aux_sym_cmd_identifier_token10] = ACTIONS(1888), + [aux_sym_cmd_identifier_token11] = ACTIONS(1888), + [aux_sym_cmd_identifier_token12] = ACTIONS(1888), + [aux_sym_cmd_identifier_token13] = ACTIONS(1888), + [aux_sym_cmd_identifier_token14] = ACTIONS(1888), + [aux_sym_cmd_identifier_token15] = ACTIONS(1888), + [aux_sym_cmd_identifier_token16] = ACTIONS(1888), + [aux_sym_cmd_identifier_token17] = ACTIONS(1888), + [aux_sym_cmd_identifier_token18] = ACTIONS(1888), + [aux_sym_cmd_identifier_token19] = ACTIONS(1888), + [aux_sym_cmd_identifier_token20] = ACTIONS(1888), + [aux_sym_cmd_identifier_token21] = ACTIONS(1888), + [aux_sym_cmd_identifier_token22] = ACTIONS(1888), + [aux_sym_cmd_identifier_token23] = ACTIONS(1888), + [aux_sym_cmd_identifier_token24] = ACTIONS(1888), + [aux_sym_cmd_identifier_token25] = ACTIONS(1888), + [aux_sym_cmd_identifier_token26] = ACTIONS(1888), + [aux_sym_cmd_identifier_token27] = ACTIONS(1888), + [aux_sym_cmd_identifier_token28] = ACTIONS(1888), + [aux_sym_cmd_identifier_token29] = ACTIONS(1888), + [aux_sym_cmd_identifier_token30] = ACTIONS(1888), + [aux_sym_cmd_identifier_token31] = ACTIONS(1888), + [aux_sym_cmd_identifier_token32] = ACTIONS(1888), + [aux_sym_cmd_identifier_token33] = ACTIONS(1888), + [aux_sym_cmd_identifier_token34] = ACTIONS(1888), + [aux_sym_cmd_identifier_token35] = ACTIONS(1888), + [aux_sym_cmd_identifier_token36] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1888), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1888), + [anon_sym_export_DASHenv] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_module] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1888), + [anon_sym_list] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_make] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1888), + [anon_sym_catch] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_source] = ACTIONS(1888), + [anon_sym_source_DASHenv] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_hide] = ACTIONS(1888), + [anon_sym_hide_DASHenv] = ACTIONS(1888), + [anon_sym_overlay] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1888), + [anon_sym_as] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1888), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + }, + [438] = { + [sym_cell_path] = STATE(692), + [sym_path] = STATE(578), + [sym_comment] = STATE(438), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1892), + [anon_sym_alias] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_let_DASHenv] = ACTIONS(1892), + [anon_sym_mut] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [aux_sym_cmd_identifier_token1] = ACTIONS(1892), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1892), + [aux_sym_cmd_identifier_token9] = ACTIONS(1892), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1892), + [aux_sym_cmd_identifier_token13] = ACTIONS(1892), + [aux_sym_cmd_identifier_token14] = ACTIONS(1892), + [aux_sym_cmd_identifier_token15] = ACTIONS(1892), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1892), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token38] = ACTIONS(1892), + [aux_sym_cmd_identifier_token39] = ACTIONS(1894), + [aux_sym_cmd_identifier_token40] = ACTIONS(1894), + [anon_sym_def] = ACTIONS(1892), + [anon_sym_export_DASHenv] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_module] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_error] = ACTIONS(1892), + [anon_sym_list] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_make] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1892), + [anon_sym_catch] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_source] = ACTIONS(1892), + [anon_sym_source_DASHenv] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_hide] = ACTIONS(1892), + [anon_sym_hide_DASHenv] = ACTIONS(1892), + [anon_sym_overlay] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1892), + [anon_sym_as] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), + [aux_sym__val_number_decimal_token1] = ACTIONS(1892), + [aux_sym__val_number_decimal_token2] = ACTIONS(1894), + [aux_sym__val_number_decimal_token3] = ACTIONS(1894), + [aux_sym__val_number_decimal_token4] = ACTIONS(1894), + [aux_sym__val_number_token1] = ACTIONS(1894), + [aux_sym__val_number_token2] = ACTIONS(1894), + [aux_sym__val_number_token3] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1894), + [sym__str_back_ticks] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(247), + }, + [439] = { + [sym_cell_path] = STATE(693), + [sym_path] = STATE(578), + [sym_comment] = STATE(439), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1896), + [anon_sym_alias] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_let_DASHenv] = ACTIONS(1896), + [anon_sym_mut] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [aux_sym_cmd_identifier_token1] = ACTIONS(1896), + [aux_sym_cmd_identifier_token2] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [aux_sym_cmd_identifier_token6] = ACTIONS(1896), + [aux_sym_cmd_identifier_token7] = ACTIONS(1896), + [aux_sym_cmd_identifier_token8] = ACTIONS(1896), + [aux_sym_cmd_identifier_token9] = ACTIONS(1896), + [aux_sym_cmd_identifier_token10] = ACTIONS(1896), + [aux_sym_cmd_identifier_token11] = ACTIONS(1896), + [aux_sym_cmd_identifier_token12] = ACTIONS(1896), + [aux_sym_cmd_identifier_token13] = ACTIONS(1896), + [aux_sym_cmd_identifier_token14] = ACTIONS(1896), + [aux_sym_cmd_identifier_token15] = ACTIONS(1896), + [aux_sym_cmd_identifier_token16] = ACTIONS(1896), + [aux_sym_cmd_identifier_token17] = ACTIONS(1896), + [aux_sym_cmd_identifier_token18] = ACTIONS(1896), + [aux_sym_cmd_identifier_token19] = ACTIONS(1896), + [aux_sym_cmd_identifier_token20] = ACTIONS(1896), + [aux_sym_cmd_identifier_token21] = ACTIONS(1896), + [aux_sym_cmd_identifier_token22] = ACTIONS(1896), + [aux_sym_cmd_identifier_token23] = ACTIONS(1896), + [aux_sym_cmd_identifier_token24] = ACTIONS(1896), + [aux_sym_cmd_identifier_token25] = ACTIONS(1896), + [aux_sym_cmd_identifier_token26] = ACTIONS(1896), + [aux_sym_cmd_identifier_token27] = ACTIONS(1896), + [aux_sym_cmd_identifier_token28] = ACTIONS(1896), + [aux_sym_cmd_identifier_token29] = ACTIONS(1896), + [aux_sym_cmd_identifier_token30] = ACTIONS(1896), + [aux_sym_cmd_identifier_token31] = ACTIONS(1896), + [aux_sym_cmd_identifier_token32] = ACTIONS(1896), + [aux_sym_cmd_identifier_token33] = ACTIONS(1896), + [aux_sym_cmd_identifier_token34] = ACTIONS(1896), + [aux_sym_cmd_identifier_token35] = ACTIONS(1896), + [aux_sym_cmd_identifier_token36] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_null] = ACTIONS(1898), + [aux_sym_cmd_identifier_token38] = ACTIONS(1896), + [aux_sym_cmd_identifier_token39] = ACTIONS(1898), + [aux_sym_cmd_identifier_token40] = ACTIONS(1898), + [anon_sym_def] = ACTIONS(1896), + [anon_sym_export_DASHenv] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_module] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_error] = ACTIONS(1896), + [anon_sym_list] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_in] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_make] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_else] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1896), + [anon_sym_catch] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_source] = ACTIONS(1896), + [anon_sym_source_DASHenv] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_hide] = ACTIONS(1896), + [anon_sym_hide_DASHenv] = ACTIONS(1896), + [anon_sym_overlay] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1896), + [anon_sym_as] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1898), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1898), + [aux_sym__val_number_decimal_token1] = ACTIONS(1896), + [aux_sym__val_number_decimal_token2] = ACTIONS(1898), + [aux_sym__val_number_decimal_token3] = ACTIONS(1898), + [aux_sym__val_number_decimal_token4] = ACTIONS(1898), + [aux_sym__val_number_token1] = ACTIONS(1898), + [aux_sym__val_number_token2] = ACTIONS(1898), + [aux_sym__val_number_token3] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [sym__str_single_quotes] = ACTIONS(1898), + [sym__str_back_ticks] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(247), + }, + [440] = { + [sym_cell_path] = STATE(694), + [sym_path] = STATE(578), + [sym_comment] = STATE(440), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1900), + [anon_sym_alias] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_let_DASHenv] = ACTIONS(1900), + [anon_sym_mut] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [aux_sym_cmd_identifier_token1] = ACTIONS(1900), + [aux_sym_cmd_identifier_token2] = ACTIONS(1900), + [aux_sym_cmd_identifier_token3] = ACTIONS(1900), + [aux_sym_cmd_identifier_token4] = ACTIONS(1900), + [aux_sym_cmd_identifier_token5] = ACTIONS(1900), + [aux_sym_cmd_identifier_token6] = ACTIONS(1900), + [aux_sym_cmd_identifier_token7] = ACTIONS(1900), + [aux_sym_cmd_identifier_token8] = ACTIONS(1900), + [aux_sym_cmd_identifier_token9] = ACTIONS(1900), + [aux_sym_cmd_identifier_token10] = ACTIONS(1900), + [aux_sym_cmd_identifier_token11] = ACTIONS(1900), + [aux_sym_cmd_identifier_token12] = ACTIONS(1900), + [aux_sym_cmd_identifier_token13] = ACTIONS(1900), + [aux_sym_cmd_identifier_token14] = ACTIONS(1900), + [aux_sym_cmd_identifier_token15] = ACTIONS(1900), + [aux_sym_cmd_identifier_token16] = ACTIONS(1900), + [aux_sym_cmd_identifier_token17] = ACTIONS(1900), + [aux_sym_cmd_identifier_token18] = ACTIONS(1900), + [aux_sym_cmd_identifier_token19] = ACTIONS(1900), + [aux_sym_cmd_identifier_token20] = ACTIONS(1900), + [aux_sym_cmd_identifier_token21] = ACTIONS(1900), + [aux_sym_cmd_identifier_token22] = ACTIONS(1900), + [aux_sym_cmd_identifier_token23] = ACTIONS(1900), + [aux_sym_cmd_identifier_token24] = ACTIONS(1900), + [aux_sym_cmd_identifier_token25] = ACTIONS(1900), + [aux_sym_cmd_identifier_token26] = ACTIONS(1900), + [aux_sym_cmd_identifier_token27] = ACTIONS(1900), + [aux_sym_cmd_identifier_token28] = ACTIONS(1900), + [aux_sym_cmd_identifier_token29] = ACTIONS(1900), + [aux_sym_cmd_identifier_token30] = ACTIONS(1900), + [aux_sym_cmd_identifier_token31] = ACTIONS(1900), + [aux_sym_cmd_identifier_token32] = ACTIONS(1900), + [aux_sym_cmd_identifier_token33] = ACTIONS(1900), + [aux_sym_cmd_identifier_token34] = ACTIONS(1900), + [aux_sym_cmd_identifier_token35] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_null] = ACTIONS(1902), + [aux_sym_cmd_identifier_token38] = ACTIONS(1900), + [aux_sym_cmd_identifier_token39] = ACTIONS(1902), + [aux_sym_cmd_identifier_token40] = ACTIONS(1902), + [anon_sym_def] = ACTIONS(1900), + [anon_sym_export_DASHenv] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_module] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1902), + [anon_sym_error] = ACTIONS(1900), + [anon_sym_list] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_make] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_else] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1900), + [anon_sym_catch] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_source] = ACTIONS(1900), + [anon_sym_source_DASHenv] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_hide] = ACTIONS(1900), + [anon_sym_hide_DASHenv] = ACTIONS(1900), + [anon_sym_overlay] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1900), + [anon_sym_as] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1902), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1900), + [aux_sym__val_number_decimal_token2] = ACTIONS(1902), + [aux_sym__val_number_decimal_token3] = ACTIONS(1902), + [aux_sym__val_number_decimal_token4] = ACTIONS(1902), + [aux_sym__val_number_token1] = ACTIONS(1902), + [aux_sym__val_number_token2] = ACTIONS(1902), + [aux_sym__val_number_token3] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym__str_single_quotes] = ACTIONS(1902), + [sym__str_back_ticks] = ACTIONS(1902), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(247), + }, + [441] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(578), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(1904), + [anon_sym_alias] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_let_DASHenv] = ACTIONS(1904), + [anon_sym_mut] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [aux_sym_cmd_identifier_token1] = ACTIONS(1904), + [aux_sym_cmd_identifier_token2] = ACTIONS(1904), + [aux_sym_cmd_identifier_token3] = ACTIONS(1904), + [aux_sym_cmd_identifier_token4] = ACTIONS(1904), + [aux_sym_cmd_identifier_token5] = ACTIONS(1904), + [aux_sym_cmd_identifier_token6] = ACTIONS(1904), + [aux_sym_cmd_identifier_token7] = ACTIONS(1904), + [aux_sym_cmd_identifier_token8] = ACTIONS(1904), + [aux_sym_cmd_identifier_token9] = ACTIONS(1904), + [aux_sym_cmd_identifier_token10] = ACTIONS(1904), + [aux_sym_cmd_identifier_token11] = ACTIONS(1904), + [aux_sym_cmd_identifier_token12] = ACTIONS(1904), + [aux_sym_cmd_identifier_token13] = ACTIONS(1904), + [aux_sym_cmd_identifier_token14] = ACTIONS(1904), + [aux_sym_cmd_identifier_token15] = ACTIONS(1904), + [aux_sym_cmd_identifier_token16] = ACTIONS(1904), + [aux_sym_cmd_identifier_token17] = ACTIONS(1904), + [aux_sym_cmd_identifier_token18] = ACTIONS(1904), + [aux_sym_cmd_identifier_token19] = ACTIONS(1904), + [aux_sym_cmd_identifier_token20] = ACTIONS(1904), + [aux_sym_cmd_identifier_token21] = ACTIONS(1904), + [aux_sym_cmd_identifier_token22] = ACTIONS(1904), + [aux_sym_cmd_identifier_token23] = ACTIONS(1904), + [aux_sym_cmd_identifier_token24] = ACTIONS(1904), + [aux_sym_cmd_identifier_token25] = ACTIONS(1904), + [aux_sym_cmd_identifier_token26] = ACTIONS(1904), + [aux_sym_cmd_identifier_token27] = ACTIONS(1904), + [aux_sym_cmd_identifier_token28] = ACTIONS(1904), + [aux_sym_cmd_identifier_token29] = ACTIONS(1904), + [aux_sym_cmd_identifier_token30] = ACTIONS(1904), + [aux_sym_cmd_identifier_token31] = ACTIONS(1904), + [aux_sym_cmd_identifier_token32] = ACTIONS(1904), + [aux_sym_cmd_identifier_token33] = ACTIONS(1904), + [aux_sym_cmd_identifier_token34] = ACTIONS(1904), + [aux_sym_cmd_identifier_token35] = ACTIONS(1904), + [aux_sym_cmd_identifier_token36] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token38] = ACTIONS(1904), + [aux_sym_cmd_identifier_token39] = ACTIONS(1906), + [aux_sym_cmd_identifier_token40] = ACTIONS(1906), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_export_DASHenv] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_module] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_error] = ACTIONS(1904), + [anon_sym_list] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_make] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1904), + [anon_sym_catch] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_source] = ACTIONS(1904), + [anon_sym_source_DASHenv] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_hide] = ACTIONS(1904), + [anon_sym_hide_DASHenv] = ACTIONS(1904), + [anon_sym_overlay] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1906), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1906), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1906), + [aux_sym__val_number_decimal_token4] = ACTIONS(1906), + [aux_sym__val_number_token1] = ACTIONS(1906), + [aux_sym__val_number_token2] = ACTIONS(1906), + [aux_sym__val_number_token3] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym__str_single_quotes] = ACTIONS(1906), + [sym__str_back_ticks] = ACTIONS(1906), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(247), + }, + [442] = { + [sym_comment] = STATE(442), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [aux_sym__immediate_decimal_token2] = ACTIONS(1910), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [443] = { + [sym_comment] = STATE(443), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(247), + }, + [444] = { + [sym__expr_parenthesized_immediate] = STATE(7335), + [sym_comment] = STATE(444), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [aux_sym_cmd_identifier_token1] = ACTIONS(2015), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2015), + [aux_sym_cmd_identifier_token9] = ACTIONS(2015), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2015), + [aux_sym_cmd_identifier_token13] = ACTIONS(2015), + [aux_sym_cmd_identifier_token14] = ACTIONS(2015), + [aux_sym_cmd_identifier_token15] = ACTIONS(2015), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2015), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2015), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), + [sym__entry_separator] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(3), + }, + [445] = { + [sym_comment] = STATE(445), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_alias] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_let_DASHenv] = ACTIONS(1675), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [aux_sym_cmd_identifier_token1] = ACTIONS(1675), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1675), + [aux_sym_cmd_identifier_token9] = ACTIONS(1675), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1675), + [aux_sym_cmd_identifier_token13] = ACTIONS(1675), + [aux_sym_cmd_identifier_token14] = ACTIONS(1675), + [aux_sym_cmd_identifier_token15] = ACTIONS(1675), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1675), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1675), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_export_DASHenv] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_use] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1677), + [anon_sym_error] = ACTIONS(1675), + [anon_sym_list] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_loop] = ACTIONS(1675), + [anon_sym_make] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_catch] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_source] = ACTIONS(1675), + [anon_sym_source_DASHenv] = ACTIONS(1675), + [anon_sym_register] = ACTIONS(1675), + [anon_sym_hide] = ACTIONS(1675), + [anon_sym_hide_DASHenv] = ACTIONS(1675), + [anon_sym_overlay] = ACTIONS(1675), + [anon_sym_new] = ACTIONS(1675), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(247), + }, + [446] = { + [sym_comment] = STATE(446), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_alias] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_let_DASHenv] = ACTIONS(2141), + [anon_sym_mut] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [aux_sym_cmd_identifier_token1] = ACTIONS(2141), + [aux_sym_cmd_identifier_token2] = ACTIONS(2141), + [aux_sym_cmd_identifier_token3] = ACTIONS(2141), + [aux_sym_cmd_identifier_token4] = ACTIONS(2141), + [aux_sym_cmd_identifier_token5] = ACTIONS(2141), + [aux_sym_cmd_identifier_token6] = ACTIONS(2141), + [aux_sym_cmd_identifier_token7] = ACTIONS(2141), + [aux_sym_cmd_identifier_token8] = ACTIONS(2141), + [aux_sym_cmd_identifier_token9] = ACTIONS(2141), + [aux_sym_cmd_identifier_token10] = ACTIONS(2141), + [aux_sym_cmd_identifier_token11] = ACTIONS(2141), + [aux_sym_cmd_identifier_token12] = ACTIONS(2141), + [aux_sym_cmd_identifier_token13] = ACTIONS(2141), + [aux_sym_cmd_identifier_token14] = ACTIONS(2141), + [aux_sym_cmd_identifier_token15] = ACTIONS(2141), + [aux_sym_cmd_identifier_token16] = ACTIONS(2141), + [aux_sym_cmd_identifier_token17] = ACTIONS(2141), + [aux_sym_cmd_identifier_token18] = ACTIONS(2141), + [aux_sym_cmd_identifier_token19] = ACTIONS(2141), + [aux_sym_cmd_identifier_token20] = ACTIONS(2141), + [aux_sym_cmd_identifier_token21] = ACTIONS(2141), + [aux_sym_cmd_identifier_token22] = ACTIONS(2141), + [aux_sym_cmd_identifier_token23] = ACTIONS(2141), + [aux_sym_cmd_identifier_token24] = ACTIONS(2141), + [aux_sym_cmd_identifier_token25] = ACTIONS(2141), + [aux_sym_cmd_identifier_token26] = ACTIONS(2141), + [aux_sym_cmd_identifier_token27] = ACTIONS(2141), + [aux_sym_cmd_identifier_token28] = ACTIONS(2141), + [aux_sym_cmd_identifier_token29] = ACTIONS(2141), + [aux_sym_cmd_identifier_token30] = ACTIONS(2141), + [aux_sym_cmd_identifier_token31] = ACTIONS(2141), + [aux_sym_cmd_identifier_token32] = ACTIONS(2141), + [aux_sym_cmd_identifier_token33] = ACTIONS(2141), + [aux_sym_cmd_identifier_token34] = ACTIONS(2141), + [aux_sym_cmd_identifier_token35] = ACTIONS(2141), + [aux_sym_cmd_identifier_token36] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_null] = ACTIONS(2143), + [aux_sym_cmd_identifier_token38] = ACTIONS(2141), + [aux_sym_cmd_identifier_token39] = ACTIONS(2143), + [aux_sym_cmd_identifier_token40] = ACTIONS(2143), + [anon_sym_def] = ACTIONS(2141), + [anon_sym_export_DASHenv] = ACTIONS(2141), + [anon_sym_extern] = ACTIONS(2141), + [anon_sym_module] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2143), + [anon_sym_error] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_in] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_make] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_else] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_catch] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_source] = ACTIONS(2141), + [anon_sym_source_DASHenv] = ACTIONS(2141), + [anon_sym_register] = ACTIONS(2141), + [anon_sym_hide] = ACTIONS(2141), + [anon_sym_hide_DASHenv] = ACTIONS(2141), + [anon_sym_overlay] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2143), + [anon_sym_DOT_DOT2] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2143), + [aux_sym__val_number_decimal_token1] = ACTIONS(2141), + [aux_sym__val_number_decimal_token2] = ACTIONS(2143), + [aux_sym__val_number_decimal_token3] = ACTIONS(2143), + [aux_sym__val_number_decimal_token4] = ACTIONS(2143), + [aux_sym__val_number_token1] = ACTIONS(2143), + [aux_sym__val_number_token2] = ACTIONS(2143), + [aux_sym__val_number_token3] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [sym__str_single_quotes] = ACTIONS(2143), + [sym__str_back_ticks] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(247), + }, + [447] = { + [sym_expr_parenthesized] = STATE(4217), + [sym__spread_parenthesized] = STATE(4750), + [sym_val_range] = STATE(4769), + [sym__val_range] = STATE(7527), + [sym__val_range_with_end] = STATE(7302), + [sym__value] = STATE(4769), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(4456), + [sym__spread_variable] = STATE(4708), + [sym_val_variable] = STATE(4303), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(3935), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym__spread_list] = STATE(4750), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym__cmd_arg] = STATE(4903), + [sym_redirection] = STATE(4650), + [sym__flag] = STATE(4677), + [sym_short_flag] = STATE(4716), + [sym_long_flag] = STATE(4716), + [sym_unquoted] = STATE(4486), + [sym__unquoted_with_expr] = STATE(4763), + [sym__unquoted_anonymous_prefix] = STATE(6878), + [sym_comment] = STATE(447), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [anon_sym_null] = ACTIONS(2039), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [sym__newline] = ACTIONS(2148), + [sym__space] = ACTIONS(2150), + [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_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), + [anon_sym_DOT_DOT_LT] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [aux_sym__val_number_decimal_token3] = ACTIONS(2067), - [aux_sym__val_number_decimal_token4] = ACTIONS(2067), - [aux_sym__val_number_token1] = ACTIONS(2067), - [aux_sym__val_number_token2] = ACTIONS(2067), - [aux_sym__val_number_token3] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [sym__str_single_quotes] = ACTIONS(2067), - [sym__str_back_ticks] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2069), + [aux_sym__val_number_decimal_token4] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2081), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2089), + [anon_sym_err_GT] = ACTIONS(2091), + [anon_sym_out_GT] = ACTIONS(2091), + [anon_sym_e_GT] = ACTIONS(2091), + [anon_sym_o_GT] = ACTIONS(2091), + [anon_sym_err_PLUSout_GT] = ACTIONS(2091), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2091), + [anon_sym_o_PLUSe_GT] = ACTIONS(2091), + [anon_sym_e_PLUSo_GT] = ACTIONS(2091), + [anon_sym_err_GT_GT] = ACTIONS(2091), + [anon_sym_out_GT_GT] = ACTIONS(2091), + [anon_sym_e_GT_GT] = ACTIONS(2091), + [anon_sym_o_GT_GT] = ACTIONS(2091), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), + [aux_sym_unquoted_token1] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(3), + }, + [448] = { + [sym_comment] = STATE(448), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2029), + [aux_sym_cmd_identifier_token3] = ACTIONS(2029), + [aux_sym_cmd_identifier_token4] = ACTIONS(2029), + [aux_sym_cmd_identifier_token5] = ACTIONS(2029), + [aux_sym_cmd_identifier_token6] = ACTIONS(2029), + [aux_sym_cmd_identifier_token7] = ACTIONS(2029), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2029), + [aux_sym_cmd_identifier_token11] = ACTIONS(2029), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2029), + [aux_sym_cmd_identifier_token17] = ACTIONS(2029), + [aux_sym_cmd_identifier_token18] = ACTIONS(2029), + [aux_sym_cmd_identifier_token19] = ACTIONS(2029), + [aux_sym_cmd_identifier_token20] = ACTIONS(2029), + [aux_sym_cmd_identifier_token21] = ACTIONS(2029), + [aux_sym_cmd_identifier_token22] = ACTIONS(2029), + [aux_sym_cmd_identifier_token23] = ACTIONS(2029), + [aux_sym_cmd_identifier_token24] = ACTIONS(2029), + [aux_sym_cmd_identifier_token25] = ACTIONS(2029), + [aux_sym_cmd_identifier_token26] = ACTIONS(2029), + [aux_sym_cmd_identifier_token27] = ACTIONS(2029), + [aux_sym_cmd_identifier_token28] = ACTIONS(2029), + [aux_sym_cmd_identifier_token29] = ACTIONS(2029), + [aux_sym_cmd_identifier_token30] = ACTIONS(2029), + [aux_sym_cmd_identifier_token31] = ACTIONS(2029), + [aux_sym_cmd_identifier_token32] = ACTIONS(2029), + [aux_sym_cmd_identifier_token33] = ACTIONS(2029), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2029), + [aux_sym_cmd_identifier_token36] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_list] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_new] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), + [anon_sym_DOT_DOT2] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), [anon_sym_POUND] = ACTIONS(247), }, - [418] = { - [sym_comment] = STATE(418), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_list] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [sym__entry_separator] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1786), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [449] = { + [sym_comment] = STATE(449), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2033), + [aux_sym_cmd_identifier_token3] = ACTIONS(2033), + [aux_sym_cmd_identifier_token4] = ACTIONS(2033), + [aux_sym_cmd_identifier_token5] = ACTIONS(2033), + [aux_sym_cmd_identifier_token6] = ACTIONS(2033), + [aux_sym_cmd_identifier_token7] = ACTIONS(2033), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2033), + [aux_sym_cmd_identifier_token11] = ACTIONS(2033), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2033), + [aux_sym_cmd_identifier_token17] = ACTIONS(2033), + [aux_sym_cmd_identifier_token18] = ACTIONS(2033), + [aux_sym_cmd_identifier_token19] = ACTIONS(2033), + [aux_sym_cmd_identifier_token20] = ACTIONS(2033), + [aux_sym_cmd_identifier_token21] = ACTIONS(2033), + [aux_sym_cmd_identifier_token22] = ACTIONS(2033), + [aux_sym_cmd_identifier_token23] = ACTIONS(2033), + [aux_sym_cmd_identifier_token24] = ACTIONS(2033), + [aux_sym_cmd_identifier_token25] = ACTIONS(2033), + [aux_sym_cmd_identifier_token26] = ACTIONS(2033), + [aux_sym_cmd_identifier_token27] = ACTIONS(2033), + [aux_sym_cmd_identifier_token28] = ACTIONS(2033), + [aux_sym_cmd_identifier_token29] = ACTIONS(2033), + [aux_sym_cmd_identifier_token30] = ACTIONS(2033), + [aux_sym_cmd_identifier_token31] = ACTIONS(2033), + [aux_sym_cmd_identifier_token32] = ACTIONS(2033), + [aux_sym_cmd_identifier_token33] = ACTIONS(2033), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2033), + [aux_sym_cmd_identifier_token36] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(247), + }, + [450] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(450), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_alias] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_let_DASHenv] = ACTIONS(2152), + [anon_sym_mut] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [aux_sym_cmd_identifier_token1] = ACTIONS(2152), + [aux_sym_cmd_identifier_token2] = ACTIONS(2152), + [aux_sym_cmd_identifier_token3] = ACTIONS(2152), + [aux_sym_cmd_identifier_token4] = ACTIONS(2152), + [aux_sym_cmd_identifier_token5] = ACTIONS(2152), + [aux_sym_cmd_identifier_token6] = ACTIONS(2152), + [aux_sym_cmd_identifier_token7] = ACTIONS(2152), + [aux_sym_cmd_identifier_token8] = ACTIONS(2152), + [aux_sym_cmd_identifier_token9] = ACTIONS(2152), + [aux_sym_cmd_identifier_token10] = ACTIONS(2152), + [aux_sym_cmd_identifier_token11] = ACTIONS(2152), + [aux_sym_cmd_identifier_token12] = ACTIONS(2152), + [aux_sym_cmd_identifier_token13] = ACTIONS(2152), + [aux_sym_cmd_identifier_token14] = ACTIONS(2152), + [aux_sym_cmd_identifier_token15] = ACTIONS(2152), + [aux_sym_cmd_identifier_token16] = ACTIONS(2152), + [aux_sym_cmd_identifier_token17] = ACTIONS(2152), + [aux_sym_cmd_identifier_token18] = ACTIONS(2152), + [aux_sym_cmd_identifier_token19] = ACTIONS(2152), + [aux_sym_cmd_identifier_token20] = ACTIONS(2152), + [aux_sym_cmd_identifier_token21] = ACTIONS(2152), + [aux_sym_cmd_identifier_token22] = ACTIONS(2152), + [aux_sym_cmd_identifier_token23] = ACTIONS(2152), + [aux_sym_cmd_identifier_token24] = ACTIONS(2152), + [aux_sym_cmd_identifier_token25] = ACTIONS(2152), + [aux_sym_cmd_identifier_token26] = ACTIONS(2152), + [aux_sym_cmd_identifier_token27] = ACTIONS(2152), + [aux_sym_cmd_identifier_token28] = ACTIONS(2152), + [aux_sym_cmd_identifier_token29] = ACTIONS(2152), + [aux_sym_cmd_identifier_token30] = ACTIONS(2152), + [aux_sym_cmd_identifier_token31] = ACTIONS(2152), + [aux_sym_cmd_identifier_token32] = ACTIONS(2152), + [aux_sym_cmd_identifier_token33] = ACTIONS(2152), + [aux_sym_cmd_identifier_token34] = ACTIONS(2152), + [aux_sym_cmd_identifier_token35] = ACTIONS(2152), + [aux_sym_cmd_identifier_token36] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [aux_sym_cmd_identifier_token38] = ACTIONS(2152), + [aux_sym_cmd_identifier_token39] = ACTIONS(2152), + [aux_sym_cmd_identifier_token40] = ACTIONS(2152), + [anon_sym_def] = ACTIONS(2152), + [anon_sym_export_DASHenv] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_use] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_error] = ACTIONS(2152), + [anon_sym_list] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2152), + [anon_sym_loop] = ACTIONS(2152), + [anon_sym_make] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_catch] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_source] = ACTIONS(2152), + [anon_sym_source_DASHenv] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_hide] = ACTIONS(2152), + [anon_sym_hide_DASHenv] = ACTIONS(2152), + [anon_sym_overlay] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_as] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = ACTIONS(2152), + [aux_sym__val_number_decimal_token2] = ACTIONS(2152), + [aux_sym__val_number_decimal_token3] = ACTIONS(2152), + [aux_sym__val_number_decimal_token4] = ACTIONS(2152), + [aux_sym__val_number_token1] = ACTIONS(2152), + [aux_sym__val_number_token2] = ACTIONS(2152), + [aux_sym__val_number_token3] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), + [sym__entry_separator] = ACTIONS(2154), + [anon_sym_PLUS] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), }, - [419] = { - [sym_comment] = STATE(419), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_alias] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_DASHenv] = ACTIONS(2160), - [anon_sym_mut] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [aux_sym_cmd_identifier_token1] = ACTIONS(2160), - [aux_sym_cmd_identifier_token2] = ACTIONS(2160), - [aux_sym_cmd_identifier_token3] = ACTIONS(2160), - [aux_sym_cmd_identifier_token4] = ACTIONS(2160), - [aux_sym_cmd_identifier_token5] = ACTIONS(2160), - [aux_sym_cmd_identifier_token6] = ACTIONS(2160), - [aux_sym_cmd_identifier_token7] = ACTIONS(2160), - [aux_sym_cmd_identifier_token8] = ACTIONS(2160), - [aux_sym_cmd_identifier_token9] = ACTIONS(2160), - [aux_sym_cmd_identifier_token10] = ACTIONS(2160), - [aux_sym_cmd_identifier_token11] = ACTIONS(2160), - [aux_sym_cmd_identifier_token12] = ACTIONS(2160), - [aux_sym_cmd_identifier_token13] = ACTIONS(2160), - [aux_sym_cmd_identifier_token14] = ACTIONS(2160), - [aux_sym_cmd_identifier_token15] = ACTIONS(2160), - [aux_sym_cmd_identifier_token16] = ACTIONS(2160), - [aux_sym_cmd_identifier_token17] = ACTIONS(2160), - [aux_sym_cmd_identifier_token18] = ACTIONS(2160), - [aux_sym_cmd_identifier_token19] = ACTIONS(2160), - [aux_sym_cmd_identifier_token20] = ACTIONS(2160), - [aux_sym_cmd_identifier_token21] = ACTIONS(2160), - [aux_sym_cmd_identifier_token22] = ACTIONS(2160), - [aux_sym_cmd_identifier_token23] = ACTIONS(2160), - [aux_sym_cmd_identifier_token24] = ACTIONS(2160), - [aux_sym_cmd_identifier_token25] = ACTIONS(2160), - [aux_sym_cmd_identifier_token26] = ACTIONS(2160), - [aux_sym_cmd_identifier_token27] = ACTIONS(2160), - [aux_sym_cmd_identifier_token28] = ACTIONS(2160), - [aux_sym_cmd_identifier_token29] = ACTIONS(2160), - [aux_sym_cmd_identifier_token30] = ACTIONS(2160), - [aux_sym_cmd_identifier_token31] = ACTIONS(2160), - [aux_sym_cmd_identifier_token32] = ACTIONS(2160), - [aux_sym_cmd_identifier_token33] = ACTIONS(2160), - [aux_sym_cmd_identifier_token34] = ACTIONS(2160), - [aux_sym_cmd_identifier_token35] = ACTIONS(2160), - [aux_sym_cmd_identifier_token36] = ACTIONS(2160), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2160), - [aux_sym_cmd_identifier_token38] = ACTIONS(2160), - [aux_sym_cmd_identifier_token39] = ACTIONS(2160), - [aux_sym_cmd_identifier_token40] = ACTIONS(2160), - [anon_sym_def] = ACTIONS(2160), - [anon_sym_export_DASHenv] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2160), - [anon_sym_error] = ACTIONS(2160), - [anon_sym_list] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_make] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_source] = ACTIONS(2160), - [anon_sym_source_DASHenv] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_hide] = ACTIONS(2160), - [anon_sym_hide_DASHenv] = ACTIONS(2160), - [anon_sym_overlay] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2160), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2160), - [aux_sym__val_number_decimal_token3] = ACTIONS(2160), - [aux_sym__val_number_decimal_token4] = ACTIONS(2160), - [aux_sym__val_number_token1] = ACTIONS(2160), - [aux_sym__val_number_token2] = ACTIONS(2160), - [aux_sym__val_number_token3] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [sym__str_single_quotes] = ACTIONS(2160), - [sym__str_back_ticks] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2160), - [sym__entry_separator] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2160), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [451] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(451), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2156), + [anon_sym_false] = ACTIONS(2156), + [anon_sym_null] = ACTIONS(2156), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2156), + [aux_sym_cmd_identifier_token40] = ACTIONS(2156), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_list] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), + [sym__entry_separator] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(3), }, - [420] = { - [sym_expr_parenthesized] = STATE(4326), - [sym__spread_parenthesized] = STATE(4835), - [sym_val_range] = STATE(4912), - [sym__val_range] = STATE(7672), - [sym__val_range_with_end] = STATE(7329), - [sym__value] = STATE(4912), - [sym_val_nothing] = STATE(4945), - [sym_val_bool] = STATE(4563), - [sym__spread_variable] = STATE(4913), - [sym_val_variable] = STATE(4405), - [sym_val_number] = STATE(4945), - [sym__val_number_decimal] = STATE(3918), - [sym__val_number] = STATE(4892), - [sym_val_duration] = STATE(4945), - [sym_val_filesize] = STATE(4945), - [sym_val_binary] = STATE(4945), - [sym_val_string] = STATE(4945), - [sym__str_double_quotes] = STATE(4462), - [sym_val_interpolated] = STATE(4945), - [sym__inter_single_quotes] = STATE(4775), - [sym__inter_double_quotes] = STATE(4778), - [sym_val_list] = STATE(4945), - [sym__spread_list] = STATE(4835), - [sym_val_record] = STATE(4945), - [sym_val_table] = STATE(4945), - [sym_val_closure] = STATE(4945), - [sym__cmd_arg] = STATE(4840), - [sym_redirection] = STATE(4858), - [sym__flag] = STATE(4933), - [sym_short_flag] = STATE(4829), - [sym_long_flag] = STATE(4829), - [sym_unquoted] = STATE(4465), - [sym__unquoted_with_expr] = STATE(4917), - [sym__unquoted_anonymous_prefix] = STATE(6762), - [sym_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_null] = ACTIONS(2166), - [aux_sym_cmd_identifier_token38] = ACTIONS(2168), - [aux_sym_cmd_identifier_token39] = ACTIONS(2168), - [aux_sym_cmd_identifier_token40] = ACTIONS(2168), - [sym__newline] = ACTIONS(2081), - [sym__space] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_err_GT_PIPE] = ACTIONS(2081), - [anon_sym_out_GT_PIPE] = ACTIONS(2081), - [anon_sym_e_GT_PIPE] = ACTIONS(2081), - [anon_sym_o_GT_PIPE] = ACTIONS(2081), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2081), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2081), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2081), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2178), - [aux_sym_ctrl_match_token1] = ACTIONS(2180), - [anon_sym_DOT_DOT] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_LT] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2188), - [aux_sym__val_number_decimal_token1] = ACTIONS(2190), - [aux_sym__val_number_decimal_token2] = ACTIONS(2190), - [aux_sym__val_number_decimal_token3] = ACTIONS(2192), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2196), - [aux_sym__val_number_token2] = ACTIONS(2196), - [aux_sym__val_number_token3] = ACTIONS(2196), - [anon_sym_0b] = ACTIONS(2198), - [anon_sym_0o] = ACTIONS(2200), - [anon_sym_0x] = ACTIONS(2200), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2204), - [sym__str_single_quotes] = ACTIONS(2206), - [sym__str_back_ticks] = ACTIONS(2206), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2208), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2212), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [aux_sym_unquoted_token1] = ACTIONS(2216), + [452] = { + [sym_expr_parenthesized] = STATE(4458), + [sym__spread_parenthesized] = STATE(4971), + [sym_val_range] = STATE(4988), + [sym__val_range] = STATE(7614), + [sym__val_range_with_end] = STATE(7248), + [sym__value] = STATE(4988), + [sym_val_nothing] = STATE(4843), + [sym_val_bool] = STATE(4562), + [sym__spread_variable] = STATE(4811), + [sym_val_variable] = STATE(4457), + [sym_val_number] = STATE(4843), + [sym__val_number_decimal] = STATE(3979), + [sym__val_number] = STATE(4928), + [sym_val_duration] = STATE(4843), + [sym_val_filesize] = STATE(4843), + [sym_val_binary] = STATE(4843), + [sym_val_string] = STATE(4843), + [sym__str_double_quotes] = STATE(4626), + [sym_val_interpolated] = STATE(4843), + [sym__inter_single_quotes] = STATE(4866), + [sym__inter_double_quotes] = STATE(4872), + [sym_val_list] = STATE(4843), + [sym__spread_list] = STATE(4971), + [sym_val_record] = STATE(4843), + [sym_val_table] = STATE(4843), + [sym_val_closure] = STATE(4843), + [sym__cmd_arg] = STATE(4839), + [sym_redirection] = STATE(4841), + [sym__flag] = STATE(4842), + [sym_short_flag] = STATE(4835), + [sym_long_flag] = STATE(4835), + [sym_unquoted] = STATE(4529), + [sym__unquoted_with_expr] = STATE(4862), + [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2160), + [anon_sym_false] = ACTIONS(2160), + [anon_sym_null] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [sym__newline] = ACTIONS(2043), + [sym__space] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_err_GT_PIPE] = ACTIONS(2043), + [anon_sym_out_GT_PIPE] = ACTIONS(2043), + [anon_sym_e_GT_PIPE] = ACTIONS(2043), + [anon_sym_o_GT_PIPE] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2180), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), + [anon_sym_DOT_DOT_LT] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(2186), + [aux_sym__val_number_decimal_token3] = ACTIONS(2188), + [aux_sym__val_number_decimal_token4] = ACTIONS(2190), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [anon_sym_0b] = ACTIONS(2194), + [anon_sym_0o] = ACTIONS(2196), + [anon_sym_0x] = ACTIONS(2196), + [sym_val_date] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2208), + [anon_sym_err_GT] = ACTIONS(2210), + [anon_sym_out_GT] = ACTIONS(2210), + [anon_sym_e_GT] = ACTIONS(2210), + [anon_sym_o_GT] = ACTIONS(2210), + [anon_sym_err_PLUSout_GT] = ACTIONS(2210), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2210), + [anon_sym_o_PLUSe_GT] = ACTIONS(2210), + [anon_sym_e_PLUSo_GT] = ACTIONS(2210), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2212), [anon_sym_POUND] = ACTIONS(3), }, - [421] = { - [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), - [sym__entry_separator] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1796), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [453] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_alias] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_let_DASHenv] = ACTIONS(2214), + [anon_sym_mut] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [aux_sym_cmd_identifier_token1] = ACTIONS(2214), + [aux_sym_cmd_identifier_token2] = ACTIONS(2214), + [aux_sym_cmd_identifier_token3] = ACTIONS(2214), + [aux_sym_cmd_identifier_token4] = ACTIONS(2214), + [aux_sym_cmd_identifier_token5] = ACTIONS(2214), + [aux_sym_cmd_identifier_token6] = ACTIONS(2214), + [aux_sym_cmd_identifier_token7] = ACTIONS(2214), + [aux_sym_cmd_identifier_token8] = ACTIONS(2214), + [aux_sym_cmd_identifier_token9] = ACTIONS(2214), + [aux_sym_cmd_identifier_token10] = ACTIONS(2214), + [aux_sym_cmd_identifier_token11] = ACTIONS(2214), + [aux_sym_cmd_identifier_token12] = ACTIONS(2214), + [aux_sym_cmd_identifier_token13] = ACTIONS(2214), + [aux_sym_cmd_identifier_token14] = ACTIONS(2214), + [aux_sym_cmd_identifier_token15] = ACTIONS(2214), + [aux_sym_cmd_identifier_token16] = ACTIONS(2214), + [aux_sym_cmd_identifier_token17] = ACTIONS(2214), + [aux_sym_cmd_identifier_token18] = ACTIONS(2214), + [aux_sym_cmd_identifier_token19] = ACTIONS(2214), + [aux_sym_cmd_identifier_token20] = ACTIONS(2214), + [aux_sym_cmd_identifier_token21] = ACTIONS(2214), + [aux_sym_cmd_identifier_token22] = ACTIONS(2214), + [aux_sym_cmd_identifier_token23] = ACTIONS(2214), + [aux_sym_cmd_identifier_token24] = ACTIONS(2214), + [aux_sym_cmd_identifier_token25] = ACTIONS(2214), + [aux_sym_cmd_identifier_token26] = ACTIONS(2214), + [aux_sym_cmd_identifier_token27] = ACTIONS(2214), + [aux_sym_cmd_identifier_token28] = ACTIONS(2214), + [aux_sym_cmd_identifier_token29] = ACTIONS(2214), + [aux_sym_cmd_identifier_token30] = ACTIONS(2214), + [aux_sym_cmd_identifier_token31] = ACTIONS(2214), + [aux_sym_cmd_identifier_token32] = ACTIONS(2214), + [aux_sym_cmd_identifier_token33] = ACTIONS(2214), + [aux_sym_cmd_identifier_token34] = ACTIONS(2214), + [aux_sym_cmd_identifier_token35] = ACTIONS(2214), + [aux_sym_cmd_identifier_token36] = ACTIONS(2214), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_null] = ACTIONS(2214), + [aux_sym_cmd_identifier_token38] = ACTIONS(2214), + [aux_sym_cmd_identifier_token39] = ACTIONS(2214), + [aux_sym_cmd_identifier_token40] = ACTIONS(2214), + [anon_sym_def] = ACTIONS(2214), + [anon_sym_export_DASHenv] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_error] = ACTIONS(2214), + [anon_sym_list] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_make] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_catch] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_source] = ACTIONS(2214), + [anon_sym_source_DASHenv] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_hide] = ACTIONS(2214), + [anon_sym_hide_DASHenv] = ACTIONS(2214), + [anon_sym_overlay] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2214), + [aux_sym__val_number_decimal_token3] = ACTIONS(2214), + [aux_sym__val_number_decimal_token4] = ACTIONS(2214), + [aux_sym__val_number_token1] = ACTIONS(2214), + [aux_sym__val_number_token2] = ACTIONS(2214), + [aux_sym__val_number_token3] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym__str_single_quotes] = ACTIONS(2214), + [sym__str_back_ticks] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2214), + [sym__entry_separator] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2214), [anon_sym_POUND] = ACTIONS(3), }, - [422] = { - [sym_comment] = STATE(422), + [454] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(454), [anon_sym_export] = ACTIONS(2218), [anon_sym_alias] = ACTIONS(2218), [anon_sym_let] = ACTIONS(2218), @@ -122085,7 +126978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2218), [anon_sym_new] = ACTIONS(2218), [anon_sym_as] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_LPAREN2] = ACTIONS(1562), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), [aux_sym__val_number_decimal_token1] = ACTIONS(2218), @@ -122099,1747 +126992,1440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2218), [sym__str_back_ticks] = ACTIONS(2218), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [sym__entry_separator] = ACTIONS(2222), + [sym__entry_separator] = ACTIONS(2220), [anon_sym_PLUS] = ACTIONS(2218), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(3), - }, - [423] = { - [sym_comment] = STATE(423), - [anon_sym_export] = ACTIONS(2224), - [anon_sym_alias] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_let_DASHenv] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [aux_sym_cmd_identifier_token1] = ACTIONS(2224), - [aux_sym_cmd_identifier_token2] = ACTIONS(2224), - [aux_sym_cmd_identifier_token3] = ACTIONS(2224), - [aux_sym_cmd_identifier_token4] = ACTIONS(2224), - [aux_sym_cmd_identifier_token5] = ACTIONS(2224), - [aux_sym_cmd_identifier_token6] = ACTIONS(2224), - [aux_sym_cmd_identifier_token7] = ACTIONS(2224), - [aux_sym_cmd_identifier_token8] = ACTIONS(2224), - [aux_sym_cmd_identifier_token9] = ACTIONS(2224), - [aux_sym_cmd_identifier_token10] = ACTIONS(2224), - [aux_sym_cmd_identifier_token11] = ACTIONS(2224), - [aux_sym_cmd_identifier_token12] = ACTIONS(2224), - [aux_sym_cmd_identifier_token13] = ACTIONS(2224), - [aux_sym_cmd_identifier_token14] = ACTIONS(2224), - [aux_sym_cmd_identifier_token15] = ACTIONS(2224), - [aux_sym_cmd_identifier_token16] = ACTIONS(2224), - [aux_sym_cmd_identifier_token17] = ACTIONS(2224), - [aux_sym_cmd_identifier_token18] = ACTIONS(2224), - [aux_sym_cmd_identifier_token19] = ACTIONS(2224), - [aux_sym_cmd_identifier_token20] = ACTIONS(2224), - [aux_sym_cmd_identifier_token21] = ACTIONS(2224), - [aux_sym_cmd_identifier_token22] = ACTIONS(2224), - [aux_sym_cmd_identifier_token23] = ACTIONS(2224), - [aux_sym_cmd_identifier_token24] = ACTIONS(2224), - [aux_sym_cmd_identifier_token25] = ACTIONS(2224), - [aux_sym_cmd_identifier_token26] = ACTIONS(2224), - [aux_sym_cmd_identifier_token27] = ACTIONS(2224), - [aux_sym_cmd_identifier_token28] = ACTIONS(2224), - [aux_sym_cmd_identifier_token29] = ACTIONS(2224), - [aux_sym_cmd_identifier_token30] = ACTIONS(2224), - [aux_sym_cmd_identifier_token31] = ACTIONS(2224), - [aux_sym_cmd_identifier_token32] = ACTIONS(2224), - [aux_sym_cmd_identifier_token33] = ACTIONS(2224), - [aux_sym_cmd_identifier_token34] = ACTIONS(2224), - [aux_sym_cmd_identifier_token35] = ACTIONS(2224), - [aux_sym_cmd_identifier_token36] = ACTIONS(2224), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [anon_sym_null] = ACTIONS(2224), - [aux_sym_cmd_identifier_token38] = ACTIONS(2224), - [aux_sym_cmd_identifier_token39] = ACTIONS(2224), - [aux_sym_cmd_identifier_token40] = ACTIONS(2224), - [anon_sym_def] = ACTIONS(2224), - [anon_sym_export_DASHenv] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_module] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2224), - [anon_sym_error] = ACTIONS(2224), - [anon_sym_list] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_make] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_source] = ACTIONS(2224), - [anon_sym_source_DASHenv] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_hide] = ACTIONS(2224), - [anon_sym_hide_DASHenv] = ACTIONS(2224), - [anon_sym_overlay] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2224), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2224), - [aux_sym__val_number_decimal_token3] = ACTIONS(2224), - [aux_sym__val_number_decimal_token4] = ACTIONS(2224), - [aux_sym__val_number_token1] = ACTIONS(2224), - [aux_sym__val_number_token2] = ACTIONS(2224), - [aux_sym__val_number_token3] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym__str_single_quotes] = ACTIONS(2224), - [sym__str_back_ticks] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2224), - [sym__entry_separator] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2224), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2230), [anon_sym_POUND] = ACTIONS(3), }, - [424] = { - [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(1076), - [anon_sym_alias] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_let_DASHenv] = ACTIONS(1076), - [anon_sym_mut] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1076), - [aux_sym_cmd_identifier_token2] = ACTIONS(1076), - [aux_sym_cmd_identifier_token3] = ACTIONS(1076), - [aux_sym_cmd_identifier_token4] = ACTIONS(1076), - [aux_sym_cmd_identifier_token5] = ACTIONS(1076), - [aux_sym_cmd_identifier_token6] = ACTIONS(1076), - [aux_sym_cmd_identifier_token7] = ACTIONS(1076), - [aux_sym_cmd_identifier_token8] = ACTIONS(1076), - [aux_sym_cmd_identifier_token9] = ACTIONS(1076), - [aux_sym_cmd_identifier_token10] = ACTIONS(1076), - [aux_sym_cmd_identifier_token11] = ACTIONS(1076), - [aux_sym_cmd_identifier_token12] = ACTIONS(1076), - [aux_sym_cmd_identifier_token13] = ACTIONS(1076), - [aux_sym_cmd_identifier_token14] = ACTIONS(1076), - [aux_sym_cmd_identifier_token15] = ACTIONS(1076), - [aux_sym_cmd_identifier_token16] = ACTIONS(1076), - [aux_sym_cmd_identifier_token17] = ACTIONS(1076), - [aux_sym_cmd_identifier_token18] = ACTIONS(1076), - [aux_sym_cmd_identifier_token19] = ACTIONS(1076), - [aux_sym_cmd_identifier_token20] = ACTIONS(1076), - [aux_sym_cmd_identifier_token21] = ACTIONS(1076), - [aux_sym_cmd_identifier_token22] = ACTIONS(1076), - [aux_sym_cmd_identifier_token23] = ACTIONS(1076), - [aux_sym_cmd_identifier_token24] = ACTIONS(1076), - [aux_sym_cmd_identifier_token25] = ACTIONS(1076), - [aux_sym_cmd_identifier_token26] = ACTIONS(1076), - [aux_sym_cmd_identifier_token27] = ACTIONS(1076), - [aux_sym_cmd_identifier_token28] = ACTIONS(1076), - [aux_sym_cmd_identifier_token29] = ACTIONS(1076), - [aux_sym_cmd_identifier_token30] = ACTIONS(1076), - [aux_sym_cmd_identifier_token31] = ACTIONS(1076), - [aux_sym_cmd_identifier_token32] = ACTIONS(1076), - [aux_sym_cmd_identifier_token33] = ACTIONS(1076), - [aux_sym_cmd_identifier_token34] = ACTIONS(1076), - [aux_sym_cmd_identifier_token35] = ACTIONS(1076), - [aux_sym_cmd_identifier_token36] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [anon_sym_null] = ACTIONS(1078), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1078), - [aux_sym_cmd_identifier_token40] = ACTIONS(1078), - [anon_sym_def] = ACTIONS(1076), - [anon_sym_export_DASHenv] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_error] = ACTIONS(1076), - [anon_sym_list] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_loop] = ACTIONS(1076), - [anon_sym_make] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_catch] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_source] = ACTIONS(1076), - [anon_sym_source_DASHenv] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_hide] = ACTIONS(1076), - [anon_sym_hide_DASHenv] = ACTIONS(1076), - [anon_sym_overlay] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1078), - [aux_sym__val_number_decimal_token3] = ACTIONS(1078), - [aux_sym__val_number_decimal_token4] = ACTIONS(1078), - [aux_sym__val_number_token1] = ACTIONS(1078), - [aux_sym__val_number_token2] = ACTIONS(1078), - [aux_sym__val_number_token3] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym__str_single_quotes] = ACTIONS(1078), - [sym__str_back_ticks] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_POUND] = ACTIONS(247), - }, - [425] = { - [sym_comment] = STATE(425), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_alias] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_let_DASHenv] = ACTIONS(1625), - [anon_sym_mut] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [aux_sym_cmd_identifier_token1] = ACTIONS(1625), - [aux_sym_cmd_identifier_token2] = ACTIONS(1625), - [aux_sym_cmd_identifier_token3] = ACTIONS(1625), - [aux_sym_cmd_identifier_token4] = ACTIONS(1625), - [aux_sym_cmd_identifier_token5] = ACTIONS(1625), - [aux_sym_cmd_identifier_token6] = ACTIONS(1625), - [aux_sym_cmd_identifier_token7] = ACTIONS(1625), - [aux_sym_cmd_identifier_token8] = ACTIONS(1625), - [aux_sym_cmd_identifier_token9] = ACTIONS(1625), - [aux_sym_cmd_identifier_token10] = ACTIONS(1625), - [aux_sym_cmd_identifier_token11] = ACTIONS(1625), - [aux_sym_cmd_identifier_token12] = ACTIONS(1625), - [aux_sym_cmd_identifier_token13] = ACTIONS(1625), - [aux_sym_cmd_identifier_token14] = ACTIONS(1625), - [aux_sym_cmd_identifier_token15] = ACTIONS(1625), - [aux_sym_cmd_identifier_token16] = ACTIONS(1625), - [aux_sym_cmd_identifier_token17] = ACTIONS(1625), - [aux_sym_cmd_identifier_token18] = ACTIONS(1625), - [aux_sym_cmd_identifier_token19] = ACTIONS(1625), - [aux_sym_cmd_identifier_token20] = ACTIONS(1625), - [aux_sym_cmd_identifier_token21] = ACTIONS(1625), - [aux_sym_cmd_identifier_token22] = ACTIONS(1625), - [aux_sym_cmd_identifier_token23] = ACTIONS(1625), - [aux_sym_cmd_identifier_token24] = ACTIONS(1625), - [aux_sym_cmd_identifier_token25] = ACTIONS(1625), - [aux_sym_cmd_identifier_token26] = ACTIONS(1625), - [aux_sym_cmd_identifier_token27] = ACTIONS(1625), - [aux_sym_cmd_identifier_token28] = ACTIONS(1625), - [aux_sym_cmd_identifier_token29] = ACTIONS(1625), - [aux_sym_cmd_identifier_token30] = ACTIONS(1625), - [aux_sym_cmd_identifier_token31] = ACTIONS(1625), - [aux_sym_cmd_identifier_token32] = ACTIONS(1625), - [aux_sym_cmd_identifier_token33] = ACTIONS(1625), - [aux_sym_cmd_identifier_token34] = ACTIONS(1625), - [aux_sym_cmd_identifier_token35] = ACTIONS(1625), - [aux_sym_cmd_identifier_token36] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1625), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [anon_sym_def] = ACTIONS(1625), - [anon_sym_export_DASHenv] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1629), - [anon_sym_error] = ACTIONS(1625), - [anon_sym_list] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_in] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_make] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_else] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_catch] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_source] = ACTIONS(1625), - [anon_sym_source_DASHenv] = ACTIONS(1625), - [anon_sym_register] = ACTIONS(1625), - [anon_sym_hide] = ACTIONS(1625), - [anon_sym_hide_DASHenv] = ACTIONS(1625), - [anon_sym_overlay] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_as] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token3] = ACTIONS(1629), - [aux_sym__val_number_decimal_token4] = ACTIONS(1629), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_POUND] = ACTIONS(247), - }, - [426] = { - [sym_comment] = STATE(426), - [anon_sym_export] = ACTIONS(2137), - [anon_sym_alias] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_let_DASHenv] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [aux_sym_cmd_identifier_token1] = ACTIONS(2137), - [aux_sym_cmd_identifier_token2] = ACTIONS(2137), - [aux_sym_cmd_identifier_token3] = ACTIONS(2137), - [aux_sym_cmd_identifier_token4] = ACTIONS(2137), - [aux_sym_cmd_identifier_token5] = ACTIONS(2137), - [aux_sym_cmd_identifier_token6] = ACTIONS(2137), - [aux_sym_cmd_identifier_token7] = ACTIONS(2137), - [aux_sym_cmd_identifier_token8] = ACTIONS(2137), - [aux_sym_cmd_identifier_token9] = ACTIONS(2137), - [aux_sym_cmd_identifier_token10] = ACTIONS(2137), - [aux_sym_cmd_identifier_token11] = ACTIONS(2137), - [aux_sym_cmd_identifier_token12] = ACTIONS(2137), - [aux_sym_cmd_identifier_token13] = ACTIONS(2137), - [aux_sym_cmd_identifier_token14] = ACTIONS(2137), - [aux_sym_cmd_identifier_token15] = ACTIONS(2137), - [aux_sym_cmd_identifier_token16] = ACTIONS(2137), - [aux_sym_cmd_identifier_token17] = ACTIONS(2137), - [aux_sym_cmd_identifier_token18] = ACTIONS(2137), - [aux_sym_cmd_identifier_token19] = ACTIONS(2137), - [aux_sym_cmd_identifier_token20] = ACTIONS(2137), - [aux_sym_cmd_identifier_token21] = ACTIONS(2137), - [aux_sym_cmd_identifier_token22] = ACTIONS(2137), - [aux_sym_cmd_identifier_token23] = ACTIONS(2137), - [aux_sym_cmd_identifier_token24] = ACTIONS(2137), - [aux_sym_cmd_identifier_token25] = ACTIONS(2137), - [aux_sym_cmd_identifier_token26] = ACTIONS(2137), - [aux_sym_cmd_identifier_token27] = ACTIONS(2137), - [aux_sym_cmd_identifier_token28] = ACTIONS(2137), - [aux_sym_cmd_identifier_token29] = ACTIONS(2137), - [aux_sym_cmd_identifier_token30] = ACTIONS(2137), - [aux_sym_cmd_identifier_token31] = ACTIONS(2137), - [aux_sym_cmd_identifier_token32] = ACTIONS(2137), - [aux_sym_cmd_identifier_token33] = ACTIONS(2137), - [aux_sym_cmd_identifier_token34] = ACTIONS(2137), - [aux_sym_cmd_identifier_token35] = ACTIONS(2137), - [aux_sym_cmd_identifier_token36] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [anon_sym_null] = ACTIONS(2139), - [aux_sym_cmd_identifier_token38] = ACTIONS(2137), - [aux_sym_cmd_identifier_token39] = ACTIONS(2139), - [aux_sym_cmd_identifier_token40] = ACTIONS(2139), - [anon_sym_def] = ACTIONS(2137), - [anon_sym_export_DASHenv] = ACTIONS(2137), - [anon_sym_extern] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_error] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_make] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_catch] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_source] = ACTIONS(2137), - [anon_sym_source_DASHenv] = ACTIONS(2137), - [anon_sym_register] = ACTIONS(2137), - [anon_sym_hide] = ACTIONS(2137), - [anon_sym_hide_DASHenv] = ACTIONS(2137), - [anon_sym_overlay] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2139), - [anon_sym_DOT_DOT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2137), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2137), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, - [427] = { - [sym_comment] = STATE(427), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2021), - [aux_sym_cmd_identifier_token40] = ACTIONS(2021), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), - [anon_sym_DOT_DOT2] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token3] = ACTIONS(2021), - [aux_sym__val_number_decimal_token4] = ACTIONS(2021), - [aux_sym__val_number_token1] = ACTIONS(2021), - [aux_sym__val_number_token2] = ACTIONS(2021), - [aux_sym__val_number_token3] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2019), + [456] = { + [sym_comment] = STATE(456), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_alias] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_let_DASHenv] = ACTIONS(1046), + [anon_sym_mut] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1046), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1046), + [aux_sym_cmd_identifier_token9] = ACTIONS(1046), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1046), + [aux_sym_cmd_identifier_token13] = ACTIONS(1046), + [aux_sym_cmd_identifier_token14] = ACTIONS(1046), + [aux_sym_cmd_identifier_token15] = ACTIONS(1046), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1046), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_export_DASHenv] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1046), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_make] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_source] = ACTIONS(1046), + [anon_sym_source_DASHenv] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_hide] = ACTIONS(1046), + [anon_sym_hide_DASHenv] = ACTIONS(1046), + [anon_sym_overlay] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [aux_sym_record_entry_token1] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, - [428] = { - [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2133), - [aux_sym_cmd_identifier_token3] = ACTIONS(2133), - [aux_sym_cmd_identifier_token4] = ACTIONS(2133), - [aux_sym_cmd_identifier_token5] = ACTIONS(2133), - [aux_sym_cmd_identifier_token6] = ACTIONS(2133), - [aux_sym_cmd_identifier_token7] = ACTIONS(2133), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2133), - [aux_sym_cmd_identifier_token11] = ACTIONS(2133), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2133), - [aux_sym_cmd_identifier_token17] = ACTIONS(2133), - [aux_sym_cmd_identifier_token18] = ACTIONS(2133), - [aux_sym_cmd_identifier_token19] = ACTIONS(2133), - [aux_sym_cmd_identifier_token20] = ACTIONS(2133), - [aux_sym_cmd_identifier_token21] = ACTIONS(2133), - [aux_sym_cmd_identifier_token22] = ACTIONS(2133), - [aux_sym_cmd_identifier_token23] = ACTIONS(2133), - [aux_sym_cmd_identifier_token24] = ACTIONS(2133), - [aux_sym_cmd_identifier_token25] = ACTIONS(2133), - [aux_sym_cmd_identifier_token26] = ACTIONS(2133), - [aux_sym_cmd_identifier_token27] = ACTIONS(2133), - [aux_sym_cmd_identifier_token28] = ACTIONS(2133), - [aux_sym_cmd_identifier_token29] = ACTIONS(2133), - [aux_sym_cmd_identifier_token30] = ACTIONS(2133), - [aux_sym_cmd_identifier_token31] = ACTIONS(2133), - [aux_sym_cmd_identifier_token32] = ACTIONS(2133), - [aux_sym_cmd_identifier_token33] = ACTIONS(2133), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2133), - [aux_sym_cmd_identifier_token36] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [anon_sym_null] = ACTIONS(2135), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2135), - [aux_sym_cmd_identifier_token40] = ACTIONS(2135), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2135), - [anon_sym_DOT_DOT2] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2135), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token3] = ACTIONS(2135), - [aux_sym__val_number_decimal_token4] = ACTIONS(2135), - [aux_sym__val_number_token1] = ACTIONS(2135), - [aux_sym__val_number_token2] = ACTIONS(2135), - [aux_sym__val_number_token3] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym__str_single_quotes] = ACTIONS(2135), - [sym__str_back_ticks] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2133), + [457] = { + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_alias] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_let_DASHenv] = ACTIONS(1050), + [anon_sym_mut] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1050), + [aux_sym_cmd_identifier_token4] = ACTIONS(1050), + [aux_sym_cmd_identifier_token5] = ACTIONS(1050), + [aux_sym_cmd_identifier_token6] = ACTIONS(1050), + [aux_sym_cmd_identifier_token7] = ACTIONS(1050), + [aux_sym_cmd_identifier_token8] = ACTIONS(1050), + [aux_sym_cmd_identifier_token9] = ACTIONS(1050), + [aux_sym_cmd_identifier_token10] = ACTIONS(1050), + [aux_sym_cmd_identifier_token11] = ACTIONS(1050), + [aux_sym_cmd_identifier_token12] = ACTIONS(1050), + [aux_sym_cmd_identifier_token13] = ACTIONS(1050), + [aux_sym_cmd_identifier_token14] = ACTIONS(1050), + [aux_sym_cmd_identifier_token15] = ACTIONS(1050), + [aux_sym_cmd_identifier_token16] = ACTIONS(1050), + [aux_sym_cmd_identifier_token17] = ACTIONS(1050), + [aux_sym_cmd_identifier_token18] = ACTIONS(1050), + [aux_sym_cmd_identifier_token19] = ACTIONS(1050), + [aux_sym_cmd_identifier_token20] = ACTIONS(1050), + [aux_sym_cmd_identifier_token21] = ACTIONS(1050), + [aux_sym_cmd_identifier_token22] = ACTIONS(1050), + [aux_sym_cmd_identifier_token23] = ACTIONS(1050), + [aux_sym_cmd_identifier_token24] = ACTIONS(1050), + [aux_sym_cmd_identifier_token25] = ACTIONS(1050), + [aux_sym_cmd_identifier_token26] = ACTIONS(1050), + [aux_sym_cmd_identifier_token27] = ACTIONS(1050), + [aux_sym_cmd_identifier_token28] = ACTIONS(1050), + [aux_sym_cmd_identifier_token29] = ACTIONS(1050), + [aux_sym_cmd_identifier_token30] = ACTIONS(1050), + [aux_sym_cmd_identifier_token31] = ACTIONS(1050), + [aux_sym_cmd_identifier_token32] = ACTIONS(1050), + [aux_sym_cmd_identifier_token33] = ACTIONS(1050), + [aux_sym_cmd_identifier_token34] = ACTIONS(1050), + [aux_sym_cmd_identifier_token35] = ACTIONS(1050), + [aux_sym_cmd_identifier_token36] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1050), + [anon_sym_export_DASHenv] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1050), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_make] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_catch] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_source] = ACTIONS(1050), + [anon_sym_source_DASHenv] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_hide] = ACTIONS(1050), + [anon_sym_hide_DASHenv] = ACTIONS(1050), + [anon_sym_overlay] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [aux_sym_record_entry_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, - [429] = { - [sym__expr_parenthesized_immediate] = STATE(7343), - [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_alias] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_let_DASHenv] = ACTIONS(2023), - [anon_sym_mut] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [aux_sym_cmd_identifier_token1] = ACTIONS(2023), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2023), - [aux_sym_cmd_identifier_token9] = ACTIONS(2023), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2023), - [aux_sym_cmd_identifier_token13] = ACTIONS(2023), - [aux_sym_cmd_identifier_token14] = ACTIONS(2023), - [aux_sym_cmd_identifier_token15] = ACTIONS(2023), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2023), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_null] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2023), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2023), - [anon_sym_export_DASHenv] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_module] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_error] = ACTIONS(2023), - [anon_sym_list] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_in] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_make] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_source] = ACTIONS(2023), - [anon_sym_source_DASHenv] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_hide_DASHenv] = ACTIONS(2023), - [anon_sym_overlay] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_as] = ACTIONS(2023), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2023), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), - [sym__entry_separator] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), - }, - [430] = { - [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(1064), - [anon_sym_alias] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_let_DASHenv] = ACTIONS(1064), - [anon_sym_mut] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [aux_sym_cmd_identifier_token1] = ACTIONS(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(1064), - [aux_sym_cmd_identifier_token3] = ACTIONS(1064), - [aux_sym_cmd_identifier_token4] = ACTIONS(1064), - [aux_sym_cmd_identifier_token5] = ACTIONS(1064), - [aux_sym_cmd_identifier_token6] = ACTIONS(1064), - [aux_sym_cmd_identifier_token7] = ACTIONS(1064), - [aux_sym_cmd_identifier_token8] = ACTIONS(1064), - [aux_sym_cmd_identifier_token9] = ACTIONS(1064), - [aux_sym_cmd_identifier_token10] = ACTIONS(1064), - [aux_sym_cmd_identifier_token11] = ACTIONS(1064), - [aux_sym_cmd_identifier_token12] = ACTIONS(1064), - [aux_sym_cmd_identifier_token13] = ACTIONS(1064), - [aux_sym_cmd_identifier_token14] = ACTIONS(1064), - [aux_sym_cmd_identifier_token15] = ACTIONS(1064), - [aux_sym_cmd_identifier_token16] = ACTIONS(1064), - [aux_sym_cmd_identifier_token17] = ACTIONS(1064), - [aux_sym_cmd_identifier_token18] = ACTIONS(1064), - [aux_sym_cmd_identifier_token19] = ACTIONS(1064), - [aux_sym_cmd_identifier_token20] = ACTIONS(1064), - [aux_sym_cmd_identifier_token21] = ACTIONS(1064), - [aux_sym_cmd_identifier_token22] = ACTIONS(1064), - [aux_sym_cmd_identifier_token23] = ACTIONS(1064), - [aux_sym_cmd_identifier_token24] = ACTIONS(1064), - [aux_sym_cmd_identifier_token25] = ACTIONS(1064), - [aux_sym_cmd_identifier_token26] = ACTIONS(1064), - [aux_sym_cmd_identifier_token27] = ACTIONS(1064), - [aux_sym_cmd_identifier_token28] = ACTIONS(1064), - [aux_sym_cmd_identifier_token29] = ACTIONS(1064), - [aux_sym_cmd_identifier_token30] = ACTIONS(1064), - [aux_sym_cmd_identifier_token31] = ACTIONS(1064), - [aux_sym_cmd_identifier_token32] = ACTIONS(1064), - [aux_sym_cmd_identifier_token33] = ACTIONS(1064), - [aux_sym_cmd_identifier_token34] = ACTIONS(1064), - [aux_sym_cmd_identifier_token35] = ACTIONS(1064), - [aux_sym_cmd_identifier_token36] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1066), - [aux_sym_cmd_identifier_token38] = ACTIONS(1064), - [aux_sym_cmd_identifier_token39] = ACTIONS(1066), - [aux_sym_cmd_identifier_token40] = ACTIONS(1066), - [anon_sym_def] = ACTIONS(1064), - [anon_sym_export_DASHenv] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym_module] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_error] = ACTIONS(1064), - [anon_sym_list] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_loop] = ACTIONS(1064), - [anon_sym_make] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_catch] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_source] = ACTIONS(1064), - [anon_sym_source_DASHenv] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_hide] = ACTIONS(1064), - [anon_sym_hide_DASHenv] = ACTIONS(1064), - [anon_sym_overlay] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1066), - [aux_sym__val_number_token1] = ACTIONS(1066), - [aux_sym__val_number_token2] = ACTIONS(1066), - [aux_sym__val_number_token3] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym__str_single_quotes] = ACTIONS(1066), - [sym__str_back_ticks] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1064), + [458] = { + [sym_comment] = STATE(458), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [aux_sym_record_entry_token1] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, - [431] = { - [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_list] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [aux_sym_record_entry_token1] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), + [459] = { + [sym_path] = STATE(578), + [sym_comment] = STATE(459), + [aux_sym_cell_path_repeat1] = STATE(460), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, - [432] = { - [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_alias] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_let_DASHenv] = ACTIONS(1060), - [anon_sym_mut] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(1060), - [aux_sym_cmd_identifier_token2] = ACTIONS(1060), - [aux_sym_cmd_identifier_token3] = ACTIONS(1060), - [aux_sym_cmd_identifier_token4] = ACTIONS(1060), - [aux_sym_cmd_identifier_token5] = ACTIONS(1060), - [aux_sym_cmd_identifier_token6] = ACTIONS(1060), - [aux_sym_cmd_identifier_token7] = ACTIONS(1060), - [aux_sym_cmd_identifier_token8] = ACTIONS(1060), - [aux_sym_cmd_identifier_token9] = ACTIONS(1060), - [aux_sym_cmd_identifier_token10] = ACTIONS(1060), - [aux_sym_cmd_identifier_token11] = ACTIONS(1060), - [aux_sym_cmd_identifier_token12] = ACTIONS(1060), - [aux_sym_cmd_identifier_token13] = ACTIONS(1060), - [aux_sym_cmd_identifier_token14] = ACTIONS(1060), - [aux_sym_cmd_identifier_token15] = ACTIONS(1060), - [aux_sym_cmd_identifier_token16] = ACTIONS(1060), - [aux_sym_cmd_identifier_token17] = ACTIONS(1060), - [aux_sym_cmd_identifier_token18] = ACTIONS(1060), - [aux_sym_cmd_identifier_token19] = ACTIONS(1060), - [aux_sym_cmd_identifier_token20] = ACTIONS(1060), - [aux_sym_cmd_identifier_token21] = ACTIONS(1060), - [aux_sym_cmd_identifier_token22] = ACTIONS(1060), - [aux_sym_cmd_identifier_token23] = ACTIONS(1060), - [aux_sym_cmd_identifier_token24] = ACTIONS(1060), - [aux_sym_cmd_identifier_token25] = ACTIONS(1060), - [aux_sym_cmd_identifier_token26] = ACTIONS(1060), - [aux_sym_cmd_identifier_token27] = ACTIONS(1060), - [aux_sym_cmd_identifier_token28] = ACTIONS(1060), - [aux_sym_cmd_identifier_token29] = ACTIONS(1060), - [aux_sym_cmd_identifier_token30] = ACTIONS(1060), - [aux_sym_cmd_identifier_token31] = ACTIONS(1060), - [aux_sym_cmd_identifier_token32] = ACTIONS(1060), - [aux_sym_cmd_identifier_token33] = ACTIONS(1060), - [aux_sym_cmd_identifier_token34] = ACTIONS(1060), - [aux_sym_cmd_identifier_token35] = ACTIONS(1060), - [aux_sym_cmd_identifier_token36] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1062), - [aux_sym_cmd_identifier_token40] = ACTIONS(1062), - [anon_sym_def] = ACTIONS(1060), - [anon_sym_export_DASHenv] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_module] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_error] = ACTIONS(1060), - [anon_sym_list] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_in] = ACTIONS(1060), - [anon_sym_loop] = ACTIONS(1060), - [anon_sym_make] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_catch] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_source] = ACTIONS(1060), - [anon_sym_source_DASHenv] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_hide] = ACTIONS(1060), - [anon_sym_hide_DASHenv] = ACTIONS(1060), - [anon_sym_overlay] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token3] = ACTIONS(1062), - [aux_sym__val_number_decimal_token4] = ACTIONS(1062), - [aux_sym__val_number_token1] = ACTIONS(1062), - [aux_sym__val_number_token2] = ACTIONS(1062), - [aux_sym__val_number_token3] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym__str_single_quotes] = ACTIONS(1062), - [sym__str_back_ticks] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), - [aux_sym_record_entry_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1060), + [460] = { + [sym_path] = STATE(578), + [sym_comment] = STATE(460), + [aux_sym_cell_path_repeat1] = STATE(460), + [anon_sym_export] = ACTIONS(1015), + [anon_sym_alias] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_let_DASHenv] = ACTIONS(1015), + [anon_sym_mut] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [aux_sym_cmd_identifier_token1] = ACTIONS(1015), + [aux_sym_cmd_identifier_token2] = ACTIONS(1015), + [aux_sym_cmd_identifier_token3] = ACTIONS(1015), + [aux_sym_cmd_identifier_token4] = ACTIONS(1015), + [aux_sym_cmd_identifier_token5] = ACTIONS(1015), + [aux_sym_cmd_identifier_token6] = ACTIONS(1015), + [aux_sym_cmd_identifier_token7] = ACTIONS(1015), + [aux_sym_cmd_identifier_token8] = ACTIONS(1015), + [aux_sym_cmd_identifier_token9] = ACTIONS(1015), + [aux_sym_cmd_identifier_token10] = ACTIONS(1015), + [aux_sym_cmd_identifier_token11] = ACTIONS(1015), + [aux_sym_cmd_identifier_token12] = ACTIONS(1015), + [aux_sym_cmd_identifier_token13] = ACTIONS(1015), + [aux_sym_cmd_identifier_token14] = ACTIONS(1015), + [aux_sym_cmd_identifier_token15] = ACTIONS(1015), + [aux_sym_cmd_identifier_token16] = ACTIONS(1015), + [aux_sym_cmd_identifier_token17] = ACTIONS(1015), + [aux_sym_cmd_identifier_token18] = ACTIONS(1015), + [aux_sym_cmd_identifier_token19] = ACTIONS(1015), + [aux_sym_cmd_identifier_token20] = ACTIONS(1015), + [aux_sym_cmd_identifier_token21] = ACTIONS(1015), + [aux_sym_cmd_identifier_token22] = ACTIONS(1015), + [aux_sym_cmd_identifier_token23] = ACTIONS(1015), + [aux_sym_cmd_identifier_token24] = ACTIONS(1015), + [aux_sym_cmd_identifier_token25] = ACTIONS(1015), + [aux_sym_cmd_identifier_token26] = ACTIONS(1015), + [aux_sym_cmd_identifier_token27] = ACTIONS(1015), + [aux_sym_cmd_identifier_token28] = ACTIONS(1015), + [aux_sym_cmd_identifier_token29] = ACTIONS(1015), + [aux_sym_cmd_identifier_token30] = ACTIONS(1015), + [aux_sym_cmd_identifier_token31] = ACTIONS(1015), + [aux_sym_cmd_identifier_token32] = ACTIONS(1015), + [aux_sym_cmd_identifier_token33] = ACTIONS(1015), + [aux_sym_cmd_identifier_token34] = ACTIONS(1015), + [aux_sym_cmd_identifier_token35] = ACTIONS(1015), + [aux_sym_cmd_identifier_token36] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1015), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [anon_sym_def] = ACTIONS(1015), + [anon_sym_export_DASHenv] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_error] = ACTIONS(1015), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_in] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_make] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_source] = ACTIONS(1015), + [anon_sym_source_DASHenv] = ACTIONS(1015), + [anon_sym_register] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_hide_DASHenv] = ACTIONS(1015), + [anon_sym_overlay] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1015), [anon_sym_POUND] = ACTIONS(247), }, - [433] = { - [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_list] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_new] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), + [461] = { + [sym_comment] = STATE(461), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1070), + [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_LPAREN2] = ACTIONS(2225), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token4] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1070), + [sym__entry_separator] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(3), }, - [434] = { - [sym_path] = STATE(550), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(435), - [anon_sym_export] = ACTIONS(1017), - [anon_sym_alias] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_let_DASHenv] = ACTIONS(1017), - [anon_sym_mut] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [aux_sym_cmd_identifier_token1] = ACTIONS(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(1017), - [aux_sym_cmd_identifier_token3] = ACTIONS(1017), - [aux_sym_cmd_identifier_token4] = ACTIONS(1017), - [aux_sym_cmd_identifier_token5] = ACTIONS(1017), - [aux_sym_cmd_identifier_token6] = ACTIONS(1017), - [aux_sym_cmd_identifier_token7] = ACTIONS(1017), - [aux_sym_cmd_identifier_token8] = ACTIONS(1017), - [aux_sym_cmd_identifier_token9] = ACTIONS(1017), - [aux_sym_cmd_identifier_token10] = ACTIONS(1017), - [aux_sym_cmd_identifier_token11] = ACTIONS(1017), - [aux_sym_cmd_identifier_token12] = ACTIONS(1017), - [aux_sym_cmd_identifier_token13] = ACTIONS(1017), - [aux_sym_cmd_identifier_token14] = ACTIONS(1017), - [aux_sym_cmd_identifier_token15] = ACTIONS(1017), - [aux_sym_cmd_identifier_token16] = ACTIONS(1017), - [aux_sym_cmd_identifier_token17] = ACTIONS(1017), - [aux_sym_cmd_identifier_token18] = ACTIONS(1017), - [aux_sym_cmd_identifier_token19] = ACTIONS(1017), - [aux_sym_cmd_identifier_token20] = ACTIONS(1017), - [aux_sym_cmd_identifier_token21] = ACTIONS(1017), - [aux_sym_cmd_identifier_token22] = ACTIONS(1017), - [aux_sym_cmd_identifier_token23] = ACTIONS(1017), - [aux_sym_cmd_identifier_token24] = ACTIONS(1017), - [aux_sym_cmd_identifier_token25] = ACTIONS(1017), - [aux_sym_cmd_identifier_token26] = ACTIONS(1017), - [aux_sym_cmd_identifier_token27] = ACTIONS(1017), - [aux_sym_cmd_identifier_token28] = ACTIONS(1017), - [aux_sym_cmd_identifier_token29] = ACTIONS(1017), - [aux_sym_cmd_identifier_token30] = ACTIONS(1017), - [aux_sym_cmd_identifier_token31] = ACTIONS(1017), - [aux_sym_cmd_identifier_token32] = ACTIONS(1017), - [aux_sym_cmd_identifier_token33] = ACTIONS(1017), - [aux_sym_cmd_identifier_token34] = ACTIONS(1017), - [aux_sym_cmd_identifier_token35] = ACTIONS(1017), - [aux_sym_cmd_identifier_token36] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [anon_sym_def] = ACTIONS(1017), - [anon_sym_export_DASHenv] = ACTIONS(1017), - [anon_sym_extern] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_error] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_in] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_make] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_catch] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_source] = ACTIONS(1017), - [anon_sym_source_DASHenv] = ACTIONS(1017), - [anon_sym_register] = ACTIONS(1017), - [anon_sym_hide] = ACTIONS(1017), - [anon_sym_hide_DASHenv] = ACTIONS(1017), - [anon_sym_overlay] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), + [462] = { + [sym_comment] = STATE(462), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [aux_sym_cmd_identifier_token1] = ACTIONS(2229), + [aux_sym_cmd_identifier_token2] = ACTIONS(2229), + [aux_sym_cmd_identifier_token3] = ACTIONS(2229), + [aux_sym_cmd_identifier_token4] = ACTIONS(2229), + [aux_sym_cmd_identifier_token5] = ACTIONS(2229), + [aux_sym_cmd_identifier_token6] = ACTIONS(2229), + [aux_sym_cmd_identifier_token7] = ACTIONS(2229), + [aux_sym_cmd_identifier_token8] = ACTIONS(2229), + [aux_sym_cmd_identifier_token9] = ACTIONS(2229), + [aux_sym_cmd_identifier_token10] = ACTIONS(2229), + [aux_sym_cmd_identifier_token11] = ACTIONS(2229), + [aux_sym_cmd_identifier_token12] = ACTIONS(2229), + [aux_sym_cmd_identifier_token13] = ACTIONS(2229), + [aux_sym_cmd_identifier_token14] = ACTIONS(2229), + [aux_sym_cmd_identifier_token15] = ACTIONS(2229), + [aux_sym_cmd_identifier_token16] = ACTIONS(2229), + [aux_sym_cmd_identifier_token17] = ACTIONS(2229), + [aux_sym_cmd_identifier_token18] = ACTIONS(2229), + [aux_sym_cmd_identifier_token19] = ACTIONS(2229), + [aux_sym_cmd_identifier_token20] = ACTIONS(2229), + [aux_sym_cmd_identifier_token21] = ACTIONS(2229), + [aux_sym_cmd_identifier_token22] = ACTIONS(2229), + [aux_sym_cmd_identifier_token23] = ACTIONS(2229), + [aux_sym_cmd_identifier_token24] = ACTIONS(2229), + [aux_sym_cmd_identifier_token25] = ACTIONS(2229), + [aux_sym_cmd_identifier_token26] = ACTIONS(2229), + [aux_sym_cmd_identifier_token27] = ACTIONS(2229), + [aux_sym_cmd_identifier_token28] = ACTIONS(2229), + [aux_sym_cmd_identifier_token29] = ACTIONS(2229), + [aux_sym_cmd_identifier_token30] = ACTIONS(2229), + [aux_sym_cmd_identifier_token31] = ACTIONS(2229), + [aux_sym_cmd_identifier_token32] = ACTIONS(2229), + [aux_sym_cmd_identifier_token33] = ACTIONS(2229), + [aux_sym_cmd_identifier_token34] = ACTIONS(2229), + [aux_sym_cmd_identifier_token35] = ACTIONS(2229), + [aux_sym_cmd_identifier_token36] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [aux_sym_cmd_identifier_token38] = ACTIONS(2229), + [aux_sym_cmd_identifier_token39] = ACTIONS(2229), + [aux_sym_cmd_identifier_token40] = ACTIONS(2229), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_make] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_catch] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_decimal_token4] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [sym__str_single_quotes] = ACTIONS(2229), + [sym__str_back_ticks] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2229), + [sym__entry_separator] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2229), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), }, - [435] = { - [sym_path] = STATE(550), - [sym_comment] = STATE(435), - [aux_sym_cell_path_repeat1] = STATE(435), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(2236), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), + [463] = { + [sym_comment] = STATE(463), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_alias] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_let_DASHenv] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [aux_sym_cmd_identifier_token1] = ACTIONS(2237), + [aux_sym_cmd_identifier_token2] = ACTIONS(2237), + [aux_sym_cmd_identifier_token3] = ACTIONS(2237), + [aux_sym_cmd_identifier_token4] = ACTIONS(2237), + [aux_sym_cmd_identifier_token5] = ACTIONS(2237), + [aux_sym_cmd_identifier_token6] = ACTIONS(2237), + [aux_sym_cmd_identifier_token7] = ACTIONS(2237), + [aux_sym_cmd_identifier_token8] = ACTIONS(2237), + [aux_sym_cmd_identifier_token9] = ACTIONS(2237), + [aux_sym_cmd_identifier_token10] = ACTIONS(2237), + [aux_sym_cmd_identifier_token11] = ACTIONS(2237), + [aux_sym_cmd_identifier_token12] = ACTIONS(2237), + [aux_sym_cmd_identifier_token13] = ACTIONS(2237), + [aux_sym_cmd_identifier_token14] = ACTIONS(2237), + [aux_sym_cmd_identifier_token15] = ACTIONS(2237), + [aux_sym_cmd_identifier_token16] = ACTIONS(2237), + [aux_sym_cmd_identifier_token17] = ACTIONS(2237), + [aux_sym_cmd_identifier_token18] = ACTIONS(2237), + [aux_sym_cmd_identifier_token19] = ACTIONS(2237), + [aux_sym_cmd_identifier_token20] = ACTIONS(2237), + [aux_sym_cmd_identifier_token21] = ACTIONS(2237), + [aux_sym_cmd_identifier_token22] = ACTIONS(2237), + [aux_sym_cmd_identifier_token23] = ACTIONS(2237), + [aux_sym_cmd_identifier_token24] = ACTIONS(2237), + [aux_sym_cmd_identifier_token25] = ACTIONS(2237), + [aux_sym_cmd_identifier_token26] = ACTIONS(2237), + [aux_sym_cmd_identifier_token27] = ACTIONS(2237), + [aux_sym_cmd_identifier_token28] = ACTIONS(2237), + [aux_sym_cmd_identifier_token29] = ACTIONS(2237), + [aux_sym_cmd_identifier_token30] = ACTIONS(2237), + [aux_sym_cmd_identifier_token31] = ACTIONS(2237), + [aux_sym_cmd_identifier_token32] = ACTIONS(2237), + [aux_sym_cmd_identifier_token33] = ACTIONS(2237), + [aux_sym_cmd_identifier_token34] = ACTIONS(2237), + [aux_sym_cmd_identifier_token35] = ACTIONS(2237), + [aux_sym_cmd_identifier_token36] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [aux_sym_cmd_identifier_token38] = ACTIONS(2237), + [aux_sym_cmd_identifier_token39] = ACTIONS(2237), + [aux_sym_cmd_identifier_token40] = ACTIONS(2237), + [anon_sym_def] = ACTIONS(2237), + [anon_sym_export_DASHenv] = ACTIONS(2237), + [anon_sym_extern] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2237), + [anon_sym_error] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_make] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_catch] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_source] = ACTIONS(2237), + [anon_sym_source_DASHenv] = ACTIONS(2237), + [anon_sym_register] = ACTIONS(2237), + [anon_sym_hide] = ACTIONS(2237), + [anon_sym_hide_DASHenv] = ACTIONS(2237), + [anon_sym_overlay] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2237), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2237), + [aux_sym__val_number_decimal_token1] = ACTIONS(2237), + [aux_sym__val_number_decimal_token2] = ACTIONS(2237), + [aux_sym__val_number_decimal_token3] = ACTIONS(2237), + [aux_sym__val_number_decimal_token4] = ACTIONS(2237), + [aux_sym__val_number_token1] = ACTIONS(2237), + [aux_sym__val_number_token2] = ACTIONS(2237), + [aux_sym__val_number_token3] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [sym__str_single_quotes] = ACTIONS(2237), + [sym__str_back_ticks] = ACTIONS(2237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2237), + [sym__entry_separator] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2237), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(3), }, - [436] = { - [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(1076), - [anon_sym_alias] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_let_DASHenv] = ACTIONS(1076), - [anon_sym_mut] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1076), - [aux_sym_cmd_identifier_token2] = ACTIONS(1076), - [aux_sym_cmd_identifier_token3] = ACTIONS(1076), - [aux_sym_cmd_identifier_token4] = ACTIONS(1076), - [aux_sym_cmd_identifier_token5] = ACTIONS(1076), - [aux_sym_cmd_identifier_token6] = ACTIONS(1076), - [aux_sym_cmd_identifier_token7] = ACTIONS(1076), - [aux_sym_cmd_identifier_token8] = ACTIONS(1076), - [aux_sym_cmd_identifier_token9] = ACTIONS(1076), - [aux_sym_cmd_identifier_token10] = ACTIONS(1076), - [aux_sym_cmd_identifier_token11] = ACTIONS(1076), - [aux_sym_cmd_identifier_token12] = ACTIONS(1076), - [aux_sym_cmd_identifier_token13] = ACTIONS(1076), - [aux_sym_cmd_identifier_token14] = ACTIONS(1076), - [aux_sym_cmd_identifier_token15] = ACTIONS(1076), - [aux_sym_cmd_identifier_token16] = ACTIONS(1076), - [aux_sym_cmd_identifier_token17] = ACTIONS(1076), - [aux_sym_cmd_identifier_token18] = ACTIONS(1076), - [aux_sym_cmd_identifier_token19] = ACTIONS(1076), - [aux_sym_cmd_identifier_token20] = ACTIONS(1076), - [aux_sym_cmd_identifier_token21] = ACTIONS(1076), - [aux_sym_cmd_identifier_token22] = ACTIONS(1076), - [aux_sym_cmd_identifier_token23] = ACTIONS(1076), - [aux_sym_cmd_identifier_token24] = ACTIONS(1076), - [aux_sym_cmd_identifier_token25] = ACTIONS(1076), - [aux_sym_cmd_identifier_token26] = ACTIONS(1076), - [aux_sym_cmd_identifier_token27] = ACTIONS(1076), - [aux_sym_cmd_identifier_token28] = ACTIONS(1076), - [aux_sym_cmd_identifier_token29] = ACTIONS(1076), - [aux_sym_cmd_identifier_token30] = ACTIONS(1076), - [aux_sym_cmd_identifier_token31] = ACTIONS(1076), - [aux_sym_cmd_identifier_token32] = ACTIONS(1076), - [aux_sym_cmd_identifier_token33] = ACTIONS(1076), - [aux_sym_cmd_identifier_token34] = ACTIONS(1076), - [aux_sym_cmd_identifier_token35] = ACTIONS(1076), - [aux_sym_cmd_identifier_token36] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1076), - [anon_sym_export_DASHenv] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1076), - [anon_sym_list] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_loop] = ACTIONS(1076), - [anon_sym_make] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_catch] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_source] = ACTIONS(1076), - [anon_sym_source_DASHenv] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_hide] = ACTIONS(1076), - [anon_sym_hide_DASHenv] = ACTIONS(1076), - [anon_sym_overlay] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), + [464] = { + [sym_comment] = STATE(464), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_alias] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_let_DASHenv] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [aux_sym_cmd_identifier_token1] = ACTIONS(2245), + [aux_sym_cmd_identifier_token2] = ACTIONS(2245), + [aux_sym_cmd_identifier_token3] = ACTIONS(2245), + [aux_sym_cmd_identifier_token4] = ACTIONS(2245), + [aux_sym_cmd_identifier_token5] = ACTIONS(2245), + [aux_sym_cmd_identifier_token6] = ACTIONS(2245), + [aux_sym_cmd_identifier_token7] = ACTIONS(2245), + [aux_sym_cmd_identifier_token8] = ACTIONS(2245), + [aux_sym_cmd_identifier_token9] = ACTIONS(2245), + [aux_sym_cmd_identifier_token10] = ACTIONS(2245), + [aux_sym_cmd_identifier_token11] = ACTIONS(2245), + [aux_sym_cmd_identifier_token12] = ACTIONS(2245), + [aux_sym_cmd_identifier_token13] = ACTIONS(2245), + [aux_sym_cmd_identifier_token14] = ACTIONS(2245), + [aux_sym_cmd_identifier_token15] = ACTIONS(2245), + [aux_sym_cmd_identifier_token16] = ACTIONS(2245), + [aux_sym_cmd_identifier_token17] = ACTIONS(2245), + [aux_sym_cmd_identifier_token18] = ACTIONS(2245), + [aux_sym_cmd_identifier_token19] = ACTIONS(2245), + [aux_sym_cmd_identifier_token20] = ACTIONS(2245), + [aux_sym_cmd_identifier_token21] = ACTIONS(2245), + [aux_sym_cmd_identifier_token22] = ACTIONS(2245), + [aux_sym_cmd_identifier_token23] = ACTIONS(2245), + [aux_sym_cmd_identifier_token24] = ACTIONS(2245), + [aux_sym_cmd_identifier_token25] = ACTIONS(2245), + [aux_sym_cmd_identifier_token26] = ACTIONS(2245), + [aux_sym_cmd_identifier_token27] = ACTIONS(2245), + [aux_sym_cmd_identifier_token28] = ACTIONS(2245), + [aux_sym_cmd_identifier_token29] = ACTIONS(2245), + [aux_sym_cmd_identifier_token30] = ACTIONS(2245), + [aux_sym_cmd_identifier_token31] = ACTIONS(2245), + [aux_sym_cmd_identifier_token32] = ACTIONS(2245), + [aux_sym_cmd_identifier_token33] = ACTIONS(2245), + [aux_sym_cmd_identifier_token34] = ACTIONS(2245), + [aux_sym_cmd_identifier_token35] = ACTIONS(2245), + [aux_sym_cmd_identifier_token36] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [aux_sym_cmd_identifier_token38] = ACTIONS(2245), + [aux_sym_cmd_identifier_token39] = ACTIONS(2245), + [aux_sym_cmd_identifier_token40] = ACTIONS(2245), + [anon_sym_def] = ACTIONS(2245), + [anon_sym_export_DASHenv] = ACTIONS(2245), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_error] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_make] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_catch] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_source] = ACTIONS(2245), + [anon_sym_source_DASHenv] = ACTIONS(2245), + [anon_sym_register] = ACTIONS(2245), + [anon_sym_hide] = ACTIONS(2245), + [anon_sym_hide_DASHenv] = ACTIONS(2245), + [anon_sym_overlay] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token3] = ACTIONS(1076), - [aux_sym__val_number_decimal_token4] = ACTIONS(1076), - [aux_sym__val_number_token1] = ACTIONS(1076), - [aux_sym__val_number_token2] = ACTIONS(1076), - [aux_sym__val_number_token3] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym__str_single_quotes] = ACTIONS(1076), - [sym__str_back_ticks] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), - [sym__entry_separator] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1076), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2245), + [aux_sym__val_number_decimal_token1] = ACTIONS(2245), + [aux_sym__val_number_decimal_token2] = ACTIONS(2245), + [aux_sym__val_number_decimal_token3] = ACTIONS(2245), + [aux_sym__val_number_decimal_token4] = ACTIONS(2245), + [aux_sym__val_number_token1] = ACTIONS(2245), + [aux_sym__val_number_token2] = ACTIONS(2245), + [aux_sym__val_number_token3] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym__str_single_quotes] = ACTIONS(2245), + [sym__str_back_ticks] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2245), + [sym__entry_separator] = ACTIONS(2247), + [anon_sym_PLUS] = ACTIONS(2245), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), [anon_sym_POUND] = ACTIONS(3), }, - [437] = { - [sym_comment] = STATE(437), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_alias] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_let_DASHenv] = ACTIONS(2023), - [anon_sym_mut] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [aux_sym_cmd_identifier_token1] = ACTIONS(2023), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2023), - [aux_sym_cmd_identifier_token9] = ACTIONS(2023), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2023), - [aux_sym_cmd_identifier_token13] = ACTIONS(2023), - [aux_sym_cmd_identifier_token14] = ACTIONS(2023), - [aux_sym_cmd_identifier_token15] = ACTIONS(2023), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2023), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2023), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2023), - [anon_sym_export_DASHenv] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_module] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2023), - [anon_sym_list] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_in] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_make] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_source] = ACTIONS(2023), - [anon_sym_source_DASHenv] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_hide_DASHenv] = ACTIONS(2023), - [anon_sym_overlay] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_as] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2023), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(247), + [465] = { + [sym_comment] = STATE(465), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [anon_sym_null] = ACTIONS(1022), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1022), + [aux_sym_cmd_identifier_token40] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_make] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), + [sym__entry_separator] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(3), + }, + [466] = { + [sym_comment] = STATE(466), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [anon_sym_null] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [sym__entry_separator] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(3), }, - [438] = { - [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(2243), - [anon_sym_alias] = ACTIONS(2243), - [anon_sym_let] = ACTIONS(2243), - [anon_sym_let_DASHenv] = ACTIONS(2243), - [anon_sym_mut] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [aux_sym_cmd_identifier_token1] = ACTIONS(2243), - [aux_sym_cmd_identifier_token2] = ACTIONS(2243), - [aux_sym_cmd_identifier_token3] = ACTIONS(2243), - [aux_sym_cmd_identifier_token4] = ACTIONS(2243), - [aux_sym_cmd_identifier_token5] = ACTIONS(2243), - [aux_sym_cmd_identifier_token6] = ACTIONS(2243), - [aux_sym_cmd_identifier_token7] = ACTIONS(2243), - [aux_sym_cmd_identifier_token8] = ACTIONS(2243), - [aux_sym_cmd_identifier_token9] = ACTIONS(2243), - [aux_sym_cmd_identifier_token10] = ACTIONS(2243), - [aux_sym_cmd_identifier_token11] = ACTIONS(2243), - [aux_sym_cmd_identifier_token12] = ACTIONS(2243), - [aux_sym_cmd_identifier_token13] = ACTIONS(2243), - [aux_sym_cmd_identifier_token14] = ACTIONS(2243), - [aux_sym_cmd_identifier_token15] = ACTIONS(2243), - [aux_sym_cmd_identifier_token16] = ACTIONS(2243), - [aux_sym_cmd_identifier_token17] = ACTIONS(2243), - [aux_sym_cmd_identifier_token18] = ACTIONS(2243), - [aux_sym_cmd_identifier_token19] = ACTIONS(2243), - [aux_sym_cmd_identifier_token20] = ACTIONS(2243), - [aux_sym_cmd_identifier_token21] = ACTIONS(2243), - [aux_sym_cmd_identifier_token22] = ACTIONS(2243), - [aux_sym_cmd_identifier_token23] = ACTIONS(2243), - [aux_sym_cmd_identifier_token24] = ACTIONS(2243), - [aux_sym_cmd_identifier_token25] = ACTIONS(2243), - [aux_sym_cmd_identifier_token26] = ACTIONS(2243), - [aux_sym_cmd_identifier_token27] = ACTIONS(2243), - [aux_sym_cmd_identifier_token28] = ACTIONS(2243), - [aux_sym_cmd_identifier_token29] = ACTIONS(2243), - [aux_sym_cmd_identifier_token30] = ACTIONS(2243), - [aux_sym_cmd_identifier_token31] = ACTIONS(2243), - [aux_sym_cmd_identifier_token32] = ACTIONS(2243), - [aux_sym_cmd_identifier_token33] = ACTIONS(2243), - [aux_sym_cmd_identifier_token34] = ACTIONS(2243), - [aux_sym_cmd_identifier_token35] = ACTIONS(2243), - [aux_sym_cmd_identifier_token36] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [aux_sym_cmd_identifier_token38] = ACTIONS(2243), - [aux_sym_cmd_identifier_token39] = ACTIONS(2243), - [aux_sym_cmd_identifier_token40] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2243), - [anon_sym_export_DASHenv] = ACTIONS(2243), - [anon_sym_extern] = ACTIONS(2243), - [anon_sym_module] = ACTIONS(2243), - [anon_sym_use] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_error] = ACTIONS(2243), - [anon_sym_list] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_loop] = ACTIONS(2243), - [anon_sym_make] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [anon_sym_do] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_else] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2243), - [anon_sym_catch] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_source] = ACTIONS(2243), - [anon_sym_source_DASHenv] = ACTIONS(2243), - [anon_sym_register] = ACTIONS(2243), - [anon_sym_hide] = ACTIONS(2243), - [anon_sym_hide_DASHenv] = ACTIONS(2243), - [anon_sym_overlay] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_LPAREN2] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2243), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym__str_single_quotes] = ACTIONS(2243), - [sym__str_back_ticks] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2243), - [sym__entry_separator] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2243), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), + [467] = { + [sym_comment] = STATE(467), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [sym__entry_separator] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(3), }, - [439] = { - [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_alias] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_let_DASHenv] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [aux_sym_cmd_identifier_token1] = ACTIONS(2251), - [aux_sym_cmd_identifier_token2] = ACTIONS(2251), - [aux_sym_cmd_identifier_token3] = ACTIONS(2251), - [aux_sym_cmd_identifier_token4] = ACTIONS(2251), - [aux_sym_cmd_identifier_token5] = ACTIONS(2251), - [aux_sym_cmd_identifier_token6] = ACTIONS(2251), - [aux_sym_cmd_identifier_token7] = ACTIONS(2251), - [aux_sym_cmd_identifier_token8] = ACTIONS(2251), - [aux_sym_cmd_identifier_token9] = ACTIONS(2251), - [aux_sym_cmd_identifier_token10] = ACTIONS(2251), - [aux_sym_cmd_identifier_token11] = ACTIONS(2251), - [aux_sym_cmd_identifier_token12] = ACTIONS(2251), - [aux_sym_cmd_identifier_token13] = ACTIONS(2251), - [aux_sym_cmd_identifier_token14] = ACTIONS(2251), - [aux_sym_cmd_identifier_token15] = ACTIONS(2251), - [aux_sym_cmd_identifier_token16] = ACTIONS(2251), - [aux_sym_cmd_identifier_token17] = ACTIONS(2251), - [aux_sym_cmd_identifier_token18] = ACTIONS(2251), - [aux_sym_cmd_identifier_token19] = ACTIONS(2251), - [aux_sym_cmd_identifier_token20] = ACTIONS(2251), - [aux_sym_cmd_identifier_token21] = ACTIONS(2251), - [aux_sym_cmd_identifier_token22] = ACTIONS(2251), - [aux_sym_cmd_identifier_token23] = ACTIONS(2251), - [aux_sym_cmd_identifier_token24] = ACTIONS(2251), - [aux_sym_cmd_identifier_token25] = ACTIONS(2251), - [aux_sym_cmd_identifier_token26] = ACTIONS(2251), - [aux_sym_cmd_identifier_token27] = ACTIONS(2251), - [aux_sym_cmd_identifier_token28] = ACTIONS(2251), - [aux_sym_cmd_identifier_token29] = ACTIONS(2251), - [aux_sym_cmd_identifier_token30] = ACTIONS(2251), - [aux_sym_cmd_identifier_token31] = ACTIONS(2251), - [aux_sym_cmd_identifier_token32] = ACTIONS(2251), - [aux_sym_cmd_identifier_token33] = ACTIONS(2251), - [aux_sym_cmd_identifier_token34] = ACTIONS(2251), - [aux_sym_cmd_identifier_token35] = ACTIONS(2251), - [aux_sym_cmd_identifier_token36] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(2251), - [anon_sym_false] = ACTIONS(2251), - [anon_sym_null] = ACTIONS(2251), - [aux_sym_cmd_identifier_token38] = ACTIONS(2251), - [aux_sym_cmd_identifier_token39] = ACTIONS(2251), - [aux_sym_cmd_identifier_token40] = ACTIONS(2251), - [anon_sym_def] = ACTIONS(2251), - [anon_sym_export_DASHenv] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_use] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_error] = ACTIONS(2251), - [anon_sym_list] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_loop] = ACTIONS(2251), - [anon_sym_make] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_catch] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_source] = ACTIONS(2251), - [anon_sym_source_DASHenv] = ACTIONS(2251), - [anon_sym_register] = ACTIONS(2251), - [anon_sym_hide] = ACTIONS(2251), - [anon_sym_hide_DASHenv] = ACTIONS(2251), - [anon_sym_overlay] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_LPAREN2] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2251), - [aux_sym__val_number_decimal_token1] = ACTIONS(2251), - [aux_sym__val_number_decimal_token2] = ACTIONS(2251), - [aux_sym__val_number_decimal_token3] = ACTIONS(2251), - [aux_sym__val_number_decimal_token4] = ACTIONS(2251), - [aux_sym__val_number_token1] = ACTIONS(2251), - [aux_sym__val_number_token2] = ACTIONS(2251), - [aux_sym__val_number_token3] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [sym__str_single_quotes] = ACTIONS(2251), - [sym__str_back_ticks] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2251), - [sym__entry_separator] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2251), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), + [468] = { + [sym_comment] = STATE(468), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_null] = ACTIONS(1038), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1038), + [aux_sym_cmd_identifier_token40] = ACTIONS(1038), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1038), + [aux_sym__val_number_decimal_token3] = ACTIONS(1038), + [aux_sym__val_number_decimal_token4] = ACTIONS(1038), + [aux_sym__val_number_token1] = ACTIONS(1038), + [aux_sym__val_number_token2] = ACTIONS(1038), + [aux_sym__val_number_token3] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym__str_single_quotes] = ACTIONS(1038), + [sym__str_back_ticks] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), + [sym__entry_separator] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), [anon_sym_POUND] = ACTIONS(3), }, - [440] = { - [sym_comment] = STATE(440), + [469] = { + [sym_comment] = STATE(469), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1034), [anon_sym_let] = ACTIONS(1034), @@ -123921,7 +128507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1034), [anon_sym_new] = ACTIONS(1034), [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(2255), + [anon_sym_QMARK2] = ACTIONS(1034), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), [anon_sym_DOT] = ACTIONS(1034), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), @@ -123940,2456 +128526,2760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(3), }, - [441] = { - [sym_comment] = STATE(441), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [sym__entry_separator] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), + [470] = { + [sym_comment] = STATE(470), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_alias] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_let_DASHenv] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [aux_sym_cmd_identifier_token1] = ACTIONS(2253), + [aux_sym_cmd_identifier_token2] = ACTIONS(2253), + [aux_sym_cmd_identifier_token3] = ACTIONS(2253), + [aux_sym_cmd_identifier_token4] = ACTIONS(2253), + [aux_sym_cmd_identifier_token5] = ACTIONS(2253), + [aux_sym_cmd_identifier_token6] = ACTIONS(2253), + [aux_sym_cmd_identifier_token7] = ACTIONS(2253), + [aux_sym_cmd_identifier_token8] = ACTIONS(2253), + [aux_sym_cmd_identifier_token9] = ACTIONS(2253), + [aux_sym_cmd_identifier_token10] = ACTIONS(2253), + [aux_sym_cmd_identifier_token11] = ACTIONS(2253), + [aux_sym_cmd_identifier_token12] = ACTIONS(2253), + [aux_sym_cmd_identifier_token13] = ACTIONS(2253), + [aux_sym_cmd_identifier_token14] = ACTIONS(2253), + [aux_sym_cmd_identifier_token15] = ACTIONS(2253), + [aux_sym_cmd_identifier_token16] = ACTIONS(2253), + [aux_sym_cmd_identifier_token17] = ACTIONS(2253), + [aux_sym_cmd_identifier_token18] = ACTIONS(2253), + [aux_sym_cmd_identifier_token19] = ACTIONS(2253), + [aux_sym_cmd_identifier_token20] = ACTIONS(2253), + [aux_sym_cmd_identifier_token21] = ACTIONS(2253), + [aux_sym_cmd_identifier_token22] = ACTIONS(2253), + [aux_sym_cmd_identifier_token23] = ACTIONS(2253), + [aux_sym_cmd_identifier_token24] = ACTIONS(2253), + [aux_sym_cmd_identifier_token25] = ACTIONS(2253), + [aux_sym_cmd_identifier_token26] = ACTIONS(2253), + [aux_sym_cmd_identifier_token27] = ACTIONS(2253), + [aux_sym_cmd_identifier_token28] = ACTIONS(2253), + [aux_sym_cmd_identifier_token29] = ACTIONS(2253), + [aux_sym_cmd_identifier_token30] = ACTIONS(2253), + [aux_sym_cmd_identifier_token31] = ACTIONS(2253), + [aux_sym_cmd_identifier_token32] = ACTIONS(2253), + [aux_sym_cmd_identifier_token33] = ACTIONS(2253), + [aux_sym_cmd_identifier_token34] = ACTIONS(2253), + [aux_sym_cmd_identifier_token35] = ACTIONS(2253), + [aux_sym_cmd_identifier_token36] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [aux_sym_cmd_identifier_token38] = ACTIONS(2253), + [aux_sym_cmd_identifier_token39] = ACTIONS(2253), + [aux_sym_cmd_identifier_token40] = ACTIONS(2253), + [anon_sym_def] = ACTIONS(2253), + [anon_sym_export_DASHenv] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_error] = ACTIONS(2253), + [anon_sym_list] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_make] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_catch] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_source] = ACTIONS(2253), + [anon_sym_source_DASHenv] = ACTIONS(2253), + [anon_sym_register] = ACTIONS(2253), + [anon_sym_hide] = ACTIONS(2253), + [anon_sym_hide_DASHenv] = ACTIONS(2253), + [anon_sym_overlay] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_LPAREN2] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2253), + [aux_sym__val_number_decimal_token2] = ACTIONS(2253), + [aux_sym__val_number_decimal_token3] = ACTIONS(2253), + [aux_sym__val_number_decimal_token4] = ACTIONS(2253), + [aux_sym__val_number_token1] = ACTIONS(2253), + [aux_sym__val_number_token2] = ACTIONS(2253), + [aux_sym__val_number_token3] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), + [sym__entry_separator] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2253), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2253), [anon_sym_POUND] = ACTIONS(3), }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), - [sym__entry_separator] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(3), + [471] = { + [sym_comment] = STATE(471), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [sym__entry_separator] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(3), + [472] = { + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, - [444] = { - [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [sym__entry_separator] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), + [473] = { + [sym_comment] = STATE(473), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [474] = { + [sym_comment] = STATE(474), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [475] = { + [sym_comment] = STATE(475), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1987), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1987), + [aux_sym_cmd_identifier_token40] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT2] = ACTIONS(2259), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(247), + }, + [476] = { + [sym_comment] = STATE(476), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [aux_sym_cmd_identifier_token1] = ACTIONS(2015), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2015), + [aux_sym_cmd_identifier_token9] = ACTIONS(2015), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2015), + [aux_sym_cmd_identifier_token13] = ACTIONS(2015), + [aux_sym_cmd_identifier_token14] = ACTIONS(2015), + [aux_sym_cmd_identifier_token15] = ACTIONS(2015), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2015), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_null] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT_DOT2] = ACTIONS(2259), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(247), + }, + [477] = { + [sym_comment] = STATE(477), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_alias] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_let_DASHenv] = ACTIONS(2259), - [anon_sym_mut] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [aux_sym_cmd_identifier_token1] = ACTIONS(2259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2259), - [aux_sym_cmd_identifier_token3] = ACTIONS(2259), - [aux_sym_cmd_identifier_token4] = ACTIONS(2259), - [aux_sym_cmd_identifier_token5] = ACTIONS(2259), - [aux_sym_cmd_identifier_token6] = ACTIONS(2259), - [aux_sym_cmd_identifier_token7] = ACTIONS(2259), - [aux_sym_cmd_identifier_token8] = ACTIONS(2259), - [aux_sym_cmd_identifier_token9] = ACTIONS(2259), - [aux_sym_cmd_identifier_token10] = ACTIONS(2259), - [aux_sym_cmd_identifier_token11] = ACTIONS(2259), - [aux_sym_cmd_identifier_token12] = ACTIONS(2259), - [aux_sym_cmd_identifier_token13] = ACTIONS(2259), - [aux_sym_cmd_identifier_token14] = ACTIONS(2259), - [aux_sym_cmd_identifier_token15] = ACTIONS(2259), - [aux_sym_cmd_identifier_token16] = ACTIONS(2259), - [aux_sym_cmd_identifier_token17] = ACTIONS(2259), - [aux_sym_cmd_identifier_token18] = ACTIONS(2259), - [aux_sym_cmd_identifier_token19] = ACTIONS(2259), - [aux_sym_cmd_identifier_token20] = ACTIONS(2259), - [aux_sym_cmd_identifier_token21] = ACTIONS(2259), - [aux_sym_cmd_identifier_token22] = ACTIONS(2259), - [aux_sym_cmd_identifier_token23] = ACTIONS(2259), - [aux_sym_cmd_identifier_token24] = ACTIONS(2259), - [aux_sym_cmd_identifier_token25] = ACTIONS(2259), - [aux_sym_cmd_identifier_token26] = ACTIONS(2259), - [aux_sym_cmd_identifier_token27] = ACTIONS(2259), - [aux_sym_cmd_identifier_token28] = ACTIONS(2259), - [aux_sym_cmd_identifier_token29] = ACTIONS(2259), - [aux_sym_cmd_identifier_token30] = ACTIONS(2259), - [aux_sym_cmd_identifier_token31] = ACTIONS(2259), - [aux_sym_cmd_identifier_token32] = ACTIONS(2259), - [aux_sym_cmd_identifier_token33] = ACTIONS(2259), - [aux_sym_cmd_identifier_token34] = ACTIONS(2259), - [aux_sym_cmd_identifier_token35] = ACTIONS(2259), - [aux_sym_cmd_identifier_token36] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [anon_sym_null] = ACTIONS(2259), - [aux_sym_cmd_identifier_token38] = ACTIONS(2259), - [aux_sym_cmd_identifier_token39] = ACTIONS(2259), - [aux_sym_cmd_identifier_token40] = ACTIONS(2259), - [anon_sym_def] = ACTIONS(2259), - [anon_sym_export_DASHenv] = ACTIONS(2259), - [anon_sym_extern] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_error] = ACTIONS(2259), - [anon_sym_list] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_make] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_catch] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_source] = ACTIONS(2259), - [anon_sym_source_DASHenv] = ACTIONS(2259), - [anon_sym_register] = ACTIONS(2259), - [anon_sym_hide] = ACTIONS(2259), - [anon_sym_hide_DASHenv] = ACTIONS(2259), - [anon_sym_overlay] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2259), - [aux_sym__val_number_decimal_token1] = ACTIONS(2259), - [aux_sym__val_number_decimal_token2] = ACTIONS(2259), - [aux_sym__val_number_decimal_token3] = ACTIONS(2259), - [aux_sym__val_number_decimal_token4] = ACTIONS(2259), - [aux_sym__val_number_token1] = ACTIONS(2259), - [aux_sym__val_number_token2] = ACTIONS(2259), - [aux_sym__val_number_token3] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym__str_single_quotes] = ACTIONS(2259), - [sym__str_back_ticks] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2259), - [sym__entry_separator] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2259), + [478] = { + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, - [446] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(446), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [aux_sym_cmd_identifier_token1] = ACTIONS(2263), - [aux_sym_cmd_identifier_token2] = ACTIONS(2263), - [aux_sym_cmd_identifier_token3] = ACTIONS(2263), - [aux_sym_cmd_identifier_token4] = ACTIONS(2263), - [aux_sym_cmd_identifier_token5] = ACTIONS(2263), - [aux_sym_cmd_identifier_token6] = ACTIONS(2263), - [aux_sym_cmd_identifier_token7] = ACTIONS(2263), - [aux_sym_cmd_identifier_token8] = ACTIONS(2263), - [aux_sym_cmd_identifier_token9] = ACTIONS(2263), - [aux_sym_cmd_identifier_token10] = ACTIONS(2263), - [aux_sym_cmd_identifier_token11] = ACTIONS(2263), - [aux_sym_cmd_identifier_token12] = ACTIONS(2263), - [aux_sym_cmd_identifier_token13] = ACTIONS(2263), - [aux_sym_cmd_identifier_token14] = ACTIONS(2263), - [aux_sym_cmd_identifier_token15] = ACTIONS(2263), - [aux_sym_cmd_identifier_token16] = ACTIONS(2263), - [aux_sym_cmd_identifier_token17] = ACTIONS(2263), - [aux_sym_cmd_identifier_token18] = ACTIONS(2263), - [aux_sym_cmd_identifier_token19] = ACTIONS(2263), - [aux_sym_cmd_identifier_token20] = ACTIONS(2263), - [aux_sym_cmd_identifier_token21] = ACTIONS(2263), - [aux_sym_cmd_identifier_token22] = ACTIONS(2263), - [aux_sym_cmd_identifier_token23] = ACTIONS(2263), - [aux_sym_cmd_identifier_token24] = ACTIONS(2263), - [aux_sym_cmd_identifier_token25] = ACTIONS(2263), - [aux_sym_cmd_identifier_token26] = ACTIONS(2263), - [aux_sym_cmd_identifier_token27] = ACTIONS(2263), - [aux_sym_cmd_identifier_token28] = ACTIONS(2263), - [aux_sym_cmd_identifier_token29] = ACTIONS(2263), - [aux_sym_cmd_identifier_token30] = ACTIONS(2263), - [aux_sym_cmd_identifier_token31] = ACTIONS(2263), - [aux_sym_cmd_identifier_token32] = ACTIONS(2263), - [aux_sym_cmd_identifier_token33] = ACTIONS(2263), - [aux_sym_cmd_identifier_token34] = ACTIONS(2263), - [aux_sym_cmd_identifier_token35] = ACTIONS(2263), - [aux_sym_cmd_identifier_token36] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [anon_sym_null] = ACTIONS(2263), - [aux_sym_cmd_identifier_token38] = ACTIONS(2263), - [aux_sym_cmd_identifier_token39] = ACTIONS(2263), - [aux_sym_cmd_identifier_token40] = ACTIONS(2263), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_list] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_make] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_as] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2263), - [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2263), - [aux_sym__val_number_decimal_token3] = ACTIONS(2263), - [aux_sym__val_number_decimal_token4] = ACTIONS(2263), - [aux_sym__val_number_token1] = ACTIONS(2263), - [aux_sym__val_number_token2] = ACTIONS(2263), - [aux_sym__val_number_token3] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [sym__str_single_quotes] = ACTIONS(2263), - [sym__str_back_ticks] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2263), - [sym__entry_separator] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2263), + [479] = { + [sym_comment] = STATE(479), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [447] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [aux_sym_cmd_identifier_token1] = ACTIONS(2267), - [aux_sym_cmd_identifier_token2] = ACTIONS(2267), - [aux_sym_cmd_identifier_token3] = ACTIONS(2267), - [aux_sym_cmd_identifier_token4] = ACTIONS(2267), - [aux_sym_cmd_identifier_token5] = ACTIONS(2267), - [aux_sym_cmd_identifier_token6] = ACTIONS(2267), - [aux_sym_cmd_identifier_token7] = ACTIONS(2267), - [aux_sym_cmd_identifier_token8] = ACTIONS(2267), - [aux_sym_cmd_identifier_token9] = ACTIONS(2267), - [aux_sym_cmd_identifier_token10] = ACTIONS(2267), - [aux_sym_cmd_identifier_token11] = ACTIONS(2267), - [aux_sym_cmd_identifier_token12] = ACTIONS(2267), - [aux_sym_cmd_identifier_token13] = ACTIONS(2267), - [aux_sym_cmd_identifier_token14] = ACTIONS(2267), - [aux_sym_cmd_identifier_token15] = ACTIONS(2267), - [aux_sym_cmd_identifier_token16] = ACTIONS(2267), - [aux_sym_cmd_identifier_token17] = ACTIONS(2267), - [aux_sym_cmd_identifier_token18] = ACTIONS(2267), - [aux_sym_cmd_identifier_token19] = ACTIONS(2267), - [aux_sym_cmd_identifier_token20] = ACTIONS(2267), - [aux_sym_cmd_identifier_token21] = ACTIONS(2267), - [aux_sym_cmd_identifier_token22] = ACTIONS(2267), - [aux_sym_cmd_identifier_token23] = ACTIONS(2267), - [aux_sym_cmd_identifier_token24] = ACTIONS(2267), - [aux_sym_cmd_identifier_token25] = ACTIONS(2267), - [aux_sym_cmd_identifier_token26] = ACTIONS(2267), - [aux_sym_cmd_identifier_token27] = ACTIONS(2267), - [aux_sym_cmd_identifier_token28] = ACTIONS(2267), - [aux_sym_cmd_identifier_token29] = ACTIONS(2267), - [aux_sym_cmd_identifier_token30] = ACTIONS(2267), - [aux_sym_cmd_identifier_token31] = ACTIONS(2267), - [aux_sym_cmd_identifier_token32] = ACTIONS(2267), - [aux_sym_cmd_identifier_token33] = ACTIONS(2267), - [aux_sym_cmd_identifier_token34] = ACTIONS(2267), - [aux_sym_cmd_identifier_token35] = ACTIONS(2267), - [aux_sym_cmd_identifier_token36] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [anon_sym_null] = ACTIONS(2267), - [aux_sym_cmd_identifier_token38] = ACTIONS(2267), - [aux_sym_cmd_identifier_token39] = ACTIONS(2267), - [aux_sym_cmd_identifier_token40] = ACTIONS(2267), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_list] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_make] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_else] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_catch] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2267), - [aux_sym__val_number_decimal_token1] = ACTIONS(2267), - [aux_sym__val_number_decimal_token2] = ACTIONS(2267), - [aux_sym__val_number_decimal_token3] = ACTIONS(2267), - [aux_sym__val_number_decimal_token4] = ACTIONS(2267), - [aux_sym__val_number_token1] = ACTIONS(2267), - [aux_sym__val_number_token2] = ACTIONS(2267), - [aux_sym__val_number_token3] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2267), - [sym__entry_separator] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2267), + [480] = { + [sym_comment] = STATE(480), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1738), + [aux_sym_cmd_identifier_token40] = ACTIONS(1738), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), + [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(1738), + [aux_sym__val_number_token2] = ACTIONS(1738), + [aux_sym__val_number_token3] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym__str_single_quotes] = ACTIONS(1738), + [sym__str_back_ticks] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), + [sym__entry_separator] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, - [448] = { - [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), + [481] = { + [sym_comment] = STATE(481), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(2263), + [aux_sym__immediate_decimal_token2] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), }, - [449] = { - [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), + [482] = { + [sym_comment] = STATE(482), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(2267), + [aux_sym__immediate_decimal_token2] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), }, - [450] = { - [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), + [483] = { + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_alias] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_let_DASHenv] = ACTIONS(1991), + [anon_sym_mut] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [aux_sym_cmd_identifier_token1] = ACTIONS(1991), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1991), + [aux_sym_cmd_identifier_token9] = ACTIONS(1991), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1991), + [aux_sym_cmd_identifier_token13] = ACTIONS(1991), + [aux_sym_cmd_identifier_token14] = ACTIONS(1991), + [aux_sym_cmd_identifier_token15] = ACTIONS(1991), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1991), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1991), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_export_DASHenv] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1991), + [anon_sym_list] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_in] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_make] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_else] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_catch] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_source] = ACTIONS(1991), + [anon_sym_source_DASHenv] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1991), + [anon_sym_hide] = ACTIONS(1991), + [anon_sym_hide_DASHenv] = ACTIONS(1991), + [anon_sym_overlay] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_as] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT2] = ACTIONS(2271), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2273), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1991), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1991), [anon_sym_POUND] = ACTIONS(247), }, - [451] = { - [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), + [484] = { + [sym_comment] = STATE(484), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [aux_sym_cmd_identifier_token1] = ACTIONS(1999), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1999), + [aux_sym_cmd_identifier_token9] = ACTIONS(1999), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1999), + [aux_sym_cmd_identifier_token13] = ACTIONS(1999), + [aux_sym_cmd_identifier_token14] = ACTIONS(1999), + [aux_sym_cmd_identifier_token15] = ACTIONS(1999), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1999), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_null] = ACTIONS(2005), + [aux_sym_cmd_identifier_token38] = ACTIONS(1999), + [aux_sym_cmd_identifier_token39] = ACTIONS(2005), + [aux_sym_cmd_identifier_token40] = ACTIONS(2005), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_list] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_in] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_make] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_catch] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), + [anon_sym_DOT_DOT2] = ACTIONS(2275), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2277), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2277), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2005), + [aux_sym__val_number_decimal_token4] = ACTIONS(2005), + [aux_sym__val_number_token1] = ACTIONS(2005), + [aux_sym__val_number_token2] = ACTIONS(2005), + [aux_sym__val_number_token3] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(247), }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), + [485] = { + [sym_comment] = STATE(485), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [aux_sym_cmd_identifier_token1] = ACTIONS(2007), + [aux_sym_cmd_identifier_token2] = ACTIONS(2007), + [aux_sym_cmd_identifier_token3] = ACTIONS(2007), + [aux_sym_cmd_identifier_token4] = ACTIONS(2007), + [aux_sym_cmd_identifier_token5] = ACTIONS(2007), + [aux_sym_cmd_identifier_token6] = ACTIONS(2007), + [aux_sym_cmd_identifier_token7] = ACTIONS(2007), + [aux_sym_cmd_identifier_token8] = ACTIONS(2007), + [aux_sym_cmd_identifier_token9] = ACTIONS(2007), + [aux_sym_cmd_identifier_token10] = ACTIONS(2007), + [aux_sym_cmd_identifier_token11] = ACTIONS(2007), + [aux_sym_cmd_identifier_token12] = ACTIONS(2007), + [aux_sym_cmd_identifier_token13] = ACTIONS(2007), + [aux_sym_cmd_identifier_token14] = ACTIONS(2007), + [aux_sym_cmd_identifier_token15] = ACTIONS(2007), + [aux_sym_cmd_identifier_token16] = ACTIONS(2007), + [aux_sym_cmd_identifier_token17] = ACTIONS(2007), + [aux_sym_cmd_identifier_token18] = ACTIONS(2007), + [aux_sym_cmd_identifier_token19] = ACTIONS(2007), + [aux_sym_cmd_identifier_token20] = ACTIONS(2007), + [aux_sym_cmd_identifier_token21] = ACTIONS(2007), + [aux_sym_cmd_identifier_token22] = ACTIONS(2007), + [aux_sym_cmd_identifier_token23] = ACTIONS(2007), + [aux_sym_cmd_identifier_token24] = ACTIONS(2007), + [aux_sym_cmd_identifier_token25] = ACTIONS(2007), + [aux_sym_cmd_identifier_token26] = ACTIONS(2007), + [aux_sym_cmd_identifier_token27] = ACTIONS(2007), + [aux_sym_cmd_identifier_token28] = ACTIONS(2007), + [aux_sym_cmd_identifier_token29] = ACTIONS(2007), + [aux_sym_cmd_identifier_token30] = ACTIONS(2007), + [aux_sym_cmd_identifier_token31] = ACTIONS(2007), + [aux_sym_cmd_identifier_token32] = ACTIONS(2007), + [aux_sym_cmd_identifier_token33] = ACTIONS(2007), + [aux_sym_cmd_identifier_token34] = ACTIONS(2007), + [aux_sym_cmd_identifier_token35] = ACTIONS(2007), + [aux_sym_cmd_identifier_token36] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_null] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2007), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_list] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_in] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_make] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_catch] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), + [anon_sym_DOT_DOT2] = ACTIONS(2279), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2281), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2007), [anon_sym_POUND] = ACTIONS(247), }, - [453] = { - [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), + [486] = { + [sym_comment] = STATE(486), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_alias] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_let_DASHenv] = ACTIONS(2019), + [anon_sym_mut] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [aux_sym_cmd_identifier_token1] = ACTIONS(2019), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2019), + [aux_sym_cmd_identifier_token9] = ACTIONS(2019), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2019), + [aux_sym_cmd_identifier_token13] = ACTIONS(2019), + [aux_sym_cmd_identifier_token14] = ACTIONS(2019), + [aux_sym_cmd_identifier_token15] = ACTIONS(2019), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2019), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_export_DASHenv] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_module] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2019), + [anon_sym_list] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_make] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_else] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_catch] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_source] = ACTIONS(2019), + [anon_sym_source_DASHenv] = ACTIONS(2019), + [anon_sym_register] = ACTIONS(2019), + [anon_sym_hide] = ACTIONS(2019), + [anon_sym_hide_DASHenv] = ACTIONS(2019), + [anon_sym_overlay] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT2] = ACTIONS(2283), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2285), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(247), }, - [454] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_let_DASHenv] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [aux_sym_cmd_identifier_token1] = ACTIONS(2273), - [aux_sym_cmd_identifier_token2] = ACTIONS(2273), - [aux_sym_cmd_identifier_token3] = ACTIONS(2273), - [aux_sym_cmd_identifier_token4] = ACTIONS(2273), - [aux_sym_cmd_identifier_token5] = ACTIONS(2273), - [aux_sym_cmd_identifier_token6] = ACTIONS(2273), - [aux_sym_cmd_identifier_token7] = ACTIONS(2273), - [aux_sym_cmd_identifier_token8] = ACTIONS(2273), - [aux_sym_cmd_identifier_token9] = ACTIONS(2273), - [aux_sym_cmd_identifier_token10] = ACTIONS(2273), - [aux_sym_cmd_identifier_token11] = ACTIONS(2273), - [aux_sym_cmd_identifier_token12] = ACTIONS(2273), - [aux_sym_cmd_identifier_token13] = ACTIONS(2273), - [aux_sym_cmd_identifier_token14] = ACTIONS(2273), - [aux_sym_cmd_identifier_token15] = ACTIONS(2273), - [aux_sym_cmd_identifier_token16] = ACTIONS(2273), - [aux_sym_cmd_identifier_token17] = ACTIONS(2273), - [aux_sym_cmd_identifier_token18] = ACTIONS(2273), - [aux_sym_cmd_identifier_token19] = ACTIONS(2273), - [aux_sym_cmd_identifier_token20] = ACTIONS(2273), - [aux_sym_cmd_identifier_token21] = ACTIONS(2273), - [aux_sym_cmd_identifier_token22] = ACTIONS(2273), - [aux_sym_cmd_identifier_token23] = ACTIONS(2273), - [aux_sym_cmd_identifier_token24] = ACTIONS(2273), - [aux_sym_cmd_identifier_token25] = ACTIONS(2273), - [aux_sym_cmd_identifier_token26] = ACTIONS(2273), - [aux_sym_cmd_identifier_token27] = ACTIONS(2273), - [aux_sym_cmd_identifier_token28] = ACTIONS(2273), - [aux_sym_cmd_identifier_token29] = ACTIONS(2273), - [aux_sym_cmd_identifier_token30] = ACTIONS(2273), - [aux_sym_cmd_identifier_token31] = ACTIONS(2273), - [aux_sym_cmd_identifier_token32] = ACTIONS(2273), - [aux_sym_cmd_identifier_token33] = ACTIONS(2273), - [aux_sym_cmd_identifier_token34] = ACTIONS(2273), - [aux_sym_cmd_identifier_token35] = ACTIONS(2273), - [aux_sym_cmd_identifier_token36] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2273), - [aux_sym_cmd_identifier_token40] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_export_DASHenv] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_module] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_error] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_make] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_catch] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_source] = ACTIONS(2273), - [anon_sym_source_DASHenv] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_hide] = ACTIONS(2273), - [anon_sym_hide_DASHenv] = ACTIONS(2273), - [anon_sym_overlay] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2273), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2273), - [aux_sym__val_number_decimal_token4] = ACTIONS(2273), - [aux_sym__val_number_token1] = ACTIONS(2273), - [aux_sym__val_number_token2] = ACTIONS(2273), - [aux_sym__val_number_token3] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [sym__str_single_quotes] = ACTIONS(2273), - [sym__str_back_ticks] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2273), - [sym__entry_separator] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2273), + [487] = { + [sym_comment] = STATE(487), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1778), + [aux_sym_cmd_identifier_token40] = ACTIONS(1778), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1778), + [aux_sym__val_number_decimal_token3] = ACTIONS(1778), + [aux_sym__val_number_decimal_token4] = ACTIONS(1778), + [aux_sym__val_number_token1] = ACTIONS(1778), + [aux_sym__val_number_token2] = ACTIONS(1778), + [aux_sym__val_number_token3] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym__str_single_quotes] = ACTIONS(1778), + [sym__str_back_ticks] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), + [sym__entry_separator] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1778), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(3), }, - [455] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_alias] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_let_DASHenv] = ACTIONS(2277), - [anon_sym_mut] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [aux_sym_cmd_identifier_token1] = ACTIONS(2277), - [aux_sym_cmd_identifier_token2] = ACTIONS(2277), - [aux_sym_cmd_identifier_token3] = ACTIONS(2277), - [aux_sym_cmd_identifier_token4] = ACTIONS(2277), - [aux_sym_cmd_identifier_token5] = ACTIONS(2277), - [aux_sym_cmd_identifier_token6] = ACTIONS(2277), - [aux_sym_cmd_identifier_token7] = ACTIONS(2277), - [aux_sym_cmd_identifier_token8] = ACTIONS(2277), - [aux_sym_cmd_identifier_token9] = ACTIONS(2277), - [aux_sym_cmd_identifier_token10] = ACTIONS(2277), - [aux_sym_cmd_identifier_token11] = ACTIONS(2277), - [aux_sym_cmd_identifier_token12] = ACTIONS(2277), - [aux_sym_cmd_identifier_token13] = ACTIONS(2277), - [aux_sym_cmd_identifier_token14] = ACTIONS(2277), - [aux_sym_cmd_identifier_token15] = ACTIONS(2277), - [aux_sym_cmd_identifier_token16] = ACTIONS(2277), - [aux_sym_cmd_identifier_token17] = ACTIONS(2277), - [aux_sym_cmd_identifier_token18] = ACTIONS(2277), - [aux_sym_cmd_identifier_token19] = ACTIONS(2277), - [aux_sym_cmd_identifier_token20] = ACTIONS(2277), - [aux_sym_cmd_identifier_token21] = ACTIONS(2277), - [aux_sym_cmd_identifier_token22] = ACTIONS(2277), - [aux_sym_cmd_identifier_token23] = ACTIONS(2277), - [aux_sym_cmd_identifier_token24] = ACTIONS(2277), - [aux_sym_cmd_identifier_token25] = ACTIONS(2277), - [aux_sym_cmd_identifier_token26] = ACTIONS(2277), - [aux_sym_cmd_identifier_token27] = ACTIONS(2277), - [aux_sym_cmd_identifier_token28] = ACTIONS(2277), - [aux_sym_cmd_identifier_token29] = ACTIONS(2277), - [aux_sym_cmd_identifier_token30] = ACTIONS(2277), - [aux_sym_cmd_identifier_token31] = ACTIONS(2277), - [aux_sym_cmd_identifier_token32] = ACTIONS(2277), - [aux_sym_cmd_identifier_token33] = ACTIONS(2277), - [aux_sym_cmd_identifier_token34] = ACTIONS(2277), - [aux_sym_cmd_identifier_token35] = ACTIONS(2277), - [aux_sym_cmd_identifier_token36] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_null] = ACTIONS(2277), - [aux_sym_cmd_identifier_token38] = ACTIONS(2277), - [aux_sym_cmd_identifier_token39] = ACTIONS(2277), - [aux_sym_cmd_identifier_token40] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_export_DASHenv] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_error] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_in] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_make] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_catch] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_source] = ACTIONS(2277), - [anon_sym_source_DASHenv] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_hide] = ACTIONS(2277), - [anon_sym_hide_DASHenv] = ACTIONS(2277), - [anon_sym_overlay] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2277), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2277), - [aux_sym__val_number_decimal_token3] = ACTIONS(2277), - [aux_sym__val_number_decimal_token4] = ACTIONS(2277), - [aux_sym__val_number_token1] = ACTIONS(2277), - [aux_sym__val_number_token2] = ACTIONS(2277), - [aux_sym__val_number_token3] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym__str_single_quotes] = ACTIONS(2277), - [sym__str_back_ticks] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2277), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2277), + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(2287), + [anon_sym_alias] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_let_DASHenv] = ACTIONS(2287), + [anon_sym_mut] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [aux_sym_cmd_identifier_token1] = ACTIONS(2287), + [aux_sym_cmd_identifier_token2] = ACTIONS(2287), + [aux_sym_cmd_identifier_token3] = ACTIONS(2287), + [aux_sym_cmd_identifier_token4] = ACTIONS(2287), + [aux_sym_cmd_identifier_token5] = ACTIONS(2287), + [aux_sym_cmd_identifier_token6] = ACTIONS(2287), + [aux_sym_cmd_identifier_token7] = ACTIONS(2287), + [aux_sym_cmd_identifier_token8] = ACTIONS(2287), + [aux_sym_cmd_identifier_token9] = ACTIONS(2287), + [aux_sym_cmd_identifier_token10] = ACTIONS(2287), + [aux_sym_cmd_identifier_token11] = ACTIONS(2287), + [aux_sym_cmd_identifier_token12] = ACTIONS(2287), + [aux_sym_cmd_identifier_token13] = ACTIONS(2287), + [aux_sym_cmd_identifier_token14] = ACTIONS(2287), + [aux_sym_cmd_identifier_token15] = ACTIONS(2287), + [aux_sym_cmd_identifier_token16] = ACTIONS(2287), + [aux_sym_cmd_identifier_token17] = ACTIONS(2287), + [aux_sym_cmd_identifier_token18] = ACTIONS(2287), + [aux_sym_cmd_identifier_token19] = ACTIONS(2287), + [aux_sym_cmd_identifier_token20] = ACTIONS(2287), + [aux_sym_cmd_identifier_token21] = ACTIONS(2287), + [aux_sym_cmd_identifier_token22] = ACTIONS(2287), + [aux_sym_cmd_identifier_token23] = ACTIONS(2287), + [aux_sym_cmd_identifier_token24] = ACTIONS(2287), + [aux_sym_cmd_identifier_token25] = ACTIONS(2287), + [aux_sym_cmd_identifier_token26] = ACTIONS(2287), + [aux_sym_cmd_identifier_token27] = ACTIONS(2287), + [aux_sym_cmd_identifier_token28] = ACTIONS(2287), + [aux_sym_cmd_identifier_token29] = ACTIONS(2287), + [aux_sym_cmd_identifier_token30] = ACTIONS(2287), + [aux_sym_cmd_identifier_token31] = ACTIONS(2287), + [aux_sym_cmd_identifier_token32] = ACTIONS(2287), + [aux_sym_cmd_identifier_token33] = ACTIONS(2287), + [aux_sym_cmd_identifier_token34] = ACTIONS(2287), + [aux_sym_cmd_identifier_token35] = ACTIONS(2287), + [aux_sym_cmd_identifier_token36] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [anon_sym_null] = ACTIONS(2287), + [aux_sym_cmd_identifier_token38] = ACTIONS(2287), + [aux_sym_cmd_identifier_token39] = ACTIONS(2287), + [aux_sym_cmd_identifier_token40] = ACTIONS(2287), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_export_DASHenv] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_module] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_error] = ACTIONS(2287), + [anon_sym_list] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_make] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_catch] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_source] = ACTIONS(2287), + [anon_sym_source_DASHenv] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_hide] = ACTIONS(2287), + [anon_sym_hide_DASHenv] = ACTIONS(2287), + [anon_sym_overlay] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2287), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2287), + [aux_sym__val_number_decimal_token1] = ACTIONS(2287), + [aux_sym__val_number_decimal_token2] = ACTIONS(2287), + [aux_sym__val_number_decimal_token3] = ACTIONS(2287), + [aux_sym__val_number_decimal_token4] = ACTIONS(2287), + [aux_sym__val_number_token1] = ACTIONS(2287), + [aux_sym__val_number_token2] = ACTIONS(2287), + [aux_sym__val_number_token3] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2287), + [sym__str_single_quotes] = ACTIONS(2287), + [sym__str_back_ticks] = ACTIONS(2287), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2287), + [sym__entry_separator] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2287), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(3), }, - [456] = { - [sym_expr_parenthesized] = STATE(4195), - [sym__spread_parenthesized] = STATE(4666), - [sym_val_range] = STATE(4668), - [sym__val_range] = STATE(7733), - [sym__val_range_with_end] = STATE(7391), - [sym__value] = STATE(4668), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(4396), - [sym__spread_variable] = STATE(4669), - [sym_val_variable] = STATE(4253), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(3869), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym__spread_list] = STATE(4666), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym__cmd_arg] = STATE(4920), - [sym_redirection] = STATE(4676), - [sym__flag] = STATE(4681), - [sym_short_flag] = STATE(4627), - [sym_long_flag] = STATE(4627), - [sym_unquoted] = STATE(4290), - [sym__unquoted_with_expr] = STATE(4687), - [sym__unquoted_anonymous_prefix] = STATE(6985), - [sym_comment] = STATE(456), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2079), - [aux_sym_cmd_identifier_token40] = ACTIONS(2079), - [sym__newline] = ACTIONS(2281), - [sym__space] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_err_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_GT_PIPE] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2093), - [aux_sym_ctrl_match_token1] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2103), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2107), - [aux_sym__val_number_decimal_token4] = ACTIONS(2109), - [aux_sym__val_number_token1] = ACTIONS(2111), - [aux_sym__val_number_token2] = ACTIONS(2111), - [aux_sym__val_number_token3] = ACTIONS(2111), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2123), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2127), - [anon_sym_err_GT] = ACTIONS(2129), - [anon_sym_out_GT] = ACTIONS(2129), - [anon_sym_e_GT] = ACTIONS(2129), - [anon_sym_o_GT] = ACTIONS(2129), - [anon_sym_err_PLUSout_GT] = ACTIONS(2129), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2129), - [anon_sym_o_PLUSe_GT] = ACTIONS(2129), - [anon_sym_e_PLUSo_GT] = ACTIONS(2129), - [anon_sym_err_GT_GT] = ACTIONS(2129), - [anon_sym_out_GT_GT] = ACTIONS(2129), - [anon_sym_e_GT_GT] = ACTIONS(2129), - [anon_sym_o_GT_GT] = ACTIONS(2129), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2129), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2129), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2129), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2129), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [489] = { + [sym_comment] = STATE(489), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [sym__entry_separator] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(3), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [490] = { + [sym__expr_parenthesized_immediate] = STATE(7335), + [sym_comment] = STATE(490), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [anon_sym_null] = ACTIONS(1981), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1981), + [aux_sym_cmd_identifier_token40] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(1981), + [aux_sym__val_number_decimal_token4] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), + [sym__entry_separator] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(3), }, - [458] = { - [sym_comment] = STATE(458), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [491] = { + [sym_comment] = STATE(491), + [anon_sym_export] = ACTIONS(2291), + [anon_sym_alias] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_let_DASHenv] = ACTIONS(2291), + [anon_sym_mut] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [aux_sym_cmd_identifier_token1] = ACTIONS(2291), + [aux_sym_cmd_identifier_token2] = ACTIONS(2291), + [aux_sym_cmd_identifier_token3] = ACTIONS(2291), + [aux_sym_cmd_identifier_token4] = ACTIONS(2291), + [aux_sym_cmd_identifier_token5] = ACTIONS(2291), + [aux_sym_cmd_identifier_token6] = ACTIONS(2291), + [aux_sym_cmd_identifier_token7] = ACTIONS(2291), + [aux_sym_cmd_identifier_token8] = ACTIONS(2291), + [aux_sym_cmd_identifier_token9] = ACTIONS(2291), + [aux_sym_cmd_identifier_token10] = ACTIONS(2291), + [aux_sym_cmd_identifier_token11] = ACTIONS(2291), + [aux_sym_cmd_identifier_token12] = ACTIONS(2291), + [aux_sym_cmd_identifier_token13] = ACTIONS(2291), + [aux_sym_cmd_identifier_token14] = ACTIONS(2291), + [aux_sym_cmd_identifier_token15] = ACTIONS(2291), + [aux_sym_cmd_identifier_token16] = ACTIONS(2291), + [aux_sym_cmd_identifier_token17] = ACTIONS(2291), + [aux_sym_cmd_identifier_token18] = ACTIONS(2291), + [aux_sym_cmd_identifier_token19] = ACTIONS(2291), + [aux_sym_cmd_identifier_token20] = ACTIONS(2291), + [aux_sym_cmd_identifier_token21] = ACTIONS(2291), + [aux_sym_cmd_identifier_token22] = ACTIONS(2291), + [aux_sym_cmd_identifier_token23] = ACTIONS(2291), + [aux_sym_cmd_identifier_token24] = ACTIONS(2291), + [aux_sym_cmd_identifier_token25] = ACTIONS(2291), + [aux_sym_cmd_identifier_token26] = ACTIONS(2291), + [aux_sym_cmd_identifier_token27] = ACTIONS(2291), + [aux_sym_cmd_identifier_token28] = ACTIONS(2291), + [aux_sym_cmd_identifier_token29] = ACTIONS(2291), + [aux_sym_cmd_identifier_token30] = ACTIONS(2291), + [aux_sym_cmd_identifier_token31] = ACTIONS(2291), + [aux_sym_cmd_identifier_token32] = ACTIONS(2291), + [aux_sym_cmd_identifier_token33] = ACTIONS(2291), + [aux_sym_cmd_identifier_token34] = ACTIONS(2291), + [aux_sym_cmd_identifier_token35] = ACTIONS(2291), + [aux_sym_cmd_identifier_token36] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [anon_sym_null] = ACTIONS(2291), + [aux_sym_cmd_identifier_token38] = ACTIONS(2291), + [aux_sym_cmd_identifier_token39] = ACTIONS(2291), + [aux_sym_cmd_identifier_token40] = ACTIONS(2291), + [anon_sym_def] = ACTIONS(2291), + [anon_sym_export_DASHenv] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_module] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_error] = ACTIONS(2291), + [anon_sym_list] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_make] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_else] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_catch] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_source] = ACTIONS(2291), + [anon_sym_source_DASHenv] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_hide] = ACTIONS(2291), + [anon_sym_hide_DASHenv] = ACTIONS(2291), + [anon_sym_overlay] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2291), + [aux_sym__val_number_decimal_token1] = ACTIONS(2291), + [aux_sym__val_number_decimal_token2] = ACTIONS(2291), + [aux_sym__val_number_decimal_token3] = ACTIONS(2291), + [aux_sym__val_number_decimal_token4] = ACTIONS(2291), + [aux_sym__val_number_token1] = ACTIONS(2291), + [aux_sym__val_number_token2] = ACTIONS(2291), + [aux_sym__val_number_token3] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2291), + [sym__entry_separator] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2291), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), [anon_sym_POUND] = ACTIONS(3), }, - [459] = { - [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [492] = { + [sym_comment] = STATE(492), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_alias] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_let_DASHenv] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [aux_sym_cmd_identifier_token1] = ACTIONS(2297), + [aux_sym_cmd_identifier_token2] = ACTIONS(2297), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [aux_sym_cmd_identifier_token6] = ACTIONS(2297), + [aux_sym_cmd_identifier_token7] = ACTIONS(2297), + [aux_sym_cmd_identifier_token8] = ACTIONS(2297), + [aux_sym_cmd_identifier_token9] = ACTIONS(2297), + [aux_sym_cmd_identifier_token10] = ACTIONS(2297), + [aux_sym_cmd_identifier_token11] = ACTIONS(2297), + [aux_sym_cmd_identifier_token12] = ACTIONS(2297), + [aux_sym_cmd_identifier_token13] = ACTIONS(2297), + [aux_sym_cmd_identifier_token14] = ACTIONS(2297), + [aux_sym_cmd_identifier_token15] = ACTIONS(2297), + [aux_sym_cmd_identifier_token16] = ACTIONS(2297), + [aux_sym_cmd_identifier_token17] = ACTIONS(2297), + [aux_sym_cmd_identifier_token18] = ACTIONS(2297), + [aux_sym_cmd_identifier_token19] = ACTIONS(2297), + [aux_sym_cmd_identifier_token20] = ACTIONS(2297), + [aux_sym_cmd_identifier_token21] = ACTIONS(2297), + [aux_sym_cmd_identifier_token22] = ACTIONS(2297), + [aux_sym_cmd_identifier_token23] = ACTIONS(2297), + [aux_sym_cmd_identifier_token24] = ACTIONS(2297), + [aux_sym_cmd_identifier_token25] = ACTIONS(2297), + [aux_sym_cmd_identifier_token26] = ACTIONS(2297), + [aux_sym_cmd_identifier_token27] = ACTIONS(2297), + [aux_sym_cmd_identifier_token28] = ACTIONS(2297), + [aux_sym_cmd_identifier_token29] = ACTIONS(2297), + [aux_sym_cmd_identifier_token30] = ACTIONS(2297), + [aux_sym_cmd_identifier_token31] = ACTIONS(2297), + [aux_sym_cmd_identifier_token32] = ACTIONS(2297), + [aux_sym_cmd_identifier_token33] = ACTIONS(2297), + [aux_sym_cmd_identifier_token34] = ACTIONS(2297), + [aux_sym_cmd_identifier_token35] = ACTIONS(2297), + [aux_sym_cmd_identifier_token36] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [aux_sym_cmd_identifier_token38] = ACTIONS(2297), + [aux_sym_cmd_identifier_token39] = ACTIONS(2297), + [aux_sym_cmd_identifier_token40] = ACTIONS(2297), + [anon_sym_def] = ACTIONS(2297), + [anon_sym_export_DASHenv] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_error] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_in] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_make] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_catch] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_source] = ACTIONS(2297), + [anon_sym_source_DASHenv] = ACTIONS(2297), + [anon_sym_register] = ACTIONS(2297), + [anon_sym_hide] = ACTIONS(2297), + [anon_sym_hide_DASHenv] = ACTIONS(2297), + [anon_sym_overlay] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2297), + [aux_sym__val_number_decimal_token1] = ACTIONS(2297), + [aux_sym__val_number_decimal_token2] = ACTIONS(2297), + [aux_sym__val_number_decimal_token3] = ACTIONS(2297), + [aux_sym__val_number_decimal_token4] = ACTIONS(2297), + [aux_sym__val_number_token1] = ACTIONS(2297), + [aux_sym__val_number_token2] = ACTIONS(2297), + [aux_sym__val_number_token3] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), + [sym__entry_separator] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2297), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2303), [anon_sym_POUND] = ACTIONS(3), }, - [460] = { - [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1755), - [anon_sym_false] = ACTIONS(1755), - [anon_sym_null] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), + [493] = { + [sym_comment] = STATE(493), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(2259), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(247), }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(2285), - [aux_sym__immediate_decimal_token2] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, - [462] = { - [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(2289), - [aux_sym__immediate_decimal_token2] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), + [495] = { + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [aux_sym_cmd_identifier_token1] = ACTIONS(2305), + [aux_sym_cmd_identifier_token2] = ACTIONS(2305), + [aux_sym_cmd_identifier_token3] = ACTIONS(2305), + [aux_sym_cmd_identifier_token4] = ACTIONS(2305), + [aux_sym_cmd_identifier_token5] = ACTIONS(2305), + [aux_sym_cmd_identifier_token6] = ACTIONS(2305), + [aux_sym_cmd_identifier_token7] = ACTIONS(2305), + [aux_sym_cmd_identifier_token8] = ACTIONS(2305), + [aux_sym_cmd_identifier_token9] = ACTIONS(2305), + [aux_sym_cmd_identifier_token10] = ACTIONS(2305), + [aux_sym_cmd_identifier_token11] = ACTIONS(2305), + [aux_sym_cmd_identifier_token12] = ACTIONS(2305), + [aux_sym_cmd_identifier_token13] = ACTIONS(2305), + [aux_sym_cmd_identifier_token14] = ACTIONS(2305), + [aux_sym_cmd_identifier_token15] = ACTIONS(2305), + [aux_sym_cmd_identifier_token16] = ACTIONS(2305), + [aux_sym_cmd_identifier_token17] = ACTIONS(2305), + [aux_sym_cmd_identifier_token18] = ACTIONS(2305), + [aux_sym_cmd_identifier_token19] = ACTIONS(2305), + [aux_sym_cmd_identifier_token20] = ACTIONS(2305), + [aux_sym_cmd_identifier_token21] = ACTIONS(2305), + [aux_sym_cmd_identifier_token22] = ACTIONS(2305), + [aux_sym_cmd_identifier_token23] = ACTIONS(2305), + [aux_sym_cmd_identifier_token24] = ACTIONS(2305), + [aux_sym_cmd_identifier_token25] = ACTIONS(2305), + [aux_sym_cmd_identifier_token26] = ACTIONS(2305), + [aux_sym_cmd_identifier_token27] = ACTIONS(2305), + [aux_sym_cmd_identifier_token28] = ACTIONS(2305), + [aux_sym_cmd_identifier_token29] = ACTIONS(2305), + [aux_sym_cmd_identifier_token30] = ACTIONS(2305), + [aux_sym_cmd_identifier_token31] = ACTIONS(2305), + [aux_sym_cmd_identifier_token32] = ACTIONS(2305), + [aux_sym_cmd_identifier_token33] = ACTIONS(2305), + [aux_sym_cmd_identifier_token34] = ACTIONS(2305), + [aux_sym_cmd_identifier_token35] = ACTIONS(2305), + [aux_sym_cmd_identifier_token36] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2305), + [aux_sym_cmd_identifier_token40] = ACTIONS(2305), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_in] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_make] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_catch] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2305), + [aux_sym__val_number_decimal_token4] = ACTIONS(2305), + [aux_sym__val_number_token1] = ACTIONS(2305), + [aux_sym__val_number_token2] = ACTIONS(2305), + [aux_sym__val_number_token3] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), + [sym__entry_separator] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2305), [anon_sym_POUND] = ACTIONS(3), }, - [463] = { - [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1993), + [496] = { + [sym_comment] = STATE(496), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_alias] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_let_DASHenv] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [aux_sym_cmd_identifier_token1] = ACTIONS(2293), - [aux_sym_cmd_identifier_token2] = ACTIONS(2293), - [aux_sym_cmd_identifier_token3] = ACTIONS(2293), - [aux_sym_cmd_identifier_token4] = ACTIONS(2293), - [aux_sym_cmd_identifier_token5] = ACTIONS(2293), - [aux_sym_cmd_identifier_token6] = ACTIONS(2293), - [aux_sym_cmd_identifier_token7] = ACTIONS(2293), - [aux_sym_cmd_identifier_token8] = ACTIONS(2293), - [aux_sym_cmd_identifier_token9] = ACTIONS(2293), - [aux_sym_cmd_identifier_token10] = ACTIONS(2293), - [aux_sym_cmd_identifier_token11] = ACTIONS(2293), - [aux_sym_cmd_identifier_token12] = ACTIONS(2293), - [aux_sym_cmd_identifier_token13] = ACTIONS(2293), - [aux_sym_cmd_identifier_token14] = ACTIONS(2293), - [aux_sym_cmd_identifier_token15] = ACTIONS(2293), - [aux_sym_cmd_identifier_token16] = ACTIONS(2293), - [aux_sym_cmd_identifier_token17] = ACTIONS(2293), - [aux_sym_cmd_identifier_token18] = ACTIONS(2293), - [aux_sym_cmd_identifier_token19] = ACTIONS(2293), - [aux_sym_cmd_identifier_token20] = ACTIONS(2293), - [aux_sym_cmd_identifier_token21] = ACTIONS(2293), - [aux_sym_cmd_identifier_token22] = ACTIONS(2293), - [aux_sym_cmd_identifier_token23] = ACTIONS(2293), - [aux_sym_cmd_identifier_token24] = ACTIONS(2293), - [aux_sym_cmd_identifier_token25] = ACTIONS(2293), - [aux_sym_cmd_identifier_token26] = ACTIONS(2293), - [aux_sym_cmd_identifier_token27] = ACTIONS(2293), - [aux_sym_cmd_identifier_token28] = ACTIONS(2293), - [aux_sym_cmd_identifier_token29] = ACTIONS(2293), - [aux_sym_cmd_identifier_token30] = ACTIONS(2293), - [aux_sym_cmd_identifier_token31] = ACTIONS(2293), - [aux_sym_cmd_identifier_token32] = ACTIONS(2293), - [aux_sym_cmd_identifier_token33] = ACTIONS(2293), - [aux_sym_cmd_identifier_token34] = ACTIONS(2293), - [aux_sym_cmd_identifier_token35] = ACTIONS(2293), - [aux_sym_cmd_identifier_token36] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [aux_sym_cmd_identifier_token38] = ACTIONS(2293), - [aux_sym_cmd_identifier_token39] = ACTIONS(2293), - [aux_sym_cmd_identifier_token40] = ACTIONS(2293), - [anon_sym_def] = ACTIONS(2293), - [anon_sym_export_DASHenv] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_module] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_error] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_loop] = ACTIONS(2293), - [anon_sym_make] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_catch] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_source] = ACTIONS(2293), - [anon_sym_source_DASHenv] = ACTIONS(2293), - [anon_sym_register] = ACTIONS(2293), - [anon_sym_hide] = ACTIONS(2293), - [anon_sym_hide_DASHenv] = ACTIONS(2293), - [anon_sym_overlay] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), - [aux_sym__val_number_decimal_token1] = ACTIONS(2293), - [aux_sym__val_number_decimal_token2] = ACTIONS(2293), - [aux_sym__val_number_decimal_token3] = ACTIONS(2293), - [aux_sym__val_number_decimal_token4] = ACTIONS(2293), - [aux_sym__val_number_token1] = ACTIONS(2293), - [aux_sym__val_number_token2] = ACTIONS(2293), - [aux_sym__val_number_token3] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym__str_single_quotes] = ACTIONS(2293), - [sym__str_back_ticks] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2293), - [sym__entry_separator] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2293), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - }, - [465] = { - [sym_comment] = STATE(465), + [497] = { + [sym_comment] = STATE(497), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1034), [anon_sym_let] = ACTIONS(1034), @@ -126471,7 +131361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1034), [anon_sym_new] = ACTIONS(1034), [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(2301), + [anon_sym_QMARK2] = ACTIONS(1036), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), [anon_sym_DOT] = ACTIONS(1034), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), @@ -126489,210 +131379,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [466] = { - [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(2303), - [anon_sym_alias] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_let_DASHenv] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [aux_sym_cmd_identifier_token1] = ACTIONS(2303), - [aux_sym_cmd_identifier_token2] = ACTIONS(2303), - [aux_sym_cmd_identifier_token3] = ACTIONS(2303), - [aux_sym_cmd_identifier_token4] = ACTIONS(2303), - [aux_sym_cmd_identifier_token5] = ACTIONS(2303), - [aux_sym_cmd_identifier_token6] = ACTIONS(2303), - [aux_sym_cmd_identifier_token7] = ACTIONS(2303), - [aux_sym_cmd_identifier_token8] = ACTIONS(2303), - [aux_sym_cmd_identifier_token9] = ACTIONS(2303), - [aux_sym_cmd_identifier_token10] = ACTIONS(2303), - [aux_sym_cmd_identifier_token11] = ACTIONS(2303), - [aux_sym_cmd_identifier_token12] = ACTIONS(2303), - [aux_sym_cmd_identifier_token13] = ACTIONS(2303), - [aux_sym_cmd_identifier_token14] = ACTIONS(2303), - [aux_sym_cmd_identifier_token15] = ACTIONS(2303), - [aux_sym_cmd_identifier_token16] = ACTIONS(2303), - [aux_sym_cmd_identifier_token17] = ACTIONS(2303), - [aux_sym_cmd_identifier_token18] = ACTIONS(2303), - [aux_sym_cmd_identifier_token19] = ACTIONS(2303), - [aux_sym_cmd_identifier_token20] = ACTIONS(2303), - [aux_sym_cmd_identifier_token21] = ACTIONS(2303), - [aux_sym_cmd_identifier_token22] = ACTIONS(2303), - [aux_sym_cmd_identifier_token23] = ACTIONS(2303), - [aux_sym_cmd_identifier_token24] = ACTIONS(2303), - [aux_sym_cmd_identifier_token25] = ACTIONS(2303), - [aux_sym_cmd_identifier_token26] = ACTIONS(2303), - [aux_sym_cmd_identifier_token27] = ACTIONS(2303), - [aux_sym_cmd_identifier_token28] = ACTIONS(2303), - [aux_sym_cmd_identifier_token29] = ACTIONS(2303), - [aux_sym_cmd_identifier_token30] = ACTIONS(2303), - [aux_sym_cmd_identifier_token31] = ACTIONS(2303), - [aux_sym_cmd_identifier_token32] = ACTIONS(2303), - [aux_sym_cmd_identifier_token33] = ACTIONS(2303), - [aux_sym_cmd_identifier_token34] = ACTIONS(2303), - [aux_sym_cmd_identifier_token35] = ACTIONS(2303), - [aux_sym_cmd_identifier_token36] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [anon_sym_null] = ACTIONS(2303), - [aux_sym_cmd_identifier_token38] = ACTIONS(2303), - [aux_sym_cmd_identifier_token39] = ACTIONS(2303), - [aux_sym_cmd_identifier_token40] = ACTIONS(2303), - [anon_sym_def] = ACTIONS(2303), - [anon_sym_export_DASHenv] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_error] = ACTIONS(2303), - [anon_sym_list] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_make] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_do] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_catch] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_source] = ACTIONS(2303), - [anon_sym_source_DASHenv] = ACTIONS(2303), - [anon_sym_register] = ACTIONS(2303), - [anon_sym_hide] = ACTIONS(2303), - [anon_sym_hide_DASHenv] = ACTIONS(2303), - [anon_sym_overlay] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2303), - [aux_sym__val_number_decimal_token3] = ACTIONS(2303), - [aux_sym__val_number_decimal_token4] = ACTIONS(2303), - [aux_sym__val_number_token1] = ACTIONS(2303), - [aux_sym__val_number_token2] = ACTIONS(2303), - [aux_sym__val_number_token3] = ACTIONS(2303), - [anon_sym_LBRACK2] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2303), - [sym__str_single_quotes] = ACTIONS(2303), - [sym__str_back_ticks] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), - [sym__entry_separator] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(3), + [498] = { + [sym_comment] = STATE(498), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, - [467] = { - [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1064), - [anon_sym_alias] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_let_DASHenv] = ACTIONS(1064), - [anon_sym_mut] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [aux_sym_cmd_identifier_token1] = ACTIONS(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(1064), - [aux_sym_cmd_identifier_token3] = ACTIONS(1064), - [aux_sym_cmd_identifier_token4] = ACTIONS(1064), - [aux_sym_cmd_identifier_token5] = ACTIONS(1064), - [aux_sym_cmd_identifier_token6] = ACTIONS(1064), - [aux_sym_cmd_identifier_token7] = ACTIONS(1064), - [aux_sym_cmd_identifier_token8] = ACTIONS(1064), - [aux_sym_cmd_identifier_token9] = ACTIONS(1064), - [aux_sym_cmd_identifier_token10] = ACTIONS(1064), - [aux_sym_cmd_identifier_token11] = ACTIONS(1064), - [aux_sym_cmd_identifier_token12] = ACTIONS(1064), - [aux_sym_cmd_identifier_token13] = ACTIONS(1064), - [aux_sym_cmd_identifier_token14] = ACTIONS(1064), - [aux_sym_cmd_identifier_token15] = ACTIONS(1064), - [aux_sym_cmd_identifier_token16] = ACTIONS(1064), - [aux_sym_cmd_identifier_token17] = ACTIONS(1064), - [aux_sym_cmd_identifier_token18] = ACTIONS(1064), - [aux_sym_cmd_identifier_token19] = ACTIONS(1064), - [aux_sym_cmd_identifier_token20] = ACTIONS(1064), - [aux_sym_cmd_identifier_token21] = ACTIONS(1064), - [aux_sym_cmd_identifier_token22] = ACTIONS(1064), - [aux_sym_cmd_identifier_token23] = ACTIONS(1064), - [aux_sym_cmd_identifier_token24] = ACTIONS(1064), - [aux_sym_cmd_identifier_token25] = ACTIONS(1064), - [aux_sym_cmd_identifier_token26] = ACTIONS(1064), - [aux_sym_cmd_identifier_token27] = ACTIONS(1064), - [aux_sym_cmd_identifier_token28] = ACTIONS(1064), - [aux_sym_cmd_identifier_token29] = ACTIONS(1064), - [aux_sym_cmd_identifier_token30] = ACTIONS(1064), - [aux_sym_cmd_identifier_token31] = ACTIONS(1064), - [aux_sym_cmd_identifier_token32] = ACTIONS(1064), - [aux_sym_cmd_identifier_token33] = ACTIONS(1064), - [aux_sym_cmd_identifier_token34] = ACTIONS(1064), - [aux_sym_cmd_identifier_token35] = ACTIONS(1064), - [aux_sym_cmd_identifier_token36] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1066), - [aux_sym_cmd_identifier_token38] = ACTIONS(1064), - [aux_sym_cmd_identifier_token39] = ACTIONS(1066), - [aux_sym_cmd_identifier_token40] = ACTIONS(1066), - [anon_sym_def] = ACTIONS(1064), - [anon_sym_export_DASHenv] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym_module] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_error] = ACTIONS(1064), - [anon_sym_list] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_loop] = ACTIONS(1064), - [anon_sym_make] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_catch] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_source] = ACTIONS(1064), - [anon_sym_source_DASHenv] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_hide] = ACTIONS(1064), - [anon_sym_hide_DASHenv] = ACTIONS(1064), - [anon_sym_overlay] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1066), - [aux_sym__val_number_token1] = ACTIONS(1066), - [aux_sym__val_number_token2] = ACTIONS(1066), - [aux_sym__val_number_token3] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym__str_single_quotes] = ACTIONS(1066), - [sym__str_back_ticks] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), - [aux_sym_record_entry_token1] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1064), + [499] = { + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(247), }, - [468] = { - [sym_comment] = STATE(468), + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_let_DASHenv] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [aux_sym_cmd_identifier_token1] = ACTIONS(2229), + [aux_sym_cmd_identifier_token2] = ACTIONS(2229), + [aux_sym_cmd_identifier_token3] = ACTIONS(2229), + [aux_sym_cmd_identifier_token4] = ACTIONS(2229), + [aux_sym_cmd_identifier_token5] = ACTIONS(2229), + [aux_sym_cmd_identifier_token6] = ACTIONS(2229), + [aux_sym_cmd_identifier_token7] = ACTIONS(2229), + [aux_sym_cmd_identifier_token8] = ACTIONS(2229), + [aux_sym_cmd_identifier_token9] = ACTIONS(2229), + [aux_sym_cmd_identifier_token10] = ACTIONS(2229), + [aux_sym_cmd_identifier_token11] = ACTIONS(2229), + [aux_sym_cmd_identifier_token12] = ACTIONS(2229), + [aux_sym_cmd_identifier_token13] = ACTIONS(2229), + [aux_sym_cmd_identifier_token14] = ACTIONS(2229), + [aux_sym_cmd_identifier_token15] = ACTIONS(2229), + [aux_sym_cmd_identifier_token16] = ACTIONS(2229), + [aux_sym_cmd_identifier_token17] = ACTIONS(2229), + [aux_sym_cmd_identifier_token18] = ACTIONS(2229), + [aux_sym_cmd_identifier_token19] = ACTIONS(2229), + [aux_sym_cmd_identifier_token20] = ACTIONS(2229), + [aux_sym_cmd_identifier_token21] = ACTIONS(2229), + [aux_sym_cmd_identifier_token22] = ACTIONS(2229), + [aux_sym_cmd_identifier_token23] = ACTIONS(2229), + [aux_sym_cmd_identifier_token24] = ACTIONS(2229), + [aux_sym_cmd_identifier_token25] = ACTIONS(2229), + [aux_sym_cmd_identifier_token26] = ACTIONS(2229), + [aux_sym_cmd_identifier_token27] = ACTIONS(2229), + [aux_sym_cmd_identifier_token28] = ACTIONS(2229), + [aux_sym_cmd_identifier_token29] = ACTIONS(2229), + [aux_sym_cmd_identifier_token30] = ACTIONS(2229), + [aux_sym_cmd_identifier_token31] = ACTIONS(2229), + [aux_sym_cmd_identifier_token32] = ACTIONS(2229), + [aux_sym_cmd_identifier_token33] = ACTIONS(2229), + [aux_sym_cmd_identifier_token34] = ACTIONS(2229), + [aux_sym_cmd_identifier_token35] = ACTIONS(2229), + [aux_sym_cmd_identifier_token36] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [aux_sym_cmd_identifier_token38] = ACTIONS(2229), + [aux_sym_cmd_identifier_token39] = ACTIONS(2229), + [aux_sym_cmd_identifier_token40] = ACTIONS(2229), + [anon_sym_def] = ACTIONS(2229), + [anon_sym_export_DASHenv] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_error] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_make] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_catch] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_source] = ACTIONS(2229), + [anon_sym_source_DASHenv] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_hide] = ACTIONS(2229), + [anon_sym_hide_DASHenv] = ACTIONS(2229), + [anon_sym_overlay] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_decimal_token4] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2233), + [sym__str_single_quotes] = ACTIONS(2233), + [sym__str_back_ticks] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2229), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), + }, + [501] = { + [sym_comment] = STATE(501), [anon_sym_export] = ACTIONS(2309), [anon_sym_alias] = ACTIONS(2309), [anon_sym_let] = ACTIONS(2309), @@ -126741,161 +131732,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(2309), [aux_sym_cmd_identifier_token39] = ACTIONS(2309), [aux_sym_cmd_identifier_token40] = ACTIONS(2309), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_make] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_catch] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2309), - [aux_sym__val_number_decimal_token2] = ACTIONS(2309), - [aux_sym__val_number_decimal_token3] = ACTIONS(2309), - [aux_sym__val_number_decimal_token4] = ACTIONS(2309), - [aux_sym__val_number_token1] = ACTIONS(2309), - [aux_sym__val_number_token2] = ACTIONS(2309), - [aux_sym__val_number_token3] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [sym__str_single_quotes] = ACTIONS(2309), - [sym__str_back_ticks] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), - [sym__entry_separator] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [469] = { - [sym_comment] = STATE(469), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2309), + [anon_sym_export_DASHenv] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_module] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_RBRACK] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_error] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_make] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_catch] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_source] = ACTIONS(2309), + [anon_sym_source_DASHenv] = ACTIONS(2309), + [anon_sym_register] = ACTIONS(2309), + [anon_sym_hide] = ACTIONS(2309), + [anon_sym_hide_DASHenv] = ACTIONS(2309), + [anon_sym_overlay] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2309), + [aux_sym__val_number_decimal_token2] = ACTIONS(2309), + [aux_sym__val_number_decimal_token3] = ACTIONS(2309), + [aux_sym__val_number_decimal_token4] = ACTIONS(2309), + [aux_sym__val_number_token1] = ACTIONS(2309), + [aux_sym__val_number_token2] = ACTIONS(2309), + [aux_sym__val_number_token3] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym__str_single_quotes] = ACTIONS(2309), + [sym__str_back_ticks] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), + [sym__entry_separator] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2309), [anon_sym_POUND] = ACTIONS(3), }, - [470] = { - [sym_comment] = STATE(470), - [aux_sym__multiple_types_repeat1] = STATE(504), + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_alias] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_let_DASHenv] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [aux_sym_cmd_identifier_token1] = ACTIONS(2237), + [aux_sym_cmd_identifier_token2] = ACTIONS(2237), + [aux_sym_cmd_identifier_token3] = ACTIONS(2237), + [aux_sym_cmd_identifier_token4] = ACTIONS(2237), + [aux_sym_cmd_identifier_token5] = ACTIONS(2237), + [aux_sym_cmd_identifier_token6] = ACTIONS(2237), + [aux_sym_cmd_identifier_token7] = ACTIONS(2237), + [aux_sym_cmd_identifier_token8] = ACTIONS(2237), + [aux_sym_cmd_identifier_token9] = ACTIONS(2237), + [aux_sym_cmd_identifier_token10] = ACTIONS(2237), + [aux_sym_cmd_identifier_token11] = ACTIONS(2237), + [aux_sym_cmd_identifier_token12] = ACTIONS(2237), + [aux_sym_cmd_identifier_token13] = ACTIONS(2237), + [aux_sym_cmd_identifier_token14] = ACTIONS(2237), + [aux_sym_cmd_identifier_token15] = ACTIONS(2237), + [aux_sym_cmd_identifier_token16] = ACTIONS(2237), + [aux_sym_cmd_identifier_token17] = ACTIONS(2237), + [aux_sym_cmd_identifier_token18] = ACTIONS(2237), + [aux_sym_cmd_identifier_token19] = ACTIONS(2237), + [aux_sym_cmd_identifier_token20] = ACTIONS(2237), + [aux_sym_cmd_identifier_token21] = ACTIONS(2237), + [aux_sym_cmd_identifier_token22] = ACTIONS(2237), + [aux_sym_cmd_identifier_token23] = ACTIONS(2237), + [aux_sym_cmd_identifier_token24] = ACTIONS(2237), + [aux_sym_cmd_identifier_token25] = ACTIONS(2237), + [aux_sym_cmd_identifier_token26] = ACTIONS(2237), + [aux_sym_cmd_identifier_token27] = ACTIONS(2237), + [aux_sym_cmd_identifier_token28] = ACTIONS(2237), + [aux_sym_cmd_identifier_token29] = ACTIONS(2237), + [aux_sym_cmd_identifier_token30] = ACTIONS(2237), + [aux_sym_cmd_identifier_token31] = ACTIONS(2237), + [aux_sym_cmd_identifier_token32] = ACTIONS(2237), + [aux_sym_cmd_identifier_token33] = ACTIONS(2237), + [aux_sym_cmd_identifier_token34] = ACTIONS(2237), + [aux_sym_cmd_identifier_token35] = ACTIONS(2237), + [aux_sym_cmd_identifier_token36] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [aux_sym_cmd_identifier_token38] = ACTIONS(2237), + [aux_sym_cmd_identifier_token39] = ACTIONS(2237), + [aux_sym_cmd_identifier_token40] = ACTIONS(2237), + [anon_sym_def] = ACTIONS(2237), + [anon_sym_export_DASHenv] = ACTIONS(2237), + [anon_sym_extern] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2237), + [anon_sym_error] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_make] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_catch] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_source] = ACTIONS(2237), + [anon_sym_source_DASHenv] = ACTIONS(2237), + [anon_sym_register] = ACTIONS(2237), + [anon_sym_hide] = ACTIONS(2237), + [anon_sym_hide_DASHenv] = ACTIONS(2237), + [anon_sym_overlay] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2237), + [aux_sym__val_number_decimal_token1] = ACTIONS(2237), + [aux_sym__val_number_decimal_token2] = ACTIONS(2237), + [aux_sym__val_number_decimal_token3] = ACTIONS(2237), + [aux_sym__val_number_decimal_token4] = ACTIONS(2237), + [aux_sym__val_number_token1] = ACTIONS(2237), + [aux_sym__val_number_token2] = ACTIONS(2237), + [aux_sym__val_number_token3] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2241), + [sym__str_single_quotes] = ACTIONS(2241), + [sym__str_back_ticks] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2237), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(3), + }, + [503] = { + [sym_comment] = STATE(503), [anon_sym_export] = ACTIONS(2313), [anon_sym_alias] = ACTIONS(2313), [anon_sym_let] = ACTIONS(2313), @@ -126965,7 +131955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2313), [anon_sym_else] = ACTIONS(2313), [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2313), [anon_sym_try] = ACTIONS(2313), [anon_sym_catch] = ACTIONS(2313), [anon_sym_return] = ACTIONS(2313), @@ -126986,6 +131976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2313), [aux_sym__val_number_token2] = ACTIONS(2313), [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_LBRACK2] = ACTIONS(2315), [anon_sym_DQUOTE] = ACTIONS(2313), [sym__str_single_quotes] = ACTIONS(2313), [sym__str_back_ticks] = ACTIONS(2313), @@ -126994,2028 +131985,1524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_POUND] = ACTIONS(3), }, - [471] = { - [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_alias] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_let_DASHenv] = ACTIONS(2321), - [anon_sym_mut] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [aux_sym_cmd_identifier_token1] = ACTIONS(2321), - [aux_sym_cmd_identifier_token2] = ACTIONS(2321), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [aux_sym_cmd_identifier_token6] = ACTIONS(2321), - [aux_sym_cmd_identifier_token7] = ACTIONS(2321), - [aux_sym_cmd_identifier_token8] = ACTIONS(2321), - [aux_sym_cmd_identifier_token9] = ACTIONS(2321), - [aux_sym_cmd_identifier_token10] = ACTIONS(2321), - [aux_sym_cmd_identifier_token11] = ACTIONS(2321), - [aux_sym_cmd_identifier_token12] = ACTIONS(2321), - [aux_sym_cmd_identifier_token13] = ACTIONS(2321), - [aux_sym_cmd_identifier_token14] = ACTIONS(2321), - [aux_sym_cmd_identifier_token15] = ACTIONS(2321), - [aux_sym_cmd_identifier_token16] = ACTIONS(2321), - [aux_sym_cmd_identifier_token17] = ACTIONS(2321), - [aux_sym_cmd_identifier_token18] = ACTIONS(2321), - [aux_sym_cmd_identifier_token19] = ACTIONS(2321), - [aux_sym_cmd_identifier_token20] = ACTIONS(2321), - [aux_sym_cmd_identifier_token21] = ACTIONS(2321), - [aux_sym_cmd_identifier_token22] = ACTIONS(2321), - [aux_sym_cmd_identifier_token23] = ACTIONS(2321), - [aux_sym_cmd_identifier_token24] = ACTIONS(2321), - [aux_sym_cmd_identifier_token25] = ACTIONS(2321), - [aux_sym_cmd_identifier_token26] = ACTIONS(2321), - [aux_sym_cmd_identifier_token27] = ACTIONS(2321), - [aux_sym_cmd_identifier_token28] = ACTIONS(2321), - [aux_sym_cmd_identifier_token29] = ACTIONS(2321), - [aux_sym_cmd_identifier_token30] = ACTIONS(2321), - [aux_sym_cmd_identifier_token31] = ACTIONS(2321), - [aux_sym_cmd_identifier_token32] = ACTIONS(2321), - [aux_sym_cmd_identifier_token33] = ACTIONS(2321), - [aux_sym_cmd_identifier_token34] = ACTIONS(2321), - [aux_sym_cmd_identifier_token35] = ACTIONS(2321), - [aux_sym_cmd_identifier_token36] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [aux_sym_cmd_identifier_token38] = ACTIONS(2321), - [aux_sym_cmd_identifier_token39] = ACTIONS(2321), - [aux_sym_cmd_identifier_token40] = ACTIONS(2321), - [anon_sym_def] = ACTIONS(2321), - [anon_sym_export_DASHenv] = ACTIONS(2321), - [anon_sym_extern] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_RBRACK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_error] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_in] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_make] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_catch] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_source] = ACTIONS(2321), - [anon_sym_source_DASHenv] = ACTIONS(2321), - [anon_sym_register] = ACTIONS(2321), - [anon_sym_hide] = ACTIONS(2321), - [anon_sym_hide_DASHenv] = ACTIONS(2321), - [anon_sym_overlay] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_as] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2321), - [aux_sym__val_number_decimal_token1] = ACTIONS(2321), - [aux_sym__val_number_decimal_token2] = ACTIONS(2321), - [aux_sym__val_number_decimal_token3] = ACTIONS(2321), - [aux_sym__val_number_decimal_token4] = ACTIONS(2321), - [aux_sym__val_number_token1] = ACTIONS(2321), - [aux_sym__val_number_token2] = ACTIONS(2321), - [aux_sym__val_number_token3] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym__str_single_quotes] = ACTIONS(2321), - [sym__str_back_ticks] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2321), - [sym__entry_separator] = ACTIONS(2323), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(3), - }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1076), - [anon_sym_alias] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_let_DASHenv] = ACTIONS(1076), - [anon_sym_mut] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1076), - [aux_sym_cmd_identifier_token2] = ACTIONS(1076), - [aux_sym_cmd_identifier_token3] = ACTIONS(1076), - [aux_sym_cmd_identifier_token4] = ACTIONS(1076), - [aux_sym_cmd_identifier_token5] = ACTIONS(1076), - [aux_sym_cmd_identifier_token6] = ACTIONS(1076), - [aux_sym_cmd_identifier_token7] = ACTIONS(1076), - [aux_sym_cmd_identifier_token8] = ACTIONS(1076), - [aux_sym_cmd_identifier_token9] = ACTIONS(1076), - [aux_sym_cmd_identifier_token10] = ACTIONS(1076), - [aux_sym_cmd_identifier_token11] = ACTIONS(1076), - [aux_sym_cmd_identifier_token12] = ACTIONS(1076), - [aux_sym_cmd_identifier_token13] = ACTIONS(1076), - [aux_sym_cmd_identifier_token14] = ACTIONS(1076), - [aux_sym_cmd_identifier_token15] = ACTIONS(1076), - [aux_sym_cmd_identifier_token16] = ACTIONS(1076), - [aux_sym_cmd_identifier_token17] = ACTIONS(1076), - [aux_sym_cmd_identifier_token18] = ACTIONS(1076), - [aux_sym_cmd_identifier_token19] = ACTIONS(1076), - [aux_sym_cmd_identifier_token20] = ACTIONS(1076), - [aux_sym_cmd_identifier_token21] = ACTIONS(1076), - [aux_sym_cmd_identifier_token22] = ACTIONS(1076), - [aux_sym_cmd_identifier_token23] = ACTIONS(1076), - [aux_sym_cmd_identifier_token24] = ACTIONS(1076), - [aux_sym_cmd_identifier_token25] = ACTIONS(1076), - [aux_sym_cmd_identifier_token26] = ACTIONS(1076), - [aux_sym_cmd_identifier_token27] = ACTIONS(1076), - [aux_sym_cmd_identifier_token28] = ACTIONS(1076), - [aux_sym_cmd_identifier_token29] = ACTIONS(1076), - [aux_sym_cmd_identifier_token30] = ACTIONS(1076), - [aux_sym_cmd_identifier_token31] = ACTIONS(1076), - [aux_sym_cmd_identifier_token32] = ACTIONS(1076), - [aux_sym_cmd_identifier_token33] = ACTIONS(1076), - [aux_sym_cmd_identifier_token34] = ACTIONS(1076), - [aux_sym_cmd_identifier_token35] = ACTIONS(1076), - [aux_sym_cmd_identifier_token36] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1076), - [anon_sym_export_DASHenv] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1076), - [anon_sym_list] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_loop] = ACTIONS(1076), - [anon_sym_make] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_catch] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_source] = ACTIONS(1076), - [anon_sym_source_DASHenv] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_hide] = ACTIONS(1076), - [anon_sym_hide_DASHenv] = ACTIONS(1076), - [anon_sym_overlay] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token3] = ACTIONS(1076), - [aux_sym__val_number_decimal_token4] = ACTIONS(1076), - [aux_sym__val_number_token1] = ACTIONS(1076), - [aux_sym__val_number_token2] = ACTIONS(1076), - [aux_sym__val_number_token3] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym__str_single_quotes] = ACTIONS(1078), - [sym__str_back_ticks] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1076), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2241), + [504] = { + [sym_comment] = STATE(504), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_alias] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_DASHenv] = ACTIONS(2319), + [anon_sym_mut] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [aux_sym_cmd_identifier_token1] = ACTIONS(2319), + [aux_sym_cmd_identifier_token2] = ACTIONS(2319), + [aux_sym_cmd_identifier_token3] = ACTIONS(2319), + [aux_sym_cmd_identifier_token4] = ACTIONS(2319), + [aux_sym_cmd_identifier_token5] = ACTIONS(2319), + [aux_sym_cmd_identifier_token6] = ACTIONS(2319), + [aux_sym_cmd_identifier_token7] = ACTIONS(2319), + [aux_sym_cmd_identifier_token8] = ACTIONS(2319), + [aux_sym_cmd_identifier_token9] = ACTIONS(2319), + [aux_sym_cmd_identifier_token10] = ACTIONS(2319), + [aux_sym_cmd_identifier_token11] = ACTIONS(2319), + [aux_sym_cmd_identifier_token12] = ACTIONS(2319), + [aux_sym_cmd_identifier_token13] = ACTIONS(2319), + [aux_sym_cmd_identifier_token14] = ACTIONS(2319), + [aux_sym_cmd_identifier_token15] = ACTIONS(2319), + [aux_sym_cmd_identifier_token16] = ACTIONS(2319), + [aux_sym_cmd_identifier_token17] = ACTIONS(2319), + [aux_sym_cmd_identifier_token18] = ACTIONS(2319), + [aux_sym_cmd_identifier_token19] = ACTIONS(2319), + [aux_sym_cmd_identifier_token20] = ACTIONS(2319), + [aux_sym_cmd_identifier_token21] = ACTIONS(2319), + [aux_sym_cmd_identifier_token22] = ACTIONS(2319), + [aux_sym_cmd_identifier_token23] = ACTIONS(2319), + [aux_sym_cmd_identifier_token24] = ACTIONS(2319), + [aux_sym_cmd_identifier_token25] = ACTIONS(2319), + [aux_sym_cmd_identifier_token26] = ACTIONS(2319), + [aux_sym_cmd_identifier_token27] = ACTIONS(2319), + [aux_sym_cmd_identifier_token28] = ACTIONS(2319), + [aux_sym_cmd_identifier_token29] = ACTIONS(2319), + [aux_sym_cmd_identifier_token30] = ACTIONS(2319), + [aux_sym_cmd_identifier_token31] = ACTIONS(2319), + [aux_sym_cmd_identifier_token32] = ACTIONS(2319), + [aux_sym_cmd_identifier_token33] = ACTIONS(2319), + [aux_sym_cmd_identifier_token34] = ACTIONS(2319), + [aux_sym_cmd_identifier_token35] = ACTIONS(2319), + [aux_sym_cmd_identifier_token36] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [anon_sym_null] = ACTIONS(2319), + [aux_sym_cmd_identifier_token38] = ACTIONS(2319), + [aux_sym_cmd_identifier_token39] = ACTIONS(2319), + [aux_sym_cmd_identifier_token40] = ACTIONS(2319), + [anon_sym_def] = ACTIONS(2319), + [anon_sym_export_DASHenv] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_error] = ACTIONS(2319), + [anon_sym_list] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_make] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_else] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_catch] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_source] = ACTIONS(2319), + [anon_sym_source_DASHenv] = ACTIONS(2319), + [anon_sym_register] = ACTIONS(2319), + [anon_sym_hide] = ACTIONS(2319), + [anon_sym_hide_DASHenv] = ACTIONS(2319), + [anon_sym_overlay] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2319), + [aux_sym__val_number_decimal_token2] = ACTIONS(2319), + [aux_sym__val_number_decimal_token3] = ACTIONS(2319), + [aux_sym__val_number_decimal_token4] = ACTIONS(2319), + [aux_sym__val_number_token1] = ACTIONS(2319), + [aux_sym__val_number_token2] = ACTIONS(2319), + [aux_sym__val_number_token3] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym__str_single_quotes] = ACTIONS(2319), + [sym__str_back_ticks] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2319), + [sym__entry_separator] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2319), [anon_sym_POUND] = ACTIONS(3), }, - [473] = { - [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), - }, - [474] = { - [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_list] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1786), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(247), - }, - [475] = { - [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [476] = { - [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [477] = { - [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), + [505] = { + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(2324), + [aux_sym__immediate_decimal_token2] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [478] = { - [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_alias] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_let_DASHenv] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [aux_sym_cmd_identifier_token1] = ACTIONS(2293), - [aux_sym_cmd_identifier_token2] = ACTIONS(2293), - [aux_sym_cmd_identifier_token3] = ACTIONS(2293), - [aux_sym_cmd_identifier_token4] = ACTIONS(2293), - [aux_sym_cmd_identifier_token5] = ACTIONS(2293), - [aux_sym_cmd_identifier_token6] = ACTIONS(2293), - [aux_sym_cmd_identifier_token7] = ACTIONS(2293), - [aux_sym_cmd_identifier_token8] = ACTIONS(2293), - [aux_sym_cmd_identifier_token9] = ACTIONS(2293), - [aux_sym_cmd_identifier_token10] = ACTIONS(2293), - [aux_sym_cmd_identifier_token11] = ACTIONS(2293), - [aux_sym_cmd_identifier_token12] = ACTIONS(2293), - [aux_sym_cmd_identifier_token13] = ACTIONS(2293), - [aux_sym_cmd_identifier_token14] = ACTIONS(2293), - [aux_sym_cmd_identifier_token15] = ACTIONS(2293), - [aux_sym_cmd_identifier_token16] = ACTIONS(2293), - [aux_sym_cmd_identifier_token17] = ACTIONS(2293), - [aux_sym_cmd_identifier_token18] = ACTIONS(2293), - [aux_sym_cmd_identifier_token19] = ACTIONS(2293), - [aux_sym_cmd_identifier_token20] = ACTIONS(2293), - [aux_sym_cmd_identifier_token21] = ACTIONS(2293), - [aux_sym_cmd_identifier_token22] = ACTIONS(2293), - [aux_sym_cmd_identifier_token23] = ACTIONS(2293), - [aux_sym_cmd_identifier_token24] = ACTIONS(2293), - [aux_sym_cmd_identifier_token25] = ACTIONS(2293), - [aux_sym_cmd_identifier_token26] = ACTIONS(2293), - [aux_sym_cmd_identifier_token27] = ACTIONS(2293), - [aux_sym_cmd_identifier_token28] = ACTIONS(2293), - [aux_sym_cmd_identifier_token29] = ACTIONS(2293), - [aux_sym_cmd_identifier_token30] = ACTIONS(2293), - [aux_sym_cmd_identifier_token31] = ACTIONS(2293), - [aux_sym_cmd_identifier_token32] = ACTIONS(2293), - [aux_sym_cmd_identifier_token33] = ACTIONS(2293), - [aux_sym_cmd_identifier_token34] = ACTIONS(2293), - [aux_sym_cmd_identifier_token35] = ACTIONS(2293), - [aux_sym_cmd_identifier_token36] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [aux_sym_cmd_identifier_token38] = ACTIONS(2293), - [aux_sym_cmd_identifier_token39] = ACTIONS(2293), - [aux_sym_cmd_identifier_token40] = ACTIONS(2293), - [anon_sym_def] = ACTIONS(2293), - [anon_sym_export_DASHenv] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_module] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_error] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_loop] = ACTIONS(2293), - [anon_sym_make] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_catch] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_source] = ACTIONS(2293), - [anon_sym_source_DASHenv] = ACTIONS(2293), - [anon_sym_register] = ACTIONS(2293), - [anon_sym_hide] = ACTIONS(2293), - [anon_sym_hide_DASHenv] = ACTIONS(2293), - [anon_sym_overlay] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), - [aux_sym__val_number_decimal_token1] = ACTIONS(2293), - [aux_sym__val_number_decimal_token2] = ACTIONS(2293), - [aux_sym__val_number_decimal_token3] = ACTIONS(2293), - [aux_sym__val_number_decimal_token4] = ACTIONS(2293), - [aux_sym__val_number_token1] = ACTIONS(2293), - [aux_sym__val_number_token2] = ACTIONS(2293), - [aux_sym__val_number_token3] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2297), - [sym__str_back_ticks] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2293), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - }, - [479] = { - [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(2243), - [anon_sym_alias] = ACTIONS(2243), - [anon_sym_let] = ACTIONS(2243), - [anon_sym_let_DASHenv] = ACTIONS(2243), - [anon_sym_mut] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [aux_sym_cmd_identifier_token1] = ACTIONS(2243), - [aux_sym_cmd_identifier_token2] = ACTIONS(2243), - [aux_sym_cmd_identifier_token3] = ACTIONS(2243), - [aux_sym_cmd_identifier_token4] = ACTIONS(2243), - [aux_sym_cmd_identifier_token5] = ACTIONS(2243), - [aux_sym_cmd_identifier_token6] = ACTIONS(2243), - [aux_sym_cmd_identifier_token7] = ACTIONS(2243), - [aux_sym_cmd_identifier_token8] = ACTIONS(2243), - [aux_sym_cmd_identifier_token9] = ACTIONS(2243), - [aux_sym_cmd_identifier_token10] = ACTIONS(2243), - [aux_sym_cmd_identifier_token11] = ACTIONS(2243), - [aux_sym_cmd_identifier_token12] = ACTIONS(2243), - [aux_sym_cmd_identifier_token13] = ACTIONS(2243), - [aux_sym_cmd_identifier_token14] = ACTIONS(2243), - [aux_sym_cmd_identifier_token15] = ACTIONS(2243), - [aux_sym_cmd_identifier_token16] = ACTIONS(2243), - [aux_sym_cmd_identifier_token17] = ACTIONS(2243), - [aux_sym_cmd_identifier_token18] = ACTIONS(2243), - [aux_sym_cmd_identifier_token19] = ACTIONS(2243), - [aux_sym_cmd_identifier_token20] = ACTIONS(2243), - [aux_sym_cmd_identifier_token21] = ACTIONS(2243), - [aux_sym_cmd_identifier_token22] = ACTIONS(2243), - [aux_sym_cmd_identifier_token23] = ACTIONS(2243), - [aux_sym_cmd_identifier_token24] = ACTIONS(2243), - [aux_sym_cmd_identifier_token25] = ACTIONS(2243), - [aux_sym_cmd_identifier_token26] = ACTIONS(2243), - [aux_sym_cmd_identifier_token27] = ACTIONS(2243), - [aux_sym_cmd_identifier_token28] = ACTIONS(2243), - [aux_sym_cmd_identifier_token29] = ACTIONS(2243), - [aux_sym_cmd_identifier_token30] = ACTIONS(2243), - [aux_sym_cmd_identifier_token31] = ACTIONS(2243), - [aux_sym_cmd_identifier_token32] = ACTIONS(2243), - [aux_sym_cmd_identifier_token33] = ACTIONS(2243), - [aux_sym_cmd_identifier_token34] = ACTIONS(2243), - [aux_sym_cmd_identifier_token35] = ACTIONS(2243), - [aux_sym_cmd_identifier_token36] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [aux_sym_cmd_identifier_token38] = ACTIONS(2243), - [aux_sym_cmd_identifier_token39] = ACTIONS(2243), - [aux_sym_cmd_identifier_token40] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2243), - [anon_sym_export_DASHenv] = ACTIONS(2243), - [anon_sym_extern] = ACTIONS(2243), - [anon_sym_module] = ACTIONS(2243), - [anon_sym_use] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_error] = ACTIONS(2243), - [anon_sym_list] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_in] = ACTIONS(2243), - [anon_sym_loop] = ACTIONS(2243), - [anon_sym_make] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [anon_sym_do] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_else] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), + [506] = { + [sym_comment] = STATE(506), + [anon_sym_export] = ACTIONS(2245), + [anon_sym_alias] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_let_DASHenv] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [aux_sym_cmd_identifier_token1] = ACTIONS(2245), + [aux_sym_cmd_identifier_token2] = ACTIONS(2245), + [aux_sym_cmd_identifier_token3] = ACTIONS(2245), + [aux_sym_cmd_identifier_token4] = ACTIONS(2245), + [aux_sym_cmd_identifier_token5] = ACTIONS(2245), + [aux_sym_cmd_identifier_token6] = ACTIONS(2245), + [aux_sym_cmd_identifier_token7] = ACTIONS(2245), + [aux_sym_cmd_identifier_token8] = ACTIONS(2245), + [aux_sym_cmd_identifier_token9] = ACTIONS(2245), + [aux_sym_cmd_identifier_token10] = ACTIONS(2245), + [aux_sym_cmd_identifier_token11] = ACTIONS(2245), + [aux_sym_cmd_identifier_token12] = ACTIONS(2245), + [aux_sym_cmd_identifier_token13] = ACTIONS(2245), + [aux_sym_cmd_identifier_token14] = ACTIONS(2245), + [aux_sym_cmd_identifier_token15] = ACTIONS(2245), + [aux_sym_cmd_identifier_token16] = ACTIONS(2245), + [aux_sym_cmd_identifier_token17] = ACTIONS(2245), + [aux_sym_cmd_identifier_token18] = ACTIONS(2245), + [aux_sym_cmd_identifier_token19] = ACTIONS(2245), + [aux_sym_cmd_identifier_token20] = ACTIONS(2245), + [aux_sym_cmd_identifier_token21] = ACTIONS(2245), + [aux_sym_cmd_identifier_token22] = ACTIONS(2245), + [aux_sym_cmd_identifier_token23] = ACTIONS(2245), + [aux_sym_cmd_identifier_token24] = ACTIONS(2245), + [aux_sym_cmd_identifier_token25] = ACTIONS(2245), + [aux_sym_cmd_identifier_token26] = ACTIONS(2245), + [aux_sym_cmd_identifier_token27] = ACTIONS(2245), + [aux_sym_cmd_identifier_token28] = ACTIONS(2245), + [aux_sym_cmd_identifier_token29] = ACTIONS(2245), + [aux_sym_cmd_identifier_token30] = ACTIONS(2245), + [aux_sym_cmd_identifier_token31] = ACTIONS(2245), + [aux_sym_cmd_identifier_token32] = ACTIONS(2245), + [aux_sym_cmd_identifier_token33] = ACTIONS(2245), + [aux_sym_cmd_identifier_token34] = ACTIONS(2245), + [aux_sym_cmd_identifier_token35] = ACTIONS(2245), + [aux_sym_cmd_identifier_token36] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [aux_sym_cmd_identifier_token38] = ACTIONS(2245), + [aux_sym_cmd_identifier_token39] = ACTIONS(2245), + [aux_sym_cmd_identifier_token40] = ACTIONS(2245), + [anon_sym_def] = ACTIONS(2245), + [anon_sym_export_DASHenv] = ACTIONS(2245), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_module] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_error] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_make] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2243), - [anon_sym_catch] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_source] = ACTIONS(2243), - [anon_sym_source_DASHenv] = ACTIONS(2243), - [anon_sym_register] = ACTIONS(2243), - [anon_sym_hide] = ACTIONS(2243), - [anon_sym_hide_DASHenv] = ACTIONS(2243), - [anon_sym_overlay] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_catch] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_source] = ACTIONS(2245), + [anon_sym_source_DASHenv] = ACTIONS(2245), + [anon_sym_register] = ACTIONS(2245), + [anon_sym_hide] = ACTIONS(2245), + [anon_sym_hide_DASHenv] = ACTIONS(2245), + [anon_sym_overlay] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_LPAREN2] = ACTIONS(2239), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2243), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2245), + [aux_sym__val_number_decimal_token1] = ACTIONS(2245), + [aux_sym__val_number_decimal_token2] = ACTIONS(2245), + [aux_sym__val_number_decimal_token3] = ACTIONS(2245), + [aux_sym__val_number_decimal_token4] = ACTIONS(2245), + [aux_sym__val_number_token1] = ACTIONS(2245), + [aux_sym__val_number_token2] = ACTIONS(2245), + [aux_sym__val_number_token3] = ACTIONS(2245), [anon_sym_DQUOTE] = ACTIONS(2247), [sym__str_single_quotes] = ACTIONS(2247), [sym__str_back_ticks] = ACTIONS(2247), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2243), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(3), - }, - [480] = { - [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_alias] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_let_DASHenv] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [aux_sym_cmd_identifier_token1] = ACTIONS(2251), - [aux_sym_cmd_identifier_token2] = ACTIONS(2251), - [aux_sym_cmd_identifier_token3] = ACTIONS(2251), - [aux_sym_cmd_identifier_token4] = ACTIONS(2251), - [aux_sym_cmd_identifier_token5] = ACTIONS(2251), - [aux_sym_cmd_identifier_token6] = ACTIONS(2251), - [aux_sym_cmd_identifier_token7] = ACTIONS(2251), - [aux_sym_cmd_identifier_token8] = ACTIONS(2251), - [aux_sym_cmd_identifier_token9] = ACTIONS(2251), - [aux_sym_cmd_identifier_token10] = ACTIONS(2251), - [aux_sym_cmd_identifier_token11] = ACTIONS(2251), - [aux_sym_cmd_identifier_token12] = ACTIONS(2251), - [aux_sym_cmd_identifier_token13] = ACTIONS(2251), - [aux_sym_cmd_identifier_token14] = ACTIONS(2251), - [aux_sym_cmd_identifier_token15] = ACTIONS(2251), - [aux_sym_cmd_identifier_token16] = ACTIONS(2251), - [aux_sym_cmd_identifier_token17] = ACTIONS(2251), - [aux_sym_cmd_identifier_token18] = ACTIONS(2251), - [aux_sym_cmd_identifier_token19] = ACTIONS(2251), - [aux_sym_cmd_identifier_token20] = ACTIONS(2251), - [aux_sym_cmd_identifier_token21] = ACTIONS(2251), - [aux_sym_cmd_identifier_token22] = ACTIONS(2251), - [aux_sym_cmd_identifier_token23] = ACTIONS(2251), - [aux_sym_cmd_identifier_token24] = ACTIONS(2251), - [aux_sym_cmd_identifier_token25] = ACTIONS(2251), - [aux_sym_cmd_identifier_token26] = ACTIONS(2251), - [aux_sym_cmd_identifier_token27] = ACTIONS(2251), - [aux_sym_cmd_identifier_token28] = ACTIONS(2251), - [aux_sym_cmd_identifier_token29] = ACTIONS(2251), - [aux_sym_cmd_identifier_token30] = ACTIONS(2251), - [aux_sym_cmd_identifier_token31] = ACTIONS(2251), - [aux_sym_cmd_identifier_token32] = ACTIONS(2251), - [aux_sym_cmd_identifier_token33] = ACTIONS(2251), - [aux_sym_cmd_identifier_token34] = ACTIONS(2251), - [aux_sym_cmd_identifier_token35] = ACTIONS(2251), - [aux_sym_cmd_identifier_token36] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(2251), - [anon_sym_false] = ACTIONS(2251), - [anon_sym_null] = ACTIONS(2251), - [aux_sym_cmd_identifier_token38] = ACTIONS(2251), - [aux_sym_cmd_identifier_token39] = ACTIONS(2251), - [aux_sym_cmd_identifier_token40] = ACTIONS(2251), - [anon_sym_def] = ACTIONS(2251), - [anon_sym_export_DASHenv] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_use] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_error] = ACTIONS(2251), - [anon_sym_list] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_loop] = ACTIONS(2251), - [anon_sym_make] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_catch] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_source] = ACTIONS(2251), - [anon_sym_source_DASHenv] = ACTIONS(2251), - [anon_sym_register] = ACTIONS(2251), - [anon_sym_hide] = ACTIONS(2251), - [anon_sym_hide_DASHenv] = ACTIONS(2251), - [anon_sym_overlay] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_LPAREN2] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2251), - [aux_sym__val_number_decimal_token1] = ACTIONS(2251), - [aux_sym__val_number_decimal_token2] = ACTIONS(2251), - [aux_sym__val_number_decimal_token3] = ACTIONS(2251), - [aux_sym__val_number_decimal_token4] = ACTIONS(2251), - [aux_sym__val_number_token1] = ACTIONS(2251), - [aux_sym__val_number_token2] = ACTIONS(2251), - [aux_sym__val_number_token3] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2251), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2245), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), [anon_sym_POUND] = ACTIONS(3), }, - [481] = { - [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_alias] = ACTIONS(1068), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_let_DASHenv] = ACTIONS(1068), - [anon_sym_mut] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [aux_sym_cmd_identifier_token1] = ACTIONS(1068), - [aux_sym_cmd_identifier_token2] = ACTIONS(1068), - [aux_sym_cmd_identifier_token3] = ACTIONS(1068), - [aux_sym_cmd_identifier_token4] = ACTIONS(1068), - [aux_sym_cmd_identifier_token5] = ACTIONS(1068), - [aux_sym_cmd_identifier_token6] = ACTIONS(1068), - [aux_sym_cmd_identifier_token7] = ACTIONS(1068), - [aux_sym_cmd_identifier_token8] = ACTIONS(1068), - [aux_sym_cmd_identifier_token9] = ACTIONS(1068), - [aux_sym_cmd_identifier_token10] = ACTIONS(1068), - [aux_sym_cmd_identifier_token11] = ACTIONS(1068), - [aux_sym_cmd_identifier_token12] = ACTIONS(1068), - [aux_sym_cmd_identifier_token13] = ACTIONS(1068), - [aux_sym_cmd_identifier_token14] = ACTIONS(1068), - [aux_sym_cmd_identifier_token15] = ACTIONS(1068), - [aux_sym_cmd_identifier_token16] = ACTIONS(1068), - [aux_sym_cmd_identifier_token17] = ACTIONS(1068), - [aux_sym_cmd_identifier_token18] = ACTIONS(1068), - [aux_sym_cmd_identifier_token19] = ACTIONS(1068), - [aux_sym_cmd_identifier_token20] = ACTIONS(1068), - [aux_sym_cmd_identifier_token21] = ACTIONS(1068), - [aux_sym_cmd_identifier_token22] = ACTIONS(1068), - [aux_sym_cmd_identifier_token23] = ACTIONS(1068), - [aux_sym_cmd_identifier_token24] = ACTIONS(1068), - [aux_sym_cmd_identifier_token25] = ACTIONS(1068), - [aux_sym_cmd_identifier_token26] = ACTIONS(1068), - [aux_sym_cmd_identifier_token27] = ACTIONS(1068), - [aux_sym_cmd_identifier_token28] = ACTIONS(1068), - [aux_sym_cmd_identifier_token29] = ACTIONS(1068), - [aux_sym_cmd_identifier_token30] = ACTIONS(1068), - [aux_sym_cmd_identifier_token31] = ACTIONS(1068), - [aux_sym_cmd_identifier_token32] = ACTIONS(1068), - [aux_sym_cmd_identifier_token33] = ACTIONS(1068), - [aux_sym_cmd_identifier_token34] = ACTIONS(1068), - [aux_sym_cmd_identifier_token35] = ACTIONS(1068), - [aux_sym_cmd_identifier_token36] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [anon_sym_null] = ACTIONS(1074), - [aux_sym_cmd_identifier_token38] = ACTIONS(1068), - [aux_sym_cmd_identifier_token39] = ACTIONS(1074), - [aux_sym_cmd_identifier_token40] = ACTIONS(1074), - [anon_sym_def] = ACTIONS(1068), - [anon_sym_export_DASHenv] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_use] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_error] = ACTIONS(1068), - [anon_sym_list] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_in] = ACTIONS(1068), - [anon_sym_loop] = ACTIONS(1068), - [anon_sym_make] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_else] = ACTIONS(1068), - [anon_sym_match] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_try] = ACTIONS(1068), - [anon_sym_catch] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_source] = ACTIONS(1068), - [anon_sym_source_DASHenv] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_hide] = ACTIONS(1068), - [anon_sym_hide_DASHenv] = ACTIONS(1068), - [anon_sym_overlay] = ACTIONS(1068), - [anon_sym_new] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1074), - [aux_sym__val_number_decimal_token3] = ACTIONS(1074), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), - [aux_sym__val_number_token1] = ACTIONS(1074), - [aux_sym__val_number_token2] = ACTIONS(1074), - [aux_sym__val_number_token3] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym__str_single_quotes] = ACTIONS(1074), - [sym__str_back_ticks] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1074), - [aux_sym_record_entry_token1] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(1068), + [507] = { + [sym__expr_parenthesized_immediate] = STATE(7310), + [sym_comment] = STATE(507), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1987), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1987), + [aux_sym_cmd_identifier_token40] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(247), }, - [482] = { - [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_list] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1056), - [aux_sym__val_number_decimal_token4] = ACTIONS(1056), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), - [sym__entry_separator] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), + [508] = { + [sym_comment] = STATE(508), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_alias] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_let_DASHenv] = ACTIONS(2328), + [anon_sym_mut] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [aux_sym_cmd_identifier_token1] = ACTIONS(2328), + [aux_sym_cmd_identifier_token2] = ACTIONS(2328), + [aux_sym_cmd_identifier_token3] = ACTIONS(2328), + [aux_sym_cmd_identifier_token4] = ACTIONS(2328), + [aux_sym_cmd_identifier_token5] = ACTIONS(2328), + [aux_sym_cmd_identifier_token6] = ACTIONS(2328), + [aux_sym_cmd_identifier_token7] = ACTIONS(2328), + [aux_sym_cmd_identifier_token8] = ACTIONS(2328), + [aux_sym_cmd_identifier_token9] = ACTIONS(2328), + [aux_sym_cmd_identifier_token10] = ACTIONS(2328), + [aux_sym_cmd_identifier_token11] = ACTIONS(2328), + [aux_sym_cmd_identifier_token12] = ACTIONS(2328), + [aux_sym_cmd_identifier_token13] = ACTIONS(2328), + [aux_sym_cmd_identifier_token14] = ACTIONS(2328), + [aux_sym_cmd_identifier_token15] = ACTIONS(2328), + [aux_sym_cmd_identifier_token16] = ACTIONS(2328), + [aux_sym_cmd_identifier_token17] = ACTIONS(2328), + [aux_sym_cmd_identifier_token18] = ACTIONS(2328), + [aux_sym_cmd_identifier_token19] = ACTIONS(2328), + [aux_sym_cmd_identifier_token20] = ACTIONS(2328), + [aux_sym_cmd_identifier_token21] = ACTIONS(2328), + [aux_sym_cmd_identifier_token22] = ACTIONS(2328), + [aux_sym_cmd_identifier_token23] = ACTIONS(2328), + [aux_sym_cmd_identifier_token24] = ACTIONS(2328), + [aux_sym_cmd_identifier_token25] = ACTIONS(2328), + [aux_sym_cmd_identifier_token26] = ACTIONS(2328), + [aux_sym_cmd_identifier_token27] = ACTIONS(2328), + [aux_sym_cmd_identifier_token28] = ACTIONS(2328), + [aux_sym_cmd_identifier_token29] = ACTIONS(2328), + [aux_sym_cmd_identifier_token30] = ACTIONS(2328), + [aux_sym_cmd_identifier_token31] = ACTIONS(2328), + [aux_sym_cmd_identifier_token32] = ACTIONS(2328), + [aux_sym_cmd_identifier_token33] = ACTIONS(2328), + [aux_sym_cmd_identifier_token34] = ACTIONS(2328), + [aux_sym_cmd_identifier_token35] = ACTIONS(2328), + [aux_sym_cmd_identifier_token36] = ACTIONS(2328), + [anon_sym_true] = ACTIONS(2328), + [anon_sym_false] = ACTIONS(2328), + [anon_sym_null] = ACTIONS(2328), + [aux_sym_cmd_identifier_token38] = ACTIONS(2328), + [aux_sym_cmd_identifier_token39] = ACTIONS(2328), + [aux_sym_cmd_identifier_token40] = ACTIONS(2328), + [anon_sym_def] = ACTIONS(2328), + [anon_sym_export_DASHenv] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_use] = ACTIONS(2328), + [anon_sym_RBRACK] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_error] = ACTIONS(2328), + [anon_sym_list] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_loop] = ACTIONS(2328), + [anon_sym_make] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_match] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_catch] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_source] = ACTIONS(2328), + [anon_sym_source_DASHenv] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2328), + [anon_sym_hide] = ACTIONS(2328), + [anon_sym_hide_DASHenv] = ACTIONS(2328), + [anon_sym_overlay] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), + [aux_sym__val_number_decimal_token1] = ACTIONS(2328), + [aux_sym__val_number_decimal_token2] = ACTIONS(2328), + [aux_sym__val_number_decimal_token3] = ACTIONS(2328), + [aux_sym__val_number_decimal_token4] = ACTIONS(2328), + [aux_sym__val_number_token1] = ACTIONS(2328), + [aux_sym__val_number_token2] = ACTIONS(2328), + [aux_sym__val_number_token3] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym__str_single_quotes] = ACTIONS(2328), + [sym__str_back_ticks] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), + [sym__entry_separator] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2328), [anon_sym_POUND] = ACTIONS(3), }, - [483] = { - [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_alias] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_let_DASHenv] = ACTIONS(2329), - [anon_sym_mut] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [aux_sym_cmd_identifier_token1] = ACTIONS(2329), - [aux_sym_cmd_identifier_token2] = ACTIONS(2329), - [aux_sym_cmd_identifier_token3] = ACTIONS(2329), - [aux_sym_cmd_identifier_token4] = ACTIONS(2329), - [aux_sym_cmd_identifier_token5] = ACTIONS(2329), - [aux_sym_cmd_identifier_token6] = ACTIONS(2329), - [aux_sym_cmd_identifier_token7] = ACTIONS(2329), - [aux_sym_cmd_identifier_token8] = ACTIONS(2329), - [aux_sym_cmd_identifier_token9] = ACTIONS(2329), - [aux_sym_cmd_identifier_token10] = ACTIONS(2329), - [aux_sym_cmd_identifier_token11] = ACTIONS(2329), - [aux_sym_cmd_identifier_token12] = ACTIONS(2329), - [aux_sym_cmd_identifier_token13] = ACTIONS(2329), - [aux_sym_cmd_identifier_token14] = ACTIONS(2329), - [aux_sym_cmd_identifier_token15] = ACTIONS(2329), - [aux_sym_cmd_identifier_token16] = ACTIONS(2329), - [aux_sym_cmd_identifier_token17] = ACTIONS(2329), - [aux_sym_cmd_identifier_token18] = ACTIONS(2329), - [aux_sym_cmd_identifier_token19] = ACTIONS(2329), - [aux_sym_cmd_identifier_token20] = ACTIONS(2329), - [aux_sym_cmd_identifier_token21] = ACTIONS(2329), - [aux_sym_cmd_identifier_token22] = ACTIONS(2329), - [aux_sym_cmd_identifier_token23] = ACTIONS(2329), - [aux_sym_cmd_identifier_token24] = ACTIONS(2329), - [aux_sym_cmd_identifier_token25] = ACTIONS(2329), - [aux_sym_cmd_identifier_token26] = ACTIONS(2329), - [aux_sym_cmd_identifier_token27] = ACTIONS(2329), - [aux_sym_cmd_identifier_token28] = ACTIONS(2329), - [aux_sym_cmd_identifier_token29] = ACTIONS(2329), - [aux_sym_cmd_identifier_token30] = ACTIONS(2329), - [aux_sym_cmd_identifier_token31] = ACTIONS(2329), - [aux_sym_cmd_identifier_token32] = ACTIONS(2329), - [aux_sym_cmd_identifier_token33] = ACTIONS(2329), - [aux_sym_cmd_identifier_token34] = ACTIONS(2329), - [aux_sym_cmd_identifier_token35] = ACTIONS(2329), - [aux_sym_cmd_identifier_token36] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [aux_sym_cmd_identifier_token38] = ACTIONS(2329), - [aux_sym_cmd_identifier_token39] = ACTIONS(2329), - [aux_sym_cmd_identifier_token40] = ACTIONS(2329), - [anon_sym_def] = ACTIONS(2329), - [anon_sym_export_DASHenv] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2329), - [anon_sym_error] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2329), - [anon_sym_loop] = ACTIONS(2329), - [anon_sym_make] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_source] = ACTIONS(2329), - [anon_sym_source_DASHenv] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_hide] = ACTIONS(2329), - [anon_sym_hide_DASHenv] = ACTIONS(2329), - [anon_sym_overlay] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_as] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2329), - [aux_sym__val_number_decimal_token1] = ACTIONS(2329), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2329), - [aux_sym__val_number_decimal_token4] = ACTIONS(2329), - [aux_sym__val_number_token1] = ACTIONS(2329), - [aux_sym__val_number_token2] = ACTIONS(2329), - [aux_sym__val_number_token3] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2329), - [sym__str_single_quotes] = ACTIONS(2329), - [sym__str_back_ticks] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2329), - [sym__entry_separator] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2329), + [509] = { + [sym_comment] = STATE(509), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(3), }, - [484] = { - [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_alias] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_let_DASHenv] = ACTIONS(1060), - [anon_sym_mut] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(1060), - [aux_sym_cmd_identifier_token2] = ACTIONS(1060), - [aux_sym_cmd_identifier_token3] = ACTIONS(1060), - [aux_sym_cmd_identifier_token4] = ACTIONS(1060), - [aux_sym_cmd_identifier_token5] = ACTIONS(1060), - [aux_sym_cmd_identifier_token6] = ACTIONS(1060), - [aux_sym_cmd_identifier_token7] = ACTIONS(1060), - [aux_sym_cmd_identifier_token8] = ACTIONS(1060), - [aux_sym_cmd_identifier_token9] = ACTIONS(1060), - [aux_sym_cmd_identifier_token10] = ACTIONS(1060), - [aux_sym_cmd_identifier_token11] = ACTIONS(1060), - [aux_sym_cmd_identifier_token12] = ACTIONS(1060), - [aux_sym_cmd_identifier_token13] = ACTIONS(1060), - [aux_sym_cmd_identifier_token14] = ACTIONS(1060), - [aux_sym_cmd_identifier_token15] = ACTIONS(1060), - [aux_sym_cmd_identifier_token16] = ACTIONS(1060), - [aux_sym_cmd_identifier_token17] = ACTIONS(1060), - [aux_sym_cmd_identifier_token18] = ACTIONS(1060), - [aux_sym_cmd_identifier_token19] = ACTIONS(1060), - [aux_sym_cmd_identifier_token20] = ACTIONS(1060), - [aux_sym_cmd_identifier_token21] = ACTIONS(1060), - [aux_sym_cmd_identifier_token22] = ACTIONS(1060), - [aux_sym_cmd_identifier_token23] = ACTIONS(1060), - [aux_sym_cmd_identifier_token24] = ACTIONS(1060), - [aux_sym_cmd_identifier_token25] = ACTIONS(1060), - [aux_sym_cmd_identifier_token26] = ACTIONS(1060), - [aux_sym_cmd_identifier_token27] = ACTIONS(1060), - [aux_sym_cmd_identifier_token28] = ACTIONS(1060), - [aux_sym_cmd_identifier_token29] = ACTIONS(1060), - [aux_sym_cmd_identifier_token30] = ACTIONS(1060), - [aux_sym_cmd_identifier_token31] = ACTIONS(1060), - [aux_sym_cmd_identifier_token32] = ACTIONS(1060), - [aux_sym_cmd_identifier_token33] = ACTIONS(1060), - [aux_sym_cmd_identifier_token34] = ACTIONS(1060), - [aux_sym_cmd_identifier_token35] = ACTIONS(1060), - [aux_sym_cmd_identifier_token36] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [anon_sym_def] = ACTIONS(1060), - [anon_sym_export_DASHenv] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_module] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_error] = ACTIONS(1060), - [anon_sym_list] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_in] = ACTIONS(1060), - [anon_sym_loop] = ACTIONS(1060), - [anon_sym_make] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_catch] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_source] = ACTIONS(1060), - [anon_sym_source_DASHenv] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_hide] = ACTIONS(1060), - [anon_sym_hide_DASHenv] = ACTIONS(1060), - [anon_sym_overlay] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), - [sym__entry_separator] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(3), + [510] = { + [sym__expr_parenthesized_immediate] = STATE(7310), + [sym_comment] = STATE(510), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [aux_sym_cmd_identifier_token1] = ACTIONS(2015), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2015), + [aux_sym_cmd_identifier_token9] = ACTIONS(2015), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2015), + [aux_sym_cmd_identifier_token13] = ACTIONS(2015), + [aux_sym_cmd_identifier_token14] = ACTIONS(2015), + [aux_sym_cmd_identifier_token15] = ACTIONS(2015), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2015), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_null] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(247), }, - [485] = { - [sym_comment] = STATE(485), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2313), + [511] = { + [sym_comment] = STATE(511), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_RBRACK] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_list] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [sym__entry_separator] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2338), [anon_sym_POUND] = ACTIONS(3), }, - [486] = { - [sym_comment] = STATE(486), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2313), + [512] = { + [sym_comment] = STATE(512), + [anon_sym_export] = ACTIONS(2342), + [anon_sym_alias] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_let_DASHenv] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [aux_sym_cmd_identifier_token1] = ACTIONS(2342), + [aux_sym_cmd_identifier_token2] = ACTIONS(2342), + [aux_sym_cmd_identifier_token3] = ACTIONS(2342), + [aux_sym_cmd_identifier_token4] = ACTIONS(2342), + [aux_sym_cmd_identifier_token5] = ACTIONS(2342), + [aux_sym_cmd_identifier_token6] = ACTIONS(2342), + [aux_sym_cmd_identifier_token7] = ACTIONS(2342), + [aux_sym_cmd_identifier_token8] = ACTIONS(2342), + [aux_sym_cmd_identifier_token9] = ACTIONS(2342), + [aux_sym_cmd_identifier_token10] = ACTIONS(2342), + [aux_sym_cmd_identifier_token11] = ACTIONS(2342), + [aux_sym_cmd_identifier_token12] = ACTIONS(2342), + [aux_sym_cmd_identifier_token13] = ACTIONS(2342), + [aux_sym_cmd_identifier_token14] = ACTIONS(2342), + [aux_sym_cmd_identifier_token15] = ACTIONS(2342), + [aux_sym_cmd_identifier_token16] = ACTIONS(2342), + [aux_sym_cmd_identifier_token17] = ACTIONS(2342), + [aux_sym_cmd_identifier_token18] = ACTIONS(2342), + [aux_sym_cmd_identifier_token19] = ACTIONS(2342), + [aux_sym_cmd_identifier_token20] = ACTIONS(2342), + [aux_sym_cmd_identifier_token21] = ACTIONS(2342), + [aux_sym_cmd_identifier_token22] = ACTIONS(2342), + [aux_sym_cmd_identifier_token23] = ACTIONS(2342), + [aux_sym_cmd_identifier_token24] = ACTIONS(2342), + [aux_sym_cmd_identifier_token25] = ACTIONS(2342), + [aux_sym_cmd_identifier_token26] = ACTIONS(2342), + [aux_sym_cmd_identifier_token27] = ACTIONS(2342), + [aux_sym_cmd_identifier_token28] = ACTIONS(2342), + [aux_sym_cmd_identifier_token29] = ACTIONS(2342), + [aux_sym_cmd_identifier_token30] = ACTIONS(2342), + [aux_sym_cmd_identifier_token31] = ACTIONS(2342), + [aux_sym_cmd_identifier_token32] = ACTIONS(2342), + [aux_sym_cmd_identifier_token33] = ACTIONS(2342), + [aux_sym_cmd_identifier_token34] = ACTIONS(2342), + [aux_sym_cmd_identifier_token35] = ACTIONS(2342), + [aux_sym_cmd_identifier_token36] = ACTIONS(2342), + [anon_sym_true] = ACTIONS(2342), + [anon_sym_false] = ACTIONS(2342), + [anon_sym_null] = ACTIONS(2342), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2342), + [aux_sym_cmd_identifier_token40] = ACTIONS(2342), + [anon_sym_def] = ACTIONS(2342), + [anon_sym_export_DASHenv] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_module] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_RBRACK] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_DOLLAR] = ACTIONS(2342), + [anon_sym_error] = ACTIONS(2342), + [anon_sym_list] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_make] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_do] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2342), + [anon_sym_catch] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_source] = ACTIONS(2342), + [anon_sym_source_DASHenv] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_hide] = ACTIONS(2342), + [anon_sym_hide_DASHenv] = ACTIONS(2342), + [anon_sym_overlay] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2342), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), + [aux_sym__val_number_decimal_token1] = ACTIONS(2342), + [aux_sym__val_number_decimal_token2] = ACTIONS(2342), + [aux_sym__val_number_decimal_token3] = ACTIONS(2342), + [aux_sym__val_number_decimal_token4] = ACTIONS(2342), + [aux_sym__val_number_token1] = ACTIONS(2342), + [aux_sym__val_number_token2] = ACTIONS(2342), + [aux_sym__val_number_token3] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [sym__str_single_quotes] = ACTIONS(2342), + [sym__str_back_ticks] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), + [sym__entry_separator] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2342), [anon_sym_POUND] = ACTIONS(3), }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_alias] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_let_DASHenv] = ACTIONS(2259), - [anon_sym_mut] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [aux_sym_cmd_identifier_token1] = ACTIONS(2259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2259), - [aux_sym_cmd_identifier_token3] = ACTIONS(2259), - [aux_sym_cmd_identifier_token4] = ACTIONS(2259), - [aux_sym_cmd_identifier_token5] = ACTIONS(2259), - [aux_sym_cmd_identifier_token6] = ACTIONS(2259), - [aux_sym_cmd_identifier_token7] = ACTIONS(2259), - [aux_sym_cmd_identifier_token8] = ACTIONS(2259), - [aux_sym_cmd_identifier_token9] = ACTIONS(2259), - [aux_sym_cmd_identifier_token10] = ACTIONS(2259), - [aux_sym_cmd_identifier_token11] = ACTIONS(2259), - [aux_sym_cmd_identifier_token12] = ACTIONS(2259), - [aux_sym_cmd_identifier_token13] = ACTIONS(2259), - [aux_sym_cmd_identifier_token14] = ACTIONS(2259), - [aux_sym_cmd_identifier_token15] = ACTIONS(2259), - [aux_sym_cmd_identifier_token16] = ACTIONS(2259), - [aux_sym_cmd_identifier_token17] = ACTIONS(2259), - [aux_sym_cmd_identifier_token18] = ACTIONS(2259), - [aux_sym_cmd_identifier_token19] = ACTIONS(2259), - [aux_sym_cmd_identifier_token20] = ACTIONS(2259), - [aux_sym_cmd_identifier_token21] = ACTIONS(2259), - [aux_sym_cmd_identifier_token22] = ACTIONS(2259), - [aux_sym_cmd_identifier_token23] = ACTIONS(2259), - [aux_sym_cmd_identifier_token24] = ACTIONS(2259), - [aux_sym_cmd_identifier_token25] = ACTIONS(2259), - [aux_sym_cmd_identifier_token26] = ACTIONS(2259), - [aux_sym_cmd_identifier_token27] = ACTIONS(2259), - [aux_sym_cmd_identifier_token28] = ACTIONS(2259), - [aux_sym_cmd_identifier_token29] = ACTIONS(2259), - [aux_sym_cmd_identifier_token30] = ACTIONS(2259), - [aux_sym_cmd_identifier_token31] = ACTIONS(2259), - [aux_sym_cmd_identifier_token32] = ACTIONS(2259), - [aux_sym_cmd_identifier_token33] = ACTIONS(2259), - [aux_sym_cmd_identifier_token34] = ACTIONS(2259), - [aux_sym_cmd_identifier_token35] = ACTIONS(2259), - [aux_sym_cmd_identifier_token36] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [anon_sym_null] = ACTIONS(2259), - [aux_sym_cmd_identifier_token38] = ACTIONS(2259), - [aux_sym_cmd_identifier_token39] = ACTIONS(2259), - [aux_sym_cmd_identifier_token40] = ACTIONS(2259), - [anon_sym_def] = ACTIONS(2259), - [anon_sym_export_DASHenv] = ACTIONS(2259), - [anon_sym_extern] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_error] = ACTIONS(2259), - [anon_sym_list] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_make] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_catch] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_source] = ACTIONS(2259), - [anon_sym_source_DASHenv] = ACTIONS(2259), - [anon_sym_register] = ACTIONS(2259), - [anon_sym_hide] = ACTIONS(2259), - [anon_sym_hide_DASHenv] = ACTIONS(2259), - [anon_sym_overlay] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2259), - [aux_sym__val_number_decimal_token1] = ACTIONS(2259), - [aux_sym__val_number_decimal_token2] = ACTIONS(2259), - [aux_sym__val_number_decimal_token3] = ACTIONS(2259), - [aux_sym__val_number_decimal_token4] = ACTIONS(2259), - [aux_sym__val_number_token1] = ACTIONS(2259), - [aux_sym__val_number_token2] = ACTIONS(2259), - [aux_sym__val_number_token3] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2261), - [sym__str_single_quotes] = ACTIONS(2261), - [sym__str_back_ticks] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2259), + [513] = { + [sym_comment] = STATE(513), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), + [aux_sym_record_entry_token1] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(247), + }, + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_alias] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_let_DASHenv] = ACTIONS(2348), + [anon_sym_mut] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [aux_sym_cmd_identifier_token1] = ACTIONS(2348), + [aux_sym_cmd_identifier_token2] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2348), + [aux_sym_cmd_identifier_token4] = ACTIONS(2348), + [aux_sym_cmd_identifier_token5] = ACTIONS(2348), + [aux_sym_cmd_identifier_token6] = ACTIONS(2348), + [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token8] = ACTIONS(2348), + [aux_sym_cmd_identifier_token9] = ACTIONS(2348), + [aux_sym_cmd_identifier_token10] = ACTIONS(2348), + [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token12] = ACTIONS(2348), + [aux_sym_cmd_identifier_token13] = ACTIONS(2348), + [aux_sym_cmd_identifier_token14] = ACTIONS(2348), + [aux_sym_cmd_identifier_token15] = ACTIONS(2348), + [aux_sym_cmd_identifier_token16] = ACTIONS(2348), + [aux_sym_cmd_identifier_token17] = ACTIONS(2348), + [aux_sym_cmd_identifier_token18] = ACTIONS(2348), + [aux_sym_cmd_identifier_token19] = ACTIONS(2348), + [aux_sym_cmd_identifier_token20] = ACTIONS(2348), + [aux_sym_cmd_identifier_token21] = ACTIONS(2348), + [aux_sym_cmd_identifier_token22] = ACTIONS(2348), + [aux_sym_cmd_identifier_token23] = ACTIONS(2348), + [aux_sym_cmd_identifier_token24] = ACTIONS(2348), + [aux_sym_cmd_identifier_token25] = ACTIONS(2348), + [aux_sym_cmd_identifier_token26] = ACTIONS(2348), + [aux_sym_cmd_identifier_token27] = ACTIONS(2348), + [aux_sym_cmd_identifier_token28] = ACTIONS(2348), + [aux_sym_cmd_identifier_token29] = ACTIONS(2348), + [aux_sym_cmd_identifier_token30] = ACTIONS(2348), + [aux_sym_cmd_identifier_token31] = ACTIONS(2348), + [aux_sym_cmd_identifier_token32] = ACTIONS(2348), + [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token34] = ACTIONS(2348), + [aux_sym_cmd_identifier_token35] = ACTIONS(2348), + [aux_sym_cmd_identifier_token36] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(2348), + [anon_sym_false] = ACTIONS(2348), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token38] = ACTIONS(2348), + [aux_sym_cmd_identifier_token39] = ACTIONS(2348), + [aux_sym_cmd_identifier_token40] = ACTIONS(2348), + [anon_sym_def] = ACTIONS(2348), + [anon_sym_export_DASHenv] = ACTIONS(2348), + [anon_sym_extern] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_use] = ACTIONS(2348), + [anon_sym_RBRACK] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_DOLLAR] = ACTIONS(2348), + [anon_sym_error] = ACTIONS(2348), + [anon_sym_list] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2348), + [anon_sym_loop] = ACTIONS(2348), + [anon_sym_make] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_match] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_catch] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_source] = ACTIONS(2348), + [anon_sym_source_DASHenv] = ACTIONS(2348), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), + [aux_sym__val_number_decimal_token1] = ACTIONS(2348), + [aux_sym__val_number_decimal_token2] = ACTIONS(2348), + [aux_sym__val_number_decimal_token3] = ACTIONS(2348), + [aux_sym__val_number_decimal_token4] = ACTIONS(2348), + [aux_sym__val_number_token1] = ACTIONS(2348), + [aux_sym__val_number_token2] = ACTIONS(2348), + [aux_sym__val_number_token3] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(3), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_alias] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_DASHenv] = ACTIONS(2160), - [anon_sym_mut] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [aux_sym_cmd_identifier_token1] = ACTIONS(2160), - [aux_sym_cmd_identifier_token2] = ACTIONS(2160), - [aux_sym_cmd_identifier_token3] = ACTIONS(2160), - [aux_sym_cmd_identifier_token4] = ACTIONS(2160), - [aux_sym_cmd_identifier_token5] = ACTIONS(2160), - [aux_sym_cmd_identifier_token6] = ACTIONS(2160), - [aux_sym_cmd_identifier_token7] = ACTIONS(2160), - [aux_sym_cmd_identifier_token8] = ACTIONS(2160), - [aux_sym_cmd_identifier_token9] = ACTIONS(2160), - [aux_sym_cmd_identifier_token10] = ACTIONS(2160), - [aux_sym_cmd_identifier_token11] = ACTIONS(2160), - [aux_sym_cmd_identifier_token12] = ACTIONS(2160), - [aux_sym_cmd_identifier_token13] = ACTIONS(2160), - [aux_sym_cmd_identifier_token14] = ACTIONS(2160), - [aux_sym_cmd_identifier_token15] = ACTIONS(2160), - [aux_sym_cmd_identifier_token16] = ACTIONS(2160), - [aux_sym_cmd_identifier_token17] = ACTIONS(2160), - [aux_sym_cmd_identifier_token18] = ACTIONS(2160), - [aux_sym_cmd_identifier_token19] = ACTIONS(2160), - [aux_sym_cmd_identifier_token20] = ACTIONS(2160), - [aux_sym_cmd_identifier_token21] = ACTIONS(2160), - [aux_sym_cmd_identifier_token22] = ACTIONS(2160), - [aux_sym_cmd_identifier_token23] = ACTIONS(2160), - [aux_sym_cmd_identifier_token24] = ACTIONS(2160), - [aux_sym_cmd_identifier_token25] = ACTIONS(2160), - [aux_sym_cmd_identifier_token26] = ACTIONS(2160), - [aux_sym_cmd_identifier_token27] = ACTIONS(2160), - [aux_sym_cmd_identifier_token28] = ACTIONS(2160), - [aux_sym_cmd_identifier_token29] = ACTIONS(2160), - [aux_sym_cmd_identifier_token30] = ACTIONS(2160), - [aux_sym_cmd_identifier_token31] = ACTIONS(2160), - [aux_sym_cmd_identifier_token32] = ACTIONS(2160), - [aux_sym_cmd_identifier_token33] = ACTIONS(2160), - [aux_sym_cmd_identifier_token34] = ACTIONS(2160), - [aux_sym_cmd_identifier_token35] = ACTIONS(2160), - [aux_sym_cmd_identifier_token36] = ACTIONS(2160), - [anon_sym_true] = ACTIONS(2162), - [anon_sym_false] = ACTIONS(2162), - [anon_sym_null] = ACTIONS(2162), - [aux_sym_cmd_identifier_token38] = ACTIONS(2160), - [aux_sym_cmd_identifier_token39] = ACTIONS(2162), - [aux_sym_cmd_identifier_token40] = ACTIONS(2162), - [anon_sym_def] = ACTIONS(2160), - [anon_sym_export_DASHenv] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_error] = ACTIONS(2160), - [anon_sym_list] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_make] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_source] = ACTIONS(2160), - [anon_sym_source_DASHenv] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_hide] = ACTIONS(2160), - [anon_sym_hide_DASHenv] = ACTIONS(2160), - [anon_sym_overlay] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2162), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2162), - [aux_sym__val_number_decimal_token3] = ACTIONS(2162), - [aux_sym__val_number_decimal_token4] = ACTIONS(2162), - [aux_sym__val_number_token1] = ACTIONS(2162), - [aux_sym__val_number_token2] = ACTIONS(2162), - [aux_sym__val_number_token3] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym__str_single_quotes] = ACTIONS(2162), - [sym__str_back_ticks] = ACTIONS(2162), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2160), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [515] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_alias] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_let_DASHenv] = ACTIONS(2152), + [anon_sym_mut] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [aux_sym_cmd_identifier_token1] = ACTIONS(2152), + [aux_sym_cmd_identifier_token2] = ACTIONS(2152), + [aux_sym_cmd_identifier_token3] = ACTIONS(2152), + [aux_sym_cmd_identifier_token4] = ACTIONS(2152), + [aux_sym_cmd_identifier_token5] = ACTIONS(2152), + [aux_sym_cmd_identifier_token6] = ACTIONS(2152), + [aux_sym_cmd_identifier_token7] = ACTIONS(2152), + [aux_sym_cmd_identifier_token8] = ACTIONS(2152), + [aux_sym_cmd_identifier_token9] = ACTIONS(2152), + [aux_sym_cmd_identifier_token10] = ACTIONS(2152), + [aux_sym_cmd_identifier_token11] = ACTIONS(2152), + [aux_sym_cmd_identifier_token12] = ACTIONS(2152), + [aux_sym_cmd_identifier_token13] = ACTIONS(2152), + [aux_sym_cmd_identifier_token14] = ACTIONS(2152), + [aux_sym_cmd_identifier_token15] = ACTIONS(2152), + [aux_sym_cmd_identifier_token16] = ACTIONS(2152), + [aux_sym_cmd_identifier_token17] = ACTIONS(2152), + [aux_sym_cmd_identifier_token18] = ACTIONS(2152), + [aux_sym_cmd_identifier_token19] = ACTIONS(2152), + [aux_sym_cmd_identifier_token20] = ACTIONS(2152), + [aux_sym_cmd_identifier_token21] = ACTIONS(2152), + [aux_sym_cmd_identifier_token22] = ACTIONS(2152), + [aux_sym_cmd_identifier_token23] = ACTIONS(2152), + [aux_sym_cmd_identifier_token24] = ACTIONS(2152), + [aux_sym_cmd_identifier_token25] = ACTIONS(2152), + [aux_sym_cmd_identifier_token26] = ACTIONS(2152), + [aux_sym_cmd_identifier_token27] = ACTIONS(2152), + [aux_sym_cmd_identifier_token28] = ACTIONS(2152), + [aux_sym_cmd_identifier_token29] = ACTIONS(2152), + [aux_sym_cmd_identifier_token30] = ACTIONS(2152), + [aux_sym_cmd_identifier_token31] = ACTIONS(2152), + [aux_sym_cmd_identifier_token32] = ACTIONS(2152), + [aux_sym_cmd_identifier_token33] = ACTIONS(2152), + [aux_sym_cmd_identifier_token34] = ACTIONS(2152), + [aux_sym_cmd_identifier_token35] = ACTIONS(2152), + [aux_sym_cmd_identifier_token36] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_null] = ACTIONS(2154), + [aux_sym_cmd_identifier_token38] = ACTIONS(2152), + [aux_sym_cmd_identifier_token39] = ACTIONS(2154), + [aux_sym_cmd_identifier_token40] = ACTIONS(2154), + [anon_sym_def] = ACTIONS(2152), + [anon_sym_export_DASHenv] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_use] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_error] = ACTIONS(2152), + [anon_sym_list] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2152), + [anon_sym_loop] = ACTIONS(2152), + [anon_sym_make] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_catch] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_source] = ACTIONS(2152), + [anon_sym_source_DASHenv] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_hide] = ACTIONS(2152), + [anon_sym_hide_DASHenv] = ACTIONS(2152), + [anon_sym_overlay] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_as] = ACTIONS(2152), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2154), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2154), + [aux_sym__val_number_decimal_token1] = ACTIONS(2152), + [aux_sym__val_number_decimal_token2] = ACTIONS(2154), + [aux_sym__val_number_decimal_token3] = ACTIONS(2154), + [aux_sym__val_number_decimal_token4] = ACTIONS(2154), + [aux_sym__val_number_token1] = ACTIONS(2154), + [aux_sym__val_number_token2] = ACTIONS(2154), + [aux_sym__val_number_token3] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2154), + [sym__str_single_quotes] = ACTIONS(2154), + [sym__str_back_ticks] = ACTIONS(2154), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2154), + [anon_sym_PLUS] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(247), }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_decimal_token4] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1796), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [516] = { + [sym_comment] = STATE(516), + [aux_sym__multiple_types_repeat1] = STATE(509), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_alias] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_let_DASHenv] = ACTIONS(2352), + [anon_sym_mut] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [aux_sym_cmd_identifier_token1] = ACTIONS(2352), + [aux_sym_cmd_identifier_token2] = ACTIONS(2352), + [aux_sym_cmd_identifier_token3] = ACTIONS(2352), + [aux_sym_cmd_identifier_token4] = ACTIONS(2352), + [aux_sym_cmd_identifier_token5] = ACTIONS(2352), + [aux_sym_cmd_identifier_token6] = ACTIONS(2352), + [aux_sym_cmd_identifier_token7] = ACTIONS(2352), + [aux_sym_cmd_identifier_token8] = ACTIONS(2352), + [aux_sym_cmd_identifier_token9] = ACTIONS(2352), + [aux_sym_cmd_identifier_token10] = ACTIONS(2352), + [aux_sym_cmd_identifier_token11] = ACTIONS(2352), + [aux_sym_cmd_identifier_token12] = ACTIONS(2352), + [aux_sym_cmd_identifier_token13] = ACTIONS(2352), + [aux_sym_cmd_identifier_token14] = ACTIONS(2352), + [aux_sym_cmd_identifier_token15] = ACTIONS(2352), + [aux_sym_cmd_identifier_token16] = ACTIONS(2352), + [aux_sym_cmd_identifier_token17] = ACTIONS(2352), + [aux_sym_cmd_identifier_token18] = ACTIONS(2352), + [aux_sym_cmd_identifier_token19] = ACTIONS(2352), + [aux_sym_cmd_identifier_token20] = ACTIONS(2352), + [aux_sym_cmd_identifier_token21] = ACTIONS(2352), + [aux_sym_cmd_identifier_token22] = ACTIONS(2352), + [aux_sym_cmd_identifier_token23] = ACTIONS(2352), + [aux_sym_cmd_identifier_token24] = ACTIONS(2352), + [aux_sym_cmd_identifier_token25] = ACTIONS(2352), + [aux_sym_cmd_identifier_token26] = ACTIONS(2352), + [aux_sym_cmd_identifier_token27] = ACTIONS(2352), + [aux_sym_cmd_identifier_token28] = ACTIONS(2352), + [aux_sym_cmd_identifier_token29] = ACTIONS(2352), + [aux_sym_cmd_identifier_token30] = ACTIONS(2352), + [aux_sym_cmd_identifier_token31] = ACTIONS(2352), + [aux_sym_cmd_identifier_token32] = ACTIONS(2352), + [aux_sym_cmd_identifier_token33] = ACTIONS(2352), + [aux_sym_cmd_identifier_token34] = ACTIONS(2352), + [aux_sym_cmd_identifier_token35] = ACTIONS(2352), + [aux_sym_cmd_identifier_token36] = ACTIONS(2352), + [anon_sym_true] = ACTIONS(2352), + [anon_sym_false] = ACTIONS(2352), + [anon_sym_null] = ACTIONS(2352), + [aux_sym_cmd_identifier_token38] = ACTIONS(2352), + [aux_sym_cmd_identifier_token39] = ACTIONS(2352), + [aux_sym_cmd_identifier_token40] = ACTIONS(2352), + [anon_sym_def] = ACTIONS(2352), + [anon_sym_export_DASHenv] = ACTIONS(2352), + [anon_sym_extern] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_use] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_error] = ACTIONS(2352), + [anon_sym_list] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_in] = ACTIONS(2352), + [anon_sym_loop] = ACTIONS(2352), + [anon_sym_make] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_match] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_catch] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_source] = ACTIONS(2352), + [anon_sym_source_DASHenv] = ACTIONS(2352), + [anon_sym_register] = ACTIONS(2352), + [anon_sym_hide] = ACTIONS(2352), + [anon_sym_hide_DASHenv] = ACTIONS(2352), + [anon_sym_overlay] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), + [aux_sym__val_number_decimal_token1] = ACTIONS(2352), + [aux_sym__val_number_decimal_token2] = ACTIONS(2352), + [aux_sym__val_number_decimal_token3] = ACTIONS(2352), + [aux_sym__val_number_decimal_token4] = ACTIONS(2352), + [aux_sym__val_number_token1] = ACTIONS(2352), + [aux_sym__val_number_token2] = ACTIONS(2352), + [aux_sym__val_number_token3] = ACTIONS(2352), + [anon_sym_DQUOTE] = ACTIONS(2352), + [sym__str_single_quotes] = ACTIONS(2352), + [sym__str_back_ticks] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(3), + }, + [517] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [anon_sym_null] = ACTIONS(2158), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2158), + [aux_sym_cmd_identifier_token40] = ACTIONS(2158), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_list] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_new] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2158), + [aux_sym__val_number_decimal_token3] = ACTIONS(2158), + [aux_sym__val_number_decimal_token4] = ACTIONS(2158), + [aux_sym__val_number_token1] = ACTIONS(2158), + [aux_sym__val_number_token2] = ACTIONS(2158), + [aux_sym__val_number_token3] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym__str_single_quotes] = ACTIONS(2158), + [sym__str_back_ticks] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(247), }, - [490] = { - [sym_comment] = STATE(490), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [518] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_alias] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_let_DASHenv] = ACTIONS(2214), + [anon_sym_mut] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [aux_sym_cmd_identifier_token1] = ACTIONS(2214), + [aux_sym_cmd_identifier_token2] = ACTIONS(2214), + [aux_sym_cmd_identifier_token3] = ACTIONS(2214), + [aux_sym_cmd_identifier_token4] = ACTIONS(2214), + [aux_sym_cmd_identifier_token5] = ACTIONS(2214), + [aux_sym_cmd_identifier_token6] = ACTIONS(2214), + [aux_sym_cmd_identifier_token7] = ACTIONS(2214), + [aux_sym_cmd_identifier_token8] = ACTIONS(2214), + [aux_sym_cmd_identifier_token9] = ACTIONS(2214), + [aux_sym_cmd_identifier_token10] = ACTIONS(2214), + [aux_sym_cmd_identifier_token11] = ACTIONS(2214), + [aux_sym_cmd_identifier_token12] = ACTIONS(2214), + [aux_sym_cmd_identifier_token13] = ACTIONS(2214), + [aux_sym_cmd_identifier_token14] = ACTIONS(2214), + [aux_sym_cmd_identifier_token15] = ACTIONS(2214), + [aux_sym_cmd_identifier_token16] = ACTIONS(2214), + [aux_sym_cmd_identifier_token17] = ACTIONS(2214), + [aux_sym_cmd_identifier_token18] = ACTIONS(2214), + [aux_sym_cmd_identifier_token19] = ACTIONS(2214), + [aux_sym_cmd_identifier_token20] = ACTIONS(2214), + [aux_sym_cmd_identifier_token21] = ACTIONS(2214), + [aux_sym_cmd_identifier_token22] = ACTIONS(2214), + [aux_sym_cmd_identifier_token23] = ACTIONS(2214), + [aux_sym_cmd_identifier_token24] = ACTIONS(2214), + [aux_sym_cmd_identifier_token25] = ACTIONS(2214), + [aux_sym_cmd_identifier_token26] = ACTIONS(2214), + [aux_sym_cmd_identifier_token27] = ACTIONS(2214), + [aux_sym_cmd_identifier_token28] = ACTIONS(2214), + [aux_sym_cmd_identifier_token29] = ACTIONS(2214), + [aux_sym_cmd_identifier_token30] = ACTIONS(2214), + [aux_sym_cmd_identifier_token31] = ACTIONS(2214), + [aux_sym_cmd_identifier_token32] = ACTIONS(2214), + [aux_sym_cmd_identifier_token33] = ACTIONS(2214), + [aux_sym_cmd_identifier_token34] = ACTIONS(2214), + [aux_sym_cmd_identifier_token35] = ACTIONS(2214), + [aux_sym_cmd_identifier_token36] = ACTIONS(2214), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2216), + [aux_sym_cmd_identifier_token38] = ACTIONS(2214), + [aux_sym_cmd_identifier_token39] = ACTIONS(2216), + [aux_sym_cmd_identifier_token40] = ACTIONS(2216), + [anon_sym_def] = ACTIONS(2214), + [anon_sym_export_DASHenv] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_error] = ACTIONS(2214), + [anon_sym_list] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_make] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_catch] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_source] = ACTIONS(2214), + [anon_sym_source_DASHenv] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_hide] = ACTIONS(2214), + [anon_sym_hide_DASHenv] = ACTIONS(2214), + [anon_sym_overlay] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym__str_single_quotes] = ACTIONS(2216), + [sym__str_back_ticks] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2214), [anon_sym_POUND] = ACTIONS(247), }, - [491] = { - [sym_comment] = STATE(491), + [519] = { + [sym__expr_parenthesized_immediate] = STATE(7671), + [sym_comment] = STATE(519), [anon_sym_export] = ACTIONS(2218), [anon_sym_alias] = ACTIONS(2218), [anon_sym_let] = ACTIONS(2218), @@ -129058,19 +133545,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2218), [aux_sym_cmd_identifier_token35] = ACTIONS(2218), [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2220), [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2222), - [aux_sym_cmd_identifier_token40] = ACTIONS(2222), + [aux_sym_cmd_identifier_token39] = ACTIONS(2220), + [aux_sym_cmd_identifier_token40] = ACTIONS(2220), [anon_sym_def] = ACTIONS(2218), [anon_sym_export_DASHenv] = ACTIONS(2218), [anon_sym_extern] = ACTIONS(2218), [anon_sym_module] = ACTIONS(2218), [anon_sym_use] = ACTIONS(2218), [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2220), [anon_sym_error] = ACTIONS(2218), [anon_sym_list] = ACTIONS(2218), [anon_sym_DASH] = ACTIONS(2218), @@ -129085,7 +133572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2218), [anon_sym_else] = ACTIONS(2218), [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2220), [anon_sym_try] = ACTIONS(2218), [anon_sym_catch] = ACTIONS(2218), [anon_sym_return] = ACTIONS(2218), @@ -129097,2647 +133584,1035 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2218), [anon_sym_new] = ACTIONS(2218), [anon_sym_as] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [sym__str_single_quotes] = ACTIONS(2222), - [sym__str_back_ticks] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2220), + [aux_sym__val_number_token2] = ACTIONS(2220), + [aux_sym__val_number_token3] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym__str_single_quotes] = ACTIONS(2220), + [sym__str_back_ticks] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), [anon_sym_PLUS] = ACTIONS(2218), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(247), - }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [493] = { - [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [494] = { - [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(247), }, - [495] = { - [sym_comment] = STATE(495), - [aux_sym__multiple_types_repeat1] = STATE(485), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2337), - [aux_sym_cmd_identifier_token3] = ACTIONS(2337), - [aux_sym_cmd_identifier_token4] = ACTIONS(2337), - [aux_sym_cmd_identifier_token5] = ACTIONS(2337), - [aux_sym_cmd_identifier_token6] = ACTIONS(2337), - [aux_sym_cmd_identifier_token7] = ACTIONS(2337), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2337), - [aux_sym_cmd_identifier_token17] = ACTIONS(2337), - [aux_sym_cmd_identifier_token18] = ACTIONS(2337), - [aux_sym_cmd_identifier_token19] = ACTIONS(2337), - [aux_sym_cmd_identifier_token20] = ACTIONS(2337), - [aux_sym_cmd_identifier_token21] = ACTIONS(2337), - [aux_sym_cmd_identifier_token22] = ACTIONS(2337), - [aux_sym_cmd_identifier_token23] = ACTIONS(2337), - [aux_sym_cmd_identifier_token24] = ACTIONS(2337), - [aux_sym_cmd_identifier_token25] = ACTIONS(2337), - [aux_sym_cmd_identifier_token26] = ACTIONS(2337), - [aux_sym_cmd_identifier_token27] = ACTIONS(2337), - [aux_sym_cmd_identifier_token28] = ACTIONS(2337), - [aux_sym_cmd_identifier_token29] = ACTIONS(2337), - [aux_sym_cmd_identifier_token30] = ACTIONS(2337), - [aux_sym_cmd_identifier_token31] = ACTIONS(2337), - [aux_sym_cmd_identifier_token32] = ACTIONS(2337), - [aux_sym_cmd_identifier_token33] = ACTIONS(2337), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2337), - [aux_sym_cmd_identifier_token36] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2337), - [aux_sym_cmd_identifier_token40] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2337), - [aux_sym__val_number_decimal_token3] = ACTIONS(2337), - [aux_sym__val_number_decimal_token4] = ACTIONS(2337), - [aux_sym__val_number_token1] = ACTIONS(2337), - [aux_sym__val_number_token2] = ACTIONS(2337), - [aux_sym__val_number_token3] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym__str_single_quotes] = ACTIONS(2337), - [sym__str_back_ticks] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2337), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2337), + [520] = { + [sym_comment] = STATE(520), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(3), }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(2341), - [aux_sym__immediate_decimal_token2] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(2224), - [anon_sym_alias] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_let_DASHenv] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [aux_sym_cmd_identifier_token1] = ACTIONS(2224), - [aux_sym_cmd_identifier_token2] = ACTIONS(2224), - [aux_sym_cmd_identifier_token3] = ACTIONS(2224), - [aux_sym_cmd_identifier_token4] = ACTIONS(2224), - [aux_sym_cmd_identifier_token5] = ACTIONS(2224), - [aux_sym_cmd_identifier_token6] = ACTIONS(2224), - [aux_sym_cmd_identifier_token7] = ACTIONS(2224), - [aux_sym_cmd_identifier_token8] = ACTIONS(2224), - [aux_sym_cmd_identifier_token9] = ACTIONS(2224), - [aux_sym_cmd_identifier_token10] = ACTIONS(2224), - [aux_sym_cmd_identifier_token11] = ACTIONS(2224), - [aux_sym_cmd_identifier_token12] = ACTIONS(2224), - [aux_sym_cmd_identifier_token13] = ACTIONS(2224), - [aux_sym_cmd_identifier_token14] = ACTIONS(2224), - [aux_sym_cmd_identifier_token15] = ACTIONS(2224), - [aux_sym_cmd_identifier_token16] = ACTIONS(2224), - [aux_sym_cmd_identifier_token17] = ACTIONS(2224), - [aux_sym_cmd_identifier_token18] = ACTIONS(2224), - [aux_sym_cmd_identifier_token19] = ACTIONS(2224), - [aux_sym_cmd_identifier_token20] = ACTIONS(2224), - [aux_sym_cmd_identifier_token21] = ACTIONS(2224), - [aux_sym_cmd_identifier_token22] = ACTIONS(2224), - [aux_sym_cmd_identifier_token23] = ACTIONS(2224), - [aux_sym_cmd_identifier_token24] = ACTIONS(2224), - [aux_sym_cmd_identifier_token25] = ACTIONS(2224), - [aux_sym_cmd_identifier_token26] = ACTIONS(2224), - [aux_sym_cmd_identifier_token27] = ACTIONS(2224), - [aux_sym_cmd_identifier_token28] = ACTIONS(2224), - [aux_sym_cmd_identifier_token29] = ACTIONS(2224), - [aux_sym_cmd_identifier_token30] = ACTIONS(2224), - [aux_sym_cmd_identifier_token31] = ACTIONS(2224), - [aux_sym_cmd_identifier_token32] = ACTIONS(2224), - [aux_sym_cmd_identifier_token33] = ACTIONS(2224), - [aux_sym_cmd_identifier_token34] = ACTIONS(2224), - [aux_sym_cmd_identifier_token35] = ACTIONS(2224), - [aux_sym_cmd_identifier_token36] = ACTIONS(2224), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [aux_sym_cmd_identifier_token38] = ACTIONS(2224), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), - [anon_sym_def] = ACTIONS(2224), - [anon_sym_export_DASHenv] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_module] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_error] = ACTIONS(2224), - [anon_sym_list] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_make] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_catch] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_source] = ACTIONS(2224), - [anon_sym_source_DASHenv] = ACTIONS(2224), - [anon_sym_register] = ACTIONS(2224), - [anon_sym_hide] = ACTIONS(2224), - [anon_sym_hide_DASHenv] = ACTIONS(2224), - [anon_sym_overlay] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_decimal_token4] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2224), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(247), - }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [anon_sym_null] = ACTIONS(1921), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1921), - [aux_sym_cmd_identifier_token40] = ACTIONS(1921), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_list] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1921), - [aux_sym__val_number_decimal_token3] = ACTIONS(1921), - [aux_sym__val_number_decimal_token4] = ACTIONS(1921), - [aux_sym__val_number_token1] = ACTIONS(1921), - [aux_sym__val_number_token2] = ACTIONS(1921), - [aux_sym__val_number_token3] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), - [sym__entry_separator] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1921), + [521] = { + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1070), + [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_RBRACK] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token4] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1070), + [sym__entry_separator] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(3), }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_alias] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_let_DASHenv] = ACTIONS(2345), - [anon_sym_mut] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [aux_sym_cmd_identifier_token1] = ACTIONS(2345), - [aux_sym_cmd_identifier_token2] = ACTIONS(2345), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [aux_sym_cmd_identifier_token6] = ACTIONS(2345), - [aux_sym_cmd_identifier_token7] = ACTIONS(2345), - [aux_sym_cmd_identifier_token8] = ACTIONS(2345), - [aux_sym_cmd_identifier_token9] = ACTIONS(2345), - [aux_sym_cmd_identifier_token10] = ACTIONS(2345), - [aux_sym_cmd_identifier_token11] = ACTIONS(2345), - [aux_sym_cmd_identifier_token12] = ACTIONS(2345), - [aux_sym_cmd_identifier_token13] = ACTIONS(2345), - [aux_sym_cmd_identifier_token14] = ACTIONS(2345), - [aux_sym_cmd_identifier_token15] = ACTIONS(2345), - [aux_sym_cmd_identifier_token16] = ACTIONS(2345), - [aux_sym_cmd_identifier_token17] = ACTIONS(2345), - [aux_sym_cmd_identifier_token18] = ACTIONS(2345), - [aux_sym_cmd_identifier_token19] = ACTIONS(2345), - [aux_sym_cmd_identifier_token20] = ACTIONS(2345), - [aux_sym_cmd_identifier_token21] = ACTIONS(2345), - [aux_sym_cmd_identifier_token22] = ACTIONS(2345), - [aux_sym_cmd_identifier_token23] = ACTIONS(2345), - [aux_sym_cmd_identifier_token24] = ACTIONS(2345), - [aux_sym_cmd_identifier_token25] = ACTIONS(2345), - [aux_sym_cmd_identifier_token26] = ACTIONS(2345), - [aux_sym_cmd_identifier_token27] = ACTIONS(2345), - [aux_sym_cmd_identifier_token28] = ACTIONS(2345), - [aux_sym_cmd_identifier_token29] = ACTIONS(2345), - [aux_sym_cmd_identifier_token30] = ACTIONS(2345), - [aux_sym_cmd_identifier_token31] = ACTIONS(2345), - [aux_sym_cmd_identifier_token32] = ACTIONS(2345), - [aux_sym_cmd_identifier_token33] = ACTIONS(2345), - [aux_sym_cmd_identifier_token34] = ACTIONS(2345), - [aux_sym_cmd_identifier_token35] = ACTIONS(2345), - [aux_sym_cmd_identifier_token36] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [aux_sym_cmd_identifier_token38] = ACTIONS(2345), - [aux_sym_cmd_identifier_token39] = ACTIONS(2345), - [aux_sym_cmd_identifier_token40] = ACTIONS(2345), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_export_DASHenv] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_RBRACK] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_error] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_in] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_make] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_catch] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_source] = ACTIONS(2345), - [anon_sym_source_DASHenv] = ACTIONS(2345), - [anon_sym_register] = ACTIONS(2345), - [anon_sym_hide] = ACTIONS(2345), - [anon_sym_hide_DASHenv] = ACTIONS(2345), - [anon_sym_overlay] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2345), - [aux_sym__val_number_decimal_token3] = ACTIONS(2345), - [aux_sym__val_number_decimal_token4] = ACTIONS(2345), - [aux_sym__val_number_token1] = ACTIONS(2345), - [aux_sym__val_number_token2] = ACTIONS(2345), - [aux_sym__val_number_token3] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2345), - [sym__str_single_quotes] = ACTIONS(2345), - [sym__str_back_ticks] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2345), - [sym__entry_separator] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2345), + [522] = { + [sym_comment] = STATE(522), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2358), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [aux_sym_cmd_identifier_token6] = ACTIONS(2358), + [aux_sym_cmd_identifier_token7] = ACTIONS(2358), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2358), + [aux_sym_cmd_identifier_token11] = ACTIONS(2358), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2358), + [aux_sym_cmd_identifier_token17] = ACTIONS(2358), + [aux_sym_cmd_identifier_token18] = ACTIONS(2358), + [aux_sym_cmd_identifier_token19] = ACTIONS(2358), + [aux_sym_cmd_identifier_token20] = ACTIONS(2358), + [aux_sym_cmd_identifier_token21] = ACTIONS(2358), + [aux_sym_cmd_identifier_token22] = ACTIONS(2358), + [aux_sym_cmd_identifier_token23] = ACTIONS(2358), + [aux_sym_cmd_identifier_token24] = ACTIONS(2358), + [aux_sym_cmd_identifier_token25] = ACTIONS(2358), + [aux_sym_cmd_identifier_token26] = ACTIONS(2358), + [aux_sym_cmd_identifier_token27] = ACTIONS(2358), + [aux_sym_cmd_identifier_token28] = ACTIONS(2358), + [aux_sym_cmd_identifier_token29] = ACTIONS(2358), + [aux_sym_cmd_identifier_token30] = ACTIONS(2358), + [aux_sym_cmd_identifier_token31] = ACTIONS(2358), + [aux_sym_cmd_identifier_token32] = ACTIONS(2358), + [aux_sym_cmd_identifier_token33] = ACTIONS(2358), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2358), + [aux_sym_cmd_identifier_token36] = ACTIONS(2358), + [anon_sym_true] = ACTIONS(2358), + [anon_sym_false] = ACTIONS(2358), + [anon_sym_null] = ACTIONS(2358), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2358), + [aux_sym_cmd_identifier_token40] = ACTIONS(2358), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_RBRACK] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2358), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_list] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2358), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2358), + [aux_sym__val_number_decimal_token4] = ACTIONS(2358), + [aux_sym__val_number_token1] = ACTIONS(2358), + [aux_sym__val_number_token2] = ACTIONS(2358), + [aux_sym__val_number_token3] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [sym__str_single_quotes] = ACTIONS(2358), + [sym__str_back_ticks] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2358), + [sym__entry_separator] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(3), }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [aux_sym__immediate_decimal_token2] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), + [523] = { + [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_alias] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_let_DASHenv] = ACTIONS(1822), + [anon_sym_mut] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [aux_sym_cmd_identifier_token1] = ACTIONS(1822), + [aux_sym_cmd_identifier_token2] = ACTIONS(1822), + [aux_sym_cmd_identifier_token3] = ACTIONS(1822), + [aux_sym_cmd_identifier_token4] = ACTIONS(1822), + [aux_sym_cmd_identifier_token5] = ACTIONS(1822), + [aux_sym_cmd_identifier_token6] = ACTIONS(1822), + [aux_sym_cmd_identifier_token7] = ACTIONS(1822), + [aux_sym_cmd_identifier_token8] = ACTIONS(1822), + [aux_sym_cmd_identifier_token9] = ACTIONS(1822), + [aux_sym_cmd_identifier_token10] = ACTIONS(1822), + [aux_sym_cmd_identifier_token11] = ACTIONS(1822), + [aux_sym_cmd_identifier_token12] = ACTIONS(1822), + [aux_sym_cmd_identifier_token13] = ACTIONS(1822), + [aux_sym_cmd_identifier_token14] = ACTIONS(1822), + [aux_sym_cmd_identifier_token15] = ACTIONS(1822), + [aux_sym_cmd_identifier_token16] = ACTIONS(1822), + [aux_sym_cmd_identifier_token17] = ACTIONS(1822), + [aux_sym_cmd_identifier_token18] = ACTIONS(1822), + [aux_sym_cmd_identifier_token19] = ACTIONS(1822), + [aux_sym_cmd_identifier_token20] = ACTIONS(1822), + [aux_sym_cmd_identifier_token21] = ACTIONS(1822), + [aux_sym_cmd_identifier_token22] = ACTIONS(1822), + [aux_sym_cmd_identifier_token23] = ACTIONS(1822), + [aux_sym_cmd_identifier_token24] = ACTIONS(1822), + [aux_sym_cmd_identifier_token25] = ACTIONS(1822), + [aux_sym_cmd_identifier_token26] = ACTIONS(1822), + [aux_sym_cmd_identifier_token27] = ACTIONS(1822), + [aux_sym_cmd_identifier_token28] = ACTIONS(1822), + [aux_sym_cmd_identifier_token29] = ACTIONS(1822), + [aux_sym_cmd_identifier_token30] = ACTIONS(1822), + [aux_sym_cmd_identifier_token31] = ACTIONS(1822), + [aux_sym_cmd_identifier_token32] = ACTIONS(1822), + [aux_sym_cmd_identifier_token33] = ACTIONS(1822), + [aux_sym_cmd_identifier_token34] = ACTIONS(1822), + [aux_sym_cmd_identifier_token35] = ACTIONS(1822), + [aux_sym_cmd_identifier_token36] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [aux_sym_cmd_identifier_token38] = ACTIONS(1822), + [aux_sym_cmd_identifier_token39] = ACTIONS(1822), + [aux_sym_cmd_identifier_token40] = ACTIONS(1822), + [anon_sym_def] = ACTIONS(1822), + [anon_sym_export_DASHenv] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_error] = ACTIONS(1822), + [anon_sym_list] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_make] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_source] = ACTIONS(1822), + [anon_sym_source_DASHenv] = ACTIONS(1822), + [anon_sym_register] = ACTIONS(1822), + [anon_sym_hide] = ACTIONS(1822), + [anon_sym_hide_DASHenv] = ACTIONS(1822), + [anon_sym_overlay] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1822), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), + [sym__entry_separator] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [aux_sym__immediate_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), + [524] = { + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2362), + [aux_sym_cmd_identifier_token3] = ACTIONS(2362), + [aux_sym_cmd_identifier_token4] = ACTIONS(2362), + [aux_sym_cmd_identifier_token5] = ACTIONS(2362), + [aux_sym_cmd_identifier_token6] = ACTIONS(2362), + [aux_sym_cmd_identifier_token7] = ACTIONS(2362), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2362), + [aux_sym_cmd_identifier_token11] = ACTIONS(2362), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2362), + [aux_sym_cmd_identifier_token17] = ACTIONS(2362), + [aux_sym_cmd_identifier_token18] = ACTIONS(2362), + [aux_sym_cmd_identifier_token19] = ACTIONS(2362), + [aux_sym_cmd_identifier_token20] = ACTIONS(2362), + [aux_sym_cmd_identifier_token21] = ACTIONS(2362), + [aux_sym_cmd_identifier_token22] = ACTIONS(2362), + [aux_sym_cmd_identifier_token23] = ACTIONS(2362), + [aux_sym_cmd_identifier_token24] = ACTIONS(2362), + [aux_sym_cmd_identifier_token25] = ACTIONS(2362), + [aux_sym_cmd_identifier_token26] = ACTIONS(2362), + [aux_sym_cmd_identifier_token27] = ACTIONS(2362), + [aux_sym_cmd_identifier_token28] = ACTIONS(2362), + [aux_sym_cmd_identifier_token29] = ACTIONS(2362), + [aux_sym_cmd_identifier_token30] = ACTIONS(2362), + [aux_sym_cmd_identifier_token31] = ACTIONS(2362), + [aux_sym_cmd_identifier_token32] = ACTIONS(2362), + [aux_sym_cmd_identifier_token33] = ACTIONS(2362), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2362), + [aux_sym_cmd_identifier_token36] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2362), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2362), + [aux_sym_cmd_identifier_token40] = ACTIONS(2362), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_RBRACK] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_list] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_new] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = ACTIONS(2362), + [aux_sym__val_number_decimal_token4] = ACTIONS(2362), + [aux_sym__val_number_token1] = ACTIONS(2362), + [aux_sym__val_number_token2] = ACTIONS(2362), + [aux_sym__val_number_token3] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym__str_single_quotes] = ACTIONS(2362), + [sym__str_back_ticks] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2362), + [sym__entry_separator] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(3), }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2351), - [aux_sym__immediate_decimal_token2] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_alias] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_DASHenv] = ACTIONS(2355), - [anon_sym_mut] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [aux_sym_cmd_identifier_token1] = ACTIONS(2355), - [aux_sym_cmd_identifier_token2] = ACTIONS(2355), - [aux_sym_cmd_identifier_token3] = ACTIONS(2355), - [aux_sym_cmd_identifier_token4] = ACTIONS(2355), - [aux_sym_cmd_identifier_token5] = ACTIONS(2355), - [aux_sym_cmd_identifier_token6] = ACTIONS(2355), - [aux_sym_cmd_identifier_token7] = ACTIONS(2355), - [aux_sym_cmd_identifier_token8] = ACTIONS(2355), - [aux_sym_cmd_identifier_token9] = ACTIONS(2355), - [aux_sym_cmd_identifier_token10] = ACTIONS(2355), - [aux_sym_cmd_identifier_token11] = ACTIONS(2355), - [aux_sym_cmd_identifier_token12] = ACTIONS(2355), - [aux_sym_cmd_identifier_token13] = ACTIONS(2355), - [aux_sym_cmd_identifier_token14] = ACTIONS(2355), - [aux_sym_cmd_identifier_token15] = ACTIONS(2355), - [aux_sym_cmd_identifier_token16] = ACTIONS(2355), - [aux_sym_cmd_identifier_token17] = ACTIONS(2355), - [aux_sym_cmd_identifier_token18] = ACTIONS(2355), - [aux_sym_cmd_identifier_token19] = ACTIONS(2355), - [aux_sym_cmd_identifier_token20] = ACTIONS(2355), - [aux_sym_cmd_identifier_token21] = ACTIONS(2355), - [aux_sym_cmd_identifier_token22] = ACTIONS(2355), - [aux_sym_cmd_identifier_token23] = ACTIONS(2355), - [aux_sym_cmd_identifier_token24] = ACTIONS(2355), - [aux_sym_cmd_identifier_token25] = ACTIONS(2355), - [aux_sym_cmd_identifier_token26] = ACTIONS(2355), - [aux_sym_cmd_identifier_token27] = ACTIONS(2355), - [aux_sym_cmd_identifier_token28] = ACTIONS(2355), - [aux_sym_cmd_identifier_token29] = ACTIONS(2355), - [aux_sym_cmd_identifier_token30] = ACTIONS(2355), - [aux_sym_cmd_identifier_token31] = ACTIONS(2355), - [aux_sym_cmd_identifier_token32] = ACTIONS(2355), - [aux_sym_cmd_identifier_token33] = ACTIONS(2355), - [aux_sym_cmd_identifier_token34] = ACTIONS(2355), - [aux_sym_cmd_identifier_token35] = ACTIONS(2355), - [aux_sym_cmd_identifier_token36] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_null] = ACTIONS(2355), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2355), - [aux_sym_cmd_identifier_token40] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_export_DASHenv] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_error] = ACTIONS(2355), - [anon_sym_list] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_in] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_make] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_source] = ACTIONS(2355), - [anon_sym_source_DASHenv] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_hide_DASHenv] = ACTIONS(2355), - [anon_sym_overlay] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2355), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), - [aux_sym__val_number_token1] = ACTIONS(2355), - [aux_sym__val_number_token2] = ACTIONS(2355), - [aux_sym__val_number_token3] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2355), - [sym__str_back_ticks] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), - [sym__entry_separator] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2355), + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_alias] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_let_DASHenv] = ACTIONS(2366), + [anon_sym_mut] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [aux_sym_cmd_identifier_token1] = ACTIONS(2366), + [aux_sym_cmd_identifier_token2] = ACTIONS(2366), + [aux_sym_cmd_identifier_token3] = ACTIONS(2366), + [aux_sym_cmd_identifier_token4] = ACTIONS(2366), + [aux_sym_cmd_identifier_token5] = ACTIONS(2366), + [aux_sym_cmd_identifier_token6] = ACTIONS(2366), + [aux_sym_cmd_identifier_token7] = ACTIONS(2366), + [aux_sym_cmd_identifier_token8] = ACTIONS(2366), + [aux_sym_cmd_identifier_token9] = ACTIONS(2366), + [aux_sym_cmd_identifier_token10] = ACTIONS(2366), + [aux_sym_cmd_identifier_token11] = ACTIONS(2366), + [aux_sym_cmd_identifier_token12] = ACTIONS(2366), + [aux_sym_cmd_identifier_token13] = ACTIONS(2366), + [aux_sym_cmd_identifier_token14] = ACTIONS(2366), + [aux_sym_cmd_identifier_token15] = ACTIONS(2366), + [aux_sym_cmd_identifier_token16] = ACTIONS(2366), + [aux_sym_cmd_identifier_token17] = ACTIONS(2366), + [aux_sym_cmd_identifier_token18] = ACTIONS(2366), + [aux_sym_cmd_identifier_token19] = ACTIONS(2366), + [aux_sym_cmd_identifier_token20] = ACTIONS(2366), + [aux_sym_cmd_identifier_token21] = ACTIONS(2366), + [aux_sym_cmd_identifier_token22] = ACTIONS(2366), + [aux_sym_cmd_identifier_token23] = ACTIONS(2366), + [aux_sym_cmd_identifier_token24] = ACTIONS(2366), + [aux_sym_cmd_identifier_token25] = ACTIONS(2366), + [aux_sym_cmd_identifier_token26] = ACTIONS(2366), + [aux_sym_cmd_identifier_token27] = ACTIONS(2366), + [aux_sym_cmd_identifier_token28] = ACTIONS(2366), + [aux_sym_cmd_identifier_token29] = ACTIONS(2366), + [aux_sym_cmd_identifier_token30] = ACTIONS(2366), + [aux_sym_cmd_identifier_token31] = ACTIONS(2366), + [aux_sym_cmd_identifier_token32] = ACTIONS(2366), + [aux_sym_cmd_identifier_token33] = ACTIONS(2366), + [aux_sym_cmd_identifier_token34] = ACTIONS(2366), + [aux_sym_cmd_identifier_token35] = ACTIONS(2366), + [aux_sym_cmd_identifier_token36] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2366), + [anon_sym_false] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2366), + [aux_sym_cmd_identifier_token38] = ACTIONS(2366), + [aux_sym_cmd_identifier_token39] = ACTIONS(2366), + [aux_sym_cmd_identifier_token40] = ACTIONS(2366), + [anon_sym_def] = ACTIONS(2366), + [anon_sym_export_DASHenv] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_RBRACK] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_error] = ACTIONS(2366), + [anon_sym_list] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_make] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_catch] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_source] = ACTIONS(2366), + [anon_sym_source_DASHenv] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2366), + [anon_sym_hide] = ACTIONS(2366), + [anon_sym_hide_DASHenv] = ACTIONS(2366), + [anon_sym_overlay] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), + [aux_sym__val_number_decimal_token1] = ACTIONS(2366), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2366), + [aux_sym__val_number_decimal_token4] = ACTIONS(2366), + [aux_sym__val_number_token1] = ACTIONS(2366), + [aux_sym__val_number_token2] = ACTIONS(2366), + [aux_sym__val_number_token3] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym__str_single_quotes] = ACTIONS(2366), + [sym__str_back_ticks] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), + [sym__entry_separator] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2366), [anon_sym_POUND] = ACTIONS(3), }, - [504] = { - [sym_comment] = STATE(504), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2359), - [aux_sym_cmd_identifier_token3] = ACTIONS(2359), - [aux_sym_cmd_identifier_token4] = ACTIONS(2359), - [aux_sym_cmd_identifier_token5] = ACTIONS(2359), - [aux_sym_cmd_identifier_token6] = ACTIONS(2359), - [aux_sym_cmd_identifier_token7] = ACTIONS(2359), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2359), - [aux_sym_cmd_identifier_token11] = ACTIONS(2359), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2359), - [aux_sym_cmd_identifier_token17] = ACTIONS(2359), - [aux_sym_cmd_identifier_token18] = ACTIONS(2359), - [aux_sym_cmd_identifier_token19] = ACTIONS(2359), - [aux_sym_cmd_identifier_token20] = ACTIONS(2359), - [aux_sym_cmd_identifier_token21] = ACTIONS(2359), - [aux_sym_cmd_identifier_token22] = ACTIONS(2359), - [aux_sym_cmd_identifier_token23] = ACTIONS(2359), - [aux_sym_cmd_identifier_token24] = ACTIONS(2359), - [aux_sym_cmd_identifier_token25] = ACTIONS(2359), - [aux_sym_cmd_identifier_token26] = ACTIONS(2359), - [aux_sym_cmd_identifier_token27] = ACTIONS(2359), - [aux_sym_cmd_identifier_token28] = ACTIONS(2359), - [aux_sym_cmd_identifier_token29] = ACTIONS(2359), - [aux_sym_cmd_identifier_token30] = ACTIONS(2359), - [aux_sym_cmd_identifier_token31] = ACTIONS(2359), - [aux_sym_cmd_identifier_token32] = ACTIONS(2359), - [aux_sym_cmd_identifier_token33] = ACTIONS(2359), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2359), - [aux_sym_cmd_identifier_token36] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_null] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_list] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_decimal_token4] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), - [sym__entry_separator] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2359), + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [aux_sym__immediate_decimal_token2] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, - [505] = { - [sym__expr_parenthesized_immediate] = STATE(7305), - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(247), - }, - [506] = { - [sym__expr_parenthesized_immediate] = STATE(7305), - [sym_comment] = STATE(506), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_alias] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_let_DASHenv] = ACTIONS(2023), - [anon_sym_mut] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [aux_sym_cmd_identifier_token1] = ACTIONS(2023), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2023), - [aux_sym_cmd_identifier_token9] = ACTIONS(2023), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2023), - [aux_sym_cmd_identifier_token13] = ACTIONS(2023), - [aux_sym_cmd_identifier_token14] = ACTIONS(2023), - [aux_sym_cmd_identifier_token15] = ACTIONS(2023), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2023), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2023), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2023), - [anon_sym_export_DASHenv] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_module] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2023), - [anon_sym_list] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_in] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_make] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_source] = ACTIONS(2023), - [anon_sym_source_DASHenv] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_hide_DASHenv] = ACTIONS(2023), - [anon_sym_overlay] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_as] = ACTIONS(2023), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2023), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(247), - }, - [507] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [aux_sym_cmd_identifier_token1] = ACTIONS(2263), - [aux_sym_cmd_identifier_token2] = ACTIONS(2263), - [aux_sym_cmd_identifier_token3] = ACTIONS(2263), - [aux_sym_cmd_identifier_token4] = ACTIONS(2263), - [aux_sym_cmd_identifier_token5] = ACTIONS(2263), - [aux_sym_cmd_identifier_token6] = ACTIONS(2263), - [aux_sym_cmd_identifier_token7] = ACTIONS(2263), - [aux_sym_cmd_identifier_token8] = ACTIONS(2263), - [aux_sym_cmd_identifier_token9] = ACTIONS(2263), - [aux_sym_cmd_identifier_token10] = ACTIONS(2263), - [aux_sym_cmd_identifier_token11] = ACTIONS(2263), - [aux_sym_cmd_identifier_token12] = ACTIONS(2263), - [aux_sym_cmd_identifier_token13] = ACTIONS(2263), - [aux_sym_cmd_identifier_token14] = ACTIONS(2263), - [aux_sym_cmd_identifier_token15] = ACTIONS(2263), - [aux_sym_cmd_identifier_token16] = ACTIONS(2263), - [aux_sym_cmd_identifier_token17] = ACTIONS(2263), - [aux_sym_cmd_identifier_token18] = ACTIONS(2263), - [aux_sym_cmd_identifier_token19] = ACTIONS(2263), - [aux_sym_cmd_identifier_token20] = ACTIONS(2263), - [aux_sym_cmd_identifier_token21] = ACTIONS(2263), - [aux_sym_cmd_identifier_token22] = ACTIONS(2263), - [aux_sym_cmd_identifier_token23] = ACTIONS(2263), - [aux_sym_cmd_identifier_token24] = ACTIONS(2263), - [aux_sym_cmd_identifier_token25] = ACTIONS(2263), - [aux_sym_cmd_identifier_token26] = ACTIONS(2263), - [aux_sym_cmd_identifier_token27] = ACTIONS(2263), - [aux_sym_cmd_identifier_token28] = ACTIONS(2263), - [aux_sym_cmd_identifier_token29] = ACTIONS(2263), - [aux_sym_cmd_identifier_token30] = ACTIONS(2263), - [aux_sym_cmd_identifier_token31] = ACTIONS(2263), - [aux_sym_cmd_identifier_token32] = ACTIONS(2263), - [aux_sym_cmd_identifier_token33] = ACTIONS(2263), - [aux_sym_cmd_identifier_token34] = ACTIONS(2263), - [aux_sym_cmd_identifier_token35] = ACTIONS(2263), - [aux_sym_cmd_identifier_token36] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [aux_sym_cmd_identifier_token38] = ACTIONS(2263), - [aux_sym_cmd_identifier_token39] = ACTIONS(2265), - [aux_sym_cmd_identifier_token40] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_list] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_make] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_as] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym__str_single_quotes] = ACTIONS(2265), - [sym__str_back_ticks] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_POUND] = ACTIONS(247), - }, - [508] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [aux_sym_cmd_identifier_token1] = ACTIONS(2267), - [aux_sym_cmd_identifier_token2] = ACTIONS(2267), - [aux_sym_cmd_identifier_token3] = ACTIONS(2267), - [aux_sym_cmd_identifier_token4] = ACTIONS(2267), - [aux_sym_cmd_identifier_token5] = ACTIONS(2267), - [aux_sym_cmd_identifier_token6] = ACTIONS(2267), - [aux_sym_cmd_identifier_token7] = ACTIONS(2267), - [aux_sym_cmd_identifier_token8] = ACTIONS(2267), - [aux_sym_cmd_identifier_token9] = ACTIONS(2267), - [aux_sym_cmd_identifier_token10] = ACTIONS(2267), - [aux_sym_cmd_identifier_token11] = ACTIONS(2267), - [aux_sym_cmd_identifier_token12] = ACTIONS(2267), - [aux_sym_cmd_identifier_token13] = ACTIONS(2267), - [aux_sym_cmd_identifier_token14] = ACTIONS(2267), - [aux_sym_cmd_identifier_token15] = ACTIONS(2267), - [aux_sym_cmd_identifier_token16] = ACTIONS(2267), - [aux_sym_cmd_identifier_token17] = ACTIONS(2267), - [aux_sym_cmd_identifier_token18] = ACTIONS(2267), - [aux_sym_cmd_identifier_token19] = ACTIONS(2267), - [aux_sym_cmd_identifier_token20] = ACTIONS(2267), - [aux_sym_cmd_identifier_token21] = ACTIONS(2267), - [aux_sym_cmd_identifier_token22] = ACTIONS(2267), - [aux_sym_cmd_identifier_token23] = ACTIONS(2267), - [aux_sym_cmd_identifier_token24] = ACTIONS(2267), - [aux_sym_cmd_identifier_token25] = ACTIONS(2267), - [aux_sym_cmd_identifier_token26] = ACTIONS(2267), - [aux_sym_cmd_identifier_token27] = ACTIONS(2267), - [aux_sym_cmd_identifier_token28] = ACTIONS(2267), - [aux_sym_cmd_identifier_token29] = ACTIONS(2267), - [aux_sym_cmd_identifier_token30] = ACTIONS(2267), - [aux_sym_cmd_identifier_token31] = ACTIONS(2267), - [aux_sym_cmd_identifier_token32] = ACTIONS(2267), - [aux_sym_cmd_identifier_token33] = ACTIONS(2267), - [aux_sym_cmd_identifier_token34] = ACTIONS(2267), - [aux_sym_cmd_identifier_token35] = ACTIONS(2267), - [aux_sym_cmd_identifier_token36] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [aux_sym_cmd_identifier_token38] = ACTIONS(2267), - [aux_sym_cmd_identifier_token39] = ACTIONS(2269), - [aux_sym_cmd_identifier_token40] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_list] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_make] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_else] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_catch] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2267), - [aux_sym__val_number_decimal_token2] = ACTIONS(2269), - [aux_sym__val_number_decimal_token3] = ACTIONS(2269), - [aux_sym__val_number_decimal_token4] = ACTIONS(2269), - [aux_sym__val_number_token1] = ACTIONS(2269), - [aux_sym__val_number_token2] = ACTIONS(2269), - [aux_sym__val_number_token3] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [sym__str_single_quotes] = ACTIONS(2269), - [sym__str_back_ticks] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(247), - }, - [509] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_let_DASHenv] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [aux_sym_cmd_identifier_token1] = ACTIONS(2273), - [aux_sym_cmd_identifier_token2] = ACTIONS(2273), - [aux_sym_cmd_identifier_token3] = ACTIONS(2273), - [aux_sym_cmd_identifier_token4] = ACTIONS(2273), - [aux_sym_cmd_identifier_token5] = ACTIONS(2273), - [aux_sym_cmd_identifier_token6] = ACTIONS(2273), - [aux_sym_cmd_identifier_token7] = ACTIONS(2273), - [aux_sym_cmd_identifier_token8] = ACTIONS(2273), - [aux_sym_cmd_identifier_token9] = ACTIONS(2273), - [aux_sym_cmd_identifier_token10] = ACTIONS(2273), - [aux_sym_cmd_identifier_token11] = ACTIONS(2273), - [aux_sym_cmd_identifier_token12] = ACTIONS(2273), - [aux_sym_cmd_identifier_token13] = ACTIONS(2273), - [aux_sym_cmd_identifier_token14] = ACTIONS(2273), - [aux_sym_cmd_identifier_token15] = ACTIONS(2273), - [aux_sym_cmd_identifier_token16] = ACTIONS(2273), - [aux_sym_cmd_identifier_token17] = ACTIONS(2273), - [aux_sym_cmd_identifier_token18] = ACTIONS(2273), - [aux_sym_cmd_identifier_token19] = ACTIONS(2273), - [aux_sym_cmd_identifier_token20] = ACTIONS(2273), - [aux_sym_cmd_identifier_token21] = ACTIONS(2273), - [aux_sym_cmd_identifier_token22] = ACTIONS(2273), - [aux_sym_cmd_identifier_token23] = ACTIONS(2273), - [aux_sym_cmd_identifier_token24] = ACTIONS(2273), - [aux_sym_cmd_identifier_token25] = ACTIONS(2273), - [aux_sym_cmd_identifier_token26] = ACTIONS(2273), - [aux_sym_cmd_identifier_token27] = ACTIONS(2273), - [aux_sym_cmd_identifier_token28] = ACTIONS(2273), - [aux_sym_cmd_identifier_token29] = ACTIONS(2273), - [aux_sym_cmd_identifier_token30] = ACTIONS(2273), - [aux_sym_cmd_identifier_token31] = ACTIONS(2273), - [aux_sym_cmd_identifier_token32] = ACTIONS(2273), - [aux_sym_cmd_identifier_token33] = ACTIONS(2273), - [aux_sym_cmd_identifier_token34] = ACTIONS(2273), - [aux_sym_cmd_identifier_token35] = ACTIONS(2273), - [aux_sym_cmd_identifier_token36] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_export_DASHenv] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_module] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_make] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_catch] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_source] = ACTIONS(2273), - [anon_sym_source_DASHenv] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_hide] = ACTIONS(2273), - [anon_sym_hide_DASHenv] = ACTIONS(2273), - [anon_sym_overlay] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_decimal_token4] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(247), - }, - [510] = { - [sym__expr_parenthesized_immediate] = STATE(7795), - [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_alias] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_let_DASHenv] = ACTIONS(2277), - [anon_sym_mut] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [aux_sym_cmd_identifier_token1] = ACTIONS(2277), - [aux_sym_cmd_identifier_token2] = ACTIONS(2277), - [aux_sym_cmd_identifier_token3] = ACTIONS(2277), - [aux_sym_cmd_identifier_token4] = ACTIONS(2277), - [aux_sym_cmd_identifier_token5] = ACTIONS(2277), - [aux_sym_cmd_identifier_token6] = ACTIONS(2277), - [aux_sym_cmd_identifier_token7] = ACTIONS(2277), - [aux_sym_cmd_identifier_token8] = ACTIONS(2277), - [aux_sym_cmd_identifier_token9] = ACTIONS(2277), - [aux_sym_cmd_identifier_token10] = ACTIONS(2277), - [aux_sym_cmd_identifier_token11] = ACTIONS(2277), - [aux_sym_cmd_identifier_token12] = ACTIONS(2277), - [aux_sym_cmd_identifier_token13] = ACTIONS(2277), - [aux_sym_cmd_identifier_token14] = ACTIONS(2277), - [aux_sym_cmd_identifier_token15] = ACTIONS(2277), - [aux_sym_cmd_identifier_token16] = ACTIONS(2277), - [aux_sym_cmd_identifier_token17] = ACTIONS(2277), - [aux_sym_cmd_identifier_token18] = ACTIONS(2277), - [aux_sym_cmd_identifier_token19] = ACTIONS(2277), - [aux_sym_cmd_identifier_token20] = ACTIONS(2277), - [aux_sym_cmd_identifier_token21] = ACTIONS(2277), - [aux_sym_cmd_identifier_token22] = ACTIONS(2277), - [aux_sym_cmd_identifier_token23] = ACTIONS(2277), - [aux_sym_cmd_identifier_token24] = ACTIONS(2277), - [aux_sym_cmd_identifier_token25] = ACTIONS(2277), - [aux_sym_cmd_identifier_token26] = ACTIONS(2277), - [aux_sym_cmd_identifier_token27] = ACTIONS(2277), - [aux_sym_cmd_identifier_token28] = ACTIONS(2277), - [aux_sym_cmd_identifier_token29] = ACTIONS(2277), - [aux_sym_cmd_identifier_token30] = ACTIONS(2277), - [aux_sym_cmd_identifier_token31] = ACTIONS(2277), - [aux_sym_cmd_identifier_token32] = ACTIONS(2277), - [aux_sym_cmd_identifier_token33] = ACTIONS(2277), - [aux_sym_cmd_identifier_token34] = ACTIONS(2277), - [aux_sym_cmd_identifier_token35] = ACTIONS(2277), - [aux_sym_cmd_identifier_token36] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [anon_sym_null] = ACTIONS(2279), - [aux_sym_cmd_identifier_token38] = ACTIONS(2277), - [aux_sym_cmd_identifier_token39] = ACTIONS(2279), - [aux_sym_cmd_identifier_token40] = ACTIONS(2279), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_export_DASHenv] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_error] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_in] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_make] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_catch] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_source] = ACTIONS(2277), - [anon_sym_source_DASHenv] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_hide] = ACTIONS(2277), - [anon_sym_hide_DASHenv] = ACTIONS(2277), - [anon_sym_overlay] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2279), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2279), - [aux_sym__val_number_decimal_token3] = ACTIONS(2279), - [aux_sym__val_number_decimal_token4] = ACTIONS(2279), - [aux_sym__val_number_token1] = ACTIONS(2279), - [aux_sym__val_number_token2] = ACTIONS(2279), - [aux_sym__val_number_token3] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(247), - }, - [511] = { - [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_list] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [sym__entry_separator] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [527] = { + [sym_comment] = STATE(527), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_alias] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_let_DASHenv] = ACTIONS(1046), + [anon_sym_mut] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1046), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1046), + [aux_sym_cmd_identifier_token9] = ACTIONS(1046), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1046), + [aux_sym_cmd_identifier_token13] = ACTIONS(1046), + [aux_sym_cmd_identifier_token14] = ACTIONS(1046), + [aux_sym_cmd_identifier_token15] = ACTIONS(1046), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1046), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_export_DASHenv] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1046), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_make] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_source] = ACTIONS(1046), + [anon_sym_source_DASHenv] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_hide] = ACTIONS(1046), + [anon_sym_hide_DASHenv] = ACTIONS(1046), + [anon_sym_overlay] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [sym__entry_separator] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(3), }, - [512] = { - [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_list] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_new] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [sym__entry_separator] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), + [528] = { + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [aux_sym__immediate_decimal_token2] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [513] = { - [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_list] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1676), + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(2372), + [aux_sym__immediate_decimal_token2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, - [514] = { - [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(2364), - [anon_sym_alias] = ACTIONS(2364), - [anon_sym_let] = ACTIONS(2364), - [anon_sym_let_DASHenv] = ACTIONS(2364), - [anon_sym_mut] = ACTIONS(2364), - [anon_sym_const] = ACTIONS(2364), - [aux_sym_cmd_identifier_token1] = ACTIONS(2364), - [aux_sym_cmd_identifier_token2] = ACTIONS(2364), - [aux_sym_cmd_identifier_token3] = ACTIONS(2364), - [aux_sym_cmd_identifier_token4] = ACTIONS(2364), - [aux_sym_cmd_identifier_token5] = ACTIONS(2364), - [aux_sym_cmd_identifier_token6] = ACTIONS(2364), - [aux_sym_cmd_identifier_token7] = ACTIONS(2364), - [aux_sym_cmd_identifier_token8] = ACTIONS(2364), - [aux_sym_cmd_identifier_token9] = ACTIONS(2364), - [aux_sym_cmd_identifier_token10] = ACTIONS(2364), - [aux_sym_cmd_identifier_token11] = ACTIONS(2364), - [aux_sym_cmd_identifier_token12] = ACTIONS(2364), - [aux_sym_cmd_identifier_token13] = ACTIONS(2364), - [aux_sym_cmd_identifier_token14] = ACTIONS(2364), - [aux_sym_cmd_identifier_token15] = ACTIONS(2364), - [aux_sym_cmd_identifier_token16] = ACTIONS(2364), - [aux_sym_cmd_identifier_token17] = ACTIONS(2364), - [aux_sym_cmd_identifier_token18] = ACTIONS(2364), - [aux_sym_cmd_identifier_token19] = ACTIONS(2364), - [aux_sym_cmd_identifier_token20] = ACTIONS(2364), - [aux_sym_cmd_identifier_token21] = ACTIONS(2364), - [aux_sym_cmd_identifier_token22] = ACTIONS(2364), - [aux_sym_cmd_identifier_token23] = ACTIONS(2364), - [aux_sym_cmd_identifier_token24] = ACTIONS(2364), - [aux_sym_cmd_identifier_token25] = ACTIONS(2364), - [aux_sym_cmd_identifier_token26] = ACTIONS(2364), - [aux_sym_cmd_identifier_token27] = ACTIONS(2364), - [aux_sym_cmd_identifier_token28] = ACTIONS(2364), - [aux_sym_cmd_identifier_token29] = ACTIONS(2364), - [aux_sym_cmd_identifier_token30] = ACTIONS(2364), - [aux_sym_cmd_identifier_token31] = ACTIONS(2364), - [aux_sym_cmd_identifier_token32] = ACTIONS(2364), - [aux_sym_cmd_identifier_token33] = ACTIONS(2364), - [aux_sym_cmd_identifier_token34] = ACTIONS(2364), - [aux_sym_cmd_identifier_token35] = ACTIONS(2364), - [aux_sym_cmd_identifier_token36] = ACTIONS(2364), - [anon_sym_true] = ACTIONS(2364), - [anon_sym_false] = ACTIONS(2364), - [anon_sym_null] = ACTIONS(2364), - [aux_sym_cmd_identifier_token38] = ACTIONS(2364), - [aux_sym_cmd_identifier_token39] = ACTIONS(2364), - [aux_sym_cmd_identifier_token40] = ACTIONS(2364), - [anon_sym_def] = ACTIONS(2364), - [anon_sym_export_DASHenv] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_module] = ACTIONS(2364), - [anon_sym_use] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_DOLLAR] = ACTIONS(2364), - [anon_sym_error] = ACTIONS(2364), - [anon_sym_list] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_loop] = ACTIONS(2364), - [anon_sym_make] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_match] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_catch] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_source] = ACTIONS(2364), - [anon_sym_source_DASHenv] = ACTIONS(2364), - [anon_sym_register] = ACTIONS(2364), - [anon_sym_hide] = ACTIONS(2364), - [anon_sym_hide_DASHenv] = ACTIONS(2364), - [anon_sym_overlay] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), - [aux_sym__val_number_decimal_token1] = ACTIONS(2364), - [aux_sym__val_number_decimal_token2] = ACTIONS(2364), - [aux_sym__val_number_decimal_token3] = ACTIONS(2364), - [aux_sym__val_number_decimal_token4] = ACTIONS(2364), - [aux_sym__val_number_token1] = ACTIONS(2364), - [aux_sym__val_number_token2] = ACTIONS(2364), - [aux_sym__val_number_token3] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2364), - [sym__str_single_quotes] = ACTIONS(2364), - [sym__str_back_ticks] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), - [sym__entry_separator] = ACTIONS(2366), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(3), - }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(2364), - [anon_sym_alias] = ACTIONS(2364), - [anon_sym_let] = ACTIONS(2364), - [anon_sym_let_DASHenv] = ACTIONS(2364), - [anon_sym_mut] = ACTIONS(2364), - [anon_sym_const] = ACTIONS(2364), - [aux_sym_cmd_identifier_token1] = ACTIONS(2364), - [aux_sym_cmd_identifier_token2] = ACTIONS(2364), - [aux_sym_cmd_identifier_token3] = ACTIONS(2364), - [aux_sym_cmd_identifier_token4] = ACTIONS(2364), - [aux_sym_cmd_identifier_token5] = ACTIONS(2364), - [aux_sym_cmd_identifier_token6] = ACTIONS(2364), - [aux_sym_cmd_identifier_token7] = ACTIONS(2364), - [aux_sym_cmd_identifier_token8] = ACTIONS(2364), - [aux_sym_cmd_identifier_token9] = ACTIONS(2364), - [aux_sym_cmd_identifier_token10] = ACTIONS(2364), - [aux_sym_cmd_identifier_token11] = ACTIONS(2364), - [aux_sym_cmd_identifier_token12] = ACTIONS(2364), - [aux_sym_cmd_identifier_token13] = ACTIONS(2364), - [aux_sym_cmd_identifier_token14] = ACTIONS(2364), - [aux_sym_cmd_identifier_token15] = ACTIONS(2364), - [aux_sym_cmd_identifier_token16] = ACTIONS(2364), - [aux_sym_cmd_identifier_token17] = ACTIONS(2364), - [aux_sym_cmd_identifier_token18] = ACTIONS(2364), - [aux_sym_cmd_identifier_token19] = ACTIONS(2364), - [aux_sym_cmd_identifier_token20] = ACTIONS(2364), - [aux_sym_cmd_identifier_token21] = ACTIONS(2364), - [aux_sym_cmd_identifier_token22] = ACTIONS(2364), - [aux_sym_cmd_identifier_token23] = ACTIONS(2364), - [aux_sym_cmd_identifier_token24] = ACTIONS(2364), - [aux_sym_cmd_identifier_token25] = ACTIONS(2364), - [aux_sym_cmd_identifier_token26] = ACTIONS(2364), - [aux_sym_cmd_identifier_token27] = ACTIONS(2364), - [aux_sym_cmd_identifier_token28] = ACTIONS(2364), - [aux_sym_cmd_identifier_token29] = ACTIONS(2364), - [aux_sym_cmd_identifier_token30] = ACTIONS(2364), - [aux_sym_cmd_identifier_token31] = ACTIONS(2364), - [aux_sym_cmd_identifier_token32] = ACTIONS(2364), - [aux_sym_cmd_identifier_token33] = ACTIONS(2364), - [aux_sym_cmd_identifier_token34] = ACTIONS(2364), - [aux_sym_cmd_identifier_token35] = ACTIONS(2364), - [aux_sym_cmd_identifier_token36] = ACTIONS(2364), - [anon_sym_true] = ACTIONS(2364), - [anon_sym_false] = ACTIONS(2364), - [anon_sym_null] = ACTIONS(2364), - [aux_sym_cmd_identifier_token38] = ACTIONS(2364), - [aux_sym_cmd_identifier_token39] = ACTIONS(2364), - [aux_sym_cmd_identifier_token40] = ACTIONS(2364), - [anon_sym_def] = ACTIONS(2364), - [anon_sym_export_DASHenv] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_module] = ACTIONS(2364), - [anon_sym_use] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_DOLLAR] = ACTIONS(2364), - [anon_sym_error] = ACTIONS(2364), - [anon_sym_list] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_loop] = ACTIONS(2364), - [anon_sym_make] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_match] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_catch] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_source] = ACTIONS(2364), - [anon_sym_source_DASHenv] = ACTIONS(2364), - [anon_sym_register] = ACTIONS(2364), - [anon_sym_hide] = ACTIONS(2364), - [anon_sym_hide_DASHenv] = ACTIONS(2364), - [anon_sym_overlay] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), - [aux_sym__val_number_decimal_token1] = ACTIONS(2364), - [aux_sym__val_number_decimal_token2] = ACTIONS(2364), - [aux_sym__val_number_decimal_token3] = ACTIONS(2364), - [aux_sym__val_number_decimal_token4] = ACTIONS(2364), - [aux_sym__val_number_token1] = ACTIONS(2364), - [aux_sym__val_number_token2] = ACTIONS(2364), - [aux_sym__val_number_token3] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2364), - [sym__str_single_quotes] = ACTIONS(2364), - [sym__str_back_ticks] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), - [sym__entry_separator] = ACTIONS(2366), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(3), - }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(2368), - [anon_sym_alias] = ACTIONS(2368), - [anon_sym_let] = ACTIONS(2368), - [anon_sym_let_DASHenv] = ACTIONS(2368), - [anon_sym_mut] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [aux_sym_cmd_identifier_token1] = ACTIONS(2368), - [aux_sym_cmd_identifier_token2] = ACTIONS(2368), - [aux_sym_cmd_identifier_token3] = ACTIONS(2368), - [aux_sym_cmd_identifier_token4] = ACTIONS(2368), - [aux_sym_cmd_identifier_token5] = ACTIONS(2368), - [aux_sym_cmd_identifier_token6] = ACTIONS(2368), - [aux_sym_cmd_identifier_token7] = ACTIONS(2368), - [aux_sym_cmd_identifier_token8] = ACTIONS(2368), - [aux_sym_cmd_identifier_token9] = ACTIONS(2368), - [aux_sym_cmd_identifier_token10] = ACTIONS(2368), - [aux_sym_cmd_identifier_token11] = ACTIONS(2368), - [aux_sym_cmd_identifier_token12] = ACTIONS(2368), - [aux_sym_cmd_identifier_token13] = ACTIONS(2368), - [aux_sym_cmd_identifier_token14] = ACTIONS(2368), - [aux_sym_cmd_identifier_token15] = ACTIONS(2368), - [aux_sym_cmd_identifier_token16] = ACTIONS(2368), - [aux_sym_cmd_identifier_token17] = ACTIONS(2368), - [aux_sym_cmd_identifier_token18] = ACTIONS(2368), - [aux_sym_cmd_identifier_token19] = ACTIONS(2368), - [aux_sym_cmd_identifier_token20] = ACTIONS(2368), - [aux_sym_cmd_identifier_token21] = ACTIONS(2368), - [aux_sym_cmd_identifier_token22] = ACTIONS(2368), - [aux_sym_cmd_identifier_token23] = ACTIONS(2368), - [aux_sym_cmd_identifier_token24] = ACTIONS(2368), - [aux_sym_cmd_identifier_token25] = ACTIONS(2368), - [aux_sym_cmd_identifier_token26] = ACTIONS(2368), - [aux_sym_cmd_identifier_token27] = ACTIONS(2368), - [aux_sym_cmd_identifier_token28] = ACTIONS(2368), - [aux_sym_cmd_identifier_token29] = ACTIONS(2368), - [aux_sym_cmd_identifier_token30] = ACTIONS(2368), - [aux_sym_cmd_identifier_token31] = ACTIONS(2368), - [aux_sym_cmd_identifier_token32] = ACTIONS(2368), - [aux_sym_cmd_identifier_token33] = ACTIONS(2368), - [aux_sym_cmd_identifier_token34] = ACTIONS(2368), - [aux_sym_cmd_identifier_token35] = ACTIONS(2368), - [aux_sym_cmd_identifier_token36] = ACTIONS(2368), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [anon_sym_null] = ACTIONS(2368), - [aux_sym_cmd_identifier_token38] = ACTIONS(2368), - [aux_sym_cmd_identifier_token39] = ACTIONS(2368), - [aux_sym_cmd_identifier_token40] = ACTIONS(2368), - [anon_sym_def] = ACTIONS(2368), - [anon_sym_export_DASHenv] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym_module] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2368), - [anon_sym_error] = ACTIONS(2368), - [anon_sym_list] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_in] = ACTIONS(2368), - [anon_sym_loop] = ACTIONS(2368), - [anon_sym_make] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_else] = ACTIONS(2368), - [anon_sym_match] = ACTIONS(2368), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_source] = ACTIONS(2368), - [anon_sym_source_DASHenv] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_hide] = ACTIONS(2368), - [anon_sym_hide_DASHenv] = ACTIONS(2368), - [anon_sym_overlay] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_as] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), - [aux_sym__val_number_decimal_token1] = ACTIONS(2368), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2368), - [aux_sym__val_number_decimal_token4] = ACTIONS(2368), - [aux_sym__val_number_token1] = ACTIONS(2368), - [aux_sym__val_number_token2] = ACTIONS(2368), - [aux_sym__val_number_token3] = ACTIONS(2368), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym__str_single_quotes] = ACTIONS(2368), - [sym__str_back_ticks] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), - [sym__entry_separator] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(3), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(2372), - [anon_sym_alias] = ACTIONS(2372), - [anon_sym_let] = ACTIONS(2372), - [anon_sym_let_DASHenv] = ACTIONS(2372), - [anon_sym_mut] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [aux_sym_cmd_identifier_token1] = ACTIONS(2372), - [aux_sym_cmd_identifier_token2] = ACTIONS(2372), - [aux_sym_cmd_identifier_token3] = ACTIONS(2372), - [aux_sym_cmd_identifier_token4] = ACTIONS(2372), - [aux_sym_cmd_identifier_token5] = ACTIONS(2372), - [aux_sym_cmd_identifier_token6] = ACTIONS(2372), - [aux_sym_cmd_identifier_token7] = ACTIONS(2372), - [aux_sym_cmd_identifier_token8] = ACTIONS(2372), - [aux_sym_cmd_identifier_token9] = ACTIONS(2372), - [aux_sym_cmd_identifier_token10] = ACTIONS(2372), - [aux_sym_cmd_identifier_token11] = ACTIONS(2372), - [aux_sym_cmd_identifier_token12] = ACTIONS(2372), - [aux_sym_cmd_identifier_token13] = ACTIONS(2372), - [aux_sym_cmd_identifier_token14] = ACTIONS(2372), - [aux_sym_cmd_identifier_token15] = ACTIONS(2372), - [aux_sym_cmd_identifier_token16] = ACTIONS(2372), - [aux_sym_cmd_identifier_token17] = ACTIONS(2372), - [aux_sym_cmd_identifier_token18] = ACTIONS(2372), - [aux_sym_cmd_identifier_token19] = ACTIONS(2372), - [aux_sym_cmd_identifier_token20] = ACTIONS(2372), - [aux_sym_cmd_identifier_token21] = ACTIONS(2372), - [aux_sym_cmd_identifier_token22] = ACTIONS(2372), - [aux_sym_cmd_identifier_token23] = ACTIONS(2372), - [aux_sym_cmd_identifier_token24] = ACTIONS(2372), - [aux_sym_cmd_identifier_token25] = ACTIONS(2372), - [aux_sym_cmd_identifier_token26] = ACTIONS(2372), - [aux_sym_cmd_identifier_token27] = ACTIONS(2372), - [aux_sym_cmd_identifier_token28] = ACTIONS(2372), - [aux_sym_cmd_identifier_token29] = ACTIONS(2372), - [aux_sym_cmd_identifier_token30] = ACTIONS(2372), - [aux_sym_cmd_identifier_token31] = ACTIONS(2372), - [aux_sym_cmd_identifier_token32] = ACTIONS(2372), - [aux_sym_cmd_identifier_token33] = ACTIONS(2372), - [aux_sym_cmd_identifier_token34] = ACTIONS(2372), - [aux_sym_cmd_identifier_token35] = ACTIONS(2372), - [aux_sym_cmd_identifier_token36] = ACTIONS(2372), - [anon_sym_true] = ACTIONS(2372), - [anon_sym_false] = ACTIONS(2372), - [anon_sym_null] = ACTIONS(2372), - [aux_sym_cmd_identifier_token38] = ACTIONS(2372), - [aux_sym_cmd_identifier_token39] = ACTIONS(2372), - [aux_sym_cmd_identifier_token40] = ACTIONS(2372), - [anon_sym_def] = ACTIONS(2372), - [anon_sym_export_DASHenv] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_module] = ACTIONS(2372), - [anon_sym_use] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2372), - [anon_sym_error] = ACTIONS(2372), - [anon_sym_list] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_in] = ACTIONS(2372), - [anon_sym_loop] = ACTIONS(2372), - [anon_sym_make] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2372), - [anon_sym_match] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_source] = ACTIONS(2372), - [anon_sym_source_DASHenv] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_hide] = ACTIONS(2372), - [anon_sym_hide_DASHenv] = ACTIONS(2372), - [anon_sym_overlay] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_as] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2372), - [aux_sym__val_number_decimal_token1] = ACTIONS(2372), - [aux_sym__val_number_decimal_token2] = ACTIONS(2372), - [aux_sym__val_number_decimal_token3] = ACTIONS(2372), - [aux_sym__val_number_decimal_token4] = ACTIONS(2372), - [aux_sym__val_number_token1] = ACTIONS(2372), - [aux_sym__val_number_token2] = ACTIONS(2372), - [aux_sym__val_number_token3] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym__str_single_quotes] = ACTIONS(2372), - [sym__str_back_ticks] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), - [sym__entry_separator] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(3), - }, - [518] = { - [sym_comment] = STATE(518), + [530] = { + [sym_comment] = STATE(530), [anon_sym_export] = ACTIONS(2376), [anon_sym_alias] = ACTIONS(2376), [anon_sym_let] = ACTIONS(2376), @@ -131819,6 +134694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2376), [anon_sym_new] = ACTIONS(2376), [anon_sym_as] = ACTIONS(2376), + [anon_sym_LPAREN2] = ACTIONS(2378), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), [aux_sym__val_number_decimal_token1] = ACTIONS(2376), @@ -131836,8 +134712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2376), [anon_sym_POUND] = ACTIONS(3), }, - [519] = { - [sym_comment] = STATE(519), + [531] = { + [sym_comment] = STATE(531), [anon_sym_export] = ACTIONS(2380), [anon_sym_alias] = ACTIONS(2380), [anon_sym_let] = ACTIONS(2380), @@ -131891,6 +134767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2380), [anon_sym_module] = ACTIONS(2380), [anon_sym_use] = ACTIONS(2380), + [anon_sym_RBRACK] = ACTIONS(2380), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_DOLLAR] = ACTIONS(2380), [anon_sym_error] = ACTIONS(2380), @@ -131936,8 +134813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2380), [anon_sym_POUND] = ACTIONS(3), }, - [520] = { - [sym_comment] = STATE(520), + [532] = { + [sym_comment] = STATE(532), [anon_sym_export] = ACTIONS(2384), [anon_sym_alias] = ACTIONS(2384), [anon_sym_let] = ACTIONS(2384), @@ -131991,6 +134868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2384), [anon_sym_module] = ACTIONS(2384), [anon_sym_use] = ACTIONS(2384), + [anon_sym_RBRACK] = ACTIONS(2384), [anon_sym_LPAREN] = ACTIONS(2384), [anon_sym_DOLLAR] = ACTIONS(2384), [anon_sym_error] = ACTIONS(2384), @@ -132036,8 +134914,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_POUND] = ACTIONS(3), }, - [521] = { - [sym_comment] = STATE(521), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [anon_sym_null] = ACTIONS(1560), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1560), + [aux_sym_cmd_identifier_token40] = ACTIONS(1560), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), + [sym__entry_separator] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1560), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(3), + }, + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_alias] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_let_DASHenv] = ACTIONS(1832), + [anon_sym_mut] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [aux_sym_cmd_identifier_token1] = ACTIONS(1832), + [aux_sym_cmd_identifier_token2] = ACTIONS(1832), + [aux_sym_cmd_identifier_token3] = ACTIONS(1832), + [aux_sym_cmd_identifier_token4] = ACTIONS(1832), + [aux_sym_cmd_identifier_token5] = ACTIONS(1832), + [aux_sym_cmd_identifier_token6] = ACTIONS(1832), + [aux_sym_cmd_identifier_token7] = ACTIONS(1832), + [aux_sym_cmd_identifier_token8] = ACTIONS(1832), + [aux_sym_cmd_identifier_token9] = ACTIONS(1832), + [aux_sym_cmd_identifier_token10] = ACTIONS(1832), + [aux_sym_cmd_identifier_token11] = ACTIONS(1832), + [aux_sym_cmd_identifier_token12] = ACTIONS(1832), + [aux_sym_cmd_identifier_token13] = ACTIONS(1832), + [aux_sym_cmd_identifier_token14] = ACTIONS(1832), + [aux_sym_cmd_identifier_token15] = ACTIONS(1832), + [aux_sym_cmd_identifier_token16] = ACTIONS(1832), + [aux_sym_cmd_identifier_token17] = ACTIONS(1832), + [aux_sym_cmd_identifier_token18] = ACTIONS(1832), + [aux_sym_cmd_identifier_token19] = ACTIONS(1832), + [aux_sym_cmd_identifier_token20] = ACTIONS(1832), + [aux_sym_cmd_identifier_token21] = ACTIONS(1832), + [aux_sym_cmd_identifier_token22] = ACTIONS(1832), + [aux_sym_cmd_identifier_token23] = ACTIONS(1832), + [aux_sym_cmd_identifier_token24] = ACTIONS(1832), + [aux_sym_cmd_identifier_token25] = ACTIONS(1832), + [aux_sym_cmd_identifier_token26] = ACTIONS(1832), + [aux_sym_cmd_identifier_token27] = ACTIONS(1832), + [aux_sym_cmd_identifier_token28] = ACTIONS(1832), + [aux_sym_cmd_identifier_token29] = ACTIONS(1832), + [aux_sym_cmd_identifier_token30] = ACTIONS(1832), + [aux_sym_cmd_identifier_token31] = ACTIONS(1832), + [aux_sym_cmd_identifier_token32] = ACTIONS(1832), + [aux_sym_cmd_identifier_token33] = ACTIONS(1832), + [aux_sym_cmd_identifier_token34] = ACTIONS(1832), + [aux_sym_cmd_identifier_token35] = ACTIONS(1832), + [aux_sym_cmd_identifier_token36] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [anon_sym_null] = ACTIONS(1832), + [aux_sym_cmd_identifier_token38] = ACTIONS(1832), + [aux_sym_cmd_identifier_token39] = ACTIONS(1832), + [aux_sym_cmd_identifier_token40] = ACTIONS(1832), + [anon_sym_def] = ACTIONS(1832), + [anon_sym_export_DASHenv] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1832), + [anon_sym_error] = ACTIONS(1832), + [anon_sym_list] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_make] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_catch] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_source] = ACTIONS(1832), + [anon_sym_source_DASHenv] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_hide] = ACTIONS(1832), + [anon_sym_hide_DASHenv] = ACTIONS(1832), + [anon_sym_overlay] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1832), + [aux_sym__val_number_decimal_token1] = ACTIONS(1832), + [aux_sym__val_number_decimal_token2] = ACTIONS(1832), + [aux_sym__val_number_decimal_token3] = ACTIONS(1832), + [aux_sym__val_number_decimal_token4] = ACTIONS(1832), + [aux_sym__val_number_token1] = ACTIONS(1832), + [aux_sym__val_number_token2] = ACTIONS(1832), + [aux_sym__val_number_token3] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [sym__str_single_quotes] = ACTIONS(1832), + [sym__str_back_ticks] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1832), + [sym__entry_separator] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(3), + }, + [535] = { + [sym_comment] = STATE(535), [anon_sym_export] = ACTIONS(2388), [anon_sym_alias] = ACTIONS(2388), [anon_sym_let] = ACTIONS(2388), @@ -132091,6 +135171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2388), [anon_sym_module] = ACTIONS(2388), [anon_sym_use] = ACTIONS(2388), + [anon_sym_RBRACK] = ACTIONS(2388), [anon_sym_LPAREN] = ACTIONS(2388), [anon_sym_DOLLAR] = ACTIONS(2388), [anon_sym_error] = ACTIONS(2388), @@ -132136,108 +135217,1119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2388), [anon_sym_POUND] = ACTIONS(3), }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(2392), - [anon_sym_alias] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_let_DASHenv] = ACTIONS(2392), - [anon_sym_mut] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [aux_sym_cmd_identifier_token1] = ACTIONS(2392), - [aux_sym_cmd_identifier_token2] = ACTIONS(2392), - [aux_sym_cmd_identifier_token3] = ACTIONS(2392), - [aux_sym_cmd_identifier_token4] = ACTIONS(2392), - [aux_sym_cmd_identifier_token5] = ACTIONS(2392), - [aux_sym_cmd_identifier_token6] = ACTIONS(2392), - [aux_sym_cmd_identifier_token7] = ACTIONS(2392), - [aux_sym_cmd_identifier_token8] = ACTIONS(2392), - [aux_sym_cmd_identifier_token9] = ACTIONS(2392), - [aux_sym_cmd_identifier_token10] = ACTIONS(2392), - [aux_sym_cmd_identifier_token11] = ACTIONS(2392), - [aux_sym_cmd_identifier_token12] = ACTIONS(2392), - [aux_sym_cmd_identifier_token13] = ACTIONS(2392), - [aux_sym_cmd_identifier_token14] = ACTIONS(2392), - [aux_sym_cmd_identifier_token15] = ACTIONS(2392), - [aux_sym_cmd_identifier_token16] = ACTIONS(2392), - [aux_sym_cmd_identifier_token17] = ACTIONS(2392), - [aux_sym_cmd_identifier_token18] = ACTIONS(2392), - [aux_sym_cmd_identifier_token19] = ACTIONS(2392), - [aux_sym_cmd_identifier_token20] = ACTIONS(2392), - [aux_sym_cmd_identifier_token21] = ACTIONS(2392), - [aux_sym_cmd_identifier_token22] = ACTIONS(2392), - [aux_sym_cmd_identifier_token23] = ACTIONS(2392), - [aux_sym_cmd_identifier_token24] = ACTIONS(2392), - [aux_sym_cmd_identifier_token25] = ACTIONS(2392), - [aux_sym_cmd_identifier_token26] = ACTIONS(2392), - [aux_sym_cmd_identifier_token27] = ACTIONS(2392), - [aux_sym_cmd_identifier_token28] = ACTIONS(2392), - [aux_sym_cmd_identifier_token29] = ACTIONS(2392), - [aux_sym_cmd_identifier_token30] = ACTIONS(2392), - [aux_sym_cmd_identifier_token31] = ACTIONS(2392), - [aux_sym_cmd_identifier_token32] = ACTIONS(2392), - [aux_sym_cmd_identifier_token33] = ACTIONS(2392), - [aux_sym_cmd_identifier_token34] = ACTIONS(2392), - [aux_sym_cmd_identifier_token35] = ACTIONS(2392), - [aux_sym_cmd_identifier_token36] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2392), - [anon_sym_false] = ACTIONS(2392), - [anon_sym_null] = ACTIONS(2392), - [aux_sym_cmd_identifier_token38] = ACTIONS(2392), - [aux_sym_cmd_identifier_token39] = ACTIONS(2392), - [aux_sym_cmd_identifier_token40] = ACTIONS(2392), - [anon_sym_def] = ACTIONS(2392), - [anon_sym_export_DASHenv] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_module] = ACTIONS(2392), - [anon_sym_use] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_DOLLAR] = ACTIONS(2392), - [anon_sym_error] = ACTIONS(2392), - [anon_sym_list] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_in] = ACTIONS(2392), - [anon_sym_loop] = ACTIONS(2392), - [anon_sym_make] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_catch] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_source] = ACTIONS(2392), - [anon_sym_source_DASHenv] = ACTIONS(2392), - [anon_sym_register] = ACTIONS(2392), - [anon_sym_hide] = ACTIONS(2392), - [anon_sym_hide_DASHenv] = ACTIONS(2392), - [anon_sym_overlay] = ACTIONS(2392), - [anon_sym_new] = ACTIONS(2392), - [anon_sym_as] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), - [aux_sym__val_number_decimal_token1] = ACTIONS(2392), - [aux_sym__val_number_decimal_token2] = ACTIONS(2392), - [aux_sym__val_number_decimal_token3] = ACTIONS(2392), - [aux_sym__val_number_decimal_token4] = ACTIONS(2392), - [aux_sym__val_number_token1] = ACTIONS(2392), - [aux_sym__val_number_token2] = ACTIONS(2392), - [aux_sym__val_number_token3] = ACTIONS(2392), - [anon_sym_DQUOTE] = ACTIONS(2392), - [sym__str_single_quotes] = ACTIONS(2392), - [sym__str_back_ticks] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [sym__entry_separator] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2392), + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1778), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_make] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_else] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(247), + }, + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_alias] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_let_DASHenv] = ACTIONS(1050), + [anon_sym_mut] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1050), + [aux_sym_cmd_identifier_token4] = ACTIONS(1050), + [aux_sym_cmd_identifier_token5] = ACTIONS(1050), + [aux_sym_cmd_identifier_token6] = ACTIONS(1050), + [aux_sym_cmd_identifier_token7] = ACTIONS(1050), + [aux_sym_cmd_identifier_token8] = ACTIONS(1050), + [aux_sym_cmd_identifier_token9] = ACTIONS(1050), + [aux_sym_cmd_identifier_token10] = ACTIONS(1050), + [aux_sym_cmd_identifier_token11] = ACTIONS(1050), + [aux_sym_cmd_identifier_token12] = ACTIONS(1050), + [aux_sym_cmd_identifier_token13] = ACTIONS(1050), + [aux_sym_cmd_identifier_token14] = ACTIONS(1050), + [aux_sym_cmd_identifier_token15] = ACTIONS(1050), + [aux_sym_cmd_identifier_token16] = ACTIONS(1050), + [aux_sym_cmd_identifier_token17] = ACTIONS(1050), + [aux_sym_cmd_identifier_token18] = ACTIONS(1050), + [aux_sym_cmd_identifier_token19] = ACTIONS(1050), + [aux_sym_cmd_identifier_token20] = ACTIONS(1050), + [aux_sym_cmd_identifier_token21] = ACTIONS(1050), + [aux_sym_cmd_identifier_token22] = ACTIONS(1050), + [aux_sym_cmd_identifier_token23] = ACTIONS(1050), + [aux_sym_cmd_identifier_token24] = ACTIONS(1050), + [aux_sym_cmd_identifier_token25] = ACTIONS(1050), + [aux_sym_cmd_identifier_token26] = ACTIONS(1050), + [aux_sym_cmd_identifier_token27] = ACTIONS(1050), + [aux_sym_cmd_identifier_token28] = ACTIONS(1050), + [aux_sym_cmd_identifier_token29] = ACTIONS(1050), + [aux_sym_cmd_identifier_token30] = ACTIONS(1050), + [aux_sym_cmd_identifier_token31] = ACTIONS(1050), + [aux_sym_cmd_identifier_token32] = ACTIONS(1050), + [aux_sym_cmd_identifier_token33] = ACTIONS(1050), + [aux_sym_cmd_identifier_token34] = ACTIONS(1050), + [aux_sym_cmd_identifier_token35] = ACTIONS(1050), + [aux_sym_cmd_identifier_token36] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1050), + [anon_sym_export_DASHenv] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1050), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_make] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_catch] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_source] = ACTIONS(1050), + [anon_sym_source_DASHenv] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_hide] = ACTIONS(1050), + [anon_sym_hide_DASHenv] = ACTIONS(1050), + [anon_sym_overlay] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [sym__entry_separator] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(3), + }, + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), }, - [523] = { - [sym_comment] = STATE(523), + [540] = { + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(2287), + [anon_sym_alias] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_let_DASHenv] = ACTIONS(2287), + [anon_sym_mut] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [aux_sym_cmd_identifier_token1] = ACTIONS(2287), + [aux_sym_cmd_identifier_token2] = ACTIONS(2287), + [aux_sym_cmd_identifier_token3] = ACTIONS(2287), + [aux_sym_cmd_identifier_token4] = ACTIONS(2287), + [aux_sym_cmd_identifier_token5] = ACTIONS(2287), + [aux_sym_cmd_identifier_token6] = ACTIONS(2287), + [aux_sym_cmd_identifier_token7] = ACTIONS(2287), + [aux_sym_cmd_identifier_token8] = ACTIONS(2287), + [aux_sym_cmd_identifier_token9] = ACTIONS(2287), + [aux_sym_cmd_identifier_token10] = ACTIONS(2287), + [aux_sym_cmd_identifier_token11] = ACTIONS(2287), + [aux_sym_cmd_identifier_token12] = ACTIONS(2287), + [aux_sym_cmd_identifier_token13] = ACTIONS(2287), + [aux_sym_cmd_identifier_token14] = ACTIONS(2287), + [aux_sym_cmd_identifier_token15] = ACTIONS(2287), + [aux_sym_cmd_identifier_token16] = ACTIONS(2287), + [aux_sym_cmd_identifier_token17] = ACTIONS(2287), + [aux_sym_cmd_identifier_token18] = ACTIONS(2287), + [aux_sym_cmd_identifier_token19] = ACTIONS(2287), + [aux_sym_cmd_identifier_token20] = ACTIONS(2287), + [aux_sym_cmd_identifier_token21] = ACTIONS(2287), + [aux_sym_cmd_identifier_token22] = ACTIONS(2287), + [aux_sym_cmd_identifier_token23] = ACTIONS(2287), + [aux_sym_cmd_identifier_token24] = ACTIONS(2287), + [aux_sym_cmd_identifier_token25] = ACTIONS(2287), + [aux_sym_cmd_identifier_token26] = ACTIONS(2287), + [aux_sym_cmd_identifier_token27] = ACTIONS(2287), + [aux_sym_cmd_identifier_token28] = ACTIONS(2287), + [aux_sym_cmd_identifier_token29] = ACTIONS(2287), + [aux_sym_cmd_identifier_token30] = ACTIONS(2287), + [aux_sym_cmd_identifier_token31] = ACTIONS(2287), + [aux_sym_cmd_identifier_token32] = ACTIONS(2287), + [aux_sym_cmd_identifier_token33] = ACTIONS(2287), + [aux_sym_cmd_identifier_token34] = ACTIONS(2287), + [aux_sym_cmd_identifier_token35] = ACTIONS(2287), + [aux_sym_cmd_identifier_token36] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2287), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_export_DASHenv] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_module] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_error] = ACTIONS(2287), + [anon_sym_list] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_make] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_catch] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_source] = ACTIONS(2287), + [anon_sym_source_DASHenv] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_hide] = ACTIONS(2287), + [anon_sym_hide_DASHenv] = ACTIONS(2287), + [anon_sym_overlay] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2287), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym__str_single_quotes] = ACTIONS(2289), + [sym__str_back_ticks] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2287), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(247), + }, + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(247), + }, + [542] = { + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(2291), + [anon_sym_alias] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_let_DASHenv] = ACTIONS(2291), + [anon_sym_mut] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [aux_sym_cmd_identifier_token1] = ACTIONS(2291), + [aux_sym_cmd_identifier_token2] = ACTIONS(2291), + [aux_sym_cmd_identifier_token3] = ACTIONS(2291), + [aux_sym_cmd_identifier_token4] = ACTIONS(2291), + [aux_sym_cmd_identifier_token5] = ACTIONS(2291), + [aux_sym_cmd_identifier_token6] = ACTIONS(2291), + [aux_sym_cmd_identifier_token7] = ACTIONS(2291), + [aux_sym_cmd_identifier_token8] = ACTIONS(2291), + [aux_sym_cmd_identifier_token9] = ACTIONS(2291), + [aux_sym_cmd_identifier_token10] = ACTIONS(2291), + [aux_sym_cmd_identifier_token11] = ACTIONS(2291), + [aux_sym_cmd_identifier_token12] = ACTIONS(2291), + [aux_sym_cmd_identifier_token13] = ACTIONS(2291), + [aux_sym_cmd_identifier_token14] = ACTIONS(2291), + [aux_sym_cmd_identifier_token15] = ACTIONS(2291), + [aux_sym_cmd_identifier_token16] = ACTIONS(2291), + [aux_sym_cmd_identifier_token17] = ACTIONS(2291), + [aux_sym_cmd_identifier_token18] = ACTIONS(2291), + [aux_sym_cmd_identifier_token19] = ACTIONS(2291), + [aux_sym_cmd_identifier_token20] = ACTIONS(2291), + [aux_sym_cmd_identifier_token21] = ACTIONS(2291), + [aux_sym_cmd_identifier_token22] = ACTIONS(2291), + [aux_sym_cmd_identifier_token23] = ACTIONS(2291), + [aux_sym_cmd_identifier_token24] = ACTIONS(2291), + [aux_sym_cmd_identifier_token25] = ACTIONS(2291), + [aux_sym_cmd_identifier_token26] = ACTIONS(2291), + [aux_sym_cmd_identifier_token27] = ACTIONS(2291), + [aux_sym_cmd_identifier_token28] = ACTIONS(2291), + [aux_sym_cmd_identifier_token29] = ACTIONS(2291), + [aux_sym_cmd_identifier_token30] = ACTIONS(2291), + [aux_sym_cmd_identifier_token31] = ACTIONS(2291), + [aux_sym_cmd_identifier_token32] = ACTIONS(2291), + [aux_sym_cmd_identifier_token33] = ACTIONS(2291), + [aux_sym_cmd_identifier_token34] = ACTIONS(2291), + [aux_sym_cmd_identifier_token35] = ACTIONS(2291), + [aux_sym_cmd_identifier_token36] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token38] = ACTIONS(2291), + [aux_sym_cmd_identifier_token39] = ACTIONS(2295), + [aux_sym_cmd_identifier_token40] = ACTIONS(2295), + [anon_sym_def] = ACTIONS(2291), + [anon_sym_export_DASHenv] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_module] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2295), + [anon_sym_error] = ACTIONS(2291), + [anon_sym_list] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_make] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_do] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_else] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_catch] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_source] = ACTIONS(2291), + [anon_sym_source_DASHenv] = ACTIONS(2291), + [anon_sym_register] = ACTIONS(2291), + [anon_sym_hide] = ACTIONS(2291), + [anon_sym_hide_DASHenv] = ACTIONS(2291), + [anon_sym_overlay] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2295), + [aux_sym__val_number_decimal_token1] = ACTIONS(2291), + [aux_sym__val_number_decimal_token2] = ACTIONS(2295), + [aux_sym__val_number_decimal_token3] = ACTIONS(2295), + [aux_sym__val_number_decimal_token4] = ACTIONS(2295), + [aux_sym__val_number_token1] = ACTIONS(2295), + [aux_sym__val_number_token2] = ACTIONS(2295), + [aux_sym__val_number_token3] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(2295), + [sym__str_single_quotes] = ACTIONS(2295), + [sym__str_back_ticks] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2291), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(247), + }, + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_alias] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_let_DASHenv] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [aux_sym_cmd_identifier_token1] = ACTIONS(2297), + [aux_sym_cmd_identifier_token2] = ACTIONS(2297), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [aux_sym_cmd_identifier_token6] = ACTIONS(2297), + [aux_sym_cmd_identifier_token7] = ACTIONS(2297), + [aux_sym_cmd_identifier_token8] = ACTIONS(2297), + [aux_sym_cmd_identifier_token9] = ACTIONS(2297), + [aux_sym_cmd_identifier_token10] = ACTIONS(2297), + [aux_sym_cmd_identifier_token11] = ACTIONS(2297), + [aux_sym_cmd_identifier_token12] = ACTIONS(2297), + [aux_sym_cmd_identifier_token13] = ACTIONS(2297), + [aux_sym_cmd_identifier_token14] = ACTIONS(2297), + [aux_sym_cmd_identifier_token15] = ACTIONS(2297), + [aux_sym_cmd_identifier_token16] = ACTIONS(2297), + [aux_sym_cmd_identifier_token17] = ACTIONS(2297), + [aux_sym_cmd_identifier_token18] = ACTIONS(2297), + [aux_sym_cmd_identifier_token19] = ACTIONS(2297), + [aux_sym_cmd_identifier_token20] = ACTIONS(2297), + [aux_sym_cmd_identifier_token21] = ACTIONS(2297), + [aux_sym_cmd_identifier_token22] = ACTIONS(2297), + [aux_sym_cmd_identifier_token23] = ACTIONS(2297), + [aux_sym_cmd_identifier_token24] = ACTIONS(2297), + [aux_sym_cmd_identifier_token25] = ACTIONS(2297), + [aux_sym_cmd_identifier_token26] = ACTIONS(2297), + [aux_sym_cmd_identifier_token27] = ACTIONS(2297), + [aux_sym_cmd_identifier_token28] = ACTIONS(2297), + [aux_sym_cmd_identifier_token29] = ACTIONS(2297), + [aux_sym_cmd_identifier_token30] = ACTIONS(2297), + [aux_sym_cmd_identifier_token31] = ACTIONS(2297), + [aux_sym_cmd_identifier_token32] = ACTIONS(2297), + [aux_sym_cmd_identifier_token33] = ACTIONS(2297), + [aux_sym_cmd_identifier_token34] = ACTIONS(2297), + [aux_sym_cmd_identifier_token35] = ACTIONS(2297), + [aux_sym_cmd_identifier_token36] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [aux_sym_cmd_identifier_token38] = ACTIONS(2297), + [aux_sym_cmd_identifier_token39] = ACTIONS(2301), + [aux_sym_cmd_identifier_token40] = ACTIONS(2301), + [anon_sym_def] = ACTIONS(2297), + [anon_sym_export_DASHenv] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_error] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_in] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_make] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_catch] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_source] = ACTIONS(2297), + [anon_sym_source_DASHenv] = ACTIONS(2297), + [anon_sym_register] = ACTIONS(2297), + [anon_sym_hide] = ACTIONS(2297), + [anon_sym_hide_DASHenv] = ACTIONS(2297), + [anon_sym_overlay] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2301), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2297), + [aux_sym__val_number_decimal_token2] = ACTIONS(2301), + [aux_sym__val_number_decimal_token3] = ACTIONS(2301), + [aux_sym__val_number_decimal_token4] = ACTIONS(2301), + [aux_sym__val_number_token1] = ACTIONS(2301), + [aux_sym__val_number_token2] = ACTIONS(2301), + [aux_sym__val_number_token3] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym__str_single_quotes] = ACTIONS(2301), + [sym__str_back_ticks] = ACTIONS(2301), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2297), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(247), + }, + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_alias] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_let_DASHenv] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [aux_sym_cmd_identifier_token1] = ACTIONS(2253), + [aux_sym_cmd_identifier_token2] = ACTIONS(2253), + [aux_sym_cmd_identifier_token3] = ACTIONS(2253), + [aux_sym_cmd_identifier_token4] = ACTIONS(2253), + [aux_sym_cmd_identifier_token5] = ACTIONS(2253), + [aux_sym_cmd_identifier_token6] = ACTIONS(2253), + [aux_sym_cmd_identifier_token7] = ACTIONS(2253), + [aux_sym_cmd_identifier_token8] = ACTIONS(2253), + [aux_sym_cmd_identifier_token9] = ACTIONS(2253), + [aux_sym_cmd_identifier_token10] = ACTIONS(2253), + [aux_sym_cmd_identifier_token11] = ACTIONS(2253), + [aux_sym_cmd_identifier_token12] = ACTIONS(2253), + [aux_sym_cmd_identifier_token13] = ACTIONS(2253), + [aux_sym_cmd_identifier_token14] = ACTIONS(2253), + [aux_sym_cmd_identifier_token15] = ACTIONS(2253), + [aux_sym_cmd_identifier_token16] = ACTIONS(2253), + [aux_sym_cmd_identifier_token17] = ACTIONS(2253), + [aux_sym_cmd_identifier_token18] = ACTIONS(2253), + [aux_sym_cmd_identifier_token19] = ACTIONS(2253), + [aux_sym_cmd_identifier_token20] = ACTIONS(2253), + [aux_sym_cmd_identifier_token21] = ACTIONS(2253), + [aux_sym_cmd_identifier_token22] = ACTIONS(2253), + [aux_sym_cmd_identifier_token23] = ACTIONS(2253), + [aux_sym_cmd_identifier_token24] = ACTIONS(2253), + [aux_sym_cmd_identifier_token25] = ACTIONS(2253), + [aux_sym_cmd_identifier_token26] = ACTIONS(2253), + [aux_sym_cmd_identifier_token27] = ACTIONS(2253), + [aux_sym_cmd_identifier_token28] = ACTIONS(2253), + [aux_sym_cmd_identifier_token29] = ACTIONS(2253), + [aux_sym_cmd_identifier_token30] = ACTIONS(2253), + [aux_sym_cmd_identifier_token31] = ACTIONS(2253), + [aux_sym_cmd_identifier_token32] = ACTIONS(2253), + [aux_sym_cmd_identifier_token33] = ACTIONS(2253), + [aux_sym_cmd_identifier_token34] = ACTIONS(2253), + [aux_sym_cmd_identifier_token35] = ACTIONS(2253), + [aux_sym_cmd_identifier_token36] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [aux_sym_cmd_identifier_token38] = ACTIONS(2253), + [aux_sym_cmd_identifier_token39] = ACTIONS(2253), + [aux_sym_cmd_identifier_token40] = ACTIONS(2253), + [anon_sym_def] = ACTIONS(2253), + [anon_sym_export_DASHenv] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_error] = ACTIONS(2253), + [anon_sym_list] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_make] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_catch] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_source] = ACTIONS(2253), + [anon_sym_source_DASHenv] = ACTIONS(2253), + [anon_sym_register] = ACTIONS(2253), + [anon_sym_hide] = ACTIONS(2253), + [anon_sym_hide_DASHenv] = ACTIONS(2253), + [anon_sym_overlay] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_LPAREN2] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2253), + [aux_sym__val_number_decimal_token2] = ACTIONS(2253), + [aux_sym__val_number_decimal_token3] = ACTIONS(2253), + [aux_sym__val_number_decimal_token4] = ACTIONS(2253), + [aux_sym__val_number_token1] = ACTIONS(2253), + [aux_sym__val_number_token2] = ACTIONS(2253), + [aux_sym__val_number_token3] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2255), + [sym__str_single_quotes] = ACTIONS(2255), + [sym__str_back_ticks] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2253), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(3), + }, + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [aux_sym_record_entry_token1] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(247), + }, + [547] = { + [sym_comment] = STATE(547), [anon_sym_export] = ACTIONS(2396), [anon_sym_alias] = ACTIONS(2396), [anon_sym_let] = ACTIONS(2396), @@ -132319,6 +136411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2396), [anon_sym_new] = ACTIONS(2396), [anon_sym_as] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), [aux_sym__val_number_decimal_token1] = ACTIONS(2396), @@ -132336,108 +136429,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2396), [anon_sym_POUND] = ACTIONS(3), }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_list] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [sym__entry_separator] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1843), + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(247), + }, + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_alias] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_let_DASHenv] = ACTIONS(1947), + [anon_sym_mut] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [aux_sym_cmd_identifier_token1] = ACTIONS(1947), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1947), + [aux_sym_cmd_identifier_token9] = ACTIONS(1947), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1947), + [aux_sym_cmd_identifier_token13] = ACTIONS(1947), + [aux_sym_cmd_identifier_token14] = ACTIONS(1947), + [aux_sym_cmd_identifier_token15] = ACTIONS(1947), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1947), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1947), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_export_DASHenv] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_module] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_RBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1947), + [anon_sym_list] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_make] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_source] = ACTIONS(1947), + [anon_sym_source_DASHenv] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_hide] = ACTIONS(1947), + [anon_sym_hide_DASHenv] = ACTIONS(1947), + [anon_sym_overlay] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_as] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1947), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [sym__entry_separator] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(3), }, - [525] = { - [sym_comment] = STATE(525), + [550] = { + [sym_comment] = STATE(550), [anon_sym_export] = ACTIONS(2400), [anon_sym_alias] = ACTIONS(2400), [anon_sym_let] = ACTIONS(2400), @@ -132491,6 +136686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2400), [anon_sym_module] = ACTIONS(2400), [anon_sym_use] = ACTIONS(2400), + [anon_sym_RBRACK] = ACTIONS(2400), [anon_sym_LPAREN] = ACTIONS(2400), [anon_sym_DOLLAR] = ACTIONS(2400), [anon_sym_error] = ACTIONS(2400), @@ -132536,408 +136732,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2400), [anon_sym_POUND] = ACTIONS(3), }, - [526] = { - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(2404), - [anon_sym_alias] = ACTIONS(2404), - [anon_sym_let] = ACTIONS(2404), - [anon_sym_let_DASHenv] = ACTIONS(2404), - [anon_sym_mut] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [aux_sym_cmd_identifier_token1] = ACTIONS(2404), - [aux_sym_cmd_identifier_token2] = ACTIONS(2404), - [aux_sym_cmd_identifier_token3] = ACTIONS(2404), - [aux_sym_cmd_identifier_token4] = ACTIONS(2404), - [aux_sym_cmd_identifier_token5] = ACTIONS(2404), - [aux_sym_cmd_identifier_token6] = ACTIONS(2404), - [aux_sym_cmd_identifier_token7] = ACTIONS(2404), - [aux_sym_cmd_identifier_token8] = ACTIONS(2404), - [aux_sym_cmd_identifier_token9] = ACTIONS(2404), - [aux_sym_cmd_identifier_token10] = ACTIONS(2404), - [aux_sym_cmd_identifier_token11] = ACTIONS(2404), - [aux_sym_cmd_identifier_token12] = ACTIONS(2404), - [aux_sym_cmd_identifier_token13] = ACTIONS(2404), - [aux_sym_cmd_identifier_token14] = ACTIONS(2404), - [aux_sym_cmd_identifier_token15] = ACTIONS(2404), - [aux_sym_cmd_identifier_token16] = ACTIONS(2404), - [aux_sym_cmd_identifier_token17] = ACTIONS(2404), - [aux_sym_cmd_identifier_token18] = ACTIONS(2404), - [aux_sym_cmd_identifier_token19] = ACTIONS(2404), - [aux_sym_cmd_identifier_token20] = ACTIONS(2404), - [aux_sym_cmd_identifier_token21] = ACTIONS(2404), - [aux_sym_cmd_identifier_token22] = ACTIONS(2404), - [aux_sym_cmd_identifier_token23] = ACTIONS(2404), - [aux_sym_cmd_identifier_token24] = ACTIONS(2404), - [aux_sym_cmd_identifier_token25] = ACTIONS(2404), - [aux_sym_cmd_identifier_token26] = ACTIONS(2404), - [aux_sym_cmd_identifier_token27] = ACTIONS(2404), - [aux_sym_cmd_identifier_token28] = ACTIONS(2404), - [aux_sym_cmd_identifier_token29] = ACTIONS(2404), - [aux_sym_cmd_identifier_token30] = ACTIONS(2404), - [aux_sym_cmd_identifier_token31] = ACTIONS(2404), - [aux_sym_cmd_identifier_token32] = ACTIONS(2404), - [aux_sym_cmd_identifier_token33] = ACTIONS(2404), - [aux_sym_cmd_identifier_token34] = ACTIONS(2404), - [aux_sym_cmd_identifier_token35] = ACTIONS(2404), - [aux_sym_cmd_identifier_token36] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2404), - [aux_sym_cmd_identifier_token38] = ACTIONS(2404), - [aux_sym_cmd_identifier_token39] = ACTIONS(2404), - [aux_sym_cmd_identifier_token40] = ACTIONS(2404), - [anon_sym_def] = ACTIONS(2404), - [anon_sym_export_DASHenv] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym_module] = ACTIONS(2404), - [anon_sym_use] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [anon_sym_error] = ACTIONS(2404), - [anon_sym_list] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_loop] = ACTIONS(2404), - [anon_sym_make] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_match] = ACTIONS(2404), + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1070), + [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_LPAREN2] = ACTIONS(2225), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token4] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(3), + }, + [552] = { + [sym_comment] = STATE(552), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(247), + }, + [554] = { + [sym_comment] = STATE(554), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_source] = ACTIONS(2404), - [anon_sym_source_DASHenv] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_hide] = ACTIONS(2404), - [anon_sym_hide_DASHenv] = ACTIONS(2404), - [anon_sym_overlay] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2404), - [aux_sym__val_number_decimal_token1] = ACTIONS(2404), - [aux_sym__val_number_decimal_token2] = ACTIONS(2404), - [aux_sym__val_number_decimal_token3] = ACTIONS(2404), - [aux_sym__val_number_decimal_token4] = ACTIONS(2404), - [aux_sym__val_number_token1] = ACTIONS(2404), - [aux_sym__val_number_token2] = ACTIONS(2404), - [aux_sym__val_number_token3] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [sym__str_single_quotes] = ACTIONS(2404), - [sym__str_back_ticks] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), - [sym__entry_separator] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(3), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1859), - [aux_sym_cmd_identifier_token3] = ACTIONS(1859), - [aux_sym_cmd_identifier_token4] = ACTIONS(1859), - [aux_sym_cmd_identifier_token5] = ACTIONS(1859), - [aux_sym_cmd_identifier_token6] = ACTIONS(1859), - [aux_sym_cmd_identifier_token7] = ACTIONS(1859), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1859), - [aux_sym_cmd_identifier_token11] = ACTIONS(1859), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1859), - [aux_sym_cmd_identifier_token17] = ACTIONS(1859), - [aux_sym_cmd_identifier_token18] = ACTIONS(1859), - [aux_sym_cmd_identifier_token19] = ACTIONS(1859), - [aux_sym_cmd_identifier_token20] = ACTIONS(1859), - [aux_sym_cmd_identifier_token21] = ACTIONS(1859), - [aux_sym_cmd_identifier_token22] = ACTIONS(1859), - [aux_sym_cmd_identifier_token23] = ACTIONS(1859), - [aux_sym_cmd_identifier_token24] = ACTIONS(1859), - [aux_sym_cmd_identifier_token25] = ACTIONS(1859), - [aux_sym_cmd_identifier_token26] = ACTIONS(1859), - [aux_sym_cmd_identifier_token27] = ACTIONS(1859), - [aux_sym_cmd_identifier_token28] = ACTIONS(1859), - [aux_sym_cmd_identifier_token29] = ACTIONS(1859), - [aux_sym_cmd_identifier_token30] = ACTIONS(1859), - [aux_sym_cmd_identifier_token31] = ACTIONS(1859), - [aux_sym_cmd_identifier_token32] = ACTIONS(1859), - [aux_sym_cmd_identifier_token33] = ACTIONS(1859), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1859), - [aux_sym_cmd_identifier_token36] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1859), - [anon_sym_false] = ACTIONS(1859), - [anon_sym_null] = ACTIONS(1859), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1859), - [aux_sym_cmd_identifier_token40] = ACTIONS(1859), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_list] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1859), - [aux_sym__val_number_decimal_token3] = ACTIONS(1859), - [aux_sym__val_number_decimal_token4] = ACTIONS(1859), - [aux_sym__val_number_token1] = ACTIONS(1859), - [aux_sym__val_number_token2] = ACTIONS(1859), - [aux_sym__val_number_token3] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [sym__str_single_quotes] = ACTIONS(1859), - [sym__str_back_ticks] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), - [sym__entry_separator] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1859), + [555] = { + [sym_comment] = STATE(555), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(3), }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1867), - [aux_sym_cmd_identifier_token17] = ACTIONS(1867), - [aux_sym_cmd_identifier_token18] = ACTIONS(1867), - [aux_sym_cmd_identifier_token19] = ACTIONS(1867), - [aux_sym_cmd_identifier_token20] = ACTIONS(1867), - [aux_sym_cmd_identifier_token21] = ACTIONS(1867), - [aux_sym_cmd_identifier_token22] = ACTIONS(1867), - [aux_sym_cmd_identifier_token23] = ACTIONS(1867), - [aux_sym_cmd_identifier_token24] = ACTIONS(1867), - [aux_sym_cmd_identifier_token25] = ACTIONS(1867), - [aux_sym_cmd_identifier_token26] = ACTIONS(1867), - [aux_sym_cmd_identifier_token27] = ACTIONS(1867), - [aux_sym_cmd_identifier_token28] = ACTIONS(1867), - [aux_sym_cmd_identifier_token29] = ACTIONS(1867), - [aux_sym_cmd_identifier_token30] = ACTIONS(1867), - [aux_sym_cmd_identifier_token31] = ACTIONS(1867), - [aux_sym_cmd_identifier_token32] = ACTIONS(1867), - [aux_sym_cmd_identifier_token33] = ACTIONS(1867), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1867), - [aux_sym_cmd_identifier_token36] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1867), - [anon_sym_false] = ACTIONS(1867), - [anon_sym_null] = ACTIONS(1867), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1867), - [aux_sym_cmd_identifier_token40] = ACTIONS(1867), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_list] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1867), - [aux_sym__val_number_decimal_token3] = ACTIONS(1867), - [aux_sym__val_number_decimal_token4] = ACTIONS(1867), - [aux_sym__val_number_token1] = ACTIONS(1867), - [aux_sym__val_number_token2] = ACTIONS(1867), - [aux_sym__val_number_token3] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym__str_single_quotes] = ACTIONS(1867), - [sym__str_back_ticks] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), - [sym__entry_separator] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [aux_sym_cmd_identifier_token1] = ACTIONS(2305), + [aux_sym_cmd_identifier_token2] = ACTIONS(2305), + [aux_sym_cmd_identifier_token3] = ACTIONS(2305), + [aux_sym_cmd_identifier_token4] = ACTIONS(2305), + [aux_sym_cmd_identifier_token5] = ACTIONS(2305), + [aux_sym_cmd_identifier_token6] = ACTIONS(2305), + [aux_sym_cmd_identifier_token7] = ACTIONS(2305), + [aux_sym_cmd_identifier_token8] = ACTIONS(2305), + [aux_sym_cmd_identifier_token9] = ACTIONS(2305), + [aux_sym_cmd_identifier_token10] = ACTIONS(2305), + [aux_sym_cmd_identifier_token11] = ACTIONS(2305), + [aux_sym_cmd_identifier_token12] = ACTIONS(2305), + [aux_sym_cmd_identifier_token13] = ACTIONS(2305), + [aux_sym_cmd_identifier_token14] = ACTIONS(2305), + [aux_sym_cmd_identifier_token15] = ACTIONS(2305), + [aux_sym_cmd_identifier_token16] = ACTIONS(2305), + [aux_sym_cmd_identifier_token17] = ACTIONS(2305), + [aux_sym_cmd_identifier_token18] = ACTIONS(2305), + [aux_sym_cmd_identifier_token19] = ACTIONS(2305), + [aux_sym_cmd_identifier_token20] = ACTIONS(2305), + [aux_sym_cmd_identifier_token21] = ACTIONS(2305), + [aux_sym_cmd_identifier_token22] = ACTIONS(2305), + [aux_sym_cmd_identifier_token23] = ACTIONS(2305), + [aux_sym_cmd_identifier_token24] = ACTIONS(2305), + [aux_sym_cmd_identifier_token25] = ACTIONS(2305), + [aux_sym_cmd_identifier_token26] = ACTIONS(2305), + [aux_sym_cmd_identifier_token27] = ACTIONS(2305), + [aux_sym_cmd_identifier_token28] = ACTIONS(2305), + [aux_sym_cmd_identifier_token29] = ACTIONS(2305), + [aux_sym_cmd_identifier_token30] = ACTIONS(2305), + [aux_sym_cmd_identifier_token31] = ACTIONS(2305), + [aux_sym_cmd_identifier_token32] = ACTIONS(2305), + [aux_sym_cmd_identifier_token33] = ACTIONS(2305), + [aux_sym_cmd_identifier_token34] = ACTIONS(2305), + [aux_sym_cmd_identifier_token35] = ACTIONS(2305), + [aux_sym_cmd_identifier_token36] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2305), + [aux_sym_cmd_identifier_token40] = ACTIONS(2305), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_in] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_make] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_catch] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2305), + [aux_sym__val_number_decimal_token4] = ACTIONS(2305), + [aux_sym__val_number_token1] = ACTIONS(2305), + [aux_sym__val_number_token2] = ACTIONS(2305), + [aux_sym__val_number_token3] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), + [sym__entry_separator] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2305), [anon_sym_POUND] = ACTIONS(3), }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1871), - [anon_sym_false] = ACTIONS(1871), - [anon_sym_null] = ACTIONS(1871), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1871), - [aux_sym_cmd_identifier_token40] = ACTIONS(1871), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1871), - [aux_sym__val_number_decimal_token4] = ACTIONS(1871), - [aux_sym__val_number_token1] = ACTIONS(1871), - [aux_sym__val_number_token2] = ACTIONS(1871), - [aux_sym__val_number_token3] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [sym__str_single_quotes] = ACTIONS(1871), - [sym__str_back_ticks] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), - [sym__entry_separator] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1871), + [557] = { + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(1876), + [anon_sym_alias] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_let_DASHenv] = ACTIONS(1876), + [anon_sym_mut] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [aux_sym_cmd_identifier_token1] = ACTIONS(1876), + [aux_sym_cmd_identifier_token2] = ACTIONS(1876), + [aux_sym_cmd_identifier_token3] = ACTIONS(1876), + [aux_sym_cmd_identifier_token4] = ACTIONS(1876), + [aux_sym_cmd_identifier_token5] = ACTIONS(1876), + [aux_sym_cmd_identifier_token6] = ACTIONS(1876), + [aux_sym_cmd_identifier_token7] = ACTIONS(1876), + [aux_sym_cmd_identifier_token8] = ACTIONS(1876), + [aux_sym_cmd_identifier_token9] = ACTIONS(1876), + [aux_sym_cmd_identifier_token10] = ACTIONS(1876), + [aux_sym_cmd_identifier_token11] = ACTIONS(1876), + [aux_sym_cmd_identifier_token12] = ACTIONS(1876), + [aux_sym_cmd_identifier_token13] = ACTIONS(1876), + [aux_sym_cmd_identifier_token14] = ACTIONS(1876), + [aux_sym_cmd_identifier_token15] = ACTIONS(1876), + [aux_sym_cmd_identifier_token16] = ACTIONS(1876), + [aux_sym_cmd_identifier_token17] = ACTIONS(1876), + [aux_sym_cmd_identifier_token18] = ACTIONS(1876), + [aux_sym_cmd_identifier_token19] = ACTIONS(1876), + [aux_sym_cmd_identifier_token20] = ACTIONS(1876), + [aux_sym_cmd_identifier_token21] = ACTIONS(1876), + [aux_sym_cmd_identifier_token22] = ACTIONS(1876), + [aux_sym_cmd_identifier_token23] = ACTIONS(1876), + [aux_sym_cmd_identifier_token24] = ACTIONS(1876), + [aux_sym_cmd_identifier_token25] = ACTIONS(1876), + [aux_sym_cmd_identifier_token26] = ACTIONS(1876), + [aux_sym_cmd_identifier_token27] = ACTIONS(1876), + [aux_sym_cmd_identifier_token28] = ACTIONS(1876), + [aux_sym_cmd_identifier_token29] = ACTIONS(1876), + [aux_sym_cmd_identifier_token30] = ACTIONS(1876), + [aux_sym_cmd_identifier_token31] = ACTIONS(1876), + [aux_sym_cmd_identifier_token32] = ACTIONS(1876), + [aux_sym_cmd_identifier_token33] = ACTIONS(1876), + [aux_sym_cmd_identifier_token34] = ACTIONS(1876), + [aux_sym_cmd_identifier_token35] = ACTIONS(1876), + [aux_sym_cmd_identifier_token36] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1876), + [anon_sym_false] = ACTIONS(1876), + [anon_sym_null] = ACTIONS(1876), + [aux_sym_cmd_identifier_token38] = ACTIONS(1876), + [aux_sym_cmd_identifier_token39] = ACTIONS(1876), + [aux_sym_cmd_identifier_token40] = ACTIONS(1876), + [anon_sym_def] = ACTIONS(1876), + [anon_sym_export_DASHenv] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_module] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_error] = ACTIONS(1876), + [anon_sym_list] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_make] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_else] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_try] = ACTIONS(1876), + [anon_sym_catch] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_source] = ACTIONS(1876), + [anon_sym_source_DASHenv] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_hide] = ACTIONS(1876), + [anon_sym_hide_DASHenv] = ACTIONS(1876), + [anon_sym_overlay] = ACTIONS(1876), + [anon_sym_new] = ACTIONS(1876), + [anon_sym_as] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1876), + [aux_sym__val_number_decimal_token1] = ACTIONS(1876), + [aux_sym__val_number_decimal_token2] = ACTIONS(1876), + [aux_sym__val_number_decimal_token3] = ACTIONS(1876), + [aux_sym__val_number_decimal_token4] = ACTIONS(1876), + [aux_sym__val_number_token1] = ACTIONS(1876), + [aux_sym__val_number_token2] = ACTIONS(1876), + [aux_sym__val_number_token3] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1876), + [sym__str_single_quotes] = ACTIONS(1876), + [sym__str_back_ticks] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1876), + [sym__entry_separator] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1876), [anon_sym_POUND] = ACTIONS(3), }, - [530] = { - [sym_comment] = STATE(530), + [558] = { + [sym_comment] = STATE(558), [anon_sym_export] = ACTIONS(2408), [anon_sym_alias] = ACTIONS(2408), [anon_sym_let] = ACTIONS(2408), @@ -133036,108 +137538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2408), [anon_sym_POUND] = ACTIONS(3), }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_list] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_new] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [sym__entry_separator] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(3), - }, - [532] = { - [sym_comment] = STATE(532), + [559] = { + [sym_comment] = STATE(559), [anon_sym_export] = ACTIONS(2412), [anon_sym_alias] = ACTIONS(2412), [anon_sym_let] = ACTIONS(2412), @@ -133236,1308 +137638,3508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2412), [anon_sym_POUND] = ACTIONS(3), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_alias] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_let_DASHenv] = ACTIONS(2416), - [anon_sym_mut] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [aux_sym_cmd_identifier_token1] = ACTIONS(2416), - [aux_sym_cmd_identifier_token2] = ACTIONS(2416), - [aux_sym_cmd_identifier_token3] = ACTIONS(2416), - [aux_sym_cmd_identifier_token4] = ACTIONS(2416), - [aux_sym_cmd_identifier_token5] = ACTIONS(2416), - [aux_sym_cmd_identifier_token6] = ACTIONS(2416), - [aux_sym_cmd_identifier_token7] = ACTIONS(2416), - [aux_sym_cmd_identifier_token8] = ACTIONS(2416), - [aux_sym_cmd_identifier_token9] = ACTIONS(2416), - [aux_sym_cmd_identifier_token10] = ACTIONS(2416), - [aux_sym_cmd_identifier_token11] = ACTIONS(2416), - [aux_sym_cmd_identifier_token12] = ACTIONS(2416), - [aux_sym_cmd_identifier_token13] = ACTIONS(2416), - [aux_sym_cmd_identifier_token14] = ACTIONS(2416), - [aux_sym_cmd_identifier_token15] = ACTIONS(2416), - [aux_sym_cmd_identifier_token16] = ACTIONS(2416), - [aux_sym_cmd_identifier_token17] = ACTIONS(2416), - [aux_sym_cmd_identifier_token18] = ACTIONS(2416), - [aux_sym_cmd_identifier_token19] = ACTIONS(2416), - [aux_sym_cmd_identifier_token20] = ACTIONS(2416), - [aux_sym_cmd_identifier_token21] = ACTIONS(2416), - [aux_sym_cmd_identifier_token22] = ACTIONS(2416), - [aux_sym_cmd_identifier_token23] = ACTIONS(2416), - [aux_sym_cmd_identifier_token24] = ACTIONS(2416), - [aux_sym_cmd_identifier_token25] = ACTIONS(2416), - [aux_sym_cmd_identifier_token26] = ACTIONS(2416), - [aux_sym_cmd_identifier_token27] = ACTIONS(2416), - [aux_sym_cmd_identifier_token28] = ACTIONS(2416), - [aux_sym_cmd_identifier_token29] = ACTIONS(2416), - [aux_sym_cmd_identifier_token30] = ACTIONS(2416), - [aux_sym_cmd_identifier_token31] = ACTIONS(2416), - [aux_sym_cmd_identifier_token32] = ACTIONS(2416), - [aux_sym_cmd_identifier_token33] = ACTIONS(2416), - [aux_sym_cmd_identifier_token34] = ACTIONS(2416), - [aux_sym_cmd_identifier_token35] = ACTIONS(2416), - [aux_sym_cmd_identifier_token36] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_null] = ACTIONS(2416), - [aux_sym_cmd_identifier_token38] = ACTIONS(2416), - [aux_sym_cmd_identifier_token39] = ACTIONS(2416), - [aux_sym_cmd_identifier_token40] = ACTIONS(2416), - [anon_sym_def] = ACTIONS(2416), - [anon_sym_export_DASHenv] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2416), - [anon_sym_error] = ACTIONS(2416), - [anon_sym_list] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_make] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_catch] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_source] = ACTIONS(2416), - [anon_sym_source_DASHenv] = ACTIONS(2416), - [anon_sym_register] = ACTIONS(2416), - [anon_sym_hide] = ACTIONS(2416), - [anon_sym_hide_DASHenv] = ACTIONS(2416), - [anon_sym_overlay] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), - [aux_sym__val_number_decimal_token1] = ACTIONS(2416), - [aux_sym__val_number_decimal_token2] = ACTIONS(2416), - [aux_sym__val_number_decimal_token3] = ACTIONS(2416), - [aux_sym__val_number_decimal_token4] = ACTIONS(2416), - [aux_sym__val_number_token1] = ACTIONS(2416), - [aux_sym__val_number_token2] = ACTIONS(2416), - [aux_sym__val_number_token3] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym__str_single_quotes] = ACTIONS(2416), - [sym__str_back_ticks] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), - [sym__entry_separator] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), + [560] = { + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_alias] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_let_DASHenv] = ACTIONS(2416), + [anon_sym_mut] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [aux_sym_cmd_identifier_token1] = ACTIONS(2416), + [aux_sym_cmd_identifier_token2] = ACTIONS(2416), + [aux_sym_cmd_identifier_token3] = ACTIONS(2416), + [aux_sym_cmd_identifier_token4] = ACTIONS(2416), + [aux_sym_cmd_identifier_token5] = ACTIONS(2416), + [aux_sym_cmd_identifier_token6] = ACTIONS(2416), + [aux_sym_cmd_identifier_token7] = ACTIONS(2416), + [aux_sym_cmd_identifier_token8] = ACTIONS(2416), + [aux_sym_cmd_identifier_token9] = ACTIONS(2416), + [aux_sym_cmd_identifier_token10] = ACTIONS(2416), + [aux_sym_cmd_identifier_token11] = ACTIONS(2416), + [aux_sym_cmd_identifier_token12] = ACTIONS(2416), + [aux_sym_cmd_identifier_token13] = ACTIONS(2416), + [aux_sym_cmd_identifier_token14] = ACTIONS(2416), + [aux_sym_cmd_identifier_token15] = ACTIONS(2416), + [aux_sym_cmd_identifier_token16] = ACTIONS(2416), + [aux_sym_cmd_identifier_token17] = ACTIONS(2416), + [aux_sym_cmd_identifier_token18] = ACTIONS(2416), + [aux_sym_cmd_identifier_token19] = ACTIONS(2416), + [aux_sym_cmd_identifier_token20] = ACTIONS(2416), + [aux_sym_cmd_identifier_token21] = ACTIONS(2416), + [aux_sym_cmd_identifier_token22] = ACTIONS(2416), + [aux_sym_cmd_identifier_token23] = ACTIONS(2416), + [aux_sym_cmd_identifier_token24] = ACTIONS(2416), + [aux_sym_cmd_identifier_token25] = ACTIONS(2416), + [aux_sym_cmd_identifier_token26] = ACTIONS(2416), + [aux_sym_cmd_identifier_token27] = ACTIONS(2416), + [aux_sym_cmd_identifier_token28] = ACTIONS(2416), + [aux_sym_cmd_identifier_token29] = ACTIONS(2416), + [aux_sym_cmd_identifier_token30] = ACTIONS(2416), + [aux_sym_cmd_identifier_token31] = ACTIONS(2416), + [aux_sym_cmd_identifier_token32] = ACTIONS(2416), + [aux_sym_cmd_identifier_token33] = ACTIONS(2416), + [aux_sym_cmd_identifier_token34] = ACTIONS(2416), + [aux_sym_cmd_identifier_token35] = ACTIONS(2416), + [aux_sym_cmd_identifier_token36] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2416), + [aux_sym_cmd_identifier_token38] = ACTIONS(2416), + [aux_sym_cmd_identifier_token39] = ACTIONS(2416), + [aux_sym_cmd_identifier_token40] = ACTIONS(2416), + [anon_sym_def] = ACTIONS(2416), + [anon_sym_export_DASHenv] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_DOLLAR] = ACTIONS(2416), + [anon_sym_error] = ACTIONS(2416), + [anon_sym_list] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_make] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_source] = ACTIONS(2416), + [anon_sym_source_DASHenv] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_hide] = ACTIONS(2416), + [anon_sym_hide_DASHenv] = ACTIONS(2416), + [anon_sym_overlay] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_as] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), + [aux_sym__val_number_decimal_token1] = ACTIONS(2416), + [aux_sym__val_number_decimal_token2] = ACTIONS(2416), + [aux_sym__val_number_decimal_token3] = ACTIONS(2416), + [aux_sym__val_number_decimal_token4] = ACTIONS(2416), + [aux_sym__val_number_token1] = ACTIONS(2416), + [aux_sym__val_number_token2] = ACTIONS(2416), + [aux_sym__val_number_token3] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym__str_single_quotes] = ACTIONS(2416), + [sym__str_back_ticks] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), + [sym__entry_separator] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(3), + }, + [561] = { + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2029), + [aux_sym_cmd_identifier_token3] = ACTIONS(2029), + [aux_sym_cmd_identifier_token4] = ACTIONS(2029), + [aux_sym_cmd_identifier_token5] = ACTIONS(2029), + [aux_sym_cmd_identifier_token6] = ACTIONS(2029), + [aux_sym_cmd_identifier_token7] = ACTIONS(2029), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2029), + [aux_sym_cmd_identifier_token11] = ACTIONS(2029), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2029), + [aux_sym_cmd_identifier_token17] = ACTIONS(2029), + [aux_sym_cmd_identifier_token18] = ACTIONS(2029), + [aux_sym_cmd_identifier_token19] = ACTIONS(2029), + [aux_sym_cmd_identifier_token20] = ACTIONS(2029), + [aux_sym_cmd_identifier_token21] = ACTIONS(2029), + [aux_sym_cmd_identifier_token22] = ACTIONS(2029), + [aux_sym_cmd_identifier_token23] = ACTIONS(2029), + [aux_sym_cmd_identifier_token24] = ACTIONS(2029), + [aux_sym_cmd_identifier_token25] = ACTIONS(2029), + [aux_sym_cmd_identifier_token26] = ACTIONS(2029), + [aux_sym_cmd_identifier_token27] = ACTIONS(2029), + [aux_sym_cmd_identifier_token28] = ACTIONS(2029), + [aux_sym_cmd_identifier_token29] = ACTIONS(2029), + [aux_sym_cmd_identifier_token30] = ACTIONS(2029), + [aux_sym_cmd_identifier_token31] = ACTIONS(2029), + [aux_sym_cmd_identifier_token32] = ACTIONS(2029), + [aux_sym_cmd_identifier_token33] = ACTIONS(2029), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2029), + [aux_sym_cmd_identifier_token36] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [anon_sym_null] = ACTIONS(2029), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2029), + [aux_sym_cmd_identifier_token40] = ACTIONS(2029), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_list] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_new] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2029), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2029), + [aux_sym__val_number_decimal_token3] = ACTIONS(2029), + [aux_sym__val_number_decimal_token4] = ACTIONS(2029), + [aux_sym__val_number_token1] = ACTIONS(2029), + [aux_sym__val_number_token2] = ACTIONS(2029), + [aux_sym__val_number_token3] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [sym__str_single_quotes] = ACTIONS(2029), + [sym__str_back_ticks] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2029), + [sym__entry_separator] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(3), + }, + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2033), + [aux_sym_cmd_identifier_token3] = ACTIONS(2033), + [aux_sym_cmd_identifier_token4] = ACTIONS(2033), + [aux_sym_cmd_identifier_token5] = ACTIONS(2033), + [aux_sym_cmd_identifier_token6] = ACTIONS(2033), + [aux_sym_cmd_identifier_token7] = ACTIONS(2033), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2033), + [aux_sym_cmd_identifier_token11] = ACTIONS(2033), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2033), + [aux_sym_cmd_identifier_token17] = ACTIONS(2033), + [aux_sym_cmd_identifier_token18] = ACTIONS(2033), + [aux_sym_cmd_identifier_token19] = ACTIONS(2033), + [aux_sym_cmd_identifier_token20] = ACTIONS(2033), + [aux_sym_cmd_identifier_token21] = ACTIONS(2033), + [aux_sym_cmd_identifier_token22] = ACTIONS(2033), + [aux_sym_cmd_identifier_token23] = ACTIONS(2033), + [aux_sym_cmd_identifier_token24] = ACTIONS(2033), + [aux_sym_cmd_identifier_token25] = ACTIONS(2033), + [aux_sym_cmd_identifier_token26] = ACTIONS(2033), + [aux_sym_cmd_identifier_token27] = ACTIONS(2033), + [aux_sym_cmd_identifier_token28] = ACTIONS(2033), + [aux_sym_cmd_identifier_token29] = ACTIONS(2033), + [aux_sym_cmd_identifier_token30] = ACTIONS(2033), + [aux_sym_cmd_identifier_token31] = ACTIONS(2033), + [aux_sym_cmd_identifier_token32] = ACTIONS(2033), + [aux_sym_cmd_identifier_token33] = ACTIONS(2033), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2033), + [aux_sym_cmd_identifier_token36] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_null] = ACTIONS(2033), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2033), + [aux_sym_cmd_identifier_token40] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2033), + [aux_sym__val_number_decimal_token3] = ACTIONS(2033), + [aux_sym__val_number_decimal_token4] = ACTIONS(2033), + [aux_sym__val_number_token1] = ACTIONS(2033), + [aux_sym__val_number_token2] = ACTIONS(2033), + [aux_sym__val_number_token3] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2033), + [sym__str_single_quotes] = ACTIONS(2033), + [sym__str_back_ticks] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), + [sym__entry_separator] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(3), + }, + [563] = { + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_alias] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_let_DASHenv] = ACTIONS(1864), + [anon_sym_mut] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [aux_sym_cmd_identifier_token1] = ACTIONS(1864), + [aux_sym_cmd_identifier_token2] = ACTIONS(1864), + [aux_sym_cmd_identifier_token3] = ACTIONS(1864), + [aux_sym_cmd_identifier_token4] = ACTIONS(1864), + [aux_sym_cmd_identifier_token5] = ACTIONS(1864), + [aux_sym_cmd_identifier_token6] = ACTIONS(1864), + [aux_sym_cmd_identifier_token7] = ACTIONS(1864), + [aux_sym_cmd_identifier_token8] = ACTIONS(1864), + [aux_sym_cmd_identifier_token9] = ACTIONS(1864), + [aux_sym_cmd_identifier_token10] = ACTIONS(1864), + [aux_sym_cmd_identifier_token11] = ACTIONS(1864), + [aux_sym_cmd_identifier_token12] = ACTIONS(1864), + [aux_sym_cmd_identifier_token13] = ACTIONS(1864), + [aux_sym_cmd_identifier_token14] = ACTIONS(1864), + [aux_sym_cmd_identifier_token15] = ACTIONS(1864), + [aux_sym_cmd_identifier_token16] = ACTIONS(1864), + [aux_sym_cmd_identifier_token17] = ACTIONS(1864), + [aux_sym_cmd_identifier_token18] = ACTIONS(1864), + [aux_sym_cmd_identifier_token19] = ACTIONS(1864), + [aux_sym_cmd_identifier_token20] = ACTIONS(1864), + [aux_sym_cmd_identifier_token21] = ACTIONS(1864), + [aux_sym_cmd_identifier_token22] = ACTIONS(1864), + [aux_sym_cmd_identifier_token23] = ACTIONS(1864), + [aux_sym_cmd_identifier_token24] = ACTIONS(1864), + [aux_sym_cmd_identifier_token25] = ACTIONS(1864), + [aux_sym_cmd_identifier_token26] = ACTIONS(1864), + [aux_sym_cmd_identifier_token27] = ACTIONS(1864), + [aux_sym_cmd_identifier_token28] = ACTIONS(1864), + [aux_sym_cmd_identifier_token29] = ACTIONS(1864), + [aux_sym_cmd_identifier_token30] = ACTIONS(1864), + [aux_sym_cmd_identifier_token31] = ACTIONS(1864), + [aux_sym_cmd_identifier_token32] = ACTIONS(1864), + [aux_sym_cmd_identifier_token33] = ACTIONS(1864), + [aux_sym_cmd_identifier_token34] = ACTIONS(1864), + [aux_sym_cmd_identifier_token35] = ACTIONS(1864), + [aux_sym_cmd_identifier_token36] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [anon_sym_null] = ACTIONS(1864), + [aux_sym_cmd_identifier_token38] = ACTIONS(1864), + [aux_sym_cmd_identifier_token39] = ACTIONS(1864), + [aux_sym_cmd_identifier_token40] = ACTIONS(1864), + [anon_sym_def] = ACTIONS(1864), + [anon_sym_export_DASHenv] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1864), + [anon_sym_error] = ACTIONS(1864), + [anon_sym_list] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_make] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1864), + [anon_sym_catch] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_source] = ACTIONS(1864), + [anon_sym_source_DASHenv] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_hide] = ACTIONS(1864), + [anon_sym_hide_DASHenv] = ACTIONS(1864), + [anon_sym_overlay] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1864), + [aux_sym__val_number_decimal_token1] = ACTIONS(1864), + [aux_sym__val_number_decimal_token2] = ACTIONS(1864), + [aux_sym__val_number_decimal_token3] = ACTIONS(1864), + [aux_sym__val_number_decimal_token4] = ACTIONS(1864), + [aux_sym__val_number_token1] = ACTIONS(1864), + [aux_sym__val_number_token2] = ACTIONS(1864), + [aux_sym__val_number_token3] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1864), + [sym__str_single_quotes] = ACTIONS(1864), + [sym__str_back_ticks] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1864), + [sym__entry_separator] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(3), + }, + [564] = { + [sym_comment] = STATE(564), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1872), + [anon_sym_false] = ACTIONS(1872), + [anon_sym_null] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_list] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [566] = { + [sym_comment] = STATE(566), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_alias] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_let_DASHenv] = ACTIONS(2420), + [anon_sym_mut] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [aux_sym_cmd_identifier_token1] = ACTIONS(2420), + [aux_sym_cmd_identifier_token2] = ACTIONS(2420), + [aux_sym_cmd_identifier_token3] = ACTIONS(2420), + [aux_sym_cmd_identifier_token4] = ACTIONS(2420), + [aux_sym_cmd_identifier_token5] = ACTIONS(2420), + [aux_sym_cmd_identifier_token6] = ACTIONS(2420), + [aux_sym_cmd_identifier_token7] = ACTIONS(2420), + [aux_sym_cmd_identifier_token8] = ACTIONS(2420), + [aux_sym_cmd_identifier_token9] = ACTIONS(2420), + [aux_sym_cmd_identifier_token10] = ACTIONS(2420), + [aux_sym_cmd_identifier_token11] = ACTIONS(2420), + [aux_sym_cmd_identifier_token12] = ACTIONS(2420), + [aux_sym_cmd_identifier_token13] = ACTIONS(2420), + [aux_sym_cmd_identifier_token14] = ACTIONS(2420), + [aux_sym_cmd_identifier_token15] = ACTIONS(2420), + [aux_sym_cmd_identifier_token16] = ACTIONS(2420), + [aux_sym_cmd_identifier_token17] = ACTIONS(2420), + [aux_sym_cmd_identifier_token18] = ACTIONS(2420), + [aux_sym_cmd_identifier_token19] = ACTIONS(2420), + [aux_sym_cmd_identifier_token20] = ACTIONS(2420), + [aux_sym_cmd_identifier_token21] = ACTIONS(2420), + [aux_sym_cmd_identifier_token22] = ACTIONS(2420), + [aux_sym_cmd_identifier_token23] = ACTIONS(2420), + [aux_sym_cmd_identifier_token24] = ACTIONS(2420), + [aux_sym_cmd_identifier_token25] = ACTIONS(2420), + [aux_sym_cmd_identifier_token26] = ACTIONS(2420), + [aux_sym_cmd_identifier_token27] = ACTIONS(2420), + [aux_sym_cmd_identifier_token28] = ACTIONS(2420), + [aux_sym_cmd_identifier_token29] = ACTIONS(2420), + [aux_sym_cmd_identifier_token30] = ACTIONS(2420), + [aux_sym_cmd_identifier_token31] = ACTIONS(2420), + [aux_sym_cmd_identifier_token32] = ACTIONS(2420), + [aux_sym_cmd_identifier_token33] = ACTIONS(2420), + [aux_sym_cmd_identifier_token34] = ACTIONS(2420), + [aux_sym_cmd_identifier_token35] = ACTIONS(2420), + [aux_sym_cmd_identifier_token36] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_null] = ACTIONS(2420), + [aux_sym_cmd_identifier_token38] = ACTIONS(2420), + [aux_sym_cmd_identifier_token39] = ACTIONS(2420), + [aux_sym_cmd_identifier_token40] = ACTIONS(2420), + [anon_sym_def] = ACTIONS(2420), + [anon_sym_export_DASHenv] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2420), + [anon_sym_error] = ACTIONS(2420), + [anon_sym_list] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_make] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_source] = ACTIONS(2420), + [anon_sym_source_DASHenv] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_hide] = ACTIONS(2420), + [anon_sym_hide_DASHenv] = ACTIONS(2420), + [anon_sym_overlay] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2420), + [aux_sym__val_number_decimal_token2] = ACTIONS(2420), + [aux_sym__val_number_decimal_token3] = ACTIONS(2420), + [aux_sym__val_number_decimal_token4] = ACTIONS(2420), + [aux_sym__val_number_token1] = ACTIONS(2420), + [aux_sym__val_number_token2] = ACTIONS(2420), + [aux_sym__val_number_token3] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym__str_single_quotes] = ACTIONS(2420), + [sym__str_back_ticks] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), + [sym__entry_separator] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(3), + }, + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_alias] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_let_DASHenv] = ACTIONS(2424), + [anon_sym_mut] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [aux_sym_cmd_identifier_token1] = ACTIONS(2424), + [aux_sym_cmd_identifier_token2] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2424), + [aux_sym_cmd_identifier_token4] = ACTIONS(2424), + [aux_sym_cmd_identifier_token5] = ACTIONS(2424), + [aux_sym_cmd_identifier_token6] = ACTIONS(2424), + [aux_sym_cmd_identifier_token7] = ACTIONS(2424), + [aux_sym_cmd_identifier_token8] = ACTIONS(2424), + [aux_sym_cmd_identifier_token9] = ACTIONS(2424), + [aux_sym_cmd_identifier_token10] = ACTIONS(2424), + [aux_sym_cmd_identifier_token11] = ACTIONS(2424), + [aux_sym_cmd_identifier_token12] = ACTIONS(2424), + [aux_sym_cmd_identifier_token13] = ACTIONS(2424), + [aux_sym_cmd_identifier_token14] = ACTIONS(2424), + [aux_sym_cmd_identifier_token15] = ACTIONS(2424), + [aux_sym_cmd_identifier_token16] = ACTIONS(2424), + [aux_sym_cmd_identifier_token17] = ACTIONS(2424), + [aux_sym_cmd_identifier_token18] = ACTIONS(2424), + [aux_sym_cmd_identifier_token19] = ACTIONS(2424), + [aux_sym_cmd_identifier_token20] = ACTIONS(2424), + [aux_sym_cmd_identifier_token21] = ACTIONS(2424), + [aux_sym_cmd_identifier_token22] = ACTIONS(2424), + [aux_sym_cmd_identifier_token23] = ACTIONS(2424), + [aux_sym_cmd_identifier_token24] = ACTIONS(2424), + [aux_sym_cmd_identifier_token25] = ACTIONS(2424), + [aux_sym_cmd_identifier_token26] = ACTIONS(2424), + [aux_sym_cmd_identifier_token27] = ACTIONS(2424), + [aux_sym_cmd_identifier_token28] = ACTIONS(2424), + [aux_sym_cmd_identifier_token29] = ACTIONS(2424), + [aux_sym_cmd_identifier_token30] = ACTIONS(2424), + [aux_sym_cmd_identifier_token31] = ACTIONS(2424), + [aux_sym_cmd_identifier_token32] = ACTIONS(2424), + [aux_sym_cmd_identifier_token33] = ACTIONS(2424), + [aux_sym_cmd_identifier_token34] = ACTIONS(2424), + [aux_sym_cmd_identifier_token35] = ACTIONS(2424), + [aux_sym_cmd_identifier_token36] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token38] = ACTIONS(2424), + [aux_sym_cmd_identifier_token39] = ACTIONS(2424), + [aux_sym_cmd_identifier_token40] = ACTIONS(2424), + [anon_sym_def] = ACTIONS(2424), + [anon_sym_export_DASHenv] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_DOLLAR] = ACTIONS(2424), + [anon_sym_error] = ACTIONS(2424), + [anon_sym_list] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_make] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_source] = ACTIONS(2424), + [anon_sym_source_DASHenv] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_hide] = ACTIONS(2424), + [anon_sym_hide_DASHenv] = ACTIONS(2424), + [anon_sym_overlay] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_decimal_token2] = ACTIONS(2424), + [aux_sym__val_number_decimal_token3] = ACTIONS(2424), + [aux_sym__val_number_decimal_token4] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2424), + [sym__str_single_quotes] = ACTIONS(2424), + [sym__str_back_ticks] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), + [sym__entry_separator] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(3), + }, + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1572), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1560), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(247), + }, + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_alias] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_let_DASHenv] = ACTIONS(2396), + [anon_sym_mut] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [aux_sym_cmd_identifier_token1] = ACTIONS(2396), + [aux_sym_cmd_identifier_token2] = ACTIONS(2396), + [aux_sym_cmd_identifier_token3] = ACTIONS(2396), + [aux_sym_cmd_identifier_token4] = ACTIONS(2396), + [aux_sym_cmd_identifier_token5] = ACTIONS(2396), + [aux_sym_cmd_identifier_token6] = ACTIONS(2396), + [aux_sym_cmd_identifier_token7] = ACTIONS(2396), + [aux_sym_cmd_identifier_token8] = ACTIONS(2396), + [aux_sym_cmd_identifier_token9] = ACTIONS(2396), + [aux_sym_cmd_identifier_token10] = ACTIONS(2396), + [aux_sym_cmd_identifier_token11] = ACTIONS(2396), + [aux_sym_cmd_identifier_token12] = ACTIONS(2396), + [aux_sym_cmd_identifier_token13] = ACTIONS(2396), + [aux_sym_cmd_identifier_token14] = ACTIONS(2396), + [aux_sym_cmd_identifier_token15] = ACTIONS(2396), + [aux_sym_cmd_identifier_token16] = ACTIONS(2396), + [aux_sym_cmd_identifier_token17] = ACTIONS(2396), + [aux_sym_cmd_identifier_token18] = ACTIONS(2396), + [aux_sym_cmd_identifier_token19] = ACTIONS(2396), + [aux_sym_cmd_identifier_token20] = ACTIONS(2396), + [aux_sym_cmd_identifier_token21] = ACTIONS(2396), + [aux_sym_cmd_identifier_token22] = ACTIONS(2396), + [aux_sym_cmd_identifier_token23] = ACTIONS(2396), + [aux_sym_cmd_identifier_token24] = ACTIONS(2396), + [aux_sym_cmd_identifier_token25] = ACTIONS(2396), + [aux_sym_cmd_identifier_token26] = ACTIONS(2396), + [aux_sym_cmd_identifier_token27] = ACTIONS(2396), + [aux_sym_cmd_identifier_token28] = ACTIONS(2396), + [aux_sym_cmd_identifier_token29] = ACTIONS(2396), + [aux_sym_cmd_identifier_token30] = ACTIONS(2396), + [aux_sym_cmd_identifier_token31] = ACTIONS(2396), + [aux_sym_cmd_identifier_token32] = ACTIONS(2396), + [aux_sym_cmd_identifier_token33] = ACTIONS(2396), + [aux_sym_cmd_identifier_token34] = ACTIONS(2396), + [aux_sym_cmd_identifier_token35] = ACTIONS(2396), + [aux_sym_cmd_identifier_token36] = ACTIONS(2396), + [anon_sym_true] = ACTIONS(2398), + [anon_sym_false] = ACTIONS(2398), + [anon_sym_null] = ACTIONS(2398), + [aux_sym_cmd_identifier_token38] = ACTIONS(2396), + [aux_sym_cmd_identifier_token39] = ACTIONS(2398), + [aux_sym_cmd_identifier_token40] = ACTIONS(2398), + [anon_sym_def] = ACTIONS(2396), + [anon_sym_export_DASHenv] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_use] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [anon_sym_error] = ACTIONS(2396), + [anon_sym_list] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_loop] = ACTIONS(2396), + [anon_sym_make] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_catch] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_source] = ACTIONS(2396), + [anon_sym_source_DASHenv] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_hide] = ACTIONS(2396), + [anon_sym_hide_DASHenv] = ACTIONS(2396), + [anon_sym_overlay] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), + [aux_sym__val_number_decimal_token1] = ACTIONS(2396), + [aux_sym__val_number_decimal_token2] = ACTIONS(2398), + [aux_sym__val_number_decimal_token3] = ACTIONS(2398), + [aux_sym__val_number_decimal_token4] = ACTIONS(2398), + [aux_sym__val_number_token1] = ACTIONS(2398), + [aux_sym__val_number_token2] = ACTIONS(2398), + [aux_sym__val_number_token3] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym__str_single_quotes] = ACTIONS(2398), + [sym__str_back_ticks] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(247), + }, + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_alias] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_let_DASHenv] = ACTIONS(2430), + [anon_sym_mut] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [aux_sym_cmd_identifier_token1] = ACTIONS(2430), + [aux_sym_cmd_identifier_token2] = ACTIONS(2430), + [aux_sym_cmd_identifier_token3] = ACTIONS(2430), + [aux_sym_cmd_identifier_token4] = ACTIONS(2430), + [aux_sym_cmd_identifier_token5] = ACTIONS(2430), + [aux_sym_cmd_identifier_token6] = ACTIONS(2430), + [aux_sym_cmd_identifier_token7] = ACTIONS(2430), + [aux_sym_cmd_identifier_token8] = ACTIONS(2430), + [aux_sym_cmd_identifier_token9] = ACTIONS(2430), + [aux_sym_cmd_identifier_token10] = ACTIONS(2430), + [aux_sym_cmd_identifier_token11] = ACTIONS(2430), + [aux_sym_cmd_identifier_token12] = ACTIONS(2430), + [aux_sym_cmd_identifier_token13] = ACTIONS(2430), + [aux_sym_cmd_identifier_token14] = ACTIONS(2430), + [aux_sym_cmd_identifier_token15] = ACTIONS(2430), + [aux_sym_cmd_identifier_token16] = ACTIONS(2430), + [aux_sym_cmd_identifier_token17] = ACTIONS(2430), + [aux_sym_cmd_identifier_token18] = ACTIONS(2430), + [aux_sym_cmd_identifier_token19] = ACTIONS(2430), + [aux_sym_cmd_identifier_token20] = ACTIONS(2430), + [aux_sym_cmd_identifier_token21] = ACTIONS(2430), + [aux_sym_cmd_identifier_token22] = ACTIONS(2430), + [aux_sym_cmd_identifier_token23] = ACTIONS(2430), + [aux_sym_cmd_identifier_token24] = ACTIONS(2430), + [aux_sym_cmd_identifier_token25] = ACTIONS(2430), + [aux_sym_cmd_identifier_token26] = ACTIONS(2430), + [aux_sym_cmd_identifier_token27] = ACTIONS(2430), + [aux_sym_cmd_identifier_token28] = ACTIONS(2430), + [aux_sym_cmd_identifier_token29] = ACTIONS(2430), + [aux_sym_cmd_identifier_token30] = ACTIONS(2430), + [aux_sym_cmd_identifier_token31] = ACTIONS(2430), + [aux_sym_cmd_identifier_token32] = ACTIONS(2430), + [aux_sym_cmd_identifier_token33] = ACTIONS(2430), + [aux_sym_cmd_identifier_token34] = ACTIONS(2430), + [aux_sym_cmd_identifier_token35] = ACTIONS(2430), + [aux_sym_cmd_identifier_token36] = ACTIONS(2430), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2430), + [aux_sym_cmd_identifier_token38] = ACTIONS(2430), + [aux_sym_cmd_identifier_token39] = ACTIONS(2430), + [aux_sym_cmd_identifier_token40] = ACTIONS(2430), + [anon_sym_def] = ACTIONS(2430), + [anon_sym_export_DASHenv] = ACTIONS(2430), + [anon_sym_extern] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_use] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_DOLLAR] = ACTIONS(2430), + [anon_sym_error] = ACTIONS(2430), + [anon_sym_list] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_in] = ACTIONS(2430), + [anon_sym_loop] = ACTIONS(2430), + [anon_sym_make] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_match] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_catch] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_source] = ACTIONS(2430), + [anon_sym_source_DASHenv] = ACTIONS(2430), + [anon_sym_register] = ACTIONS(2430), + [anon_sym_hide] = ACTIONS(2430), + [anon_sym_hide_DASHenv] = ACTIONS(2430), + [anon_sym_overlay] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2430), + [aux_sym__val_number_decimal_token1] = ACTIONS(2430), + [aux_sym__val_number_decimal_token2] = ACTIONS(2430), + [aux_sym__val_number_decimal_token3] = ACTIONS(2430), + [aux_sym__val_number_decimal_token4] = ACTIONS(2430), + [aux_sym__val_number_token1] = ACTIONS(2430), + [aux_sym__val_number_token2] = ACTIONS(2430), + [aux_sym__val_number_token3] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym__str_single_quotes] = ACTIONS(2430), + [sym__str_back_ticks] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), + [sym__entry_separator] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_POUND] = ACTIONS(3), + }, + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(1888), + [anon_sym_alias] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_let_DASHenv] = ACTIONS(1888), + [anon_sym_mut] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [aux_sym_cmd_identifier_token1] = ACTIONS(1888), + [aux_sym_cmd_identifier_token2] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [aux_sym_cmd_identifier_token6] = ACTIONS(1888), + [aux_sym_cmd_identifier_token7] = ACTIONS(1888), + [aux_sym_cmd_identifier_token8] = ACTIONS(1888), + [aux_sym_cmd_identifier_token9] = ACTIONS(1888), + [aux_sym_cmd_identifier_token10] = ACTIONS(1888), + [aux_sym_cmd_identifier_token11] = ACTIONS(1888), + [aux_sym_cmd_identifier_token12] = ACTIONS(1888), + [aux_sym_cmd_identifier_token13] = ACTIONS(1888), + [aux_sym_cmd_identifier_token14] = ACTIONS(1888), + [aux_sym_cmd_identifier_token15] = ACTIONS(1888), + [aux_sym_cmd_identifier_token16] = ACTIONS(1888), + [aux_sym_cmd_identifier_token17] = ACTIONS(1888), + [aux_sym_cmd_identifier_token18] = ACTIONS(1888), + [aux_sym_cmd_identifier_token19] = ACTIONS(1888), + [aux_sym_cmd_identifier_token20] = ACTIONS(1888), + [aux_sym_cmd_identifier_token21] = ACTIONS(1888), + [aux_sym_cmd_identifier_token22] = ACTIONS(1888), + [aux_sym_cmd_identifier_token23] = ACTIONS(1888), + [aux_sym_cmd_identifier_token24] = ACTIONS(1888), + [aux_sym_cmd_identifier_token25] = ACTIONS(1888), + [aux_sym_cmd_identifier_token26] = ACTIONS(1888), + [aux_sym_cmd_identifier_token27] = ACTIONS(1888), + [aux_sym_cmd_identifier_token28] = ACTIONS(1888), + [aux_sym_cmd_identifier_token29] = ACTIONS(1888), + [aux_sym_cmd_identifier_token30] = ACTIONS(1888), + [aux_sym_cmd_identifier_token31] = ACTIONS(1888), + [aux_sym_cmd_identifier_token32] = ACTIONS(1888), + [aux_sym_cmd_identifier_token33] = ACTIONS(1888), + [aux_sym_cmd_identifier_token34] = ACTIONS(1888), + [aux_sym_cmd_identifier_token35] = ACTIONS(1888), + [aux_sym_cmd_identifier_token36] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [aux_sym_cmd_identifier_token38] = ACTIONS(1888), + [aux_sym_cmd_identifier_token39] = ACTIONS(1888), + [aux_sym_cmd_identifier_token40] = ACTIONS(1888), + [anon_sym_def] = ACTIONS(1888), + [anon_sym_export_DASHenv] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_module] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_error] = ACTIONS(1888), + [anon_sym_list] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_make] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_try] = ACTIONS(1888), + [anon_sym_catch] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_source] = ACTIONS(1888), + [anon_sym_source_DASHenv] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_hide] = ACTIONS(1888), + [anon_sym_hide_DASHenv] = ACTIONS(1888), + [anon_sym_overlay] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1888), + [anon_sym_as] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1888), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1888), + [sym__entry_separator] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + }, + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_alias] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_let_DASHenv] = ACTIONS(2434), + [anon_sym_mut] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [aux_sym_cmd_identifier_token1] = ACTIONS(2434), + [aux_sym_cmd_identifier_token2] = ACTIONS(2434), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [aux_sym_cmd_identifier_token6] = ACTIONS(2434), + [aux_sym_cmd_identifier_token7] = ACTIONS(2434), + [aux_sym_cmd_identifier_token8] = ACTIONS(2434), + [aux_sym_cmd_identifier_token9] = ACTIONS(2434), + [aux_sym_cmd_identifier_token10] = ACTIONS(2434), + [aux_sym_cmd_identifier_token11] = ACTIONS(2434), + [aux_sym_cmd_identifier_token12] = ACTIONS(2434), + [aux_sym_cmd_identifier_token13] = ACTIONS(2434), + [aux_sym_cmd_identifier_token14] = ACTIONS(2434), + [aux_sym_cmd_identifier_token15] = ACTIONS(2434), + [aux_sym_cmd_identifier_token16] = ACTIONS(2434), + [aux_sym_cmd_identifier_token17] = ACTIONS(2434), + [aux_sym_cmd_identifier_token18] = ACTIONS(2434), + [aux_sym_cmd_identifier_token19] = ACTIONS(2434), + [aux_sym_cmd_identifier_token20] = ACTIONS(2434), + [aux_sym_cmd_identifier_token21] = ACTIONS(2434), + [aux_sym_cmd_identifier_token22] = ACTIONS(2434), + [aux_sym_cmd_identifier_token23] = ACTIONS(2434), + [aux_sym_cmd_identifier_token24] = ACTIONS(2434), + [aux_sym_cmd_identifier_token25] = ACTIONS(2434), + [aux_sym_cmd_identifier_token26] = ACTIONS(2434), + [aux_sym_cmd_identifier_token27] = ACTIONS(2434), + [aux_sym_cmd_identifier_token28] = ACTIONS(2434), + [aux_sym_cmd_identifier_token29] = ACTIONS(2434), + [aux_sym_cmd_identifier_token30] = ACTIONS(2434), + [aux_sym_cmd_identifier_token31] = ACTIONS(2434), + [aux_sym_cmd_identifier_token32] = ACTIONS(2434), + [aux_sym_cmd_identifier_token33] = ACTIONS(2434), + [aux_sym_cmd_identifier_token34] = ACTIONS(2434), + [aux_sym_cmd_identifier_token35] = ACTIONS(2434), + [aux_sym_cmd_identifier_token36] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2434), + [anon_sym_false] = ACTIONS(2434), + [anon_sym_null] = ACTIONS(2434), + [aux_sym_cmd_identifier_token38] = ACTIONS(2434), + [aux_sym_cmd_identifier_token39] = ACTIONS(2434), + [aux_sym_cmd_identifier_token40] = ACTIONS(2434), + [anon_sym_def] = ACTIONS(2434), + [anon_sym_export_DASHenv] = ACTIONS(2434), + [anon_sym_extern] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_use] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_DOLLAR] = ACTIONS(2434), + [anon_sym_error] = ACTIONS(2434), + [anon_sym_list] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_loop] = ACTIONS(2434), + [anon_sym_make] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_match] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_catch] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_source] = ACTIONS(2434), + [anon_sym_source_DASHenv] = ACTIONS(2434), + [anon_sym_register] = ACTIONS(2434), + [anon_sym_hide] = ACTIONS(2434), + [anon_sym_hide_DASHenv] = ACTIONS(2434), + [anon_sym_overlay] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2434), + [aux_sym__val_number_decimal_token3] = ACTIONS(2434), + [aux_sym__val_number_decimal_token4] = ACTIONS(2434), + [aux_sym__val_number_token1] = ACTIONS(2434), + [aux_sym__val_number_token2] = ACTIONS(2434), + [aux_sym__val_number_token3] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym__str_single_quotes] = ACTIONS(2434), + [sym__str_back_ticks] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), + [sym__entry_separator] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(3), + }, + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_alias] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_let_DASHenv] = ACTIONS(2438), + [anon_sym_mut] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [aux_sym_cmd_identifier_token1] = ACTIONS(2438), + [aux_sym_cmd_identifier_token2] = ACTIONS(2438), + [aux_sym_cmd_identifier_token3] = ACTIONS(2438), + [aux_sym_cmd_identifier_token4] = ACTIONS(2438), + [aux_sym_cmd_identifier_token5] = ACTIONS(2438), + [aux_sym_cmd_identifier_token6] = ACTIONS(2438), + [aux_sym_cmd_identifier_token7] = ACTIONS(2438), + [aux_sym_cmd_identifier_token8] = ACTIONS(2438), + [aux_sym_cmd_identifier_token9] = ACTIONS(2438), + [aux_sym_cmd_identifier_token10] = ACTIONS(2438), + [aux_sym_cmd_identifier_token11] = ACTIONS(2438), + [aux_sym_cmd_identifier_token12] = ACTIONS(2438), + [aux_sym_cmd_identifier_token13] = ACTIONS(2438), + [aux_sym_cmd_identifier_token14] = ACTIONS(2438), + [aux_sym_cmd_identifier_token15] = ACTIONS(2438), + [aux_sym_cmd_identifier_token16] = ACTIONS(2438), + [aux_sym_cmd_identifier_token17] = ACTIONS(2438), + [aux_sym_cmd_identifier_token18] = ACTIONS(2438), + [aux_sym_cmd_identifier_token19] = ACTIONS(2438), + [aux_sym_cmd_identifier_token20] = ACTIONS(2438), + [aux_sym_cmd_identifier_token21] = ACTIONS(2438), + [aux_sym_cmd_identifier_token22] = ACTIONS(2438), + [aux_sym_cmd_identifier_token23] = ACTIONS(2438), + [aux_sym_cmd_identifier_token24] = ACTIONS(2438), + [aux_sym_cmd_identifier_token25] = ACTIONS(2438), + [aux_sym_cmd_identifier_token26] = ACTIONS(2438), + [aux_sym_cmd_identifier_token27] = ACTIONS(2438), + [aux_sym_cmd_identifier_token28] = ACTIONS(2438), + [aux_sym_cmd_identifier_token29] = ACTIONS(2438), + [aux_sym_cmd_identifier_token30] = ACTIONS(2438), + [aux_sym_cmd_identifier_token31] = ACTIONS(2438), + [aux_sym_cmd_identifier_token32] = ACTIONS(2438), + [aux_sym_cmd_identifier_token33] = ACTIONS(2438), + [aux_sym_cmd_identifier_token34] = ACTIONS(2438), + [aux_sym_cmd_identifier_token35] = ACTIONS(2438), + [aux_sym_cmd_identifier_token36] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2438), + [anon_sym_false] = ACTIONS(2438), + [anon_sym_null] = ACTIONS(2438), + [aux_sym_cmd_identifier_token38] = ACTIONS(2438), + [aux_sym_cmd_identifier_token39] = ACTIONS(2438), + [aux_sym_cmd_identifier_token40] = ACTIONS(2438), + [anon_sym_def] = ACTIONS(2438), + [anon_sym_export_DASHenv] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_DOLLAR] = ACTIONS(2438), + [anon_sym_error] = ACTIONS(2438), + [anon_sym_list] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_make] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_catch] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_source] = ACTIONS(2438), + [anon_sym_source_DASHenv] = ACTIONS(2438), + [anon_sym_register] = ACTIONS(2438), + [anon_sym_hide] = ACTIONS(2438), + [anon_sym_hide_DASHenv] = ACTIONS(2438), + [anon_sym_overlay] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2438), + [aux_sym__val_number_decimal_token2] = ACTIONS(2438), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [aux_sym__val_number_token1] = ACTIONS(2438), + [aux_sym__val_number_token2] = ACTIONS(2438), + [aux_sym__val_number_token3] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym__str_single_quotes] = ACTIONS(2438), + [sym__str_back_ticks] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2438), + [sym__entry_separator] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(3), + }, + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(1892), + [anon_sym_alias] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_let_DASHenv] = ACTIONS(1892), + [anon_sym_mut] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [aux_sym_cmd_identifier_token1] = ACTIONS(1892), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1892), + [aux_sym_cmd_identifier_token9] = ACTIONS(1892), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1892), + [aux_sym_cmd_identifier_token13] = ACTIONS(1892), + [aux_sym_cmd_identifier_token14] = ACTIONS(1892), + [aux_sym_cmd_identifier_token15] = ACTIONS(1892), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1892), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1892), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1892), + [anon_sym_export_DASHenv] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_module] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1892), + [anon_sym_list] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_make] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1892), + [anon_sym_catch] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_source] = ACTIONS(1892), + [anon_sym_source_DASHenv] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_hide] = ACTIONS(1892), + [anon_sym_hide_DASHenv] = ACTIONS(1892), + [anon_sym_overlay] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1892), + [anon_sym_as] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1892), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [sym__entry_separator] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(3), + }, + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_alias] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_let_DASHenv] = ACTIONS(2376), + [anon_sym_mut] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [aux_sym_cmd_identifier_token1] = ACTIONS(2376), + [aux_sym_cmd_identifier_token2] = ACTIONS(2376), + [aux_sym_cmd_identifier_token3] = ACTIONS(2376), + [aux_sym_cmd_identifier_token4] = ACTIONS(2376), + [aux_sym_cmd_identifier_token5] = ACTIONS(2376), + [aux_sym_cmd_identifier_token6] = ACTIONS(2376), + [aux_sym_cmd_identifier_token7] = ACTIONS(2376), + [aux_sym_cmd_identifier_token8] = ACTIONS(2376), + [aux_sym_cmd_identifier_token9] = ACTIONS(2376), + [aux_sym_cmd_identifier_token10] = ACTIONS(2376), + [aux_sym_cmd_identifier_token11] = ACTIONS(2376), + [aux_sym_cmd_identifier_token12] = ACTIONS(2376), + [aux_sym_cmd_identifier_token13] = ACTIONS(2376), + [aux_sym_cmd_identifier_token14] = ACTIONS(2376), + [aux_sym_cmd_identifier_token15] = ACTIONS(2376), + [aux_sym_cmd_identifier_token16] = ACTIONS(2376), + [aux_sym_cmd_identifier_token17] = ACTIONS(2376), + [aux_sym_cmd_identifier_token18] = ACTIONS(2376), + [aux_sym_cmd_identifier_token19] = ACTIONS(2376), + [aux_sym_cmd_identifier_token20] = ACTIONS(2376), + [aux_sym_cmd_identifier_token21] = ACTIONS(2376), + [aux_sym_cmd_identifier_token22] = ACTIONS(2376), + [aux_sym_cmd_identifier_token23] = ACTIONS(2376), + [aux_sym_cmd_identifier_token24] = ACTIONS(2376), + [aux_sym_cmd_identifier_token25] = ACTIONS(2376), + [aux_sym_cmd_identifier_token26] = ACTIONS(2376), + [aux_sym_cmd_identifier_token27] = ACTIONS(2376), + [aux_sym_cmd_identifier_token28] = ACTIONS(2376), + [aux_sym_cmd_identifier_token29] = ACTIONS(2376), + [aux_sym_cmd_identifier_token30] = ACTIONS(2376), + [aux_sym_cmd_identifier_token31] = ACTIONS(2376), + [aux_sym_cmd_identifier_token32] = ACTIONS(2376), + [aux_sym_cmd_identifier_token33] = ACTIONS(2376), + [aux_sym_cmd_identifier_token34] = ACTIONS(2376), + [aux_sym_cmd_identifier_token35] = ACTIONS(2376), + [aux_sym_cmd_identifier_token36] = ACTIONS(2376), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2378), + [aux_sym_cmd_identifier_token38] = ACTIONS(2376), + [aux_sym_cmd_identifier_token39] = ACTIONS(2378), + [aux_sym_cmd_identifier_token40] = ACTIONS(2378), + [anon_sym_def] = ACTIONS(2376), + [anon_sym_export_DASHenv] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_use] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2376), + [anon_sym_list] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_loop] = ACTIONS(2376), + [anon_sym_make] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_source] = ACTIONS(2376), + [anon_sym_source_DASHenv] = ACTIONS(2376), + [anon_sym_register] = ACTIONS(2376), + [anon_sym_hide] = ACTIONS(2376), + [anon_sym_hide_DASHenv] = ACTIONS(2376), + [anon_sym_overlay] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_LPAREN2] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2376), + [aux_sym__val_number_decimal_token2] = ACTIONS(2378), + [aux_sym__val_number_decimal_token3] = ACTIONS(2378), + [aux_sym__val_number_decimal_token4] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [sym__str_single_quotes] = ACTIONS(2378), + [sym__str_back_ticks] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(247), + }, + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(1900), + [anon_sym_alias] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_let_DASHenv] = ACTIONS(1900), + [anon_sym_mut] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [aux_sym_cmd_identifier_token1] = ACTIONS(1900), + [aux_sym_cmd_identifier_token2] = ACTIONS(1900), + [aux_sym_cmd_identifier_token3] = ACTIONS(1900), + [aux_sym_cmd_identifier_token4] = ACTIONS(1900), + [aux_sym_cmd_identifier_token5] = ACTIONS(1900), + [aux_sym_cmd_identifier_token6] = ACTIONS(1900), + [aux_sym_cmd_identifier_token7] = ACTIONS(1900), + [aux_sym_cmd_identifier_token8] = ACTIONS(1900), + [aux_sym_cmd_identifier_token9] = ACTIONS(1900), + [aux_sym_cmd_identifier_token10] = ACTIONS(1900), + [aux_sym_cmd_identifier_token11] = ACTIONS(1900), + [aux_sym_cmd_identifier_token12] = ACTIONS(1900), + [aux_sym_cmd_identifier_token13] = ACTIONS(1900), + [aux_sym_cmd_identifier_token14] = ACTIONS(1900), + [aux_sym_cmd_identifier_token15] = ACTIONS(1900), + [aux_sym_cmd_identifier_token16] = ACTIONS(1900), + [aux_sym_cmd_identifier_token17] = ACTIONS(1900), + [aux_sym_cmd_identifier_token18] = ACTIONS(1900), + [aux_sym_cmd_identifier_token19] = ACTIONS(1900), + [aux_sym_cmd_identifier_token20] = ACTIONS(1900), + [aux_sym_cmd_identifier_token21] = ACTIONS(1900), + [aux_sym_cmd_identifier_token22] = ACTIONS(1900), + [aux_sym_cmd_identifier_token23] = ACTIONS(1900), + [aux_sym_cmd_identifier_token24] = ACTIONS(1900), + [aux_sym_cmd_identifier_token25] = ACTIONS(1900), + [aux_sym_cmd_identifier_token26] = ACTIONS(1900), + [aux_sym_cmd_identifier_token27] = ACTIONS(1900), + [aux_sym_cmd_identifier_token28] = ACTIONS(1900), + [aux_sym_cmd_identifier_token29] = ACTIONS(1900), + [aux_sym_cmd_identifier_token30] = ACTIONS(1900), + [aux_sym_cmd_identifier_token31] = ACTIONS(1900), + [aux_sym_cmd_identifier_token32] = ACTIONS(1900), + [aux_sym_cmd_identifier_token33] = ACTIONS(1900), + [aux_sym_cmd_identifier_token34] = ACTIONS(1900), + [aux_sym_cmd_identifier_token35] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1900), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [anon_sym_def] = ACTIONS(1900), + [anon_sym_export_DASHenv] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_module] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_error] = ACTIONS(1900), + [anon_sym_list] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_make] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_else] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_try] = ACTIONS(1900), + [anon_sym_catch] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_source] = ACTIONS(1900), + [anon_sym_source_DASHenv] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_hide] = ACTIONS(1900), + [anon_sym_hide_DASHenv] = ACTIONS(1900), + [anon_sym_overlay] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1900), + [anon_sym_as] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1900), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1900), + [sym__entry_separator] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(3), + }, + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(1046), + [anon_sym_alias] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_let_DASHenv] = ACTIONS(1046), + [anon_sym_mut] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1046), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1046), + [aux_sym_cmd_identifier_token9] = ACTIONS(1046), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1046), + [aux_sym_cmd_identifier_token13] = ACTIONS(1046), + [aux_sym_cmd_identifier_token14] = ACTIONS(1046), + [aux_sym_cmd_identifier_token15] = ACTIONS(1046), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1046), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1046), + [anon_sym_export_DASHenv] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1046), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_in] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_make] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_else] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_source] = ACTIONS(1046), + [anon_sym_source_DASHenv] = ACTIONS(1046), + [anon_sym_register] = ACTIONS(1046), + [anon_sym_hide] = ACTIONS(1046), + [anon_sym_hide_DASHenv] = ACTIONS(1046), + [anon_sym_overlay] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + }, + [579] = { + [sym_comment] = STATE(579), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_alias] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_let_DASHenv] = ACTIONS(2442), + [anon_sym_mut] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [aux_sym_cmd_identifier_token1] = ACTIONS(2442), + [aux_sym_cmd_identifier_token2] = ACTIONS(2442), + [aux_sym_cmd_identifier_token3] = ACTIONS(2442), + [aux_sym_cmd_identifier_token4] = ACTIONS(2442), + [aux_sym_cmd_identifier_token5] = ACTIONS(2442), + [aux_sym_cmd_identifier_token6] = ACTIONS(2442), + [aux_sym_cmd_identifier_token7] = ACTIONS(2442), + [aux_sym_cmd_identifier_token8] = ACTIONS(2442), + [aux_sym_cmd_identifier_token9] = ACTIONS(2442), + [aux_sym_cmd_identifier_token10] = ACTIONS(2442), + [aux_sym_cmd_identifier_token11] = ACTIONS(2442), + [aux_sym_cmd_identifier_token12] = ACTIONS(2442), + [aux_sym_cmd_identifier_token13] = ACTIONS(2442), + [aux_sym_cmd_identifier_token14] = ACTIONS(2442), + [aux_sym_cmd_identifier_token15] = ACTIONS(2442), + [aux_sym_cmd_identifier_token16] = ACTIONS(2442), + [aux_sym_cmd_identifier_token17] = ACTIONS(2442), + [aux_sym_cmd_identifier_token18] = ACTIONS(2442), + [aux_sym_cmd_identifier_token19] = ACTIONS(2442), + [aux_sym_cmd_identifier_token20] = ACTIONS(2442), + [aux_sym_cmd_identifier_token21] = ACTIONS(2442), + [aux_sym_cmd_identifier_token22] = ACTIONS(2442), + [aux_sym_cmd_identifier_token23] = ACTIONS(2442), + [aux_sym_cmd_identifier_token24] = ACTIONS(2442), + [aux_sym_cmd_identifier_token25] = ACTIONS(2442), + [aux_sym_cmd_identifier_token26] = ACTIONS(2442), + [aux_sym_cmd_identifier_token27] = ACTIONS(2442), + [aux_sym_cmd_identifier_token28] = ACTIONS(2442), + [aux_sym_cmd_identifier_token29] = ACTIONS(2442), + [aux_sym_cmd_identifier_token30] = ACTIONS(2442), + [aux_sym_cmd_identifier_token31] = ACTIONS(2442), + [aux_sym_cmd_identifier_token32] = ACTIONS(2442), + [aux_sym_cmd_identifier_token33] = ACTIONS(2442), + [aux_sym_cmd_identifier_token34] = ACTIONS(2442), + [aux_sym_cmd_identifier_token35] = ACTIONS(2442), + [aux_sym_cmd_identifier_token36] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2442), + [anon_sym_false] = ACTIONS(2442), + [anon_sym_null] = ACTIONS(2442), + [aux_sym_cmd_identifier_token38] = ACTIONS(2442), + [aux_sym_cmd_identifier_token39] = ACTIONS(2442), + [aux_sym_cmd_identifier_token40] = ACTIONS(2442), + [anon_sym_def] = ACTIONS(2442), + [anon_sym_export_DASHenv] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_error] = ACTIONS(2442), + [anon_sym_list] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_make] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_catch] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_source] = ACTIONS(2442), + [anon_sym_source_DASHenv] = ACTIONS(2442), + [anon_sym_register] = ACTIONS(2442), + [anon_sym_hide] = ACTIONS(2442), + [anon_sym_hide_DASHenv] = ACTIONS(2442), + [anon_sym_overlay] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2442), + [aux_sym__val_number_decimal_token1] = ACTIONS(2442), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2442), + [aux_sym__val_number_decimal_token4] = ACTIONS(2442), + [aux_sym__val_number_token1] = ACTIONS(2442), + [aux_sym__val_number_token2] = ACTIONS(2442), + [aux_sym__val_number_token3] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym__str_single_quotes] = ACTIONS(2442), + [sym__str_back_ticks] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2442), + [sym__entry_separator] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1894), - [aux_sym_cmd_identifier_token4] = ACTIONS(1894), - [aux_sym_cmd_identifier_token5] = ACTIONS(1894), - [aux_sym_cmd_identifier_token6] = ACTIONS(1894), - [aux_sym_cmd_identifier_token7] = ACTIONS(1894), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1894), - [aux_sym_cmd_identifier_token11] = ACTIONS(1894), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1894), - [aux_sym_cmd_identifier_token17] = ACTIONS(1894), - [aux_sym_cmd_identifier_token18] = ACTIONS(1894), - [aux_sym_cmd_identifier_token19] = ACTIONS(1894), - [aux_sym_cmd_identifier_token20] = ACTIONS(1894), - [aux_sym_cmd_identifier_token21] = ACTIONS(1894), - [aux_sym_cmd_identifier_token22] = ACTIONS(1894), - [aux_sym_cmd_identifier_token23] = ACTIONS(1894), - [aux_sym_cmd_identifier_token24] = ACTIONS(1894), - [aux_sym_cmd_identifier_token25] = ACTIONS(1894), - [aux_sym_cmd_identifier_token26] = ACTIONS(1894), - [aux_sym_cmd_identifier_token27] = ACTIONS(1894), - [aux_sym_cmd_identifier_token28] = ACTIONS(1894), - [aux_sym_cmd_identifier_token29] = ACTIONS(1894), - [aux_sym_cmd_identifier_token30] = ACTIONS(1894), - [aux_sym_cmd_identifier_token31] = ACTIONS(1894), - [aux_sym_cmd_identifier_token32] = ACTIONS(1894), - [aux_sym_cmd_identifier_token33] = ACTIONS(1894), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1894), - [aux_sym_cmd_identifier_token36] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_list] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_new] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), - [sym__entry_separator] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1894), + [580] = { + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_let_DASHenv] = ACTIONS(2446), + [anon_sym_mut] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [aux_sym_cmd_identifier_token1] = ACTIONS(2446), + [aux_sym_cmd_identifier_token2] = ACTIONS(2446), + [aux_sym_cmd_identifier_token3] = ACTIONS(2446), + [aux_sym_cmd_identifier_token4] = ACTIONS(2446), + [aux_sym_cmd_identifier_token5] = ACTIONS(2446), + [aux_sym_cmd_identifier_token6] = ACTIONS(2446), + [aux_sym_cmd_identifier_token7] = ACTIONS(2446), + [aux_sym_cmd_identifier_token8] = ACTIONS(2446), + [aux_sym_cmd_identifier_token9] = ACTIONS(2446), + [aux_sym_cmd_identifier_token10] = ACTIONS(2446), + [aux_sym_cmd_identifier_token11] = ACTIONS(2446), + [aux_sym_cmd_identifier_token12] = ACTIONS(2446), + [aux_sym_cmd_identifier_token13] = ACTIONS(2446), + [aux_sym_cmd_identifier_token14] = ACTIONS(2446), + [aux_sym_cmd_identifier_token15] = ACTIONS(2446), + [aux_sym_cmd_identifier_token16] = ACTIONS(2446), + [aux_sym_cmd_identifier_token17] = ACTIONS(2446), + [aux_sym_cmd_identifier_token18] = ACTIONS(2446), + [aux_sym_cmd_identifier_token19] = ACTIONS(2446), + [aux_sym_cmd_identifier_token20] = ACTIONS(2446), + [aux_sym_cmd_identifier_token21] = ACTIONS(2446), + [aux_sym_cmd_identifier_token22] = ACTIONS(2446), + [aux_sym_cmd_identifier_token23] = ACTIONS(2446), + [aux_sym_cmd_identifier_token24] = ACTIONS(2446), + [aux_sym_cmd_identifier_token25] = ACTIONS(2446), + [aux_sym_cmd_identifier_token26] = ACTIONS(2446), + [aux_sym_cmd_identifier_token27] = ACTIONS(2446), + [aux_sym_cmd_identifier_token28] = ACTIONS(2446), + [aux_sym_cmd_identifier_token29] = ACTIONS(2446), + [aux_sym_cmd_identifier_token30] = ACTIONS(2446), + [aux_sym_cmd_identifier_token31] = ACTIONS(2446), + [aux_sym_cmd_identifier_token32] = ACTIONS(2446), + [aux_sym_cmd_identifier_token33] = ACTIONS(2446), + [aux_sym_cmd_identifier_token34] = ACTIONS(2446), + [aux_sym_cmd_identifier_token35] = ACTIONS(2446), + [aux_sym_cmd_identifier_token36] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [anon_sym_null] = ACTIONS(2446), + [aux_sym_cmd_identifier_token38] = ACTIONS(2446), + [aux_sym_cmd_identifier_token39] = ACTIONS(2446), + [aux_sym_cmd_identifier_token40] = ACTIONS(2446), + [anon_sym_def] = ACTIONS(2446), + [anon_sym_export_DASHenv] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym_module] = ACTIONS(2446), + [anon_sym_use] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2446), + [anon_sym_error] = ACTIONS(2446), + [anon_sym_list] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_loop] = ACTIONS(2446), + [anon_sym_make] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_match] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2446), + [anon_sym_catch] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_source] = ACTIONS(2446), + [anon_sym_source_DASHenv] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_hide] = ACTIONS(2446), + [anon_sym_hide_DASHenv] = ACTIONS(2446), + [anon_sym_overlay] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_as] = ACTIONS(2446), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2446), + [aux_sym__val_number_decimal_token1] = ACTIONS(2446), + [aux_sym__val_number_decimal_token2] = ACTIONS(2446), + [aux_sym__val_number_decimal_token3] = ACTIONS(2446), + [aux_sym__val_number_decimal_token4] = ACTIONS(2446), + [aux_sym__val_number_token1] = ACTIONS(2446), + [aux_sym__val_number_token2] = ACTIONS(2446), + [aux_sym__val_number_token3] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym__str_single_quotes] = ACTIONS(2446), + [sym__str_back_ticks] = ACTIONS(2446), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2446), + [sym__entry_separator] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2446), [anon_sym_POUND] = ACTIONS(3), }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_list] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [sym__entry_separator] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1945), + [581] = { + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(1904), + [anon_sym_alias] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_let_DASHenv] = ACTIONS(1904), + [anon_sym_mut] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [aux_sym_cmd_identifier_token1] = ACTIONS(1904), + [aux_sym_cmd_identifier_token2] = ACTIONS(1904), + [aux_sym_cmd_identifier_token3] = ACTIONS(1904), + [aux_sym_cmd_identifier_token4] = ACTIONS(1904), + [aux_sym_cmd_identifier_token5] = ACTIONS(1904), + [aux_sym_cmd_identifier_token6] = ACTIONS(1904), + [aux_sym_cmd_identifier_token7] = ACTIONS(1904), + [aux_sym_cmd_identifier_token8] = ACTIONS(1904), + [aux_sym_cmd_identifier_token9] = ACTIONS(1904), + [aux_sym_cmd_identifier_token10] = ACTIONS(1904), + [aux_sym_cmd_identifier_token11] = ACTIONS(1904), + [aux_sym_cmd_identifier_token12] = ACTIONS(1904), + [aux_sym_cmd_identifier_token13] = ACTIONS(1904), + [aux_sym_cmd_identifier_token14] = ACTIONS(1904), + [aux_sym_cmd_identifier_token15] = ACTIONS(1904), + [aux_sym_cmd_identifier_token16] = ACTIONS(1904), + [aux_sym_cmd_identifier_token17] = ACTIONS(1904), + [aux_sym_cmd_identifier_token18] = ACTIONS(1904), + [aux_sym_cmd_identifier_token19] = ACTIONS(1904), + [aux_sym_cmd_identifier_token20] = ACTIONS(1904), + [aux_sym_cmd_identifier_token21] = ACTIONS(1904), + [aux_sym_cmd_identifier_token22] = ACTIONS(1904), + [aux_sym_cmd_identifier_token23] = ACTIONS(1904), + [aux_sym_cmd_identifier_token24] = ACTIONS(1904), + [aux_sym_cmd_identifier_token25] = ACTIONS(1904), + [aux_sym_cmd_identifier_token26] = ACTIONS(1904), + [aux_sym_cmd_identifier_token27] = ACTIONS(1904), + [aux_sym_cmd_identifier_token28] = ACTIONS(1904), + [aux_sym_cmd_identifier_token29] = ACTIONS(1904), + [aux_sym_cmd_identifier_token30] = ACTIONS(1904), + [aux_sym_cmd_identifier_token31] = ACTIONS(1904), + [aux_sym_cmd_identifier_token32] = ACTIONS(1904), + [aux_sym_cmd_identifier_token33] = ACTIONS(1904), + [aux_sym_cmd_identifier_token34] = ACTIONS(1904), + [aux_sym_cmd_identifier_token35] = ACTIONS(1904), + [aux_sym_cmd_identifier_token36] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1904), + [aux_sym_cmd_identifier_token38] = ACTIONS(1904), + [aux_sym_cmd_identifier_token39] = ACTIONS(1904), + [aux_sym_cmd_identifier_token40] = ACTIONS(1904), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_export_DASHenv] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_module] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_error] = ACTIONS(1904), + [anon_sym_list] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_make] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_try] = ACTIONS(1904), + [anon_sym_catch] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_source] = ACTIONS(1904), + [anon_sym_source_DASHenv] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_hide] = ACTIONS(1904), + [anon_sym_hide_DASHenv] = ACTIONS(1904), + [anon_sym_overlay] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1904), + [aux_sym__val_number_decimal_token3] = ACTIONS(1904), + [aux_sym__val_number_decimal_token4] = ACTIONS(1904), + [aux_sym__val_number_token1] = ACTIONS(1904), + [aux_sym__val_number_token2] = ACTIONS(1904), + [aux_sym__val_number_token3] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1904), + [sym__str_single_quotes] = ACTIONS(1904), + [sym__str_back_ticks] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1904), + [sym__entry_separator] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1904), [anon_sym_POUND] = ACTIONS(3), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_alias] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_let_DASHenv] = ACTIONS(2420), - [anon_sym_mut] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [aux_sym_cmd_identifier_token1] = ACTIONS(2420), - [aux_sym_cmd_identifier_token2] = ACTIONS(2420), - [aux_sym_cmd_identifier_token3] = ACTIONS(2420), - [aux_sym_cmd_identifier_token4] = ACTIONS(2420), - [aux_sym_cmd_identifier_token5] = ACTIONS(2420), - [aux_sym_cmd_identifier_token6] = ACTIONS(2420), - [aux_sym_cmd_identifier_token7] = ACTIONS(2420), - [aux_sym_cmd_identifier_token8] = ACTIONS(2420), - [aux_sym_cmd_identifier_token9] = ACTIONS(2420), - [aux_sym_cmd_identifier_token10] = ACTIONS(2420), - [aux_sym_cmd_identifier_token11] = ACTIONS(2420), - [aux_sym_cmd_identifier_token12] = ACTIONS(2420), - [aux_sym_cmd_identifier_token13] = ACTIONS(2420), - [aux_sym_cmd_identifier_token14] = ACTIONS(2420), - [aux_sym_cmd_identifier_token15] = ACTIONS(2420), - [aux_sym_cmd_identifier_token16] = ACTIONS(2420), - [aux_sym_cmd_identifier_token17] = ACTIONS(2420), - [aux_sym_cmd_identifier_token18] = ACTIONS(2420), - [aux_sym_cmd_identifier_token19] = ACTIONS(2420), - [aux_sym_cmd_identifier_token20] = ACTIONS(2420), - [aux_sym_cmd_identifier_token21] = ACTIONS(2420), - [aux_sym_cmd_identifier_token22] = ACTIONS(2420), - [aux_sym_cmd_identifier_token23] = ACTIONS(2420), - [aux_sym_cmd_identifier_token24] = ACTIONS(2420), - [aux_sym_cmd_identifier_token25] = ACTIONS(2420), - [aux_sym_cmd_identifier_token26] = ACTIONS(2420), - [aux_sym_cmd_identifier_token27] = ACTIONS(2420), - [aux_sym_cmd_identifier_token28] = ACTIONS(2420), - [aux_sym_cmd_identifier_token29] = ACTIONS(2420), - [aux_sym_cmd_identifier_token30] = ACTIONS(2420), - [aux_sym_cmd_identifier_token31] = ACTIONS(2420), - [aux_sym_cmd_identifier_token32] = ACTIONS(2420), - [aux_sym_cmd_identifier_token33] = ACTIONS(2420), - [aux_sym_cmd_identifier_token34] = ACTIONS(2420), - [aux_sym_cmd_identifier_token35] = ACTIONS(2420), - [aux_sym_cmd_identifier_token36] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_null] = ACTIONS(2420), - [aux_sym_cmd_identifier_token38] = ACTIONS(2420), - [aux_sym_cmd_identifier_token39] = ACTIONS(2420), - [aux_sym_cmd_identifier_token40] = ACTIONS(2420), - [anon_sym_def] = ACTIONS(2420), - [anon_sym_export_DASHenv] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2420), - [anon_sym_error] = ACTIONS(2420), - [anon_sym_list] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_in] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_make] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_catch] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_source] = ACTIONS(2420), - [anon_sym_source_DASHenv] = ACTIONS(2420), - [anon_sym_register] = ACTIONS(2420), - [anon_sym_hide] = ACTIONS(2420), - [anon_sym_hide_DASHenv] = ACTIONS(2420), - [anon_sym_overlay] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), - [aux_sym__val_number_decimal_token1] = ACTIONS(2420), - [aux_sym__val_number_decimal_token2] = ACTIONS(2420), - [aux_sym__val_number_decimal_token3] = ACTIONS(2420), - [aux_sym__val_number_decimal_token4] = ACTIONS(2420), - [aux_sym__val_number_token1] = ACTIONS(2420), - [aux_sym__val_number_token2] = ACTIONS(2420), - [aux_sym__val_number_token3] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(2420), - [sym__str_single_quotes] = ACTIONS(2420), - [sym__str_back_ticks] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), - [sym__entry_separator] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2420), + [582] = { + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_alias] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_let_DASHenv] = ACTIONS(2450), + [anon_sym_mut] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [aux_sym_cmd_identifier_token1] = ACTIONS(2450), + [aux_sym_cmd_identifier_token2] = ACTIONS(2450), + [aux_sym_cmd_identifier_token3] = ACTIONS(2450), + [aux_sym_cmd_identifier_token4] = ACTIONS(2450), + [aux_sym_cmd_identifier_token5] = ACTIONS(2450), + [aux_sym_cmd_identifier_token6] = ACTIONS(2450), + [aux_sym_cmd_identifier_token7] = ACTIONS(2450), + [aux_sym_cmd_identifier_token8] = ACTIONS(2450), + [aux_sym_cmd_identifier_token9] = ACTIONS(2450), + [aux_sym_cmd_identifier_token10] = ACTIONS(2450), + [aux_sym_cmd_identifier_token11] = ACTIONS(2450), + [aux_sym_cmd_identifier_token12] = ACTIONS(2450), + [aux_sym_cmd_identifier_token13] = ACTIONS(2450), + [aux_sym_cmd_identifier_token14] = ACTIONS(2450), + [aux_sym_cmd_identifier_token15] = ACTIONS(2450), + [aux_sym_cmd_identifier_token16] = ACTIONS(2450), + [aux_sym_cmd_identifier_token17] = ACTIONS(2450), + [aux_sym_cmd_identifier_token18] = ACTIONS(2450), + [aux_sym_cmd_identifier_token19] = ACTIONS(2450), + [aux_sym_cmd_identifier_token20] = ACTIONS(2450), + [aux_sym_cmd_identifier_token21] = ACTIONS(2450), + [aux_sym_cmd_identifier_token22] = ACTIONS(2450), + [aux_sym_cmd_identifier_token23] = ACTIONS(2450), + [aux_sym_cmd_identifier_token24] = ACTIONS(2450), + [aux_sym_cmd_identifier_token25] = ACTIONS(2450), + [aux_sym_cmd_identifier_token26] = ACTIONS(2450), + [aux_sym_cmd_identifier_token27] = ACTIONS(2450), + [aux_sym_cmd_identifier_token28] = ACTIONS(2450), + [aux_sym_cmd_identifier_token29] = ACTIONS(2450), + [aux_sym_cmd_identifier_token30] = ACTIONS(2450), + [aux_sym_cmd_identifier_token31] = ACTIONS(2450), + [aux_sym_cmd_identifier_token32] = ACTIONS(2450), + [aux_sym_cmd_identifier_token33] = ACTIONS(2450), + [aux_sym_cmd_identifier_token34] = ACTIONS(2450), + [aux_sym_cmd_identifier_token35] = ACTIONS(2450), + [aux_sym_cmd_identifier_token36] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2450), + [anon_sym_false] = ACTIONS(2450), + [anon_sym_null] = ACTIONS(2450), + [aux_sym_cmd_identifier_token38] = ACTIONS(2450), + [aux_sym_cmd_identifier_token39] = ACTIONS(2450), + [aux_sym_cmd_identifier_token40] = ACTIONS(2450), + [anon_sym_def] = ACTIONS(2450), + [anon_sym_export_DASHenv] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_module] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_error] = ACTIONS(2450), + [anon_sym_list] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_make] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_catch] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_source] = ACTIONS(2450), + [anon_sym_source_DASHenv] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_hide] = ACTIONS(2450), + [anon_sym_hide_DASHenv] = ACTIONS(2450), + [anon_sym_overlay] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2450), + [aux_sym__val_number_decimal_token1] = ACTIONS(2450), + [aux_sym__val_number_decimal_token2] = ACTIONS(2450), + [aux_sym__val_number_decimal_token3] = ACTIONS(2450), + [aux_sym__val_number_decimal_token4] = ACTIONS(2450), + [aux_sym__val_number_token1] = ACTIONS(2450), + [aux_sym__val_number_token2] = ACTIONS(2450), + [aux_sym__val_number_token3] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [sym__str_single_quotes] = ACTIONS(2450), + [sym__str_back_ticks] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2450), + [sym__entry_separator] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2450), [anon_sym_POUND] = ACTIONS(3), }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_alias] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_let_DASHenv] = ACTIONS(2424), - [anon_sym_mut] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [aux_sym_cmd_identifier_token1] = ACTIONS(2424), - [aux_sym_cmd_identifier_token2] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2424), - [aux_sym_cmd_identifier_token4] = ACTIONS(2424), - [aux_sym_cmd_identifier_token5] = ACTIONS(2424), - [aux_sym_cmd_identifier_token6] = ACTIONS(2424), - [aux_sym_cmd_identifier_token7] = ACTIONS(2424), - [aux_sym_cmd_identifier_token8] = ACTIONS(2424), - [aux_sym_cmd_identifier_token9] = ACTIONS(2424), - [aux_sym_cmd_identifier_token10] = ACTIONS(2424), - [aux_sym_cmd_identifier_token11] = ACTIONS(2424), - [aux_sym_cmd_identifier_token12] = ACTIONS(2424), - [aux_sym_cmd_identifier_token13] = ACTIONS(2424), - [aux_sym_cmd_identifier_token14] = ACTIONS(2424), - [aux_sym_cmd_identifier_token15] = ACTIONS(2424), - [aux_sym_cmd_identifier_token16] = ACTIONS(2424), - [aux_sym_cmd_identifier_token17] = ACTIONS(2424), - [aux_sym_cmd_identifier_token18] = ACTIONS(2424), - [aux_sym_cmd_identifier_token19] = ACTIONS(2424), - [aux_sym_cmd_identifier_token20] = ACTIONS(2424), - [aux_sym_cmd_identifier_token21] = ACTIONS(2424), - [aux_sym_cmd_identifier_token22] = ACTIONS(2424), - [aux_sym_cmd_identifier_token23] = ACTIONS(2424), - [aux_sym_cmd_identifier_token24] = ACTIONS(2424), - [aux_sym_cmd_identifier_token25] = ACTIONS(2424), - [aux_sym_cmd_identifier_token26] = ACTIONS(2424), - [aux_sym_cmd_identifier_token27] = ACTIONS(2424), - [aux_sym_cmd_identifier_token28] = ACTIONS(2424), - [aux_sym_cmd_identifier_token29] = ACTIONS(2424), - [aux_sym_cmd_identifier_token30] = ACTIONS(2424), - [aux_sym_cmd_identifier_token31] = ACTIONS(2424), - [aux_sym_cmd_identifier_token32] = ACTIONS(2424), - [aux_sym_cmd_identifier_token33] = ACTIONS(2424), - [aux_sym_cmd_identifier_token34] = ACTIONS(2424), - [aux_sym_cmd_identifier_token35] = ACTIONS(2424), - [aux_sym_cmd_identifier_token36] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token38] = ACTIONS(2424), - [aux_sym_cmd_identifier_token39] = ACTIONS(2424), - [aux_sym_cmd_identifier_token40] = ACTIONS(2424), - [anon_sym_def] = ACTIONS(2424), - [anon_sym_export_DASHenv] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2424), - [anon_sym_error] = ACTIONS(2424), - [anon_sym_list] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_in] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_make] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_catch] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_source] = ACTIONS(2424), - [anon_sym_source_DASHenv] = ACTIONS(2424), - [anon_sym_register] = ACTIONS(2424), - [anon_sym_hide] = ACTIONS(2424), - [anon_sym_hide_DASHenv] = ACTIONS(2424), - [anon_sym_overlay] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_as] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), - [aux_sym__val_number_decimal_token1] = ACTIONS(2424), - [aux_sym__val_number_decimal_token2] = ACTIONS(2424), - [aux_sym__val_number_decimal_token3] = ACTIONS(2424), - [aux_sym__val_number_decimal_token4] = ACTIONS(2424), - [aux_sym__val_number_token1] = ACTIONS(2424), - [aux_sym__val_number_token2] = ACTIONS(2424), - [aux_sym__val_number_token3] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym__str_single_quotes] = ACTIONS(2424), - [sym__str_back_ticks] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), - [sym__entry_separator] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2424), + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(1050), + [anon_sym_alias] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_let_DASHenv] = ACTIONS(1050), + [anon_sym_mut] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1050), + [aux_sym_cmd_identifier_token2] = ACTIONS(1050), + [aux_sym_cmd_identifier_token3] = ACTIONS(1050), + [aux_sym_cmd_identifier_token4] = ACTIONS(1050), + [aux_sym_cmd_identifier_token5] = ACTIONS(1050), + [aux_sym_cmd_identifier_token6] = ACTIONS(1050), + [aux_sym_cmd_identifier_token7] = ACTIONS(1050), + [aux_sym_cmd_identifier_token8] = ACTIONS(1050), + [aux_sym_cmd_identifier_token9] = ACTIONS(1050), + [aux_sym_cmd_identifier_token10] = ACTIONS(1050), + [aux_sym_cmd_identifier_token11] = ACTIONS(1050), + [aux_sym_cmd_identifier_token12] = ACTIONS(1050), + [aux_sym_cmd_identifier_token13] = ACTIONS(1050), + [aux_sym_cmd_identifier_token14] = ACTIONS(1050), + [aux_sym_cmd_identifier_token15] = ACTIONS(1050), + [aux_sym_cmd_identifier_token16] = ACTIONS(1050), + [aux_sym_cmd_identifier_token17] = ACTIONS(1050), + [aux_sym_cmd_identifier_token18] = ACTIONS(1050), + [aux_sym_cmd_identifier_token19] = ACTIONS(1050), + [aux_sym_cmd_identifier_token20] = ACTIONS(1050), + [aux_sym_cmd_identifier_token21] = ACTIONS(1050), + [aux_sym_cmd_identifier_token22] = ACTIONS(1050), + [aux_sym_cmd_identifier_token23] = ACTIONS(1050), + [aux_sym_cmd_identifier_token24] = ACTIONS(1050), + [aux_sym_cmd_identifier_token25] = ACTIONS(1050), + [aux_sym_cmd_identifier_token26] = ACTIONS(1050), + [aux_sym_cmd_identifier_token27] = ACTIONS(1050), + [aux_sym_cmd_identifier_token28] = ACTIONS(1050), + [aux_sym_cmd_identifier_token29] = ACTIONS(1050), + [aux_sym_cmd_identifier_token30] = ACTIONS(1050), + [aux_sym_cmd_identifier_token31] = ACTIONS(1050), + [aux_sym_cmd_identifier_token32] = ACTIONS(1050), + [aux_sym_cmd_identifier_token33] = ACTIONS(1050), + [aux_sym_cmd_identifier_token34] = ACTIONS(1050), + [aux_sym_cmd_identifier_token35] = ACTIONS(1050), + [aux_sym_cmd_identifier_token36] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1050), + [anon_sym_export_DASHenv] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1050), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_in] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_make] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_else] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_catch] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_source] = ACTIONS(1050), + [anon_sym_source_DASHenv] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_hide] = ACTIONS(1050), + [anon_sym_hide_DASHenv] = ACTIONS(1050), + [anon_sym_overlay] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(247), + }, + [584] = { + [sym_comment] = STATE(584), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(247), + }, + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_alias] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_let_DASHenv] = ACTIONS(2454), + [anon_sym_mut] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [aux_sym_cmd_identifier_token1] = ACTIONS(2454), + [aux_sym_cmd_identifier_token2] = ACTIONS(2454), + [aux_sym_cmd_identifier_token3] = ACTIONS(2454), + [aux_sym_cmd_identifier_token4] = ACTIONS(2454), + [aux_sym_cmd_identifier_token5] = ACTIONS(2454), + [aux_sym_cmd_identifier_token6] = ACTIONS(2454), + [aux_sym_cmd_identifier_token7] = ACTIONS(2454), + [aux_sym_cmd_identifier_token8] = ACTIONS(2454), + [aux_sym_cmd_identifier_token9] = ACTIONS(2454), + [aux_sym_cmd_identifier_token10] = ACTIONS(2454), + [aux_sym_cmd_identifier_token11] = ACTIONS(2454), + [aux_sym_cmd_identifier_token12] = ACTIONS(2454), + [aux_sym_cmd_identifier_token13] = ACTIONS(2454), + [aux_sym_cmd_identifier_token14] = ACTIONS(2454), + [aux_sym_cmd_identifier_token15] = ACTIONS(2454), + [aux_sym_cmd_identifier_token16] = ACTIONS(2454), + [aux_sym_cmd_identifier_token17] = ACTIONS(2454), + [aux_sym_cmd_identifier_token18] = ACTIONS(2454), + [aux_sym_cmd_identifier_token19] = ACTIONS(2454), + [aux_sym_cmd_identifier_token20] = ACTIONS(2454), + [aux_sym_cmd_identifier_token21] = ACTIONS(2454), + [aux_sym_cmd_identifier_token22] = ACTIONS(2454), + [aux_sym_cmd_identifier_token23] = ACTIONS(2454), + [aux_sym_cmd_identifier_token24] = ACTIONS(2454), + [aux_sym_cmd_identifier_token25] = ACTIONS(2454), + [aux_sym_cmd_identifier_token26] = ACTIONS(2454), + [aux_sym_cmd_identifier_token27] = ACTIONS(2454), + [aux_sym_cmd_identifier_token28] = ACTIONS(2454), + [aux_sym_cmd_identifier_token29] = ACTIONS(2454), + [aux_sym_cmd_identifier_token30] = ACTIONS(2454), + [aux_sym_cmd_identifier_token31] = ACTIONS(2454), + [aux_sym_cmd_identifier_token32] = ACTIONS(2454), + [aux_sym_cmd_identifier_token33] = ACTIONS(2454), + [aux_sym_cmd_identifier_token34] = ACTIONS(2454), + [aux_sym_cmd_identifier_token35] = ACTIONS(2454), + [aux_sym_cmd_identifier_token36] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2454), + [anon_sym_false] = ACTIONS(2454), + [anon_sym_null] = ACTIONS(2454), + [aux_sym_cmd_identifier_token38] = ACTIONS(2454), + [aux_sym_cmd_identifier_token39] = ACTIONS(2454), + [aux_sym_cmd_identifier_token40] = ACTIONS(2454), + [anon_sym_def] = ACTIONS(2454), + [anon_sym_export_DASHenv] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_DOLLAR] = ACTIONS(2454), + [anon_sym_error] = ACTIONS(2454), + [anon_sym_list] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_make] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_catch] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_source] = ACTIONS(2454), + [anon_sym_source_DASHenv] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_hide] = ACTIONS(2454), + [anon_sym_hide_DASHenv] = ACTIONS(2454), + [anon_sym_overlay] = ACTIONS(2454), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_as] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2454), + [aux_sym__val_number_decimal_token1] = ACTIONS(2454), + [aux_sym__val_number_decimal_token2] = ACTIONS(2454), + [aux_sym__val_number_decimal_token3] = ACTIONS(2454), + [aux_sym__val_number_decimal_token4] = ACTIONS(2454), + [aux_sym__val_number_token1] = ACTIONS(2454), + [aux_sym__val_number_token2] = ACTIONS(2454), + [aux_sym__val_number_token3] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [sym__str_single_quotes] = ACTIONS(2454), + [sym__str_back_ticks] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2454), + [sym__entry_separator] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2454), [anon_sym_POUND] = ACTIONS(3), }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1667), + [aux_sym__val_number_decimal_token3] = ACTIONS(1667), + [aux_sym__val_number_decimal_token4] = ACTIONS(1667), + [aux_sym__val_number_token1] = ACTIONS(1667), + [aux_sym__val_number_token2] = ACTIONS(1667), + [aux_sym__val_number_token3] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [sym__str_single_quotes] = ACTIONS(1667), + [sym__str_back_ticks] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), + [sym__entry_separator] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(2428), - [anon_sym_alias] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_let_DASHenv] = ACTIONS(2428), - [anon_sym_mut] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [aux_sym_cmd_identifier_token2] = ACTIONS(2428), - [aux_sym_cmd_identifier_token3] = ACTIONS(2428), - [aux_sym_cmd_identifier_token4] = ACTIONS(2428), - [aux_sym_cmd_identifier_token5] = ACTIONS(2428), - [aux_sym_cmd_identifier_token6] = ACTIONS(2428), - [aux_sym_cmd_identifier_token7] = ACTIONS(2428), - [aux_sym_cmd_identifier_token8] = ACTIONS(2428), - [aux_sym_cmd_identifier_token9] = ACTIONS(2428), - [aux_sym_cmd_identifier_token10] = ACTIONS(2428), - [aux_sym_cmd_identifier_token11] = ACTIONS(2428), - [aux_sym_cmd_identifier_token12] = ACTIONS(2428), - [aux_sym_cmd_identifier_token13] = ACTIONS(2428), - [aux_sym_cmd_identifier_token14] = ACTIONS(2428), - [aux_sym_cmd_identifier_token15] = ACTIONS(2428), - [aux_sym_cmd_identifier_token16] = ACTIONS(2428), - [aux_sym_cmd_identifier_token17] = ACTIONS(2428), - [aux_sym_cmd_identifier_token18] = ACTIONS(2428), - [aux_sym_cmd_identifier_token19] = ACTIONS(2428), - [aux_sym_cmd_identifier_token20] = ACTIONS(2428), - [aux_sym_cmd_identifier_token21] = ACTIONS(2428), - [aux_sym_cmd_identifier_token22] = ACTIONS(2428), - [aux_sym_cmd_identifier_token23] = ACTIONS(2428), - [aux_sym_cmd_identifier_token24] = ACTIONS(2428), - [aux_sym_cmd_identifier_token25] = ACTIONS(2428), - [aux_sym_cmd_identifier_token26] = ACTIONS(2428), - [aux_sym_cmd_identifier_token27] = ACTIONS(2428), - [aux_sym_cmd_identifier_token28] = ACTIONS(2428), - [aux_sym_cmd_identifier_token29] = ACTIONS(2428), - [aux_sym_cmd_identifier_token30] = ACTIONS(2428), - [aux_sym_cmd_identifier_token31] = ACTIONS(2428), - [aux_sym_cmd_identifier_token32] = ACTIONS(2428), - [aux_sym_cmd_identifier_token33] = ACTIONS(2428), - [aux_sym_cmd_identifier_token34] = ACTIONS(2428), - [aux_sym_cmd_identifier_token35] = ACTIONS(2428), - [aux_sym_cmd_identifier_token36] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [anon_sym_null] = ACTIONS(2428), - [aux_sym_cmd_identifier_token38] = ACTIONS(2428), - [aux_sym_cmd_identifier_token39] = ACTIONS(2428), - [aux_sym_cmd_identifier_token40] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2428), - [anon_sym_export_DASHenv] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_module] = ACTIONS(2428), - [anon_sym_use] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_error] = ACTIONS(2428), - [anon_sym_list] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_in] = ACTIONS(2428), - [anon_sym_loop] = ACTIONS(2428), - [anon_sym_make] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_do] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_else] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2428), - [anon_sym_catch] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_source] = ACTIONS(2428), - [anon_sym_source_DASHenv] = ACTIONS(2428), - [anon_sym_register] = ACTIONS(2428), - [anon_sym_hide] = ACTIONS(2428), - [anon_sym_hide_DASHenv] = ACTIONS(2428), - [anon_sym_overlay] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2428), - [anon_sym_as] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2428), - [aux_sym__val_number_decimal_token2] = ACTIONS(2428), - [aux_sym__val_number_decimal_token3] = ACTIONS(2428), - [aux_sym__val_number_decimal_token4] = ACTIONS(2428), - [aux_sym__val_number_token1] = ACTIONS(2428), - [aux_sym__val_number_token2] = ACTIONS(2428), - [aux_sym__val_number_token3] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym__str_single_quotes] = ACTIONS(2428), - [sym__str_back_ticks] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), - [sym__entry_separator] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2428), + [587] = { + [sym_comment] = STATE(587), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [anon_sym_null] = ACTIONS(1560), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1560), + [aux_sym_cmd_identifier_token40] = ACTIONS(1560), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), + [sym__entry_separator] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1560), [anon_sym_POUND] = ACTIONS(3), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_alias] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_let_DASHenv] = ACTIONS(2432), - [anon_sym_mut] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [aux_sym_cmd_identifier_token1] = ACTIONS(2432), - [aux_sym_cmd_identifier_token2] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2432), - [aux_sym_cmd_identifier_token4] = ACTIONS(2432), - [aux_sym_cmd_identifier_token5] = ACTIONS(2432), - [aux_sym_cmd_identifier_token6] = ACTIONS(2432), - [aux_sym_cmd_identifier_token7] = ACTIONS(2432), - [aux_sym_cmd_identifier_token8] = ACTIONS(2432), - [aux_sym_cmd_identifier_token9] = ACTIONS(2432), - [aux_sym_cmd_identifier_token10] = ACTIONS(2432), - [aux_sym_cmd_identifier_token11] = ACTIONS(2432), - [aux_sym_cmd_identifier_token12] = ACTIONS(2432), - [aux_sym_cmd_identifier_token13] = ACTIONS(2432), - [aux_sym_cmd_identifier_token14] = ACTIONS(2432), - [aux_sym_cmd_identifier_token15] = ACTIONS(2432), - [aux_sym_cmd_identifier_token16] = ACTIONS(2432), - [aux_sym_cmd_identifier_token17] = ACTIONS(2432), - [aux_sym_cmd_identifier_token18] = ACTIONS(2432), - [aux_sym_cmd_identifier_token19] = ACTIONS(2432), - [aux_sym_cmd_identifier_token20] = ACTIONS(2432), - [aux_sym_cmd_identifier_token21] = ACTIONS(2432), - [aux_sym_cmd_identifier_token22] = ACTIONS(2432), - [aux_sym_cmd_identifier_token23] = ACTIONS(2432), - [aux_sym_cmd_identifier_token24] = ACTIONS(2432), - [aux_sym_cmd_identifier_token25] = ACTIONS(2432), - [aux_sym_cmd_identifier_token26] = ACTIONS(2432), - [aux_sym_cmd_identifier_token27] = ACTIONS(2432), - [aux_sym_cmd_identifier_token28] = ACTIONS(2432), - [aux_sym_cmd_identifier_token29] = ACTIONS(2432), - [aux_sym_cmd_identifier_token30] = ACTIONS(2432), - [aux_sym_cmd_identifier_token31] = ACTIONS(2432), - [aux_sym_cmd_identifier_token32] = ACTIONS(2432), - [aux_sym_cmd_identifier_token33] = ACTIONS(2432), - [aux_sym_cmd_identifier_token34] = ACTIONS(2432), - [aux_sym_cmd_identifier_token35] = ACTIONS(2432), - [aux_sym_cmd_identifier_token36] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [anon_sym_null] = ACTIONS(2432), - [aux_sym_cmd_identifier_token38] = ACTIONS(2432), - [aux_sym_cmd_identifier_token39] = ACTIONS(2432), - [aux_sym_cmd_identifier_token40] = ACTIONS(2432), - [anon_sym_def] = ACTIONS(2432), - [anon_sym_export_DASHenv] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_DOLLAR] = ACTIONS(2432), - [anon_sym_error] = ACTIONS(2432), - [anon_sym_list] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_in] = ACTIONS(2432), - [anon_sym_loop] = ACTIONS(2432), - [anon_sym_make] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_else] = ACTIONS(2432), - [anon_sym_match] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2432), - [anon_sym_catch] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_source] = ACTIONS(2432), - [anon_sym_source_DASHenv] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2432), - [anon_sym_hide] = ACTIONS(2432), - [anon_sym_hide_DASHenv] = ACTIONS(2432), - [anon_sym_overlay] = ACTIONS(2432), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_as] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2432), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [aux_sym__val_number_decimal_token3] = ACTIONS(2432), - [aux_sym__val_number_decimal_token4] = ACTIONS(2432), - [aux_sym__val_number_token1] = ACTIONS(2432), - [aux_sym__val_number_token2] = ACTIONS(2432), - [aux_sym__val_number_token3] = ACTIONS(2432), - [anon_sym_DQUOTE] = ACTIONS(2432), - [sym__str_single_quotes] = ACTIONS(2432), - [sym__str_back_ticks] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), - [sym__entry_separator] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2432), + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_alias] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_let_DASHenv] = ACTIONS(2458), + [anon_sym_mut] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [aux_sym_cmd_identifier_token1] = ACTIONS(2458), + [aux_sym_cmd_identifier_token2] = ACTIONS(2458), + [aux_sym_cmd_identifier_token3] = ACTIONS(2458), + [aux_sym_cmd_identifier_token4] = ACTIONS(2458), + [aux_sym_cmd_identifier_token5] = ACTIONS(2458), + [aux_sym_cmd_identifier_token6] = ACTIONS(2458), + [aux_sym_cmd_identifier_token7] = ACTIONS(2458), + [aux_sym_cmd_identifier_token8] = ACTIONS(2458), + [aux_sym_cmd_identifier_token9] = ACTIONS(2458), + [aux_sym_cmd_identifier_token10] = ACTIONS(2458), + [aux_sym_cmd_identifier_token11] = ACTIONS(2458), + [aux_sym_cmd_identifier_token12] = ACTIONS(2458), + [aux_sym_cmd_identifier_token13] = ACTIONS(2458), + [aux_sym_cmd_identifier_token14] = ACTIONS(2458), + [aux_sym_cmd_identifier_token15] = ACTIONS(2458), + [aux_sym_cmd_identifier_token16] = ACTIONS(2458), + [aux_sym_cmd_identifier_token17] = ACTIONS(2458), + [aux_sym_cmd_identifier_token18] = ACTIONS(2458), + [aux_sym_cmd_identifier_token19] = ACTIONS(2458), + [aux_sym_cmd_identifier_token20] = ACTIONS(2458), + [aux_sym_cmd_identifier_token21] = ACTIONS(2458), + [aux_sym_cmd_identifier_token22] = ACTIONS(2458), + [aux_sym_cmd_identifier_token23] = ACTIONS(2458), + [aux_sym_cmd_identifier_token24] = ACTIONS(2458), + [aux_sym_cmd_identifier_token25] = ACTIONS(2458), + [aux_sym_cmd_identifier_token26] = ACTIONS(2458), + [aux_sym_cmd_identifier_token27] = ACTIONS(2458), + [aux_sym_cmd_identifier_token28] = ACTIONS(2458), + [aux_sym_cmd_identifier_token29] = ACTIONS(2458), + [aux_sym_cmd_identifier_token30] = ACTIONS(2458), + [aux_sym_cmd_identifier_token31] = ACTIONS(2458), + [aux_sym_cmd_identifier_token32] = ACTIONS(2458), + [aux_sym_cmd_identifier_token33] = ACTIONS(2458), + [aux_sym_cmd_identifier_token34] = ACTIONS(2458), + [aux_sym_cmd_identifier_token35] = ACTIONS(2458), + [aux_sym_cmd_identifier_token36] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2458), + [anon_sym_false] = ACTIONS(2458), + [anon_sym_null] = ACTIONS(2458), + [aux_sym_cmd_identifier_token38] = ACTIONS(2458), + [aux_sym_cmd_identifier_token39] = ACTIONS(2458), + [aux_sym_cmd_identifier_token40] = ACTIONS(2458), + [anon_sym_def] = ACTIONS(2458), + [anon_sym_export_DASHenv] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_use] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_error] = ACTIONS(2458), + [anon_sym_list] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_loop] = ACTIONS(2458), + [anon_sym_make] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_match] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_source] = ACTIONS(2458), + [anon_sym_source_DASHenv] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_hide] = ACTIONS(2458), + [anon_sym_hide_DASHenv] = ACTIONS(2458), + [anon_sym_overlay] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), + [aux_sym__val_number_decimal_token1] = ACTIONS(2458), + [aux_sym__val_number_decimal_token2] = ACTIONS(2458), + [aux_sym__val_number_decimal_token3] = ACTIONS(2458), + [aux_sym__val_number_decimal_token4] = ACTIONS(2458), + [aux_sym__val_number_token1] = ACTIONS(2458), + [aux_sym__val_number_token2] = ACTIONS(2458), + [aux_sym__val_number_token3] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [sym__str_single_quotes] = ACTIONS(2458), + [sym__str_back_ticks] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2458), + [sym__entry_separator] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_list] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [sym__entry_separator] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1575), + [589] = { + [sym_comment] = STATE(589), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_alias] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_let_DASHenv] = ACTIONS(2436), - [anon_sym_mut] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [aux_sym_cmd_identifier_token1] = ACTIONS(2436), - [aux_sym_cmd_identifier_token2] = ACTIONS(2436), - [aux_sym_cmd_identifier_token3] = ACTIONS(2436), - [aux_sym_cmd_identifier_token4] = ACTIONS(2436), - [aux_sym_cmd_identifier_token5] = ACTIONS(2436), - [aux_sym_cmd_identifier_token6] = ACTIONS(2436), - [aux_sym_cmd_identifier_token7] = ACTIONS(2436), - [aux_sym_cmd_identifier_token8] = ACTIONS(2436), - [aux_sym_cmd_identifier_token9] = ACTIONS(2436), - [aux_sym_cmd_identifier_token10] = ACTIONS(2436), - [aux_sym_cmd_identifier_token11] = ACTIONS(2436), - [aux_sym_cmd_identifier_token12] = ACTIONS(2436), - [aux_sym_cmd_identifier_token13] = ACTIONS(2436), - [aux_sym_cmd_identifier_token14] = ACTIONS(2436), - [aux_sym_cmd_identifier_token15] = ACTIONS(2436), - [aux_sym_cmd_identifier_token16] = ACTIONS(2436), - [aux_sym_cmd_identifier_token17] = ACTIONS(2436), - [aux_sym_cmd_identifier_token18] = ACTIONS(2436), - [aux_sym_cmd_identifier_token19] = ACTIONS(2436), - [aux_sym_cmd_identifier_token20] = ACTIONS(2436), - [aux_sym_cmd_identifier_token21] = ACTIONS(2436), - [aux_sym_cmd_identifier_token22] = ACTIONS(2436), - [aux_sym_cmd_identifier_token23] = ACTIONS(2436), - [aux_sym_cmd_identifier_token24] = ACTIONS(2436), - [aux_sym_cmd_identifier_token25] = ACTIONS(2436), - [aux_sym_cmd_identifier_token26] = ACTIONS(2436), - [aux_sym_cmd_identifier_token27] = ACTIONS(2436), - [aux_sym_cmd_identifier_token28] = ACTIONS(2436), - [aux_sym_cmd_identifier_token29] = ACTIONS(2436), - [aux_sym_cmd_identifier_token30] = ACTIONS(2436), - [aux_sym_cmd_identifier_token31] = ACTIONS(2436), - [aux_sym_cmd_identifier_token32] = ACTIONS(2436), - [aux_sym_cmd_identifier_token33] = ACTIONS(2436), - [aux_sym_cmd_identifier_token34] = ACTIONS(2436), - [aux_sym_cmd_identifier_token35] = ACTIONS(2436), - [aux_sym_cmd_identifier_token36] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [anon_sym_null] = ACTIONS(2436), - [aux_sym_cmd_identifier_token38] = ACTIONS(2436), - [aux_sym_cmd_identifier_token39] = ACTIONS(2436), - [aux_sym_cmd_identifier_token40] = ACTIONS(2436), - [anon_sym_def] = ACTIONS(2436), - [anon_sym_export_DASHenv] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_DOLLAR] = ACTIONS(2436), - [anon_sym_error] = ACTIONS(2436), - [anon_sym_list] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_in] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_make] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_catch] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_source] = ACTIONS(2436), - [anon_sym_source_DASHenv] = ACTIONS(2436), - [anon_sym_register] = ACTIONS(2436), - [anon_sym_hide] = ACTIONS(2436), - [anon_sym_hide_DASHenv] = ACTIONS(2436), - [anon_sym_overlay] = ACTIONS(2436), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_as] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), - [aux_sym__val_number_decimal_token1] = ACTIONS(2436), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_decimal_token4] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2436), - [aux_sym__val_number_token2] = ACTIONS(2436), - [aux_sym__val_number_token3] = ACTIONS(2436), - [anon_sym_DQUOTE] = ACTIONS(2436), - [sym__str_single_quotes] = ACTIONS(2436), - [sym__str_back_ticks] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), - [sym__entry_separator] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2436), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1993), - [aux_sym_cmd_identifier_token40] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1993), - [aux_sym__val_number_decimal_token3] = ACTIONS(1993), - [aux_sym__val_number_decimal_token4] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1993), - [aux_sym__val_number_token2] = ACTIONS(1993), - [aux_sym__val_number_token3] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym__str_single_quotes] = ACTIONS(1993), - [sym__str_back_ticks] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1993), + [591] = { + [sym_comment] = STATE(591), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1738), + [aux_sym_cmd_identifier_token40] = ACTIONS(1738), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), + [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(1738), + [aux_sym__val_number_token2] = ACTIONS(1738), + [aux_sym__val_number_token3] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym__str_single_quotes] = ACTIONS(1738), + [sym__str_back_ticks] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), + [sym__entry_separator] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(3), }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [anon_sym_null] = ACTIONS(1909), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1909), - [aux_sym_cmd_identifier_token40] = ACTIONS(1909), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_list] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), - [sym__entry_separator] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1909), + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_alias] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_let_DASHenv] = ACTIONS(2462), + [anon_sym_mut] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [aux_sym_cmd_identifier_token1] = ACTIONS(2462), + [aux_sym_cmd_identifier_token2] = ACTIONS(2462), + [aux_sym_cmd_identifier_token3] = ACTIONS(2462), + [aux_sym_cmd_identifier_token4] = ACTIONS(2462), + [aux_sym_cmd_identifier_token5] = ACTIONS(2462), + [aux_sym_cmd_identifier_token6] = ACTIONS(2462), + [aux_sym_cmd_identifier_token7] = ACTIONS(2462), + [aux_sym_cmd_identifier_token8] = ACTIONS(2462), + [aux_sym_cmd_identifier_token9] = ACTIONS(2462), + [aux_sym_cmd_identifier_token10] = ACTIONS(2462), + [aux_sym_cmd_identifier_token11] = ACTIONS(2462), + [aux_sym_cmd_identifier_token12] = ACTIONS(2462), + [aux_sym_cmd_identifier_token13] = ACTIONS(2462), + [aux_sym_cmd_identifier_token14] = ACTIONS(2462), + [aux_sym_cmd_identifier_token15] = ACTIONS(2462), + [aux_sym_cmd_identifier_token16] = ACTIONS(2462), + [aux_sym_cmd_identifier_token17] = ACTIONS(2462), + [aux_sym_cmd_identifier_token18] = ACTIONS(2462), + [aux_sym_cmd_identifier_token19] = ACTIONS(2462), + [aux_sym_cmd_identifier_token20] = ACTIONS(2462), + [aux_sym_cmd_identifier_token21] = ACTIONS(2462), + [aux_sym_cmd_identifier_token22] = ACTIONS(2462), + [aux_sym_cmd_identifier_token23] = ACTIONS(2462), + [aux_sym_cmd_identifier_token24] = ACTIONS(2462), + [aux_sym_cmd_identifier_token25] = ACTIONS(2462), + [aux_sym_cmd_identifier_token26] = ACTIONS(2462), + [aux_sym_cmd_identifier_token27] = ACTIONS(2462), + [aux_sym_cmd_identifier_token28] = ACTIONS(2462), + [aux_sym_cmd_identifier_token29] = ACTIONS(2462), + [aux_sym_cmd_identifier_token30] = ACTIONS(2462), + [aux_sym_cmd_identifier_token31] = ACTIONS(2462), + [aux_sym_cmd_identifier_token32] = ACTIONS(2462), + [aux_sym_cmd_identifier_token33] = ACTIONS(2462), + [aux_sym_cmd_identifier_token34] = ACTIONS(2462), + [aux_sym_cmd_identifier_token35] = ACTIONS(2462), + [aux_sym_cmd_identifier_token36] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2462), + [anon_sym_false] = ACTIONS(2462), + [anon_sym_null] = ACTIONS(2462), + [aux_sym_cmd_identifier_token38] = ACTIONS(2462), + [aux_sym_cmd_identifier_token39] = ACTIONS(2462), + [aux_sym_cmd_identifier_token40] = ACTIONS(2462), + [anon_sym_def] = ACTIONS(2462), + [anon_sym_export_DASHenv] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_use] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_error] = ACTIONS(2462), + [anon_sym_list] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_loop] = ACTIONS(2462), + [anon_sym_make] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_source] = ACTIONS(2462), + [anon_sym_source_DASHenv] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_hide] = ACTIONS(2462), + [anon_sym_hide_DASHenv] = ACTIONS(2462), + [anon_sym_overlay] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), + [aux_sym__val_number_decimal_token1] = ACTIONS(2462), + [aux_sym__val_number_decimal_token2] = ACTIONS(2462), + [aux_sym__val_number_decimal_token3] = ACTIONS(2462), + [aux_sym__val_number_decimal_token4] = ACTIONS(2462), + [aux_sym__val_number_token1] = ACTIONS(2462), + [aux_sym__val_number_token2] = ACTIONS(2462), + [aux_sym__val_number_token3] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [sym__str_single_quotes] = ACTIONS(2462), + [sym__str_back_ticks] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2462), + [sym__entry_separator] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2462), [anon_sym_POUND] = ACTIONS(3), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_alias] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_let_DASHenv] = ACTIONS(2023), - [anon_sym_mut] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [aux_sym_cmd_identifier_token1] = ACTIONS(2023), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2023), - [aux_sym_cmd_identifier_token9] = ACTIONS(2023), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2023), - [aux_sym_cmd_identifier_token13] = ACTIONS(2023), - [aux_sym_cmd_identifier_token14] = ACTIONS(2023), - [aux_sym_cmd_identifier_token15] = ACTIONS(2023), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2023), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_null] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2023), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2023), - [anon_sym_export_DASHenv] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_module] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_error] = ACTIONS(2023), - [anon_sym_list] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_in] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_make] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_source] = ACTIONS(2023), - [anon_sym_source_DASHenv] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_hide_DASHenv] = ACTIONS(2023), - [anon_sym_overlay] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_as] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2023), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), - [sym__entry_separator] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2023), + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_alias] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_let_DASHenv] = ACTIONS(2466), + [anon_sym_mut] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [aux_sym_cmd_identifier_token1] = ACTIONS(2466), + [aux_sym_cmd_identifier_token2] = ACTIONS(2466), + [aux_sym_cmd_identifier_token3] = ACTIONS(2466), + [aux_sym_cmd_identifier_token4] = ACTIONS(2466), + [aux_sym_cmd_identifier_token5] = ACTIONS(2466), + [aux_sym_cmd_identifier_token6] = ACTIONS(2466), + [aux_sym_cmd_identifier_token7] = ACTIONS(2466), + [aux_sym_cmd_identifier_token8] = ACTIONS(2466), + [aux_sym_cmd_identifier_token9] = ACTIONS(2466), + [aux_sym_cmd_identifier_token10] = ACTIONS(2466), + [aux_sym_cmd_identifier_token11] = ACTIONS(2466), + [aux_sym_cmd_identifier_token12] = ACTIONS(2466), + [aux_sym_cmd_identifier_token13] = ACTIONS(2466), + [aux_sym_cmd_identifier_token14] = ACTIONS(2466), + [aux_sym_cmd_identifier_token15] = ACTIONS(2466), + [aux_sym_cmd_identifier_token16] = ACTIONS(2466), + [aux_sym_cmd_identifier_token17] = ACTIONS(2466), + [aux_sym_cmd_identifier_token18] = ACTIONS(2466), + [aux_sym_cmd_identifier_token19] = ACTIONS(2466), + [aux_sym_cmd_identifier_token20] = ACTIONS(2466), + [aux_sym_cmd_identifier_token21] = ACTIONS(2466), + [aux_sym_cmd_identifier_token22] = ACTIONS(2466), + [aux_sym_cmd_identifier_token23] = ACTIONS(2466), + [aux_sym_cmd_identifier_token24] = ACTIONS(2466), + [aux_sym_cmd_identifier_token25] = ACTIONS(2466), + [aux_sym_cmd_identifier_token26] = ACTIONS(2466), + [aux_sym_cmd_identifier_token27] = ACTIONS(2466), + [aux_sym_cmd_identifier_token28] = ACTIONS(2466), + [aux_sym_cmd_identifier_token29] = ACTIONS(2466), + [aux_sym_cmd_identifier_token30] = ACTIONS(2466), + [aux_sym_cmd_identifier_token31] = ACTIONS(2466), + [aux_sym_cmd_identifier_token32] = ACTIONS(2466), + [aux_sym_cmd_identifier_token33] = ACTIONS(2466), + [aux_sym_cmd_identifier_token34] = ACTIONS(2466), + [aux_sym_cmd_identifier_token35] = ACTIONS(2466), + [aux_sym_cmd_identifier_token36] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2466), + [anon_sym_false] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2466), + [aux_sym_cmd_identifier_token38] = ACTIONS(2466), + [aux_sym_cmd_identifier_token39] = ACTIONS(2466), + [aux_sym_cmd_identifier_token40] = ACTIONS(2466), + [anon_sym_def] = ACTIONS(2466), + [anon_sym_export_DASHenv] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_DOLLAR] = ACTIONS(2466), + [anon_sym_error] = ACTIONS(2466), + [anon_sym_list] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_make] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_catch] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_source] = ACTIONS(2466), + [anon_sym_source_DASHenv] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_hide] = ACTIONS(2466), + [anon_sym_hide_DASHenv] = ACTIONS(2466), + [anon_sym_overlay] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_as] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), + [aux_sym__val_number_decimal_token1] = ACTIONS(2466), + [aux_sym__val_number_decimal_token2] = ACTIONS(2466), + [aux_sym__val_number_decimal_token3] = ACTIONS(2466), + [aux_sym__val_number_decimal_token4] = ACTIONS(2466), + [aux_sym__val_number_token1] = ACTIONS(2466), + [aux_sym__val_number_token2] = ACTIONS(2466), + [aux_sym__val_number_token3] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [sym__str_single_quotes] = ACTIONS(2466), + [sym__str_back_ticks] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2466), + [sym__entry_separator] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2466), [anon_sym_POUND] = ACTIONS(3), }, - [546] = { - [sym_comment] = STATE(546), + [594] = { + [sym_comment] = STATE(594), + [aux_sym_shebang_repeat1] = STATE(594), + [anon_sym_export] = ACTIONS(1313), + [anon_sym_alias] = ACTIONS(1313), + [anon_sym_let] = ACTIONS(1313), + [anon_sym_let_DASHenv] = ACTIONS(1313), + [anon_sym_mut] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [aux_sym_cmd_identifier_token1] = ACTIONS(1313), + [aux_sym_cmd_identifier_token2] = ACTIONS(1313), + [aux_sym_cmd_identifier_token3] = ACTIONS(1313), + [aux_sym_cmd_identifier_token4] = ACTIONS(1313), + [aux_sym_cmd_identifier_token5] = ACTIONS(1313), + [aux_sym_cmd_identifier_token6] = ACTIONS(1313), + [aux_sym_cmd_identifier_token7] = ACTIONS(1313), + [aux_sym_cmd_identifier_token8] = ACTIONS(1313), + [aux_sym_cmd_identifier_token9] = ACTIONS(1313), + [aux_sym_cmd_identifier_token10] = ACTIONS(1313), + [aux_sym_cmd_identifier_token11] = ACTIONS(1313), + [aux_sym_cmd_identifier_token12] = ACTIONS(1313), + [aux_sym_cmd_identifier_token13] = ACTIONS(1313), + [aux_sym_cmd_identifier_token14] = ACTIONS(1313), + [aux_sym_cmd_identifier_token15] = ACTIONS(1313), + [aux_sym_cmd_identifier_token16] = ACTIONS(1313), + [aux_sym_cmd_identifier_token17] = ACTIONS(1313), + [aux_sym_cmd_identifier_token18] = ACTIONS(1313), + [aux_sym_cmd_identifier_token19] = ACTIONS(1313), + [aux_sym_cmd_identifier_token20] = ACTIONS(1313), + [aux_sym_cmd_identifier_token21] = ACTIONS(1313), + [aux_sym_cmd_identifier_token22] = ACTIONS(1313), + [aux_sym_cmd_identifier_token23] = ACTIONS(1313), + [aux_sym_cmd_identifier_token24] = ACTIONS(1313), + [aux_sym_cmd_identifier_token25] = ACTIONS(1313), + [aux_sym_cmd_identifier_token26] = ACTIONS(1313), + [aux_sym_cmd_identifier_token27] = ACTIONS(1313), + [aux_sym_cmd_identifier_token28] = ACTIONS(1313), + [aux_sym_cmd_identifier_token29] = ACTIONS(1313), + [aux_sym_cmd_identifier_token30] = ACTIONS(1313), + [aux_sym_cmd_identifier_token31] = ACTIONS(1313), + [aux_sym_cmd_identifier_token32] = ACTIONS(1313), + [aux_sym_cmd_identifier_token33] = ACTIONS(1313), + [aux_sym_cmd_identifier_token34] = ACTIONS(1313), + [aux_sym_cmd_identifier_token35] = ACTIONS(1313), + [aux_sym_cmd_identifier_token36] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_null] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1313), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [sym__newline] = ACTIONS(2470), + [anon_sym_def] = ACTIONS(1313), + [anon_sym_export_DASHenv] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_module] = ACTIONS(1313), + [anon_sym_use] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1315), + [anon_sym_error] = ACTIONS(1313), + [anon_sym_list] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_in] = ACTIONS(1313), + [anon_sym_loop] = ACTIONS(1313), + [anon_sym_make] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1313), + [anon_sym_catch] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_source] = ACTIONS(1313), + [anon_sym_source_DASHenv] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_hide] = ACTIONS(1313), + [anon_sym_hide_DASHenv] = ACTIONS(1313), + [anon_sym_overlay] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_as] = ACTIONS(1313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1315), + [aux_sym__val_number_token1] = ACTIONS(1315), + [aux_sym__val_number_token2] = ACTIONS(1315), + [aux_sym__val_number_token3] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym__str_single_quotes] = ACTIONS(1315), + [sym__str_back_ticks] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(247), + }, + [595] = { + [sym_comment] = STATE(595), [anon_sym_export] = ACTIONS(2019), [anon_sym_alias] = ACTIONS(2019), [anon_sym_let] = ACTIONS(2019), @@ -134631,2313 +141233,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2019), [sym__str_single_quotes] = ACTIONS(2019), [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [sym__entry_separator] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(3), - }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2133), - [aux_sym_cmd_identifier_token3] = ACTIONS(2133), - [aux_sym_cmd_identifier_token4] = ACTIONS(2133), - [aux_sym_cmd_identifier_token5] = ACTIONS(2133), - [aux_sym_cmd_identifier_token6] = ACTIONS(2133), - [aux_sym_cmd_identifier_token7] = ACTIONS(2133), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2133), - [aux_sym_cmd_identifier_token11] = ACTIONS(2133), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2133), - [aux_sym_cmd_identifier_token17] = ACTIONS(2133), - [aux_sym_cmd_identifier_token18] = ACTIONS(2133), - [aux_sym_cmd_identifier_token19] = ACTIONS(2133), - [aux_sym_cmd_identifier_token20] = ACTIONS(2133), - [aux_sym_cmd_identifier_token21] = ACTIONS(2133), - [aux_sym_cmd_identifier_token22] = ACTIONS(2133), - [aux_sym_cmd_identifier_token23] = ACTIONS(2133), - [aux_sym_cmd_identifier_token24] = ACTIONS(2133), - [aux_sym_cmd_identifier_token25] = ACTIONS(2133), - [aux_sym_cmd_identifier_token26] = ACTIONS(2133), - [aux_sym_cmd_identifier_token27] = ACTIONS(2133), - [aux_sym_cmd_identifier_token28] = ACTIONS(2133), - [aux_sym_cmd_identifier_token29] = ACTIONS(2133), - [aux_sym_cmd_identifier_token30] = ACTIONS(2133), - [aux_sym_cmd_identifier_token31] = ACTIONS(2133), - [aux_sym_cmd_identifier_token32] = ACTIONS(2133), - [aux_sym_cmd_identifier_token33] = ACTIONS(2133), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2133), - [aux_sym_cmd_identifier_token36] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2133), - [aux_sym_cmd_identifier_token40] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2133), - [aux_sym__val_number_decimal_token3] = ACTIONS(2133), - [aux_sym__val_number_decimal_token4] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), - [sym__entry_separator] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(3), - }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(1064), - [anon_sym_alias] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_let_DASHenv] = ACTIONS(1064), - [anon_sym_mut] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [aux_sym_cmd_identifier_token1] = ACTIONS(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(1064), - [aux_sym_cmd_identifier_token3] = ACTIONS(1064), - [aux_sym_cmd_identifier_token4] = ACTIONS(1064), - [aux_sym_cmd_identifier_token5] = ACTIONS(1064), - [aux_sym_cmd_identifier_token6] = ACTIONS(1064), - [aux_sym_cmd_identifier_token7] = ACTIONS(1064), - [aux_sym_cmd_identifier_token8] = ACTIONS(1064), - [aux_sym_cmd_identifier_token9] = ACTIONS(1064), - [aux_sym_cmd_identifier_token10] = ACTIONS(1064), - [aux_sym_cmd_identifier_token11] = ACTIONS(1064), - [aux_sym_cmd_identifier_token12] = ACTIONS(1064), - [aux_sym_cmd_identifier_token13] = ACTIONS(1064), - [aux_sym_cmd_identifier_token14] = ACTIONS(1064), - [aux_sym_cmd_identifier_token15] = ACTIONS(1064), - [aux_sym_cmd_identifier_token16] = ACTIONS(1064), - [aux_sym_cmd_identifier_token17] = ACTIONS(1064), - [aux_sym_cmd_identifier_token18] = ACTIONS(1064), - [aux_sym_cmd_identifier_token19] = ACTIONS(1064), - [aux_sym_cmd_identifier_token20] = ACTIONS(1064), - [aux_sym_cmd_identifier_token21] = ACTIONS(1064), - [aux_sym_cmd_identifier_token22] = ACTIONS(1064), - [aux_sym_cmd_identifier_token23] = ACTIONS(1064), - [aux_sym_cmd_identifier_token24] = ACTIONS(1064), - [aux_sym_cmd_identifier_token25] = ACTIONS(1064), - [aux_sym_cmd_identifier_token26] = ACTIONS(1064), - [aux_sym_cmd_identifier_token27] = ACTIONS(1064), - [aux_sym_cmd_identifier_token28] = ACTIONS(1064), - [aux_sym_cmd_identifier_token29] = ACTIONS(1064), - [aux_sym_cmd_identifier_token30] = ACTIONS(1064), - [aux_sym_cmd_identifier_token31] = ACTIONS(1064), - [aux_sym_cmd_identifier_token32] = ACTIONS(1064), - [aux_sym_cmd_identifier_token33] = ACTIONS(1064), - [aux_sym_cmd_identifier_token34] = ACTIONS(1064), - [aux_sym_cmd_identifier_token35] = ACTIONS(1064), - [aux_sym_cmd_identifier_token36] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1064), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [anon_sym_def] = ACTIONS(1064), - [anon_sym_export_DASHenv] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym_module] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_error] = ACTIONS(1064), - [anon_sym_list] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_loop] = ACTIONS(1064), - [anon_sym_make] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_catch] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_source] = ACTIONS(1064), - [anon_sym_source_DASHenv] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_hide] = ACTIONS(1064), - [anon_sym_hide_DASHenv] = ACTIONS(1064), - [anon_sym_overlay] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1064), - [aux_sym__val_number_decimal_token4] = ACTIONS(1064), - [aux_sym__val_number_token1] = ACTIONS(1064), - [aux_sym__val_number_token2] = ACTIONS(1064), - [aux_sym__val_number_token3] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym__str_single_quotes] = ACTIONS(1064), - [sym__str_back_ticks] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), - [sym__entry_separator] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(3), - }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_null] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2061), - [aux_sym__val_number_decimal_token3] = ACTIONS(2061), - [aux_sym__val_number_decimal_token4] = ACTIONS(2061), - [aux_sym__val_number_token1] = ACTIONS(2061), - [aux_sym__val_number_token2] = ACTIONS(2061), - [aux_sym__val_number_token3] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), - [sym__entry_separator] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(3), - }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_list] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), - }, - [551] = { - [sym_comment] = STATE(551), - [aux_sym_shebang_repeat1] = STATE(551), - [anon_sym_export] = ACTIONS(1898), - [anon_sym_alias] = ACTIONS(1898), - [anon_sym_let] = ACTIONS(1898), - [anon_sym_let_DASHenv] = ACTIONS(1898), - [anon_sym_mut] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [aux_sym_cmd_identifier_token1] = ACTIONS(1898), - [aux_sym_cmd_identifier_token2] = ACTIONS(1898), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [aux_sym_cmd_identifier_token6] = ACTIONS(1898), - [aux_sym_cmd_identifier_token7] = ACTIONS(1898), - [aux_sym_cmd_identifier_token8] = ACTIONS(1898), - [aux_sym_cmd_identifier_token9] = ACTIONS(1898), - [aux_sym_cmd_identifier_token10] = ACTIONS(1898), - [aux_sym_cmd_identifier_token11] = ACTIONS(1898), - [aux_sym_cmd_identifier_token12] = ACTIONS(1898), - [aux_sym_cmd_identifier_token13] = ACTIONS(1898), - [aux_sym_cmd_identifier_token14] = ACTIONS(1898), - [aux_sym_cmd_identifier_token15] = ACTIONS(1898), - [aux_sym_cmd_identifier_token16] = ACTIONS(1898), - [aux_sym_cmd_identifier_token17] = ACTIONS(1898), - [aux_sym_cmd_identifier_token18] = ACTIONS(1898), - [aux_sym_cmd_identifier_token19] = ACTIONS(1898), - [aux_sym_cmd_identifier_token20] = ACTIONS(1898), - [aux_sym_cmd_identifier_token21] = ACTIONS(1898), - [aux_sym_cmd_identifier_token22] = ACTIONS(1898), - [aux_sym_cmd_identifier_token23] = ACTIONS(1898), - [aux_sym_cmd_identifier_token24] = ACTIONS(1898), - [aux_sym_cmd_identifier_token25] = ACTIONS(1898), - [aux_sym_cmd_identifier_token26] = ACTIONS(1898), - [aux_sym_cmd_identifier_token27] = ACTIONS(1898), - [aux_sym_cmd_identifier_token28] = ACTIONS(1898), - [aux_sym_cmd_identifier_token29] = ACTIONS(1898), - [aux_sym_cmd_identifier_token30] = ACTIONS(1898), - [aux_sym_cmd_identifier_token31] = ACTIONS(1898), - [aux_sym_cmd_identifier_token32] = ACTIONS(1898), - [aux_sym_cmd_identifier_token33] = ACTIONS(1898), - [aux_sym_cmd_identifier_token34] = ACTIONS(1898), - [aux_sym_cmd_identifier_token35] = ACTIONS(1898), - [aux_sym_cmd_identifier_token36] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), - [aux_sym_cmd_identifier_token38] = ACTIONS(1898), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [sym__newline] = ACTIONS(2440), - [anon_sym_def] = ACTIONS(1898), - [anon_sym_export_DASHenv] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym_module] = ACTIONS(1898), - [anon_sym_use] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1900), - [anon_sym_error] = ACTIONS(1898), - [anon_sym_list] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_in] = ACTIONS(1898), - [anon_sym_loop] = ACTIONS(1898), - [anon_sym_make] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_do] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_else] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [anon_sym_try] = ACTIONS(1898), - [anon_sym_catch] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_source] = ACTIONS(1898), - [anon_sym_source_DASHenv] = ACTIONS(1898), - [anon_sym_register] = ACTIONS(1898), - [anon_sym_hide] = ACTIONS(1898), - [anon_sym_hide_DASHenv] = ACTIONS(1898), - [anon_sym_overlay] = ACTIONS(1898), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_as] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1898), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(247), - }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_alias] = ACTIONS(1060), - [anon_sym_let] = ACTIONS(1060), - [anon_sym_let_DASHenv] = ACTIONS(1060), - [anon_sym_mut] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(1060), - [aux_sym_cmd_identifier_token2] = ACTIONS(1060), - [aux_sym_cmd_identifier_token3] = ACTIONS(1060), - [aux_sym_cmd_identifier_token4] = ACTIONS(1060), - [aux_sym_cmd_identifier_token5] = ACTIONS(1060), - [aux_sym_cmd_identifier_token6] = ACTIONS(1060), - [aux_sym_cmd_identifier_token7] = ACTIONS(1060), - [aux_sym_cmd_identifier_token8] = ACTIONS(1060), - [aux_sym_cmd_identifier_token9] = ACTIONS(1060), - [aux_sym_cmd_identifier_token10] = ACTIONS(1060), - [aux_sym_cmd_identifier_token11] = ACTIONS(1060), - [aux_sym_cmd_identifier_token12] = ACTIONS(1060), - [aux_sym_cmd_identifier_token13] = ACTIONS(1060), - [aux_sym_cmd_identifier_token14] = ACTIONS(1060), - [aux_sym_cmd_identifier_token15] = ACTIONS(1060), - [aux_sym_cmd_identifier_token16] = ACTIONS(1060), - [aux_sym_cmd_identifier_token17] = ACTIONS(1060), - [aux_sym_cmd_identifier_token18] = ACTIONS(1060), - [aux_sym_cmd_identifier_token19] = ACTIONS(1060), - [aux_sym_cmd_identifier_token20] = ACTIONS(1060), - [aux_sym_cmd_identifier_token21] = ACTIONS(1060), - [aux_sym_cmd_identifier_token22] = ACTIONS(1060), - [aux_sym_cmd_identifier_token23] = ACTIONS(1060), - [aux_sym_cmd_identifier_token24] = ACTIONS(1060), - [aux_sym_cmd_identifier_token25] = ACTIONS(1060), - [aux_sym_cmd_identifier_token26] = ACTIONS(1060), - [aux_sym_cmd_identifier_token27] = ACTIONS(1060), - [aux_sym_cmd_identifier_token28] = ACTIONS(1060), - [aux_sym_cmd_identifier_token29] = ACTIONS(1060), - [aux_sym_cmd_identifier_token30] = ACTIONS(1060), - [aux_sym_cmd_identifier_token31] = ACTIONS(1060), - [aux_sym_cmd_identifier_token32] = ACTIONS(1060), - [aux_sym_cmd_identifier_token33] = ACTIONS(1060), - [aux_sym_cmd_identifier_token34] = ACTIONS(1060), - [aux_sym_cmd_identifier_token35] = ACTIONS(1060), - [aux_sym_cmd_identifier_token36] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1062), - [aux_sym_cmd_identifier_token40] = ACTIONS(1062), - [anon_sym_def] = ACTIONS(1060), - [anon_sym_export_DASHenv] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_module] = ACTIONS(1060), - [anon_sym_use] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_error] = ACTIONS(1060), - [anon_sym_list] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_in] = ACTIONS(1060), - [anon_sym_loop] = ACTIONS(1060), - [anon_sym_make] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_catch] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_source] = ACTIONS(1060), - [anon_sym_source_DASHenv] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_hide] = ACTIONS(1060), - [anon_sym_hide_DASHenv] = ACTIONS(1060), - [anon_sym_overlay] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token3] = ACTIONS(1062), - [aux_sym__val_number_decimal_token4] = ACTIONS(1062), - [aux_sym__val_number_token1] = ACTIONS(1062), - [aux_sym__val_number_token2] = ACTIONS(1062), - [aux_sym__val_number_token3] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym__str_single_quotes] = ACTIONS(1062), - [sym__str_back_ticks] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), - }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [aux_sym_cmd_identifier_token1] = ACTIONS(2443), - [aux_sym_cmd_identifier_token2] = ACTIONS(2443), - [aux_sym_cmd_identifier_token3] = ACTIONS(2443), - [aux_sym_cmd_identifier_token4] = ACTIONS(2443), - [aux_sym_cmd_identifier_token5] = ACTIONS(2443), - [aux_sym_cmd_identifier_token6] = ACTIONS(2443), - [aux_sym_cmd_identifier_token7] = ACTIONS(2443), - [aux_sym_cmd_identifier_token8] = ACTIONS(2443), - [aux_sym_cmd_identifier_token9] = ACTIONS(2443), - [aux_sym_cmd_identifier_token10] = ACTIONS(2443), - [aux_sym_cmd_identifier_token11] = ACTIONS(2443), - [aux_sym_cmd_identifier_token12] = ACTIONS(2443), - [aux_sym_cmd_identifier_token13] = ACTIONS(2443), - [aux_sym_cmd_identifier_token14] = ACTIONS(2443), - [aux_sym_cmd_identifier_token15] = ACTIONS(2443), - [aux_sym_cmd_identifier_token16] = ACTIONS(2443), - [aux_sym_cmd_identifier_token17] = ACTIONS(2443), - [aux_sym_cmd_identifier_token18] = ACTIONS(2443), - [aux_sym_cmd_identifier_token19] = ACTIONS(2443), - [aux_sym_cmd_identifier_token20] = ACTIONS(2443), - [aux_sym_cmd_identifier_token21] = ACTIONS(2443), - [aux_sym_cmd_identifier_token22] = ACTIONS(2443), - [aux_sym_cmd_identifier_token23] = ACTIONS(2443), - [aux_sym_cmd_identifier_token24] = ACTIONS(2443), - [aux_sym_cmd_identifier_token25] = ACTIONS(2443), - [aux_sym_cmd_identifier_token26] = ACTIONS(2443), - [aux_sym_cmd_identifier_token27] = ACTIONS(2443), - [aux_sym_cmd_identifier_token28] = ACTIONS(2443), - [aux_sym_cmd_identifier_token29] = ACTIONS(2443), - [aux_sym_cmd_identifier_token30] = ACTIONS(2443), - [aux_sym_cmd_identifier_token31] = ACTIONS(2443), - [aux_sym_cmd_identifier_token32] = ACTIONS(2443), - [aux_sym_cmd_identifier_token33] = ACTIONS(2443), - [aux_sym_cmd_identifier_token34] = ACTIONS(2443), - [aux_sym_cmd_identifier_token35] = ACTIONS(2443), - [aux_sym_cmd_identifier_token36] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = ACTIONS(2443), - [anon_sym_null] = ACTIONS(2443), - [aux_sym_cmd_identifier_token38] = ACTIONS(2443), - [aux_sym_cmd_identifier_token39] = ACTIONS(2443), - [aux_sym_cmd_identifier_token40] = ACTIONS(2443), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_list] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_make] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_catch] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), - [aux_sym__val_number_decimal_token1] = ACTIONS(2443), - [aux_sym__val_number_decimal_token2] = ACTIONS(2443), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(2443), - [aux_sym__val_number_token2] = ACTIONS(2443), - [aux_sym__val_number_token3] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2443), - [sym__str_single_quotes] = ACTIONS(2443), - [sym__str_back_ticks] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), - [sym__entry_separator] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(3), - }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(2303), - [anon_sym_alias] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_let_DASHenv] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [aux_sym_cmd_identifier_token1] = ACTIONS(2303), - [aux_sym_cmd_identifier_token2] = ACTIONS(2303), - [aux_sym_cmd_identifier_token3] = ACTIONS(2303), - [aux_sym_cmd_identifier_token4] = ACTIONS(2303), - [aux_sym_cmd_identifier_token5] = ACTIONS(2303), - [aux_sym_cmd_identifier_token6] = ACTIONS(2303), - [aux_sym_cmd_identifier_token7] = ACTIONS(2303), - [aux_sym_cmd_identifier_token8] = ACTIONS(2303), - [aux_sym_cmd_identifier_token9] = ACTIONS(2303), - [aux_sym_cmd_identifier_token10] = ACTIONS(2303), - [aux_sym_cmd_identifier_token11] = ACTIONS(2303), - [aux_sym_cmd_identifier_token12] = ACTIONS(2303), - [aux_sym_cmd_identifier_token13] = ACTIONS(2303), - [aux_sym_cmd_identifier_token14] = ACTIONS(2303), - [aux_sym_cmd_identifier_token15] = ACTIONS(2303), - [aux_sym_cmd_identifier_token16] = ACTIONS(2303), - [aux_sym_cmd_identifier_token17] = ACTIONS(2303), - [aux_sym_cmd_identifier_token18] = ACTIONS(2303), - [aux_sym_cmd_identifier_token19] = ACTIONS(2303), - [aux_sym_cmd_identifier_token20] = ACTIONS(2303), - [aux_sym_cmd_identifier_token21] = ACTIONS(2303), - [aux_sym_cmd_identifier_token22] = ACTIONS(2303), - [aux_sym_cmd_identifier_token23] = ACTIONS(2303), - [aux_sym_cmd_identifier_token24] = ACTIONS(2303), - [aux_sym_cmd_identifier_token25] = ACTIONS(2303), - [aux_sym_cmd_identifier_token26] = ACTIONS(2303), - [aux_sym_cmd_identifier_token27] = ACTIONS(2303), - [aux_sym_cmd_identifier_token28] = ACTIONS(2303), - [aux_sym_cmd_identifier_token29] = ACTIONS(2303), - [aux_sym_cmd_identifier_token30] = ACTIONS(2303), - [aux_sym_cmd_identifier_token31] = ACTIONS(2303), - [aux_sym_cmd_identifier_token32] = ACTIONS(2303), - [aux_sym_cmd_identifier_token33] = ACTIONS(2303), - [aux_sym_cmd_identifier_token34] = ACTIONS(2303), - [aux_sym_cmd_identifier_token35] = ACTIONS(2303), - [aux_sym_cmd_identifier_token36] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_null] = ACTIONS(2307), - [aux_sym_cmd_identifier_token38] = ACTIONS(2303), - [aux_sym_cmd_identifier_token39] = ACTIONS(2307), - [aux_sym_cmd_identifier_token40] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2303), - [anon_sym_export_DASHenv] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_error] = ACTIONS(2303), - [anon_sym_list] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_make] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_do] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_catch] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_source] = ACTIONS(2303), - [anon_sym_source_DASHenv] = ACTIONS(2303), - [anon_sym_register] = ACTIONS(2303), - [anon_sym_hide] = ACTIONS(2303), - [anon_sym_hide_DASHenv] = ACTIONS(2303), - [anon_sym_overlay] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2307), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), - [aux_sym__val_number_token1] = ACTIONS(2307), - [aux_sym__val_number_token2] = ACTIONS(2307), - [aux_sym__val_number_token3] = ACTIONS(2307), - [anon_sym_LBRACK2] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym__str_single_quotes] = ACTIONS(2307), - [sym__str_back_ticks] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(247), - }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(2449), - [anon_sym_alias] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_let_DASHenv] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [aux_sym_cmd_identifier_token1] = ACTIONS(2449), - [aux_sym_cmd_identifier_token2] = ACTIONS(2449), - [aux_sym_cmd_identifier_token3] = ACTIONS(2449), - [aux_sym_cmd_identifier_token4] = ACTIONS(2449), - [aux_sym_cmd_identifier_token5] = ACTIONS(2449), - [aux_sym_cmd_identifier_token6] = ACTIONS(2449), - [aux_sym_cmd_identifier_token7] = ACTIONS(2449), - [aux_sym_cmd_identifier_token8] = ACTIONS(2449), - [aux_sym_cmd_identifier_token9] = ACTIONS(2449), - [aux_sym_cmd_identifier_token10] = ACTIONS(2449), - [aux_sym_cmd_identifier_token11] = ACTIONS(2449), - [aux_sym_cmd_identifier_token12] = ACTIONS(2449), - [aux_sym_cmd_identifier_token13] = ACTIONS(2449), - [aux_sym_cmd_identifier_token14] = ACTIONS(2449), - [aux_sym_cmd_identifier_token15] = ACTIONS(2449), - [aux_sym_cmd_identifier_token16] = ACTIONS(2449), - [aux_sym_cmd_identifier_token17] = ACTIONS(2449), - [aux_sym_cmd_identifier_token18] = ACTIONS(2449), - [aux_sym_cmd_identifier_token19] = ACTIONS(2449), - [aux_sym_cmd_identifier_token20] = ACTIONS(2449), - [aux_sym_cmd_identifier_token21] = ACTIONS(2449), - [aux_sym_cmd_identifier_token22] = ACTIONS(2449), - [aux_sym_cmd_identifier_token23] = ACTIONS(2449), - [aux_sym_cmd_identifier_token24] = ACTIONS(2449), - [aux_sym_cmd_identifier_token25] = ACTIONS(2449), - [aux_sym_cmd_identifier_token26] = ACTIONS(2449), - [aux_sym_cmd_identifier_token27] = ACTIONS(2449), - [aux_sym_cmd_identifier_token28] = ACTIONS(2449), - [aux_sym_cmd_identifier_token29] = ACTIONS(2449), - [aux_sym_cmd_identifier_token30] = ACTIONS(2449), - [aux_sym_cmd_identifier_token31] = ACTIONS(2449), - [aux_sym_cmd_identifier_token32] = ACTIONS(2449), - [aux_sym_cmd_identifier_token33] = ACTIONS(2449), - [aux_sym_cmd_identifier_token34] = ACTIONS(2449), - [aux_sym_cmd_identifier_token35] = ACTIONS(2449), - [aux_sym_cmd_identifier_token36] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [aux_sym_cmd_identifier_token38] = ACTIONS(2449), - [aux_sym_cmd_identifier_token39] = ACTIONS(2449), - [aux_sym_cmd_identifier_token40] = ACTIONS(2449), - [anon_sym_def] = ACTIONS(2449), - [anon_sym_export_DASHenv] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2449), - [anon_sym_module] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_error] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_make] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_catch] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_source] = ACTIONS(2449), - [anon_sym_source_DASHenv] = ACTIONS(2449), - [anon_sym_register] = ACTIONS(2449), - [anon_sym_hide] = ACTIONS(2449), - [anon_sym_hide_DASHenv] = ACTIONS(2449), - [anon_sym_overlay] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2449), - [aux_sym__val_number_decimal_token2] = ACTIONS(2449), - [aux_sym__val_number_decimal_token3] = ACTIONS(2449), - [aux_sym__val_number_decimal_token4] = ACTIONS(2449), - [aux_sym__val_number_token1] = ACTIONS(2449), - [aux_sym__val_number_token2] = ACTIONS(2449), - [aux_sym__val_number_token3] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym__str_single_quotes] = ACTIONS(2449), - [sym__str_back_ticks] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), - [sym__entry_separator] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(3), - }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(1076), - [anon_sym_alias] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_let_DASHenv] = ACTIONS(1076), - [anon_sym_mut] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1076), - [aux_sym_cmd_identifier_token2] = ACTIONS(1076), - [aux_sym_cmd_identifier_token3] = ACTIONS(1076), - [aux_sym_cmd_identifier_token4] = ACTIONS(1076), - [aux_sym_cmd_identifier_token5] = ACTIONS(1076), - [aux_sym_cmd_identifier_token6] = ACTIONS(1076), - [aux_sym_cmd_identifier_token7] = ACTIONS(1076), - [aux_sym_cmd_identifier_token8] = ACTIONS(1076), - [aux_sym_cmd_identifier_token9] = ACTIONS(1076), - [aux_sym_cmd_identifier_token10] = ACTIONS(1076), - [aux_sym_cmd_identifier_token11] = ACTIONS(1076), - [aux_sym_cmd_identifier_token12] = ACTIONS(1076), - [aux_sym_cmd_identifier_token13] = ACTIONS(1076), - [aux_sym_cmd_identifier_token14] = ACTIONS(1076), - [aux_sym_cmd_identifier_token15] = ACTIONS(1076), - [aux_sym_cmd_identifier_token16] = ACTIONS(1076), - [aux_sym_cmd_identifier_token17] = ACTIONS(1076), - [aux_sym_cmd_identifier_token18] = ACTIONS(1076), - [aux_sym_cmd_identifier_token19] = ACTIONS(1076), - [aux_sym_cmd_identifier_token20] = ACTIONS(1076), - [aux_sym_cmd_identifier_token21] = ACTIONS(1076), - [aux_sym_cmd_identifier_token22] = ACTIONS(1076), - [aux_sym_cmd_identifier_token23] = ACTIONS(1076), - [aux_sym_cmd_identifier_token24] = ACTIONS(1076), - [aux_sym_cmd_identifier_token25] = ACTIONS(1076), - [aux_sym_cmd_identifier_token26] = ACTIONS(1076), - [aux_sym_cmd_identifier_token27] = ACTIONS(1076), - [aux_sym_cmd_identifier_token28] = ACTIONS(1076), - [aux_sym_cmd_identifier_token29] = ACTIONS(1076), - [aux_sym_cmd_identifier_token30] = ACTIONS(1076), - [aux_sym_cmd_identifier_token31] = ACTIONS(1076), - [aux_sym_cmd_identifier_token32] = ACTIONS(1076), - [aux_sym_cmd_identifier_token33] = ACTIONS(1076), - [aux_sym_cmd_identifier_token34] = ACTIONS(1076), - [aux_sym_cmd_identifier_token35] = ACTIONS(1076), - [aux_sym_cmd_identifier_token36] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1076), - [anon_sym_export_DASHenv] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1076), - [anon_sym_list] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_loop] = ACTIONS(1076), - [anon_sym_make] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_catch] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_source] = ACTIONS(1076), - [anon_sym_source_DASHenv] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_hide] = ACTIONS(1076), - [anon_sym_hide_DASHenv] = ACTIONS(1076), - [anon_sym_overlay] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token3] = ACTIONS(1076), - [aux_sym__val_number_decimal_token4] = ACTIONS(1076), - [aux_sym__val_number_token1] = ACTIONS(1076), - [aux_sym__val_number_token2] = ACTIONS(1076), - [aux_sym__val_number_token3] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym__str_single_quotes] = ACTIONS(1076), - [sym__str_back_ticks] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), - [sym__entry_separator] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_POUND] = ACTIONS(3), - }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_list] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_new] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [sym__entry_separator] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(3), - }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [aux_sym_cmd_identifier_token1] = ACTIONS(2035), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2035), - [aux_sym_cmd_identifier_token13] = ACTIONS(2035), - [aux_sym_cmd_identifier_token14] = ACTIONS(2035), - [aux_sym_cmd_identifier_token15] = ACTIONS(2035), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_make] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [sym__entry_separator] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(3), - }, - [559] = { - [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), - [sym__entry_separator] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(3), - }, - [560] = { - [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [sym__entry_separator] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(3), - }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_alias] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_let_DASHenv] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [aux_sym_cmd_identifier_token1] = ACTIONS(2453), - [aux_sym_cmd_identifier_token2] = ACTIONS(2453), - [aux_sym_cmd_identifier_token3] = ACTIONS(2453), - [aux_sym_cmd_identifier_token4] = ACTIONS(2453), - [aux_sym_cmd_identifier_token5] = ACTIONS(2453), - [aux_sym_cmd_identifier_token6] = ACTIONS(2453), - [aux_sym_cmd_identifier_token7] = ACTIONS(2453), - [aux_sym_cmd_identifier_token8] = ACTIONS(2453), - [aux_sym_cmd_identifier_token9] = ACTIONS(2453), - [aux_sym_cmd_identifier_token10] = ACTIONS(2453), - [aux_sym_cmd_identifier_token11] = ACTIONS(2453), - [aux_sym_cmd_identifier_token12] = ACTIONS(2453), - [aux_sym_cmd_identifier_token13] = ACTIONS(2453), - [aux_sym_cmd_identifier_token14] = ACTIONS(2453), - [aux_sym_cmd_identifier_token15] = ACTIONS(2453), - [aux_sym_cmd_identifier_token16] = ACTIONS(2453), - [aux_sym_cmd_identifier_token17] = ACTIONS(2453), - [aux_sym_cmd_identifier_token18] = ACTIONS(2453), - [aux_sym_cmd_identifier_token19] = ACTIONS(2453), - [aux_sym_cmd_identifier_token20] = ACTIONS(2453), - [aux_sym_cmd_identifier_token21] = ACTIONS(2453), - [aux_sym_cmd_identifier_token22] = ACTIONS(2453), - [aux_sym_cmd_identifier_token23] = ACTIONS(2453), - [aux_sym_cmd_identifier_token24] = ACTIONS(2453), - [aux_sym_cmd_identifier_token25] = ACTIONS(2453), - [aux_sym_cmd_identifier_token26] = ACTIONS(2453), - [aux_sym_cmd_identifier_token27] = ACTIONS(2453), - [aux_sym_cmd_identifier_token28] = ACTIONS(2453), - [aux_sym_cmd_identifier_token29] = ACTIONS(2453), - [aux_sym_cmd_identifier_token30] = ACTIONS(2453), - [aux_sym_cmd_identifier_token31] = ACTIONS(2453), - [aux_sym_cmd_identifier_token32] = ACTIONS(2453), - [aux_sym_cmd_identifier_token33] = ACTIONS(2453), - [aux_sym_cmd_identifier_token34] = ACTIONS(2453), - [aux_sym_cmd_identifier_token35] = ACTIONS(2453), - [aux_sym_cmd_identifier_token36] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [aux_sym_cmd_identifier_token38] = ACTIONS(2453), - [aux_sym_cmd_identifier_token39] = ACTIONS(2453), - [aux_sym_cmd_identifier_token40] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(2453), - [anon_sym_export_DASHenv] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_error] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_in] = ACTIONS(2453), - [anon_sym_loop] = ACTIONS(2453), - [anon_sym_make] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_catch] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_source] = ACTIONS(2453), - [anon_sym_source_DASHenv] = ACTIONS(2453), - [anon_sym_register] = ACTIONS(2453), - [anon_sym_hide] = ACTIONS(2453), - [anon_sym_hide_DASHenv] = ACTIONS(2453), - [anon_sym_overlay] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), - [aux_sym__val_number_decimal_token1] = ACTIONS(2453), - [aux_sym__val_number_decimal_token2] = ACTIONS(2453), - [aux_sym__val_number_decimal_token3] = ACTIONS(2453), - [aux_sym__val_number_decimal_token4] = ACTIONS(2453), - [aux_sym__val_number_token1] = ACTIONS(2453), - [aux_sym__val_number_token2] = ACTIONS(2453), - [aux_sym__val_number_token3] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym__str_single_quotes] = ACTIONS(2453), - [sym__str_back_ticks] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), - [sym__entry_separator] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(3), - }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [sym__entry_separator] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(3), - }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [aux_sym_cmd_identifier_token1] = ACTIONS(2043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2043), - [aux_sym_cmd_identifier_token9] = ACTIONS(2043), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2043), - [aux_sym_cmd_identifier_token13] = ACTIONS(2043), - [aux_sym_cmd_identifier_token14] = ACTIONS(2043), - [aux_sym_cmd_identifier_token15] = ACTIONS(2043), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2043), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2043), - [aux_sym_cmd_identifier_token40] = ACTIONS(2043), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_list] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_in] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_make] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_new] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), - [sym__entry_separator] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(3), - }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_alias] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_let_DASHenv] = ACTIONS(2457), - [anon_sym_mut] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [aux_sym_cmd_identifier_token1] = ACTIONS(2457), - [aux_sym_cmd_identifier_token2] = ACTIONS(2457), - [aux_sym_cmd_identifier_token3] = ACTIONS(2457), - [aux_sym_cmd_identifier_token4] = ACTIONS(2457), - [aux_sym_cmd_identifier_token5] = ACTIONS(2457), - [aux_sym_cmd_identifier_token6] = ACTIONS(2457), - [aux_sym_cmd_identifier_token7] = ACTIONS(2457), - [aux_sym_cmd_identifier_token8] = ACTIONS(2457), - [aux_sym_cmd_identifier_token9] = ACTIONS(2457), - [aux_sym_cmd_identifier_token10] = ACTIONS(2457), - [aux_sym_cmd_identifier_token11] = ACTIONS(2457), - [aux_sym_cmd_identifier_token12] = ACTIONS(2457), - [aux_sym_cmd_identifier_token13] = ACTIONS(2457), - [aux_sym_cmd_identifier_token14] = ACTIONS(2457), - [aux_sym_cmd_identifier_token15] = ACTIONS(2457), - [aux_sym_cmd_identifier_token16] = ACTIONS(2457), - [aux_sym_cmd_identifier_token17] = ACTIONS(2457), - [aux_sym_cmd_identifier_token18] = ACTIONS(2457), - [aux_sym_cmd_identifier_token19] = ACTIONS(2457), - [aux_sym_cmd_identifier_token20] = ACTIONS(2457), - [aux_sym_cmd_identifier_token21] = ACTIONS(2457), - [aux_sym_cmd_identifier_token22] = ACTIONS(2457), - [aux_sym_cmd_identifier_token23] = ACTIONS(2457), - [aux_sym_cmd_identifier_token24] = ACTIONS(2457), - [aux_sym_cmd_identifier_token25] = ACTIONS(2457), - [aux_sym_cmd_identifier_token26] = ACTIONS(2457), - [aux_sym_cmd_identifier_token27] = ACTIONS(2457), - [aux_sym_cmd_identifier_token28] = ACTIONS(2457), - [aux_sym_cmd_identifier_token29] = ACTIONS(2457), - [aux_sym_cmd_identifier_token30] = ACTIONS(2457), - [aux_sym_cmd_identifier_token31] = ACTIONS(2457), - [aux_sym_cmd_identifier_token32] = ACTIONS(2457), - [aux_sym_cmd_identifier_token33] = ACTIONS(2457), - [aux_sym_cmd_identifier_token34] = ACTIONS(2457), - [aux_sym_cmd_identifier_token35] = ACTIONS(2457), - [aux_sym_cmd_identifier_token36] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2457), - [aux_sym_cmd_identifier_token39] = ACTIONS(2457), - [aux_sym_cmd_identifier_token40] = ACTIONS(2457), - [anon_sym_def] = ACTIONS(2457), - [anon_sym_export_DASHenv] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2457), - [anon_sym_error] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_in] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2457), - [anon_sym_make] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_source] = ACTIONS(2457), - [anon_sym_source_DASHenv] = ACTIONS(2457), - [anon_sym_register] = ACTIONS(2457), - [anon_sym_hide] = ACTIONS(2457), - [anon_sym_hide_DASHenv] = ACTIONS(2457), - [anon_sym_overlay] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_as] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), - [aux_sym__val_number_decimal_token1] = ACTIONS(2457), - [aux_sym__val_number_decimal_token2] = ACTIONS(2457), - [aux_sym__val_number_decimal_token3] = ACTIONS(2457), - [aux_sym__val_number_decimal_token4] = ACTIONS(2457), - [aux_sym__val_number_token1] = ACTIONS(2457), - [aux_sym__val_number_token2] = ACTIONS(2457), - [aux_sym__val_number_token3] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym__str_single_quotes] = ACTIONS(2457), - [sym__str_back_ticks] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), - [sym__entry_separator] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(3), - }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_alias] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_let_DASHenv] = ACTIONS(2461), - [anon_sym_mut] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [aux_sym_cmd_identifier_token1] = ACTIONS(2461), - [aux_sym_cmd_identifier_token2] = ACTIONS(2461), - [aux_sym_cmd_identifier_token3] = ACTIONS(2461), - [aux_sym_cmd_identifier_token4] = ACTIONS(2461), - [aux_sym_cmd_identifier_token5] = ACTIONS(2461), - [aux_sym_cmd_identifier_token6] = ACTIONS(2461), - [aux_sym_cmd_identifier_token7] = ACTIONS(2461), - [aux_sym_cmd_identifier_token8] = ACTIONS(2461), - [aux_sym_cmd_identifier_token9] = ACTIONS(2461), - [aux_sym_cmd_identifier_token10] = ACTIONS(2461), - [aux_sym_cmd_identifier_token11] = ACTIONS(2461), - [aux_sym_cmd_identifier_token12] = ACTIONS(2461), - [aux_sym_cmd_identifier_token13] = ACTIONS(2461), - [aux_sym_cmd_identifier_token14] = ACTIONS(2461), - [aux_sym_cmd_identifier_token15] = ACTIONS(2461), - [aux_sym_cmd_identifier_token16] = ACTIONS(2461), - [aux_sym_cmd_identifier_token17] = ACTIONS(2461), - [aux_sym_cmd_identifier_token18] = ACTIONS(2461), - [aux_sym_cmd_identifier_token19] = ACTIONS(2461), - [aux_sym_cmd_identifier_token20] = ACTIONS(2461), - [aux_sym_cmd_identifier_token21] = ACTIONS(2461), - [aux_sym_cmd_identifier_token22] = ACTIONS(2461), - [aux_sym_cmd_identifier_token23] = ACTIONS(2461), - [aux_sym_cmd_identifier_token24] = ACTIONS(2461), - [aux_sym_cmd_identifier_token25] = ACTIONS(2461), - [aux_sym_cmd_identifier_token26] = ACTIONS(2461), - [aux_sym_cmd_identifier_token27] = ACTIONS(2461), - [aux_sym_cmd_identifier_token28] = ACTIONS(2461), - [aux_sym_cmd_identifier_token29] = ACTIONS(2461), - [aux_sym_cmd_identifier_token30] = ACTIONS(2461), - [aux_sym_cmd_identifier_token31] = ACTIONS(2461), - [aux_sym_cmd_identifier_token32] = ACTIONS(2461), - [aux_sym_cmd_identifier_token33] = ACTIONS(2461), - [aux_sym_cmd_identifier_token34] = ACTIONS(2461), - [aux_sym_cmd_identifier_token35] = ACTIONS(2461), - [aux_sym_cmd_identifier_token36] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2461), - [aux_sym_cmd_identifier_token38] = ACTIONS(2461), - [aux_sym_cmd_identifier_token39] = ACTIONS(2461), - [aux_sym_cmd_identifier_token40] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_export_DASHenv] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2461), - [anon_sym_error] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_in] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_make] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_catch] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_source] = ACTIONS(2461), - [anon_sym_source_DASHenv] = ACTIONS(2461), - [anon_sym_register] = ACTIONS(2461), - [anon_sym_hide] = ACTIONS(2461), - [anon_sym_hide_DASHenv] = ACTIONS(2461), - [anon_sym_overlay] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), - [aux_sym__val_number_decimal_token1] = ACTIONS(2461), - [aux_sym__val_number_decimal_token2] = ACTIONS(2461), - [aux_sym__val_number_decimal_token3] = ACTIONS(2461), - [aux_sym__val_number_decimal_token4] = ACTIONS(2461), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym__str_single_quotes] = ACTIONS(2461), - [sym__str_back_ticks] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), - [sym__entry_separator] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(3), - }, - [566] = { - [sym_comment] = STATE(566), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(2051), - [anon_sym_alias] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_let_DASHenv] = ACTIONS(2051), - [anon_sym_mut] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [aux_sym_cmd_identifier_token1] = ACTIONS(2051), - [aux_sym_cmd_identifier_token2] = ACTIONS(2051), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [aux_sym_cmd_identifier_token6] = ACTIONS(2051), - [aux_sym_cmd_identifier_token7] = ACTIONS(2051), - [aux_sym_cmd_identifier_token8] = ACTIONS(2051), - [aux_sym_cmd_identifier_token9] = ACTIONS(2051), - [aux_sym_cmd_identifier_token10] = ACTIONS(2051), - [aux_sym_cmd_identifier_token11] = ACTIONS(2051), - [aux_sym_cmd_identifier_token12] = ACTIONS(2051), - [aux_sym_cmd_identifier_token13] = ACTIONS(2051), - [aux_sym_cmd_identifier_token14] = ACTIONS(2051), - [aux_sym_cmd_identifier_token15] = ACTIONS(2051), - [aux_sym_cmd_identifier_token16] = ACTIONS(2051), - [aux_sym_cmd_identifier_token17] = ACTIONS(2051), - [aux_sym_cmd_identifier_token18] = ACTIONS(2051), - [aux_sym_cmd_identifier_token19] = ACTIONS(2051), - [aux_sym_cmd_identifier_token20] = ACTIONS(2051), - [aux_sym_cmd_identifier_token21] = ACTIONS(2051), - [aux_sym_cmd_identifier_token22] = ACTIONS(2051), - [aux_sym_cmd_identifier_token23] = ACTIONS(2051), - [aux_sym_cmd_identifier_token24] = ACTIONS(2051), - [aux_sym_cmd_identifier_token25] = ACTIONS(2051), - [aux_sym_cmd_identifier_token26] = ACTIONS(2051), - [aux_sym_cmd_identifier_token27] = ACTIONS(2051), - [aux_sym_cmd_identifier_token28] = ACTIONS(2051), - [aux_sym_cmd_identifier_token29] = ACTIONS(2051), - [aux_sym_cmd_identifier_token30] = ACTIONS(2051), - [aux_sym_cmd_identifier_token31] = ACTIONS(2051), - [aux_sym_cmd_identifier_token32] = ACTIONS(2051), - [aux_sym_cmd_identifier_token33] = ACTIONS(2051), - [aux_sym_cmd_identifier_token34] = ACTIONS(2051), - [aux_sym_cmd_identifier_token35] = ACTIONS(2051), - [aux_sym_cmd_identifier_token36] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [anon_sym_null] = ACTIONS(2051), - [aux_sym_cmd_identifier_token38] = ACTIONS(2051), - [aux_sym_cmd_identifier_token39] = ACTIONS(2051), - [aux_sym_cmd_identifier_token40] = ACTIONS(2051), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_export_DASHenv] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_module] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_error] = ACTIONS(2051), - [anon_sym_list] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_in] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_make] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_source] = ACTIONS(2051), - [anon_sym_source_DASHenv] = ACTIONS(2051), - [anon_sym_register] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_hide_DASHenv] = ACTIONS(2051), - [anon_sym_overlay] = ACTIONS(2051), - [anon_sym_new] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2051), - [aux_sym__val_number_decimal_token3] = ACTIONS(2051), - [aux_sym__val_number_decimal_token4] = ACTIONS(2051), - [aux_sym__val_number_token1] = ACTIONS(2051), - [aux_sym__val_number_token2] = ACTIONS(2051), - [aux_sym__val_number_token3] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), - [sym__entry_separator] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(3), - }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_alias] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_let_DASHenv] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [aux_sym_cmd_identifier_token1] = ACTIONS(2465), - [aux_sym_cmd_identifier_token2] = ACTIONS(2465), - [aux_sym_cmd_identifier_token3] = ACTIONS(2465), - [aux_sym_cmd_identifier_token4] = ACTIONS(2465), - [aux_sym_cmd_identifier_token5] = ACTIONS(2465), - [aux_sym_cmd_identifier_token6] = ACTIONS(2465), - [aux_sym_cmd_identifier_token7] = ACTIONS(2465), - [aux_sym_cmd_identifier_token8] = ACTIONS(2465), - [aux_sym_cmd_identifier_token9] = ACTIONS(2465), - [aux_sym_cmd_identifier_token10] = ACTIONS(2465), - [aux_sym_cmd_identifier_token11] = ACTIONS(2465), - [aux_sym_cmd_identifier_token12] = ACTIONS(2465), - [aux_sym_cmd_identifier_token13] = ACTIONS(2465), - [aux_sym_cmd_identifier_token14] = ACTIONS(2465), - [aux_sym_cmd_identifier_token15] = ACTIONS(2465), - [aux_sym_cmd_identifier_token16] = ACTIONS(2465), - [aux_sym_cmd_identifier_token17] = ACTIONS(2465), - [aux_sym_cmd_identifier_token18] = ACTIONS(2465), - [aux_sym_cmd_identifier_token19] = ACTIONS(2465), - [aux_sym_cmd_identifier_token20] = ACTIONS(2465), - [aux_sym_cmd_identifier_token21] = ACTIONS(2465), - [aux_sym_cmd_identifier_token22] = ACTIONS(2465), - [aux_sym_cmd_identifier_token23] = ACTIONS(2465), - [aux_sym_cmd_identifier_token24] = ACTIONS(2465), - [aux_sym_cmd_identifier_token25] = ACTIONS(2465), - [aux_sym_cmd_identifier_token26] = ACTIONS(2465), - [aux_sym_cmd_identifier_token27] = ACTIONS(2465), - [aux_sym_cmd_identifier_token28] = ACTIONS(2465), - [aux_sym_cmd_identifier_token29] = ACTIONS(2465), - [aux_sym_cmd_identifier_token30] = ACTIONS(2465), - [aux_sym_cmd_identifier_token31] = ACTIONS(2465), - [aux_sym_cmd_identifier_token32] = ACTIONS(2465), - [aux_sym_cmd_identifier_token33] = ACTIONS(2465), - [aux_sym_cmd_identifier_token34] = ACTIONS(2465), - [aux_sym_cmd_identifier_token35] = ACTIONS(2465), - [aux_sym_cmd_identifier_token36] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [aux_sym_cmd_identifier_token38] = ACTIONS(2465), - [aux_sym_cmd_identifier_token39] = ACTIONS(2465), - [aux_sym_cmd_identifier_token40] = ACTIONS(2465), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_export_DASHenv] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2465), - [anon_sym_error] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2465), - [anon_sym_make] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_catch] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_source] = ACTIONS(2465), - [anon_sym_source_DASHenv] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_hide] = ACTIONS(2465), - [anon_sym_hide_DASHenv] = ACTIONS(2465), - [anon_sym_overlay] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2465), - [aux_sym__val_number_decimal_token3] = ACTIONS(2465), - [aux_sym__val_number_decimal_token4] = ACTIONS(2465), - [aux_sym__val_number_token1] = ACTIONS(2465), - [aux_sym__val_number_token2] = ACTIONS(2465), - [aux_sym__val_number_token3] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym__str_single_quotes] = ACTIONS(2465), - [sym__str_back_ticks] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2465), - [sym__entry_separator] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(3), - }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2469), - [aux_sym_cmd_identifier_token3] = ACTIONS(2469), - [aux_sym_cmd_identifier_token4] = ACTIONS(2469), - [aux_sym_cmd_identifier_token5] = ACTIONS(2469), - [aux_sym_cmd_identifier_token6] = ACTIONS(2469), - [aux_sym_cmd_identifier_token7] = ACTIONS(2469), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2469), - [aux_sym_cmd_identifier_token11] = ACTIONS(2469), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2469), - [aux_sym_cmd_identifier_token17] = ACTIONS(2469), - [aux_sym_cmd_identifier_token18] = ACTIONS(2469), - [aux_sym_cmd_identifier_token19] = ACTIONS(2469), - [aux_sym_cmd_identifier_token20] = ACTIONS(2469), - [aux_sym_cmd_identifier_token21] = ACTIONS(2469), - [aux_sym_cmd_identifier_token22] = ACTIONS(2469), - [aux_sym_cmd_identifier_token23] = ACTIONS(2469), - [aux_sym_cmd_identifier_token24] = ACTIONS(2469), - [aux_sym_cmd_identifier_token25] = ACTIONS(2469), - [aux_sym_cmd_identifier_token26] = ACTIONS(2469), - [aux_sym_cmd_identifier_token27] = ACTIONS(2469), - [aux_sym_cmd_identifier_token28] = ACTIONS(2469), - [aux_sym_cmd_identifier_token29] = ACTIONS(2469), - [aux_sym_cmd_identifier_token30] = ACTIONS(2469), - [aux_sym_cmd_identifier_token31] = ACTIONS(2469), - [aux_sym_cmd_identifier_token32] = ACTIONS(2469), - [aux_sym_cmd_identifier_token33] = ACTIONS(2469), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2469), - [aux_sym_cmd_identifier_token36] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2469), - [aux_sym_cmd_identifier_token40] = ACTIONS(2469), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2469), - [aux_sym__val_number_decimal_token3] = ACTIONS(2469), - [aux_sym__val_number_decimal_token4] = ACTIONS(2469), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym__str_single_quotes] = ACTIONS(2469), - [sym__str_back_ticks] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), - [sym__entry_separator] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [sym__entry_separator] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(3), }, - [570] = { - [sym_comment] = STATE(570), + [596] = { + [sym_comment] = STATE(596), [anon_sym_export] = ACTIONS(2473), [anon_sym_alias] = ACTIONS(2473), [anon_sym_let] = ACTIONS(2473), @@ -137036,8 +141338,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2473), [anon_sym_POUND] = ACTIONS(3), }, - [571] = { - [sym_comment] = STATE(571), + [597] = { + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_alias] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_let_DASHenv] = ACTIONS(1991), + [anon_sym_mut] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [aux_sym_cmd_identifier_token1] = ACTIONS(1991), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1991), + [aux_sym_cmd_identifier_token9] = ACTIONS(1991), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1991), + [aux_sym_cmd_identifier_token13] = ACTIONS(1991), + [aux_sym_cmd_identifier_token14] = ACTIONS(1991), + [aux_sym_cmd_identifier_token15] = ACTIONS(1991), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1991), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [anon_sym_null] = ACTIONS(1991), + [aux_sym_cmd_identifier_token38] = ACTIONS(1991), + [aux_sym_cmd_identifier_token39] = ACTIONS(1991), + [aux_sym_cmd_identifier_token40] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_export_DASHenv] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_error] = ACTIONS(1991), + [anon_sym_list] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_in] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_make] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_else] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_catch] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_source] = ACTIONS(1991), + [anon_sym_source_DASHenv] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1991), + [anon_sym_hide] = ACTIONS(1991), + [anon_sym_hide_DASHenv] = ACTIONS(1991), + [anon_sym_overlay] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_as] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1991), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), + [sym__entry_separator] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(3), + }, + [598] = { + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [aux_sym_cmd_identifier_token1] = ACTIONS(1999), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1999), + [aux_sym_cmd_identifier_token9] = ACTIONS(1999), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1999), + [aux_sym_cmd_identifier_token13] = ACTIONS(1999), + [aux_sym_cmd_identifier_token14] = ACTIONS(1999), + [aux_sym_cmd_identifier_token15] = ACTIONS(1999), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1999), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1999), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_list] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_in] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_make] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_catch] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [sym__entry_separator] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(3), + }, + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [aux_sym_cmd_identifier_token1] = ACTIONS(2007), + [aux_sym_cmd_identifier_token2] = ACTIONS(2007), + [aux_sym_cmd_identifier_token3] = ACTIONS(2007), + [aux_sym_cmd_identifier_token4] = ACTIONS(2007), + [aux_sym_cmd_identifier_token5] = ACTIONS(2007), + [aux_sym_cmd_identifier_token6] = ACTIONS(2007), + [aux_sym_cmd_identifier_token7] = ACTIONS(2007), + [aux_sym_cmd_identifier_token8] = ACTIONS(2007), + [aux_sym_cmd_identifier_token9] = ACTIONS(2007), + [aux_sym_cmd_identifier_token10] = ACTIONS(2007), + [aux_sym_cmd_identifier_token11] = ACTIONS(2007), + [aux_sym_cmd_identifier_token12] = ACTIONS(2007), + [aux_sym_cmd_identifier_token13] = ACTIONS(2007), + [aux_sym_cmd_identifier_token14] = ACTIONS(2007), + [aux_sym_cmd_identifier_token15] = ACTIONS(2007), + [aux_sym_cmd_identifier_token16] = ACTIONS(2007), + [aux_sym_cmd_identifier_token17] = ACTIONS(2007), + [aux_sym_cmd_identifier_token18] = ACTIONS(2007), + [aux_sym_cmd_identifier_token19] = ACTIONS(2007), + [aux_sym_cmd_identifier_token20] = ACTIONS(2007), + [aux_sym_cmd_identifier_token21] = ACTIONS(2007), + [aux_sym_cmd_identifier_token22] = ACTIONS(2007), + [aux_sym_cmd_identifier_token23] = ACTIONS(2007), + [aux_sym_cmd_identifier_token24] = ACTIONS(2007), + [aux_sym_cmd_identifier_token25] = ACTIONS(2007), + [aux_sym_cmd_identifier_token26] = ACTIONS(2007), + [aux_sym_cmd_identifier_token27] = ACTIONS(2007), + [aux_sym_cmd_identifier_token28] = ACTIONS(2007), + [aux_sym_cmd_identifier_token29] = ACTIONS(2007), + [aux_sym_cmd_identifier_token30] = ACTIONS(2007), + [aux_sym_cmd_identifier_token31] = ACTIONS(2007), + [aux_sym_cmd_identifier_token32] = ACTIONS(2007), + [aux_sym_cmd_identifier_token33] = ACTIONS(2007), + [aux_sym_cmd_identifier_token34] = ACTIONS(2007), + [aux_sym_cmd_identifier_token35] = ACTIONS(2007), + [aux_sym_cmd_identifier_token36] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [aux_sym_cmd_identifier_token38] = ACTIONS(2007), + [aux_sym_cmd_identifier_token39] = ACTIONS(2007), + [aux_sym_cmd_identifier_token40] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_list] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_in] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_make] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_catch] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), + [sym__entry_separator] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(3), + }, + [600] = { + [sym_comment] = STATE(600), [anon_sym_export] = ACTIONS(2477), [anon_sym_alias] = ACTIONS(2477), [anon_sym_let] = ACTIONS(2477), @@ -137136,8 +141738,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2477), [anon_sym_POUND] = ACTIONS(3), }, - [572] = { - [sym_comment] = STATE(572), + [601] = { + [sym_comment] = STATE(601), [anon_sym_export] = ACTIONS(2481), [anon_sym_alias] = ACTIONS(2481), [anon_sym_let] = ACTIONS(2481), @@ -137236,2402 +141838,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2481), [anon_sym_POUND] = ACTIONS(3), }, - [573] = { - [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_let_DASHenv] = ACTIONS(2485), - [anon_sym_mut] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [aux_sym_cmd_identifier_token2] = ACTIONS(2485), - [aux_sym_cmd_identifier_token3] = ACTIONS(2485), - [aux_sym_cmd_identifier_token4] = ACTIONS(2485), - [aux_sym_cmd_identifier_token5] = ACTIONS(2485), - [aux_sym_cmd_identifier_token6] = ACTIONS(2485), - [aux_sym_cmd_identifier_token7] = ACTIONS(2485), - [aux_sym_cmd_identifier_token8] = ACTIONS(2485), - [aux_sym_cmd_identifier_token9] = ACTIONS(2485), - [aux_sym_cmd_identifier_token10] = ACTIONS(2485), - [aux_sym_cmd_identifier_token11] = ACTIONS(2485), - [aux_sym_cmd_identifier_token12] = ACTIONS(2485), - [aux_sym_cmd_identifier_token13] = ACTIONS(2485), - [aux_sym_cmd_identifier_token14] = ACTIONS(2485), - [aux_sym_cmd_identifier_token15] = ACTIONS(2485), - [aux_sym_cmd_identifier_token16] = ACTIONS(2485), - [aux_sym_cmd_identifier_token17] = ACTIONS(2485), - [aux_sym_cmd_identifier_token18] = ACTIONS(2485), - [aux_sym_cmd_identifier_token19] = ACTIONS(2485), - [aux_sym_cmd_identifier_token20] = ACTIONS(2485), - [aux_sym_cmd_identifier_token21] = ACTIONS(2485), - [aux_sym_cmd_identifier_token22] = ACTIONS(2485), - [aux_sym_cmd_identifier_token23] = ACTIONS(2485), - [aux_sym_cmd_identifier_token24] = ACTIONS(2485), - [aux_sym_cmd_identifier_token25] = ACTIONS(2485), - [aux_sym_cmd_identifier_token26] = ACTIONS(2485), - [aux_sym_cmd_identifier_token27] = ACTIONS(2485), - [aux_sym_cmd_identifier_token28] = ACTIONS(2485), - [aux_sym_cmd_identifier_token29] = ACTIONS(2485), - [aux_sym_cmd_identifier_token30] = ACTIONS(2485), - [aux_sym_cmd_identifier_token31] = ACTIONS(2485), - [aux_sym_cmd_identifier_token32] = ACTIONS(2485), - [aux_sym_cmd_identifier_token33] = ACTIONS(2485), - [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2485), - [aux_sym_cmd_identifier_token36] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2485), - [aux_sym_cmd_identifier_token40] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_export_DASHenv] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_make] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_catch] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_as] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2485), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2485), - [aux_sym__val_number_token1] = ACTIONS(2485), - [aux_sym__val_number_token2] = ACTIONS(2485), - [aux_sym__val_number_token3] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym__str_single_quotes] = ACTIONS(2485), - [sym__str_back_ticks] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), - [sym__entry_separator] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(3), - }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2489), - [aux_sym_cmd_identifier_token40] = ACTIONS(2489), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2489), - [aux_sym__val_number_decimal_token3] = ACTIONS(2489), - [aux_sym__val_number_decimal_token4] = ACTIONS(2489), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym__str_single_quotes] = ACTIONS(2489), - [sym__str_back_ticks] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), - [sym__entry_separator] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(3), - }, - [575] = { - [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [aux_sym_cmd_identifier_token6] = ACTIONS(2493), - [aux_sym_cmd_identifier_token7] = ACTIONS(2493), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2493), - [aux_sym_cmd_identifier_token11] = ACTIONS(2493), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2493), - [aux_sym_cmd_identifier_token17] = ACTIONS(2493), - [aux_sym_cmd_identifier_token18] = ACTIONS(2493), - [aux_sym_cmd_identifier_token19] = ACTIONS(2493), - [aux_sym_cmd_identifier_token20] = ACTIONS(2493), - [aux_sym_cmd_identifier_token21] = ACTIONS(2493), - [aux_sym_cmd_identifier_token22] = ACTIONS(2493), - [aux_sym_cmd_identifier_token23] = ACTIONS(2493), - [aux_sym_cmd_identifier_token24] = ACTIONS(2493), - [aux_sym_cmd_identifier_token25] = ACTIONS(2493), - [aux_sym_cmd_identifier_token26] = ACTIONS(2493), - [aux_sym_cmd_identifier_token27] = ACTIONS(2493), - [aux_sym_cmd_identifier_token28] = ACTIONS(2493), - [aux_sym_cmd_identifier_token29] = ACTIONS(2493), - [aux_sym_cmd_identifier_token30] = ACTIONS(2493), - [aux_sym_cmd_identifier_token31] = ACTIONS(2493), - [aux_sym_cmd_identifier_token32] = ACTIONS(2493), - [aux_sym_cmd_identifier_token33] = ACTIONS(2493), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2493), - [aux_sym_cmd_identifier_token36] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2493), - [aux_sym_cmd_identifier_token40] = ACTIONS(2493), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym__str_single_quotes] = ACTIONS(2493), - [sym__str_back_ticks] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), - [sym__entry_separator] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2497), - [aux_sym_cmd_identifier_token3] = ACTIONS(2497), - [aux_sym_cmd_identifier_token4] = ACTIONS(2497), - [aux_sym_cmd_identifier_token5] = ACTIONS(2497), - [aux_sym_cmd_identifier_token6] = ACTIONS(2497), - [aux_sym_cmd_identifier_token7] = ACTIONS(2497), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2497), - [aux_sym_cmd_identifier_token11] = ACTIONS(2497), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2497), - [aux_sym_cmd_identifier_token17] = ACTIONS(2497), - [aux_sym_cmd_identifier_token18] = ACTIONS(2497), - [aux_sym_cmd_identifier_token19] = ACTIONS(2497), - [aux_sym_cmd_identifier_token20] = ACTIONS(2497), - [aux_sym_cmd_identifier_token21] = ACTIONS(2497), - [aux_sym_cmd_identifier_token22] = ACTIONS(2497), - [aux_sym_cmd_identifier_token23] = ACTIONS(2497), - [aux_sym_cmd_identifier_token24] = ACTIONS(2497), - [aux_sym_cmd_identifier_token25] = ACTIONS(2497), - [aux_sym_cmd_identifier_token26] = ACTIONS(2497), - [aux_sym_cmd_identifier_token27] = ACTIONS(2497), - [aux_sym_cmd_identifier_token28] = ACTIONS(2497), - [aux_sym_cmd_identifier_token29] = ACTIONS(2497), - [aux_sym_cmd_identifier_token30] = ACTIONS(2497), - [aux_sym_cmd_identifier_token31] = ACTIONS(2497), - [aux_sym_cmd_identifier_token32] = ACTIONS(2497), - [aux_sym_cmd_identifier_token33] = ACTIONS(2497), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2497), - [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2497), - [aux_sym_cmd_identifier_token40] = ACTIONS(2497), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2497), - [aux_sym__val_number_decimal_token3] = ACTIONS(2497), - [aux_sym__val_number_decimal_token4] = ACTIONS(2497), - [aux_sym__val_number_token1] = ACTIONS(2497), - [aux_sym__val_number_token2] = ACTIONS(2497), - [aux_sym__val_number_token3] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2497), - [sym__str_back_ticks] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), - [sym__entry_separator] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2501), - [aux_sym_cmd_identifier_token4] = ACTIONS(2501), - [aux_sym_cmd_identifier_token5] = ACTIONS(2501), - [aux_sym_cmd_identifier_token6] = ACTIONS(2501), - [aux_sym_cmd_identifier_token7] = ACTIONS(2501), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2501), - [aux_sym_cmd_identifier_token11] = ACTIONS(2501), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2501), - [aux_sym_cmd_identifier_token17] = ACTIONS(2501), - [aux_sym_cmd_identifier_token18] = ACTIONS(2501), - [aux_sym_cmd_identifier_token19] = ACTIONS(2501), - [aux_sym_cmd_identifier_token20] = ACTIONS(2501), - [aux_sym_cmd_identifier_token21] = ACTIONS(2501), - [aux_sym_cmd_identifier_token22] = ACTIONS(2501), - [aux_sym_cmd_identifier_token23] = ACTIONS(2501), - [aux_sym_cmd_identifier_token24] = ACTIONS(2501), - [aux_sym_cmd_identifier_token25] = ACTIONS(2501), - [aux_sym_cmd_identifier_token26] = ACTIONS(2501), - [aux_sym_cmd_identifier_token27] = ACTIONS(2501), - [aux_sym_cmd_identifier_token28] = ACTIONS(2501), - [aux_sym_cmd_identifier_token29] = ACTIONS(2501), - [aux_sym_cmd_identifier_token30] = ACTIONS(2501), - [aux_sym_cmd_identifier_token31] = ACTIONS(2501), - [aux_sym_cmd_identifier_token32] = ACTIONS(2501), - [aux_sym_cmd_identifier_token33] = ACTIONS(2501), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2501), - [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2501), - [aux_sym_cmd_identifier_token40] = ACTIONS(2501), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2501), - [aux_sym__val_number_decimal_token4] = ACTIONS(2501), - [aux_sym__val_number_token1] = ACTIONS(2501), - [aux_sym__val_number_token2] = ACTIONS(2501), - [aux_sym__val_number_token3] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym__str_single_quotes] = ACTIONS(2501), - [sym__str_back_ticks] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), - [sym__entry_separator] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(3), - }, - [579] = { - [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1643), - [aux_sym__val_number_decimal_token3] = ACTIONS(1643), - [aux_sym__val_number_decimal_token4] = ACTIONS(1643), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), - [sym__entry_separator] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [582] = { - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(3), - }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1755), - [anon_sym_false] = ACTIONS(1755), - [anon_sym_null] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - }, - [584] = { - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(2507), - [anon_sym_alias] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_let_DASHenv] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [aux_sym_cmd_identifier_token1] = ACTIONS(2507), - [aux_sym_cmd_identifier_token2] = ACTIONS(2507), - [aux_sym_cmd_identifier_token3] = ACTIONS(2507), - [aux_sym_cmd_identifier_token4] = ACTIONS(2507), - [aux_sym_cmd_identifier_token5] = ACTIONS(2507), - [aux_sym_cmd_identifier_token6] = ACTIONS(2507), - [aux_sym_cmd_identifier_token7] = ACTIONS(2507), - [aux_sym_cmd_identifier_token8] = ACTIONS(2507), - [aux_sym_cmd_identifier_token9] = ACTIONS(2507), - [aux_sym_cmd_identifier_token10] = ACTIONS(2507), - [aux_sym_cmd_identifier_token11] = ACTIONS(2507), - [aux_sym_cmd_identifier_token12] = ACTIONS(2507), - [aux_sym_cmd_identifier_token13] = ACTIONS(2507), - [aux_sym_cmd_identifier_token14] = ACTIONS(2507), - [aux_sym_cmd_identifier_token15] = ACTIONS(2507), - [aux_sym_cmd_identifier_token16] = ACTIONS(2507), - [aux_sym_cmd_identifier_token17] = ACTIONS(2507), - [aux_sym_cmd_identifier_token18] = ACTIONS(2507), - [aux_sym_cmd_identifier_token19] = ACTIONS(2507), - [aux_sym_cmd_identifier_token20] = ACTIONS(2507), - [aux_sym_cmd_identifier_token21] = ACTIONS(2507), - [aux_sym_cmd_identifier_token22] = ACTIONS(2507), - [aux_sym_cmd_identifier_token23] = ACTIONS(2507), - [aux_sym_cmd_identifier_token24] = ACTIONS(2507), - [aux_sym_cmd_identifier_token25] = ACTIONS(2507), - [aux_sym_cmd_identifier_token26] = ACTIONS(2507), - [aux_sym_cmd_identifier_token27] = ACTIONS(2507), - [aux_sym_cmd_identifier_token28] = ACTIONS(2507), - [aux_sym_cmd_identifier_token29] = ACTIONS(2507), - [aux_sym_cmd_identifier_token30] = ACTIONS(2507), - [aux_sym_cmd_identifier_token31] = ACTIONS(2507), - [aux_sym_cmd_identifier_token32] = ACTIONS(2507), - [aux_sym_cmd_identifier_token33] = ACTIONS(2507), - [aux_sym_cmd_identifier_token34] = ACTIONS(2507), - [aux_sym_cmd_identifier_token35] = ACTIONS(2507), - [aux_sym_cmd_identifier_token36] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2507), - [aux_sym_cmd_identifier_token38] = ACTIONS(2507), - [aux_sym_cmd_identifier_token39] = ACTIONS(2507), - [aux_sym_cmd_identifier_token40] = ACTIONS(2507), - [anon_sym_def] = ACTIONS(2507), - [anon_sym_export_DASHenv] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_error] = ACTIONS(2507), - [anon_sym_list] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_make] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_catch] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_source] = ACTIONS(2507), - [anon_sym_source_DASHenv] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_hide] = ACTIONS(2507), - [anon_sym_hide_DASHenv] = ACTIONS(2507), - [anon_sym_overlay] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2507), - [aux_sym__val_number_decimal_token2] = ACTIONS(2507), - [aux_sym__val_number_decimal_token3] = ACTIONS(2507), - [aux_sym__val_number_decimal_token4] = ACTIONS(2507), - [aux_sym__val_number_token1] = ACTIONS(2507), - [aux_sym__val_number_token2] = ACTIONS(2507), - [aux_sym__val_number_token3] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym__str_single_quotes] = ACTIONS(2507), - [sym__str_back_ticks] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), - [sym__entry_separator] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(3), - }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(2511), - [anon_sym_alias] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_let_DASHenv] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [aux_sym_cmd_identifier_token1] = ACTIONS(2511), - [aux_sym_cmd_identifier_token2] = ACTIONS(2511), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), - [aux_sym_cmd_identifier_token6] = ACTIONS(2511), - [aux_sym_cmd_identifier_token7] = ACTIONS(2511), - [aux_sym_cmd_identifier_token8] = ACTIONS(2511), - [aux_sym_cmd_identifier_token9] = ACTIONS(2511), - [aux_sym_cmd_identifier_token10] = ACTIONS(2511), - [aux_sym_cmd_identifier_token11] = ACTIONS(2511), - [aux_sym_cmd_identifier_token12] = ACTIONS(2511), - [aux_sym_cmd_identifier_token13] = ACTIONS(2511), - [aux_sym_cmd_identifier_token14] = ACTIONS(2511), - [aux_sym_cmd_identifier_token15] = ACTIONS(2511), - [aux_sym_cmd_identifier_token16] = ACTIONS(2511), - [aux_sym_cmd_identifier_token17] = ACTIONS(2511), - [aux_sym_cmd_identifier_token18] = ACTIONS(2511), - [aux_sym_cmd_identifier_token19] = ACTIONS(2511), - [aux_sym_cmd_identifier_token20] = ACTIONS(2511), - [aux_sym_cmd_identifier_token21] = ACTIONS(2511), - [aux_sym_cmd_identifier_token22] = ACTIONS(2511), - [aux_sym_cmd_identifier_token23] = ACTIONS(2511), - [aux_sym_cmd_identifier_token24] = ACTIONS(2511), - [aux_sym_cmd_identifier_token25] = ACTIONS(2511), - [aux_sym_cmd_identifier_token26] = ACTIONS(2511), - [aux_sym_cmd_identifier_token27] = ACTIONS(2511), - [aux_sym_cmd_identifier_token28] = ACTIONS(2511), - [aux_sym_cmd_identifier_token29] = ACTIONS(2511), - [aux_sym_cmd_identifier_token30] = ACTIONS(2511), - [aux_sym_cmd_identifier_token31] = ACTIONS(2511), - [aux_sym_cmd_identifier_token32] = ACTIONS(2511), - [aux_sym_cmd_identifier_token33] = ACTIONS(2511), - [aux_sym_cmd_identifier_token34] = ACTIONS(2511), - [aux_sym_cmd_identifier_token35] = ACTIONS(2511), - [aux_sym_cmd_identifier_token36] = ACTIONS(2511), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_null] = ACTIONS(2511), - [aux_sym_cmd_identifier_token38] = ACTIONS(2511), - [aux_sym_cmd_identifier_token39] = ACTIONS(2511), - [aux_sym_cmd_identifier_token40] = ACTIONS(2511), - [anon_sym_def] = ACTIONS(2511), - [anon_sym_export_DASHenv] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_module] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_error] = ACTIONS(2511), - [anon_sym_list] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_make] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_catch] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_source] = ACTIONS(2511), - [anon_sym_source_DASHenv] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_hide] = ACTIONS(2511), - [anon_sym_hide_DASHenv] = ACTIONS(2511), - [anon_sym_overlay] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_as] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2511), - [aux_sym__val_number_decimal_token1] = ACTIONS(2511), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2511), - [aux_sym__val_number_decimal_token4] = ACTIONS(2511), - [aux_sym__val_number_token1] = ACTIONS(2511), - [aux_sym__val_number_token2] = ACTIONS(2511), - [aux_sym__val_number_token3] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [sym__str_single_quotes] = ACTIONS(2511), - [sym__str_back_ticks] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2511), - [sym__entry_separator] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(3), - }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(2515), - [anon_sym_alias] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_let_DASHenv] = ACTIONS(2515), - [anon_sym_mut] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [aux_sym_cmd_identifier_token1] = ACTIONS(2515), - [aux_sym_cmd_identifier_token2] = ACTIONS(2515), - [aux_sym_cmd_identifier_token3] = ACTIONS(2515), - [aux_sym_cmd_identifier_token4] = ACTIONS(2515), - [aux_sym_cmd_identifier_token5] = ACTIONS(2515), - [aux_sym_cmd_identifier_token6] = ACTIONS(2515), - [aux_sym_cmd_identifier_token7] = ACTIONS(2515), - [aux_sym_cmd_identifier_token8] = ACTIONS(2515), - [aux_sym_cmd_identifier_token9] = ACTIONS(2515), - [aux_sym_cmd_identifier_token10] = ACTIONS(2515), - [aux_sym_cmd_identifier_token11] = ACTIONS(2515), - [aux_sym_cmd_identifier_token12] = ACTIONS(2515), - [aux_sym_cmd_identifier_token13] = ACTIONS(2515), - [aux_sym_cmd_identifier_token14] = ACTIONS(2515), - [aux_sym_cmd_identifier_token15] = ACTIONS(2515), - [aux_sym_cmd_identifier_token16] = ACTIONS(2515), - [aux_sym_cmd_identifier_token17] = ACTIONS(2515), - [aux_sym_cmd_identifier_token18] = ACTIONS(2515), - [aux_sym_cmd_identifier_token19] = ACTIONS(2515), - [aux_sym_cmd_identifier_token20] = ACTIONS(2515), - [aux_sym_cmd_identifier_token21] = ACTIONS(2515), - [aux_sym_cmd_identifier_token22] = ACTIONS(2515), - [aux_sym_cmd_identifier_token23] = ACTIONS(2515), - [aux_sym_cmd_identifier_token24] = ACTIONS(2515), - [aux_sym_cmd_identifier_token25] = ACTIONS(2515), - [aux_sym_cmd_identifier_token26] = ACTIONS(2515), - [aux_sym_cmd_identifier_token27] = ACTIONS(2515), - [aux_sym_cmd_identifier_token28] = ACTIONS(2515), - [aux_sym_cmd_identifier_token29] = ACTIONS(2515), - [aux_sym_cmd_identifier_token30] = ACTIONS(2515), - [aux_sym_cmd_identifier_token31] = ACTIONS(2515), - [aux_sym_cmd_identifier_token32] = ACTIONS(2515), - [aux_sym_cmd_identifier_token33] = ACTIONS(2515), - [aux_sym_cmd_identifier_token34] = ACTIONS(2515), - [aux_sym_cmd_identifier_token35] = ACTIONS(2515), - [aux_sym_cmd_identifier_token36] = ACTIONS(2515), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [anon_sym_null] = ACTIONS(2515), - [aux_sym_cmd_identifier_token38] = ACTIONS(2515), - [aux_sym_cmd_identifier_token39] = ACTIONS(2515), - [aux_sym_cmd_identifier_token40] = ACTIONS(2515), - [anon_sym_def] = ACTIONS(2515), - [anon_sym_export_DASHenv] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_module] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_error] = ACTIONS(2515), - [anon_sym_list] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_make] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_catch] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_source] = ACTIONS(2515), - [anon_sym_source_DASHenv] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_hide] = ACTIONS(2515), - [anon_sym_hide_DASHenv] = ACTIONS(2515), - [anon_sym_overlay] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2515), - [aux_sym__val_number_decimal_token2] = ACTIONS(2515), - [aux_sym__val_number_decimal_token3] = ACTIONS(2515), - [aux_sym__val_number_decimal_token4] = ACTIONS(2515), - [aux_sym__val_number_token1] = ACTIONS(2515), - [aux_sym__val_number_token2] = ACTIONS(2515), - [aux_sym__val_number_token3] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [sym__str_single_quotes] = ACTIONS(2515), - [sym__str_back_ticks] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2515), - [sym__entry_separator] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(3), - }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [aux_sym_cmd_identifier_token1] = ACTIONS(2309), - [aux_sym_cmd_identifier_token2] = ACTIONS(2309), - [aux_sym_cmd_identifier_token3] = ACTIONS(2309), - [aux_sym_cmd_identifier_token4] = ACTIONS(2309), - [aux_sym_cmd_identifier_token5] = ACTIONS(2309), - [aux_sym_cmd_identifier_token6] = ACTIONS(2309), - [aux_sym_cmd_identifier_token7] = ACTIONS(2309), - [aux_sym_cmd_identifier_token8] = ACTIONS(2309), - [aux_sym_cmd_identifier_token9] = ACTIONS(2309), - [aux_sym_cmd_identifier_token10] = ACTIONS(2309), - [aux_sym_cmd_identifier_token11] = ACTIONS(2309), - [aux_sym_cmd_identifier_token12] = ACTIONS(2309), - [aux_sym_cmd_identifier_token13] = ACTIONS(2309), - [aux_sym_cmd_identifier_token14] = ACTIONS(2309), - [aux_sym_cmd_identifier_token15] = ACTIONS(2309), - [aux_sym_cmd_identifier_token16] = ACTIONS(2309), - [aux_sym_cmd_identifier_token17] = ACTIONS(2309), - [aux_sym_cmd_identifier_token18] = ACTIONS(2309), - [aux_sym_cmd_identifier_token19] = ACTIONS(2309), - [aux_sym_cmd_identifier_token20] = ACTIONS(2309), - [aux_sym_cmd_identifier_token21] = ACTIONS(2309), - [aux_sym_cmd_identifier_token22] = ACTIONS(2309), - [aux_sym_cmd_identifier_token23] = ACTIONS(2309), - [aux_sym_cmd_identifier_token24] = ACTIONS(2309), - [aux_sym_cmd_identifier_token25] = ACTIONS(2309), - [aux_sym_cmd_identifier_token26] = ACTIONS(2309), - [aux_sym_cmd_identifier_token27] = ACTIONS(2309), - [aux_sym_cmd_identifier_token28] = ACTIONS(2309), - [aux_sym_cmd_identifier_token29] = ACTIONS(2309), - [aux_sym_cmd_identifier_token30] = ACTIONS(2309), - [aux_sym_cmd_identifier_token31] = ACTIONS(2309), - [aux_sym_cmd_identifier_token32] = ACTIONS(2309), - [aux_sym_cmd_identifier_token33] = ACTIONS(2309), - [aux_sym_cmd_identifier_token34] = ACTIONS(2309), - [aux_sym_cmd_identifier_token35] = ACTIONS(2309), - [aux_sym_cmd_identifier_token36] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_null] = ACTIONS(2311), - [aux_sym_cmd_identifier_token38] = ACTIONS(2309), - [aux_sym_cmd_identifier_token39] = ACTIONS(2311), - [aux_sym_cmd_identifier_token40] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_make] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_catch] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2309), - [aux_sym__val_number_decimal_token2] = ACTIONS(2311), - [aux_sym__val_number_decimal_token3] = ACTIONS(2311), - [aux_sym__val_number_decimal_token4] = ACTIONS(2311), - [aux_sym__val_number_token1] = ACTIONS(2311), - [aux_sym__val_number_token2] = ACTIONS(2311), - [aux_sym__val_number_token3] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym__str_single_quotes] = ACTIONS(2311), - [sym__str_back_ticks] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(247), - }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_alias] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_let_DASHenv] = ACTIONS(2329), - [anon_sym_mut] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [aux_sym_cmd_identifier_token1] = ACTIONS(2329), - [aux_sym_cmd_identifier_token2] = ACTIONS(2329), - [aux_sym_cmd_identifier_token3] = ACTIONS(2329), - [aux_sym_cmd_identifier_token4] = ACTIONS(2329), - [aux_sym_cmd_identifier_token5] = ACTIONS(2329), - [aux_sym_cmd_identifier_token6] = ACTIONS(2329), - [aux_sym_cmd_identifier_token7] = ACTIONS(2329), - [aux_sym_cmd_identifier_token8] = ACTIONS(2329), - [aux_sym_cmd_identifier_token9] = ACTIONS(2329), - [aux_sym_cmd_identifier_token10] = ACTIONS(2329), - [aux_sym_cmd_identifier_token11] = ACTIONS(2329), - [aux_sym_cmd_identifier_token12] = ACTIONS(2329), - [aux_sym_cmd_identifier_token13] = ACTIONS(2329), - [aux_sym_cmd_identifier_token14] = ACTIONS(2329), - [aux_sym_cmd_identifier_token15] = ACTIONS(2329), - [aux_sym_cmd_identifier_token16] = ACTIONS(2329), - [aux_sym_cmd_identifier_token17] = ACTIONS(2329), - [aux_sym_cmd_identifier_token18] = ACTIONS(2329), - [aux_sym_cmd_identifier_token19] = ACTIONS(2329), - [aux_sym_cmd_identifier_token20] = ACTIONS(2329), - [aux_sym_cmd_identifier_token21] = ACTIONS(2329), - [aux_sym_cmd_identifier_token22] = ACTIONS(2329), - [aux_sym_cmd_identifier_token23] = ACTIONS(2329), - [aux_sym_cmd_identifier_token24] = ACTIONS(2329), - [aux_sym_cmd_identifier_token25] = ACTIONS(2329), - [aux_sym_cmd_identifier_token26] = ACTIONS(2329), - [aux_sym_cmd_identifier_token27] = ACTIONS(2329), - [aux_sym_cmd_identifier_token28] = ACTIONS(2329), - [aux_sym_cmd_identifier_token29] = ACTIONS(2329), - [aux_sym_cmd_identifier_token30] = ACTIONS(2329), - [aux_sym_cmd_identifier_token31] = ACTIONS(2329), - [aux_sym_cmd_identifier_token32] = ACTIONS(2329), - [aux_sym_cmd_identifier_token33] = ACTIONS(2329), - [aux_sym_cmd_identifier_token34] = ACTIONS(2329), - [aux_sym_cmd_identifier_token35] = ACTIONS(2329), - [aux_sym_cmd_identifier_token36] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [anon_sym_null] = ACTIONS(2331), - [aux_sym_cmd_identifier_token38] = ACTIONS(2329), - [aux_sym_cmd_identifier_token39] = ACTIONS(2331), - [aux_sym_cmd_identifier_token40] = ACTIONS(2331), - [anon_sym_def] = ACTIONS(2329), - [anon_sym_export_DASHenv] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_error] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2329), - [anon_sym_loop] = ACTIONS(2329), - [anon_sym_make] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_source] = ACTIONS(2329), - [anon_sym_source_DASHenv] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_hide] = ACTIONS(2329), - [anon_sym_hide_DASHenv] = ACTIONS(2329), - [anon_sym_overlay] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_as] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2331), - [aux_sym__val_number_decimal_token1] = ACTIONS(2329), - [aux_sym__val_number_decimal_token2] = ACTIONS(2331), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(2331), - [aux_sym__val_number_token2] = ACTIONS(2331), - [aux_sym__val_number_token3] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [sym__str_single_quotes] = ACTIONS(2331), - [sym__str_back_ticks] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(247), - }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [anon_sym_null] = ACTIONS(1879), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1879), - [aux_sym_cmd_identifier_token40] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1879), - [aux_sym__val_number_decimal_token4] = ACTIONS(1879), - [aux_sym__val_number_token1] = ACTIONS(1879), - [aux_sym__val_number_token2] = ACTIONS(1879), - [aux_sym__val_number_token3] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [sym__str_single_quotes] = ACTIONS(1879), - [sym__str_back_ticks] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(3), - }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_list] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_new] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), - }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2469), - [aux_sym_cmd_identifier_token3] = ACTIONS(2469), - [aux_sym_cmd_identifier_token4] = ACTIONS(2469), - [aux_sym_cmd_identifier_token5] = ACTIONS(2469), - [aux_sym_cmd_identifier_token6] = ACTIONS(2469), - [aux_sym_cmd_identifier_token7] = ACTIONS(2469), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2469), - [aux_sym_cmd_identifier_token11] = ACTIONS(2469), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2469), - [aux_sym_cmd_identifier_token17] = ACTIONS(2469), - [aux_sym_cmd_identifier_token18] = ACTIONS(2469), - [aux_sym_cmd_identifier_token19] = ACTIONS(2469), - [aux_sym_cmd_identifier_token20] = ACTIONS(2469), - [aux_sym_cmd_identifier_token21] = ACTIONS(2469), - [aux_sym_cmd_identifier_token22] = ACTIONS(2469), - [aux_sym_cmd_identifier_token23] = ACTIONS(2469), - [aux_sym_cmd_identifier_token24] = ACTIONS(2469), - [aux_sym_cmd_identifier_token25] = ACTIONS(2469), - [aux_sym_cmd_identifier_token26] = ACTIONS(2469), - [aux_sym_cmd_identifier_token27] = ACTIONS(2469), - [aux_sym_cmd_identifier_token28] = ACTIONS(2469), - [aux_sym_cmd_identifier_token29] = ACTIONS(2469), - [aux_sym_cmd_identifier_token30] = ACTIONS(2469), - [aux_sym_cmd_identifier_token31] = ACTIONS(2469), - [aux_sym_cmd_identifier_token32] = ACTIONS(2469), - [aux_sym_cmd_identifier_token33] = ACTIONS(2469), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2469), - [aux_sym_cmd_identifier_token36] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [anon_sym_null] = ACTIONS(2471), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2471), - [aux_sym_cmd_identifier_token40] = ACTIONS(2471), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2471), - [aux_sym__val_number_decimal_token3] = ACTIONS(2471), - [aux_sym__val_number_decimal_token4] = ACTIONS(2471), - [aux_sym__val_number_token1] = ACTIONS(2471), - [aux_sym__val_number_token2] = ACTIONS(2471), - [aux_sym__val_number_token3] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym__str_single_quotes] = ACTIONS(2471), - [sym__str_back_ticks] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(247), - }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(2388), - [anon_sym_alias] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2388), - [anon_sym_let_DASHenv] = ACTIONS(2388), - [anon_sym_mut] = ACTIONS(2388), - [anon_sym_const] = ACTIONS(2388), - [aux_sym_cmd_identifier_token1] = ACTIONS(2388), - [aux_sym_cmd_identifier_token2] = ACTIONS(2388), - [aux_sym_cmd_identifier_token3] = ACTIONS(2388), - [aux_sym_cmd_identifier_token4] = ACTIONS(2388), - [aux_sym_cmd_identifier_token5] = ACTIONS(2388), - [aux_sym_cmd_identifier_token6] = ACTIONS(2388), - [aux_sym_cmd_identifier_token7] = ACTIONS(2388), - [aux_sym_cmd_identifier_token8] = ACTIONS(2388), - [aux_sym_cmd_identifier_token9] = ACTIONS(2388), - [aux_sym_cmd_identifier_token10] = ACTIONS(2388), - [aux_sym_cmd_identifier_token11] = ACTIONS(2388), - [aux_sym_cmd_identifier_token12] = ACTIONS(2388), - [aux_sym_cmd_identifier_token13] = ACTIONS(2388), - [aux_sym_cmd_identifier_token14] = ACTIONS(2388), - [aux_sym_cmd_identifier_token15] = ACTIONS(2388), - [aux_sym_cmd_identifier_token16] = ACTIONS(2388), - [aux_sym_cmd_identifier_token17] = ACTIONS(2388), - [aux_sym_cmd_identifier_token18] = ACTIONS(2388), - [aux_sym_cmd_identifier_token19] = ACTIONS(2388), - [aux_sym_cmd_identifier_token20] = ACTIONS(2388), - [aux_sym_cmd_identifier_token21] = ACTIONS(2388), - [aux_sym_cmd_identifier_token22] = ACTIONS(2388), - [aux_sym_cmd_identifier_token23] = ACTIONS(2388), - [aux_sym_cmd_identifier_token24] = ACTIONS(2388), - [aux_sym_cmd_identifier_token25] = ACTIONS(2388), - [aux_sym_cmd_identifier_token26] = ACTIONS(2388), - [aux_sym_cmd_identifier_token27] = ACTIONS(2388), - [aux_sym_cmd_identifier_token28] = ACTIONS(2388), - [aux_sym_cmd_identifier_token29] = ACTIONS(2388), - [aux_sym_cmd_identifier_token30] = ACTIONS(2388), - [aux_sym_cmd_identifier_token31] = ACTIONS(2388), - [aux_sym_cmd_identifier_token32] = ACTIONS(2388), - [aux_sym_cmd_identifier_token33] = ACTIONS(2388), - [aux_sym_cmd_identifier_token34] = ACTIONS(2388), - [aux_sym_cmd_identifier_token35] = ACTIONS(2388), - [aux_sym_cmd_identifier_token36] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_null] = ACTIONS(2390), - [aux_sym_cmd_identifier_token38] = ACTIONS(2388), - [aux_sym_cmd_identifier_token39] = ACTIONS(2390), - [aux_sym_cmd_identifier_token40] = ACTIONS(2390), - [anon_sym_def] = ACTIONS(2388), - [anon_sym_export_DASHenv] = ACTIONS(2388), - [anon_sym_extern] = ACTIONS(2388), - [anon_sym_module] = ACTIONS(2388), - [anon_sym_use] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_DOLLAR] = ACTIONS(2390), - [anon_sym_error] = ACTIONS(2388), - [anon_sym_list] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2388), - [anon_sym_for] = ACTIONS(2388), - [anon_sym_in] = ACTIONS(2388), - [anon_sym_loop] = ACTIONS(2388), - [anon_sym_make] = ACTIONS(2388), - [anon_sym_while] = ACTIONS(2388), - [anon_sym_do] = ACTIONS(2388), - [anon_sym_if] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2388), - [anon_sym_match] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2388), - [anon_sym_catch] = ACTIONS(2388), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_source] = ACTIONS(2388), - [anon_sym_source_DASHenv] = ACTIONS(2388), - [anon_sym_register] = ACTIONS(2388), - [anon_sym_hide] = ACTIONS(2388), - [anon_sym_hide_DASHenv] = ACTIONS(2388), - [anon_sym_overlay] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2388), - [anon_sym_as] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), - [aux_sym__val_number_decimal_token1] = ACTIONS(2388), - [aux_sym__val_number_decimal_token2] = ACTIONS(2390), - [aux_sym__val_number_decimal_token3] = ACTIONS(2390), - [aux_sym__val_number_decimal_token4] = ACTIONS(2390), - [aux_sym__val_number_token1] = ACTIONS(2390), - [aux_sym__val_number_token2] = ACTIONS(2390), - [aux_sym__val_number_token3] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2390), - [sym__str_single_quotes] = ACTIONS(2390), - [sym__str_back_ticks] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(247), - }, - [593] = { - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2337), - [aux_sym_cmd_identifier_token3] = ACTIONS(2337), - [aux_sym_cmd_identifier_token4] = ACTIONS(2337), - [aux_sym_cmd_identifier_token5] = ACTIONS(2337), - [aux_sym_cmd_identifier_token6] = ACTIONS(2337), - [aux_sym_cmd_identifier_token7] = ACTIONS(2337), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2337), - [aux_sym_cmd_identifier_token17] = ACTIONS(2337), - [aux_sym_cmd_identifier_token18] = ACTIONS(2337), - [aux_sym_cmd_identifier_token19] = ACTIONS(2337), - [aux_sym_cmd_identifier_token20] = ACTIONS(2337), - [aux_sym_cmd_identifier_token21] = ACTIONS(2337), - [aux_sym_cmd_identifier_token22] = ACTIONS(2337), - [aux_sym_cmd_identifier_token23] = ACTIONS(2337), - [aux_sym_cmd_identifier_token24] = ACTIONS(2337), - [aux_sym_cmd_identifier_token25] = ACTIONS(2337), - [aux_sym_cmd_identifier_token26] = ACTIONS(2337), - [aux_sym_cmd_identifier_token27] = ACTIONS(2337), - [aux_sym_cmd_identifier_token28] = ACTIONS(2337), - [aux_sym_cmd_identifier_token29] = ACTIONS(2337), - [aux_sym_cmd_identifier_token30] = ACTIONS(2337), - [aux_sym_cmd_identifier_token31] = ACTIONS(2337), - [aux_sym_cmd_identifier_token32] = ACTIONS(2337), - [aux_sym_cmd_identifier_token33] = ACTIONS(2337), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2337), - [aux_sym_cmd_identifier_token36] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2519), - [aux_sym_cmd_identifier_token40] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2519), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2519), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2519), - [aux_sym__val_number_decimal_token3] = ACTIONS(2519), - [aux_sym__val_number_decimal_token4] = ACTIONS(2519), - [aux_sym__val_number_token1] = ACTIONS(2519), - [aux_sym__val_number_token2] = ACTIONS(2519), - [aux_sym__val_number_token3] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [sym__str_single_quotes] = ACTIONS(2519), - [sym__str_back_ticks] = ACTIONS(2519), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(247), - }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [aux_sym_cmd_identifier_token1] = ACTIONS(2443), - [aux_sym_cmd_identifier_token2] = ACTIONS(2443), - [aux_sym_cmd_identifier_token3] = ACTIONS(2443), - [aux_sym_cmd_identifier_token4] = ACTIONS(2443), - [aux_sym_cmd_identifier_token5] = ACTIONS(2443), - [aux_sym_cmd_identifier_token6] = ACTIONS(2443), - [aux_sym_cmd_identifier_token7] = ACTIONS(2443), - [aux_sym_cmd_identifier_token8] = ACTIONS(2443), - [aux_sym_cmd_identifier_token9] = ACTIONS(2443), - [aux_sym_cmd_identifier_token10] = ACTIONS(2443), - [aux_sym_cmd_identifier_token11] = ACTIONS(2443), - [aux_sym_cmd_identifier_token12] = ACTIONS(2443), - [aux_sym_cmd_identifier_token13] = ACTIONS(2443), - [aux_sym_cmd_identifier_token14] = ACTIONS(2443), - [aux_sym_cmd_identifier_token15] = ACTIONS(2443), - [aux_sym_cmd_identifier_token16] = ACTIONS(2443), - [aux_sym_cmd_identifier_token17] = ACTIONS(2443), - [aux_sym_cmd_identifier_token18] = ACTIONS(2443), - [aux_sym_cmd_identifier_token19] = ACTIONS(2443), - [aux_sym_cmd_identifier_token20] = ACTIONS(2443), - [aux_sym_cmd_identifier_token21] = ACTIONS(2443), - [aux_sym_cmd_identifier_token22] = ACTIONS(2443), - [aux_sym_cmd_identifier_token23] = ACTIONS(2443), - [aux_sym_cmd_identifier_token24] = ACTIONS(2443), - [aux_sym_cmd_identifier_token25] = ACTIONS(2443), - [aux_sym_cmd_identifier_token26] = ACTIONS(2443), - [aux_sym_cmd_identifier_token27] = ACTIONS(2443), - [aux_sym_cmd_identifier_token28] = ACTIONS(2443), - [aux_sym_cmd_identifier_token29] = ACTIONS(2443), - [aux_sym_cmd_identifier_token30] = ACTIONS(2443), - [aux_sym_cmd_identifier_token31] = ACTIONS(2443), - [aux_sym_cmd_identifier_token32] = ACTIONS(2443), - [aux_sym_cmd_identifier_token33] = ACTIONS(2443), - [aux_sym_cmd_identifier_token34] = ACTIONS(2443), - [aux_sym_cmd_identifier_token35] = ACTIONS(2443), - [aux_sym_cmd_identifier_token36] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [aux_sym_cmd_identifier_token38] = ACTIONS(2443), - [aux_sym_cmd_identifier_token39] = ACTIONS(2445), - [aux_sym_cmd_identifier_token40] = ACTIONS(2445), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_list] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_make] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_catch] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), - [aux_sym__val_number_decimal_token1] = ACTIONS(2443), - [aux_sym__val_number_decimal_token2] = ACTIONS(2445), - [aux_sym__val_number_decimal_token3] = ACTIONS(2445), - [aux_sym__val_number_decimal_token4] = ACTIONS(2445), - [aux_sym__val_number_token1] = ACTIONS(2445), - [aux_sym__val_number_token2] = ACTIONS(2445), - [aux_sym__val_number_token3] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym__str_single_quotes] = ACTIONS(2445), - [sym__str_back_ticks] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(247), - }, - [595] = { - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2021), - [aux_sym_cmd_identifier_token40] = ACTIONS(2021), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token3] = ACTIONS(2021), - [aux_sym__val_number_decimal_token4] = ACTIONS(2021), - [aux_sym__val_number_token1] = ACTIONS(2021), - [aux_sym__val_number_token2] = ACTIONS(2021), - [aux_sym__val_number_token3] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(247), - }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2133), - [aux_sym_cmd_identifier_token3] = ACTIONS(2133), - [aux_sym_cmd_identifier_token4] = ACTIONS(2133), - [aux_sym_cmd_identifier_token5] = ACTIONS(2133), - [aux_sym_cmd_identifier_token6] = ACTIONS(2133), - [aux_sym_cmd_identifier_token7] = ACTIONS(2133), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2133), - [aux_sym_cmd_identifier_token11] = ACTIONS(2133), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2133), - [aux_sym_cmd_identifier_token17] = ACTIONS(2133), - [aux_sym_cmd_identifier_token18] = ACTIONS(2133), - [aux_sym_cmd_identifier_token19] = ACTIONS(2133), - [aux_sym_cmd_identifier_token20] = ACTIONS(2133), - [aux_sym_cmd_identifier_token21] = ACTIONS(2133), - [aux_sym_cmd_identifier_token22] = ACTIONS(2133), - [aux_sym_cmd_identifier_token23] = ACTIONS(2133), - [aux_sym_cmd_identifier_token24] = ACTIONS(2133), - [aux_sym_cmd_identifier_token25] = ACTIONS(2133), - [aux_sym_cmd_identifier_token26] = ACTIONS(2133), - [aux_sym_cmd_identifier_token27] = ACTIONS(2133), - [aux_sym_cmd_identifier_token28] = ACTIONS(2133), - [aux_sym_cmd_identifier_token29] = ACTIONS(2133), - [aux_sym_cmd_identifier_token30] = ACTIONS(2133), - [aux_sym_cmd_identifier_token31] = ACTIONS(2133), - [aux_sym_cmd_identifier_token32] = ACTIONS(2133), - [aux_sym_cmd_identifier_token33] = ACTIONS(2133), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2133), - [aux_sym_cmd_identifier_token36] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [anon_sym_null] = ACTIONS(2135), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2135), - [aux_sym_cmd_identifier_token40] = ACTIONS(2135), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2135), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token3] = ACTIONS(2135), - [aux_sym__val_number_decimal_token4] = ACTIONS(2135), - [aux_sym__val_number_token1] = ACTIONS(2135), - [aux_sym__val_number_token2] = ACTIONS(2135), - [aux_sym__val_number_token3] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym__str_single_quotes] = ACTIONS(2135), - [sym__str_back_ticks] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(247), - }, - [597] = { - [sym_comment] = STATE(597), + [602] = { + [sym_comment] = STATE(602), [anon_sym_export] = ACTIONS(2485), [anon_sym_alias] = ACTIONS(2485), [anon_sym_let] = ACTIONS(2485), @@ -139672,21 +141880,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token32] = ACTIONS(2485), [aux_sym_cmd_identifier_token33] = ACTIONS(2485), [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2485), - [aux_sym_cmd_identifier_token36] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2487), - [aux_sym_cmd_identifier_token40] = ACTIONS(2487), + [aux_sym_cmd_identifier_token39] = ACTIONS(2485), + [aux_sym_cmd_identifier_token40] = ACTIONS(2485), [anon_sym_def] = ACTIONS(2485), [anon_sym_export_DASHenv] = ACTIONS(2485), [anon_sym_extern] = ACTIONS(2485), [anon_sym_module] = ACTIONS(2485), [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(2485), [anon_sym_error] = ACTIONS(2485), [anon_sym_list] = ACTIONS(2485), [anon_sym_DASH] = ACTIONS(2485), @@ -139701,7 +141909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2485), [anon_sym_else] = ACTIONS(2485), [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2485), [anon_sym_try] = ACTIONS(2485), [anon_sym_catch] = ACTIONS(2485), [anon_sym_return] = ACTIONS(2485), @@ -139713,321 +141921,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2485), [anon_sym_new] = ACTIONS(2485), [anon_sym_as] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [sym__str_single_quotes] = ACTIONS(2487), - [sym__str_back_ticks] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2485), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym__str_single_quotes] = ACTIONS(2485), + [sym__str_back_ticks] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), + [sym__entry_separator] = ACTIONS(2487), [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(247), - }, - [598] = { - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(1345), - [anon_sym_alias] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(1345), - [anon_sym_let_DASHenv] = ACTIONS(1345), - [anon_sym_mut] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [aux_sym_cmd_identifier_token1] = ACTIONS(1345), - [aux_sym_cmd_identifier_token2] = ACTIONS(1345), - [aux_sym_cmd_identifier_token3] = ACTIONS(1345), - [aux_sym_cmd_identifier_token4] = ACTIONS(1345), - [aux_sym_cmd_identifier_token5] = ACTIONS(1345), - [aux_sym_cmd_identifier_token6] = ACTIONS(1345), - [aux_sym_cmd_identifier_token7] = ACTIONS(1345), - [aux_sym_cmd_identifier_token8] = ACTIONS(1345), - [aux_sym_cmd_identifier_token9] = ACTIONS(1345), - [aux_sym_cmd_identifier_token10] = ACTIONS(1345), - [aux_sym_cmd_identifier_token11] = ACTIONS(1345), - [aux_sym_cmd_identifier_token12] = ACTIONS(1345), - [aux_sym_cmd_identifier_token13] = ACTIONS(1345), - [aux_sym_cmd_identifier_token14] = ACTIONS(1345), - [aux_sym_cmd_identifier_token15] = ACTIONS(1345), - [aux_sym_cmd_identifier_token16] = ACTIONS(1345), - [aux_sym_cmd_identifier_token17] = ACTIONS(1345), - [aux_sym_cmd_identifier_token18] = ACTIONS(1345), - [aux_sym_cmd_identifier_token19] = ACTIONS(1345), - [aux_sym_cmd_identifier_token20] = ACTIONS(1345), - [aux_sym_cmd_identifier_token21] = ACTIONS(1345), - [aux_sym_cmd_identifier_token22] = ACTIONS(1345), - [aux_sym_cmd_identifier_token23] = ACTIONS(1345), - [aux_sym_cmd_identifier_token24] = ACTIONS(1345), - [aux_sym_cmd_identifier_token25] = ACTIONS(1345), - [aux_sym_cmd_identifier_token26] = ACTIONS(1345), - [aux_sym_cmd_identifier_token27] = ACTIONS(1345), - [aux_sym_cmd_identifier_token28] = ACTIONS(1345), - [aux_sym_cmd_identifier_token29] = ACTIONS(1345), - [aux_sym_cmd_identifier_token30] = ACTIONS(1345), - [aux_sym_cmd_identifier_token31] = ACTIONS(1345), - [aux_sym_cmd_identifier_token32] = ACTIONS(1345), - [aux_sym_cmd_identifier_token33] = ACTIONS(1345), - [aux_sym_cmd_identifier_token34] = ACTIONS(1345), - [aux_sym_cmd_identifier_token35] = ACTIONS(1345), - [aux_sym_cmd_identifier_token36] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [anon_sym_null] = ACTIONS(1349), - [aux_sym_cmd_identifier_token38] = ACTIONS(1345), - [aux_sym_cmd_identifier_token39] = ACTIONS(1349), - [aux_sym_cmd_identifier_token40] = ACTIONS(1349), - [sym__newline] = ACTIONS(1349), - [anon_sym_def] = ACTIONS(1345), - [anon_sym_export_DASHenv] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_module] = ACTIONS(1345), - [anon_sym_use] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_DOLLAR] = ACTIONS(1349), - [anon_sym_error] = ACTIONS(1345), - [anon_sym_list] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_in] = ACTIONS(1345), - [anon_sym_loop] = ACTIONS(1345), - [anon_sym_make] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_try] = ACTIONS(1345), - [anon_sym_catch] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_source] = ACTIONS(1345), - [anon_sym_source_DASHenv] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_hide] = ACTIONS(1345), - [anon_sym_hide_DASHenv] = ACTIONS(1345), - [anon_sym_overlay] = ACTIONS(1345), - [anon_sym_new] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1349), - [aux_sym__val_number_decimal_token1] = ACTIONS(1345), - [aux_sym__val_number_decimal_token2] = ACTIONS(1349), - [aux_sym__val_number_decimal_token3] = ACTIONS(1349), - [aux_sym__val_number_decimal_token4] = ACTIONS(1349), - [aux_sym__val_number_token1] = ACTIONS(1349), - [aux_sym__val_number_token2] = ACTIONS(1349), - [aux_sym__val_number_token3] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym__str_single_quotes] = ACTIONS(1349), - [sym__str_back_ticks] = ACTIONS(1349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), }, - [599] = { - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(2392), - [anon_sym_alias] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_let_DASHenv] = ACTIONS(2392), - [anon_sym_mut] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [aux_sym_cmd_identifier_token1] = ACTIONS(2392), - [aux_sym_cmd_identifier_token2] = ACTIONS(2392), - [aux_sym_cmd_identifier_token3] = ACTIONS(2392), - [aux_sym_cmd_identifier_token4] = ACTIONS(2392), - [aux_sym_cmd_identifier_token5] = ACTIONS(2392), - [aux_sym_cmd_identifier_token6] = ACTIONS(2392), - [aux_sym_cmd_identifier_token7] = ACTIONS(2392), - [aux_sym_cmd_identifier_token8] = ACTIONS(2392), - [aux_sym_cmd_identifier_token9] = ACTIONS(2392), - [aux_sym_cmd_identifier_token10] = ACTIONS(2392), - [aux_sym_cmd_identifier_token11] = ACTIONS(2392), - [aux_sym_cmd_identifier_token12] = ACTIONS(2392), - [aux_sym_cmd_identifier_token13] = ACTIONS(2392), - [aux_sym_cmd_identifier_token14] = ACTIONS(2392), - [aux_sym_cmd_identifier_token15] = ACTIONS(2392), - [aux_sym_cmd_identifier_token16] = ACTIONS(2392), - [aux_sym_cmd_identifier_token17] = ACTIONS(2392), - [aux_sym_cmd_identifier_token18] = ACTIONS(2392), - [aux_sym_cmd_identifier_token19] = ACTIONS(2392), - [aux_sym_cmd_identifier_token20] = ACTIONS(2392), - [aux_sym_cmd_identifier_token21] = ACTIONS(2392), - [aux_sym_cmd_identifier_token22] = ACTIONS(2392), - [aux_sym_cmd_identifier_token23] = ACTIONS(2392), - [aux_sym_cmd_identifier_token24] = ACTIONS(2392), - [aux_sym_cmd_identifier_token25] = ACTIONS(2392), - [aux_sym_cmd_identifier_token26] = ACTIONS(2392), - [aux_sym_cmd_identifier_token27] = ACTIONS(2392), - [aux_sym_cmd_identifier_token28] = ACTIONS(2392), - [aux_sym_cmd_identifier_token29] = ACTIONS(2392), - [aux_sym_cmd_identifier_token30] = ACTIONS(2392), - [aux_sym_cmd_identifier_token31] = ACTIONS(2392), - [aux_sym_cmd_identifier_token32] = ACTIONS(2392), - [aux_sym_cmd_identifier_token33] = ACTIONS(2392), - [aux_sym_cmd_identifier_token34] = ACTIONS(2392), - [aux_sym_cmd_identifier_token35] = ACTIONS(2392), - [aux_sym_cmd_identifier_token36] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_null] = ACTIONS(2394), - [aux_sym_cmd_identifier_token38] = ACTIONS(2392), - [aux_sym_cmd_identifier_token39] = ACTIONS(2394), - [aux_sym_cmd_identifier_token40] = ACTIONS(2394), - [anon_sym_def] = ACTIONS(2392), - [anon_sym_export_DASHenv] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_module] = ACTIONS(2392), - [anon_sym_use] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_DOLLAR] = ACTIONS(2394), - [anon_sym_error] = ACTIONS(2392), - [anon_sym_list] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_in] = ACTIONS(2392), - [anon_sym_loop] = ACTIONS(2392), - [anon_sym_make] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_catch] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_source] = ACTIONS(2392), - [anon_sym_source_DASHenv] = ACTIONS(2392), - [anon_sym_register] = ACTIONS(2392), - [anon_sym_hide] = ACTIONS(2392), - [anon_sym_hide_DASHenv] = ACTIONS(2392), - [anon_sym_overlay] = ACTIONS(2392), - [anon_sym_new] = ACTIONS(2392), - [anon_sym_as] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), - [aux_sym__val_number_decimal_token1] = ACTIONS(2392), - [aux_sym__val_number_decimal_token2] = ACTIONS(2394), - [aux_sym__val_number_decimal_token3] = ACTIONS(2394), - [aux_sym__val_number_decimal_token4] = ACTIONS(2394), - [aux_sym__val_number_token1] = ACTIONS(2394), - [aux_sym__val_number_token2] = ACTIONS(2394), - [aux_sym__val_number_token3] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [sym__str_single_quotes] = ACTIONS(2394), - [sym__str_back_ticks] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(247), + [603] = { + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2489), + [aux_sym_cmd_identifier_token40] = ACTIONS(2489), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2489), + [aux_sym__val_number_decimal_token3] = ACTIONS(2489), + [aux_sym__val_number_decimal_token4] = ACTIONS(2489), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym__str_single_quotes] = ACTIONS(2489), + [sym__str_back_ticks] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), + [sym__entry_separator] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(3), }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(2396), - [anon_sym_alias] = ACTIONS(2396), - [anon_sym_let] = ACTIONS(2396), - [anon_sym_let_DASHenv] = ACTIONS(2396), - [anon_sym_mut] = ACTIONS(2396), - [anon_sym_const] = ACTIONS(2396), - [aux_sym_cmd_identifier_token1] = ACTIONS(2396), - [aux_sym_cmd_identifier_token2] = ACTIONS(2396), - [aux_sym_cmd_identifier_token3] = ACTIONS(2396), - [aux_sym_cmd_identifier_token4] = ACTIONS(2396), - [aux_sym_cmd_identifier_token5] = ACTIONS(2396), - [aux_sym_cmd_identifier_token6] = ACTIONS(2396), - [aux_sym_cmd_identifier_token7] = ACTIONS(2396), - [aux_sym_cmd_identifier_token8] = ACTIONS(2396), - [aux_sym_cmd_identifier_token9] = ACTIONS(2396), - [aux_sym_cmd_identifier_token10] = ACTIONS(2396), - [aux_sym_cmd_identifier_token11] = ACTIONS(2396), - [aux_sym_cmd_identifier_token12] = ACTIONS(2396), - [aux_sym_cmd_identifier_token13] = ACTIONS(2396), - [aux_sym_cmd_identifier_token14] = ACTIONS(2396), - [aux_sym_cmd_identifier_token15] = ACTIONS(2396), - [aux_sym_cmd_identifier_token16] = ACTIONS(2396), - [aux_sym_cmd_identifier_token17] = ACTIONS(2396), - [aux_sym_cmd_identifier_token18] = ACTIONS(2396), - [aux_sym_cmd_identifier_token19] = ACTIONS(2396), - [aux_sym_cmd_identifier_token20] = ACTIONS(2396), - [aux_sym_cmd_identifier_token21] = ACTIONS(2396), - [aux_sym_cmd_identifier_token22] = ACTIONS(2396), - [aux_sym_cmd_identifier_token23] = ACTIONS(2396), - [aux_sym_cmd_identifier_token24] = ACTIONS(2396), - [aux_sym_cmd_identifier_token25] = ACTIONS(2396), - [aux_sym_cmd_identifier_token26] = ACTIONS(2396), - [aux_sym_cmd_identifier_token27] = ACTIONS(2396), - [aux_sym_cmd_identifier_token28] = ACTIONS(2396), - [aux_sym_cmd_identifier_token29] = ACTIONS(2396), - [aux_sym_cmd_identifier_token30] = ACTIONS(2396), - [aux_sym_cmd_identifier_token31] = ACTIONS(2396), - [aux_sym_cmd_identifier_token32] = ACTIONS(2396), - [aux_sym_cmd_identifier_token33] = ACTIONS(2396), - [aux_sym_cmd_identifier_token34] = ACTIONS(2396), - [aux_sym_cmd_identifier_token35] = ACTIONS(2396), - [aux_sym_cmd_identifier_token36] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2398), - [aux_sym_cmd_identifier_token38] = ACTIONS(2396), - [aux_sym_cmd_identifier_token39] = ACTIONS(2398), - [aux_sym_cmd_identifier_token40] = ACTIONS(2398), - [anon_sym_def] = ACTIONS(2396), - [anon_sym_export_DASHenv] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_module] = ACTIONS(2396), - [anon_sym_use] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2396), - [anon_sym_list] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_loop] = ACTIONS(2396), - [anon_sym_make] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_do] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2396), - [anon_sym_match] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2396), - [anon_sym_catch] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_source] = ACTIONS(2396), - [anon_sym_source_DASHenv] = ACTIONS(2396), - [anon_sym_register] = ACTIONS(2396), - [anon_sym_hide] = ACTIONS(2396), - [anon_sym_hide_DASHenv] = ACTIONS(2396), - [anon_sym_overlay] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2396), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), - [aux_sym__val_number_decimal_token1] = ACTIONS(2396), - [aux_sym__val_number_decimal_token2] = ACTIONS(2398), - [aux_sym__val_number_decimal_token3] = ACTIONS(2398), - [aux_sym__val_number_decimal_token4] = ACTIONS(2398), - [aux_sym__val_number_token1] = ACTIONS(2398), - [aux_sym__val_number_token2] = ACTIONS(2398), - [aux_sym__val_number_token3] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [sym__str_single_quotes] = ACTIONS(2398), - [sym__str_back_ticks] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(247), + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2493), + [anon_sym_alias] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_let_DASHenv] = ACTIONS(2493), + [anon_sym_mut] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [aux_sym_cmd_identifier_token1] = ACTIONS(2493), + [aux_sym_cmd_identifier_token2] = ACTIONS(2493), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [aux_sym_cmd_identifier_token6] = ACTIONS(2493), + [aux_sym_cmd_identifier_token7] = ACTIONS(2493), + [aux_sym_cmd_identifier_token8] = ACTIONS(2493), + [aux_sym_cmd_identifier_token9] = ACTIONS(2493), + [aux_sym_cmd_identifier_token10] = ACTIONS(2493), + [aux_sym_cmd_identifier_token11] = ACTIONS(2493), + [aux_sym_cmd_identifier_token12] = ACTIONS(2493), + [aux_sym_cmd_identifier_token13] = ACTIONS(2493), + [aux_sym_cmd_identifier_token14] = ACTIONS(2493), + [aux_sym_cmd_identifier_token15] = ACTIONS(2493), + [aux_sym_cmd_identifier_token16] = ACTIONS(2493), + [aux_sym_cmd_identifier_token17] = ACTIONS(2493), + [aux_sym_cmd_identifier_token18] = ACTIONS(2493), + [aux_sym_cmd_identifier_token19] = ACTIONS(2493), + [aux_sym_cmd_identifier_token20] = ACTIONS(2493), + [aux_sym_cmd_identifier_token21] = ACTIONS(2493), + [aux_sym_cmd_identifier_token22] = ACTIONS(2493), + [aux_sym_cmd_identifier_token23] = ACTIONS(2493), + [aux_sym_cmd_identifier_token24] = ACTIONS(2493), + [aux_sym_cmd_identifier_token25] = ACTIONS(2493), + [aux_sym_cmd_identifier_token26] = ACTIONS(2493), + [aux_sym_cmd_identifier_token27] = ACTIONS(2493), + [aux_sym_cmd_identifier_token28] = ACTIONS(2493), + [aux_sym_cmd_identifier_token29] = ACTIONS(2493), + [aux_sym_cmd_identifier_token30] = ACTIONS(2493), + [aux_sym_cmd_identifier_token31] = ACTIONS(2493), + [aux_sym_cmd_identifier_token32] = ACTIONS(2493), + [aux_sym_cmd_identifier_token33] = ACTIONS(2493), + [aux_sym_cmd_identifier_token34] = ACTIONS(2493), + [aux_sym_cmd_identifier_token35] = ACTIONS(2493), + [aux_sym_cmd_identifier_token36] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [aux_sym_cmd_identifier_token38] = ACTIONS(2493), + [aux_sym_cmd_identifier_token39] = ACTIONS(2493), + [aux_sym_cmd_identifier_token40] = ACTIONS(2493), + [anon_sym_def] = ACTIONS(2493), + [anon_sym_export_DASHenv] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_module] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_DOLLAR] = ACTIONS(2493), + [anon_sym_error] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_make] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_catch] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_source] = ACTIONS(2493), + [anon_sym_source_DASHenv] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_hide] = ACTIONS(2493), + [anon_sym_hide_DASHenv] = ACTIONS(2493), + [anon_sym_overlay] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_as] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), + [aux_sym__val_number_decimal_token1] = ACTIONS(2493), + [aux_sym__val_number_decimal_token2] = ACTIONS(2493), + [aux_sym__val_number_decimal_token3] = ACTIONS(2493), + [aux_sym__val_number_decimal_token4] = ACTIONS(2493), + [aux_sym__val_number_token1] = ACTIONS(2493), + [aux_sym__val_number_token2] = ACTIONS(2493), + [aux_sym__val_number_token3] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym__str_single_quotes] = ACTIONS(2493), + [sym__str_back_ticks] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), + [sym__entry_separator] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(3), }, - [601] = { - [sym_comment] = STATE(601), + [605] = { + [sym_comment] = STATE(605), [anon_sym_export] = ACTIONS(2497), [anon_sym_alias] = ACTIONS(2497), [anon_sym_let] = ACTIONS(2497), @@ -140070,19 +142182,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2497), [aux_sym_cmd_identifier_token35] = ACTIONS(2497), [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2499), - [aux_sym_cmd_identifier_token40] = ACTIONS(2499), + [aux_sym_cmd_identifier_token39] = ACTIONS(2497), + [aux_sym_cmd_identifier_token40] = ACTIONS(2497), [anon_sym_def] = ACTIONS(2497), [anon_sym_export_DASHenv] = ACTIONS(2497), [anon_sym_extern] = ACTIONS(2497), [anon_sym_module] = ACTIONS(2497), [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_DOLLAR] = ACTIONS(2497), [anon_sym_error] = ACTIONS(2497), [anon_sym_list] = ACTIONS(2497), [anon_sym_DASH] = ACTIONS(2497), @@ -140097,7 +142209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2497), [anon_sym_else] = ACTIONS(2497), [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2497), [anon_sym_try] = ACTIONS(2497), [anon_sym_catch] = ACTIONS(2497), [anon_sym_return] = ACTIONS(2497), @@ -140109,222 +142221,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2497), [anon_sym_new] = ACTIONS(2497), [anon_sym_as] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2499), - [aux_sym__val_number_decimal_token3] = ACTIONS(2499), - [aux_sym__val_number_decimal_token4] = ACTIONS(2499), - [aux_sym__val_number_token1] = ACTIONS(2499), - [aux_sym__val_number_token2] = ACTIONS(2499), - [aux_sym__val_number_token3] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2499), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2497), + [aux_sym__val_number_decimal_token3] = ACTIONS(2497), + [aux_sym__val_number_decimal_token4] = ACTIONS(2497), + [aux_sym__val_number_token1] = ACTIONS(2497), + [aux_sym__val_number_token2] = ACTIONS(2497), + [aux_sym__val_number_token3] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2497), + [sym__str_back_ticks] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), + [sym__entry_separator] = ACTIONS(2499), [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(247), - }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1845), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_list] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(247), - }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_alias] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_DASHenv] = ACTIONS(2355), - [anon_sym_mut] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [aux_sym_cmd_identifier_token1] = ACTIONS(2355), - [aux_sym_cmd_identifier_token2] = ACTIONS(2355), - [aux_sym_cmd_identifier_token3] = ACTIONS(2355), - [aux_sym_cmd_identifier_token4] = ACTIONS(2355), - [aux_sym_cmd_identifier_token5] = ACTIONS(2355), - [aux_sym_cmd_identifier_token6] = ACTIONS(2355), - [aux_sym_cmd_identifier_token7] = ACTIONS(2355), - [aux_sym_cmd_identifier_token8] = ACTIONS(2355), - [aux_sym_cmd_identifier_token9] = ACTIONS(2355), - [aux_sym_cmd_identifier_token10] = ACTIONS(2355), - [aux_sym_cmd_identifier_token11] = ACTIONS(2355), - [aux_sym_cmd_identifier_token12] = ACTIONS(2355), - [aux_sym_cmd_identifier_token13] = ACTIONS(2355), - [aux_sym_cmd_identifier_token14] = ACTIONS(2355), - [aux_sym_cmd_identifier_token15] = ACTIONS(2355), - [aux_sym_cmd_identifier_token16] = ACTIONS(2355), - [aux_sym_cmd_identifier_token17] = ACTIONS(2355), - [aux_sym_cmd_identifier_token18] = ACTIONS(2355), - [aux_sym_cmd_identifier_token19] = ACTIONS(2355), - [aux_sym_cmd_identifier_token20] = ACTIONS(2355), - [aux_sym_cmd_identifier_token21] = ACTIONS(2355), - [aux_sym_cmd_identifier_token22] = ACTIONS(2355), - [aux_sym_cmd_identifier_token23] = ACTIONS(2355), - [aux_sym_cmd_identifier_token24] = ACTIONS(2355), - [aux_sym_cmd_identifier_token25] = ACTIONS(2355), - [aux_sym_cmd_identifier_token26] = ACTIONS(2355), - [aux_sym_cmd_identifier_token27] = ACTIONS(2355), - [aux_sym_cmd_identifier_token28] = ACTIONS(2355), - [aux_sym_cmd_identifier_token29] = ACTIONS(2355), - [aux_sym_cmd_identifier_token30] = ACTIONS(2355), - [aux_sym_cmd_identifier_token31] = ACTIONS(2355), - [aux_sym_cmd_identifier_token32] = ACTIONS(2355), - [aux_sym_cmd_identifier_token33] = ACTIONS(2355), - [aux_sym_cmd_identifier_token34] = ACTIONS(2355), - [aux_sym_cmd_identifier_token35] = ACTIONS(2355), - [aux_sym_cmd_identifier_token36] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2357), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2357), - [aux_sym_cmd_identifier_token40] = ACTIONS(2357), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_export_DASHenv] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_error] = ACTIONS(2355), - [anon_sym_list] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_in] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_make] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_source] = ACTIONS(2355), - [anon_sym_source_DASHenv] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_hide_DASHenv] = ACTIONS(2355), - [anon_sym_overlay] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2357), - [aux_sym__val_number_decimal_token4] = ACTIONS(2357), - [aux_sym__val_number_token1] = ACTIONS(2357), - [aux_sym__val_number_token2] = ACTIONS(2357), - [aux_sym__val_number_token3] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym__str_single_quotes] = ACTIONS(2357), - [sym__str_back_ticks] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), }, - [604] = { - [sym_comment] = STATE(604), + [606] = { + [sym_comment] = STATE(606), [anon_sym_export] = ACTIONS(2501), [anon_sym_alias] = ACTIONS(2501), [anon_sym_let] = ACTIONS(2501), @@ -140367,19 +142282,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2501), [aux_sym_cmd_identifier_token35] = ACTIONS(2501), [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [anon_sym_null] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2503), - [aux_sym_cmd_identifier_token40] = ACTIONS(2503), + [aux_sym_cmd_identifier_token39] = ACTIONS(2501), + [aux_sym_cmd_identifier_token40] = ACTIONS(2501), [anon_sym_def] = ACTIONS(2501), [anon_sym_export_DASHenv] = ACTIONS(2501), [anon_sym_extern] = ACTIONS(2501), [anon_sym_module] = ACTIONS(2501), [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_DOLLAR] = ACTIONS(2501), [anon_sym_error] = ACTIONS(2501), [anon_sym_list] = ACTIONS(2501), [anon_sym_DASH] = ACTIONS(2501), @@ -140394,7 +142309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2501), [anon_sym_else] = ACTIONS(2501), [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2501), [anon_sym_try] = ACTIONS(2501), [anon_sym_catch] = ACTIONS(2501), [anon_sym_return] = ACTIONS(2501), @@ -140406,999 +142321,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2501), [anon_sym_new] = ACTIONS(2501), [anon_sym_as] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2503), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [aux_sym__val_number_token1] = ACTIONS(2503), - [aux_sym__val_number_token2] = ACTIONS(2503), - [aux_sym__val_number_token3] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym__str_single_quotes] = ACTIONS(2503), - [sym__str_back_ticks] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2501), + [aux_sym__val_number_decimal_token4] = ACTIONS(2501), + [aux_sym__val_number_token1] = ACTIONS(2501), + [aux_sym__val_number_token2] = ACTIONS(2501), + [aux_sym__val_number_token3] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym__str_single_quotes] = ACTIONS(2501), + [sym__str_back_ticks] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), + [sym__entry_separator] = ACTIONS(2503), [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(247), - }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2400), - [anon_sym_alias] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_let_DASHenv] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [aux_sym_cmd_identifier_token1] = ACTIONS(2400), - [aux_sym_cmd_identifier_token2] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2400), - [aux_sym_cmd_identifier_token4] = ACTIONS(2400), - [aux_sym_cmd_identifier_token5] = ACTIONS(2400), - [aux_sym_cmd_identifier_token6] = ACTIONS(2400), - [aux_sym_cmd_identifier_token7] = ACTIONS(2400), - [aux_sym_cmd_identifier_token8] = ACTIONS(2400), - [aux_sym_cmd_identifier_token9] = ACTIONS(2400), - [aux_sym_cmd_identifier_token10] = ACTIONS(2400), - [aux_sym_cmd_identifier_token11] = ACTIONS(2400), - [aux_sym_cmd_identifier_token12] = ACTIONS(2400), - [aux_sym_cmd_identifier_token13] = ACTIONS(2400), - [aux_sym_cmd_identifier_token14] = ACTIONS(2400), - [aux_sym_cmd_identifier_token15] = ACTIONS(2400), - [aux_sym_cmd_identifier_token16] = ACTIONS(2400), - [aux_sym_cmd_identifier_token17] = ACTIONS(2400), - [aux_sym_cmd_identifier_token18] = ACTIONS(2400), - [aux_sym_cmd_identifier_token19] = ACTIONS(2400), - [aux_sym_cmd_identifier_token20] = ACTIONS(2400), - [aux_sym_cmd_identifier_token21] = ACTIONS(2400), - [aux_sym_cmd_identifier_token22] = ACTIONS(2400), - [aux_sym_cmd_identifier_token23] = ACTIONS(2400), - [aux_sym_cmd_identifier_token24] = ACTIONS(2400), - [aux_sym_cmd_identifier_token25] = ACTIONS(2400), - [aux_sym_cmd_identifier_token26] = ACTIONS(2400), - [aux_sym_cmd_identifier_token27] = ACTIONS(2400), - [aux_sym_cmd_identifier_token28] = ACTIONS(2400), - [aux_sym_cmd_identifier_token29] = ACTIONS(2400), - [aux_sym_cmd_identifier_token30] = ACTIONS(2400), - [aux_sym_cmd_identifier_token31] = ACTIONS(2400), - [aux_sym_cmd_identifier_token32] = ACTIONS(2400), - [aux_sym_cmd_identifier_token33] = ACTIONS(2400), - [aux_sym_cmd_identifier_token34] = ACTIONS(2400), - [aux_sym_cmd_identifier_token35] = ACTIONS(2400), - [aux_sym_cmd_identifier_token36] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_null] = ACTIONS(2402), - [aux_sym_cmd_identifier_token38] = ACTIONS(2400), - [aux_sym_cmd_identifier_token39] = ACTIONS(2402), - [aux_sym_cmd_identifier_token40] = ACTIONS(2402), - [anon_sym_def] = ACTIONS(2400), - [anon_sym_export_DASHenv] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_use] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2400), - [anon_sym_list] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_loop] = ACTIONS(2400), - [anon_sym_make] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_catch] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_source] = ACTIONS(2400), - [anon_sym_source_DASHenv] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2400), - [anon_sym_hide] = ACTIONS(2400), - [anon_sym_hide_DASHenv] = ACTIONS(2400), - [anon_sym_overlay] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), - [aux_sym__val_number_decimal_token1] = ACTIONS(2400), - [aux_sym__val_number_decimal_token2] = ACTIONS(2402), - [aux_sym__val_number_decimal_token3] = ACTIONS(2402), - [aux_sym__val_number_decimal_token4] = ACTIONS(2402), - [aux_sym__val_number_token1] = ACTIONS(2402), - [aux_sym__val_number_token2] = ACTIONS(2402), - [aux_sym__val_number_token3] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [sym__str_single_quotes] = ACTIONS(2402), - [sym__str_back_ticks] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(247), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2404), - [anon_sym_alias] = ACTIONS(2404), - [anon_sym_let] = ACTIONS(2404), - [anon_sym_let_DASHenv] = ACTIONS(2404), - [anon_sym_mut] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [aux_sym_cmd_identifier_token1] = ACTIONS(2404), - [aux_sym_cmd_identifier_token2] = ACTIONS(2404), - [aux_sym_cmd_identifier_token3] = ACTIONS(2404), - [aux_sym_cmd_identifier_token4] = ACTIONS(2404), - [aux_sym_cmd_identifier_token5] = ACTIONS(2404), - [aux_sym_cmd_identifier_token6] = ACTIONS(2404), - [aux_sym_cmd_identifier_token7] = ACTIONS(2404), - [aux_sym_cmd_identifier_token8] = ACTIONS(2404), - [aux_sym_cmd_identifier_token9] = ACTIONS(2404), - [aux_sym_cmd_identifier_token10] = ACTIONS(2404), - [aux_sym_cmd_identifier_token11] = ACTIONS(2404), - [aux_sym_cmd_identifier_token12] = ACTIONS(2404), - [aux_sym_cmd_identifier_token13] = ACTIONS(2404), - [aux_sym_cmd_identifier_token14] = ACTIONS(2404), - [aux_sym_cmd_identifier_token15] = ACTIONS(2404), - [aux_sym_cmd_identifier_token16] = ACTIONS(2404), - [aux_sym_cmd_identifier_token17] = ACTIONS(2404), - [aux_sym_cmd_identifier_token18] = ACTIONS(2404), - [aux_sym_cmd_identifier_token19] = ACTIONS(2404), - [aux_sym_cmd_identifier_token20] = ACTIONS(2404), - [aux_sym_cmd_identifier_token21] = ACTIONS(2404), - [aux_sym_cmd_identifier_token22] = ACTIONS(2404), - [aux_sym_cmd_identifier_token23] = ACTIONS(2404), - [aux_sym_cmd_identifier_token24] = ACTIONS(2404), - [aux_sym_cmd_identifier_token25] = ACTIONS(2404), - [aux_sym_cmd_identifier_token26] = ACTIONS(2404), - [aux_sym_cmd_identifier_token27] = ACTIONS(2404), - [aux_sym_cmd_identifier_token28] = ACTIONS(2404), - [aux_sym_cmd_identifier_token29] = ACTIONS(2404), - [aux_sym_cmd_identifier_token30] = ACTIONS(2404), - [aux_sym_cmd_identifier_token31] = ACTIONS(2404), - [aux_sym_cmd_identifier_token32] = ACTIONS(2404), - [aux_sym_cmd_identifier_token33] = ACTIONS(2404), - [aux_sym_cmd_identifier_token34] = ACTIONS(2404), - [aux_sym_cmd_identifier_token35] = ACTIONS(2404), - [aux_sym_cmd_identifier_token36] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2404), - [aux_sym_cmd_identifier_token39] = ACTIONS(2406), - [aux_sym_cmd_identifier_token40] = ACTIONS(2406), - [anon_sym_def] = ACTIONS(2404), - [anon_sym_export_DASHenv] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym_module] = ACTIONS(2404), - [anon_sym_use] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_DOLLAR] = ACTIONS(2406), - [anon_sym_error] = ACTIONS(2404), - [anon_sym_list] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_loop] = ACTIONS(2404), - [anon_sym_make] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_match] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_source] = ACTIONS(2404), - [anon_sym_source_DASHenv] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_hide] = ACTIONS(2404), - [anon_sym_hide_DASHenv] = ACTIONS(2404), - [anon_sym_overlay] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), - [aux_sym__val_number_decimal_token1] = ACTIONS(2404), - [aux_sym__val_number_decimal_token2] = ACTIONS(2406), - [aux_sym__val_number_decimal_token3] = ACTIONS(2406), - [aux_sym__val_number_decimal_token4] = ACTIONS(2406), - [aux_sym__val_number_token1] = ACTIONS(2406), - [aux_sym__val_number_token2] = ACTIONS(2406), - [aux_sym__val_number_token3] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym__str_single_quotes] = ACTIONS(2406), - [sym__str_back_ticks] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), }, [607] = { [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1859), - [aux_sym_cmd_identifier_token3] = ACTIONS(1859), - [aux_sym_cmd_identifier_token4] = ACTIONS(1859), - [aux_sym_cmd_identifier_token5] = ACTIONS(1859), - [aux_sym_cmd_identifier_token6] = ACTIONS(1859), - [aux_sym_cmd_identifier_token7] = ACTIONS(1859), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1859), - [aux_sym_cmd_identifier_token11] = ACTIONS(1859), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1859), - [aux_sym_cmd_identifier_token17] = ACTIONS(1859), - [aux_sym_cmd_identifier_token18] = ACTIONS(1859), - [aux_sym_cmd_identifier_token19] = ACTIONS(1859), - [aux_sym_cmd_identifier_token20] = ACTIONS(1859), - [aux_sym_cmd_identifier_token21] = ACTIONS(1859), - [aux_sym_cmd_identifier_token22] = ACTIONS(1859), - [aux_sym_cmd_identifier_token23] = ACTIONS(1859), - [aux_sym_cmd_identifier_token24] = ACTIONS(1859), - [aux_sym_cmd_identifier_token25] = ACTIONS(1859), - [aux_sym_cmd_identifier_token26] = ACTIONS(1859), - [aux_sym_cmd_identifier_token27] = ACTIONS(1859), - [aux_sym_cmd_identifier_token28] = ACTIONS(1859), - [aux_sym_cmd_identifier_token29] = ACTIONS(1859), - [aux_sym_cmd_identifier_token30] = ACTIONS(1859), - [aux_sym_cmd_identifier_token31] = ACTIONS(1859), - [aux_sym_cmd_identifier_token32] = ACTIONS(1859), - [aux_sym_cmd_identifier_token33] = ACTIONS(1859), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1859), - [aux_sym_cmd_identifier_token36] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_list] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2505), + [anon_sym_alias] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_let_DASHenv] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [aux_sym_cmd_identifier_token1] = ACTIONS(2505), + [aux_sym_cmd_identifier_token2] = ACTIONS(2505), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [aux_sym_cmd_identifier_token6] = ACTIONS(2505), + [aux_sym_cmd_identifier_token7] = ACTIONS(2505), + [aux_sym_cmd_identifier_token8] = ACTIONS(2505), + [aux_sym_cmd_identifier_token9] = ACTIONS(2505), + [aux_sym_cmd_identifier_token10] = ACTIONS(2505), + [aux_sym_cmd_identifier_token11] = ACTIONS(2505), + [aux_sym_cmd_identifier_token12] = ACTIONS(2505), + [aux_sym_cmd_identifier_token13] = ACTIONS(2505), + [aux_sym_cmd_identifier_token14] = ACTIONS(2505), + [aux_sym_cmd_identifier_token15] = ACTIONS(2505), + [aux_sym_cmd_identifier_token16] = ACTIONS(2505), + [aux_sym_cmd_identifier_token17] = ACTIONS(2505), + [aux_sym_cmd_identifier_token18] = ACTIONS(2505), + [aux_sym_cmd_identifier_token19] = ACTIONS(2505), + [aux_sym_cmd_identifier_token20] = ACTIONS(2505), + [aux_sym_cmd_identifier_token21] = ACTIONS(2505), + [aux_sym_cmd_identifier_token22] = ACTIONS(2505), + [aux_sym_cmd_identifier_token23] = ACTIONS(2505), + [aux_sym_cmd_identifier_token24] = ACTIONS(2505), + [aux_sym_cmd_identifier_token25] = ACTIONS(2505), + [aux_sym_cmd_identifier_token26] = ACTIONS(2505), + [aux_sym_cmd_identifier_token27] = ACTIONS(2505), + [aux_sym_cmd_identifier_token28] = ACTIONS(2505), + [aux_sym_cmd_identifier_token29] = ACTIONS(2505), + [aux_sym_cmd_identifier_token30] = ACTIONS(2505), + [aux_sym_cmd_identifier_token31] = ACTIONS(2505), + [aux_sym_cmd_identifier_token32] = ACTIONS(2505), + [aux_sym_cmd_identifier_token33] = ACTIONS(2505), + [aux_sym_cmd_identifier_token34] = ACTIONS(2505), + [aux_sym_cmd_identifier_token35] = ACTIONS(2505), + [aux_sym_cmd_identifier_token36] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [aux_sym_cmd_identifier_token38] = ACTIONS(2505), + [aux_sym_cmd_identifier_token39] = ACTIONS(2505), + [aux_sym_cmd_identifier_token40] = ACTIONS(2505), + [anon_sym_def] = ACTIONS(2505), + [anon_sym_export_DASHenv] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_module] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_DOLLAR] = ACTIONS(2505), + [anon_sym_error] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_make] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_catch] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_source] = ACTIONS(2505), + [anon_sym_source_DASHenv] = ACTIONS(2505), + [anon_sym_register] = ACTIONS(2505), + [anon_sym_hide] = ACTIONS(2505), + [anon_sym_hide_DASHenv] = ACTIONS(2505), + [anon_sym_overlay] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2505), + [aux_sym__val_number_decimal_token1] = ACTIONS(2505), + [aux_sym__val_number_decimal_token2] = ACTIONS(2505), + [aux_sym__val_number_decimal_token3] = ACTIONS(2505), + [aux_sym__val_number_decimal_token4] = ACTIONS(2505), + [aux_sym__val_number_token1] = ACTIONS(2505), + [aux_sym__val_number_token2] = ACTIONS(2505), + [aux_sym__val_number_token3] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym__str_single_quotes] = ACTIONS(2505), + [sym__str_back_ticks] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2505), + [sym__entry_separator] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(3), }, [608] = { [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(1064), - [anon_sym_alias] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1064), - [anon_sym_let_DASHenv] = ACTIONS(1064), - [anon_sym_mut] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [aux_sym_cmd_identifier_token1] = ACTIONS(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(1064), - [aux_sym_cmd_identifier_token3] = ACTIONS(1064), - [aux_sym_cmd_identifier_token4] = ACTIONS(1064), - [aux_sym_cmd_identifier_token5] = ACTIONS(1064), - [aux_sym_cmd_identifier_token6] = ACTIONS(1064), - [aux_sym_cmd_identifier_token7] = ACTIONS(1064), - [aux_sym_cmd_identifier_token8] = ACTIONS(1064), - [aux_sym_cmd_identifier_token9] = ACTIONS(1064), - [aux_sym_cmd_identifier_token10] = ACTIONS(1064), - [aux_sym_cmd_identifier_token11] = ACTIONS(1064), - [aux_sym_cmd_identifier_token12] = ACTIONS(1064), - [aux_sym_cmd_identifier_token13] = ACTIONS(1064), - [aux_sym_cmd_identifier_token14] = ACTIONS(1064), - [aux_sym_cmd_identifier_token15] = ACTIONS(1064), - [aux_sym_cmd_identifier_token16] = ACTIONS(1064), - [aux_sym_cmd_identifier_token17] = ACTIONS(1064), - [aux_sym_cmd_identifier_token18] = ACTIONS(1064), - [aux_sym_cmd_identifier_token19] = ACTIONS(1064), - [aux_sym_cmd_identifier_token20] = ACTIONS(1064), - [aux_sym_cmd_identifier_token21] = ACTIONS(1064), - [aux_sym_cmd_identifier_token22] = ACTIONS(1064), - [aux_sym_cmd_identifier_token23] = ACTIONS(1064), - [aux_sym_cmd_identifier_token24] = ACTIONS(1064), - [aux_sym_cmd_identifier_token25] = ACTIONS(1064), - [aux_sym_cmd_identifier_token26] = ACTIONS(1064), - [aux_sym_cmd_identifier_token27] = ACTIONS(1064), - [aux_sym_cmd_identifier_token28] = ACTIONS(1064), - [aux_sym_cmd_identifier_token29] = ACTIONS(1064), - [aux_sym_cmd_identifier_token30] = ACTIONS(1064), - [aux_sym_cmd_identifier_token31] = ACTIONS(1064), - [aux_sym_cmd_identifier_token32] = ACTIONS(1064), - [aux_sym_cmd_identifier_token33] = ACTIONS(1064), - [aux_sym_cmd_identifier_token34] = ACTIONS(1064), - [aux_sym_cmd_identifier_token35] = ACTIONS(1064), - [aux_sym_cmd_identifier_token36] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1066), - [aux_sym_cmd_identifier_token38] = ACTIONS(1064), - [aux_sym_cmd_identifier_token39] = ACTIONS(1066), - [aux_sym_cmd_identifier_token40] = ACTIONS(1066), - [anon_sym_def] = ACTIONS(1064), - [anon_sym_export_DASHenv] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym_module] = ACTIONS(1064), - [anon_sym_use] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_error] = ACTIONS(1064), - [anon_sym_list] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_loop] = ACTIONS(1064), - [anon_sym_make] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_else] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_catch] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_source] = ACTIONS(1064), - [anon_sym_source_DASHenv] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_hide] = ACTIONS(1064), - [anon_sym_hide_DASHenv] = ACTIONS(1064), - [anon_sym_overlay] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1066), - [aux_sym__val_number_token1] = ACTIONS(1066), - [aux_sym__val_number_token2] = ACTIONS(1066), - [aux_sym__val_number_token3] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym__str_single_quotes] = ACTIONS(1066), - [sym__str_back_ticks] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_alias] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_let_DASHenv] = ACTIONS(2509), + [anon_sym_mut] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [aux_sym_cmd_identifier_token1] = ACTIONS(2509), + [aux_sym_cmd_identifier_token2] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2509), + [aux_sym_cmd_identifier_token4] = ACTIONS(2509), + [aux_sym_cmd_identifier_token5] = ACTIONS(2509), + [aux_sym_cmd_identifier_token6] = ACTIONS(2509), + [aux_sym_cmd_identifier_token7] = ACTIONS(2509), + [aux_sym_cmd_identifier_token8] = ACTIONS(2509), + [aux_sym_cmd_identifier_token9] = ACTIONS(2509), + [aux_sym_cmd_identifier_token10] = ACTIONS(2509), + [aux_sym_cmd_identifier_token11] = ACTIONS(2509), + [aux_sym_cmd_identifier_token12] = ACTIONS(2509), + [aux_sym_cmd_identifier_token13] = ACTIONS(2509), + [aux_sym_cmd_identifier_token14] = ACTIONS(2509), + [aux_sym_cmd_identifier_token15] = ACTIONS(2509), + [aux_sym_cmd_identifier_token16] = ACTIONS(2509), + [aux_sym_cmd_identifier_token17] = ACTIONS(2509), + [aux_sym_cmd_identifier_token18] = ACTIONS(2509), + [aux_sym_cmd_identifier_token19] = ACTIONS(2509), + [aux_sym_cmd_identifier_token20] = ACTIONS(2509), + [aux_sym_cmd_identifier_token21] = ACTIONS(2509), + [aux_sym_cmd_identifier_token22] = ACTIONS(2509), + [aux_sym_cmd_identifier_token23] = ACTIONS(2509), + [aux_sym_cmd_identifier_token24] = ACTIONS(2509), + [aux_sym_cmd_identifier_token25] = ACTIONS(2509), + [aux_sym_cmd_identifier_token26] = ACTIONS(2509), + [aux_sym_cmd_identifier_token27] = ACTIONS(2509), + [aux_sym_cmd_identifier_token28] = ACTIONS(2509), + [aux_sym_cmd_identifier_token29] = ACTIONS(2509), + [aux_sym_cmd_identifier_token30] = ACTIONS(2509), + [aux_sym_cmd_identifier_token31] = ACTIONS(2509), + [aux_sym_cmd_identifier_token32] = ACTIONS(2509), + [aux_sym_cmd_identifier_token33] = ACTIONS(2509), + [aux_sym_cmd_identifier_token34] = ACTIONS(2509), + [aux_sym_cmd_identifier_token35] = ACTIONS(2509), + [aux_sym_cmd_identifier_token36] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token38] = ACTIONS(2509), + [aux_sym_cmd_identifier_token39] = ACTIONS(2509), + [aux_sym_cmd_identifier_token40] = ACTIONS(2509), + [anon_sym_def] = ACTIONS(2509), + [anon_sym_export_DASHenv] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_error] = ACTIONS(2509), + [anon_sym_list] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_in] = ACTIONS(2509), + [anon_sym_loop] = ACTIONS(2509), + [anon_sym_make] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_catch] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_source] = ACTIONS(2509), + [anon_sym_source_DASHenv] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_hide] = ACTIONS(2509), + [anon_sym_hide_DASHenv] = ACTIONS(2509), + [anon_sym_overlay] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_as] = ACTIONS(2509), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2509), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2509), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2509), + [aux_sym__val_number_decimal_token3] = ACTIONS(2509), + [aux_sym__val_number_decimal_token4] = ACTIONS(2509), + [aux_sym__val_number_token1] = ACTIONS(2509), + [aux_sym__val_number_token2] = ACTIONS(2509), + [aux_sym__val_number_token3] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym__str_single_quotes] = ACTIONS(2509), + [sym__str_back_ticks] = ACTIONS(2509), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2509), + [sym__entry_separator] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), }, [609] = { [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_alias] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_let_DASHenv] = ACTIONS(2521), - [anon_sym_mut] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [aux_sym_cmd_identifier_token1] = ACTIONS(2521), - [aux_sym_cmd_identifier_token2] = ACTIONS(2521), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [aux_sym_cmd_identifier_token6] = ACTIONS(2521), - [aux_sym_cmd_identifier_token7] = ACTIONS(2521), - [aux_sym_cmd_identifier_token8] = ACTIONS(2521), - [aux_sym_cmd_identifier_token9] = ACTIONS(2521), - [aux_sym_cmd_identifier_token10] = ACTIONS(2521), - [aux_sym_cmd_identifier_token11] = ACTIONS(2521), - [aux_sym_cmd_identifier_token12] = ACTIONS(2521), - [aux_sym_cmd_identifier_token13] = ACTIONS(2521), - [aux_sym_cmd_identifier_token14] = ACTIONS(2521), - [aux_sym_cmd_identifier_token15] = ACTIONS(2521), - [aux_sym_cmd_identifier_token16] = ACTIONS(2521), - [aux_sym_cmd_identifier_token17] = ACTIONS(2521), - [aux_sym_cmd_identifier_token18] = ACTIONS(2521), - [aux_sym_cmd_identifier_token19] = ACTIONS(2521), - [aux_sym_cmd_identifier_token20] = ACTIONS(2521), - [aux_sym_cmd_identifier_token21] = ACTIONS(2521), - [aux_sym_cmd_identifier_token22] = ACTIONS(2521), - [aux_sym_cmd_identifier_token23] = ACTIONS(2521), - [aux_sym_cmd_identifier_token24] = ACTIONS(2521), - [aux_sym_cmd_identifier_token25] = ACTIONS(2521), - [aux_sym_cmd_identifier_token26] = ACTIONS(2521), - [aux_sym_cmd_identifier_token27] = ACTIONS(2521), - [aux_sym_cmd_identifier_token28] = ACTIONS(2521), - [aux_sym_cmd_identifier_token29] = ACTIONS(2521), - [aux_sym_cmd_identifier_token30] = ACTIONS(2521), - [aux_sym_cmd_identifier_token31] = ACTIONS(2521), - [aux_sym_cmd_identifier_token32] = ACTIONS(2521), - [aux_sym_cmd_identifier_token33] = ACTIONS(2521), - [aux_sym_cmd_identifier_token34] = ACTIONS(2521), - [aux_sym_cmd_identifier_token35] = ACTIONS(2521), - [aux_sym_cmd_identifier_token36] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2523), - [aux_sym_cmd_identifier_token38] = ACTIONS(2521), - [aux_sym_cmd_identifier_token39] = ACTIONS(2523), - [aux_sym_cmd_identifier_token40] = ACTIONS(2523), - [anon_sym_def] = ACTIONS(2521), - [anon_sym_export_DASHenv] = ACTIONS(2521), - [anon_sym_extern] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_error] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_in] = ACTIONS(2521), - [anon_sym_loop] = ACTIONS(2521), - [anon_sym_make] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_match] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_catch] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_source] = ACTIONS(2521), - [anon_sym_source_DASHenv] = ACTIONS(2521), - [anon_sym_register] = ACTIONS(2521), - [anon_sym_hide] = ACTIONS(2521), - [anon_sym_hide_DASHenv] = ACTIONS(2521), - [anon_sym_overlay] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_as] = ACTIONS(2521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2523), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2523), - [aux_sym__val_number_decimal_token1] = ACTIONS(2521), - [aux_sym__val_number_decimal_token2] = ACTIONS(2523), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), - [aux_sym__val_number_token1] = ACTIONS(2523), - [aux_sym__val_number_token2] = ACTIONS(2523), - [aux_sym__val_number_token3] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [sym__str_single_quotes] = ACTIONS(2523), - [sym__str_back_ticks] = ACTIONS(2523), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2523), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2513), + [anon_sym_alias] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_let_DASHenv] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [aux_sym_cmd_identifier_token1] = ACTIONS(2513), + [aux_sym_cmd_identifier_token2] = ACTIONS(2513), + [aux_sym_cmd_identifier_token3] = ACTIONS(2513), + [aux_sym_cmd_identifier_token4] = ACTIONS(2513), + [aux_sym_cmd_identifier_token5] = ACTIONS(2513), + [aux_sym_cmd_identifier_token6] = ACTIONS(2513), + [aux_sym_cmd_identifier_token7] = ACTIONS(2513), + [aux_sym_cmd_identifier_token8] = ACTIONS(2513), + [aux_sym_cmd_identifier_token9] = ACTIONS(2513), + [aux_sym_cmd_identifier_token10] = ACTIONS(2513), + [aux_sym_cmd_identifier_token11] = ACTIONS(2513), + [aux_sym_cmd_identifier_token12] = ACTIONS(2513), + [aux_sym_cmd_identifier_token13] = ACTIONS(2513), + [aux_sym_cmd_identifier_token14] = ACTIONS(2513), + [aux_sym_cmd_identifier_token15] = ACTIONS(2513), + [aux_sym_cmd_identifier_token16] = ACTIONS(2513), + [aux_sym_cmd_identifier_token17] = ACTIONS(2513), + [aux_sym_cmd_identifier_token18] = ACTIONS(2513), + [aux_sym_cmd_identifier_token19] = ACTIONS(2513), + [aux_sym_cmd_identifier_token20] = ACTIONS(2513), + [aux_sym_cmd_identifier_token21] = ACTIONS(2513), + [aux_sym_cmd_identifier_token22] = ACTIONS(2513), + [aux_sym_cmd_identifier_token23] = ACTIONS(2513), + [aux_sym_cmd_identifier_token24] = ACTIONS(2513), + [aux_sym_cmd_identifier_token25] = ACTIONS(2513), + [aux_sym_cmd_identifier_token26] = ACTIONS(2513), + [aux_sym_cmd_identifier_token27] = ACTIONS(2513), + [aux_sym_cmd_identifier_token28] = ACTIONS(2513), + [aux_sym_cmd_identifier_token29] = ACTIONS(2513), + [aux_sym_cmd_identifier_token30] = ACTIONS(2513), + [aux_sym_cmd_identifier_token31] = ACTIONS(2513), + [aux_sym_cmd_identifier_token32] = ACTIONS(2513), + [aux_sym_cmd_identifier_token33] = ACTIONS(2513), + [aux_sym_cmd_identifier_token34] = ACTIONS(2513), + [aux_sym_cmd_identifier_token35] = ACTIONS(2513), + [aux_sym_cmd_identifier_token36] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [aux_sym_cmd_identifier_token38] = ACTIONS(2513), + [aux_sym_cmd_identifier_token39] = ACTIONS(2513), + [aux_sym_cmd_identifier_token40] = ACTIONS(2513), + [anon_sym_def] = ACTIONS(2513), + [anon_sym_export_DASHenv] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_module] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_DOLLAR] = ACTIONS(2513), + [anon_sym_error] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_loop] = ACTIONS(2513), + [anon_sym_make] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_catch] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_source] = ACTIONS(2513), + [anon_sym_source_DASHenv] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_hide] = ACTIONS(2513), + [anon_sym_hide_DASHenv] = ACTIONS(2513), + [anon_sym_overlay] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2513), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2513), + [aux_sym__val_number_decimal_token3] = ACTIONS(2513), + [aux_sym__val_number_decimal_token4] = ACTIONS(2513), + [aux_sym__val_number_token1] = ACTIONS(2513), + [aux_sym__val_number_token2] = ACTIONS(2513), + [aux_sym__val_number_token3] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym__str_single_quotes] = ACTIONS(2513), + [sym__str_back_ticks] = ACTIONS(2513), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2513), + [sym__entry_separator] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(3), }, [610] = { [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2491), - [anon_sym_false] = ACTIONS(2491), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2491), - [aux_sym_cmd_identifier_token40] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2491), - [aux_sym__val_number_decimal_token3] = ACTIONS(2491), - [aux_sym__val_number_decimal_token4] = ACTIONS(2491), - [aux_sym__val_number_token1] = ACTIONS(2491), - [aux_sym__val_number_token2] = ACTIONS(2491), - [aux_sym__val_number_token3] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(2491), - [sym__str_single_quotes] = ACTIONS(2491), - [sym__str_back_ticks] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(247), - }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1867), - [aux_sym_cmd_identifier_token17] = ACTIONS(1867), - [aux_sym_cmd_identifier_token18] = ACTIONS(1867), - [aux_sym_cmd_identifier_token19] = ACTIONS(1867), - [aux_sym_cmd_identifier_token20] = ACTIONS(1867), - [aux_sym_cmd_identifier_token21] = ACTIONS(1867), - [aux_sym_cmd_identifier_token22] = ACTIONS(1867), - [aux_sym_cmd_identifier_token23] = ACTIONS(1867), - [aux_sym_cmd_identifier_token24] = ACTIONS(1867), - [aux_sym_cmd_identifier_token25] = ACTIONS(1867), - [aux_sym_cmd_identifier_token26] = ACTIONS(1867), - [aux_sym_cmd_identifier_token27] = ACTIONS(1867), - [aux_sym_cmd_identifier_token28] = ACTIONS(1867), - [aux_sym_cmd_identifier_token29] = ACTIONS(1867), - [aux_sym_cmd_identifier_token30] = ACTIONS(1867), - [aux_sym_cmd_identifier_token31] = ACTIONS(1867), - [aux_sym_cmd_identifier_token32] = ACTIONS(1867), - [aux_sym_cmd_identifier_token33] = ACTIONS(1867), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1867), - [aux_sym_cmd_identifier_token36] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_list] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(247), - }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2408), - [anon_sym_alias] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_let_DASHenv] = ACTIONS(2408), - [anon_sym_mut] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [aux_sym_cmd_identifier_token1] = ACTIONS(2408), - [aux_sym_cmd_identifier_token2] = ACTIONS(2408), - [aux_sym_cmd_identifier_token3] = ACTIONS(2408), - [aux_sym_cmd_identifier_token4] = ACTIONS(2408), - [aux_sym_cmd_identifier_token5] = ACTIONS(2408), - [aux_sym_cmd_identifier_token6] = ACTIONS(2408), - [aux_sym_cmd_identifier_token7] = ACTIONS(2408), - [aux_sym_cmd_identifier_token8] = ACTIONS(2408), - [aux_sym_cmd_identifier_token9] = ACTIONS(2408), - [aux_sym_cmd_identifier_token10] = ACTIONS(2408), - [aux_sym_cmd_identifier_token11] = ACTIONS(2408), - [aux_sym_cmd_identifier_token12] = ACTIONS(2408), - [aux_sym_cmd_identifier_token13] = ACTIONS(2408), - [aux_sym_cmd_identifier_token14] = ACTIONS(2408), - [aux_sym_cmd_identifier_token15] = ACTIONS(2408), - [aux_sym_cmd_identifier_token16] = ACTIONS(2408), - [aux_sym_cmd_identifier_token17] = ACTIONS(2408), - [aux_sym_cmd_identifier_token18] = ACTIONS(2408), - [aux_sym_cmd_identifier_token19] = ACTIONS(2408), - [aux_sym_cmd_identifier_token20] = ACTIONS(2408), - [aux_sym_cmd_identifier_token21] = ACTIONS(2408), - [aux_sym_cmd_identifier_token22] = ACTIONS(2408), - [aux_sym_cmd_identifier_token23] = ACTIONS(2408), - [aux_sym_cmd_identifier_token24] = ACTIONS(2408), - [aux_sym_cmd_identifier_token25] = ACTIONS(2408), - [aux_sym_cmd_identifier_token26] = ACTIONS(2408), - [aux_sym_cmd_identifier_token27] = ACTIONS(2408), - [aux_sym_cmd_identifier_token28] = ACTIONS(2408), - [aux_sym_cmd_identifier_token29] = ACTIONS(2408), - [aux_sym_cmd_identifier_token30] = ACTIONS(2408), - [aux_sym_cmd_identifier_token31] = ACTIONS(2408), - [aux_sym_cmd_identifier_token32] = ACTIONS(2408), - [aux_sym_cmd_identifier_token33] = ACTIONS(2408), - [aux_sym_cmd_identifier_token34] = ACTIONS(2408), - [aux_sym_cmd_identifier_token35] = ACTIONS(2408), - [aux_sym_cmd_identifier_token36] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_null] = ACTIONS(2410), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2410), - [aux_sym_cmd_identifier_token40] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2408), - [anon_sym_export_DASHenv] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_module] = ACTIONS(2408), - [anon_sym_use] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_DOLLAR] = ACTIONS(2410), - [anon_sym_error] = ACTIONS(2408), - [anon_sym_list] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_in] = ACTIONS(2408), - [anon_sym_loop] = ACTIONS(2408), - [anon_sym_make] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(2408), - [anon_sym_match] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2408), - [anon_sym_catch] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_source] = ACTIONS(2408), - [anon_sym_source_DASHenv] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_hide] = ACTIONS(2408), - [anon_sym_hide_DASHenv] = ACTIONS(2408), - [anon_sym_overlay] = ACTIONS(2408), - [anon_sym_new] = ACTIONS(2408), - [anon_sym_as] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), - [aux_sym__val_number_decimal_token1] = ACTIONS(2408), - [aux_sym__val_number_decimal_token2] = ACTIONS(2410), - [aux_sym__val_number_decimal_token3] = ACTIONS(2410), - [aux_sym__val_number_decimal_token4] = ACTIONS(2410), - [aux_sym__val_number_token1] = ACTIONS(2410), - [aux_sym__val_number_token2] = ACTIONS(2410), - [aux_sym__val_number_token3] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym__str_single_quotes] = ACTIONS(2410), - [sym__str_back_ticks] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(247), - }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(1040), - [anon_sym_alias] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_let_DASHenv] = ACTIONS(1040), - [anon_sym_mut] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1040), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [aux_sym_cmd_identifier_token12] = ACTIONS(1040), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1040), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), [anon_sym_true] = ACTIONS(1042), [anon_sym_false] = ACTIONS(1042), [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), [aux_sym_cmd_identifier_token39] = ACTIONS(1042), [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [anon_sym_def] = ACTIONS(1040), - [anon_sym_export_DASHenv] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_module] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), [anon_sym_LPAREN] = ACTIONS(1042), [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_error] = ACTIONS(1040), - [anon_sym_list] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1040), - [anon_sym_make] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_source] = ACTIONS(1040), - [anon_sym_source_DASHenv] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_hide_DASHenv] = ACTIONS(1040), - [anon_sym_overlay] = ACTIONS(1040), - [anon_sym_new] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), [aux_sym__val_number_decimal_token2] = ACTIONS(1042), [aux_sym__val_number_decimal_token3] = ACTIONS(1042), [aux_sym__val_number_decimal_token4] = ACTIONS(1042), @@ -141409,2086 +142734,2495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1042), [sym__str_back_ticks] = ACTIONS(1042), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), + [sym__entry_separator] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(3), + }, + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_null] = ACTIONS(1038), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1038), + [aux_sym_cmd_identifier_token40] = ACTIONS(1038), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1038), + [aux_sym__val_number_decimal_token3] = ACTIONS(1038), + [aux_sym__val_number_decimal_token4] = ACTIONS(1038), + [aux_sym__val_number_token1] = ACTIONS(1038), + [aux_sym__val_number_token2] = ACTIONS(1038), + [aux_sym__val_number_token3] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym__str_single_quotes] = ACTIONS(1038), + [sym__str_back_ticks] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), + [sym__entry_separator] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(3), + }, + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(3), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(2517), + [anon_sym_alias] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_DASHenv] = ACTIONS(2517), + [anon_sym_mut] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [aux_sym_cmd_identifier_token1] = ACTIONS(2517), + [aux_sym_cmd_identifier_token2] = ACTIONS(2517), + [aux_sym_cmd_identifier_token3] = ACTIONS(2517), + [aux_sym_cmd_identifier_token4] = ACTIONS(2517), + [aux_sym_cmd_identifier_token5] = ACTIONS(2517), + [aux_sym_cmd_identifier_token6] = ACTIONS(2517), + [aux_sym_cmd_identifier_token7] = ACTIONS(2517), + [aux_sym_cmd_identifier_token8] = ACTIONS(2517), + [aux_sym_cmd_identifier_token9] = ACTIONS(2517), + [aux_sym_cmd_identifier_token10] = ACTIONS(2517), + [aux_sym_cmd_identifier_token11] = ACTIONS(2517), + [aux_sym_cmd_identifier_token12] = ACTIONS(2517), + [aux_sym_cmd_identifier_token13] = ACTIONS(2517), + [aux_sym_cmd_identifier_token14] = ACTIONS(2517), + [aux_sym_cmd_identifier_token15] = ACTIONS(2517), + [aux_sym_cmd_identifier_token16] = ACTIONS(2517), + [aux_sym_cmd_identifier_token17] = ACTIONS(2517), + [aux_sym_cmd_identifier_token18] = ACTIONS(2517), + [aux_sym_cmd_identifier_token19] = ACTIONS(2517), + [aux_sym_cmd_identifier_token20] = ACTIONS(2517), + [aux_sym_cmd_identifier_token21] = ACTIONS(2517), + [aux_sym_cmd_identifier_token22] = ACTIONS(2517), + [aux_sym_cmd_identifier_token23] = ACTIONS(2517), + [aux_sym_cmd_identifier_token24] = ACTIONS(2517), + [aux_sym_cmd_identifier_token25] = ACTIONS(2517), + [aux_sym_cmd_identifier_token26] = ACTIONS(2517), + [aux_sym_cmd_identifier_token27] = ACTIONS(2517), + [aux_sym_cmd_identifier_token28] = ACTIONS(2517), + [aux_sym_cmd_identifier_token29] = ACTIONS(2517), + [aux_sym_cmd_identifier_token30] = ACTIONS(2517), + [aux_sym_cmd_identifier_token31] = ACTIONS(2517), + [aux_sym_cmd_identifier_token32] = ACTIONS(2517), + [aux_sym_cmd_identifier_token33] = ACTIONS(2517), + [aux_sym_cmd_identifier_token34] = ACTIONS(2517), + [aux_sym_cmd_identifier_token35] = ACTIONS(2517), + [aux_sym_cmd_identifier_token36] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [aux_sym_cmd_identifier_token38] = ACTIONS(2517), + [aux_sym_cmd_identifier_token39] = ACTIONS(2517), + [aux_sym_cmd_identifier_token40] = ACTIONS(2517), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_export_DASHenv] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_error] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_make] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_catch] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_source] = ACTIONS(2517), + [anon_sym_source_DASHenv] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_hide] = ACTIONS(2517), + [anon_sym_hide_DASHenv] = ACTIONS(2517), + [anon_sym_overlay] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_as] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2517), + [aux_sym__val_number_decimal_token2] = ACTIONS(2517), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(2517), + [aux_sym__val_number_token2] = ACTIONS(2517), + [aux_sym__val_number_token3] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym__str_single_quotes] = ACTIONS(2517), + [sym__str_back_ticks] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2517), + [sym__entry_separator] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(3), + }, + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [anon_sym_null] = ACTIONS(1981), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1981), + [aux_sym_cmd_identifier_token40] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(1981), + [aux_sym__val_number_decimal_token4] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), + [sym__entry_separator] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(3), }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_list] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_new] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2521), + [anon_sym_alias] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_let_DASHenv] = ACTIONS(2521), + [anon_sym_mut] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [aux_sym_cmd_identifier_token1] = ACTIONS(2521), + [aux_sym_cmd_identifier_token2] = ACTIONS(2521), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [aux_sym_cmd_identifier_token6] = ACTIONS(2521), + [aux_sym_cmd_identifier_token7] = ACTIONS(2521), + [aux_sym_cmd_identifier_token8] = ACTIONS(2521), + [aux_sym_cmd_identifier_token9] = ACTIONS(2521), + [aux_sym_cmd_identifier_token10] = ACTIONS(2521), + [aux_sym_cmd_identifier_token11] = ACTIONS(2521), + [aux_sym_cmd_identifier_token12] = ACTIONS(2521), + [aux_sym_cmd_identifier_token13] = ACTIONS(2521), + [aux_sym_cmd_identifier_token14] = ACTIONS(2521), + [aux_sym_cmd_identifier_token15] = ACTIONS(2521), + [aux_sym_cmd_identifier_token16] = ACTIONS(2521), + [aux_sym_cmd_identifier_token17] = ACTIONS(2521), + [aux_sym_cmd_identifier_token18] = ACTIONS(2521), + [aux_sym_cmd_identifier_token19] = ACTIONS(2521), + [aux_sym_cmd_identifier_token20] = ACTIONS(2521), + [aux_sym_cmd_identifier_token21] = ACTIONS(2521), + [aux_sym_cmd_identifier_token22] = ACTIONS(2521), + [aux_sym_cmd_identifier_token23] = ACTIONS(2521), + [aux_sym_cmd_identifier_token24] = ACTIONS(2521), + [aux_sym_cmd_identifier_token25] = ACTIONS(2521), + [aux_sym_cmd_identifier_token26] = ACTIONS(2521), + [aux_sym_cmd_identifier_token27] = ACTIONS(2521), + [aux_sym_cmd_identifier_token28] = ACTIONS(2521), + [aux_sym_cmd_identifier_token29] = ACTIONS(2521), + [aux_sym_cmd_identifier_token30] = ACTIONS(2521), + [aux_sym_cmd_identifier_token31] = ACTIONS(2521), + [aux_sym_cmd_identifier_token32] = ACTIONS(2521), + [aux_sym_cmd_identifier_token33] = ACTIONS(2521), + [aux_sym_cmd_identifier_token34] = ACTIONS(2521), + [aux_sym_cmd_identifier_token35] = ACTIONS(2521), + [aux_sym_cmd_identifier_token36] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [aux_sym_cmd_identifier_token38] = ACTIONS(2521), + [aux_sym_cmd_identifier_token39] = ACTIONS(2521), + [aux_sym_cmd_identifier_token40] = ACTIONS(2521), + [anon_sym_def] = ACTIONS(2521), + [anon_sym_export_DASHenv] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_module] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_DOLLAR] = ACTIONS(2521), + [anon_sym_error] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_make] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_catch] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_source] = ACTIONS(2521), + [anon_sym_source_DASHenv] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_hide] = ACTIONS(2521), + [anon_sym_hide_DASHenv] = ACTIONS(2521), + [anon_sym_overlay] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_as] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2521), + [aux_sym__val_number_decimal_token1] = ACTIONS(2521), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2521), + [aux_sym__val_number_decimal_token4] = ACTIONS(2521), + [aux_sym__val_number_token1] = ACTIONS(2521), + [aux_sym__val_number_token2] = ACTIONS(2521), + [aux_sym__val_number_token3] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym__str_single_quotes] = ACTIONS(2521), + [sym__str_back_ticks] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2521), + [sym__entry_separator] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(3), }, [616] = { [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2412), - [anon_sym_alias] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_let_DASHenv] = ACTIONS(2412), - [anon_sym_mut] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [aux_sym_cmd_identifier_token1] = ACTIONS(2412), - [aux_sym_cmd_identifier_token2] = ACTIONS(2412), - [aux_sym_cmd_identifier_token3] = ACTIONS(2412), - [aux_sym_cmd_identifier_token4] = ACTIONS(2412), - [aux_sym_cmd_identifier_token5] = ACTIONS(2412), - [aux_sym_cmd_identifier_token6] = ACTIONS(2412), - [aux_sym_cmd_identifier_token7] = ACTIONS(2412), - [aux_sym_cmd_identifier_token8] = ACTIONS(2412), - [aux_sym_cmd_identifier_token9] = ACTIONS(2412), - [aux_sym_cmd_identifier_token10] = ACTIONS(2412), - [aux_sym_cmd_identifier_token11] = ACTIONS(2412), - [aux_sym_cmd_identifier_token12] = ACTIONS(2412), - [aux_sym_cmd_identifier_token13] = ACTIONS(2412), - [aux_sym_cmd_identifier_token14] = ACTIONS(2412), - [aux_sym_cmd_identifier_token15] = ACTIONS(2412), - [aux_sym_cmd_identifier_token16] = ACTIONS(2412), - [aux_sym_cmd_identifier_token17] = ACTIONS(2412), - [aux_sym_cmd_identifier_token18] = ACTIONS(2412), - [aux_sym_cmd_identifier_token19] = ACTIONS(2412), - [aux_sym_cmd_identifier_token20] = ACTIONS(2412), - [aux_sym_cmd_identifier_token21] = ACTIONS(2412), - [aux_sym_cmd_identifier_token22] = ACTIONS(2412), - [aux_sym_cmd_identifier_token23] = ACTIONS(2412), - [aux_sym_cmd_identifier_token24] = ACTIONS(2412), - [aux_sym_cmd_identifier_token25] = ACTIONS(2412), - [aux_sym_cmd_identifier_token26] = ACTIONS(2412), - [aux_sym_cmd_identifier_token27] = ACTIONS(2412), - [aux_sym_cmd_identifier_token28] = ACTIONS(2412), - [aux_sym_cmd_identifier_token29] = ACTIONS(2412), - [aux_sym_cmd_identifier_token30] = ACTIONS(2412), - [aux_sym_cmd_identifier_token31] = ACTIONS(2412), - [aux_sym_cmd_identifier_token32] = ACTIONS(2412), - [aux_sym_cmd_identifier_token33] = ACTIONS(2412), - [aux_sym_cmd_identifier_token34] = ACTIONS(2412), - [aux_sym_cmd_identifier_token35] = ACTIONS(2412), - [aux_sym_cmd_identifier_token36] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_null] = ACTIONS(2414), - [aux_sym_cmd_identifier_token38] = ACTIONS(2412), - [aux_sym_cmd_identifier_token39] = ACTIONS(2414), - [aux_sym_cmd_identifier_token40] = ACTIONS(2414), - [anon_sym_def] = ACTIONS(2412), - [anon_sym_export_DASHenv] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_error] = ACTIONS(2412), - [anon_sym_list] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_in] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_make] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_do] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2412), - [anon_sym_catch] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_source] = ACTIONS(2412), - [anon_sym_source_DASHenv] = ACTIONS(2412), - [anon_sym_register] = ACTIONS(2412), - [anon_sym_hide] = ACTIONS(2412), - [anon_sym_hide_DASHenv] = ACTIONS(2412), - [anon_sym_overlay] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2412), - [anon_sym_as] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), - [aux_sym__val_number_decimal_token1] = ACTIONS(2412), - [aux_sym__val_number_decimal_token2] = ACTIONS(2414), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), - [aux_sym__val_number_token1] = ACTIONS(2414), - [aux_sym__val_number_token2] = ACTIONS(2414), - [aux_sym__val_number_token3] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2414), - [sym__str_single_quotes] = ACTIONS(2414), - [sym__str_back_ticks] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2525), + [anon_sym_alias] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_let_DASHenv] = ACTIONS(2525), + [anon_sym_mut] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [aux_sym_cmd_identifier_token1] = ACTIONS(2525), + [aux_sym_cmd_identifier_token2] = ACTIONS(2525), + [aux_sym_cmd_identifier_token3] = ACTIONS(2525), + [aux_sym_cmd_identifier_token4] = ACTIONS(2525), + [aux_sym_cmd_identifier_token5] = ACTIONS(2525), + [aux_sym_cmd_identifier_token6] = ACTIONS(2525), + [aux_sym_cmd_identifier_token7] = ACTIONS(2525), + [aux_sym_cmd_identifier_token8] = ACTIONS(2525), + [aux_sym_cmd_identifier_token9] = ACTIONS(2525), + [aux_sym_cmd_identifier_token10] = ACTIONS(2525), + [aux_sym_cmd_identifier_token11] = ACTIONS(2525), + [aux_sym_cmd_identifier_token12] = ACTIONS(2525), + [aux_sym_cmd_identifier_token13] = ACTIONS(2525), + [aux_sym_cmd_identifier_token14] = ACTIONS(2525), + [aux_sym_cmd_identifier_token15] = ACTIONS(2525), + [aux_sym_cmd_identifier_token16] = ACTIONS(2525), + [aux_sym_cmd_identifier_token17] = ACTIONS(2525), + [aux_sym_cmd_identifier_token18] = ACTIONS(2525), + [aux_sym_cmd_identifier_token19] = ACTIONS(2525), + [aux_sym_cmd_identifier_token20] = ACTIONS(2525), + [aux_sym_cmd_identifier_token21] = ACTIONS(2525), + [aux_sym_cmd_identifier_token22] = ACTIONS(2525), + [aux_sym_cmd_identifier_token23] = ACTIONS(2525), + [aux_sym_cmd_identifier_token24] = ACTIONS(2525), + [aux_sym_cmd_identifier_token25] = ACTIONS(2525), + [aux_sym_cmd_identifier_token26] = ACTIONS(2525), + [aux_sym_cmd_identifier_token27] = ACTIONS(2525), + [aux_sym_cmd_identifier_token28] = ACTIONS(2525), + [aux_sym_cmd_identifier_token29] = ACTIONS(2525), + [aux_sym_cmd_identifier_token30] = ACTIONS(2525), + [aux_sym_cmd_identifier_token31] = ACTIONS(2525), + [aux_sym_cmd_identifier_token32] = ACTIONS(2525), + [aux_sym_cmd_identifier_token33] = ACTIONS(2525), + [aux_sym_cmd_identifier_token34] = ACTIONS(2525), + [aux_sym_cmd_identifier_token35] = ACTIONS(2525), + [aux_sym_cmd_identifier_token36] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [aux_sym_cmd_identifier_token38] = ACTIONS(2525), + [aux_sym_cmd_identifier_token39] = ACTIONS(2525), + [aux_sym_cmd_identifier_token40] = ACTIONS(2525), + [anon_sym_def] = ACTIONS(2525), + [anon_sym_export_DASHenv] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym_module] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_DOLLAR] = ACTIONS(2525), + [anon_sym_error] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [anon_sym_loop] = ACTIONS(2525), + [anon_sym_make] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_catch] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_source] = ACTIONS(2525), + [anon_sym_source_DASHenv] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_hide] = ACTIONS(2525), + [anon_sym_hide_DASHenv] = ACTIONS(2525), + [anon_sym_overlay] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_as] = ACTIONS(2525), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2525), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2525), + [aux_sym__val_number_decimal_token1] = ACTIONS(2525), + [aux_sym__val_number_decimal_token2] = ACTIONS(2525), + [aux_sym__val_number_decimal_token3] = ACTIONS(2525), + [aux_sym__val_number_decimal_token4] = ACTIONS(2525), + [aux_sym__val_number_token1] = ACTIONS(2525), + [aux_sym__val_number_token2] = ACTIONS(2525), + [aux_sym__val_number_token3] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym__str_single_quotes] = ACTIONS(2525), + [sym__str_back_ticks] = ACTIONS(2525), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2525), + [sym__entry_separator] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(3), }, [617] = { [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_list] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_let_DASHenv] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [aux_sym_cmd_identifier_token2] = ACTIONS(1931), + [aux_sym_cmd_identifier_token3] = ACTIONS(1931), + [aux_sym_cmd_identifier_token4] = ACTIONS(1931), + [aux_sym_cmd_identifier_token5] = ACTIONS(1931), + [aux_sym_cmd_identifier_token6] = ACTIONS(1931), + [aux_sym_cmd_identifier_token7] = ACTIONS(1931), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1931), + [aux_sym_cmd_identifier_token11] = ACTIONS(1931), + [aux_sym_cmd_identifier_token12] = ACTIONS(1931), + [aux_sym_cmd_identifier_token13] = ACTIONS(1931), + [aux_sym_cmd_identifier_token14] = ACTIONS(1931), + [aux_sym_cmd_identifier_token15] = ACTIONS(1931), + [aux_sym_cmd_identifier_token16] = ACTIONS(1931), + [aux_sym_cmd_identifier_token17] = ACTIONS(1931), + [aux_sym_cmd_identifier_token18] = ACTIONS(1931), + [aux_sym_cmd_identifier_token19] = ACTIONS(1931), + [aux_sym_cmd_identifier_token20] = ACTIONS(1931), + [aux_sym_cmd_identifier_token21] = ACTIONS(1931), + [aux_sym_cmd_identifier_token22] = ACTIONS(1931), + [aux_sym_cmd_identifier_token23] = ACTIONS(1931), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1931), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1931), + [aux_sym_cmd_identifier_token28] = ACTIONS(1931), + [aux_sym_cmd_identifier_token29] = ACTIONS(1931), + [aux_sym_cmd_identifier_token30] = ACTIONS(1931), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_export_DASHenv] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_list] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_make] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_source] = ACTIONS(1931), + [anon_sym_source_DASHenv] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [sym__entry_separator] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(3), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1076), - [anon_sym_alias] = ACTIONS(1076), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_let_DASHenv] = ACTIONS(1076), - [anon_sym_mut] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1076), - [aux_sym_cmd_identifier_token2] = ACTIONS(1076), - [aux_sym_cmd_identifier_token3] = ACTIONS(1076), - [aux_sym_cmd_identifier_token4] = ACTIONS(1076), - [aux_sym_cmd_identifier_token5] = ACTIONS(1076), - [aux_sym_cmd_identifier_token6] = ACTIONS(1076), - [aux_sym_cmd_identifier_token7] = ACTIONS(1076), - [aux_sym_cmd_identifier_token8] = ACTIONS(1076), - [aux_sym_cmd_identifier_token9] = ACTIONS(1076), - [aux_sym_cmd_identifier_token10] = ACTIONS(1076), - [aux_sym_cmd_identifier_token11] = ACTIONS(1076), - [aux_sym_cmd_identifier_token12] = ACTIONS(1076), - [aux_sym_cmd_identifier_token13] = ACTIONS(1076), - [aux_sym_cmd_identifier_token14] = ACTIONS(1076), - [aux_sym_cmd_identifier_token15] = ACTIONS(1076), - [aux_sym_cmd_identifier_token16] = ACTIONS(1076), - [aux_sym_cmd_identifier_token17] = ACTIONS(1076), - [aux_sym_cmd_identifier_token18] = ACTIONS(1076), - [aux_sym_cmd_identifier_token19] = ACTIONS(1076), - [aux_sym_cmd_identifier_token20] = ACTIONS(1076), - [aux_sym_cmd_identifier_token21] = ACTIONS(1076), - [aux_sym_cmd_identifier_token22] = ACTIONS(1076), - [aux_sym_cmd_identifier_token23] = ACTIONS(1076), - [aux_sym_cmd_identifier_token24] = ACTIONS(1076), - [aux_sym_cmd_identifier_token25] = ACTIONS(1076), - [aux_sym_cmd_identifier_token26] = ACTIONS(1076), - [aux_sym_cmd_identifier_token27] = ACTIONS(1076), - [aux_sym_cmd_identifier_token28] = ACTIONS(1076), - [aux_sym_cmd_identifier_token29] = ACTIONS(1076), - [aux_sym_cmd_identifier_token30] = ACTIONS(1076), - [aux_sym_cmd_identifier_token31] = ACTIONS(1076), - [aux_sym_cmd_identifier_token32] = ACTIONS(1076), - [aux_sym_cmd_identifier_token33] = ACTIONS(1076), - [aux_sym_cmd_identifier_token34] = ACTIONS(1076), - [aux_sym_cmd_identifier_token35] = ACTIONS(1076), - [aux_sym_cmd_identifier_token36] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [anon_sym_null] = ACTIONS(1078), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1078), - [aux_sym_cmd_identifier_token40] = ACTIONS(1078), - [anon_sym_def] = ACTIONS(1076), - [anon_sym_export_DASHenv] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_use] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_error] = ACTIONS(1076), - [anon_sym_list] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_loop] = ACTIONS(1076), - [anon_sym_make] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_match] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_catch] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_source] = ACTIONS(1076), - [anon_sym_source_DASHenv] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_hide] = ACTIONS(1076), - [anon_sym_hide_DASHenv] = ACTIONS(1076), - [anon_sym_overlay] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1078), - [aux_sym__val_number_decimal_token3] = ACTIONS(1078), - [aux_sym__val_number_decimal_token4] = ACTIONS(1078), - [aux_sym__val_number_token1] = ACTIONS(1078), - [aux_sym__val_number_token2] = ACTIONS(1078), - [aux_sym__val_number_token3] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym__str_single_quotes] = ACTIONS(1078), - [sym__str_back_ticks] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [aux_sym_cmd_identifier_token1] = ACTIONS(2015), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2015), + [aux_sym_cmd_identifier_token9] = ACTIONS(2015), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2015), + [aux_sym_cmd_identifier_token13] = ACTIONS(2015), + [aux_sym_cmd_identifier_token14] = ACTIONS(2015), + [aux_sym_cmd_identifier_token15] = ACTIONS(2015), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2015), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2015), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), + [sym__entry_separator] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(3), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_alias] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_let_DASHenv] = ACTIONS(1048), - [anon_sym_mut] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1048), - [aux_sym_cmd_identifier_token2] = ACTIONS(1048), - [aux_sym_cmd_identifier_token3] = ACTIONS(1048), - [aux_sym_cmd_identifier_token4] = ACTIONS(1048), - [aux_sym_cmd_identifier_token5] = ACTIONS(1048), - [aux_sym_cmd_identifier_token6] = ACTIONS(1048), - [aux_sym_cmd_identifier_token7] = ACTIONS(1048), - [aux_sym_cmd_identifier_token8] = ACTIONS(1048), - [aux_sym_cmd_identifier_token9] = ACTIONS(1048), - [aux_sym_cmd_identifier_token10] = ACTIONS(1048), - [aux_sym_cmd_identifier_token11] = ACTIONS(1048), - [aux_sym_cmd_identifier_token12] = ACTIONS(1048), - [aux_sym_cmd_identifier_token13] = ACTIONS(1048), - [aux_sym_cmd_identifier_token14] = ACTIONS(1048), - [aux_sym_cmd_identifier_token15] = ACTIONS(1048), - [aux_sym_cmd_identifier_token16] = ACTIONS(1048), - [aux_sym_cmd_identifier_token17] = ACTIONS(1048), - [aux_sym_cmd_identifier_token18] = ACTIONS(1048), - [aux_sym_cmd_identifier_token19] = ACTIONS(1048), - [aux_sym_cmd_identifier_token20] = ACTIONS(1048), - [aux_sym_cmd_identifier_token21] = ACTIONS(1048), - [aux_sym_cmd_identifier_token22] = ACTIONS(1048), - [aux_sym_cmd_identifier_token23] = ACTIONS(1048), - [aux_sym_cmd_identifier_token24] = ACTIONS(1048), - [aux_sym_cmd_identifier_token25] = ACTIONS(1048), - [aux_sym_cmd_identifier_token26] = ACTIONS(1048), - [aux_sym_cmd_identifier_token27] = ACTIONS(1048), - [aux_sym_cmd_identifier_token28] = ACTIONS(1048), - [aux_sym_cmd_identifier_token29] = ACTIONS(1048), - [aux_sym_cmd_identifier_token30] = ACTIONS(1048), - [aux_sym_cmd_identifier_token31] = ACTIONS(1048), - [aux_sym_cmd_identifier_token32] = ACTIONS(1048), - [aux_sym_cmd_identifier_token33] = ACTIONS(1048), - [aux_sym_cmd_identifier_token34] = ACTIONS(1048), - [aux_sym_cmd_identifier_token35] = ACTIONS(1048), - [aux_sym_cmd_identifier_token36] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1048), - [anon_sym_export_DASHenv] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_use] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1048), - [anon_sym_list] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_loop] = ACTIONS(1048), - [anon_sym_make] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_source] = ACTIONS(1048), - [anon_sym_source_DASHenv] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_hide_DASHenv] = ACTIONS(1048), - [anon_sym_overlay] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_as] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1848), + [anon_sym_alias] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_let_DASHenv] = ACTIONS(1848), + [anon_sym_mut] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [aux_sym_cmd_identifier_token1] = ACTIONS(1848), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1848), + [aux_sym_cmd_identifier_token9] = ACTIONS(1848), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1848), + [aux_sym_cmd_identifier_token13] = ACTIONS(1848), + [aux_sym_cmd_identifier_token14] = ACTIONS(1848), + [aux_sym_cmd_identifier_token15] = ACTIONS(1848), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1848), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [anon_sym_null] = ACTIONS(1848), + [aux_sym_cmd_identifier_token38] = ACTIONS(1848), + [aux_sym_cmd_identifier_token39] = ACTIONS(1848), + [aux_sym_cmd_identifier_token40] = ACTIONS(1848), + [anon_sym_def] = ACTIONS(1848), + [anon_sym_export_DASHenv] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_module] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_error] = ACTIONS(1848), + [anon_sym_list] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_make] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_else] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_catch] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_source] = ACTIONS(1848), + [anon_sym_source_DASHenv] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_hide] = ACTIONS(1848), + [anon_sym_hide_DASHenv] = ACTIONS(1848), + [anon_sym_overlay] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_as] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), + [sym__entry_separator] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), }, [620] = { [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_alias] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_let_DASHenv] = ACTIONS(2416), - [anon_sym_mut] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [aux_sym_cmd_identifier_token1] = ACTIONS(2416), - [aux_sym_cmd_identifier_token2] = ACTIONS(2416), - [aux_sym_cmd_identifier_token3] = ACTIONS(2416), - [aux_sym_cmd_identifier_token4] = ACTIONS(2416), - [aux_sym_cmd_identifier_token5] = ACTIONS(2416), - [aux_sym_cmd_identifier_token6] = ACTIONS(2416), - [aux_sym_cmd_identifier_token7] = ACTIONS(2416), - [aux_sym_cmd_identifier_token8] = ACTIONS(2416), - [aux_sym_cmd_identifier_token9] = ACTIONS(2416), - [aux_sym_cmd_identifier_token10] = ACTIONS(2416), - [aux_sym_cmd_identifier_token11] = ACTIONS(2416), - [aux_sym_cmd_identifier_token12] = ACTIONS(2416), - [aux_sym_cmd_identifier_token13] = ACTIONS(2416), - [aux_sym_cmd_identifier_token14] = ACTIONS(2416), - [aux_sym_cmd_identifier_token15] = ACTIONS(2416), - [aux_sym_cmd_identifier_token16] = ACTIONS(2416), - [aux_sym_cmd_identifier_token17] = ACTIONS(2416), - [aux_sym_cmd_identifier_token18] = ACTIONS(2416), - [aux_sym_cmd_identifier_token19] = ACTIONS(2416), - [aux_sym_cmd_identifier_token20] = ACTIONS(2416), - [aux_sym_cmd_identifier_token21] = ACTIONS(2416), - [aux_sym_cmd_identifier_token22] = ACTIONS(2416), - [aux_sym_cmd_identifier_token23] = ACTIONS(2416), - [aux_sym_cmd_identifier_token24] = ACTIONS(2416), - [aux_sym_cmd_identifier_token25] = ACTIONS(2416), - [aux_sym_cmd_identifier_token26] = ACTIONS(2416), - [aux_sym_cmd_identifier_token27] = ACTIONS(2416), - [aux_sym_cmd_identifier_token28] = ACTIONS(2416), - [aux_sym_cmd_identifier_token29] = ACTIONS(2416), - [aux_sym_cmd_identifier_token30] = ACTIONS(2416), - [aux_sym_cmd_identifier_token31] = ACTIONS(2416), - [aux_sym_cmd_identifier_token32] = ACTIONS(2416), - [aux_sym_cmd_identifier_token33] = ACTIONS(2416), - [aux_sym_cmd_identifier_token34] = ACTIONS(2416), - [aux_sym_cmd_identifier_token35] = ACTIONS(2416), - [aux_sym_cmd_identifier_token36] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [aux_sym_cmd_identifier_token38] = ACTIONS(2416), - [aux_sym_cmd_identifier_token39] = ACTIONS(2418), - [aux_sym_cmd_identifier_token40] = ACTIONS(2418), - [anon_sym_def] = ACTIONS(2416), - [anon_sym_export_DASHenv] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_error] = ACTIONS(2416), - [anon_sym_list] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_make] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_catch] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_source] = ACTIONS(2416), - [anon_sym_source_DASHenv] = ACTIONS(2416), - [anon_sym_register] = ACTIONS(2416), - [anon_sym_hide] = ACTIONS(2416), - [anon_sym_hide_DASHenv] = ACTIONS(2416), - [anon_sym_overlay] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), - [aux_sym__val_number_decimal_token1] = ACTIONS(2416), - [aux_sym__val_number_decimal_token2] = ACTIONS(2418), - [aux_sym__val_number_decimal_token3] = ACTIONS(2418), - [aux_sym__val_number_decimal_token4] = ACTIONS(2418), - [aux_sym__val_number_token1] = ACTIONS(2418), - [aux_sym__val_number_token2] = ACTIONS(2418), - [aux_sym__val_number_token3] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2418), - [sym__str_single_quotes] = ACTIONS(2418), - [sym__str_back_ticks] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(3), }, [621] = { [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_list] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_make] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_catch] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_alias] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_let_DASHenv] = ACTIONS(2313), + [anon_sym_mut] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [aux_sym_cmd_identifier_token1] = ACTIONS(2313), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2313), + [aux_sym_cmd_identifier_token9] = ACTIONS(2313), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2313), + [aux_sym_cmd_identifier_token13] = ACTIONS(2313), + [aux_sym_cmd_identifier_token14] = ACTIONS(2313), + [aux_sym_cmd_identifier_token15] = ACTIONS(2313), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2313), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2317), + [aux_sym_cmd_identifier_token40] = ACTIONS(2317), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_export_DASHenv] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_error] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_make] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_catch] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_source] = ACTIONS(2313), + [anon_sym_source_DASHenv] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_hide] = ACTIONS(2313), + [anon_sym_hide_DASHenv] = ACTIONS(2313), + [anon_sym_overlay] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), + [aux_sym__val_number_decimal_token1] = ACTIONS(2313), + [aux_sym__val_number_decimal_token2] = ACTIONS(2317), + [aux_sym__val_number_decimal_token3] = ACTIONS(2317), + [aux_sym__val_number_decimal_token4] = ACTIONS(2317), + [aux_sym__val_number_token1] = ACTIONS(2317), + [aux_sym__val_number_token2] = ACTIONS(2317), + [aux_sym__val_number_token3] = ACTIONS(2317), + [anon_sym_LBRACK2] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym__str_single_quotes] = ACTIONS(2317), + [sym__str_back_ticks] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_POUND] = ACTIONS(247), }, [622] = { [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_alias] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_let_DASHenv] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [aux_sym_cmd_identifier_token1] = ACTIONS(2453), - [aux_sym_cmd_identifier_token2] = ACTIONS(2453), - [aux_sym_cmd_identifier_token3] = ACTIONS(2453), - [aux_sym_cmd_identifier_token4] = ACTIONS(2453), - [aux_sym_cmd_identifier_token5] = ACTIONS(2453), - [aux_sym_cmd_identifier_token6] = ACTIONS(2453), - [aux_sym_cmd_identifier_token7] = ACTIONS(2453), - [aux_sym_cmd_identifier_token8] = ACTIONS(2453), - [aux_sym_cmd_identifier_token9] = ACTIONS(2453), - [aux_sym_cmd_identifier_token10] = ACTIONS(2453), - [aux_sym_cmd_identifier_token11] = ACTIONS(2453), - [aux_sym_cmd_identifier_token12] = ACTIONS(2453), - [aux_sym_cmd_identifier_token13] = ACTIONS(2453), - [aux_sym_cmd_identifier_token14] = ACTIONS(2453), - [aux_sym_cmd_identifier_token15] = ACTIONS(2453), - [aux_sym_cmd_identifier_token16] = ACTIONS(2453), - [aux_sym_cmd_identifier_token17] = ACTIONS(2453), - [aux_sym_cmd_identifier_token18] = ACTIONS(2453), - [aux_sym_cmd_identifier_token19] = ACTIONS(2453), - [aux_sym_cmd_identifier_token20] = ACTIONS(2453), - [aux_sym_cmd_identifier_token21] = ACTIONS(2453), - [aux_sym_cmd_identifier_token22] = ACTIONS(2453), - [aux_sym_cmd_identifier_token23] = ACTIONS(2453), - [aux_sym_cmd_identifier_token24] = ACTIONS(2453), - [aux_sym_cmd_identifier_token25] = ACTIONS(2453), - [aux_sym_cmd_identifier_token26] = ACTIONS(2453), - [aux_sym_cmd_identifier_token27] = ACTIONS(2453), - [aux_sym_cmd_identifier_token28] = ACTIONS(2453), - [aux_sym_cmd_identifier_token29] = ACTIONS(2453), - [aux_sym_cmd_identifier_token30] = ACTIONS(2453), - [aux_sym_cmd_identifier_token31] = ACTIONS(2453), - [aux_sym_cmd_identifier_token32] = ACTIONS(2453), - [aux_sym_cmd_identifier_token33] = ACTIONS(2453), - [aux_sym_cmd_identifier_token34] = ACTIONS(2453), - [aux_sym_cmd_identifier_token35] = ACTIONS(2453), - [aux_sym_cmd_identifier_token36] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2455), - [aux_sym_cmd_identifier_token38] = ACTIONS(2453), - [aux_sym_cmd_identifier_token39] = ACTIONS(2455), - [aux_sym_cmd_identifier_token40] = ACTIONS(2455), - [anon_sym_def] = ACTIONS(2453), - [anon_sym_export_DASHenv] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_error] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_in] = ACTIONS(2453), - [anon_sym_loop] = ACTIONS(2453), - [anon_sym_make] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_catch] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_source] = ACTIONS(2453), - [anon_sym_source_DASHenv] = ACTIONS(2453), - [anon_sym_register] = ACTIONS(2453), - [anon_sym_hide] = ACTIONS(2453), - [anon_sym_hide_DASHenv] = ACTIONS(2453), - [anon_sym_overlay] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2453), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2455), - [aux_sym__val_number_decimal_token4] = ACTIONS(2455), - [aux_sym__val_number_token1] = ACTIONS(2455), - [aux_sym__val_number_token2] = ACTIONS(2455), - [aux_sym__val_number_token3] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [sym__str_single_quotes] = ACTIONS(2455), - [sym__str_back_ticks] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [sym__entry_separator] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(3), }, [623] = { [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_alias] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_let_DASHenv] = ACTIONS(2457), - [anon_sym_mut] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [aux_sym_cmd_identifier_token1] = ACTIONS(2457), - [aux_sym_cmd_identifier_token2] = ACTIONS(2457), - [aux_sym_cmd_identifier_token3] = ACTIONS(2457), - [aux_sym_cmd_identifier_token4] = ACTIONS(2457), - [aux_sym_cmd_identifier_token5] = ACTIONS(2457), - [aux_sym_cmd_identifier_token6] = ACTIONS(2457), - [aux_sym_cmd_identifier_token7] = ACTIONS(2457), - [aux_sym_cmd_identifier_token8] = ACTIONS(2457), - [aux_sym_cmd_identifier_token9] = ACTIONS(2457), - [aux_sym_cmd_identifier_token10] = ACTIONS(2457), - [aux_sym_cmd_identifier_token11] = ACTIONS(2457), - [aux_sym_cmd_identifier_token12] = ACTIONS(2457), - [aux_sym_cmd_identifier_token13] = ACTIONS(2457), - [aux_sym_cmd_identifier_token14] = ACTIONS(2457), - [aux_sym_cmd_identifier_token15] = ACTIONS(2457), - [aux_sym_cmd_identifier_token16] = ACTIONS(2457), - [aux_sym_cmd_identifier_token17] = ACTIONS(2457), - [aux_sym_cmd_identifier_token18] = ACTIONS(2457), - [aux_sym_cmd_identifier_token19] = ACTIONS(2457), - [aux_sym_cmd_identifier_token20] = ACTIONS(2457), - [aux_sym_cmd_identifier_token21] = ACTIONS(2457), - [aux_sym_cmd_identifier_token22] = ACTIONS(2457), - [aux_sym_cmd_identifier_token23] = ACTIONS(2457), - [aux_sym_cmd_identifier_token24] = ACTIONS(2457), - [aux_sym_cmd_identifier_token25] = ACTIONS(2457), - [aux_sym_cmd_identifier_token26] = ACTIONS(2457), - [aux_sym_cmd_identifier_token27] = ACTIONS(2457), - [aux_sym_cmd_identifier_token28] = ACTIONS(2457), - [aux_sym_cmd_identifier_token29] = ACTIONS(2457), - [aux_sym_cmd_identifier_token30] = ACTIONS(2457), - [aux_sym_cmd_identifier_token31] = ACTIONS(2457), - [aux_sym_cmd_identifier_token32] = ACTIONS(2457), - [aux_sym_cmd_identifier_token33] = ACTIONS(2457), - [aux_sym_cmd_identifier_token34] = ACTIONS(2457), - [aux_sym_cmd_identifier_token35] = ACTIONS(2457), - [aux_sym_cmd_identifier_token36] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2459), - [anon_sym_false] = ACTIONS(2459), - [anon_sym_null] = ACTIONS(2459), - [aux_sym_cmd_identifier_token38] = ACTIONS(2457), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [anon_sym_def] = ACTIONS(2457), - [anon_sym_export_DASHenv] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_error] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_in] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2457), - [anon_sym_make] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_source] = ACTIONS(2457), - [anon_sym_source_DASHenv] = ACTIONS(2457), - [anon_sym_register] = ACTIONS(2457), - [anon_sym_hide] = ACTIONS(2457), - [anon_sym_hide_DASHenv] = ACTIONS(2457), - [anon_sym_overlay] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_as] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), - [aux_sym__val_number_decimal_token1] = ACTIONS(2457), - [aux_sym__val_number_decimal_token2] = ACTIONS(2459), - [aux_sym__val_number_decimal_token3] = ACTIONS(2459), - [aux_sym__val_number_decimal_token4] = ACTIONS(2459), - [aux_sym__val_number_token1] = ACTIONS(2459), - [aux_sym__val_number_token2] = ACTIONS(2459), - [aux_sym__val_number_token3] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [sym__str_single_quotes] = ACTIONS(2459), - [sym__str_back_ticks] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_alias] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_let_DASHenv] = ACTIONS(2531), + [anon_sym_mut] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [aux_sym_cmd_identifier_token1] = ACTIONS(2531), + [aux_sym_cmd_identifier_token2] = ACTIONS(2531), + [aux_sym_cmd_identifier_token3] = ACTIONS(2531), + [aux_sym_cmd_identifier_token4] = ACTIONS(2531), + [aux_sym_cmd_identifier_token5] = ACTIONS(2531), + [aux_sym_cmd_identifier_token6] = ACTIONS(2531), + [aux_sym_cmd_identifier_token7] = ACTIONS(2531), + [aux_sym_cmd_identifier_token8] = ACTIONS(2531), + [aux_sym_cmd_identifier_token9] = ACTIONS(2531), + [aux_sym_cmd_identifier_token10] = ACTIONS(2531), + [aux_sym_cmd_identifier_token11] = ACTIONS(2531), + [aux_sym_cmd_identifier_token12] = ACTIONS(2531), + [aux_sym_cmd_identifier_token13] = ACTIONS(2531), + [aux_sym_cmd_identifier_token14] = ACTIONS(2531), + [aux_sym_cmd_identifier_token15] = ACTIONS(2531), + [aux_sym_cmd_identifier_token16] = ACTIONS(2531), + [aux_sym_cmd_identifier_token17] = ACTIONS(2531), + [aux_sym_cmd_identifier_token18] = ACTIONS(2531), + [aux_sym_cmd_identifier_token19] = ACTIONS(2531), + [aux_sym_cmd_identifier_token20] = ACTIONS(2531), + [aux_sym_cmd_identifier_token21] = ACTIONS(2531), + [aux_sym_cmd_identifier_token22] = ACTIONS(2531), + [aux_sym_cmd_identifier_token23] = ACTIONS(2531), + [aux_sym_cmd_identifier_token24] = ACTIONS(2531), + [aux_sym_cmd_identifier_token25] = ACTIONS(2531), + [aux_sym_cmd_identifier_token26] = ACTIONS(2531), + [aux_sym_cmd_identifier_token27] = ACTIONS(2531), + [aux_sym_cmd_identifier_token28] = ACTIONS(2531), + [aux_sym_cmd_identifier_token29] = ACTIONS(2531), + [aux_sym_cmd_identifier_token30] = ACTIONS(2531), + [aux_sym_cmd_identifier_token31] = ACTIONS(2531), + [aux_sym_cmd_identifier_token32] = ACTIONS(2531), + [aux_sym_cmd_identifier_token33] = ACTIONS(2531), + [aux_sym_cmd_identifier_token34] = ACTIONS(2531), + [aux_sym_cmd_identifier_token35] = ACTIONS(2531), + [aux_sym_cmd_identifier_token36] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [aux_sym_cmd_identifier_token38] = ACTIONS(2531), + [aux_sym_cmd_identifier_token39] = ACTIONS(2533), + [aux_sym_cmd_identifier_token40] = ACTIONS(2533), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_export_DASHenv] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_DOLLAR] = ACTIONS(2533), + [anon_sym_error] = ACTIONS(2531), + [anon_sym_list] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_in] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_make] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_source] = ACTIONS(2531), + [anon_sym_source_DASHenv] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_hide] = ACTIONS(2531), + [anon_sym_hide_DASHenv] = ACTIONS(2531), + [anon_sym_overlay] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_as] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2533), + [aux_sym__val_number_decimal_token1] = ACTIONS(2531), + [aux_sym__val_number_decimal_token2] = ACTIONS(2533), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(2533), + [aux_sym__val_number_token2] = ACTIONS(2533), + [aux_sym__val_number_token3] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym__str_single_quotes] = ACTIONS(2533), + [sym__str_back_ticks] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2531), [anon_sym_POUND] = ACTIONS(247), }, [624] = { [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1894), - [aux_sym_cmd_identifier_token4] = ACTIONS(1894), - [aux_sym_cmd_identifier_token5] = ACTIONS(1894), - [aux_sym_cmd_identifier_token6] = ACTIONS(1894), - [aux_sym_cmd_identifier_token7] = ACTIONS(1894), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1894), - [aux_sym_cmd_identifier_token11] = ACTIONS(1894), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1894), - [aux_sym_cmd_identifier_token17] = ACTIONS(1894), - [aux_sym_cmd_identifier_token18] = ACTIONS(1894), - [aux_sym_cmd_identifier_token19] = ACTIONS(1894), - [aux_sym_cmd_identifier_token20] = ACTIONS(1894), - [aux_sym_cmd_identifier_token21] = ACTIONS(1894), - [aux_sym_cmd_identifier_token22] = ACTIONS(1894), - [aux_sym_cmd_identifier_token23] = ACTIONS(1894), - [aux_sym_cmd_identifier_token24] = ACTIONS(1894), - [aux_sym_cmd_identifier_token25] = ACTIONS(1894), - [aux_sym_cmd_identifier_token26] = ACTIONS(1894), - [aux_sym_cmd_identifier_token27] = ACTIONS(1894), - [aux_sym_cmd_identifier_token28] = ACTIONS(1894), - [aux_sym_cmd_identifier_token29] = ACTIONS(1894), - [aux_sym_cmd_identifier_token30] = ACTIONS(1894), - [aux_sym_cmd_identifier_token31] = ACTIONS(1894), - [aux_sym_cmd_identifier_token32] = ACTIONS(1894), - [aux_sym_cmd_identifier_token33] = ACTIONS(1894), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1894), - [aux_sym_cmd_identifier_token36] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_list] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_new] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_alias] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_let_DASHenv] = ACTIONS(2366), + [anon_sym_mut] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [aux_sym_cmd_identifier_token1] = ACTIONS(2366), + [aux_sym_cmd_identifier_token2] = ACTIONS(2366), + [aux_sym_cmd_identifier_token3] = ACTIONS(2366), + [aux_sym_cmd_identifier_token4] = ACTIONS(2366), + [aux_sym_cmd_identifier_token5] = ACTIONS(2366), + [aux_sym_cmd_identifier_token6] = ACTIONS(2366), + [aux_sym_cmd_identifier_token7] = ACTIONS(2366), + [aux_sym_cmd_identifier_token8] = ACTIONS(2366), + [aux_sym_cmd_identifier_token9] = ACTIONS(2366), + [aux_sym_cmd_identifier_token10] = ACTIONS(2366), + [aux_sym_cmd_identifier_token11] = ACTIONS(2366), + [aux_sym_cmd_identifier_token12] = ACTIONS(2366), + [aux_sym_cmd_identifier_token13] = ACTIONS(2366), + [aux_sym_cmd_identifier_token14] = ACTIONS(2366), + [aux_sym_cmd_identifier_token15] = ACTIONS(2366), + [aux_sym_cmd_identifier_token16] = ACTIONS(2366), + [aux_sym_cmd_identifier_token17] = ACTIONS(2366), + [aux_sym_cmd_identifier_token18] = ACTIONS(2366), + [aux_sym_cmd_identifier_token19] = ACTIONS(2366), + [aux_sym_cmd_identifier_token20] = ACTIONS(2366), + [aux_sym_cmd_identifier_token21] = ACTIONS(2366), + [aux_sym_cmd_identifier_token22] = ACTIONS(2366), + [aux_sym_cmd_identifier_token23] = ACTIONS(2366), + [aux_sym_cmd_identifier_token24] = ACTIONS(2366), + [aux_sym_cmd_identifier_token25] = ACTIONS(2366), + [aux_sym_cmd_identifier_token26] = ACTIONS(2366), + [aux_sym_cmd_identifier_token27] = ACTIONS(2366), + [aux_sym_cmd_identifier_token28] = ACTIONS(2366), + [aux_sym_cmd_identifier_token29] = ACTIONS(2366), + [aux_sym_cmd_identifier_token30] = ACTIONS(2366), + [aux_sym_cmd_identifier_token31] = ACTIONS(2366), + [aux_sym_cmd_identifier_token32] = ACTIONS(2366), + [aux_sym_cmd_identifier_token33] = ACTIONS(2366), + [aux_sym_cmd_identifier_token34] = ACTIONS(2366), + [aux_sym_cmd_identifier_token35] = ACTIONS(2366), + [aux_sym_cmd_identifier_token36] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [anon_sym_null] = ACTIONS(2368), + [aux_sym_cmd_identifier_token38] = ACTIONS(2366), + [aux_sym_cmd_identifier_token39] = ACTIONS(2368), + [aux_sym_cmd_identifier_token40] = ACTIONS(2368), + [anon_sym_def] = ACTIONS(2366), + [anon_sym_export_DASHenv] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2368), + [anon_sym_error] = ACTIONS(2366), + [anon_sym_list] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_make] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_catch] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_source] = ACTIONS(2366), + [anon_sym_source_DASHenv] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2366), + [anon_sym_hide] = ACTIONS(2366), + [anon_sym_hide_DASHenv] = ACTIONS(2366), + [anon_sym_overlay] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), + [aux_sym__val_number_decimal_token1] = ACTIONS(2366), + [aux_sym__val_number_decimal_token2] = ACTIONS(2368), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(2368), + [aux_sym__val_number_token2] = ACTIONS(2368), + [aux_sym__val_number_token3] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym__str_single_quotes] = ACTIONS(2368), + [sym__str_back_ticks] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2366), [anon_sym_POUND] = ACTIONS(247), }, [625] = { [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(1631), - [anon_sym_alias] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_let_DASHenv] = ACTIONS(1631), - [anon_sym_mut] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [aux_sym_cmd_identifier_token1] = ACTIONS(1631), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1631), - [aux_sym_cmd_identifier_token9] = ACTIONS(1631), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1631), - [aux_sym_cmd_identifier_token13] = ACTIONS(1631), - [aux_sym_cmd_identifier_token14] = ACTIONS(1631), - [aux_sym_cmd_identifier_token15] = ACTIONS(1631), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1631), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1631), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_export_DASHenv] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_module] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1633), - [anon_sym_error] = ACTIONS(1631), - [anon_sym_list] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_make] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_else] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_catch] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_source] = ACTIONS(1631), - [anon_sym_source_DASHenv] = ACTIONS(1631), - [anon_sym_register] = ACTIONS(1631), - [anon_sym_hide] = ACTIONS(1631), - [anon_sym_hide_DASHenv] = ACTIONS(1631), - [anon_sym_overlay] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_alias] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_let_DASHenv] = ACTIONS(1947), + [anon_sym_mut] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [aux_sym_cmd_identifier_token1] = ACTIONS(1947), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1947), + [aux_sym_cmd_identifier_token9] = ACTIONS(1947), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1947), + [aux_sym_cmd_identifier_token13] = ACTIONS(1947), + [aux_sym_cmd_identifier_token14] = ACTIONS(1947), + [aux_sym_cmd_identifier_token15] = ACTIONS(1947), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1947), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1947), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_export_DASHenv] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_module] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1947), + [anon_sym_list] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_make] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_source] = ACTIONS(1947), + [anon_sym_source_DASHenv] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_hide] = ACTIONS(1947), + [anon_sym_hide_DASHenv] = ACTIONS(1947), + [anon_sym_overlay] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_as] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1947), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(247), }, [626] = { [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_list] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_alias] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_let_DASHenv] = ACTIONS(2400), + [anon_sym_mut] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [aux_sym_cmd_identifier_token1] = ACTIONS(2400), + [aux_sym_cmd_identifier_token2] = ACTIONS(2400), + [aux_sym_cmd_identifier_token3] = ACTIONS(2400), + [aux_sym_cmd_identifier_token4] = ACTIONS(2400), + [aux_sym_cmd_identifier_token5] = ACTIONS(2400), + [aux_sym_cmd_identifier_token6] = ACTIONS(2400), + [aux_sym_cmd_identifier_token7] = ACTIONS(2400), + [aux_sym_cmd_identifier_token8] = ACTIONS(2400), + [aux_sym_cmd_identifier_token9] = ACTIONS(2400), + [aux_sym_cmd_identifier_token10] = ACTIONS(2400), + [aux_sym_cmd_identifier_token11] = ACTIONS(2400), + [aux_sym_cmd_identifier_token12] = ACTIONS(2400), + [aux_sym_cmd_identifier_token13] = ACTIONS(2400), + [aux_sym_cmd_identifier_token14] = ACTIONS(2400), + [aux_sym_cmd_identifier_token15] = ACTIONS(2400), + [aux_sym_cmd_identifier_token16] = ACTIONS(2400), + [aux_sym_cmd_identifier_token17] = ACTIONS(2400), + [aux_sym_cmd_identifier_token18] = ACTIONS(2400), + [aux_sym_cmd_identifier_token19] = ACTIONS(2400), + [aux_sym_cmd_identifier_token20] = ACTIONS(2400), + [aux_sym_cmd_identifier_token21] = ACTIONS(2400), + [aux_sym_cmd_identifier_token22] = ACTIONS(2400), + [aux_sym_cmd_identifier_token23] = ACTIONS(2400), + [aux_sym_cmd_identifier_token24] = ACTIONS(2400), + [aux_sym_cmd_identifier_token25] = ACTIONS(2400), + [aux_sym_cmd_identifier_token26] = ACTIONS(2400), + [aux_sym_cmd_identifier_token27] = ACTIONS(2400), + [aux_sym_cmd_identifier_token28] = ACTIONS(2400), + [aux_sym_cmd_identifier_token29] = ACTIONS(2400), + [aux_sym_cmd_identifier_token30] = ACTIONS(2400), + [aux_sym_cmd_identifier_token31] = ACTIONS(2400), + [aux_sym_cmd_identifier_token32] = ACTIONS(2400), + [aux_sym_cmd_identifier_token33] = ACTIONS(2400), + [aux_sym_cmd_identifier_token34] = ACTIONS(2400), + [aux_sym_cmd_identifier_token35] = ACTIONS(2400), + [aux_sym_cmd_identifier_token36] = ACTIONS(2400), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [aux_sym_cmd_identifier_token38] = ACTIONS(2400), + [aux_sym_cmd_identifier_token39] = ACTIONS(2402), + [aux_sym_cmd_identifier_token40] = ACTIONS(2402), + [anon_sym_def] = ACTIONS(2400), + [anon_sym_export_DASHenv] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_use] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2400), + [anon_sym_list] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_in] = ACTIONS(2400), + [anon_sym_loop] = ACTIONS(2400), + [anon_sym_make] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_match] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_catch] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_source] = ACTIONS(2400), + [anon_sym_source_DASHenv] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_hide] = ACTIONS(2400), + [anon_sym_hide_DASHenv] = ACTIONS(2400), + [anon_sym_overlay] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_as] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2400), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_decimal_token4] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym__str_single_quotes] = ACTIONS(2402), + [sym__str_back_ticks] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2400), [anon_sym_POUND] = ACTIONS(247), }, [627] = { [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_alias] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_let_DASHenv] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [aux_sym_cmd_identifier_token1] = ACTIONS(2477), - [aux_sym_cmd_identifier_token2] = ACTIONS(2477), - [aux_sym_cmd_identifier_token3] = ACTIONS(2477), - [aux_sym_cmd_identifier_token4] = ACTIONS(2477), - [aux_sym_cmd_identifier_token5] = ACTIONS(2477), - [aux_sym_cmd_identifier_token6] = ACTIONS(2477), - [aux_sym_cmd_identifier_token7] = ACTIONS(2477), - [aux_sym_cmd_identifier_token8] = ACTIONS(2477), - [aux_sym_cmd_identifier_token9] = ACTIONS(2477), - [aux_sym_cmd_identifier_token10] = ACTIONS(2477), - [aux_sym_cmd_identifier_token11] = ACTIONS(2477), - [aux_sym_cmd_identifier_token12] = ACTIONS(2477), - [aux_sym_cmd_identifier_token13] = ACTIONS(2477), - [aux_sym_cmd_identifier_token14] = ACTIONS(2477), - [aux_sym_cmd_identifier_token15] = ACTIONS(2477), - [aux_sym_cmd_identifier_token16] = ACTIONS(2477), - [aux_sym_cmd_identifier_token17] = ACTIONS(2477), - [aux_sym_cmd_identifier_token18] = ACTIONS(2477), - [aux_sym_cmd_identifier_token19] = ACTIONS(2477), - [aux_sym_cmd_identifier_token20] = ACTIONS(2477), - [aux_sym_cmd_identifier_token21] = ACTIONS(2477), - [aux_sym_cmd_identifier_token22] = ACTIONS(2477), - [aux_sym_cmd_identifier_token23] = ACTIONS(2477), - [aux_sym_cmd_identifier_token24] = ACTIONS(2477), - [aux_sym_cmd_identifier_token25] = ACTIONS(2477), - [aux_sym_cmd_identifier_token26] = ACTIONS(2477), - [aux_sym_cmd_identifier_token27] = ACTIONS(2477), - [aux_sym_cmd_identifier_token28] = ACTIONS(2477), - [aux_sym_cmd_identifier_token29] = ACTIONS(2477), - [aux_sym_cmd_identifier_token30] = ACTIONS(2477), - [aux_sym_cmd_identifier_token31] = ACTIONS(2477), - [aux_sym_cmd_identifier_token32] = ACTIONS(2477), - [aux_sym_cmd_identifier_token33] = ACTIONS(2477), - [aux_sym_cmd_identifier_token34] = ACTIONS(2477), - [aux_sym_cmd_identifier_token35] = ACTIONS(2477), - [aux_sym_cmd_identifier_token36] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [anon_sym_null] = ACTIONS(2479), - [aux_sym_cmd_identifier_token38] = ACTIONS(2477), - [aux_sym_cmd_identifier_token39] = ACTIONS(2479), - [aux_sym_cmd_identifier_token40] = ACTIONS(2479), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_export_DASHenv] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_error] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_loop] = ACTIONS(2477), - [anon_sym_make] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_catch] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_source] = ACTIONS(2477), - [anon_sym_source_DASHenv] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2477), - [anon_sym_hide] = ACTIONS(2477), - [anon_sym_hide_DASHenv] = ACTIONS(2477), - [anon_sym_overlay] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2477), - [aux_sym__val_number_decimal_token2] = ACTIONS(2479), - [aux_sym__val_number_decimal_token3] = ACTIONS(2479), - [aux_sym__val_number_decimal_token4] = ACTIONS(2479), - [aux_sym__val_number_token1] = ACTIONS(2479), - [aux_sym__val_number_token2] = ACTIONS(2479), - [aux_sym__val_number_token3] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2358), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [aux_sym_cmd_identifier_token6] = ACTIONS(2358), + [aux_sym_cmd_identifier_token7] = ACTIONS(2358), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2358), + [aux_sym_cmd_identifier_token11] = ACTIONS(2358), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2358), + [aux_sym_cmd_identifier_token17] = ACTIONS(2358), + [aux_sym_cmd_identifier_token18] = ACTIONS(2358), + [aux_sym_cmd_identifier_token19] = ACTIONS(2358), + [aux_sym_cmd_identifier_token20] = ACTIONS(2358), + [aux_sym_cmd_identifier_token21] = ACTIONS(2358), + [aux_sym_cmd_identifier_token22] = ACTIONS(2358), + [aux_sym_cmd_identifier_token23] = ACTIONS(2358), + [aux_sym_cmd_identifier_token24] = ACTIONS(2358), + [aux_sym_cmd_identifier_token25] = ACTIONS(2358), + [aux_sym_cmd_identifier_token26] = ACTIONS(2358), + [aux_sym_cmd_identifier_token27] = ACTIONS(2358), + [aux_sym_cmd_identifier_token28] = ACTIONS(2358), + [aux_sym_cmd_identifier_token29] = ACTIONS(2358), + [aux_sym_cmd_identifier_token30] = ACTIONS(2358), + [aux_sym_cmd_identifier_token31] = ACTIONS(2358), + [aux_sym_cmd_identifier_token32] = ACTIONS(2358), + [aux_sym_cmd_identifier_token33] = ACTIONS(2358), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2358), + [aux_sym_cmd_identifier_token36] = ACTIONS(2358), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [anon_sym_null] = ACTIONS(2360), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2360), + [aux_sym_cmd_identifier_token40] = ACTIONS(2360), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_list] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2360), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(2360), + [aux_sym__val_number_token2] = ACTIONS(2360), + [aux_sym__val_number_token3] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym__str_single_quotes] = ACTIONS(2360), + [sym__str_back_ticks] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2358), [anon_sym_POUND] = ACTIONS(247), }, [628] = { [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_list] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_let_DASHenv] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [aux_sym_cmd_identifier_token2] = ACTIONS(1931), + [aux_sym_cmd_identifier_token3] = ACTIONS(1931), + [aux_sym_cmd_identifier_token4] = ACTIONS(1931), + [aux_sym_cmd_identifier_token5] = ACTIONS(1931), + [aux_sym_cmd_identifier_token6] = ACTIONS(1931), + [aux_sym_cmd_identifier_token7] = ACTIONS(1931), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1931), + [aux_sym_cmd_identifier_token11] = ACTIONS(1931), + [aux_sym_cmd_identifier_token12] = ACTIONS(1931), + [aux_sym_cmd_identifier_token13] = ACTIONS(1931), + [aux_sym_cmd_identifier_token14] = ACTIONS(1931), + [aux_sym_cmd_identifier_token15] = ACTIONS(1931), + [aux_sym_cmd_identifier_token16] = ACTIONS(1931), + [aux_sym_cmd_identifier_token17] = ACTIONS(1931), + [aux_sym_cmd_identifier_token18] = ACTIONS(1931), + [aux_sym_cmd_identifier_token19] = ACTIONS(1931), + [aux_sym_cmd_identifier_token20] = ACTIONS(1931), + [aux_sym_cmd_identifier_token21] = ACTIONS(1931), + [aux_sym_cmd_identifier_token22] = ACTIONS(1931), + [aux_sym_cmd_identifier_token23] = ACTIONS(1931), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1931), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1931), + [aux_sym_cmd_identifier_token28] = ACTIONS(1931), + [aux_sym_cmd_identifier_token29] = ACTIONS(1931), + [aux_sym_cmd_identifier_token30] = ACTIONS(1931), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1933), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1933), + [aux_sym_cmd_identifier_token40] = ACTIONS(1933), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_export_DASHenv] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_list] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_make] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_source] = ACTIONS(1931), + [anon_sym_source_DASHenv] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1931), [anon_sym_POUND] = ACTIONS(247), }, [629] = { [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_alias] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_let_DASHenv] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [aux_sym_cmd_identifier_token1] = ACTIONS(2465), - [aux_sym_cmd_identifier_token2] = ACTIONS(2465), - [aux_sym_cmd_identifier_token3] = ACTIONS(2465), - [aux_sym_cmd_identifier_token4] = ACTIONS(2465), - [aux_sym_cmd_identifier_token5] = ACTIONS(2465), - [aux_sym_cmd_identifier_token6] = ACTIONS(2465), - [aux_sym_cmd_identifier_token7] = ACTIONS(2465), - [aux_sym_cmd_identifier_token8] = ACTIONS(2465), - [aux_sym_cmd_identifier_token9] = ACTIONS(2465), - [aux_sym_cmd_identifier_token10] = ACTIONS(2465), - [aux_sym_cmd_identifier_token11] = ACTIONS(2465), - [aux_sym_cmd_identifier_token12] = ACTIONS(2465), - [aux_sym_cmd_identifier_token13] = ACTIONS(2465), - [aux_sym_cmd_identifier_token14] = ACTIONS(2465), - [aux_sym_cmd_identifier_token15] = ACTIONS(2465), - [aux_sym_cmd_identifier_token16] = ACTIONS(2465), - [aux_sym_cmd_identifier_token17] = ACTIONS(2465), - [aux_sym_cmd_identifier_token18] = ACTIONS(2465), - [aux_sym_cmd_identifier_token19] = ACTIONS(2465), - [aux_sym_cmd_identifier_token20] = ACTIONS(2465), - [aux_sym_cmd_identifier_token21] = ACTIONS(2465), - [aux_sym_cmd_identifier_token22] = ACTIONS(2465), - [aux_sym_cmd_identifier_token23] = ACTIONS(2465), - [aux_sym_cmd_identifier_token24] = ACTIONS(2465), - [aux_sym_cmd_identifier_token25] = ACTIONS(2465), - [aux_sym_cmd_identifier_token26] = ACTIONS(2465), - [aux_sym_cmd_identifier_token27] = ACTIONS(2465), - [aux_sym_cmd_identifier_token28] = ACTIONS(2465), - [aux_sym_cmd_identifier_token29] = ACTIONS(2465), - [aux_sym_cmd_identifier_token30] = ACTIONS(2465), - [aux_sym_cmd_identifier_token31] = ACTIONS(2465), - [aux_sym_cmd_identifier_token32] = ACTIONS(2465), - [aux_sym_cmd_identifier_token33] = ACTIONS(2465), - [aux_sym_cmd_identifier_token34] = ACTIONS(2465), - [aux_sym_cmd_identifier_token35] = ACTIONS(2465), - [aux_sym_cmd_identifier_token36] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [anon_sym_null] = ACTIONS(2467), - [aux_sym_cmd_identifier_token38] = ACTIONS(2465), - [aux_sym_cmd_identifier_token39] = ACTIONS(2467), - [aux_sym_cmd_identifier_token40] = ACTIONS(2467), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_export_DASHenv] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_error] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2465), - [anon_sym_make] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_catch] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_source] = ACTIONS(2465), - [anon_sym_source_DASHenv] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_hide] = ACTIONS(2465), - [anon_sym_hide_DASHenv] = ACTIONS(2465), - [anon_sym_overlay] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2467), - [aux_sym__val_number_decimal_token3] = ACTIONS(2467), - [aux_sym__val_number_decimal_token4] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2467), - [aux_sym__val_number_token2] = ACTIONS(2467), - [aux_sym__val_number_token3] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym__str_single_quotes] = ACTIONS(2467), - [sym__str_back_ticks] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_export] = ACTIONS(1311), + [anon_sym_alias] = ACTIONS(1311), + [anon_sym_let] = ACTIONS(1311), + [anon_sym_let_DASHenv] = ACTIONS(1311), + [anon_sym_mut] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [aux_sym_cmd_identifier_token1] = ACTIONS(1311), + [aux_sym_cmd_identifier_token2] = ACTIONS(1311), + [aux_sym_cmd_identifier_token3] = ACTIONS(1311), + [aux_sym_cmd_identifier_token4] = ACTIONS(1311), + [aux_sym_cmd_identifier_token5] = ACTIONS(1311), + [aux_sym_cmd_identifier_token6] = ACTIONS(1311), + [aux_sym_cmd_identifier_token7] = ACTIONS(1311), + [aux_sym_cmd_identifier_token8] = ACTIONS(1311), + [aux_sym_cmd_identifier_token9] = ACTIONS(1311), + [aux_sym_cmd_identifier_token10] = ACTIONS(1311), + [aux_sym_cmd_identifier_token11] = ACTIONS(1311), + [aux_sym_cmd_identifier_token12] = ACTIONS(1311), + [aux_sym_cmd_identifier_token13] = ACTIONS(1311), + [aux_sym_cmd_identifier_token14] = ACTIONS(1311), + [aux_sym_cmd_identifier_token15] = ACTIONS(1311), + [aux_sym_cmd_identifier_token16] = ACTIONS(1311), + [aux_sym_cmd_identifier_token17] = ACTIONS(1311), + [aux_sym_cmd_identifier_token18] = ACTIONS(1311), + [aux_sym_cmd_identifier_token19] = ACTIONS(1311), + [aux_sym_cmd_identifier_token20] = ACTIONS(1311), + [aux_sym_cmd_identifier_token21] = ACTIONS(1311), + [aux_sym_cmd_identifier_token22] = ACTIONS(1311), + [aux_sym_cmd_identifier_token23] = ACTIONS(1311), + [aux_sym_cmd_identifier_token24] = ACTIONS(1311), + [aux_sym_cmd_identifier_token25] = ACTIONS(1311), + [aux_sym_cmd_identifier_token26] = ACTIONS(1311), + [aux_sym_cmd_identifier_token27] = ACTIONS(1311), + [aux_sym_cmd_identifier_token28] = ACTIONS(1311), + [aux_sym_cmd_identifier_token29] = ACTIONS(1311), + [aux_sym_cmd_identifier_token30] = ACTIONS(1311), + [aux_sym_cmd_identifier_token31] = ACTIONS(1311), + [aux_sym_cmd_identifier_token32] = ACTIONS(1311), + [aux_sym_cmd_identifier_token33] = ACTIONS(1311), + [aux_sym_cmd_identifier_token34] = ACTIONS(1311), + [aux_sym_cmd_identifier_token35] = ACTIONS(1311), + [aux_sym_cmd_identifier_token36] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1311), + [anon_sym_export_DASHenv] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_module] = ACTIONS(1311), + [anon_sym_use] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1311), + [anon_sym_list] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_in] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1311), + [anon_sym_make] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_source] = ACTIONS(1311), + [anon_sym_source_DASHenv] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_hide] = ACTIONS(1311), + [anon_sym_hide_DASHenv] = ACTIONS(1311), + [anon_sym_overlay] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1307), + [aux_sym__val_number_decimal_token3] = ACTIONS(1307), + [aux_sym__val_number_decimal_token4] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1311), [anon_sym_POUND] = ACTIONS(247), }, [630] = { [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [aux_sym_cmd_identifier_token1] = ACTIONS(2061), - [aux_sym_cmd_identifier_token2] = ACTIONS(2061), - [aux_sym_cmd_identifier_token3] = ACTIONS(2061), - [aux_sym_cmd_identifier_token4] = ACTIONS(2061), - [aux_sym_cmd_identifier_token5] = ACTIONS(2061), - [aux_sym_cmd_identifier_token6] = ACTIONS(2061), - [aux_sym_cmd_identifier_token7] = ACTIONS(2061), - [aux_sym_cmd_identifier_token8] = ACTIONS(2061), - [aux_sym_cmd_identifier_token9] = ACTIONS(2061), - [aux_sym_cmd_identifier_token10] = ACTIONS(2061), - [aux_sym_cmd_identifier_token11] = ACTIONS(2061), - [aux_sym_cmd_identifier_token12] = ACTIONS(2061), - [aux_sym_cmd_identifier_token13] = ACTIONS(2061), - [aux_sym_cmd_identifier_token14] = ACTIONS(2061), - [aux_sym_cmd_identifier_token15] = ACTIONS(2061), - [aux_sym_cmd_identifier_token16] = ACTIONS(2061), - [aux_sym_cmd_identifier_token17] = ACTIONS(2061), - [aux_sym_cmd_identifier_token18] = ACTIONS(2061), - [aux_sym_cmd_identifier_token19] = ACTIONS(2061), - [aux_sym_cmd_identifier_token20] = ACTIONS(2061), - [aux_sym_cmd_identifier_token21] = ACTIONS(2061), - [aux_sym_cmd_identifier_token22] = ACTIONS(2061), - [aux_sym_cmd_identifier_token23] = ACTIONS(2061), - [aux_sym_cmd_identifier_token24] = ACTIONS(2061), - [aux_sym_cmd_identifier_token25] = ACTIONS(2061), - [aux_sym_cmd_identifier_token26] = ACTIONS(2061), - [aux_sym_cmd_identifier_token27] = ACTIONS(2061), - [aux_sym_cmd_identifier_token28] = ACTIONS(2061), - [aux_sym_cmd_identifier_token29] = ACTIONS(2061), - [aux_sym_cmd_identifier_token30] = ACTIONS(2061), - [aux_sym_cmd_identifier_token31] = ACTIONS(2061), - [aux_sym_cmd_identifier_token32] = ACTIONS(2061), - [aux_sym_cmd_identifier_token33] = ACTIONS(2061), - [aux_sym_cmd_identifier_token34] = ACTIONS(2061), - [aux_sym_cmd_identifier_token35] = ACTIONS(2061), - [aux_sym_cmd_identifier_token36] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token38] = ACTIONS(2061), - [aux_sym_cmd_identifier_token39] = ACTIONS(2067), - [aux_sym_cmd_identifier_token40] = ACTIONS(2067), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_make] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_catch] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [aux_sym__val_number_decimal_token3] = ACTIONS(2067), - [aux_sym__val_number_decimal_token4] = ACTIONS(2067), - [aux_sym__val_number_token1] = ACTIONS(2067), - [aux_sym__val_number_token2] = ACTIONS(2067), - [aux_sym__val_number_token3] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [sym__str_single_quotes] = ACTIONS(2067), - [sym__str_back_ticks] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_alias] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_let_DASHenv] = ACTIONS(2019), + [anon_sym_mut] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [aux_sym_cmd_identifier_token1] = ACTIONS(2019), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2019), + [aux_sym_cmd_identifier_token9] = ACTIONS(2019), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2019), + [aux_sym_cmd_identifier_token13] = ACTIONS(2019), + [aux_sym_cmd_identifier_token14] = ACTIONS(2019), + [aux_sym_cmd_identifier_token15] = ACTIONS(2019), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2019), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_export_DASHenv] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_module] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2019), + [anon_sym_list] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_make] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_else] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_catch] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_source] = ACTIONS(2019), + [anon_sym_source_DASHenv] = ACTIONS(2019), + [anon_sym_register] = ACTIONS(2019), + [anon_sym_hide] = ACTIONS(2019), + [anon_sym_hide_DASHenv] = ACTIONS(2019), + [anon_sym_overlay] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(247), }, [631] = { [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(2449), - [anon_sym_alias] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_let_DASHenv] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [aux_sym_cmd_identifier_token1] = ACTIONS(2449), - [aux_sym_cmd_identifier_token2] = ACTIONS(2449), - [aux_sym_cmd_identifier_token3] = ACTIONS(2449), - [aux_sym_cmd_identifier_token4] = ACTIONS(2449), - [aux_sym_cmd_identifier_token5] = ACTIONS(2449), - [aux_sym_cmd_identifier_token6] = ACTIONS(2449), - [aux_sym_cmd_identifier_token7] = ACTIONS(2449), - [aux_sym_cmd_identifier_token8] = ACTIONS(2449), - [aux_sym_cmd_identifier_token9] = ACTIONS(2449), - [aux_sym_cmd_identifier_token10] = ACTIONS(2449), - [aux_sym_cmd_identifier_token11] = ACTIONS(2449), - [aux_sym_cmd_identifier_token12] = ACTIONS(2449), - [aux_sym_cmd_identifier_token13] = ACTIONS(2449), - [aux_sym_cmd_identifier_token14] = ACTIONS(2449), - [aux_sym_cmd_identifier_token15] = ACTIONS(2449), - [aux_sym_cmd_identifier_token16] = ACTIONS(2449), - [aux_sym_cmd_identifier_token17] = ACTIONS(2449), - [aux_sym_cmd_identifier_token18] = ACTIONS(2449), - [aux_sym_cmd_identifier_token19] = ACTIONS(2449), - [aux_sym_cmd_identifier_token20] = ACTIONS(2449), - [aux_sym_cmd_identifier_token21] = ACTIONS(2449), - [aux_sym_cmd_identifier_token22] = ACTIONS(2449), - [aux_sym_cmd_identifier_token23] = ACTIONS(2449), - [aux_sym_cmd_identifier_token24] = ACTIONS(2449), - [aux_sym_cmd_identifier_token25] = ACTIONS(2449), - [aux_sym_cmd_identifier_token26] = ACTIONS(2449), - [aux_sym_cmd_identifier_token27] = ACTIONS(2449), - [aux_sym_cmd_identifier_token28] = ACTIONS(2449), - [aux_sym_cmd_identifier_token29] = ACTIONS(2449), - [aux_sym_cmd_identifier_token30] = ACTIONS(2449), - [aux_sym_cmd_identifier_token31] = ACTIONS(2449), - [aux_sym_cmd_identifier_token32] = ACTIONS(2449), - [aux_sym_cmd_identifier_token33] = ACTIONS(2449), - [aux_sym_cmd_identifier_token34] = ACTIONS(2449), - [aux_sym_cmd_identifier_token35] = ACTIONS(2449), - [aux_sym_cmd_identifier_token36] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2451), - [anon_sym_false] = ACTIONS(2451), - [anon_sym_null] = ACTIONS(2451), - [aux_sym_cmd_identifier_token38] = ACTIONS(2449), - [aux_sym_cmd_identifier_token39] = ACTIONS(2451), - [aux_sym_cmd_identifier_token40] = ACTIONS(2451), - [anon_sym_def] = ACTIONS(2449), - [anon_sym_export_DASHenv] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2449), - [anon_sym_module] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_error] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_make] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_catch] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_source] = ACTIONS(2449), - [anon_sym_source_DASHenv] = ACTIONS(2449), - [anon_sym_register] = ACTIONS(2449), - [anon_sym_hide] = ACTIONS(2449), - [anon_sym_hide_DASHenv] = ACTIONS(2449), - [anon_sym_overlay] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), - [aux_sym__val_number_decimal_token1] = ACTIONS(2449), - [aux_sym__val_number_decimal_token2] = ACTIONS(2451), - [aux_sym__val_number_decimal_token3] = ACTIONS(2451), - [aux_sym__val_number_decimal_token4] = ACTIONS(2451), - [aux_sym__val_number_token1] = ACTIONS(2451), - [aux_sym__val_number_token2] = ACTIONS(2451), - [aux_sym__val_number_token3] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [sym__str_single_quotes] = ACTIONS(2451), - [sym__str_back_ticks] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(247), - }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_alias] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_let_DASHenv] = ACTIONS(2420), - [anon_sym_mut] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [aux_sym_cmd_identifier_token1] = ACTIONS(2420), - [aux_sym_cmd_identifier_token2] = ACTIONS(2420), - [aux_sym_cmd_identifier_token3] = ACTIONS(2420), - [aux_sym_cmd_identifier_token4] = ACTIONS(2420), - [aux_sym_cmd_identifier_token5] = ACTIONS(2420), - [aux_sym_cmd_identifier_token6] = ACTIONS(2420), - [aux_sym_cmd_identifier_token7] = ACTIONS(2420), - [aux_sym_cmd_identifier_token8] = ACTIONS(2420), - [aux_sym_cmd_identifier_token9] = ACTIONS(2420), - [aux_sym_cmd_identifier_token10] = ACTIONS(2420), - [aux_sym_cmd_identifier_token11] = ACTIONS(2420), - [aux_sym_cmd_identifier_token12] = ACTIONS(2420), - [aux_sym_cmd_identifier_token13] = ACTIONS(2420), - [aux_sym_cmd_identifier_token14] = ACTIONS(2420), - [aux_sym_cmd_identifier_token15] = ACTIONS(2420), - [aux_sym_cmd_identifier_token16] = ACTIONS(2420), - [aux_sym_cmd_identifier_token17] = ACTIONS(2420), - [aux_sym_cmd_identifier_token18] = ACTIONS(2420), - [aux_sym_cmd_identifier_token19] = ACTIONS(2420), - [aux_sym_cmd_identifier_token20] = ACTIONS(2420), - [aux_sym_cmd_identifier_token21] = ACTIONS(2420), - [aux_sym_cmd_identifier_token22] = ACTIONS(2420), - [aux_sym_cmd_identifier_token23] = ACTIONS(2420), - [aux_sym_cmd_identifier_token24] = ACTIONS(2420), - [aux_sym_cmd_identifier_token25] = ACTIONS(2420), - [aux_sym_cmd_identifier_token26] = ACTIONS(2420), - [aux_sym_cmd_identifier_token27] = ACTIONS(2420), - [aux_sym_cmd_identifier_token28] = ACTIONS(2420), - [aux_sym_cmd_identifier_token29] = ACTIONS(2420), - [aux_sym_cmd_identifier_token30] = ACTIONS(2420), - [aux_sym_cmd_identifier_token31] = ACTIONS(2420), - [aux_sym_cmd_identifier_token32] = ACTIONS(2420), - [aux_sym_cmd_identifier_token33] = ACTIONS(2420), - [aux_sym_cmd_identifier_token34] = ACTIONS(2420), - [aux_sym_cmd_identifier_token35] = ACTIONS(2420), - [aux_sym_cmd_identifier_token36] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2422), - [aux_sym_cmd_identifier_token38] = ACTIONS(2420), - [aux_sym_cmd_identifier_token39] = ACTIONS(2422), - [aux_sym_cmd_identifier_token40] = ACTIONS(2422), - [anon_sym_def] = ACTIONS(2420), - [anon_sym_export_DASHenv] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_error] = ACTIONS(2420), - [anon_sym_list] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_in] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_make] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_catch] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_source] = ACTIONS(2420), - [anon_sym_source_DASHenv] = ACTIONS(2420), - [anon_sym_register] = ACTIONS(2420), - [anon_sym_hide] = ACTIONS(2420), - [anon_sym_hide_DASHenv] = ACTIONS(2420), - [anon_sym_overlay] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), - [aux_sym__val_number_decimal_token1] = ACTIONS(2420), - [aux_sym__val_number_decimal_token2] = ACTIONS(2422), - [aux_sym__val_number_decimal_token3] = ACTIONS(2422), - [aux_sym__val_number_decimal_token4] = ACTIONS(2422), - [aux_sym__val_number_token1] = ACTIONS(2422), - [aux_sym__val_number_token2] = ACTIONS(2422), - [aux_sym__val_number_token3] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2422), - [sym__str_single_quotes] = ACTIONS(2422), - [sym__str_back_ticks] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_alias] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_let_DASHenv] = ACTIONS(2473), + [anon_sym_mut] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [aux_sym_cmd_identifier_token1] = ACTIONS(2473), + [aux_sym_cmd_identifier_token2] = ACTIONS(2473), + [aux_sym_cmd_identifier_token3] = ACTIONS(2473), + [aux_sym_cmd_identifier_token4] = ACTIONS(2473), + [aux_sym_cmd_identifier_token5] = ACTIONS(2473), + [aux_sym_cmd_identifier_token6] = ACTIONS(2473), + [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token8] = ACTIONS(2473), + [aux_sym_cmd_identifier_token9] = ACTIONS(2473), + [aux_sym_cmd_identifier_token10] = ACTIONS(2473), + [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token12] = ACTIONS(2473), + [aux_sym_cmd_identifier_token13] = ACTIONS(2473), + [aux_sym_cmd_identifier_token14] = ACTIONS(2473), + [aux_sym_cmd_identifier_token15] = ACTIONS(2473), + [aux_sym_cmd_identifier_token16] = ACTIONS(2473), + [aux_sym_cmd_identifier_token17] = ACTIONS(2473), + [aux_sym_cmd_identifier_token18] = ACTIONS(2473), + [aux_sym_cmd_identifier_token19] = ACTIONS(2473), + [aux_sym_cmd_identifier_token20] = ACTIONS(2473), + [aux_sym_cmd_identifier_token21] = ACTIONS(2473), + [aux_sym_cmd_identifier_token22] = ACTIONS(2473), + [aux_sym_cmd_identifier_token23] = ACTIONS(2473), + [aux_sym_cmd_identifier_token24] = ACTIONS(2473), + [aux_sym_cmd_identifier_token25] = ACTIONS(2473), + [aux_sym_cmd_identifier_token26] = ACTIONS(2473), + [aux_sym_cmd_identifier_token27] = ACTIONS(2473), + [aux_sym_cmd_identifier_token28] = ACTIONS(2473), + [aux_sym_cmd_identifier_token29] = ACTIONS(2473), + [aux_sym_cmd_identifier_token30] = ACTIONS(2473), + [aux_sym_cmd_identifier_token31] = ACTIONS(2473), + [aux_sym_cmd_identifier_token32] = ACTIONS(2473), + [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token34] = ACTIONS(2473), + [aux_sym_cmd_identifier_token35] = ACTIONS(2473), + [aux_sym_cmd_identifier_token36] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token38] = ACTIONS(2473), + [aux_sym_cmd_identifier_token39] = ACTIONS(2475), + [aux_sym_cmd_identifier_token40] = ACTIONS(2475), + [anon_sym_def] = ACTIONS(2473), + [anon_sym_export_DASHenv] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2475), + [anon_sym_error] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_make] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_catch] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_source] = ACTIONS(2473), + [anon_sym_source_DASHenv] = ACTIONS(2473), + [anon_sym_register] = ACTIONS(2473), + [anon_sym_hide] = ACTIONS(2473), + [anon_sym_hide_DASHenv] = ACTIONS(2473), + [anon_sym_overlay] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_as] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2473), + [aux_sym__val_number_decimal_token2] = ACTIONS(2475), + [aux_sym__val_number_decimal_token3] = ACTIONS(2475), + [aux_sym__val_number_decimal_token4] = ACTIONS(2475), + [aux_sym__val_number_token1] = ACTIONS(2475), + [aux_sym__val_number_token2] = ACTIONS(2475), + [aux_sym__val_number_token3] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym__str_single_quotes] = ACTIONS(2475), + [sym__str_back_ticks] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(247), + }, + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_alias] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_let_DASHenv] = ACTIONS(1991), + [anon_sym_mut] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [aux_sym_cmd_identifier_token1] = ACTIONS(1991), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1991), + [aux_sym_cmd_identifier_token9] = ACTIONS(1991), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1991), + [aux_sym_cmd_identifier_token13] = ACTIONS(1991), + [aux_sym_cmd_identifier_token14] = ACTIONS(1991), + [aux_sym_cmd_identifier_token15] = ACTIONS(1991), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1991), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1991), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_export_DASHenv] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1991), + [anon_sym_list] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_in] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_make] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_else] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_catch] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_source] = ACTIONS(1991), + [anon_sym_source_DASHenv] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1991), + [anon_sym_hide] = ACTIONS(1991), + [anon_sym_hide_DASHenv] = ACTIONS(1991), + [anon_sym_overlay] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_as] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1991), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1991), [anon_sym_POUND] = ACTIONS(247), }, [633] = { [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_alias] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_let_DASHenv] = ACTIONS(2424), - [anon_sym_mut] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [aux_sym_cmd_identifier_token1] = ACTIONS(2424), - [aux_sym_cmd_identifier_token2] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2424), - [aux_sym_cmd_identifier_token4] = ACTIONS(2424), - [aux_sym_cmd_identifier_token5] = ACTIONS(2424), - [aux_sym_cmd_identifier_token6] = ACTIONS(2424), - [aux_sym_cmd_identifier_token7] = ACTIONS(2424), - [aux_sym_cmd_identifier_token8] = ACTIONS(2424), - [aux_sym_cmd_identifier_token9] = ACTIONS(2424), - [aux_sym_cmd_identifier_token10] = ACTIONS(2424), - [aux_sym_cmd_identifier_token11] = ACTIONS(2424), - [aux_sym_cmd_identifier_token12] = ACTIONS(2424), - [aux_sym_cmd_identifier_token13] = ACTIONS(2424), - [aux_sym_cmd_identifier_token14] = ACTIONS(2424), - [aux_sym_cmd_identifier_token15] = ACTIONS(2424), - [aux_sym_cmd_identifier_token16] = ACTIONS(2424), - [aux_sym_cmd_identifier_token17] = ACTIONS(2424), - [aux_sym_cmd_identifier_token18] = ACTIONS(2424), - [aux_sym_cmd_identifier_token19] = ACTIONS(2424), - [aux_sym_cmd_identifier_token20] = ACTIONS(2424), - [aux_sym_cmd_identifier_token21] = ACTIONS(2424), - [aux_sym_cmd_identifier_token22] = ACTIONS(2424), - [aux_sym_cmd_identifier_token23] = ACTIONS(2424), - [aux_sym_cmd_identifier_token24] = ACTIONS(2424), - [aux_sym_cmd_identifier_token25] = ACTIONS(2424), - [aux_sym_cmd_identifier_token26] = ACTIONS(2424), - [aux_sym_cmd_identifier_token27] = ACTIONS(2424), - [aux_sym_cmd_identifier_token28] = ACTIONS(2424), - [aux_sym_cmd_identifier_token29] = ACTIONS(2424), - [aux_sym_cmd_identifier_token30] = ACTIONS(2424), - [aux_sym_cmd_identifier_token31] = ACTIONS(2424), - [aux_sym_cmd_identifier_token32] = ACTIONS(2424), - [aux_sym_cmd_identifier_token33] = ACTIONS(2424), - [aux_sym_cmd_identifier_token34] = ACTIONS(2424), - [aux_sym_cmd_identifier_token35] = ACTIONS(2424), - [aux_sym_cmd_identifier_token36] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2426), - [aux_sym_cmd_identifier_token38] = ACTIONS(2424), - [aux_sym_cmd_identifier_token39] = ACTIONS(2426), - [aux_sym_cmd_identifier_token40] = ACTIONS(2426), - [anon_sym_def] = ACTIONS(2424), - [anon_sym_export_DASHenv] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_error] = ACTIONS(2424), - [anon_sym_list] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_in] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_make] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_catch] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_source] = ACTIONS(2424), - [anon_sym_source_DASHenv] = ACTIONS(2424), - [anon_sym_register] = ACTIONS(2424), - [anon_sym_hide] = ACTIONS(2424), - [anon_sym_hide_DASHenv] = ACTIONS(2424), - [anon_sym_overlay] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_as] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), - [aux_sym__val_number_decimal_token1] = ACTIONS(2424), - [aux_sym__val_number_decimal_token2] = ACTIONS(2426), - [aux_sym__val_number_decimal_token3] = ACTIONS(2426), - [aux_sym__val_number_decimal_token4] = ACTIONS(2426), - [aux_sym__val_number_token1] = ACTIONS(2426), - [aux_sym__val_number_token2] = ACTIONS(2426), - [aux_sym__val_number_token3] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2426), - [sym__str_single_quotes] = ACTIONS(2426), - [sym__str_back_ticks] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [aux_sym_cmd_identifier_token1] = ACTIONS(1999), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1999), + [aux_sym_cmd_identifier_token9] = ACTIONS(1999), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1999), + [aux_sym_cmd_identifier_token13] = ACTIONS(1999), + [aux_sym_cmd_identifier_token14] = ACTIONS(1999), + [aux_sym_cmd_identifier_token15] = ACTIONS(1999), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1999), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_null] = ACTIONS(2005), + [aux_sym_cmd_identifier_token38] = ACTIONS(1999), + [aux_sym_cmd_identifier_token39] = ACTIONS(2005), + [aux_sym_cmd_identifier_token40] = ACTIONS(2005), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_list] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_in] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_make] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_catch] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2005), + [aux_sym__val_number_decimal_token4] = ACTIONS(2005), + [aux_sym__val_number_token1] = ACTIONS(2005), + [aux_sym__val_number_token2] = ACTIONS(2005), + [aux_sym__val_number_token3] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(247), }, [634] = { [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2507), - [anon_sym_alias] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_let_DASHenv] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [aux_sym_cmd_identifier_token1] = ACTIONS(2507), - [aux_sym_cmd_identifier_token2] = ACTIONS(2507), - [aux_sym_cmd_identifier_token3] = ACTIONS(2507), - [aux_sym_cmd_identifier_token4] = ACTIONS(2507), - [aux_sym_cmd_identifier_token5] = ACTIONS(2507), - [aux_sym_cmd_identifier_token6] = ACTIONS(2507), - [aux_sym_cmd_identifier_token7] = ACTIONS(2507), - [aux_sym_cmd_identifier_token8] = ACTIONS(2507), - [aux_sym_cmd_identifier_token9] = ACTIONS(2507), - [aux_sym_cmd_identifier_token10] = ACTIONS(2507), - [aux_sym_cmd_identifier_token11] = ACTIONS(2507), - [aux_sym_cmd_identifier_token12] = ACTIONS(2507), - [aux_sym_cmd_identifier_token13] = ACTIONS(2507), - [aux_sym_cmd_identifier_token14] = ACTIONS(2507), - [aux_sym_cmd_identifier_token15] = ACTIONS(2507), - [aux_sym_cmd_identifier_token16] = ACTIONS(2507), - [aux_sym_cmd_identifier_token17] = ACTIONS(2507), - [aux_sym_cmd_identifier_token18] = ACTIONS(2507), - [aux_sym_cmd_identifier_token19] = ACTIONS(2507), - [aux_sym_cmd_identifier_token20] = ACTIONS(2507), - [aux_sym_cmd_identifier_token21] = ACTIONS(2507), - [aux_sym_cmd_identifier_token22] = ACTIONS(2507), - [aux_sym_cmd_identifier_token23] = ACTIONS(2507), - [aux_sym_cmd_identifier_token24] = ACTIONS(2507), - [aux_sym_cmd_identifier_token25] = ACTIONS(2507), - [aux_sym_cmd_identifier_token26] = ACTIONS(2507), - [aux_sym_cmd_identifier_token27] = ACTIONS(2507), - [aux_sym_cmd_identifier_token28] = ACTIONS(2507), - [aux_sym_cmd_identifier_token29] = ACTIONS(2507), - [aux_sym_cmd_identifier_token30] = ACTIONS(2507), - [aux_sym_cmd_identifier_token31] = ACTIONS(2507), - [aux_sym_cmd_identifier_token32] = ACTIONS(2507), - [aux_sym_cmd_identifier_token33] = ACTIONS(2507), - [aux_sym_cmd_identifier_token34] = ACTIONS(2507), - [aux_sym_cmd_identifier_token35] = ACTIONS(2507), - [aux_sym_cmd_identifier_token36] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token38] = ACTIONS(2507), - [aux_sym_cmd_identifier_token39] = ACTIONS(2509), - [aux_sym_cmd_identifier_token40] = ACTIONS(2509), - [anon_sym_def] = ACTIONS(2507), - [anon_sym_export_DASHenv] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2509), - [anon_sym_error] = ACTIONS(2507), - [anon_sym_list] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_make] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_catch] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_source] = ACTIONS(2507), - [anon_sym_source_DASHenv] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_hide] = ACTIONS(2507), - [anon_sym_hide_DASHenv] = ACTIONS(2507), - [anon_sym_overlay] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2509), - [aux_sym__val_number_decimal_token1] = ACTIONS(2507), - [aux_sym__val_number_decimal_token2] = ACTIONS(2509), - [aux_sym__val_number_decimal_token3] = ACTIONS(2509), - [aux_sym__val_number_decimal_token4] = ACTIONS(2509), - [aux_sym__val_number_token1] = ACTIONS(2509), - [aux_sym__val_number_token2] = ACTIONS(2509), - [aux_sym__val_number_token3] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym__str_single_quotes] = ACTIONS(2509), - [sym__str_back_ticks] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_export] = ACTIONS(2007), + [anon_sym_alias] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_let_DASHenv] = ACTIONS(2007), + [anon_sym_mut] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [aux_sym_cmd_identifier_token1] = ACTIONS(2007), + [aux_sym_cmd_identifier_token2] = ACTIONS(2007), + [aux_sym_cmd_identifier_token3] = ACTIONS(2007), + [aux_sym_cmd_identifier_token4] = ACTIONS(2007), + [aux_sym_cmd_identifier_token5] = ACTIONS(2007), + [aux_sym_cmd_identifier_token6] = ACTIONS(2007), + [aux_sym_cmd_identifier_token7] = ACTIONS(2007), + [aux_sym_cmd_identifier_token8] = ACTIONS(2007), + [aux_sym_cmd_identifier_token9] = ACTIONS(2007), + [aux_sym_cmd_identifier_token10] = ACTIONS(2007), + [aux_sym_cmd_identifier_token11] = ACTIONS(2007), + [aux_sym_cmd_identifier_token12] = ACTIONS(2007), + [aux_sym_cmd_identifier_token13] = ACTIONS(2007), + [aux_sym_cmd_identifier_token14] = ACTIONS(2007), + [aux_sym_cmd_identifier_token15] = ACTIONS(2007), + [aux_sym_cmd_identifier_token16] = ACTIONS(2007), + [aux_sym_cmd_identifier_token17] = ACTIONS(2007), + [aux_sym_cmd_identifier_token18] = ACTIONS(2007), + [aux_sym_cmd_identifier_token19] = ACTIONS(2007), + [aux_sym_cmd_identifier_token20] = ACTIONS(2007), + [aux_sym_cmd_identifier_token21] = ACTIONS(2007), + [aux_sym_cmd_identifier_token22] = ACTIONS(2007), + [aux_sym_cmd_identifier_token23] = ACTIONS(2007), + [aux_sym_cmd_identifier_token24] = ACTIONS(2007), + [aux_sym_cmd_identifier_token25] = ACTIONS(2007), + [aux_sym_cmd_identifier_token26] = ACTIONS(2007), + [aux_sym_cmd_identifier_token27] = ACTIONS(2007), + [aux_sym_cmd_identifier_token28] = ACTIONS(2007), + [aux_sym_cmd_identifier_token29] = ACTIONS(2007), + [aux_sym_cmd_identifier_token30] = ACTIONS(2007), + [aux_sym_cmd_identifier_token31] = ACTIONS(2007), + [aux_sym_cmd_identifier_token32] = ACTIONS(2007), + [aux_sym_cmd_identifier_token33] = ACTIONS(2007), + [aux_sym_cmd_identifier_token34] = ACTIONS(2007), + [aux_sym_cmd_identifier_token35] = ACTIONS(2007), + [aux_sym_cmd_identifier_token36] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_null] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2007), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_export_DASHenv] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_module] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2007), + [anon_sym_list] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_in] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_make] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_do] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_catch] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_source] = ACTIONS(2007), + [anon_sym_source_DASHenv] = ACTIONS(2007), + [anon_sym_register] = ACTIONS(2007), + [anon_sym_hide] = ACTIONS(2007), + [anon_sym_hide_DASHenv] = ACTIONS(2007), + [anon_sym_overlay] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_as] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2007), [anon_sym_POUND] = ACTIONS(247), }, [635] = { [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(2515), - [anon_sym_alias] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_let_DASHenv] = ACTIONS(2515), - [anon_sym_mut] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [aux_sym_cmd_identifier_token1] = ACTIONS(2515), - [aux_sym_cmd_identifier_token2] = ACTIONS(2515), - [aux_sym_cmd_identifier_token3] = ACTIONS(2515), - [aux_sym_cmd_identifier_token4] = ACTIONS(2515), - [aux_sym_cmd_identifier_token5] = ACTIONS(2515), - [aux_sym_cmd_identifier_token6] = ACTIONS(2515), - [aux_sym_cmd_identifier_token7] = ACTIONS(2515), - [aux_sym_cmd_identifier_token8] = ACTIONS(2515), - [aux_sym_cmd_identifier_token9] = ACTIONS(2515), - [aux_sym_cmd_identifier_token10] = ACTIONS(2515), - [aux_sym_cmd_identifier_token11] = ACTIONS(2515), - [aux_sym_cmd_identifier_token12] = ACTIONS(2515), - [aux_sym_cmd_identifier_token13] = ACTIONS(2515), - [aux_sym_cmd_identifier_token14] = ACTIONS(2515), - [aux_sym_cmd_identifier_token15] = ACTIONS(2515), - [aux_sym_cmd_identifier_token16] = ACTIONS(2515), - [aux_sym_cmd_identifier_token17] = ACTIONS(2515), - [aux_sym_cmd_identifier_token18] = ACTIONS(2515), - [aux_sym_cmd_identifier_token19] = ACTIONS(2515), - [aux_sym_cmd_identifier_token20] = ACTIONS(2515), - [aux_sym_cmd_identifier_token21] = ACTIONS(2515), - [aux_sym_cmd_identifier_token22] = ACTIONS(2515), - [aux_sym_cmd_identifier_token23] = ACTIONS(2515), - [aux_sym_cmd_identifier_token24] = ACTIONS(2515), - [aux_sym_cmd_identifier_token25] = ACTIONS(2515), - [aux_sym_cmd_identifier_token26] = ACTIONS(2515), - [aux_sym_cmd_identifier_token27] = ACTIONS(2515), - [aux_sym_cmd_identifier_token28] = ACTIONS(2515), - [aux_sym_cmd_identifier_token29] = ACTIONS(2515), - [aux_sym_cmd_identifier_token30] = ACTIONS(2515), - [aux_sym_cmd_identifier_token31] = ACTIONS(2515), - [aux_sym_cmd_identifier_token32] = ACTIONS(2515), - [aux_sym_cmd_identifier_token33] = ACTIONS(2515), - [aux_sym_cmd_identifier_token34] = ACTIONS(2515), - [aux_sym_cmd_identifier_token35] = ACTIONS(2515), - [aux_sym_cmd_identifier_token36] = ACTIONS(2515), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [aux_sym_cmd_identifier_token38] = ACTIONS(2515), - [aux_sym_cmd_identifier_token39] = ACTIONS(2517), - [aux_sym_cmd_identifier_token40] = ACTIONS(2517), - [anon_sym_def] = ACTIONS(2515), - [anon_sym_export_DASHenv] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_module] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2517), - [anon_sym_error] = ACTIONS(2515), - [anon_sym_list] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_make] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_catch] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_source] = ACTIONS(2515), - [anon_sym_source_DASHenv] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_hide] = ACTIONS(2515), - [anon_sym_hide_DASHenv] = ACTIONS(2515), - [anon_sym_overlay] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2515), - [aux_sym__val_number_decimal_token2] = ACTIONS(2517), - [aux_sym__val_number_decimal_token3] = ACTIONS(2517), - [aux_sym__val_number_decimal_token4] = ACTIONS(2517), - [aux_sym__val_number_token1] = ACTIONS(2517), - [aux_sym__val_number_token2] = ACTIONS(2517), - [aux_sym__val_number_token3] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym__str_single_quotes] = ACTIONS(2517), - [sym__str_back_ticks] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_alias] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_let_DASHenv] = ACTIONS(2477), + [anon_sym_mut] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [aux_sym_cmd_identifier_token1] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2477), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [aux_sym_cmd_identifier_token6] = ACTIONS(2477), + [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token8] = ACTIONS(2477), + [aux_sym_cmd_identifier_token9] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2477), + [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token12] = ACTIONS(2477), + [aux_sym_cmd_identifier_token13] = ACTIONS(2477), + [aux_sym_cmd_identifier_token14] = ACTIONS(2477), + [aux_sym_cmd_identifier_token15] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2477), + [aux_sym_cmd_identifier_token17] = ACTIONS(2477), + [aux_sym_cmd_identifier_token18] = ACTIONS(2477), + [aux_sym_cmd_identifier_token19] = ACTIONS(2477), + [aux_sym_cmd_identifier_token20] = ACTIONS(2477), + [aux_sym_cmd_identifier_token21] = ACTIONS(2477), + [aux_sym_cmd_identifier_token22] = ACTIONS(2477), + [aux_sym_cmd_identifier_token23] = ACTIONS(2477), + [aux_sym_cmd_identifier_token24] = ACTIONS(2477), + [aux_sym_cmd_identifier_token25] = ACTIONS(2477), + [aux_sym_cmd_identifier_token26] = ACTIONS(2477), + [aux_sym_cmd_identifier_token27] = ACTIONS(2477), + [aux_sym_cmd_identifier_token28] = ACTIONS(2477), + [aux_sym_cmd_identifier_token29] = ACTIONS(2477), + [aux_sym_cmd_identifier_token30] = ACTIONS(2477), + [aux_sym_cmd_identifier_token31] = ACTIONS(2477), + [aux_sym_cmd_identifier_token32] = ACTIONS(2477), + [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token34] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2477), + [aux_sym_cmd_identifier_token36] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [anon_sym_null] = ACTIONS(2479), + [aux_sym_cmd_identifier_token38] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2479), + [aux_sym_cmd_identifier_token40] = ACTIONS(2479), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_export_DASHenv] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2479), + [anon_sym_error] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_make] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_catch] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_source] = ACTIONS(2477), + [anon_sym_source_DASHenv] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_hide] = ACTIONS(2477), + [anon_sym_hide_DASHenv] = ACTIONS(2477), + [anon_sym_overlay] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2479), + [aux_sym__val_number_decimal_token3] = ACTIONS(2479), + [aux_sym__val_number_decimal_token4] = ACTIONS(2479), + [aux_sym__val_number_token1] = ACTIONS(2479), + [aux_sym__val_number_token2] = ACTIONS(2479), + [aux_sym__val_number_token3] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [sym__str_single_quotes] = ACTIONS(2479), + [sym__str_back_ticks] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2477), [anon_sym_POUND] = ACTIONS(247), }, [636] = { @@ -143592,200 +145326,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [637] = { [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2485), + [aux_sym_cmd_identifier_token3] = ACTIONS(2485), + [aux_sym_cmd_identifier_token4] = ACTIONS(2485), + [aux_sym_cmd_identifier_token5] = ACTIONS(2485), + [aux_sym_cmd_identifier_token6] = ACTIONS(2485), + [aux_sym_cmd_identifier_token7] = ACTIONS(2485), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2485), + [aux_sym_cmd_identifier_token11] = ACTIONS(2485), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2485), + [aux_sym_cmd_identifier_token17] = ACTIONS(2485), + [aux_sym_cmd_identifier_token18] = ACTIONS(2485), + [aux_sym_cmd_identifier_token19] = ACTIONS(2485), + [aux_sym_cmd_identifier_token20] = ACTIONS(2485), + [aux_sym_cmd_identifier_token21] = ACTIONS(2485), + [aux_sym_cmd_identifier_token22] = ACTIONS(2485), + [aux_sym_cmd_identifier_token23] = ACTIONS(2485), + [aux_sym_cmd_identifier_token24] = ACTIONS(2485), + [aux_sym_cmd_identifier_token25] = ACTIONS(2485), + [aux_sym_cmd_identifier_token26] = ACTIONS(2485), + [aux_sym_cmd_identifier_token27] = ACTIONS(2485), + [aux_sym_cmd_identifier_token28] = ACTIONS(2485), + [aux_sym_cmd_identifier_token29] = ACTIONS(2485), + [aux_sym_cmd_identifier_token30] = ACTIONS(2485), + [aux_sym_cmd_identifier_token31] = ACTIONS(2485), + [aux_sym_cmd_identifier_token32] = ACTIONS(2485), + [aux_sym_cmd_identifier_token33] = ACTIONS(2485), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2487), + [anon_sym_false] = ACTIONS(2487), + [anon_sym_null] = ACTIONS(2487), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2487), + [aux_sym_cmd_identifier_token40] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2487), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2487), + [aux_sym__val_number_token2] = ACTIONS(2487), + [aux_sym__val_number_token3] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym__str_single_quotes] = ACTIONS(2487), + [sym__str_back_ticks] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2485), [anon_sym_POUND] = ACTIONS(247), }, [638] = { [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [aux_sym_cmd_identifier_token1] = ACTIONS(2035), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2035), - [aux_sym_cmd_identifier_token13] = ACTIONS(2035), - [aux_sym_cmd_identifier_token14] = ACTIONS(2035), - [aux_sym_cmd_identifier_token15] = ACTIONS(2035), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_make] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2491), + [aux_sym_cmd_identifier_token40] = ACTIONS(2491), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2491), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2491), + [aux_sym__val_number_decimal_token3] = ACTIONS(2491), + [aux_sym__val_number_decimal_token4] = ACTIONS(2491), + [aux_sym__val_number_token1] = ACTIONS(2491), + [aux_sym__val_number_token2] = ACTIONS(2491), + [aux_sym__val_number_token3] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym__str_single_quotes] = ACTIONS(2491), + [sym__str_back_ticks] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2489), [anon_sym_POUND] = ACTIONS(247), }, [639] = { @@ -143889,996 +145623,1689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [640] = { [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2428), - [anon_sym_alias] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_let_DASHenv] = ACTIONS(2428), - [anon_sym_mut] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [aux_sym_cmd_identifier_token2] = ACTIONS(2428), - [aux_sym_cmd_identifier_token3] = ACTIONS(2428), - [aux_sym_cmd_identifier_token4] = ACTIONS(2428), - [aux_sym_cmd_identifier_token5] = ACTIONS(2428), - [aux_sym_cmd_identifier_token6] = ACTIONS(2428), - [aux_sym_cmd_identifier_token7] = ACTIONS(2428), - [aux_sym_cmd_identifier_token8] = ACTIONS(2428), - [aux_sym_cmd_identifier_token9] = ACTIONS(2428), - [aux_sym_cmd_identifier_token10] = ACTIONS(2428), - [aux_sym_cmd_identifier_token11] = ACTIONS(2428), - [aux_sym_cmd_identifier_token12] = ACTIONS(2428), - [aux_sym_cmd_identifier_token13] = ACTIONS(2428), - [aux_sym_cmd_identifier_token14] = ACTIONS(2428), - [aux_sym_cmd_identifier_token15] = ACTIONS(2428), - [aux_sym_cmd_identifier_token16] = ACTIONS(2428), - [aux_sym_cmd_identifier_token17] = ACTIONS(2428), - [aux_sym_cmd_identifier_token18] = ACTIONS(2428), - [aux_sym_cmd_identifier_token19] = ACTIONS(2428), - [aux_sym_cmd_identifier_token20] = ACTIONS(2428), - [aux_sym_cmd_identifier_token21] = ACTIONS(2428), - [aux_sym_cmd_identifier_token22] = ACTIONS(2428), - [aux_sym_cmd_identifier_token23] = ACTIONS(2428), - [aux_sym_cmd_identifier_token24] = ACTIONS(2428), - [aux_sym_cmd_identifier_token25] = ACTIONS(2428), - [aux_sym_cmd_identifier_token26] = ACTIONS(2428), - [aux_sym_cmd_identifier_token27] = ACTIONS(2428), - [aux_sym_cmd_identifier_token28] = ACTIONS(2428), - [aux_sym_cmd_identifier_token29] = ACTIONS(2428), - [aux_sym_cmd_identifier_token30] = ACTIONS(2428), - [aux_sym_cmd_identifier_token31] = ACTIONS(2428), - [aux_sym_cmd_identifier_token32] = ACTIONS(2428), - [aux_sym_cmd_identifier_token33] = ACTIONS(2428), - [aux_sym_cmd_identifier_token34] = ACTIONS(2428), - [aux_sym_cmd_identifier_token35] = ACTIONS(2428), - [aux_sym_cmd_identifier_token36] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [aux_sym_cmd_identifier_token38] = ACTIONS(2428), - [aux_sym_cmd_identifier_token39] = ACTIONS(2430), - [aux_sym_cmd_identifier_token40] = ACTIONS(2430), - [anon_sym_def] = ACTIONS(2428), - [anon_sym_export_DASHenv] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_module] = ACTIONS(2428), - [anon_sym_use] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_DOLLAR] = ACTIONS(2430), - [anon_sym_error] = ACTIONS(2428), - [anon_sym_list] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_in] = ACTIONS(2428), - [anon_sym_loop] = ACTIONS(2428), - [anon_sym_make] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_do] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_else] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2428), - [anon_sym_catch] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_source] = ACTIONS(2428), - [anon_sym_source_DASHenv] = ACTIONS(2428), - [anon_sym_register] = ACTIONS(2428), - [anon_sym_hide] = ACTIONS(2428), - [anon_sym_hide_DASHenv] = ACTIONS(2428), - [anon_sym_overlay] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2428), - [anon_sym_as] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2430), - [aux_sym__val_number_decimal_token1] = ACTIONS(2428), - [aux_sym__val_number_decimal_token2] = ACTIONS(2430), - [aux_sym__val_number_decimal_token3] = ACTIONS(2430), - [aux_sym__val_number_decimal_token4] = ACTIONS(2430), - [aux_sym__val_number_token1] = ACTIONS(2430), - [aux_sym__val_number_token2] = ACTIONS(2430), - [aux_sym__val_number_token3] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2430), - [sym__str_single_quotes] = ACTIONS(2430), - [sym__str_back_ticks] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2497), + [anon_sym_alias] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_let_DASHenv] = ACTIONS(2497), + [anon_sym_mut] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [aux_sym_cmd_identifier_token1] = ACTIONS(2497), + [aux_sym_cmd_identifier_token2] = ACTIONS(2497), + [aux_sym_cmd_identifier_token3] = ACTIONS(2497), + [aux_sym_cmd_identifier_token4] = ACTIONS(2497), + [aux_sym_cmd_identifier_token5] = ACTIONS(2497), + [aux_sym_cmd_identifier_token6] = ACTIONS(2497), + [aux_sym_cmd_identifier_token7] = ACTIONS(2497), + [aux_sym_cmd_identifier_token8] = ACTIONS(2497), + [aux_sym_cmd_identifier_token9] = ACTIONS(2497), + [aux_sym_cmd_identifier_token10] = ACTIONS(2497), + [aux_sym_cmd_identifier_token11] = ACTIONS(2497), + [aux_sym_cmd_identifier_token12] = ACTIONS(2497), + [aux_sym_cmd_identifier_token13] = ACTIONS(2497), + [aux_sym_cmd_identifier_token14] = ACTIONS(2497), + [aux_sym_cmd_identifier_token15] = ACTIONS(2497), + [aux_sym_cmd_identifier_token16] = ACTIONS(2497), + [aux_sym_cmd_identifier_token17] = ACTIONS(2497), + [aux_sym_cmd_identifier_token18] = ACTIONS(2497), + [aux_sym_cmd_identifier_token19] = ACTIONS(2497), + [aux_sym_cmd_identifier_token20] = ACTIONS(2497), + [aux_sym_cmd_identifier_token21] = ACTIONS(2497), + [aux_sym_cmd_identifier_token22] = ACTIONS(2497), + [aux_sym_cmd_identifier_token23] = ACTIONS(2497), + [aux_sym_cmd_identifier_token24] = ACTIONS(2497), + [aux_sym_cmd_identifier_token25] = ACTIONS(2497), + [aux_sym_cmd_identifier_token26] = ACTIONS(2497), + [aux_sym_cmd_identifier_token27] = ACTIONS(2497), + [aux_sym_cmd_identifier_token28] = ACTIONS(2497), + [aux_sym_cmd_identifier_token29] = ACTIONS(2497), + [aux_sym_cmd_identifier_token30] = ACTIONS(2497), + [aux_sym_cmd_identifier_token31] = ACTIONS(2497), + [aux_sym_cmd_identifier_token32] = ACTIONS(2497), + [aux_sym_cmd_identifier_token33] = ACTIONS(2497), + [aux_sym_cmd_identifier_token34] = ACTIONS(2497), + [aux_sym_cmd_identifier_token35] = ACTIONS(2497), + [aux_sym_cmd_identifier_token36] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2499), + [aux_sym_cmd_identifier_token38] = ACTIONS(2497), + [aux_sym_cmd_identifier_token39] = ACTIONS(2499), + [aux_sym_cmd_identifier_token40] = ACTIONS(2499), + [anon_sym_def] = ACTIONS(2497), + [anon_sym_export_DASHenv] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_module] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_DOLLAR] = ACTIONS(2499), + [anon_sym_error] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_in] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_make] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_catch] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_source] = ACTIONS(2497), + [anon_sym_source_DASHenv] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2497), + [anon_sym_hide] = ACTIONS(2497), + [anon_sym_hide_DASHenv] = ACTIONS(2497), + [anon_sym_overlay] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_as] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), + [aux_sym__val_number_decimal_token1] = ACTIONS(2497), + [aux_sym__val_number_decimal_token2] = ACTIONS(2499), + [aux_sym__val_number_decimal_token3] = ACTIONS(2499), + [aux_sym__val_number_decimal_token4] = ACTIONS(2499), + [aux_sym__val_number_token1] = ACTIONS(2499), + [aux_sym__val_number_token2] = ACTIONS(2499), + [aux_sym__val_number_token3] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2499), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), [anon_sym_POUND] = ACTIONS(247), }, [641] = { [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2473), - [anon_sym_alias] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_DASHenv] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [aux_sym_cmd_identifier_token1] = ACTIONS(2473), - [aux_sym_cmd_identifier_token2] = ACTIONS(2473), - [aux_sym_cmd_identifier_token3] = ACTIONS(2473), - [aux_sym_cmd_identifier_token4] = ACTIONS(2473), - [aux_sym_cmd_identifier_token5] = ACTIONS(2473), - [aux_sym_cmd_identifier_token6] = ACTIONS(2473), - [aux_sym_cmd_identifier_token7] = ACTIONS(2473), - [aux_sym_cmd_identifier_token8] = ACTIONS(2473), - [aux_sym_cmd_identifier_token9] = ACTIONS(2473), - [aux_sym_cmd_identifier_token10] = ACTIONS(2473), - [aux_sym_cmd_identifier_token11] = ACTIONS(2473), - [aux_sym_cmd_identifier_token12] = ACTIONS(2473), - [aux_sym_cmd_identifier_token13] = ACTIONS(2473), - [aux_sym_cmd_identifier_token14] = ACTIONS(2473), - [aux_sym_cmd_identifier_token15] = ACTIONS(2473), - [aux_sym_cmd_identifier_token16] = ACTIONS(2473), - [aux_sym_cmd_identifier_token17] = ACTIONS(2473), - [aux_sym_cmd_identifier_token18] = ACTIONS(2473), - [aux_sym_cmd_identifier_token19] = ACTIONS(2473), - [aux_sym_cmd_identifier_token20] = ACTIONS(2473), - [aux_sym_cmd_identifier_token21] = ACTIONS(2473), - [aux_sym_cmd_identifier_token22] = ACTIONS(2473), - [aux_sym_cmd_identifier_token23] = ACTIONS(2473), - [aux_sym_cmd_identifier_token24] = ACTIONS(2473), - [aux_sym_cmd_identifier_token25] = ACTIONS(2473), - [aux_sym_cmd_identifier_token26] = ACTIONS(2473), - [aux_sym_cmd_identifier_token27] = ACTIONS(2473), - [aux_sym_cmd_identifier_token28] = ACTIONS(2473), - [aux_sym_cmd_identifier_token29] = ACTIONS(2473), - [aux_sym_cmd_identifier_token30] = ACTIONS(2473), - [aux_sym_cmd_identifier_token31] = ACTIONS(2473), - [aux_sym_cmd_identifier_token32] = ACTIONS(2473), - [aux_sym_cmd_identifier_token33] = ACTIONS(2473), - [aux_sym_cmd_identifier_token34] = ACTIONS(2473), - [aux_sym_cmd_identifier_token35] = ACTIONS(2473), - [aux_sym_cmd_identifier_token36] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2475), - [aux_sym_cmd_identifier_token38] = ACTIONS(2473), - [aux_sym_cmd_identifier_token39] = ACTIONS(2475), - [aux_sym_cmd_identifier_token40] = ACTIONS(2475), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_export_DASHenv] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_error] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_make] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_catch] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_source] = ACTIONS(2473), - [anon_sym_source_DASHenv] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_hide] = ACTIONS(2473), - [anon_sym_hide_DASHenv] = ACTIONS(2473), - [anon_sym_overlay] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), - [aux_sym__val_number_decimal_token1] = ACTIONS(2473), - [aux_sym__val_number_decimal_token2] = ACTIONS(2475), - [aux_sym__val_number_decimal_token3] = ACTIONS(2475), - [aux_sym__val_number_decimal_token4] = ACTIONS(2475), - [aux_sym__val_number_token1] = ACTIONS(2475), - [aux_sym__val_number_token2] = ACTIONS(2475), - [aux_sym__val_number_token3] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [sym__str_single_quotes] = ACTIONS(2475), - [sym__str_back_ticks] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_alias] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_let_DASHenv] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [aux_sym_cmd_identifier_token1] = ACTIONS(2501), + [aux_sym_cmd_identifier_token2] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2501), + [aux_sym_cmd_identifier_token4] = ACTIONS(2501), + [aux_sym_cmd_identifier_token5] = ACTIONS(2501), + [aux_sym_cmd_identifier_token6] = ACTIONS(2501), + [aux_sym_cmd_identifier_token7] = ACTIONS(2501), + [aux_sym_cmd_identifier_token8] = ACTIONS(2501), + [aux_sym_cmd_identifier_token9] = ACTIONS(2501), + [aux_sym_cmd_identifier_token10] = ACTIONS(2501), + [aux_sym_cmd_identifier_token11] = ACTIONS(2501), + [aux_sym_cmd_identifier_token12] = ACTIONS(2501), + [aux_sym_cmd_identifier_token13] = ACTIONS(2501), + [aux_sym_cmd_identifier_token14] = ACTIONS(2501), + [aux_sym_cmd_identifier_token15] = ACTIONS(2501), + [aux_sym_cmd_identifier_token16] = ACTIONS(2501), + [aux_sym_cmd_identifier_token17] = ACTIONS(2501), + [aux_sym_cmd_identifier_token18] = ACTIONS(2501), + [aux_sym_cmd_identifier_token19] = ACTIONS(2501), + [aux_sym_cmd_identifier_token20] = ACTIONS(2501), + [aux_sym_cmd_identifier_token21] = ACTIONS(2501), + [aux_sym_cmd_identifier_token22] = ACTIONS(2501), + [aux_sym_cmd_identifier_token23] = ACTIONS(2501), + [aux_sym_cmd_identifier_token24] = ACTIONS(2501), + [aux_sym_cmd_identifier_token25] = ACTIONS(2501), + [aux_sym_cmd_identifier_token26] = ACTIONS(2501), + [aux_sym_cmd_identifier_token27] = ACTIONS(2501), + [aux_sym_cmd_identifier_token28] = ACTIONS(2501), + [aux_sym_cmd_identifier_token29] = ACTIONS(2501), + [aux_sym_cmd_identifier_token30] = ACTIONS(2501), + [aux_sym_cmd_identifier_token31] = ACTIONS(2501), + [aux_sym_cmd_identifier_token32] = ACTIONS(2501), + [aux_sym_cmd_identifier_token33] = ACTIONS(2501), + [aux_sym_cmd_identifier_token34] = ACTIONS(2501), + [aux_sym_cmd_identifier_token35] = ACTIONS(2501), + [aux_sym_cmd_identifier_token36] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2503), + [anon_sym_false] = ACTIONS(2503), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token38] = ACTIONS(2501), + [aux_sym_cmd_identifier_token39] = ACTIONS(2503), + [aux_sym_cmd_identifier_token40] = ACTIONS(2503), + [anon_sym_def] = ACTIONS(2501), + [anon_sym_export_DASHenv] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2503), + [anon_sym_error] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_make] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_catch] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_source] = ACTIONS(2501), + [anon_sym_source_DASHenv] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_hide] = ACTIONS(2501), + [anon_sym_hide_DASHenv] = ACTIONS(2501), + [anon_sym_overlay] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), + [aux_sym__val_number_decimal_token1] = ACTIONS(2501), + [aux_sym__val_number_decimal_token2] = ACTIONS(2503), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [aux_sym__val_number_token1] = ACTIONS(2503), + [aux_sym__val_number_token2] = ACTIONS(2503), + [aux_sym__val_number_token3] = ACTIONS(2503), + [anon_sym_DQUOTE] = ACTIONS(2503), + [sym__str_single_quotes] = ACTIONS(2503), + [sym__str_back_ticks] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_POUND] = ACTIONS(247), }, [642] = { [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_alias] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_let_DASHenv] = ACTIONS(2432), - [anon_sym_mut] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [aux_sym_cmd_identifier_token1] = ACTIONS(2432), - [aux_sym_cmd_identifier_token2] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2432), - [aux_sym_cmd_identifier_token4] = ACTIONS(2432), - [aux_sym_cmd_identifier_token5] = ACTIONS(2432), - [aux_sym_cmd_identifier_token6] = ACTIONS(2432), - [aux_sym_cmd_identifier_token7] = ACTIONS(2432), - [aux_sym_cmd_identifier_token8] = ACTIONS(2432), - [aux_sym_cmd_identifier_token9] = ACTIONS(2432), - [aux_sym_cmd_identifier_token10] = ACTIONS(2432), - [aux_sym_cmd_identifier_token11] = ACTIONS(2432), - [aux_sym_cmd_identifier_token12] = ACTIONS(2432), - [aux_sym_cmd_identifier_token13] = ACTIONS(2432), - [aux_sym_cmd_identifier_token14] = ACTIONS(2432), - [aux_sym_cmd_identifier_token15] = ACTIONS(2432), - [aux_sym_cmd_identifier_token16] = ACTIONS(2432), - [aux_sym_cmd_identifier_token17] = ACTIONS(2432), - [aux_sym_cmd_identifier_token18] = ACTIONS(2432), - [aux_sym_cmd_identifier_token19] = ACTIONS(2432), - [aux_sym_cmd_identifier_token20] = ACTIONS(2432), - [aux_sym_cmd_identifier_token21] = ACTIONS(2432), - [aux_sym_cmd_identifier_token22] = ACTIONS(2432), - [aux_sym_cmd_identifier_token23] = ACTIONS(2432), - [aux_sym_cmd_identifier_token24] = ACTIONS(2432), - [aux_sym_cmd_identifier_token25] = ACTIONS(2432), - [aux_sym_cmd_identifier_token26] = ACTIONS(2432), - [aux_sym_cmd_identifier_token27] = ACTIONS(2432), - [aux_sym_cmd_identifier_token28] = ACTIONS(2432), - [aux_sym_cmd_identifier_token29] = ACTIONS(2432), - [aux_sym_cmd_identifier_token30] = ACTIONS(2432), - [aux_sym_cmd_identifier_token31] = ACTIONS(2432), - [aux_sym_cmd_identifier_token32] = ACTIONS(2432), - [aux_sym_cmd_identifier_token33] = ACTIONS(2432), - [aux_sym_cmd_identifier_token34] = ACTIONS(2432), - [aux_sym_cmd_identifier_token35] = ACTIONS(2432), - [aux_sym_cmd_identifier_token36] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_null] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2432), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2432), - [anon_sym_export_DASHenv] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2432), - [anon_sym_list] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_in] = ACTIONS(2432), - [anon_sym_loop] = ACTIONS(2432), - [anon_sym_make] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_else] = ACTIONS(2432), - [anon_sym_match] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2432), - [anon_sym_catch] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_source] = ACTIONS(2432), - [anon_sym_source_DASHenv] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2432), - [anon_sym_hide] = ACTIONS(2432), - [anon_sym_hide_DASHenv] = ACTIONS(2432), - [anon_sym_overlay] = ACTIONS(2432), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_as] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2432), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2505), + [anon_sym_alias] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_let_DASHenv] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [aux_sym_cmd_identifier_token1] = ACTIONS(2505), + [aux_sym_cmd_identifier_token2] = ACTIONS(2505), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [aux_sym_cmd_identifier_token6] = ACTIONS(2505), + [aux_sym_cmd_identifier_token7] = ACTIONS(2505), + [aux_sym_cmd_identifier_token8] = ACTIONS(2505), + [aux_sym_cmd_identifier_token9] = ACTIONS(2505), + [aux_sym_cmd_identifier_token10] = ACTIONS(2505), + [aux_sym_cmd_identifier_token11] = ACTIONS(2505), + [aux_sym_cmd_identifier_token12] = ACTIONS(2505), + [aux_sym_cmd_identifier_token13] = ACTIONS(2505), + [aux_sym_cmd_identifier_token14] = ACTIONS(2505), + [aux_sym_cmd_identifier_token15] = ACTIONS(2505), + [aux_sym_cmd_identifier_token16] = ACTIONS(2505), + [aux_sym_cmd_identifier_token17] = ACTIONS(2505), + [aux_sym_cmd_identifier_token18] = ACTIONS(2505), + [aux_sym_cmd_identifier_token19] = ACTIONS(2505), + [aux_sym_cmd_identifier_token20] = ACTIONS(2505), + [aux_sym_cmd_identifier_token21] = ACTIONS(2505), + [aux_sym_cmd_identifier_token22] = ACTIONS(2505), + [aux_sym_cmd_identifier_token23] = ACTIONS(2505), + [aux_sym_cmd_identifier_token24] = ACTIONS(2505), + [aux_sym_cmd_identifier_token25] = ACTIONS(2505), + [aux_sym_cmd_identifier_token26] = ACTIONS(2505), + [aux_sym_cmd_identifier_token27] = ACTIONS(2505), + [aux_sym_cmd_identifier_token28] = ACTIONS(2505), + [aux_sym_cmd_identifier_token29] = ACTIONS(2505), + [aux_sym_cmd_identifier_token30] = ACTIONS(2505), + [aux_sym_cmd_identifier_token31] = ACTIONS(2505), + [aux_sym_cmd_identifier_token32] = ACTIONS(2505), + [aux_sym_cmd_identifier_token33] = ACTIONS(2505), + [aux_sym_cmd_identifier_token34] = ACTIONS(2505), + [aux_sym_cmd_identifier_token35] = ACTIONS(2505), + [aux_sym_cmd_identifier_token36] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2507), + [aux_sym_cmd_identifier_token38] = ACTIONS(2505), + [aux_sym_cmd_identifier_token39] = ACTIONS(2507), + [aux_sym_cmd_identifier_token40] = ACTIONS(2507), + [anon_sym_def] = ACTIONS(2505), + [anon_sym_export_DASHenv] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_module] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2507), + [anon_sym_error] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_make] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_catch] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_source] = ACTIONS(2505), + [anon_sym_source_DASHenv] = ACTIONS(2505), + [anon_sym_register] = ACTIONS(2505), + [anon_sym_hide] = ACTIONS(2505), + [anon_sym_hide_DASHenv] = ACTIONS(2505), + [anon_sym_overlay] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2505), + [aux_sym__val_number_decimal_token2] = ACTIONS(2507), + [aux_sym__val_number_decimal_token3] = ACTIONS(2507), + [aux_sym__val_number_decimal_token4] = ACTIONS(2507), + [aux_sym__val_number_token1] = ACTIONS(2507), + [aux_sym__val_number_token2] = ACTIONS(2507), + [aux_sym__val_number_token3] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [sym__str_single_quotes] = ACTIONS(2507), + [sym__str_back_ticks] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2505), [anon_sym_POUND] = ACTIONS(247), }, [643] = { [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_alias] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_let_DASHenv] = ACTIONS(2043), - [anon_sym_mut] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [aux_sym_cmd_identifier_token1] = ACTIONS(2043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2043), - [aux_sym_cmd_identifier_token9] = ACTIONS(2043), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2043), - [aux_sym_cmd_identifier_token13] = ACTIONS(2043), - [aux_sym_cmd_identifier_token14] = ACTIONS(2043), - [aux_sym_cmd_identifier_token15] = ACTIONS(2043), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2043), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2043), - [anon_sym_export_DASHenv] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2043), - [anon_sym_list] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_in] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_make] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_do] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2043), - [anon_sym_catch] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_source] = ACTIONS(2043), - [anon_sym_source_DASHenv] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2043), - [anon_sym_hide] = ACTIONS(2043), - [anon_sym_hide_DASHenv] = ACTIONS(2043), - [anon_sym_overlay] = ACTIONS(2043), - [anon_sym_new] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_alias] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_let_DASHenv] = ACTIONS(2509), + [anon_sym_mut] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [aux_sym_cmd_identifier_token1] = ACTIONS(2509), + [aux_sym_cmd_identifier_token2] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2509), + [aux_sym_cmd_identifier_token4] = ACTIONS(2509), + [aux_sym_cmd_identifier_token5] = ACTIONS(2509), + [aux_sym_cmd_identifier_token6] = ACTIONS(2509), + [aux_sym_cmd_identifier_token7] = ACTIONS(2509), + [aux_sym_cmd_identifier_token8] = ACTIONS(2509), + [aux_sym_cmd_identifier_token9] = ACTIONS(2509), + [aux_sym_cmd_identifier_token10] = ACTIONS(2509), + [aux_sym_cmd_identifier_token11] = ACTIONS(2509), + [aux_sym_cmd_identifier_token12] = ACTIONS(2509), + [aux_sym_cmd_identifier_token13] = ACTIONS(2509), + [aux_sym_cmd_identifier_token14] = ACTIONS(2509), + [aux_sym_cmd_identifier_token15] = ACTIONS(2509), + [aux_sym_cmd_identifier_token16] = ACTIONS(2509), + [aux_sym_cmd_identifier_token17] = ACTIONS(2509), + [aux_sym_cmd_identifier_token18] = ACTIONS(2509), + [aux_sym_cmd_identifier_token19] = ACTIONS(2509), + [aux_sym_cmd_identifier_token20] = ACTIONS(2509), + [aux_sym_cmd_identifier_token21] = ACTIONS(2509), + [aux_sym_cmd_identifier_token22] = ACTIONS(2509), + [aux_sym_cmd_identifier_token23] = ACTIONS(2509), + [aux_sym_cmd_identifier_token24] = ACTIONS(2509), + [aux_sym_cmd_identifier_token25] = ACTIONS(2509), + [aux_sym_cmd_identifier_token26] = ACTIONS(2509), + [aux_sym_cmd_identifier_token27] = ACTIONS(2509), + [aux_sym_cmd_identifier_token28] = ACTIONS(2509), + [aux_sym_cmd_identifier_token29] = ACTIONS(2509), + [aux_sym_cmd_identifier_token30] = ACTIONS(2509), + [aux_sym_cmd_identifier_token31] = ACTIONS(2509), + [aux_sym_cmd_identifier_token32] = ACTIONS(2509), + [aux_sym_cmd_identifier_token33] = ACTIONS(2509), + [aux_sym_cmd_identifier_token34] = ACTIONS(2509), + [aux_sym_cmd_identifier_token35] = ACTIONS(2509), + [aux_sym_cmd_identifier_token36] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2511), + [aux_sym_cmd_identifier_token38] = ACTIONS(2509), + [aux_sym_cmd_identifier_token39] = ACTIONS(2511), + [aux_sym_cmd_identifier_token40] = ACTIONS(2511), + [anon_sym_def] = ACTIONS(2509), + [anon_sym_export_DASHenv] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_error] = ACTIONS(2509), + [anon_sym_list] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_in] = ACTIONS(2509), + [anon_sym_loop] = ACTIONS(2509), + [anon_sym_make] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_catch] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_source] = ACTIONS(2509), + [anon_sym_source_DASHenv] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_hide] = ACTIONS(2509), + [anon_sym_hide_DASHenv] = ACTIONS(2509), + [anon_sym_overlay] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_as] = ACTIONS(2509), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2511), + [aux_sym__val_number_decimal_token4] = ACTIONS(2511), + [aux_sym__val_number_token1] = ACTIONS(2511), + [aux_sym__val_number_token2] = ACTIONS(2511), + [aux_sym__val_number_token3] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym__str_single_quotes] = ACTIONS(2511), + [sym__str_back_ticks] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(247), }, [644] = { [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2368), - [anon_sym_alias] = ACTIONS(2368), - [anon_sym_let] = ACTIONS(2368), - [anon_sym_let_DASHenv] = ACTIONS(2368), - [anon_sym_mut] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [aux_sym_cmd_identifier_token1] = ACTIONS(2368), - [aux_sym_cmd_identifier_token2] = ACTIONS(2368), - [aux_sym_cmd_identifier_token3] = ACTIONS(2368), - [aux_sym_cmd_identifier_token4] = ACTIONS(2368), - [aux_sym_cmd_identifier_token5] = ACTIONS(2368), - [aux_sym_cmd_identifier_token6] = ACTIONS(2368), - [aux_sym_cmd_identifier_token7] = ACTIONS(2368), - [aux_sym_cmd_identifier_token8] = ACTIONS(2368), - [aux_sym_cmd_identifier_token9] = ACTIONS(2368), - [aux_sym_cmd_identifier_token10] = ACTIONS(2368), - [aux_sym_cmd_identifier_token11] = ACTIONS(2368), - [aux_sym_cmd_identifier_token12] = ACTIONS(2368), - [aux_sym_cmd_identifier_token13] = ACTIONS(2368), - [aux_sym_cmd_identifier_token14] = ACTIONS(2368), - [aux_sym_cmd_identifier_token15] = ACTIONS(2368), - [aux_sym_cmd_identifier_token16] = ACTIONS(2368), - [aux_sym_cmd_identifier_token17] = ACTIONS(2368), - [aux_sym_cmd_identifier_token18] = ACTIONS(2368), - [aux_sym_cmd_identifier_token19] = ACTIONS(2368), - [aux_sym_cmd_identifier_token20] = ACTIONS(2368), - [aux_sym_cmd_identifier_token21] = ACTIONS(2368), - [aux_sym_cmd_identifier_token22] = ACTIONS(2368), - [aux_sym_cmd_identifier_token23] = ACTIONS(2368), - [aux_sym_cmd_identifier_token24] = ACTIONS(2368), - [aux_sym_cmd_identifier_token25] = ACTIONS(2368), - [aux_sym_cmd_identifier_token26] = ACTIONS(2368), - [aux_sym_cmd_identifier_token27] = ACTIONS(2368), - [aux_sym_cmd_identifier_token28] = ACTIONS(2368), - [aux_sym_cmd_identifier_token29] = ACTIONS(2368), - [aux_sym_cmd_identifier_token30] = ACTIONS(2368), - [aux_sym_cmd_identifier_token31] = ACTIONS(2368), - [aux_sym_cmd_identifier_token32] = ACTIONS(2368), - [aux_sym_cmd_identifier_token33] = ACTIONS(2368), - [aux_sym_cmd_identifier_token34] = ACTIONS(2368), - [aux_sym_cmd_identifier_token35] = ACTIONS(2368), - [aux_sym_cmd_identifier_token36] = ACTIONS(2368), - [anon_sym_true] = ACTIONS(2370), - [anon_sym_false] = ACTIONS(2370), - [anon_sym_null] = ACTIONS(2370), - [aux_sym_cmd_identifier_token38] = ACTIONS(2368), - [aux_sym_cmd_identifier_token39] = ACTIONS(2370), - [aux_sym_cmd_identifier_token40] = ACTIONS(2370), - [anon_sym_def] = ACTIONS(2368), - [anon_sym_export_DASHenv] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym_module] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_error] = ACTIONS(2368), - [anon_sym_list] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_in] = ACTIONS(2368), - [anon_sym_loop] = ACTIONS(2368), - [anon_sym_make] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_else] = ACTIONS(2368), - [anon_sym_match] = ACTIONS(2368), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_source] = ACTIONS(2368), - [anon_sym_source_DASHenv] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_hide] = ACTIONS(2368), - [anon_sym_hide_DASHenv] = ACTIONS(2368), - [anon_sym_overlay] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_as] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2370), - [aux_sym__val_number_decimal_token1] = ACTIONS(2368), - [aux_sym__val_number_decimal_token2] = ACTIONS(2370), - [aux_sym__val_number_decimal_token3] = ACTIONS(2370), - [aux_sym__val_number_decimal_token4] = ACTIONS(2370), - [aux_sym__val_number_token1] = ACTIONS(2370), - [aux_sym__val_number_token2] = ACTIONS(2370), - [aux_sym__val_number_token3] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym__str_single_quotes] = ACTIONS(2370), - [sym__str_back_ticks] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2513), + [anon_sym_alias] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_let_DASHenv] = ACTIONS(2513), + [anon_sym_mut] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [aux_sym_cmd_identifier_token1] = ACTIONS(2513), + [aux_sym_cmd_identifier_token2] = ACTIONS(2513), + [aux_sym_cmd_identifier_token3] = ACTIONS(2513), + [aux_sym_cmd_identifier_token4] = ACTIONS(2513), + [aux_sym_cmd_identifier_token5] = ACTIONS(2513), + [aux_sym_cmd_identifier_token6] = ACTIONS(2513), + [aux_sym_cmd_identifier_token7] = ACTIONS(2513), + [aux_sym_cmd_identifier_token8] = ACTIONS(2513), + [aux_sym_cmd_identifier_token9] = ACTIONS(2513), + [aux_sym_cmd_identifier_token10] = ACTIONS(2513), + [aux_sym_cmd_identifier_token11] = ACTIONS(2513), + [aux_sym_cmd_identifier_token12] = ACTIONS(2513), + [aux_sym_cmd_identifier_token13] = ACTIONS(2513), + [aux_sym_cmd_identifier_token14] = ACTIONS(2513), + [aux_sym_cmd_identifier_token15] = ACTIONS(2513), + [aux_sym_cmd_identifier_token16] = ACTIONS(2513), + [aux_sym_cmd_identifier_token17] = ACTIONS(2513), + [aux_sym_cmd_identifier_token18] = ACTIONS(2513), + [aux_sym_cmd_identifier_token19] = ACTIONS(2513), + [aux_sym_cmd_identifier_token20] = ACTIONS(2513), + [aux_sym_cmd_identifier_token21] = ACTIONS(2513), + [aux_sym_cmd_identifier_token22] = ACTIONS(2513), + [aux_sym_cmd_identifier_token23] = ACTIONS(2513), + [aux_sym_cmd_identifier_token24] = ACTIONS(2513), + [aux_sym_cmd_identifier_token25] = ACTIONS(2513), + [aux_sym_cmd_identifier_token26] = ACTIONS(2513), + [aux_sym_cmd_identifier_token27] = ACTIONS(2513), + [aux_sym_cmd_identifier_token28] = ACTIONS(2513), + [aux_sym_cmd_identifier_token29] = ACTIONS(2513), + [aux_sym_cmd_identifier_token30] = ACTIONS(2513), + [aux_sym_cmd_identifier_token31] = ACTIONS(2513), + [aux_sym_cmd_identifier_token32] = ACTIONS(2513), + [aux_sym_cmd_identifier_token33] = ACTIONS(2513), + [aux_sym_cmd_identifier_token34] = ACTIONS(2513), + [aux_sym_cmd_identifier_token35] = ACTIONS(2513), + [aux_sym_cmd_identifier_token36] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2515), + [anon_sym_false] = ACTIONS(2515), + [anon_sym_null] = ACTIONS(2515), + [aux_sym_cmd_identifier_token38] = ACTIONS(2513), + [aux_sym_cmd_identifier_token39] = ACTIONS(2515), + [aux_sym_cmd_identifier_token40] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2513), + [anon_sym_export_DASHenv] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_module] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_error] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2513), + [anon_sym_loop] = ACTIONS(2513), + [anon_sym_make] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_catch] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_source] = ACTIONS(2513), + [anon_sym_source_DASHenv] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_hide] = ACTIONS(2513), + [anon_sym_hide_DASHenv] = ACTIONS(2513), + [anon_sym_overlay] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_as] = ACTIONS(2513), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2515), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2515), + [aux_sym__val_number_decimal_token4] = ACTIONS(2515), + [aux_sym__val_number_token1] = ACTIONS(2515), + [aux_sym__val_number_token2] = ACTIONS(2515), + [aux_sym__val_number_token3] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym__str_single_quotes] = ACTIONS(2515), + [sym__str_back_ticks] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_POUND] = ACTIONS(247), }, [645] = { [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_export] = ACTIONS(2015), + [anon_sym_alias] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_let_DASHenv] = ACTIONS(2015), + [anon_sym_mut] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [aux_sym_cmd_identifier_token1] = ACTIONS(2015), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2015), + [aux_sym_cmd_identifier_token9] = ACTIONS(2015), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2015), + [aux_sym_cmd_identifier_token13] = ACTIONS(2015), + [aux_sym_cmd_identifier_token14] = ACTIONS(2015), + [aux_sym_cmd_identifier_token15] = ACTIONS(2015), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2015), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_null] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_export_DASHenv] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_module] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2015), + [anon_sym_list] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_in] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_make] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_do] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_catch] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_source] = ACTIONS(2015), + [anon_sym_source_DASHenv] = ACTIONS(2015), + [anon_sym_register] = ACTIONS(2015), + [anon_sym_hide] = ACTIONS(2015), + [anon_sym_hide_DASHenv] = ACTIONS(2015), + [anon_sym_overlay] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_as] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2015), [anon_sym_POUND] = ACTIONS(247), }, [646] = { [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_list] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_new] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, [647] = { [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_list] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [aux_sym_cmd_identifier_token1] = ACTIONS(2305), + [aux_sym_cmd_identifier_token2] = ACTIONS(2305), + [aux_sym_cmd_identifier_token3] = ACTIONS(2305), + [aux_sym_cmd_identifier_token4] = ACTIONS(2305), + [aux_sym_cmd_identifier_token5] = ACTIONS(2305), + [aux_sym_cmd_identifier_token6] = ACTIONS(2305), + [aux_sym_cmd_identifier_token7] = ACTIONS(2305), + [aux_sym_cmd_identifier_token8] = ACTIONS(2305), + [aux_sym_cmd_identifier_token9] = ACTIONS(2305), + [aux_sym_cmd_identifier_token10] = ACTIONS(2305), + [aux_sym_cmd_identifier_token11] = ACTIONS(2305), + [aux_sym_cmd_identifier_token12] = ACTIONS(2305), + [aux_sym_cmd_identifier_token13] = ACTIONS(2305), + [aux_sym_cmd_identifier_token14] = ACTIONS(2305), + [aux_sym_cmd_identifier_token15] = ACTIONS(2305), + [aux_sym_cmd_identifier_token16] = ACTIONS(2305), + [aux_sym_cmd_identifier_token17] = ACTIONS(2305), + [aux_sym_cmd_identifier_token18] = ACTIONS(2305), + [aux_sym_cmd_identifier_token19] = ACTIONS(2305), + [aux_sym_cmd_identifier_token20] = ACTIONS(2305), + [aux_sym_cmd_identifier_token21] = ACTIONS(2305), + [aux_sym_cmd_identifier_token22] = ACTIONS(2305), + [aux_sym_cmd_identifier_token23] = ACTIONS(2305), + [aux_sym_cmd_identifier_token24] = ACTIONS(2305), + [aux_sym_cmd_identifier_token25] = ACTIONS(2305), + [aux_sym_cmd_identifier_token26] = ACTIONS(2305), + [aux_sym_cmd_identifier_token27] = ACTIONS(2305), + [aux_sym_cmd_identifier_token28] = ACTIONS(2305), + [aux_sym_cmd_identifier_token29] = ACTIONS(2305), + [aux_sym_cmd_identifier_token30] = ACTIONS(2305), + [aux_sym_cmd_identifier_token31] = ACTIONS(2305), + [aux_sym_cmd_identifier_token32] = ACTIONS(2305), + [aux_sym_cmd_identifier_token33] = ACTIONS(2305), + [aux_sym_cmd_identifier_token34] = ACTIONS(2305), + [aux_sym_cmd_identifier_token35] = ACTIONS(2305), + [aux_sym_cmd_identifier_token36] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_null] = ACTIONS(2307), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2307), + [aux_sym_cmd_identifier_token40] = ACTIONS(2307), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_in] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_make] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_catch] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2307), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [aux_sym__val_number_token1] = ACTIONS(2307), + [aux_sym__val_number_token2] = ACTIONS(2307), + [aux_sym__val_number_token3] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym__str_single_quotes] = ACTIONS(2307), + [sym__str_back_ticks] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(247), + }, + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(2525), + [anon_sym_alias] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_let_DASHenv] = ACTIONS(2525), + [anon_sym_mut] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [aux_sym_cmd_identifier_token1] = ACTIONS(2525), + [aux_sym_cmd_identifier_token2] = ACTIONS(2525), + [aux_sym_cmd_identifier_token3] = ACTIONS(2525), + [aux_sym_cmd_identifier_token4] = ACTIONS(2525), + [aux_sym_cmd_identifier_token5] = ACTIONS(2525), + [aux_sym_cmd_identifier_token6] = ACTIONS(2525), + [aux_sym_cmd_identifier_token7] = ACTIONS(2525), + [aux_sym_cmd_identifier_token8] = ACTIONS(2525), + [aux_sym_cmd_identifier_token9] = ACTIONS(2525), + [aux_sym_cmd_identifier_token10] = ACTIONS(2525), + [aux_sym_cmd_identifier_token11] = ACTIONS(2525), + [aux_sym_cmd_identifier_token12] = ACTIONS(2525), + [aux_sym_cmd_identifier_token13] = ACTIONS(2525), + [aux_sym_cmd_identifier_token14] = ACTIONS(2525), + [aux_sym_cmd_identifier_token15] = ACTIONS(2525), + [aux_sym_cmd_identifier_token16] = ACTIONS(2525), + [aux_sym_cmd_identifier_token17] = ACTIONS(2525), + [aux_sym_cmd_identifier_token18] = ACTIONS(2525), + [aux_sym_cmd_identifier_token19] = ACTIONS(2525), + [aux_sym_cmd_identifier_token20] = ACTIONS(2525), + [aux_sym_cmd_identifier_token21] = ACTIONS(2525), + [aux_sym_cmd_identifier_token22] = ACTIONS(2525), + [aux_sym_cmd_identifier_token23] = ACTIONS(2525), + [aux_sym_cmd_identifier_token24] = ACTIONS(2525), + [aux_sym_cmd_identifier_token25] = ACTIONS(2525), + [aux_sym_cmd_identifier_token26] = ACTIONS(2525), + [aux_sym_cmd_identifier_token27] = ACTIONS(2525), + [aux_sym_cmd_identifier_token28] = ACTIONS(2525), + [aux_sym_cmd_identifier_token29] = ACTIONS(2525), + [aux_sym_cmd_identifier_token30] = ACTIONS(2525), + [aux_sym_cmd_identifier_token31] = ACTIONS(2525), + [aux_sym_cmd_identifier_token32] = ACTIONS(2525), + [aux_sym_cmd_identifier_token33] = ACTIONS(2525), + [aux_sym_cmd_identifier_token34] = ACTIONS(2525), + [aux_sym_cmd_identifier_token35] = ACTIONS(2525), + [aux_sym_cmd_identifier_token36] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2527), + [anon_sym_false] = ACTIONS(2527), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2525), + [aux_sym_cmd_identifier_token39] = ACTIONS(2527), + [aux_sym_cmd_identifier_token40] = ACTIONS(2527), + [anon_sym_def] = ACTIONS(2525), + [anon_sym_export_DASHenv] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym_module] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_DOLLAR] = ACTIONS(2527), + [anon_sym_error] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [anon_sym_loop] = ACTIONS(2525), + [anon_sym_make] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_catch] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_source] = ACTIONS(2525), + [anon_sym_source_DASHenv] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_hide] = ACTIONS(2525), + [anon_sym_hide_DASHenv] = ACTIONS(2525), + [anon_sym_overlay] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_as] = ACTIONS(2525), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2527), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2527), + [aux_sym__val_number_decimal_token1] = ACTIONS(2525), + [aux_sym__val_number_decimal_token2] = ACTIONS(2527), + [aux_sym__val_number_decimal_token3] = ACTIONS(2527), + [aux_sym__val_number_decimal_token4] = ACTIONS(2527), + [aux_sym__val_number_token1] = ACTIONS(2527), + [aux_sym__val_number_token2] = ACTIONS(2527), + [aux_sym__val_number_token3] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym__str_single_quotes] = ACTIONS(2527), + [sym__str_back_ticks] = ACTIONS(2527), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(247), + }, + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_alias] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_let_DASHenv] = ACTIONS(1667), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [aux_sym_cmd_identifier_token1] = ACTIONS(1667), + [aux_sym_cmd_identifier_token2] = ACTIONS(1667), + [aux_sym_cmd_identifier_token3] = ACTIONS(1667), + [aux_sym_cmd_identifier_token4] = ACTIONS(1667), + [aux_sym_cmd_identifier_token5] = ACTIONS(1667), + [aux_sym_cmd_identifier_token6] = ACTIONS(1667), + [aux_sym_cmd_identifier_token7] = ACTIONS(1667), + [aux_sym_cmd_identifier_token8] = ACTIONS(1667), + [aux_sym_cmd_identifier_token9] = ACTIONS(1667), + [aux_sym_cmd_identifier_token10] = ACTIONS(1667), + [aux_sym_cmd_identifier_token11] = ACTIONS(1667), + [aux_sym_cmd_identifier_token12] = ACTIONS(1667), + [aux_sym_cmd_identifier_token13] = ACTIONS(1667), + [aux_sym_cmd_identifier_token14] = ACTIONS(1667), + [aux_sym_cmd_identifier_token15] = ACTIONS(1667), + [aux_sym_cmd_identifier_token16] = ACTIONS(1667), + [aux_sym_cmd_identifier_token17] = ACTIONS(1667), + [aux_sym_cmd_identifier_token18] = ACTIONS(1667), + [aux_sym_cmd_identifier_token19] = ACTIONS(1667), + [aux_sym_cmd_identifier_token20] = ACTIONS(1667), + [aux_sym_cmd_identifier_token21] = ACTIONS(1667), + [aux_sym_cmd_identifier_token22] = ACTIONS(1667), + [aux_sym_cmd_identifier_token23] = ACTIONS(1667), + [aux_sym_cmd_identifier_token24] = ACTIONS(1667), + [aux_sym_cmd_identifier_token25] = ACTIONS(1667), + [aux_sym_cmd_identifier_token26] = ACTIONS(1667), + [aux_sym_cmd_identifier_token27] = ACTIONS(1667), + [aux_sym_cmd_identifier_token28] = ACTIONS(1667), + [aux_sym_cmd_identifier_token29] = ACTIONS(1667), + [aux_sym_cmd_identifier_token30] = ACTIONS(1667), + [aux_sym_cmd_identifier_token31] = ACTIONS(1667), + [aux_sym_cmd_identifier_token32] = ACTIONS(1667), + [aux_sym_cmd_identifier_token33] = ACTIONS(1667), + [aux_sym_cmd_identifier_token34] = ACTIONS(1667), + [aux_sym_cmd_identifier_token35] = ACTIONS(1667), + [aux_sym_cmd_identifier_token36] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1667), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_export_DASHenv] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_use] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1667), + [anon_sym_list] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_loop] = ACTIONS(1667), + [anon_sym_make] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_catch] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_source] = ACTIONS(1667), + [anon_sym_source_DASHenv] = ACTIONS(1667), + [anon_sym_register] = ACTIONS(1667), + [anon_sym_hide] = ACTIONS(1667), + [anon_sym_hide_DASHenv] = ACTIONS(1667), + [anon_sym_overlay] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(247), + }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(247), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2029), + [aux_sym_cmd_identifier_token3] = ACTIONS(2029), + [aux_sym_cmd_identifier_token4] = ACTIONS(2029), + [aux_sym_cmd_identifier_token5] = ACTIONS(2029), + [aux_sym_cmd_identifier_token6] = ACTIONS(2029), + [aux_sym_cmd_identifier_token7] = ACTIONS(2029), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2029), + [aux_sym_cmd_identifier_token11] = ACTIONS(2029), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2029), + [aux_sym_cmd_identifier_token17] = ACTIONS(2029), + [aux_sym_cmd_identifier_token18] = ACTIONS(2029), + [aux_sym_cmd_identifier_token19] = ACTIONS(2029), + [aux_sym_cmd_identifier_token20] = ACTIONS(2029), + [aux_sym_cmd_identifier_token21] = ACTIONS(2029), + [aux_sym_cmd_identifier_token22] = ACTIONS(2029), + [aux_sym_cmd_identifier_token23] = ACTIONS(2029), + [aux_sym_cmd_identifier_token24] = ACTIONS(2029), + [aux_sym_cmd_identifier_token25] = ACTIONS(2029), + [aux_sym_cmd_identifier_token26] = ACTIONS(2029), + [aux_sym_cmd_identifier_token27] = ACTIONS(2029), + [aux_sym_cmd_identifier_token28] = ACTIONS(2029), + [aux_sym_cmd_identifier_token29] = ACTIONS(2029), + [aux_sym_cmd_identifier_token30] = ACTIONS(2029), + [aux_sym_cmd_identifier_token31] = ACTIONS(2029), + [aux_sym_cmd_identifier_token32] = ACTIONS(2029), + [aux_sym_cmd_identifier_token33] = ACTIONS(2029), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2029), + [aux_sym_cmd_identifier_token36] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_list] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_new] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(247), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(247), + }, + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2033), + [aux_sym_cmd_identifier_token3] = ACTIONS(2033), + [aux_sym_cmd_identifier_token4] = ACTIONS(2033), + [aux_sym_cmd_identifier_token5] = ACTIONS(2033), + [aux_sym_cmd_identifier_token6] = ACTIONS(2033), + [aux_sym_cmd_identifier_token7] = ACTIONS(2033), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2033), + [aux_sym_cmd_identifier_token11] = ACTIONS(2033), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2033), + [aux_sym_cmd_identifier_token17] = ACTIONS(2033), + [aux_sym_cmd_identifier_token18] = ACTIONS(2033), + [aux_sym_cmd_identifier_token19] = ACTIONS(2033), + [aux_sym_cmd_identifier_token20] = ACTIONS(2033), + [aux_sym_cmd_identifier_token21] = ACTIONS(2033), + [aux_sym_cmd_identifier_token22] = ACTIONS(2033), + [aux_sym_cmd_identifier_token23] = ACTIONS(2033), + [aux_sym_cmd_identifier_token24] = ACTIONS(2033), + [aux_sym_cmd_identifier_token25] = ACTIONS(2033), + [aux_sym_cmd_identifier_token26] = ACTIONS(2033), + [aux_sym_cmd_identifier_token27] = ACTIONS(2033), + [aux_sym_cmd_identifier_token28] = ACTIONS(2033), + [aux_sym_cmd_identifier_token29] = ACTIONS(2033), + [aux_sym_cmd_identifier_token30] = ACTIONS(2033), + [aux_sym_cmd_identifier_token31] = ACTIONS(2033), + [aux_sym_cmd_identifier_token32] = ACTIONS(2033), + [aux_sym_cmd_identifier_token33] = ACTIONS(2033), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2033), + [aux_sym_cmd_identifier_token36] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2033), [anon_sym_POUND] = ACTIONS(247), }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_alias] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_let_DASHenv] = ACTIONS(2436), - [anon_sym_mut] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [aux_sym_cmd_identifier_token1] = ACTIONS(2436), - [aux_sym_cmd_identifier_token2] = ACTIONS(2436), - [aux_sym_cmd_identifier_token3] = ACTIONS(2436), - [aux_sym_cmd_identifier_token4] = ACTIONS(2436), - [aux_sym_cmd_identifier_token5] = ACTIONS(2436), - [aux_sym_cmd_identifier_token6] = ACTIONS(2436), - [aux_sym_cmd_identifier_token7] = ACTIONS(2436), - [aux_sym_cmd_identifier_token8] = ACTIONS(2436), - [aux_sym_cmd_identifier_token9] = ACTIONS(2436), - [aux_sym_cmd_identifier_token10] = ACTIONS(2436), - [aux_sym_cmd_identifier_token11] = ACTIONS(2436), - [aux_sym_cmd_identifier_token12] = ACTIONS(2436), - [aux_sym_cmd_identifier_token13] = ACTIONS(2436), - [aux_sym_cmd_identifier_token14] = ACTIONS(2436), - [aux_sym_cmd_identifier_token15] = ACTIONS(2436), - [aux_sym_cmd_identifier_token16] = ACTIONS(2436), - [aux_sym_cmd_identifier_token17] = ACTIONS(2436), - [aux_sym_cmd_identifier_token18] = ACTIONS(2436), - [aux_sym_cmd_identifier_token19] = ACTIONS(2436), - [aux_sym_cmd_identifier_token20] = ACTIONS(2436), - [aux_sym_cmd_identifier_token21] = ACTIONS(2436), - [aux_sym_cmd_identifier_token22] = ACTIONS(2436), - [aux_sym_cmd_identifier_token23] = ACTIONS(2436), - [aux_sym_cmd_identifier_token24] = ACTIONS(2436), - [aux_sym_cmd_identifier_token25] = ACTIONS(2436), - [aux_sym_cmd_identifier_token26] = ACTIONS(2436), - [aux_sym_cmd_identifier_token27] = ACTIONS(2436), - [aux_sym_cmd_identifier_token28] = ACTIONS(2436), - [aux_sym_cmd_identifier_token29] = ACTIONS(2436), - [aux_sym_cmd_identifier_token30] = ACTIONS(2436), - [aux_sym_cmd_identifier_token31] = ACTIONS(2436), - [aux_sym_cmd_identifier_token32] = ACTIONS(2436), - [aux_sym_cmd_identifier_token33] = ACTIONS(2436), - [aux_sym_cmd_identifier_token34] = ACTIONS(2436), - [aux_sym_cmd_identifier_token35] = ACTIONS(2436), - [aux_sym_cmd_identifier_token36] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_null] = ACTIONS(2438), - [aux_sym_cmd_identifier_token38] = ACTIONS(2436), - [aux_sym_cmd_identifier_token39] = ACTIONS(2438), - [aux_sym_cmd_identifier_token40] = ACTIONS(2438), - [anon_sym_def] = ACTIONS(2436), - [anon_sym_export_DASHenv] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_DOLLAR] = ACTIONS(2438), - [anon_sym_error] = ACTIONS(2436), - [anon_sym_list] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_in] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_make] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_catch] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_source] = ACTIONS(2436), - [anon_sym_source_DASHenv] = ACTIONS(2436), - [anon_sym_register] = ACTIONS(2436), - [anon_sym_hide] = ACTIONS(2436), - [anon_sym_hide_DASHenv] = ACTIONS(2436), - [anon_sym_overlay] = ACTIONS(2436), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_as] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2438), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2436), - [aux_sym__val_number_decimal_token2] = ACTIONS(2438), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [sym__str_single_quotes] = ACTIONS(2438), - [sym__str_back_ticks] = ACTIONS(2438), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2436), + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(1659), + [anon_sym_alias] = ACTIONS(1659), + [anon_sym_let] = ACTIONS(1659), + [anon_sym_let_DASHenv] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [aux_sym_cmd_identifier_token1] = ACTIONS(1659), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1659), + [aux_sym_cmd_identifier_token9] = ACTIONS(1659), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1659), + [aux_sym_cmd_identifier_token13] = ACTIONS(1659), + [aux_sym_cmd_identifier_token14] = ACTIONS(1659), + [aux_sym_cmd_identifier_token15] = ACTIONS(1659), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1659), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_export_DASHenv] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym_module] = ACTIONS(1659), + [anon_sym_use] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1659), + [anon_sym_list] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_loop] = ACTIONS(1659), + [anon_sym_make] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_source] = ACTIONS(1659), + [anon_sym_source_DASHenv] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_hide] = ACTIONS(1659), + [anon_sym_hide_DASHenv] = ACTIONS(1659), + [anon_sym_overlay] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1923), - [aux_sym_cmd_identifier_token40] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_list] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_decimal_token4] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1921), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_alias] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_let_DASHenv] = ACTIONS(2352), + [anon_sym_mut] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [aux_sym_cmd_identifier_token1] = ACTIONS(2352), + [aux_sym_cmd_identifier_token2] = ACTIONS(2352), + [aux_sym_cmd_identifier_token3] = ACTIONS(2352), + [aux_sym_cmd_identifier_token4] = ACTIONS(2352), + [aux_sym_cmd_identifier_token5] = ACTIONS(2352), + [aux_sym_cmd_identifier_token6] = ACTIONS(2352), + [aux_sym_cmd_identifier_token7] = ACTIONS(2352), + [aux_sym_cmd_identifier_token8] = ACTIONS(2352), + [aux_sym_cmd_identifier_token9] = ACTIONS(2352), + [aux_sym_cmd_identifier_token10] = ACTIONS(2352), + [aux_sym_cmd_identifier_token11] = ACTIONS(2352), + [aux_sym_cmd_identifier_token12] = ACTIONS(2352), + [aux_sym_cmd_identifier_token13] = ACTIONS(2352), + [aux_sym_cmd_identifier_token14] = ACTIONS(2352), + [aux_sym_cmd_identifier_token15] = ACTIONS(2352), + [aux_sym_cmd_identifier_token16] = ACTIONS(2352), + [aux_sym_cmd_identifier_token17] = ACTIONS(2352), + [aux_sym_cmd_identifier_token18] = ACTIONS(2352), + [aux_sym_cmd_identifier_token19] = ACTIONS(2352), + [aux_sym_cmd_identifier_token20] = ACTIONS(2352), + [aux_sym_cmd_identifier_token21] = ACTIONS(2352), + [aux_sym_cmd_identifier_token22] = ACTIONS(2352), + [aux_sym_cmd_identifier_token23] = ACTIONS(2352), + [aux_sym_cmd_identifier_token24] = ACTIONS(2352), + [aux_sym_cmd_identifier_token25] = ACTIONS(2352), + [aux_sym_cmd_identifier_token26] = ACTIONS(2352), + [aux_sym_cmd_identifier_token27] = ACTIONS(2352), + [aux_sym_cmd_identifier_token28] = ACTIONS(2352), + [aux_sym_cmd_identifier_token29] = ACTIONS(2352), + [aux_sym_cmd_identifier_token30] = ACTIONS(2352), + [aux_sym_cmd_identifier_token31] = ACTIONS(2352), + [aux_sym_cmd_identifier_token32] = ACTIONS(2352), + [aux_sym_cmd_identifier_token33] = ACTIONS(2352), + [aux_sym_cmd_identifier_token34] = ACTIONS(2352), + [aux_sym_cmd_identifier_token35] = ACTIONS(2352), + [aux_sym_cmd_identifier_token36] = ACTIONS(2352), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2535), + [aux_sym_cmd_identifier_token38] = ACTIONS(2352), + [aux_sym_cmd_identifier_token39] = ACTIONS(2535), + [aux_sym_cmd_identifier_token40] = ACTIONS(2535), + [anon_sym_def] = ACTIONS(2352), + [anon_sym_export_DASHenv] = ACTIONS(2352), + [anon_sym_extern] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_use] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2535), + [anon_sym_error] = ACTIONS(2352), + [anon_sym_list] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_in] = ACTIONS(2352), + [anon_sym_loop] = ACTIONS(2352), + [anon_sym_make] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_match] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_catch] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_source] = ACTIONS(2352), + [anon_sym_source_DASHenv] = ACTIONS(2352), + [anon_sym_register] = ACTIONS(2352), + [anon_sym_hide] = ACTIONS(2352), + [anon_sym_hide_DASHenv] = ACTIONS(2352), + [anon_sym_overlay] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2535), + [aux_sym__val_number_decimal_token1] = ACTIONS(2352), + [aux_sym__val_number_decimal_token2] = ACTIONS(2535), + [aux_sym__val_number_decimal_token3] = ACTIONS(2535), + [aux_sym__val_number_decimal_token4] = ACTIONS(2535), + [aux_sym__val_number_token1] = ACTIONS(2535), + [aux_sym__val_number_token2] = ACTIONS(2535), + [aux_sym__val_number_token3] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym__str_single_quotes] = ACTIONS(2535), + [sym__str_back_ticks] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2352), [anon_sym_POUND] = ACTIONS(247), }, - [650] = { - [sym_comment] = STATE(650), + [657] = { + [sym_comment] = STATE(657), [anon_sym_export] = ACTIONS(2380), [anon_sym_alias] = ACTIONS(2380), [anon_sym_let] = ACTIONS(2380), @@ -144976,1097 +147403,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2380), [anon_sym_POUND] = ACTIONS(247), }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(2051), - [anon_sym_alias] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_let_DASHenv] = ACTIONS(2051), - [anon_sym_mut] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [aux_sym_cmd_identifier_token1] = ACTIONS(2051), - [aux_sym_cmd_identifier_token2] = ACTIONS(2051), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [aux_sym_cmd_identifier_token6] = ACTIONS(2051), - [aux_sym_cmd_identifier_token7] = ACTIONS(2051), - [aux_sym_cmd_identifier_token8] = ACTIONS(2051), - [aux_sym_cmd_identifier_token9] = ACTIONS(2051), - [aux_sym_cmd_identifier_token10] = ACTIONS(2051), - [aux_sym_cmd_identifier_token11] = ACTIONS(2051), - [aux_sym_cmd_identifier_token12] = ACTIONS(2051), - [aux_sym_cmd_identifier_token13] = ACTIONS(2051), - [aux_sym_cmd_identifier_token14] = ACTIONS(2051), - [aux_sym_cmd_identifier_token15] = ACTIONS(2051), - [aux_sym_cmd_identifier_token16] = ACTIONS(2051), - [aux_sym_cmd_identifier_token17] = ACTIONS(2051), - [aux_sym_cmd_identifier_token18] = ACTIONS(2051), - [aux_sym_cmd_identifier_token19] = ACTIONS(2051), - [aux_sym_cmd_identifier_token20] = ACTIONS(2051), - [aux_sym_cmd_identifier_token21] = ACTIONS(2051), - [aux_sym_cmd_identifier_token22] = ACTIONS(2051), - [aux_sym_cmd_identifier_token23] = ACTIONS(2051), - [aux_sym_cmd_identifier_token24] = ACTIONS(2051), - [aux_sym_cmd_identifier_token25] = ACTIONS(2051), - [aux_sym_cmd_identifier_token26] = ACTIONS(2051), - [aux_sym_cmd_identifier_token27] = ACTIONS(2051), - [aux_sym_cmd_identifier_token28] = ACTIONS(2051), - [aux_sym_cmd_identifier_token29] = ACTIONS(2051), - [aux_sym_cmd_identifier_token30] = ACTIONS(2051), - [aux_sym_cmd_identifier_token31] = ACTIONS(2051), - [aux_sym_cmd_identifier_token32] = ACTIONS(2051), - [aux_sym_cmd_identifier_token33] = ACTIONS(2051), - [aux_sym_cmd_identifier_token34] = ACTIONS(2051), - [aux_sym_cmd_identifier_token35] = ACTIONS(2051), - [aux_sym_cmd_identifier_token36] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2051), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2051), - [anon_sym_export_DASHenv] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_module] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2051), - [anon_sym_list] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_in] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_make] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2051), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_source] = ACTIONS(2051), - [anon_sym_source_DASHenv] = ACTIONS(2051), - [anon_sym_register] = ACTIONS(2051), - [anon_sym_hide] = ACTIONS(2051), - [anon_sym_hide_DASHenv] = ACTIONS(2051), - [anon_sym_overlay] = ACTIONS(2051), - [anon_sym_new] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(247), - }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(247), - }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(2364), - [anon_sym_alias] = ACTIONS(2364), - [anon_sym_let] = ACTIONS(2364), - [anon_sym_let_DASHenv] = ACTIONS(2364), - [anon_sym_mut] = ACTIONS(2364), - [anon_sym_const] = ACTIONS(2364), - [aux_sym_cmd_identifier_token1] = ACTIONS(2364), - [aux_sym_cmd_identifier_token2] = ACTIONS(2364), - [aux_sym_cmd_identifier_token3] = ACTIONS(2364), - [aux_sym_cmd_identifier_token4] = ACTIONS(2364), - [aux_sym_cmd_identifier_token5] = ACTIONS(2364), - [aux_sym_cmd_identifier_token6] = ACTIONS(2364), - [aux_sym_cmd_identifier_token7] = ACTIONS(2364), - [aux_sym_cmd_identifier_token8] = ACTIONS(2364), - [aux_sym_cmd_identifier_token9] = ACTIONS(2364), - [aux_sym_cmd_identifier_token10] = ACTIONS(2364), - [aux_sym_cmd_identifier_token11] = ACTIONS(2364), - [aux_sym_cmd_identifier_token12] = ACTIONS(2364), - [aux_sym_cmd_identifier_token13] = ACTIONS(2364), - [aux_sym_cmd_identifier_token14] = ACTIONS(2364), - [aux_sym_cmd_identifier_token15] = ACTIONS(2364), - [aux_sym_cmd_identifier_token16] = ACTIONS(2364), - [aux_sym_cmd_identifier_token17] = ACTIONS(2364), - [aux_sym_cmd_identifier_token18] = ACTIONS(2364), - [aux_sym_cmd_identifier_token19] = ACTIONS(2364), - [aux_sym_cmd_identifier_token20] = ACTIONS(2364), - [aux_sym_cmd_identifier_token21] = ACTIONS(2364), - [aux_sym_cmd_identifier_token22] = ACTIONS(2364), - [aux_sym_cmd_identifier_token23] = ACTIONS(2364), - [aux_sym_cmd_identifier_token24] = ACTIONS(2364), - [aux_sym_cmd_identifier_token25] = ACTIONS(2364), - [aux_sym_cmd_identifier_token26] = ACTIONS(2364), - [aux_sym_cmd_identifier_token27] = ACTIONS(2364), - [aux_sym_cmd_identifier_token28] = ACTIONS(2364), - [aux_sym_cmd_identifier_token29] = ACTIONS(2364), - [aux_sym_cmd_identifier_token30] = ACTIONS(2364), - [aux_sym_cmd_identifier_token31] = ACTIONS(2364), - [aux_sym_cmd_identifier_token32] = ACTIONS(2364), - [aux_sym_cmd_identifier_token33] = ACTIONS(2364), - [aux_sym_cmd_identifier_token34] = ACTIONS(2364), - [aux_sym_cmd_identifier_token35] = ACTIONS(2364), - [aux_sym_cmd_identifier_token36] = ACTIONS(2364), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [anon_sym_null] = ACTIONS(2366), - [aux_sym_cmd_identifier_token38] = ACTIONS(2364), - [aux_sym_cmd_identifier_token39] = ACTIONS(2366), - [aux_sym_cmd_identifier_token40] = ACTIONS(2366), - [anon_sym_def] = ACTIONS(2364), - [anon_sym_export_DASHenv] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_module] = ACTIONS(2364), - [anon_sym_use] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2364), - [anon_sym_list] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_loop] = ACTIONS(2364), - [anon_sym_make] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_match] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_catch] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_source] = ACTIONS(2364), - [anon_sym_source_DASHenv] = ACTIONS(2364), - [anon_sym_register] = ACTIONS(2364), - [anon_sym_hide] = ACTIONS(2364), - [anon_sym_hide_DASHenv] = ACTIONS(2364), - [anon_sym_overlay] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), - [aux_sym__val_number_decimal_token1] = ACTIONS(2364), - [aux_sym__val_number_decimal_token2] = ACTIONS(2366), - [aux_sym__val_number_decimal_token3] = ACTIONS(2366), - [aux_sym__val_number_decimal_token4] = ACTIONS(2366), - [aux_sym__val_number_token1] = ACTIONS(2366), - [aux_sym__val_number_token2] = ACTIONS(2366), - [aux_sym__val_number_token3] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2366), - [sym__str_single_quotes] = ACTIONS(2366), - [sym__str_back_ticks] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(247), - }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_list] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(247), - }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(2023), - [anon_sym_alias] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_let_DASHenv] = ACTIONS(2023), - [anon_sym_mut] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [aux_sym_cmd_identifier_token1] = ACTIONS(2023), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2023), - [aux_sym_cmd_identifier_token9] = ACTIONS(2023), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2023), - [aux_sym_cmd_identifier_token13] = ACTIONS(2023), - [aux_sym_cmd_identifier_token14] = ACTIONS(2023), - [aux_sym_cmd_identifier_token15] = ACTIONS(2023), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2023), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2023), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2023), - [anon_sym_export_DASHenv] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_module] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2023), - [anon_sym_list] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_in] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_make] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_do] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2023), - [anon_sym_catch] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_source] = ACTIONS(2023), - [anon_sym_source_DASHenv] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2023), - [anon_sym_hide] = ACTIONS(2023), - [anon_sym_hide_DASHenv] = ACTIONS(2023), - [anon_sym_overlay] = ACTIONS(2023), - [anon_sym_new] = ACTIONS(2023), - [anon_sym_as] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2023), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(247), - }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2364), - [anon_sym_alias] = ACTIONS(2364), - [anon_sym_let] = ACTIONS(2364), - [anon_sym_let_DASHenv] = ACTIONS(2364), - [anon_sym_mut] = ACTIONS(2364), - [anon_sym_const] = ACTIONS(2364), - [aux_sym_cmd_identifier_token1] = ACTIONS(2364), - [aux_sym_cmd_identifier_token2] = ACTIONS(2364), - [aux_sym_cmd_identifier_token3] = ACTIONS(2364), - [aux_sym_cmd_identifier_token4] = ACTIONS(2364), - [aux_sym_cmd_identifier_token5] = ACTIONS(2364), - [aux_sym_cmd_identifier_token6] = ACTIONS(2364), - [aux_sym_cmd_identifier_token7] = ACTIONS(2364), - [aux_sym_cmd_identifier_token8] = ACTIONS(2364), - [aux_sym_cmd_identifier_token9] = ACTIONS(2364), - [aux_sym_cmd_identifier_token10] = ACTIONS(2364), - [aux_sym_cmd_identifier_token11] = ACTIONS(2364), - [aux_sym_cmd_identifier_token12] = ACTIONS(2364), - [aux_sym_cmd_identifier_token13] = ACTIONS(2364), - [aux_sym_cmd_identifier_token14] = ACTIONS(2364), - [aux_sym_cmd_identifier_token15] = ACTIONS(2364), - [aux_sym_cmd_identifier_token16] = ACTIONS(2364), - [aux_sym_cmd_identifier_token17] = ACTIONS(2364), - [aux_sym_cmd_identifier_token18] = ACTIONS(2364), - [aux_sym_cmd_identifier_token19] = ACTIONS(2364), - [aux_sym_cmd_identifier_token20] = ACTIONS(2364), - [aux_sym_cmd_identifier_token21] = ACTIONS(2364), - [aux_sym_cmd_identifier_token22] = ACTIONS(2364), - [aux_sym_cmd_identifier_token23] = ACTIONS(2364), - [aux_sym_cmd_identifier_token24] = ACTIONS(2364), - [aux_sym_cmd_identifier_token25] = ACTIONS(2364), - [aux_sym_cmd_identifier_token26] = ACTIONS(2364), - [aux_sym_cmd_identifier_token27] = ACTIONS(2364), - [aux_sym_cmd_identifier_token28] = ACTIONS(2364), - [aux_sym_cmd_identifier_token29] = ACTIONS(2364), - [aux_sym_cmd_identifier_token30] = ACTIONS(2364), - [aux_sym_cmd_identifier_token31] = ACTIONS(2364), - [aux_sym_cmd_identifier_token32] = ACTIONS(2364), - [aux_sym_cmd_identifier_token33] = ACTIONS(2364), - [aux_sym_cmd_identifier_token34] = ACTIONS(2364), - [aux_sym_cmd_identifier_token35] = ACTIONS(2364), - [aux_sym_cmd_identifier_token36] = ACTIONS(2364), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [anon_sym_null] = ACTIONS(2366), - [aux_sym_cmd_identifier_token38] = ACTIONS(2364), - [aux_sym_cmd_identifier_token39] = ACTIONS(2366), - [aux_sym_cmd_identifier_token40] = ACTIONS(2366), - [anon_sym_def] = ACTIONS(2364), - [anon_sym_export_DASHenv] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_module] = ACTIONS(2364), - [anon_sym_use] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2364), - [anon_sym_list] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_loop] = ACTIONS(2364), - [anon_sym_make] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_match] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_catch] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_source] = ACTIONS(2364), - [anon_sym_source_DASHenv] = ACTIONS(2364), - [anon_sym_register] = ACTIONS(2364), - [anon_sym_hide] = ACTIONS(2364), - [anon_sym_hide_DASHenv] = ACTIONS(2364), - [anon_sym_overlay] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), - [aux_sym__val_number_decimal_token1] = ACTIONS(2364), - [aux_sym__val_number_decimal_token2] = ACTIONS(2366), - [aux_sym__val_number_decimal_token3] = ACTIONS(2366), - [aux_sym__val_number_decimal_token4] = ACTIONS(2366), - [aux_sym__val_number_token1] = ACTIONS(2366), - [aux_sym__val_number_token2] = ACTIONS(2366), - [aux_sym__val_number_token3] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2366), - [sym__str_single_quotes] = ACTIONS(2366), - [sym__str_back_ticks] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(247), - }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_alias] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_let_DASHenv] = ACTIONS(2345), - [anon_sym_mut] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [aux_sym_cmd_identifier_token1] = ACTIONS(2345), - [aux_sym_cmd_identifier_token2] = ACTIONS(2345), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [aux_sym_cmd_identifier_token6] = ACTIONS(2345), - [aux_sym_cmd_identifier_token7] = ACTIONS(2345), - [aux_sym_cmd_identifier_token8] = ACTIONS(2345), - [aux_sym_cmd_identifier_token9] = ACTIONS(2345), - [aux_sym_cmd_identifier_token10] = ACTIONS(2345), - [aux_sym_cmd_identifier_token11] = ACTIONS(2345), - [aux_sym_cmd_identifier_token12] = ACTIONS(2345), - [aux_sym_cmd_identifier_token13] = ACTIONS(2345), - [aux_sym_cmd_identifier_token14] = ACTIONS(2345), - [aux_sym_cmd_identifier_token15] = ACTIONS(2345), - [aux_sym_cmd_identifier_token16] = ACTIONS(2345), - [aux_sym_cmd_identifier_token17] = ACTIONS(2345), - [aux_sym_cmd_identifier_token18] = ACTIONS(2345), - [aux_sym_cmd_identifier_token19] = ACTIONS(2345), - [aux_sym_cmd_identifier_token20] = ACTIONS(2345), - [aux_sym_cmd_identifier_token21] = ACTIONS(2345), - [aux_sym_cmd_identifier_token22] = ACTIONS(2345), - [aux_sym_cmd_identifier_token23] = ACTIONS(2345), - [aux_sym_cmd_identifier_token24] = ACTIONS(2345), - [aux_sym_cmd_identifier_token25] = ACTIONS(2345), - [aux_sym_cmd_identifier_token26] = ACTIONS(2345), - [aux_sym_cmd_identifier_token27] = ACTIONS(2345), - [aux_sym_cmd_identifier_token28] = ACTIONS(2345), - [aux_sym_cmd_identifier_token29] = ACTIONS(2345), - [aux_sym_cmd_identifier_token30] = ACTIONS(2345), - [aux_sym_cmd_identifier_token31] = ACTIONS(2345), - [aux_sym_cmd_identifier_token32] = ACTIONS(2345), - [aux_sym_cmd_identifier_token33] = ACTIONS(2345), - [aux_sym_cmd_identifier_token34] = ACTIONS(2345), - [aux_sym_cmd_identifier_token35] = ACTIONS(2345), - [aux_sym_cmd_identifier_token36] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_null] = ACTIONS(2347), - [aux_sym_cmd_identifier_token38] = ACTIONS(2345), - [aux_sym_cmd_identifier_token39] = ACTIONS(2347), - [aux_sym_cmd_identifier_token40] = ACTIONS(2347), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_export_DASHenv] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_error] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_in] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_make] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_catch] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_source] = ACTIONS(2345), - [anon_sym_source_DASHenv] = ACTIONS(2345), - [anon_sym_register] = ACTIONS(2345), - [anon_sym_hide] = ACTIONS(2345), - [anon_sym_hide_DASHenv] = ACTIONS(2345), - [anon_sym_overlay] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2347), - [aux_sym__val_number_decimal_token3] = ACTIONS(2347), - [aux_sym__val_number_decimal_token4] = ACTIONS(2347), - [aux_sym__val_number_token1] = ACTIONS(2347), - [aux_sym__val_number_token2] = ACTIONS(2347), - [aux_sym__val_number_token3] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym__str_single_quotes] = ACTIONS(2347), - [sym__str_back_ticks] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(247), - }, [658] = { [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_alias] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_let_DASHenv] = ACTIONS(2461), - [anon_sym_mut] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [aux_sym_cmd_identifier_token1] = ACTIONS(2461), - [aux_sym_cmd_identifier_token2] = ACTIONS(2461), - [aux_sym_cmd_identifier_token3] = ACTIONS(2461), - [aux_sym_cmd_identifier_token4] = ACTIONS(2461), - [aux_sym_cmd_identifier_token5] = ACTIONS(2461), - [aux_sym_cmd_identifier_token6] = ACTIONS(2461), - [aux_sym_cmd_identifier_token7] = ACTIONS(2461), - [aux_sym_cmd_identifier_token8] = ACTIONS(2461), - [aux_sym_cmd_identifier_token9] = ACTIONS(2461), - [aux_sym_cmd_identifier_token10] = ACTIONS(2461), - [aux_sym_cmd_identifier_token11] = ACTIONS(2461), - [aux_sym_cmd_identifier_token12] = ACTIONS(2461), - [aux_sym_cmd_identifier_token13] = ACTIONS(2461), - [aux_sym_cmd_identifier_token14] = ACTIONS(2461), - [aux_sym_cmd_identifier_token15] = ACTIONS(2461), - [aux_sym_cmd_identifier_token16] = ACTIONS(2461), - [aux_sym_cmd_identifier_token17] = ACTIONS(2461), - [aux_sym_cmd_identifier_token18] = ACTIONS(2461), - [aux_sym_cmd_identifier_token19] = ACTIONS(2461), - [aux_sym_cmd_identifier_token20] = ACTIONS(2461), - [aux_sym_cmd_identifier_token21] = ACTIONS(2461), - [aux_sym_cmd_identifier_token22] = ACTIONS(2461), - [aux_sym_cmd_identifier_token23] = ACTIONS(2461), - [aux_sym_cmd_identifier_token24] = ACTIONS(2461), - [aux_sym_cmd_identifier_token25] = ACTIONS(2461), - [aux_sym_cmd_identifier_token26] = ACTIONS(2461), - [aux_sym_cmd_identifier_token27] = ACTIONS(2461), - [aux_sym_cmd_identifier_token28] = ACTIONS(2461), - [aux_sym_cmd_identifier_token29] = ACTIONS(2461), - [aux_sym_cmd_identifier_token30] = ACTIONS(2461), - [aux_sym_cmd_identifier_token31] = ACTIONS(2461), - [aux_sym_cmd_identifier_token32] = ACTIONS(2461), - [aux_sym_cmd_identifier_token33] = ACTIONS(2461), - [aux_sym_cmd_identifier_token34] = ACTIONS(2461), - [aux_sym_cmd_identifier_token35] = ACTIONS(2461), - [aux_sym_cmd_identifier_token36] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2463), - [anon_sym_false] = ACTIONS(2463), - [anon_sym_null] = ACTIONS(2463), - [aux_sym_cmd_identifier_token38] = ACTIONS(2461), - [aux_sym_cmd_identifier_token39] = ACTIONS(2463), - [aux_sym_cmd_identifier_token40] = ACTIONS(2463), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_export_DASHenv] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_error] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_in] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_make] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_catch] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_source] = ACTIONS(2461), - [anon_sym_source_DASHenv] = ACTIONS(2461), - [anon_sym_register] = ACTIONS(2461), - [anon_sym_hide] = ACTIONS(2461), - [anon_sym_hide_DASHenv] = ACTIONS(2461), - [anon_sym_overlay] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), - [aux_sym__val_number_decimal_token1] = ACTIONS(2461), - [aux_sym__val_number_decimal_token2] = ACTIONS(2463), - [aux_sym__val_number_decimal_token3] = ACTIONS(2463), - [aux_sym__val_number_decimal_token4] = ACTIONS(2463), - [aux_sym__val_number_token1] = ACTIONS(2463), - [aux_sym__val_number_token2] = ACTIONS(2463), - [aux_sym__val_number_token3] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [sym__str_single_quotes] = ACTIONS(2463), - [sym__str_back_ticks] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_alias] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_let_DASHenv] = ACTIONS(2424), + [anon_sym_mut] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [aux_sym_cmd_identifier_token1] = ACTIONS(2424), + [aux_sym_cmd_identifier_token2] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2424), + [aux_sym_cmd_identifier_token4] = ACTIONS(2424), + [aux_sym_cmd_identifier_token5] = ACTIONS(2424), + [aux_sym_cmd_identifier_token6] = ACTIONS(2424), + [aux_sym_cmd_identifier_token7] = ACTIONS(2424), + [aux_sym_cmd_identifier_token8] = ACTIONS(2424), + [aux_sym_cmd_identifier_token9] = ACTIONS(2424), + [aux_sym_cmd_identifier_token10] = ACTIONS(2424), + [aux_sym_cmd_identifier_token11] = ACTIONS(2424), + [aux_sym_cmd_identifier_token12] = ACTIONS(2424), + [aux_sym_cmd_identifier_token13] = ACTIONS(2424), + [aux_sym_cmd_identifier_token14] = ACTIONS(2424), + [aux_sym_cmd_identifier_token15] = ACTIONS(2424), + [aux_sym_cmd_identifier_token16] = ACTIONS(2424), + [aux_sym_cmd_identifier_token17] = ACTIONS(2424), + [aux_sym_cmd_identifier_token18] = ACTIONS(2424), + [aux_sym_cmd_identifier_token19] = ACTIONS(2424), + [aux_sym_cmd_identifier_token20] = ACTIONS(2424), + [aux_sym_cmd_identifier_token21] = ACTIONS(2424), + [aux_sym_cmd_identifier_token22] = ACTIONS(2424), + [aux_sym_cmd_identifier_token23] = ACTIONS(2424), + [aux_sym_cmd_identifier_token24] = ACTIONS(2424), + [aux_sym_cmd_identifier_token25] = ACTIONS(2424), + [aux_sym_cmd_identifier_token26] = ACTIONS(2424), + [aux_sym_cmd_identifier_token27] = ACTIONS(2424), + [aux_sym_cmd_identifier_token28] = ACTIONS(2424), + [aux_sym_cmd_identifier_token29] = ACTIONS(2424), + [aux_sym_cmd_identifier_token30] = ACTIONS(2424), + [aux_sym_cmd_identifier_token31] = ACTIONS(2424), + [aux_sym_cmd_identifier_token32] = ACTIONS(2424), + [aux_sym_cmd_identifier_token33] = ACTIONS(2424), + [aux_sym_cmd_identifier_token34] = ACTIONS(2424), + [aux_sym_cmd_identifier_token35] = ACTIONS(2424), + [aux_sym_cmd_identifier_token36] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2426), + [anon_sym_false] = ACTIONS(2426), + [anon_sym_null] = ACTIONS(2426), + [aux_sym_cmd_identifier_token38] = ACTIONS(2424), + [aux_sym_cmd_identifier_token39] = ACTIONS(2426), + [aux_sym_cmd_identifier_token40] = ACTIONS(2426), + [anon_sym_def] = ACTIONS(2424), + [anon_sym_export_DASHenv] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(2426), + [anon_sym_error] = ACTIONS(2424), + [anon_sym_list] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_make] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_source] = ACTIONS(2424), + [anon_sym_source_DASHenv] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_hide] = ACTIONS(2424), + [anon_sym_hide_DASHenv] = ACTIONS(2424), + [anon_sym_overlay] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_decimal_token2] = ACTIONS(2426), + [aux_sym__val_number_decimal_token3] = ACTIONS(2426), + [aux_sym__val_number_decimal_token4] = ACTIONS(2426), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym__str_single_quotes] = ACTIONS(2426), + [sym__str_back_ticks] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2424), [anon_sym_POUND] = ACTIONS(247), }, [659] = { [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2372), - [anon_sym_alias] = ACTIONS(2372), - [anon_sym_let] = ACTIONS(2372), - [anon_sym_let_DASHenv] = ACTIONS(2372), - [anon_sym_mut] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [aux_sym_cmd_identifier_token1] = ACTIONS(2372), - [aux_sym_cmd_identifier_token2] = ACTIONS(2372), - [aux_sym_cmd_identifier_token3] = ACTIONS(2372), - [aux_sym_cmd_identifier_token4] = ACTIONS(2372), - [aux_sym_cmd_identifier_token5] = ACTIONS(2372), - [aux_sym_cmd_identifier_token6] = ACTIONS(2372), - [aux_sym_cmd_identifier_token7] = ACTIONS(2372), - [aux_sym_cmd_identifier_token8] = ACTIONS(2372), - [aux_sym_cmd_identifier_token9] = ACTIONS(2372), - [aux_sym_cmd_identifier_token10] = ACTIONS(2372), - [aux_sym_cmd_identifier_token11] = ACTIONS(2372), - [aux_sym_cmd_identifier_token12] = ACTIONS(2372), - [aux_sym_cmd_identifier_token13] = ACTIONS(2372), - [aux_sym_cmd_identifier_token14] = ACTIONS(2372), - [aux_sym_cmd_identifier_token15] = ACTIONS(2372), - [aux_sym_cmd_identifier_token16] = ACTIONS(2372), - [aux_sym_cmd_identifier_token17] = ACTIONS(2372), - [aux_sym_cmd_identifier_token18] = ACTIONS(2372), - [aux_sym_cmd_identifier_token19] = ACTIONS(2372), - [aux_sym_cmd_identifier_token20] = ACTIONS(2372), - [aux_sym_cmd_identifier_token21] = ACTIONS(2372), - [aux_sym_cmd_identifier_token22] = ACTIONS(2372), - [aux_sym_cmd_identifier_token23] = ACTIONS(2372), - [aux_sym_cmd_identifier_token24] = ACTIONS(2372), - [aux_sym_cmd_identifier_token25] = ACTIONS(2372), - [aux_sym_cmd_identifier_token26] = ACTIONS(2372), - [aux_sym_cmd_identifier_token27] = ACTIONS(2372), - [aux_sym_cmd_identifier_token28] = ACTIONS(2372), - [aux_sym_cmd_identifier_token29] = ACTIONS(2372), - [aux_sym_cmd_identifier_token30] = ACTIONS(2372), - [aux_sym_cmd_identifier_token31] = ACTIONS(2372), - [aux_sym_cmd_identifier_token32] = ACTIONS(2372), - [aux_sym_cmd_identifier_token33] = ACTIONS(2372), - [aux_sym_cmd_identifier_token34] = ACTIONS(2372), - [aux_sym_cmd_identifier_token35] = ACTIONS(2372), - [aux_sym_cmd_identifier_token36] = ACTIONS(2372), - [anon_sym_true] = ACTIONS(2374), - [anon_sym_false] = ACTIONS(2374), - [anon_sym_null] = ACTIONS(2374), - [aux_sym_cmd_identifier_token38] = ACTIONS(2372), - [aux_sym_cmd_identifier_token39] = ACTIONS(2374), - [aux_sym_cmd_identifier_token40] = ACTIONS(2374), - [anon_sym_def] = ACTIONS(2372), - [anon_sym_export_DASHenv] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_module] = ACTIONS(2372), - [anon_sym_use] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_error] = ACTIONS(2372), - [anon_sym_list] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_in] = ACTIONS(2372), - [anon_sym_loop] = ACTIONS(2372), - [anon_sym_make] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2372), - [anon_sym_match] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_source] = ACTIONS(2372), - [anon_sym_source_DASHenv] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_hide] = ACTIONS(2372), - [anon_sym_hide_DASHenv] = ACTIONS(2372), - [anon_sym_overlay] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_as] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2374), - [aux_sym__val_number_decimal_token1] = ACTIONS(2372), - [aux_sym__val_number_decimal_token2] = ACTIONS(2374), - [aux_sym__val_number_decimal_token3] = ACTIONS(2374), - [aux_sym__val_number_decimal_token4] = ACTIONS(2374), - [aux_sym__val_number_token1] = ACTIONS(2374), - [aux_sym__val_number_token2] = ACTIONS(2374), - [aux_sym__val_number_token3] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [sym__str_single_quotes] = ACTIONS(2374), - [sym__str_back_ticks] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(247), - }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(2376), - [anon_sym_alias] = ACTIONS(2376), - [anon_sym_let] = ACTIONS(2376), - [anon_sym_let_DASHenv] = ACTIONS(2376), - [anon_sym_mut] = ACTIONS(2376), - [anon_sym_const] = ACTIONS(2376), - [aux_sym_cmd_identifier_token1] = ACTIONS(2376), - [aux_sym_cmd_identifier_token2] = ACTIONS(2376), - [aux_sym_cmd_identifier_token3] = ACTIONS(2376), - [aux_sym_cmd_identifier_token4] = ACTIONS(2376), - [aux_sym_cmd_identifier_token5] = ACTIONS(2376), - [aux_sym_cmd_identifier_token6] = ACTIONS(2376), - [aux_sym_cmd_identifier_token7] = ACTIONS(2376), - [aux_sym_cmd_identifier_token8] = ACTIONS(2376), - [aux_sym_cmd_identifier_token9] = ACTIONS(2376), - [aux_sym_cmd_identifier_token10] = ACTIONS(2376), - [aux_sym_cmd_identifier_token11] = ACTIONS(2376), - [aux_sym_cmd_identifier_token12] = ACTIONS(2376), - [aux_sym_cmd_identifier_token13] = ACTIONS(2376), - [aux_sym_cmd_identifier_token14] = ACTIONS(2376), - [aux_sym_cmd_identifier_token15] = ACTIONS(2376), - [aux_sym_cmd_identifier_token16] = ACTIONS(2376), - [aux_sym_cmd_identifier_token17] = ACTIONS(2376), - [aux_sym_cmd_identifier_token18] = ACTIONS(2376), - [aux_sym_cmd_identifier_token19] = ACTIONS(2376), - [aux_sym_cmd_identifier_token20] = ACTIONS(2376), - [aux_sym_cmd_identifier_token21] = ACTIONS(2376), - [aux_sym_cmd_identifier_token22] = ACTIONS(2376), - [aux_sym_cmd_identifier_token23] = ACTIONS(2376), - [aux_sym_cmd_identifier_token24] = ACTIONS(2376), - [aux_sym_cmd_identifier_token25] = ACTIONS(2376), - [aux_sym_cmd_identifier_token26] = ACTIONS(2376), - [aux_sym_cmd_identifier_token27] = ACTIONS(2376), - [aux_sym_cmd_identifier_token28] = ACTIONS(2376), - [aux_sym_cmd_identifier_token29] = ACTIONS(2376), - [aux_sym_cmd_identifier_token30] = ACTIONS(2376), - [aux_sym_cmd_identifier_token31] = ACTIONS(2376), - [aux_sym_cmd_identifier_token32] = ACTIONS(2376), - [aux_sym_cmd_identifier_token33] = ACTIONS(2376), - [aux_sym_cmd_identifier_token34] = ACTIONS(2376), - [aux_sym_cmd_identifier_token35] = ACTIONS(2376), - [aux_sym_cmd_identifier_token36] = ACTIONS(2376), - [anon_sym_true] = ACTIONS(2378), - [anon_sym_false] = ACTIONS(2378), - [anon_sym_null] = ACTIONS(2378), - [aux_sym_cmd_identifier_token38] = ACTIONS(2376), - [aux_sym_cmd_identifier_token39] = ACTIONS(2378), - [aux_sym_cmd_identifier_token40] = ACTIONS(2378), - [anon_sym_def] = ACTIONS(2376), - [anon_sym_export_DASHenv] = ACTIONS(2376), - [anon_sym_extern] = ACTIONS(2376), - [anon_sym_module] = ACTIONS(2376), - [anon_sym_use] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_DOLLAR] = ACTIONS(2378), - [anon_sym_error] = ACTIONS(2376), - [anon_sym_list] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_loop] = ACTIONS(2376), - [anon_sym_make] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_do] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2376), - [anon_sym_match] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2376), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_source] = ACTIONS(2376), - [anon_sym_source_DASHenv] = ACTIONS(2376), - [anon_sym_register] = ACTIONS(2376), - [anon_sym_hide] = ACTIONS(2376), - [anon_sym_hide_DASHenv] = ACTIONS(2376), - [anon_sym_overlay] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), - [aux_sym__val_number_decimal_token1] = ACTIONS(2376), - [aux_sym__val_number_decimal_token2] = ACTIONS(2378), - [aux_sym__val_number_decimal_token3] = ACTIONS(2378), - [aux_sym__val_number_decimal_token4] = ACTIONS(2378), - [aux_sym__val_number_token1] = ACTIONS(2378), - [aux_sym__val_number_token2] = ACTIONS(2378), - [aux_sym__val_number_token3] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2378), - [sym__str_single_quotes] = ACTIONS(2378), - [sym__str_back_ticks] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(247), - }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(2321), - [anon_sym_alias] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_let_DASHenv] = ACTIONS(2321), - [anon_sym_mut] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [aux_sym_cmd_identifier_token1] = ACTIONS(2321), - [aux_sym_cmd_identifier_token2] = ACTIONS(2321), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [aux_sym_cmd_identifier_token6] = ACTIONS(2321), - [aux_sym_cmd_identifier_token7] = ACTIONS(2321), - [aux_sym_cmd_identifier_token8] = ACTIONS(2321), - [aux_sym_cmd_identifier_token9] = ACTIONS(2321), - [aux_sym_cmd_identifier_token10] = ACTIONS(2321), - [aux_sym_cmd_identifier_token11] = ACTIONS(2321), - [aux_sym_cmd_identifier_token12] = ACTIONS(2321), - [aux_sym_cmd_identifier_token13] = ACTIONS(2321), - [aux_sym_cmd_identifier_token14] = ACTIONS(2321), - [aux_sym_cmd_identifier_token15] = ACTIONS(2321), - [aux_sym_cmd_identifier_token16] = ACTIONS(2321), - [aux_sym_cmd_identifier_token17] = ACTIONS(2321), - [aux_sym_cmd_identifier_token18] = ACTIONS(2321), - [aux_sym_cmd_identifier_token19] = ACTIONS(2321), - [aux_sym_cmd_identifier_token20] = ACTIONS(2321), - [aux_sym_cmd_identifier_token21] = ACTIONS(2321), - [aux_sym_cmd_identifier_token22] = ACTIONS(2321), - [aux_sym_cmd_identifier_token23] = ACTIONS(2321), - [aux_sym_cmd_identifier_token24] = ACTIONS(2321), - [aux_sym_cmd_identifier_token25] = ACTIONS(2321), - [aux_sym_cmd_identifier_token26] = ACTIONS(2321), - [aux_sym_cmd_identifier_token27] = ACTIONS(2321), - [aux_sym_cmd_identifier_token28] = ACTIONS(2321), - [aux_sym_cmd_identifier_token29] = ACTIONS(2321), - [aux_sym_cmd_identifier_token30] = ACTIONS(2321), - [aux_sym_cmd_identifier_token31] = ACTIONS(2321), - [aux_sym_cmd_identifier_token32] = ACTIONS(2321), - [aux_sym_cmd_identifier_token33] = ACTIONS(2321), - [aux_sym_cmd_identifier_token34] = ACTIONS(2321), - [aux_sym_cmd_identifier_token35] = ACTIONS(2321), - [aux_sym_cmd_identifier_token36] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_null] = ACTIONS(2323), - [aux_sym_cmd_identifier_token38] = ACTIONS(2321), - [aux_sym_cmd_identifier_token39] = ACTIONS(2323), - [aux_sym_cmd_identifier_token40] = ACTIONS(2323), - [anon_sym_def] = ACTIONS(2321), - [anon_sym_export_DASHenv] = ACTIONS(2321), - [anon_sym_extern] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_error] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_in] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_make] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_catch] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_source] = ACTIONS(2321), - [anon_sym_source_DASHenv] = ACTIONS(2321), - [anon_sym_register] = ACTIONS(2321), - [anon_sym_hide] = ACTIONS(2321), - [anon_sym_hide_DASHenv] = ACTIONS(2321), - [anon_sym_overlay] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_as] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2323), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2323), - [aux_sym__val_number_decimal_token1] = ACTIONS(2321), - [aux_sym__val_number_decimal_token2] = ACTIONS(2323), - [aux_sym__val_number_decimal_token3] = ACTIONS(2323), - [aux_sym__val_number_decimal_token4] = ACTIONS(2323), - [aux_sym__val_number_token1] = ACTIONS(2323), - [aux_sym__val_number_token2] = ACTIONS(2323), - [aux_sym__val_number_token3] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [sym__str_single_quotes] = ACTIONS(2323), - [sym__str_back_ticks] = ACTIONS(2323), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2323), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(247), - }, - [662] = { - [sym_comment] = STATE(662), [anon_sym_export] = ACTIONS(2384), [anon_sym_alias] = ACTIONS(2384), [anon_sym_let] = ACTIONS(2384), @@ -146164,1996 +147601,2985 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_POUND] = ACTIONS(247), }, + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_alias] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_let_DASHenv] = ACTIONS(2458), + [anon_sym_mut] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [aux_sym_cmd_identifier_token1] = ACTIONS(2458), + [aux_sym_cmd_identifier_token2] = ACTIONS(2458), + [aux_sym_cmd_identifier_token3] = ACTIONS(2458), + [aux_sym_cmd_identifier_token4] = ACTIONS(2458), + [aux_sym_cmd_identifier_token5] = ACTIONS(2458), + [aux_sym_cmd_identifier_token6] = ACTIONS(2458), + [aux_sym_cmd_identifier_token7] = ACTIONS(2458), + [aux_sym_cmd_identifier_token8] = ACTIONS(2458), + [aux_sym_cmd_identifier_token9] = ACTIONS(2458), + [aux_sym_cmd_identifier_token10] = ACTIONS(2458), + [aux_sym_cmd_identifier_token11] = ACTIONS(2458), + [aux_sym_cmd_identifier_token12] = ACTIONS(2458), + [aux_sym_cmd_identifier_token13] = ACTIONS(2458), + [aux_sym_cmd_identifier_token14] = ACTIONS(2458), + [aux_sym_cmd_identifier_token15] = ACTIONS(2458), + [aux_sym_cmd_identifier_token16] = ACTIONS(2458), + [aux_sym_cmd_identifier_token17] = ACTIONS(2458), + [aux_sym_cmd_identifier_token18] = ACTIONS(2458), + [aux_sym_cmd_identifier_token19] = ACTIONS(2458), + [aux_sym_cmd_identifier_token20] = ACTIONS(2458), + [aux_sym_cmd_identifier_token21] = ACTIONS(2458), + [aux_sym_cmd_identifier_token22] = ACTIONS(2458), + [aux_sym_cmd_identifier_token23] = ACTIONS(2458), + [aux_sym_cmd_identifier_token24] = ACTIONS(2458), + [aux_sym_cmd_identifier_token25] = ACTIONS(2458), + [aux_sym_cmd_identifier_token26] = ACTIONS(2458), + [aux_sym_cmd_identifier_token27] = ACTIONS(2458), + [aux_sym_cmd_identifier_token28] = ACTIONS(2458), + [aux_sym_cmd_identifier_token29] = ACTIONS(2458), + [aux_sym_cmd_identifier_token30] = ACTIONS(2458), + [aux_sym_cmd_identifier_token31] = ACTIONS(2458), + [aux_sym_cmd_identifier_token32] = ACTIONS(2458), + [aux_sym_cmd_identifier_token33] = ACTIONS(2458), + [aux_sym_cmd_identifier_token34] = ACTIONS(2458), + [aux_sym_cmd_identifier_token35] = ACTIONS(2458), + [aux_sym_cmd_identifier_token36] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_null] = ACTIONS(2460), + [aux_sym_cmd_identifier_token38] = ACTIONS(2458), + [aux_sym_cmd_identifier_token39] = ACTIONS(2460), + [aux_sym_cmd_identifier_token40] = ACTIONS(2460), + [anon_sym_def] = ACTIONS(2458), + [anon_sym_export_DASHenv] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_use] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2460), + [anon_sym_error] = ACTIONS(2458), + [anon_sym_list] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_loop] = ACTIONS(2458), + [anon_sym_make] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_match] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_source] = ACTIONS(2458), + [anon_sym_source_DASHenv] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_hide] = ACTIONS(2458), + [anon_sym_hide_DASHenv] = ACTIONS(2458), + [anon_sym_overlay] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), + [aux_sym__val_number_decimal_token1] = ACTIONS(2458), + [aux_sym__val_number_decimal_token2] = ACTIONS(2460), + [aux_sym__val_number_decimal_token3] = ACTIONS(2460), + [aux_sym__val_number_decimal_token4] = ACTIONS(2460), + [aux_sym__val_number_token1] = ACTIONS(2460), + [aux_sym__val_number_token2] = ACTIONS(2460), + [aux_sym__val_number_token3] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym__str_single_quotes] = ACTIONS(2460), + [sym__str_back_ticks] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(247), + }, + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2362), + [aux_sym_cmd_identifier_token3] = ACTIONS(2362), + [aux_sym_cmd_identifier_token4] = ACTIONS(2362), + [aux_sym_cmd_identifier_token5] = ACTIONS(2362), + [aux_sym_cmd_identifier_token6] = ACTIONS(2362), + [aux_sym_cmd_identifier_token7] = ACTIONS(2362), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2362), + [aux_sym_cmd_identifier_token11] = ACTIONS(2362), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2362), + [aux_sym_cmd_identifier_token17] = ACTIONS(2362), + [aux_sym_cmd_identifier_token18] = ACTIONS(2362), + [aux_sym_cmd_identifier_token19] = ACTIONS(2362), + [aux_sym_cmd_identifier_token20] = ACTIONS(2362), + [aux_sym_cmd_identifier_token21] = ACTIONS(2362), + [aux_sym_cmd_identifier_token22] = ACTIONS(2362), + [aux_sym_cmd_identifier_token23] = ACTIONS(2362), + [aux_sym_cmd_identifier_token24] = ACTIONS(2362), + [aux_sym_cmd_identifier_token25] = ACTIONS(2362), + [aux_sym_cmd_identifier_token26] = ACTIONS(2362), + [aux_sym_cmd_identifier_token27] = ACTIONS(2362), + [aux_sym_cmd_identifier_token28] = ACTIONS(2362), + [aux_sym_cmd_identifier_token29] = ACTIONS(2362), + [aux_sym_cmd_identifier_token30] = ACTIONS(2362), + [aux_sym_cmd_identifier_token31] = ACTIONS(2362), + [aux_sym_cmd_identifier_token32] = ACTIONS(2362), + [aux_sym_cmd_identifier_token33] = ACTIONS(2362), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2362), + [aux_sym_cmd_identifier_token36] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_list] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_new] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(247), + }, + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [aux_sym_cmd_identifier_token1] = ACTIONS(2305), + [aux_sym_cmd_identifier_token2] = ACTIONS(2305), + [aux_sym_cmd_identifier_token3] = ACTIONS(2305), + [aux_sym_cmd_identifier_token4] = ACTIONS(2305), + [aux_sym_cmd_identifier_token5] = ACTIONS(2305), + [aux_sym_cmd_identifier_token6] = ACTIONS(2305), + [aux_sym_cmd_identifier_token7] = ACTIONS(2305), + [aux_sym_cmd_identifier_token8] = ACTIONS(2305), + [aux_sym_cmd_identifier_token9] = ACTIONS(2305), + [aux_sym_cmd_identifier_token10] = ACTIONS(2305), + [aux_sym_cmd_identifier_token11] = ACTIONS(2305), + [aux_sym_cmd_identifier_token12] = ACTIONS(2305), + [aux_sym_cmd_identifier_token13] = ACTIONS(2305), + [aux_sym_cmd_identifier_token14] = ACTIONS(2305), + [aux_sym_cmd_identifier_token15] = ACTIONS(2305), + [aux_sym_cmd_identifier_token16] = ACTIONS(2305), + [aux_sym_cmd_identifier_token17] = ACTIONS(2305), + [aux_sym_cmd_identifier_token18] = ACTIONS(2305), + [aux_sym_cmd_identifier_token19] = ACTIONS(2305), + [aux_sym_cmd_identifier_token20] = ACTIONS(2305), + [aux_sym_cmd_identifier_token21] = ACTIONS(2305), + [aux_sym_cmd_identifier_token22] = ACTIONS(2305), + [aux_sym_cmd_identifier_token23] = ACTIONS(2305), + [aux_sym_cmd_identifier_token24] = ACTIONS(2305), + [aux_sym_cmd_identifier_token25] = ACTIONS(2305), + [aux_sym_cmd_identifier_token26] = ACTIONS(2305), + [aux_sym_cmd_identifier_token27] = ACTIONS(2305), + [aux_sym_cmd_identifier_token28] = ACTIONS(2305), + [aux_sym_cmd_identifier_token29] = ACTIONS(2305), + [aux_sym_cmd_identifier_token30] = ACTIONS(2305), + [aux_sym_cmd_identifier_token31] = ACTIONS(2305), + [aux_sym_cmd_identifier_token32] = ACTIONS(2305), + [aux_sym_cmd_identifier_token33] = ACTIONS(2305), + [aux_sym_cmd_identifier_token34] = ACTIONS(2305), + [aux_sym_cmd_identifier_token35] = ACTIONS(2305), + [aux_sym_cmd_identifier_token36] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_null] = ACTIONS(2307), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2307), + [aux_sym_cmd_identifier_token40] = ACTIONS(2307), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_in] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_make] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_catch] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2307), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [aux_sym__val_number_token1] = ACTIONS(2307), + [aux_sym__val_number_token2] = ACTIONS(2307), + [aux_sym__val_number_token3] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym__str_single_quotes] = ACTIONS(2307), + [sym__str_back_ticks] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(247), + }, [663] = { [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(247), }, [664] = { - [sym_expr_parenthesized] = STATE(1340), - [sym_val_range] = STATE(1611), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1611), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1611), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1444), - [sym__unquoted_with_expr] = STATE(1612), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(664), - [aux_sym_ctrl_do_repeat2] = STATE(665), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2531), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [665] = { - [sym_expr_parenthesized] = STATE(1340), - [sym_val_range] = STATE(1611), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1611), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1611), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1444), - [sym__unquoted_with_expr] = STATE(1612), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(665), - [aux_sym_ctrl_do_repeat2] = STATE(665), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_null] = ACTIONS(2582), - [aux_sym_cmd_identifier_token38] = ACTIONS(2585), - [aux_sym_cmd_identifier_token39] = ACTIONS(2585), - [aux_sym_cmd_identifier_token40] = ACTIONS(2585), - [sym__newline] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_err_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_GT_PIPE] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2593), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_DOLLAR] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(2602), - [aux_sym_ctrl_match_token1] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_DOT_DOT] = ACTIONS(2608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2611), - [anon_sym_DOT_DOT_LT] = ACTIONS(2611), - [aux_sym__val_number_decimal_token1] = ACTIONS(2614), - [aux_sym__val_number_decimal_token2] = ACTIONS(2617), - [aux_sym__val_number_decimal_token3] = ACTIONS(2620), - [aux_sym__val_number_decimal_token4] = ACTIONS(2623), - [aux_sym__val_number_token1] = ACTIONS(2626), - [aux_sym__val_number_token2] = ACTIONS(2626), - [aux_sym__val_number_token3] = ACTIONS(2626), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2632), - [anon_sym_0x] = ACTIONS(2632), - [sym_val_date] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2638), - [sym__str_single_quotes] = ACTIONS(2641), - [sym__str_back_ticks] = ACTIONS(2641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2644), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_err_GT] = ACTIONS(2650), - [anon_sym_out_GT] = ACTIONS(2650), - [anon_sym_e_GT] = ACTIONS(2650), - [anon_sym_o_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT] = ACTIONS(2650), - [anon_sym_err_GT_GT] = ACTIONS(2653), - [anon_sym_out_GT_GT] = ACTIONS(2653), - [anon_sym_e_GT_GT] = ACTIONS(2653), - [anon_sym_o_GT_GT] = ACTIONS(2653), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2653), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2653), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2653), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2653), - [aux_sym_unquoted_token1] = ACTIONS(2656), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_alias] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_let_DASHenv] = ACTIONS(1738), + [anon_sym_mut] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [aux_sym_cmd_identifier_token1] = ACTIONS(1738), + [aux_sym_cmd_identifier_token2] = ACTIONS(1738), + [aux_sym_cmd_identifier_token3] = ACTIONS(1738), + [aux_sym_cmd_identifier_token4] = ACTIONS(1738), + [aux_sym_cmd_identifier_token5] = ACTIONS(1738), + [aux_sym_cmd_identifier_token6] = ACTIONS(1738), + [aux_sym_cmd_identifier_token7] = ACTIONS(1738), + [aux_sym_cmd_identifier_token8] = ACTIONS(1738), + [aux_sym_cmd_identifier_token9] = ACTIONS(1738), + [aux_sym_cmd_identifier_token10] = ACTIONS(1738), + [aux_sym_cmd_identifier_token11] = ACTIONS(1738), + [aux_sym_cmd_identifier_token12] = ACTIONS(1738), + [aux_sym_cmd_identifier_token13] = ACTIONS(1738), + [aux_sym_cmd_identifier_token14] = ACTIONS(1738), + [aux_sym_cmd_identifier_token15] = ACTIONS(1738), + [aux_sym_cmd_identifier_token16] = ACTIONS(1738), + [aux_sym_cmd_identifier_token17] = ACTIONS(1738), + [aux_sym_cmd_identifier_token18] = ACTIONS(1738), + [aux_sym_cmd_identifier_token19] = ACTIONS(1738), + [aux_sym_cmd_identifier_token20] = ACTIONS(1738), + [aux_sym_cmd_identifier_token21] = ACTIONS(1738), + [aux_sym_cmd_identifier_token22] = ACTIONS(1738), + [aux_sym_cmd_identifier_token23] = ACTIONS(1738), + [aux_sym_cmd_identifier_token24] = ACTIONS(1738), + [aux_sym_cmd_identifier_token25] = ACTIONS(1738), + [aux_sym_cmd_identifier_token26] = ACTIONS(1738), + [aux_sym_cmd_identifier_token27] = ACTIONS(1738), + [aux_sym_cmd_identifier_token28] = ACTIONS(1738), + [aux_sym_cmd_identifier_token29] = ACTIONS(1738), + [aux_sym_cmd_identifier_token30] = ACTIONS(1738), + [aux_sym_cmd_identifier_token31] = ACTIONS(1738), + [aux_sym_cmd_identifier_token32] = ACTIONS(1738), + [aux_sym_cmd_identifier_token33] = ACTIONS(1738), + [aux_sym_cmd_identifier_token34] = ACTIONS(1738), + [aux_sym_cmd_identifier_token35] = ACTIONS(1738), + [aux_sym_cmd_identifier_token36] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1738), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [anon_sym_def] = ACTIONS(1738), + [anon_sym_export_DASHenv] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_error] = ACTIONS(1738), + [anon_sym_list] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_make] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_catch] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_source] = ACTIONS(1738), + [anon_sym_source_DASHenv] = ACTIONS(1738), + [anon_sym_register] = ACTIONS(1738), + [anon_sym_hide] = ACTIONS(1738), + [anon_sym_hide_DASHenv] = ACTIONS(1738), + [anon_sym_overlay] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(247), }, [666] = { - [sym_expr_parenthesized] = STATE(1470), - [sym_val_range] = STATE(1807), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1807), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1807), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1481), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(666), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(666), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [anon_sym_null] = ACTIONS(2662), - [aux_sym_cmd_identifier_token38] = ACTIONS(2665), - [aux_sym_cmd_identifier_token39] = ACTIONS(2665), - [aux_sym_cmd_identifier_token40] = ACTIONS(2665), - [sym__newline] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_err_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_GT_PIPE] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2685), - [aux_sym_ctrl_match_token1] = ACTIONS(2688), - [anon_sym_DOT_DOT] = ACTIONS(2691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), - [anon_sym_DOT_DOT_LT] = ACTIONS(2694), - [aux_sym__val_number_decimal_token1] = ACTIONS(2697), - [aux_sym__val_number_decimal_token2] = ACTIONS(2700), - [aux_sym__val_number_decimal_token3] = ACTIONS(2703), - [aux_sym__val_number_decimal_token4] = ACTIONS(2706), - [aux_sym__val_number_token1] = ACTIONS(2709), - [aux_sym__val_number_token2] = ACTIONS(2709), - [aux_sym__val_number_token3] = ACTIONS(2709), - [anon_sym_0b] = ACTIONS(2712), - [anon_sym_0o] = ACTIONS(2715), - [anon_sym_0x] = ACTIONS(2715), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2733), - [anon_sym_out_GT] = ACTIONS(2733), - [anon_sym_e_GT] = ACTIONS(2733), - [anon_sym_o_GT] = ACTIONS(2733), - [anon_sym_err_PLUSout_GT] = ACTIONS(2733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2733), - [anon_sym_o_PLUSe_GT] = ACTIONS(2733), - [anon_sym_e_PLUSo_GT] = ACTIONS(2733), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [aux_sym_unquoted_token1] = ACTIONS(2739), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_alias] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_let_DASHenv] = ACTIONS(1822), + [anon_sym_mut] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [aux_sym_cmd_identifier_token1] = ACTIONS(1822), + [aux_sym_cmd_identifier_token2] = ACTIONS(1822), + [aux_sym_cmd_identifier_token3] = ACTIONS(1822), + [aux_sym_cmd_identifier_token4] = ACTIONS(1822), + [aux_sym_cmd_identifier_token5] = ACTIONS(1822), + [aux_sym_cmd_identifier_token6] = ACTIONS(1822), + [aux_sym_cmd_identifier_token7] = ACTIONS(1822), + [aux_sym_cmd_identifier_token8] = ACTIONS(1822), + [aux_sym_cmd_identifier_token9] = ACTIONS(1822), + [aux_sym_cmd_identifier_token10] = ACTIONS(1822), + [aux_sym_cmd_identifier_token11] = ACTIONS(1822), + [aux_sym_cmd_identifier_token12] = ACTIONS(1822), + [aux_sym_cmd_identifier_token13] = ACTIONS(1822), + [aux_sym_cmd_identifier_token14] = ACTIONS(1822), + [aux_sym_cmd_identifier_token15] = ACTIONS(1822), + [aux_sym_cmd_identifier_token16] = ACTIONS(1822), + [aux_sym_cmd_identifier_token17] = ACTIONS(1822), + [aux_sym_cmd_identifier_token18] = ACTIONS(1822), + [aux_sym_cmd_identifier_token19] = ACTIONS(1822), + [aux_sym_cmd_identifier_token20] = ACTIONS(1822), + [aux_sym_cmd_identifier_token21] = ACTIONS(1822), + [aux_sym_cmd_identifier_token22] = ACTIONS(1822), + [aux_sym_cmd_identifier_token23] = ACTIONS(1822), + [aux_sym_cmd_identifier_token24] = ACTIONS(1822), + [aux_sym_cmd_identifier_token25] = ACTIONS(1822), + [aux_sym_cmd_identifier_token26] = ACTIONS(1822), + [aux_sym_cmd_identifier_token27] = ACTIONS(1822), + [aux_sym_cmd_identifier_token28] = ACTIONS(1822), + [aux_sym_cmd_identifier_token29] = ACTIONS(1822), + [aux_sym_cmd_identifier_token30] = ACTIONS(1822), + [aux_sym_cmd_identifier_token31] = ACTIONS(1822), + [aux_sym_cmd_identifier_token32] = ACTIONS(1822), + [aux_sym_cmd_identifier_token33] = ACTIONS(1822), + [aux_sym_cmd_identifier_token34] = ACTIONS(1822), + [aux_sym_cmd_identifier_token35] = ACTIONS(1822), + [aux_sym_cmd_identifier_token36] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1822), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1822), + [anon_sym_export_DASHenv] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1822), + [anon_sym_list] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_make] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_source] = ACTIONS(1822), + [anon_sym_source_DASHenv] = ACTIONS(1822), + [anon_sym_register] = ACTIONS(1822), + [anon_sym_hide] = ACTIONS(1822), + [anon_sym_hide_DASHenv] = ACTIONS(1822), + [anon_sym_overlay] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1822), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(247), }, [667] = { - [sym_expr_parenthesized] = STATE(1470), - [sym_val_range] = STATE(1807), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1807), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1807), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1481), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(667), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(672), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_err_GT_PIPE] = ACTIONS(2742), - [anon_sym_out_GT_PIPE] = ACTIONS(2742), - [anon_sym_e_GT_PIPE] = ACTIONS(2742), - [anon_sym_o_GT_PIPE] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2742), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2309), + [anon_sym_alias] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_let_DASHenv] = ACTIONS(2309), + [anon_sym_mut] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [aux_sym_cmd_identifier_token1] = ACTIONS(2309), + [aux_sym_cmd_identifier_token2] = ACTIONS(2309), + [aux_sym_cmd_identifier_token3] = ACTIONS(2309), + [aux_sym_cmd_identifier_token4] = ACTIONS(2309), + [aux_sym_cmd_identifier_token5] = ACTIONS(2309), + [aux_sym_cmd_identifier_token6] = ACTIONS(2309), + [aux_sym_cmd_identifier_token7] = ACTIONS(2309), + [aux_sym_cmd_identifier_token8] = ACTIONS(2309), + [aux_sym_cmd_identifier_token9] = ACTIONS(2309), + [aux_sym_cmd_identifier_token10] = ACTIONS(2309), + [aux_sym_cmd_identifier_token11] = ACTIONS(2309), + [aux_sym_cmd_identifier_token12] = ACTIONS(2309), + [aux_sym_cmd_identifier_token13] = ACTIONS(2309), + [aux_sym_cmd_identifier_token14] = ACTIONS(2309), + [aux_sym_cmd_identifier_token15] = ACTIONS(2309), + [aux_sym_cmd_identifier_token16] = ACTIONS(2309), + [aux_sym_cmd_identifier_token17] = ACTIONS(2309), + [aux_sym_cmd_identifier_token18] = ACTIONS(2309), + [aux_sym_cmd_identifier_token19] = ACTIONS(2309), + [aux_sym_cmd_identifier_token20] = ACTIONS(2309), + [aux_sym_cmd_identifier_token21] = ACTIONS(2309), + [aux_sym_cmd_identifier_token22] = ACTIONS(2309), + [aux_sym_cmd_identifier_token23] = ACTIONS(2309), + [aux_sym_cmd_identifier_token24] = ACTIONS(2309), + [aux_sym_cmd_identifier_token25] = ACTIONS(2309), + [aux_sym_cmd_identifier_token26] = ACTIONS(2309), + [aux_sym_cmd_identifier_token27] = ACTIONS(2309), + [aux_sym_cmd_identifier_token28] = ACTIONS(2309), + [aux_sym_cmd_identifier_token29] = ACTIONS(2309), + [aux_sym_cmd_identifier_token30] = ACTIONS(2309), + [aux_sym_cmd_identifier_token31] = ACTIONS(2309), + [aux_sym_cmd_identifier_token32] = ACTIONS(2309), + [aux_sym_cmd_identifier_token33] = ACTIONS(2309), + [aux_sym_cmd_identifier_token34] = ACTIONS(2309), + [aux_sym_cmd_identifier_token35] = ACTIONS(2309), + [aux_sym_cmd_identifier_token36] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_null] = ACTIONS(2311), + [aux_sym_cmd_identifier_token38] = ACTIONS(2309), + [aux_sym_cmd_identifier_token39] = ACTIONS(2311), + [aux_sym_cmd_identifier_token40] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2309), + [anon_sym_export_DASHenv] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_module] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_make] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_catch] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_source] = ACTIONS(2309), + [anon_sym_source_DASHenv] = ACTIONS(2309), + [anon_sym_register] = ACTIONS(2309), + [anon_sym_hide] = ACTIONS(2309), + [anon_sym_hide_DASHenv] = ACTIONS(2309), + [anon_sym_overlay] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2309), + [aux_sym__val_number_decimal_token2] = ACTIONS(2311), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2311), + [aux_sym__val_number_token2] = ACTIONS(2311), + [aux_sym__val_number_token3] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2309), [anon_sym_POUND] = ACTIONS(247), }, [668] = { - [sym_expr_parenthesized] = STATE(1470), - [sym_val_range] = STATE(1807), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1807), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1807), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1481), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(668), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(666), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_alias] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_let_DASHenv] = ACTIONS(2328), + [anon_sym_mut] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [aux_sym_cmd_identifier_token1] = ACTIONS(2328), + [aux_sym_cmd_identifier_token2] = ACTIONS(2328), + [aux_sym_cmd_identifier_token3] = ACTIONS(2328), + [aux_sym_cmd_identifier_token4] = ACTIONS(2328), + [aux_sym_cmd_identifier_token5] = ACTIONS(2328), + [aux_sym_cmd_identifier_token6] = ACTIONS(2328), + [aux_sym_cmd_identifier_token7] = ACTIONS(2328), + [aux_sym_cmd_identifier_token8] = ACTIONS(2328), + [aux_sym_cmd_identifier_token9] = ACTIONS(2328), + [aux_sym_cmd_identifier_token10] = ACTIONS(2328), + [aux_sym_cmd_identifier_token11] = ACTIONS(2328), + [aux_sym_cmd_identifier_token12] = ACTIONS(2328), + [aux_sym_cmd_identifier_token13] = ACTIONS(2328), + [aux_sym_cmd_identifier_token14] = ACTIONS(2328), + [aux_sym_cmd_identifier_token15] = ACTIONS(2328), + [aux_sym_cmd_identifier_token16] = ACTIONS(2328), + [aux_sym_cmd_identifier_token17] = ACTIONS(2328), + [aux_sym_cmd_identifier_token18] = ACTIONS(2328), + [aux_sym_cmd_identifier_token19] = ACTIONS(2328), + [aux_sym_cmd_identifier_token20] = ACTIONS(2328), + [aux_sym_cmd_identifier_token21] = ACTIONS(2328), + [aux_sym_cmd_identifier_token22] = ACTIONS(2328), + [aux_sym_cmd_identifier_token23] = ACTIONS(2328), + [aux_sym_cmd_identifier_token24] = ACTIONS(2328), + [aux_sym_cmd_identifier_token25] = ACTIONS(2328), + [aux_sym_cmd_identifier_token26] = ACTIONS(2328), + [aux_sym_cmd_identifier_token27] = ACTIONS(2328), + [aux_sym_cmd_identifier_token28] = ACTIONS(2328), + [aux_sym_cmd_identifier_token29] = ACTIONS(2328), + [aux_sym_cmd_identifier_token30] = ACTIONS(2328), + [aux_sym_cmd_identifier_token31] = ACTIONS(2328), + [aux_sym_cmd_identifier_token32] = ACTIONS(2328), + [aux_sym_cmd_identifier_token33] = ACTIONS(2328), + [aux_sym_cmd_identifier_token34] = ACTIONS(2328), + [aux_sym_cmd_identifier_token35] = ACTIONS(2328), + [aux_sym_cmd_identifier_token36] = ACTIONS(2328), + [anon_sym_true] = ACTIONS(2330), + [anon_sym_false] = ACTIONS(2330), + [anon_sym_null] = ACTIONS(2330), + [aux_sym_cmd_identifier_token38] = ACTIONS(2328), + [aux_sym_cmd_identifier_token39] = ACTIONS(2330), + [aux_sym_cmd_identifier_token40] = ACTIONS(2330), + [anon_sym_def] = ACTIONS(2328), + [anon_sym_export_DASHenv] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_use] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_error] = ACTIONS(2328), + [anon_sym_list] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_loop] = ACTIONS(2328), + [anon_sym_make] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_match] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_catch] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_source] = ACTIONS(2328), + [anon_sym_source_DASHenv] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2328), + [anon_sym_hide] = ACTIONS(2328), + [anon_sym_hide_DASHenv] = ACTIONS(2328), + [anon_sym_overlay] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), + [aux_sym__val_number_decimal_token1] = ACTIONS(2328), + [aux_sym__val_number_decimal_token2] = ACTIONS(2330), + [aux_sym__val_number_decimal_token3] = ACTIONS(2330), + [aux_sym__val_number_decimal_token4] = ACTIONS(2330), + [aux_sym__val_number_token1] = ACTIONS(2330), + [aux_sym__val_number_token2] = ACTIONS(2330), + [aux_sym__val_number_token3] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym__str_single_quotes] = ACTIONS(2330), + [sym__str_back_ticks] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2328), [anon_sym_POUND] = ACTIONS(247), }, [669] = { - [sym_expr_parenthesized] = STATE(1340), - [sym_val_range] = STATE(1611), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1611), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1611), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1444), - [sym__unquoted_with_expr] = STATE(1612), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(669), - [aux_sym_ctrl_do_repeat2] = STATE(665), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_err_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_GT_PIPE] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2340), + [anon_sym_false] = ACTIONS(2340), + [anon_sym_null] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2340), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_list] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2340), + [aux_sym__val_number_decimal_token3] = ACTIONS(2340), + [aux_sym__val_number_decimal_token4] = ACTIONS(2340), + [aux_sym__val_number_token1] = ACTIONS(2340), + [aux_sym__val_number_token2] = ACTIONS(2340), + [aux_sym__val_number_token3] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2338), [anon_sym_POUND] = ACTIONS(247), }, [670] = { - [sym_expr_parenthesized] = STATE(1340), - [sym_val_range] = STATE(1611), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1611), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1611), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1444), - [sym__unquoted_with_expr] = STATE(1612), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(670), - [aux_sym_ctrl_do_repeat2] = STATE(669), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2342), + [anon_sym_alias] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_let_DASHenv] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [aux_sym_cmd_identifier_token1] = ACTIONS(2342), + [aux_sym_cmd_identifier_token2] = ACTIONS(2342), + [aux_sym_cmd_identifier_token3] = ACTIONS(2342), + [aux_sym_cmd_identifier_token4] = ACTIONS(2342), + [aux_sym_cmd_identifier_token5] = ACTIONS(2342), + [aux_sym_cmd_identifier_token6] = ACTIONS(2342), + [aux_sym_cmd_identifier_token7] = ACTIONS(2342), + [aux_sym_cmd_identifier_token8] = ACTIONS(2342), + [aux_sym_cmd_identifier_token9] = ACTIONS(2342), + [aux_sym_cmd_identifier_token10] = ACTIONS(2342), + [aux_sym_cmd_identifier_token11] = ACTIONS(2342), + [aux_sym_cmd_identifier_token12] = ACTIONS(2342), + [aux_sym_cmd_identifier_token13] = ACTIONS(2342), + [aux_sym_cmd_identifier_token14] = ACTIONS(2342), + [aux_sym_cmd_identifier_token15] = ACTIONS(2342), + [aux_sym_cmd_identifier_token16] = ACTIONS(2342), + [aux_sym_cmd_identifier_token17] = ACTIONS(2342), + [aux_sym_cmd_identifier_token18] = ACTIONS(2342), + [aux_sym_cmd_identifier_token19] = ACTIONS(2342), + [aux_sym_cmd_identifier_token20] = ACTIONS(2342), + [aux_sym_cmd_identifier_token21] = ACTIONS(2342), + [aux_sym_cmd_identifier_token22] = ACTIONS(2342), + [aux_sym_cmd_identifier_token23] = ACTIONS(2342), + [aux_sym_cmd_identifier_token24] = ACTIONS(2342), + [aux_sym_cmd_identifier_token25] = ACTIONS(2342), + [aux_sym_cmd_identifier_token26] = ACTIONS(2342), + [aux_sym_cmd_identifier_token27] = ACTIONS(2342), + [aux_sym_cmd_identifier_token28] = ACTIONS(2342), + [aux_sym_cmd_identifier_token29] = ACTIONS(2342), + [aux_sym_cmd_identifier_token30] = ACTIONS(2342), + [aux_sym_cmd_identifier_token31] = ACTIONS(2342), + [aux_sym_cmd_identifier_token32] = ACTIONS(2342), + [aux_sym_cmd_identifier_token33] = ACTIONS(2342), + [aux_sym_cmd_identifier_token34] = ACTIONS(2342), + [aux_sym_cmd_identifier_token35] = ACTIONS(2342), + [aux_sym_cmd_identifier_token36] = ACTIONS(2342), + [anon_sym_true] = ACTIONS(2344), + [anon_sym_false] = ACTIONS(2344), + [anon_sym_null] = ACTIONS(2344), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2344), + [aux_sym_cmd_identifier_token40] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2342), + [anon_sym_export_DASHenv] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_module] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_error] = ACTIONS(2342), + [anon_sym_list] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_make] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_do] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2342), + [anon_sym_catch] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_source] = ACTIONS(2342), + [anon_sym_source_DASHenv] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_hide] = ACTIONS(2342), + [anon_sym_hide_DASHenv] = ACTIONS(2342), + [anon_sym_overlay] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2342), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), + [aux_sym__val_number_decimal_token1] = ACTIONS(2342), + [aux_sym__val_number_decimal_token2] = ACTIONS(2344), + [aux_sym__val_number_decimal_token3] = ACTIONS(2344), + [aux_sym__val_number_decimal_token4] = ACTIONS(2344), + [aux_sym__val_number_token1] = ACTIONS(2344), + [aux_sym__val_number_token2] = ACTIONS(2344), + [aux_sym__val_number_token3] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym__str_single_quotes] = ACTIONS(2344), + [sym__str_back_ticks] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2342), [anon_sym_POUND] = ACTIONS(247), }, [671] = { - [sym_expr_parenthesized] = STATE(1340), - [sym_val_range] = STATE(1611), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1611), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1611), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1444), - [sym__unquoted_with_expr] = STATE(1612), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(671), - [aux_sym_ctrl_do_repeat2] = STATE(664), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_err_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_GT_PIPE] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_alias] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_let_DASHenv] = ACTIONS(2348), + [anon_sym_mut] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [aux_sym_cmd_identifier_token1] = ACTIONS(2348), + [aux_sym_cmd_identifier_token2] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2348), + [aux_sym_cmd_identifier_token4] = ACTIONS(2348), + [aux_sym_cmd_identifier_token5] = ACTIONS(2348), + [aux_sym_cmd_identifier_token6] = ACTIONS(2348), + [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token8] = ACTIONS(2348), + [aux_sym_cmd_identifier_token9] = ACTIONS(2348), + [aux_sym_cmd_identifier_token10] = ACTIONS(2348), + [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token12] = ACTIONS(2348), + [aux_sym_cmd_identifier_token13] = ACTIONS(2348), + [aux_sym_cmd_identifier_token14] = ACTIONS(2348), + [aux_sym_cmd_identifier_token15] = ACTIONS(2348), + [aux_sym_cmd_identifier_token16] = ACTIONS(2348), + [aux_sym_cmd_identifier_token17] = ACTIONS(2348), + [aux_sym_cmd_identifier_token18] = ACTIONS(2348), + [aux_sym_cmd_identifier_token19] = ACTIONS(2348), + [aux_sym_cmd_identifier_token20] = ACTIONS(2348), + [aux_sym_cmd_identifier_token21] = ACTIONS(2348), + [aux_sym_cmd_identifier_token22] = ACTIONS(2348), + [aux_sym_cmd_identifier_token23] = ACTIONS(2348), + [aux_sym_cmd_identifier_token24] = ACTIONS(2348), + [aux_sym_cmd_identifier_token25] = ACTIONS(2348), + [aux_sym_cmd_identifier_token26] = ACTIONS(2348), + [aux_sym_cmd_identifier_token27] = ACTIONS(2348), + [aux_sym_cmd_identifier_token28] = ACTIONS(2348), + [aux_sym_cmd_identifier_token29] = ACTIONS(2348), + [aux_sym_cmd_identifier_token30] = ACTIONS(2348), + [aux_sym_cmd_identifier_token31] = ACTIONS(2348), + [aux_sym_cmd_identifier_token32] = ACTIONS(2348), + [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token34] = ACTIONS(2348), + [aux_sym_cmd_identifier_token35] = ACTIONS(2348), + [aux_sym_cmd_identifier_token36] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(2350), + [anon_sym_false] = ACTIONS(2350), + [anon_sym_null] = ACTIONS(2350), + [aux_sym_cmd_identifier_token38] = ACTIONS(2348), + [aux_sym_cmd_identifier_token39] = ACTIONS(2350), + [aux_sym_cmd_identifier_token40] = ACTIONS(2350), + [anon_sym_def] = ACTIONS(2348), + [anon_sym_export_DASHenv] = ACTIONS(2348), + [anon_sym_extern] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_use] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_DOLLAR] = ACTIONS(2350), + [anon_sym_error] = ACTIONS(2348), + [anon_sym_list] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2348), + [anon_sym_loop] = ACTIONS(2348), + [anon_sym_make] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_match] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_catch] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_source] = ACTIONS(2348), + [anon_sym_source_DASHenv] = ACTIONS(2348), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), + [aux_sym__val_number_decimal_token1] = ACTIONS(2348), + [aux_sym__val_number_decimal_token2] = ACTIONS(2350), + [aux_sym__val_number_decimal_token3] = ACTIONS(2350), + [aux_sym__val_number_decimal_token4] = ACTIONS(2350), + [aux_sym__val_number_token1] = ACTIONS(2350), + [aux_sym__val_number_token2] = ACTIONS(2350), + [aux_sym__val_number_token3] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [sym__str_single_quotes] = ACTIONS(2350), + [sym__str_back_ticks] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(247), }, [672] = { - [sym_expr_parenthesized] = STATE(1470), - [sym_val_range] = STATE(1807), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1807), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1807), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1481), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(672), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(666), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_err_GT_PIPE] = ACTIONS(2752), - [anon_sym_out_GT_PIPE] = ACTIONS(2752), - [anon_sym_e_GT_PIPE] = ACTIONS(2752), - [anon_sym_o_GT_PIPE] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1987), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1987), + [aux_sym_cmd_identifier_token40] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_list] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(247), }, [673] = { - [sym_expr_parenthesized] = STATE(1470), - [sym_val_range] = STATE(1807), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1807), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1807), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1481), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(673), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(668), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_err_GT_PIPE] = ACTIONS(2752), - [anon_sym_out_GT_PIPE] = ACTIONS(2752), - [anon_sym_e_GT_PIPE] = ACTIONS(2752), - [anon_sym_o_GT_PIPE] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_alias] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_let_DASHenv] = ACTIONS(2462), + [anon_sym_mut] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [aux_sym_cmd_identifier_token1] = ACTIONS(2462), + [aux_sym_cmd_identifier_token2] = ACTIONS(2462), + [aux_sym_cmd_identifier_token3] = ACTIONS(2462), + [aux_sym_cmd_identifier_token4] = ACTIONS(2462), + [aux_sym_cmd_identifier_token5] = ACTIONS(2462), + [aux_sym_cmd_identifier_token6] = ACTIONS(2462), + [aux_sym_cmd_identifier_token7] = ACTIONS(2462), + [aux_sym_cmd_identifier_token8] = ACTIONS(2462), + [aux_sym_cmd_identifier_token9] = ACTIONS(2462), + [aux_sym_cmd_identifier_token10] = ACTIONS(2462), + [aux_sym_cmd_identifier_token11] = ACTIONS(2462), + [aux_sym_cmd_identifier_token12] = ACTIONS(2462), + [aux_sym_cmd_identifier_token13] = ACTIONS(2462), + [aux_sym_cmd_identifier_token14] = ACTIONS(2462), + [aux_sym_cmd_identifier_token15] = ACTIONS(2462), + [aux_sym_cmd_identifier_token16] = ACTIONS(2462), + [aux_sym_cmd_identifier_token17] = ACTIONS(2462), + [aux_sym_cmd_identifier_token18] = ACTIONS(2462), + [aux_sym_cmd_identifier_token19] = ACTIONS(2462), + [aux_sym_cmd_identifier_token20] = ACTIONS(2462), + [aux_sym_cmd_identifier_token21] = ACTIONS(2462), + [aux_sym_cmd_identifier_token22] = ACTIONS(2462), + [aux_sym_cmd_identifier_token23] = ACTIONS(2462), + [aux_sym_cmd_identifier_token24] = ACTIONS(2462), + [aux_sym_cmd_identifier_token25] = ACTIONS(2462), + [aux_sym_cmd_identifier_token26] = ACTIONS(2462), + [aux_sym_cmd_identifier_token27] = ACTIONS(2462), + [aux_sym_cmd_identifier_token28] = ACTIONS(2462), + [aux_sym_cmd_identifier_token29] = ACTIONS(2462), + [aux_sym_cmd_identifier_token30] = ACTIONS(2462), + [aux_sym_cmd_identifier_token31] = ACTIONS(2462), + [aux_sym_cmd_identifier_token32] = ACTIONS(2462), + [aux_sym_cmd_identifier_token33] = ACTIONS(2462), + [aux_sym_cmd_identifier_token34] = ACTIONS(2462), + [aux_sym_cmd_identifier_token35] = ACTIONS(2462), + [aux_sym_cmd_identifier_token36] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_null] = ACTIONS(2464), + [aux_sym_cmd_identifier_token38] = ACTIONS(2462), + [aux_sym_cmd_identifier_token39] = ACTIONS(2464), + [aux_sym_cmd_identifier_token40] = ACTIONS(2464), + [anon_sym_def] = ACTIONS(2462), + [anon_sym_export_DASHenv] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_use] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_DOLLAR] = ACTIONS(2464), + [anon_sym_error] = ACTIONS(2462), + [anon_sym_list] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_loop] = ACTIONS(2462), + [anon_sym_make] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_source] = ACTIONS(2462), + [anon_sym_source_DASHenv] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_hide] = ACTIONS(2462), + [anon_sym_hide_DASHenv] = ACTIONS(2462), + [anon_sym_overlay] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), + [aux_sym__val_number_decimal_token1] = ACTIONS(2462), + [aux_sym__val_number_decimal_token2] = ACTIONS(2464), + [aux_sym__val_number_decimal_token3] = ACTIONS(2464), + [aux_sym__val_number_decimal_token4] = ACTIONS(2464), + [aux_sym__val_number_token1] = ACTIONS(2464), + [aux_sym__val_number_token2] = ACTIONS(2464), + [aux_sym__val_number_token3] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym__str_single_quotes] = ACTIONS(2464), + [sym__str_back_ticks] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2462), [anon_sym_POUND] = ACTIONS(247), }, [674] = { - [sym_expr_parenthesized] = STATE(1403), - [sym_val_range] = STATE(1784), - [sym__val_range] = STATE(7679), - [sym__val_range_with_end] = STATE(7434), - [sym__value] = STATE(1784), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1486), - [sym_val_variable] = STATE(1406), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1140), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__flag] = STATE(1784), - [sym_short_flag] = STATE(1786), - [sym_long_flag] = STATE(1786), - [sym_unquoted] = STATE(1480), - [sym__unquoted_with_expr] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(6696), [sym_comment] = STATE(674), - [aux_sym_ctrl_do_repeat2] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2531), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2756), - [aux_sym_cmd_identifier_token38] = ACTIONS(2758), - [aux_sym_cmd_identifier_token39] = ACTIONS(2758), - [aux_sym_cmd_identifier_token40] = ACTIONS(2758), - [sym__newline] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_DOLLAR] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2768), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), - [anon_sym_DOT_DOT_LT] = ACTIONS(2774), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2780), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2800), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_alias] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_let_DASHenv] = ACTIONS(1832), + [anon_sym_mut] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [aux_sym_cmd_identifier_token1] = ACTIONS(1832), + [aux_sym_cmd_identifier_token2] = ACTIONS(1832), + [aux_sym_cmd_identifier_token3] = ACTIONS(1832), + [aux_sym_cmd_identifier_token4] = ACTIONS(1832), + [aux_sym_cmd_identifier_token5] = ACTIONS(1832), + [aux_sym_cmd_identifier_token6] = ACTIONS(1832), + [aux_sym_cmd_identifier_token7] = ACTIONS(1832), + [aux_sym_cmd_identifier_token8] = ACTIONS(1832), + [aux_sym_cmd_identifier_token9] = ACTIONS(1832), + [aux_sym_cmd_identifier_token10] = ACTIONS(1832), + [aux_sym_cmd_identifier_token11] = ACTIONS(1832), + [aux_sym_cmd_identifier_token12] = ACTIONS(1832), + [aux_sym_cmd_identifier_token13] = ACTIONS(1832), + [aux_sym_cmd_identifier_token14] = ACTIONS(1832), + [aux_sym_cmd_identifier_token15] = ACTIONS(1832), + [aux_sym_cmd_identifier_token16] = ACTIONS(1832), + [aux_sym_cmd_identifier_token17] = ACTIONS(1832), + [aux_sym_cmd_identifier_token18] = ACTIONS(1832), + [aux_sym_cmd_identifier_token19] = ACTIONS(1832), + [aux_sym_cmd_identifier_token20] = ACTIONS(1832), + [aux_sym_cmd_identifier_token21] = ACTIONS(1832), + [aux_sym_cmd_identifier_token22] = ACTIONS(1832), + [aux_sym_cmd_identifier_token23] = ACTIONS(1832), + [aux_sym_cmd_identifier_token24] = ACTIONS(1832), + [aux_sym_cmd_identifier_token25] = ACTIONS(1832), + [aux_sym_cmd_identifier_token26] = ACTIONS(1832), + [aux_sym_cmd_identifier_token27] = ACTIONS(1832), + [aux_sym_cmd_identifier_token28] = ACTIONS(1832), + [aux_sym_cmd_identifier_token29] = ACTIONS(1832), + [aux_sym_cmd_identifier_token30] = ACTIONS(1832), + [aux_sym_cmd_identifier_token31] = ACTIONS(1832), + [aux_sym_cmd_identifier_token32] = ACTIONS(1832), + [aux_sym_cmd_identifier_token33] = ACTIONS(1832), + [aux_sym_cmd_identifier_token34] = ACTIONS(1832), + [aux_sym_cmd_identifier_token35] = ACTIONS(1832), + [aux_sym_cmd_identifier_token36] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [anon_sym_null] = ACTIONS(1834), + [aux_sym_cmd_identifier_token38] = ACTIONS(1832), + [aux_sym_cmd_identifier_token39] = ACTIONS(1834), + [aux_sym_cmd_identifier_token40] = ACTIONS(1834), + [anon_sym_def] = ACTIONS(1832), + [anon_sym_export_DASHenv] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_error] = ACTIONS(1832), + [anon_sym_list] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_make] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_catch] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_source] = ACTIONS(1832), + [anon_sym_source_DASHenv] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_hide] = ACTIONS(1832), + [anon_sym_hide_DASHenv] = ACTIONS(1832), + [anon_sym_overlay] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1834), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1834), + [aux_sym__val_number_decimal_token1] = ACTIONS(1832), + [aux_sym__val_number_decimal_token2] = ACTIONS(1834), + [aux_sym__val_number_decimal_token3] = ACTIONS(1834), + [aux_sym__val_number_decimal_token4] = ACTIONS(1834), + [aux_sym__val_number_token1] = ACTIONS(1834), + [aux_sym__val_number_token2] = ACTIONS(1834), + [aux_sym__val_number_token3] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym__str_single_quotes] = ACTIONS(1834), + [sym__str_back_ticks] = ACTIONS(1834), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1832), [anon_sym_POUND] = ACTIONS(247), }, [675] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_rest] = STATE(7798), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2710), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(2957), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(2958), - [sym_val_bool] = STATE(2798), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(2728), - [sym_val_number] = STATE(2958), - [sym__val_number_decimal] = STATE(2468), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(2958), - [sym_val_filesize] = STATE(2958), - [sym_val_binary] = STATE(2958), - [sym_val_string] = STATE(2958), - [sym__str_double_quotes] = STATE(2931), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6663), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7755), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(2958), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(2852), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(675), - [aux_sym_shebang_repeat1] = STATE(738), - [aux_sym__match_pattern_list_repeat1] = STATE(1101), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2802), - [anon_sym_false] = ACTIONS(2802), - [anon_sym_null] = ACTIONS(2804), - [aux_sym_cmd_identifier_token38] = ACTIONS(2806), - [aux_sym_cmd_identifier_token39] = ACTIONS(2806), - [aux_sym_cmd_identifier_token40] = ACTIONS(2806), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2816), - [aux_sym_ctrl_match_token1] = ACTIONS(2818), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2822), - [anon_sym_DOT_DOT_LT] = ACTIONS(2822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2824), - [aux_sym__val_number_decimal_token2] = ACTIONS(2826), - [aux_sym__val_number_decimal_token3] = ACTIONS(2828), - [aux_sym__val_number_decimal_token4] = ACTIONS(2830), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym__str_single_quotes] = ACTIONS(2842), - [sym__str_back_ticks] = ACTIONS(2842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_alias] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_let_DASHenv] = ACTIONS(2466), + [anon_sym_mut] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [aux_sym_cmd_identifier_token1] = ACTIONS(2466), + [aux_sym_cmd_identifier_token2] = ACTIONS(2466), + [aux_sym_cmd_identifier_token3] = ACTIONS(2466), + [aux_sym_cmd_identifier_token4] = ACTIONS(2466), + [aux_sym_cmd_identifier_token5] = ACTIONS(2466), + [aux_sym_cmd_identifier_token6] = ACTIONS(2466), + [aux_sym_cmd_identifier_token7] = ACTIONS(2466), + [aux_sym_cmd_identifier_token8] = ACTIONS(2466), + [aux_sym_cmd_identifier_token9] = ACTIONS(2466), + [aux_sym_cmd_identifier_token10] = ACTIONS(2466), + [aux_sym_cmd_identifier_token11] = ACTIONS(2466), + [aux_sym_cmd_identifier_token12] = ACTIONS(2466), + [aux_sym_cmd_identifier_token13] = ACTIONS(2466), + [aux_sym_cmd_identifier_token14] = ACTIONS(2466), + [aux_sym_cmd_identifier_token15] = ACTIONS(2466), + [aux_sym_cmd_identifier_token16] = ACTIONS(2466), + [aux_sym_cmd_identifier_token17] = ACTIONS(2466), + [aux_sym_cmd_identifier_token18] = ACTIONS(2466), + [aux_sym_cmd_identifier_token19] = ACTIONS(2466), + [aux_sym_cmd_identifier_token20] = ACTIONS(2466), + [aux_sym_cmd_identifier_token21] = ACTIONS(2466), + [aux_sym_cmd_identifier_token22] = ACTIONS(2466), + [aux_sym_cmd_identifier_token23] = ACTIONS(2466), + [aux_sym_cmd_identifier_token24] = ACTIONS(2466), + [aux_sym_cmd_identifier_token25] = ACTIONS(2466), + [aux_sym_cmd_identifier_token26] = ACTIONS(2466), + [aux_sym_cmd_identifier_token27] = ACTIONS(2466), + [aux_sym_cmd_identifier_token28] = ACTIONS(2466), + [aux_sym_cmd_identifier_token29] = ACTIONS(2466), + [aux_sym_cmd_identifier_token30] = ACTIONS(2466), + [aux_sym_cmd_identifier_token31] = ACTIONS(2466), + [aux_sym_cmd_identifier_token32] = ACTIONS(2466), + [aux_sym_cmd_identifier_token33] = ACTIONS(2466), + [aux_sym_cmd_identifier_token34] = ACTIONS(2466), + [aux_sym_cmd_identifier_token35] = ACTIONS(2466), + [aux_sym_cmd_identifier_token36] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_null] = ACTIONS(2468), + [aux_sym_cmd_identifier_token38] = ACTIONS(2466), + [aux_sym_cmd_identifier_token39] = ACTIONS(2468), + [aux_sym_cmd_identifier_token40] = ACTIONS(2468), + [anon_sym_def] = ACTIONS(2466), + [anon_sym_export_DASHenv] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_DOLLAR] = ACTIONS(2468), + [anon_sym_error] = ACTIONS(2466), + [anon_sym_list] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_make] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_catch] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_source] = ACTIONS(2466), + [anon_sym_source_DASHenv] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_hide] = ACTIONS(2466), + [anon_sym_hide_DASHenv] = ACTIONS(2466), + [anon_sym_overlay] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_as] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), + [aux_sym__val_number_decimal_token1] = ACTIONS(2466), + [aux_sym__val_number_decimal_token2] = ACTIONS(2468), + [aux_sym__val_number_decimal_token3] = ACTIONS(2468), + [aux_sym__val_number_decimal_token4] = ACTIONS(2468), + [aux_sym__val_number_token1] = ACTIONS(2468), + [aux_sym__val_number_token2] = ACTIONS(2468), + [aux_sym__val_number_token3] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2468), + [sym__str_single_quotes] = ACTIONS(2468), + [sym__str_back_ticks] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(247), + }, + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_alias] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_let_DASHenv] = ACTIONS(2388), + [anon_sym_mut] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [aux_sym_cmd_identifier_token1] = ACTIONS(2388), + [aux_sym_cmd_identifier_token2] = ACTIONS(2388), + [aux_sym_cmd_identifier_token3] = ACTIONS(2388), + [aux_sym_cmd_identifier_token4] = ACTIONS(2388), + [aux_sym_cmd_identifier_token5] = ACTIONS(2388), + [aux_sym_cmd_identifier_token6] = ACTIONS(2388), + [aux_sym_cmd_identifier_token7] = ACTIONS(2388), + [aux_sym_cmd_identifier_token8] = ACTIONS(2388), + [aux_sym_cmd_identifier_token9] = ACTIONS(2388), + [aux_sym_cmd_identifier_token10] = ACTIONS(2388), + [aux_sym_cmd_identifier_token11] = ACTIONS(2388), + [aux_sym_cmd_identifier_token12] = ACTIONS(2388), + [aux_sym_cmd_identifier_token13] = ACTIONS(2388), + [aux_sym_cmd_identifier_token14] = ACTIONS(2388), + [aux_sym_cmd_identifier_token15] = ACTIONS(2388), + [aux_sym_cmd_identifier_token16] = ACTIONS(2388), + [aux_sym_cmd_identifier_token17] = ACTIONS(2388), + [aux_sym_cmd_identifier_token18] = ACTIONS(2388), + [aux_sym_cmd_identifier_token19] = ACTIONS(2388), + [aux_sym_cmd_identifier_token20] = ACTIONS(2388), + [aux_sym_cmd_identifier_token21] = ACTIONS(2388), + [aux_sym_cmd_identifier_token22] = ACTIONS(2388), + [aux_sym_cmd_identifier_token23] = ACTIONS(2388), + [aux_sym_cmd_identifier_token24] = ACTIONS(2388), + [aux_sym_cmd_identifier_token25] = ACTIONS(2388), + [aux_sym_cmd_identifier_token26] = ACTIONS(2388), + [aux_sym_cmd_identifier_token27] = ACTIONS(2388), + [aux_sym_cmd_identifier_token28] = ACTIONS(2388), + [aux_sym_cmd_identifier_token29] = ACTIONS(2388), + [aux_sym_cmd_identifier_token30] = ACTIONS(2388), + [aux_sym_cmd_identifier_token31] = ACTIONS(2388), + [aux_sym_cmd_identifier_token32] = ACTIONS(2388), + [aux_sym_cmd_identifier_token33] = ACTIONS(2388), + [aux_sym_cmd_identifier_token34] = ACTIONS(2388), + [aux_sym_cmd_identifier_token35] = ACTIONS(2388), + [aux_sym_cmd_identifier_token36] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2390), + [anon_sym_false] = ACTIONS(2390), + [anon_sym_null] = ACTIONS(2390), + [aux_sym_cmd_identifier_token38] = ACTIONS(2388), + [aux_sym_cmd_identifier_token39] = ACTIONS(2390), + [aux_sym_cmd_identifier_token40] = ACTIONS(2390), + [anon_sym_def] = ACTIONS(2388), + [anon_sym_export_DASHenv] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_use] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_DOLLAR] = ACTIONS(2390), + [anon_sym_error] = ACTIONS(2388), + [anon_sym_list] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_loop] = ACTIONS(2388), + [anon_sym_make] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_source] = ACTIONS(2388), + [anon_sym_source_DASHenv] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_hide] = ACTIONS(2388), + [anon_sym_hide_DASHenv] = ACTIONS(2388), + [anon_sym_overlay] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), + [aux_sym__val_number_decimal_token1] = ACTIONS(2388), + [aux_sym__val_number_decimal_token2] = ACTIONS(2390), + [aux_sym__val_number_decimal_token3] = ACTIONS(2390), + [aux_sym__val_number_decimal_token4] = ACTIONS(2390), + [aux_sym__val_number_token1] = ACTIONS(2390), + [aux_sym__val_number_token2] = ACTIONS(2390), + [aux_sym__val_number_token3] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [sym__str_single_quotes] = ACTIONS(2390), + [sym__str_back_ticks] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(247), + }, + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(2517), + [anon_sym_alias] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_DASHenv] = ACTIONS(2517), + [anon_sym_mut] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [aux_sym_cmd_identifier_token1] = ACTIONS(2517), + [aux_sym_cmd_identifier_token2] = ACTIONS(2517), + [aux_sym_cmd_identifier_token3] = ACTIONS(2517), + [aux_sym_cmd_identifier_token4] = ACTIONS(2517), + [aux_sym_cmd_identifier_token5] = ACTIONS(2517), + [aux_sym_cmd_identifier_token6] = ACTIONS(2517), + [aux_sym_cmd_identifier_token7] = ACTIONS(2517), + [aux_sym_cmd_identifier_token8] = ACTIONS(2517), + [aux_sym_cmd_identifier_token9] = ACTIONS(2517), + [aux_sym_cmd_identifier_token10] = ACTIONS(2517), + [aux_sym_cmd_identifier_token11] = ACTIONS(2517), + [aux_sym_cmd_identifier_token12] = ACTIONS(2517), + [aux_sym_cmd_identifier_token13] = ACTIONS(2517), + [aux_sym_cmd_identifier_token14] = ACTIONS(2517), + [aux_sym_cmd_identifier_token15] = ACTIONS(2517), + [aux_sym_cmd_identifier_token16] = ACTIONS(2517), + [aux_sym_cmd_identifier_token17] = ACTIONS(2517), + [aux_sym_cmd_identifier_token18] = ACTIONS(2517), + [aux_sym_cmd_identifier_token19] = ACTIONS(2517), + [aux_sym_cmd_identifier_token20] = ACTIONS(2517), + [aux_sym_cmd_identifier_token21] = ACTIONS(2517), + [aux_sym_cmd_identifier_token22] = ACTIONS(2517), + [aux_sym_cmd_identifier_token23] = ACTIONS(2517), + [aux_sym_cmd_identifier_token24] = ACTIONS(2517), + [aux_sym_cmd_identifier_token25] = ACTIONS(2517), + [aux_sym_cmd_identifier_token26] = ACTIONS(2517), + [aux_sym_cmd_identifier_token27] = ACTIONS(2517), + [aux_sym_cmd_identifier_token28] = ACTIONS(2517), + [aux_sym_cmd_identifier_token29] = ACTIONS(2517), + [aux_sym_cmd_identifier_token30] = ACTIONS(2517), + [aux_sym_cmd_identifier_token31] = ACTIONS(2517), + [aux_sym_cmd_identifier_token32] = ACTIONS(2517), + [aux_sym_cmd_identifier_token33] = ACTIONS(2517), + [aux_sym_cmd_identifier_token34] = ACTIONS(2517), + [aux_sym_cmd_identifier_token35] = ACTIONS(2517), + [aux_sym_cmd_identifier_token36] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2519), + [anon_sym_false] = ACTIONS(2519), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token38] = ACTIONS(2517), + [aux_sym_cmd_identifier_token39] = ACTIONS(2519), + [aux_sym_cmd_identifier_token40] = ACTIONS(2519), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_export_DASHenv] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2519), + [anon_sym_error] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_make] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_catch] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_source] = ACTIONS(2517), + [anon_sym_source_DASHenv] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_hide] = ACTIONS(2517), + [anon_sym_hide_DASHenv] = ACTIONS(2517), + [anon_sym_overlay] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_as] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2519), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2519), + [aux_sym__val_number_decimal_token1] = ACTIONS(2517), + [aux_sym__val_number_decimal_token2] = ACTIONS(2519), + [aux_sym__val_number_decimal_token3] = ACTIONS(2519), + [aux_sym__val_number_decimal_token4] = ACTIONS(2519), + [aux_sym__val_number_token1] = ACTIONS(2519), + [aux_sym__val_number_token2] = ACTIONS(2519), + [aux_sym__val_number_token3] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym__str_single_quotes] = ACTIONS(2519), + [sym__str_back_ticks] = ACTIONS(2519), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(247), + }, + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(2521), + [anon_sym_alias] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_let_DASHenv] = ACTIONS(2521), + [anon_sym_mut] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [aux_sym_cmd_identifier_token1] = ACTIONS(2521), + [aux_sym_cmd_identifier_token2] = ACTIONS(2521), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [aux_sym_cmd_identifier_token6] = ACTIONS(2521), + [aux_sym_cmd_identifier_token7] = ACTIONS(2521), + [aux_sym_cmd_identifier_token8] = ACTIONS(2521), + [aux_sym_cmd_identifier_token9] = ACTIONS(2521), + [aux_sym_cmd_identifier_token10] = ACTIONS(2521), + [aux_sym_cmd_identifier_token11] = ACTIONS(2521), + [aux_sym_cmd_identifier_token12] = ACTIONS(2521), + [aux_sym_cmd_identifier_token13] = ACTIONS(2521), + [aux_sym_cmd_identifier_token14] = ACTIONS(2521), + [aux_sym_cmd_identifier_token15] = ACTIONS(2521), + [aux_sym_cmd_identifier_token16] = ACTIONS(2521), + [aux_sym_cmd_identifier_token17] = ACTIONS(2521), + [aux_sym_cmd_identifier_token18] = ACTIONS(2521), + [aux_sym_cmd_identifier_token19] = ACTIONS(2521), + [aux_sym_cmd_identifier_token20] = ACTIONS(2521), + [aux_sym_cmd_identifier_token21] = ACTIONS(2521), + [aux_sym_cmd_identifier_token22] = ACTIONS(2521), + [aux_sym_cmd_identifier_token23] = ACTIONS(2521), + [aux_sym_cmd_identifier_token24] = ACTIONS(2521), + [aux_sym_cmd_identifier_token25] = ACTIONS(2521), + [aux_sym_cmd_identifier_token26] = ACTIONS(2521), + [aux_sym_cmd_identifier_token27] = ACTIONS(2521), + [aux_sym_cmd_identifier_token28] = ACTIONS(2521), + [aux_sym_cmd_identifier_token29] = ACTIONS(2521), + [aux_sym_cmd_identifier_token30] = ACTIONS(2521), + [aux_sym_cmd_identifier_token31] = ACTIONS(2521), + [aux_sym_cmd_identifier_token32] = ACTIONS(2521), + [aux_sym_cmd_identifier_token33] = ACTIONS(2521), + [aux_sym_cmd_identifier_token34] = ACTIONS(2521), + [aux_sym_cmd_identifier_token35] = ACTIONS(2521), + [aux_sym_cmd_identifier_token36] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2523), + [anon_sym_false] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2523), + [aux_sym_cmd_identifier_token38] = ACTIONS(2521), + [aux_sym_cmd_identifier_token39] = ACTIONS(2523), + [aux_sym_cmd_identifier_token40] = ACTIONS(2523), + [anon_sym_def] = ACTIONS(2521), + [anon_sym_export_DASHenv] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_module] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2523), + [anon_sym_error] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_make] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_catch] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_source] = ACTIONS(2521), + [anon_sym_source_DASHenv] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_hide] = ACTIONS(2521), + [anon_sym_hide_DASHenv] = ACTIONS(2521), + [anon_sym_overlay] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_as] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2523), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2523), + [aux_sym__val_number_decimal_token1] = ACTIONS(2521), + [aux_sym__val_number_decimal_token2] = ACTIONS(2523), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [aux_sym__val_number_token1] = ACTIONS(2523), + [aux_sym__val_number_token2] = ACTIONS(2523), + [aux_sym__val_number_token3] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym__str_single_quotes] = ACTIONS(2523), + [sym__str_back_ticks] = ACTIONS(2523), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(247), + }, + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(1848), + [anon_sym_alias] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_let_DASHenv] = ACTIONS(1848), + [anon_sym_mut] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [aux_sym_cmd_identifier_token1] = ACTIONS(1848), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1848), + [aux_sym_cmd_identifier_token9] = ACTIONS(1848), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1848), + [aux_sym_cmd_identifier_token13] = ACTIONS(1848), + [aux_sym_cmd_identifier_token14] = ACTIONS(1848), + [aux_sym_cmd_identifier_token15] = ACTIONS(1848), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1848), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1848), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [anon_sym_def] = ACTIONS(1848), + [anon_sym_export_DASHenv] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_module] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_error] = ACTIONS(1848), + [anon_sym_list] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_make] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_else] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1848), + [anon_sym_catch] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_source] = ACTIONS(1848), + [anon_sym_source_DASHenv] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_hide] = ACTIONS(1848), + [anon_sym_hide_DASHenv] = ACTIONS(1848), + [anon_sym_overlay] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1848), + [anon_sym_as] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(247), + }, + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_alias] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_let_DASHenv] = ACTIONS(2412), + [anon_sym_mut] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [aux_sym_cmd_identifier_token1] = ACTIONS(2412), + [aux_sym_cmd_identifier_token2] = ACTIONS(2412), + [aux_sym_cmd_identifier_token3] = ACTIONS(2412), + [aux_sym_cmd_identifier_token4] = ACTIONS(2412), + [aux_sym_cmd_identifier_token5] = ACTIONS(2412), + [aux_sym_cmd_identifier_token6] = ACTIONS(2412), + [aux_sym_cmd_identifier_token7] = ACTIONS(2412), + [aux_sym_cmd_identifier_token8] = ACTIONS(2412), + [aux_sym_cmd_identifier_token9] = ACTIONS(2412), + [aux_sym_cmd_identifier_token10] = ACTIONS(2412), + [aux_sym_cmd_identifier_token11] = ACTIONS(2412), + [aux_sym_cmd_identifier_token12] = ACTIONS(2412), + [aux_sym_cmd_identifier_token13] = ACTIONS(2412), + [aux_sym_cmd_identifier_token14] = ACTIONS(2412), + [aux_sym_cmd_identifier_token15] = ACTIONS(2412), + [aux_sym_cmd_identifier_token16] = ACTIONS(2412), + [aux_sym_cmd_identifier_token17] = ACTIONS(2412), + [aux_sym_cmd_identifier_token18] = ACTIONS(2412), + [aux_sym_cmd_identifier_token19] = ACTIONS(2412), + [aux_sym_cmd_identifier_token20] = ACTIONS(2412), + [aux_sym_cmd_identifier_token21] = ACTIONS(2412), + [aux_sym_cmd_identifier_token22] = ACTIONS(2412), + [aux_sym_cmd_identifier_token23] = ACTIONS(2412), + [aux_sym_cmd_identifier_token24] = ACTIONS(2412), + [aux_sym_cmd_identifier_token25] = ACTIONS(2412), + [aux_sym_cmd_identifier_token26] = ACTIONS(2412), + [aux_sym_cmd_identifier_token27] = ACTIONS(2412), + [aux_sym_cmd_identifier_token28] = ACTIONS(2412), + [aux_sym_cmd_identifier_token29] = ACTIONS(2412), + [aux_sym_cmd_identifier_token30] = ACTIONS(2412), + [aux_sym_cmd_identifier_token31] = ACTIONS(2412), + [aux_sym_cmd_identifier_token32] = ACTIONS(2412), + [aux_sym_cmd_identifier_token33] = ACTIONS(2412), + [aux_sym_cmd_identifier_token34] = ACTIONS(2412), + [aux_sym_cmd_identifier_token35] = ACTIONS(2412), + [aux_sym_cmd_identifier_token36] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2414), + [anon_sym_false] = ACTIONS(2414), + [anon_sym_null] = ACTIONS(2414), + [aux_sym_cmd_identifier_token38] = ACTIONS(2412), + [aux_sym_cmd_identifier_token39] = ACTIONS(2414), + [aux_sym_cmd_identifier_token40] = ACTIONS(2414), + [anon_sym_def] = ACTIONS(2412), + [anon_sym_export_DASHenv] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_use] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_DOLLAR] = ACTIONS(2414), + [anon_sym_error] = ACTIONS(2412), + [anon_sym_list] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_make] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_catch] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_source] = ACTIONS(2412), + [anon_sym_source_DASHenv] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_hide] = ACTIONS(2412), + [anon_sym_hide_DASHenv] = ACTIONS(2412), + [anon_sym_overlay] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), + [aux_sym__val_number_decimal_token1] = ACTIONS(2412), + [aux_sym__val_number_decimal_token2] = ACTIONS(2414), + [aux_sym__val_number_decimal_token3] = ACTIONS(2414), + [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [aux_sym__val_number_token1] = ACTIONS(2414), + [aux_sym__val_number_token2] = ACTIONS(2414), + [aux_sym__val_number_token3] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym__str_single_quotes] = ACTIONS(2414), + [sym__str_back_ticks] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(247), + }, + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_alias] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_let_DASHenv] = ACTIONS(2416), + [anon_sym_mut] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [aux_sym_cmd_identifier_token1] = ACTIONS(2416), + [aux_sym_cmd_identifier_token2] = ACTIONS(2416), + [aux_sym_cmd_identifier_token3] = ACTIONS(2416), + [aux_sym_cmd_identifier_token4] = ACTIONS(2416), + [aux_sym_cmd_identifier_token5] = ACTIONS(2416), + [aux_sym_cmd_identifier_token6] = ACTIONS(2416), + [aux_sym_cmd_identifier_token7] = ACTIONS(2416), + [aux_sym_cmd_identifier_token8] = ACTIONS(2416), + [aux_sym_cmd_identifier_token9] = ACTIONS(2416), + [aux_sym_cmd_identifier_token10] = ACTIONS(2416), + [aux_sym_cmd_identifier_token11] = ACTIONS(2416), + [aux_sym_cmd_identifier_token12] = ACTIONS(2416), + [aux_sym_cmd_identifier_token13] = ACTIONS(2416), + [aux_sym_cmd_identifier_token14] = ACTIONS(2416), + [aux_sym_cmd_identifier_token15] = ACTIONS(2416), + [aux_sym_cmd_identifier_token16] = ACTIONS(2416), + [aux_sym_cmd_identifier_token17] = ACTIONS(2416), + [aux_sym_cmd_identifier_token18] = ACTIONS(2416), + [aux_sym_cmd_identifier_token19] = ACTIONS(2416), + [aux_sym_cmd_identifier_token20] = ACTIONS(2416), + [aux_sym_cmd_identifier_token21] = ACTIONS(2416), + [aux_sym_cmd_identifier_token22] = ACTIONS(2416), + [aux_sym_cmd_identifier_token23] = ACTIONS(2416), + [aux_sym_cmd_identifier_token24] = ACTIONS(2416), + [aux_sym_cmd_identifier_token25] = ACTIONS(2416), + [aux_sym_cmd_identifier_token26] = ACTIONS(2416), + [aux_sym_cmd_identifier_token27] = ACTIONS(2416), + [aux_sym_cmd_identifier_token28] = ACTIONS(2416), + [aux_sym_cmd_identifier_token29] = ACTIONS(2416), + [aux_sym_cmd_identifier_token30] = ACTIONS(2416), + [aux_sym_cmd_identifier_token31] = ACTIONS(2416), + [aux_sym_cmd_identifier_token32] = ACTIONS(2416), + [aux_sym_cmd_identifier_token33] = ACTIONS(2416), + [aux_sym_cmd_identifier_token34] = ACTIONS(2416), + [aux_sym_cmd_identifier_token35] = ACTIONS(2416), + [aux_sym_cmd_identifier_token36] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2418), + [anon_sym_false] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2418), + [aux_sym_cmd_identifier_token38] = ACTIONS(2416), + [aux_sym_cmd_identifier_token39] = ACTIONS(2418), + [aux_sym_cmd_identifier_token40] = ACTIONS(2418), + [anon_sym_def] = ACTIONS(2416), + [anon_sym_export_DASHenv] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_DOLLAR] = ACTIONS(2418), + [anon_sym_error] = ACTIONS(2416), + [anon_sym_list] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_make] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_source] = ACTIONS(2416), + [anon_sym_source_DASHenv] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_hide] = ACTIONS(2416), + [anon_sym_hide_DASHenv] = ACTIONS(2416), + [anon_sym_overlay] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_as] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), + [aux_sym__val_number_decimal_token1] = ACTIONS(2416), + [aux_sym__val_number_decimal_token2] = ACTIONS(2418), + [aux_sym__val_number_decimal_token3] = ACTIONS(2418), + [aux_sym__val_number_decimal_token4] = ACTIONS(2418), + [aux_sym__val_number_token1] = ACTIONS(2418), + [aux_sym__val_number_token2] = ACTIONS(2418), + [aux_sym__val_number_token3] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym__str_single_quotes] = ACTIONS(2418), + [sym__str_back_ticks] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2416), [anon_sym_POUND] = ACTIONS(247), }, - [676] = { - [sym_expr_parenthesized] = STATE(1403), - [sym_val_range] = STATE(1784), - [sym__val_range] = STATE(7679), - [sym__val_range_with_end] = STATE(7434), - [sym__value] = STATE(1784), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1486), - [sym_val_variable] = STATE(1406), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1140), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__flag] = STATE(1784), - [sym_short_flag] = STATE(1786), - [sym_long_flag] = STATE(1786), - [sym_unquoted] = STATE(1480), - [sym__unquoted_with_expr] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(6696), - [sym_comment] = STATE(676), - [aux_sym_ctrl_do_repeat2] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2748), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2756), - [aux_sym_cmd_identifier_token38] = ACTIONS(2758), - [aux_sym_cmd_identifier_token39] = ACTIONS(2758), - [aux_sym_cmd_identifier_token40] = ACTIONS(2758), - [sym__newline] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_err_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_GT_PIPE] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_DOLLAR] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2768), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), - [anon_sym_DOT_DOT_LT] = ACTIONS(2774), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2780), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2800), + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_alias] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_let_DASHenv] = ACTIONS(1864), + [anon_sym_mut] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [aux_sym_cmd_identifier_token1] = ACTIONS(1864), + [aux_sym_cmd_identifier_token2] = ACTIONS(1864), + [aux_sym_cmd_identifier_token3] = ACTIONS(1864), + [aux_sym_cmd_identifier_token4] = ACTIONS(1864), + [aux_sym_cmd_identifier_token5] = ACTIONS(1864), + [aux_sym_cmd_identifier_token6] = ACTIONS(1864), + [aux_sym_cmd_identifier_token7] = ACTIONS(1864), + [aux_sym_cmd_identifier_token8] = ACTIONS(1864), + [aux_sym_cmd_identifier_token9] = ACTIONS(1864), + [aux_sym_cmd_identifier_token10] = ACTIONS(1864), + [aux_sym_cmd_identifier_token11] = ACTIONS(1864), + [aux_sym_cmd_identifier_token12] = ACTIONS(1864), + [aux_sym_cmd_identifier_token13] = ACTIONS(1864), + [aux_sym_cmd_identifier_token14] = ACTIONS(1864), + [aux_sym_cmd_identifier_token15] = ACTIONS(1864), + [aux_sym_cmd_identifier_token16] = ACTIONS(1864), + [aux_sym_cmd_identifier_token17] = ACTIONS(1864), + [aux_sym_cmd_identifier_token18] = ACTIONS(1864), + [aux_sym_cmd_identifier_token19] = ACTIONS(1864), + [aux_sym_cmd_identifier_token20] = ACTIONS(1864), + [aux_sym_cmd_identifier_token21] = ACTIONS(1864), + [aux_sym_cmd_identifier_token22] = ACTIONS(1864), + [aux_sym_cmd_identifier_token23] = ACTIONS(1864), + [aux_sym_cmd_identifier_token24] = ACTIONS(1864), + [aux_sym_cmd_identifier_token25] = ACTIONS(1864), + [aux_sym_cmd_identifier_token26] = ACTIONS(1864), + [aux_sym_cmd_identifier_token27] = ACTIONS(1864), + [aux_sym_cmd_identifier_token28] = ACTIONS(1864), + [aux_sym_cmd_identifier_token29] = ACTIONS(1864), + [aux_sym_cmd_identifier_token30] = ACTIONS(1864), + [aux_sym_cmd_identifier_token31] = ACTIONS(1864), + [aux_sym_cmd_identifier_token32] = ACTIONS(1864), + [aux_sym_cmd_identifier_token33] = ACTIONS(1864), + [aux_sym_cmd_identifier_token34] = ACTIONS(1864), + [aux_sym_cmd_identifier_token35] = ACTIONS(1864), + [aux_sym_cmd_identifier_token36] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1864), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = ACTIONS(1866), + [anon_sym_def] = ACTIONS(1864), + [anon_sym_export_DASHenv] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1864), + [anon_sym_list] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_make] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1864), + [anon_sym_catch] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_source] = ACTIONS(1864), + [anon_sym_source_DASHenv] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_hide] = ACTIONS(1864), + [anon_sym_hide_DASHenv] = ACTIONS(1864), + [anon_sym_overlay] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1864), + [aux_sym__val_number_decimal_token2] = ACTIONS(1866), + [aux_sym__val_number_decimal_token3] = ACTIONS(1866), + [aux_sym__val_number_decimal_token4] = ACTIONS(1866), + [aux_sym__val_number_token1] = ACTIONS(1866), + [aux_sym__val_number_token2] = ACTIONS(1866), + [aux_sym__val_number_token3] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym__str_single_quotes] = ACTIONS(1866), + [sym__str_back_ticks] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1864), [anon_sym_POUND] = ACTIONS(247), }, - [677] = { - [sym_expr_parenthesized] = STATE(1403), - [sym_val_range] = STATE(1784), - [sym__val_range] = STATE(7679), - [sym__val_range_with_end] = STATE(7434), - [sym__value] = STATE(1784), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1486), - [sym_val_variable] = STATE(1406), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1140), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__flag] = STATE(1784), - [sym_short_flag] = STATE(1786), - [sym_long_flag] = STATE(1786), - [sym_unquoted] = STATE(1480), - [sym__unquoted_with_expr] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(6696), - [sym_comment] = STATE(677), - [aux_sym_ctrl_do_repeat2] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2750), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2756), - [aux_sym_cmd_identifier_token38] = ACTIONS(2758), - [aux_sym_cmd_identifier_token39] = ACTIONS(2758), - [aux_sym_cmd_identifier_token40] = ACTIONS(2758), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_DOLLAR] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2768), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), - [anon_sym_DOT_DOT_LT] = ACTIONS(2774), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2780), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2800), + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_list] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(247), }, - [678] = { - [sym_expr_parenthesized] = STATE(1403), - [sym_val_range] = STATE(1784), - [sym__val_range] = STATE(7679), - [sym__val_range_with_end] = STATE(7434), - [sym__value] = STATE(1784), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1486), - [sym_val_variable] = STATE(1406), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1140), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__flag] = STATE(1784), - [sym_short_flag] = STATE(1786), - [sym_long_flag] = STATE(1786), - [sym_unquoted] = STATE(1480), - [sym__unquoted_with_expr] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(6696), - [sym_comment] = STATE(678), - [aux_sym_ctrl_do_repeat2] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2748), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2756), - [aux_sym_cmd_identifier_token38] = ACTIONS(2758), - [aux_sym_cmd_identifier_token39] = ACTIONS(2758), - [aux_sym_cmd_identifier_token40] = ACTIONS(2758), - [sym__newline] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_err_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_GT_PIPE] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_DOLLAR] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2768), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), - [anon_sym_DOT_DOT_LT] = ACTIONS(2774), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2780), - [aux_sym__val_number_decimal_token4] = ACTIONS(2782), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2800), + [684] = { + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(1876), + [anon_sym_alias] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_let_DASHenv] = ACTIONS(1876), + [anon_sym_mut] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [aux_sym_cmd_identifier_token1] = ACTIONS(1876), + [aux_sym_cmd_identifier_token2] = ACTIONS(1876), + [aux_sym_cmd_identifier_token3] = ACTIONS(1876), + [aux_sym_cmd_identifier_token4] = ACTIONS(1876), + [aux_sym_cmd_identifier_token5] = ACTIONS(1876), + [aux_sym_cmd_identifier_token6] = ACTIONS(1876), + [aux_sym_cmd_identifier_token7] = ACTIONS(1876), + [aux_sym_cmd_identifier_token8] = ACTIONS(1876), + [aux_sym_cmd_identifier_token9] = ACTIONS(1876), + [aux_sym_cmd_identifier_token10] = ACTIONS(1876), + [aux_sym_cmd_identifier_token11] = ACTIONS(1876), + [aux_sym_cmd_identifier_token12] = ACTIONS(1876), + [aux_sym_cmd_identifier_token13] = ACTIONS(1876), + [aux_sym_cmd_identifier_token14] = ACTIONS(1876), + [aux_sym_cmd_identifier_token15] = ACTIONS(1876), + [aux_sym_cmd_identifier_token16] = ACTIONS(1876), + [aux_sym_cmd_identifier_token17] = ACTIONS(1876), + [aux_sym_cmd_identifier_token18] = ACTIONS(1876), + [aux_sym_cmd_identifier_token19] = ACTIONS(1876), + [aux_sym_cmd_identifier_token20] = ACTIONS(1876), + [aux_sym_cmd_identifier_token21] = ACTIONS(1876), + [aux_sym_cmd_identifier_token22] = ACTIONS(1876), + [aux_sym_cmd_identifier_token23] = ACTIONS(1876), + [aux_sym_cmd_identifier_token24] = ACTIONS(1876), + [aux_sym_cmd_identifier_token25] = ACTIONS(1876), + [aux_sym_cmd_identifier_token26] = ACTIONS(1876), + [aux_sym_cmd_identifier_token27] = ACTIONS(1876), + [aux_sym_cmd_identifier_token28] = ACTIONS(1876), + [aux_sym_cmd_identifier_token29] = ACTIONS(1876), + [aux_sym_cmd_identifier_token30] = ACTIONS(1876), + [aux_sym_cmd_identifier_token31] = ACTIONS(1876), + [aux_sym_cmd_identifier_token32] = ACTIONS(1876), + [aux_sym_cmd_identifier_token33] = ACTIONS(1876), + [aux_sym_cmd_identifier_token34] = ACTIONS(1876), + [aux_sym_cmd_identifier_token35] = ACTIONS(1876), + [aux_sym_cmd_identifier_token36] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), + [aux_sym_cmd_identifier_token38] = ACTIONS(1876), + [aux_sym_cmd_identifier_token39] = ACTIONS(1878), + [aux_sym_cmd_identifier_token40] = ACTIONS(1878), + [anon_sym_def] = ACTIONS(1876), + [anon_sym_export_DASHenv] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_module] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_error] = ACTIONS(1876), + [anon_sym_list] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_make] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_else] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1876), + [anon_sym_catch] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_source] = ACTIONS(1876), + [anon_sym_source_DASHenv] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_hide] = ACTIONS(1876), + [anon_sym_hide_DASHenv] = ACTIONS(1876), + [anon_sym_overlay] = ACTIONS(1876), + [anon_sym_new] = ACTIONS(1876), + [anon_sym_as] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1876), + [aux_sym__val_number_decimal_token2] = ACTIONS(1878), + [aux_sym__val_number_decimal_token3] = ACTIONS(1878), + [aux_sym__val_number_decimal_token4] = ACTIONS(1878), + [aux_sym__val_number_token1] = ACTIONS(1878), + [aux_sym__val_number_token2] = ACTIONS(1878), + [aux_sym__val_number_token3] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym__str_single_quotes] = ACTIONS(1878), + [sym__str_back_ticks] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1876), [anon_sym_POUND] = ACTIONS(247), }, - [679] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_rest] = STATE(7798), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2710), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(2957), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(2958), - [sym_val_bool] = STATE(2798), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(2728), - [sym_val_number] = STATE(2958), - [sym__val_number_decimal] = STATE(2468), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(2958), - [sym_val_filesize] = STATE(2958), - [sym_val_binary] = STATE(2958), - [sym_val_string] = STATE(2958), - [sym__str_double_quotes] = STATE(2931), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7245), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7675), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(2958), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(2852), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), - [sym_comment] = STATE(679), - [aux_sym_shebang_repeat1] = STATE(733), - [aux_sym__match_pattern_list_repeat1] = STATE(1101), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2802), - [anon_sym_false] = ACTIONS(2802), - [anon_sym_null] = ACTIONS(2804), - [aux_sym_cmd_identifier_token38] = ACTIONS(2806), - [aux_sym_cmd_identifier_token39] = ACTIONS(2806), - [aux_sym_cmd_identifier_token40] = ACTIONS(2806), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(2816), - [aux_sym_ctrl_match_token1] = ACTIONS(2818), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2822), - [anon_sym_DOT_DOT_LT] = ACTIONS(2822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2824), - [aux_sym__val_number_decimal_token2] = ACTIONS(2826), - [aux_sym__val_number_decimal_token3] = ACTIONS(2828), - [aux_sym__val_number_decimal_token4] = ACTIONS(2830), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym__str_single_quotes] = ACTIONS(2842), - [sym__str_back_ticks] = ACTIONS(2842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_alias] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_let_DASHenv] = ACTIONS(2420), + [anon_sym_mut] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [aux_sym_cmd_identifier_token1] = ACTIONS(2420), + [aux_sym_cmd_identifier_token2] = ACTIONS(2420), + [aux_sym_cmd_identifier_token3] = ACTIONS(2420), + [aux_sym_cmd_identifier_token4] = ACTIONS(2420), + [aux_sym_cmd_identifier_token5] = ACTIONS(2420), + [aux_sym_cmd_identifier_token6] = ACTIONS(2420), + [aux_sym_cmd_identifier_token7] = ACTIONS(2420), + [aux_sym_cmd_identifier_token8] = ACTIONS(2420), + [aux_sym_cmd_identifier_token9] = ACTIONS(2420), + [aux_sym_cmd_identifier_token10] = ACTIONS(2420), + [aux_sym_cmd_identifier_token11] = ACTIONS(2420), + [aux_sym_cmd_identifier_token12] = ACTIONS(2420), + [aux_sym_cmd_identifier_token13] = ACTIONS(2420), + [aux_sym_cmd_identifier_token14] = ACTIONS(2420), + [aux_sym_cmd_identifier_token15] = ACTIONS(2420), + [aux_sym_cmd_identifier_token16] = ACTIONS(2420), + [aux_sym_cmd_identifier_token17] = ACTIONS(2420), + [aux_sym_cmd_identifier_token18] = ACTIONS(2420), + [aux_sym_cmd_identifier_token19] = ACTIONS(2420), + [aux_sym_cmd_identifier_token20] = ACTIONS(2420), + [aux_sym_cmd_identifier_token21] = ACTIONS(2420), + [aux_sym_cmd_identifier_token22] = ACTIONS(2420), + [aux_sym_cmd_identifier_token23] = ACTIONS(2420), + [aux_sym_cmd_identifier_token24] = ACTIONS(2420), + [aux_sym_cmd_identifier_token25] = ACTIONS(2420), + [aux_sym_cmd_identifier_token26] = ACTIONS(2420), + [aux_sym_cmd_identifier_token27] = ACTIONS(2420), + [aux_sym_cmd_identifier_token28] = ACTIONS(2420), + [aux_sym_cmd_identifier_token29] = ACTIONS(2420), + [aux_sym_cmd_identifier_token30] = ACTIONS(2420), + [aux_sym_cmd_identifier_token31] = ACTIONS(2420), + [aux_sym_cmd_identifier_token32] = ACTIONS(2420), + [aux_sym_cmd_identifier_token33] = ACTIONS(2420), + [aux_sym_cmd_identifier_token34] = ACTIONS(2420), + [aux_sym_cmd_identifier_token35] = ACTIONS(2420), + [aux_sym_cmd_identifier_token36] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2422), + [aux_sym_cmd_identifier_token38] = ACTIONS(2420), + [aux_sym_cmd_identifier_token39] = ACTIONS(2422), + [aux_sym_cmd_identifier_token40] = ACTIONS(2422), + [anon_sym_def] = ACTIONS(2420), + [anon_sym_export_DASHenv] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_error] = ACTIONS(2420), + [anon_sym_list] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_make] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_source] = ACTIONS(2420), + [anon_sym_source_DASHenv] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_hide] = ACTIONS(2420), + [anon_sym_hide_DASHenv] = ACTIONS(2420), + [anon_sym_overlay] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2420), + [aux_sym__val_number_decimal_token2] = ACTIONS(2422), + [aux_sym__val_number_decimal_token3] = ACTIONS(2422), + [aux_sym__val_number_decimal_token4] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2422), + [aux_sym__val_number_token2] = ACTIONS(2422), + [aux_sym__val_number_token3] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym__str_single_quotes] = ACTIONS(2422), + [sym__str_back_ticks] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2420), [anon_sym_POUND] = ACTIONS(247), }, - [680] = { - [sym_expr_parenthesized] = STATE(1403), - [sym_val_range] = STATE(1784), - [sym__val_range] = STATE(7679), - [sym__val_range_with_end] = STATE(7434), - [sym__value] = STATE(1784), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1486), - [sym_val_variable] = STATE(1406), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1140), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym__flag] = STATE(1784), - [sym_short_flag] = STATE(1786), - [sym_long_flag] = STATE(1786), - [sym_unquoted] = STATE(1480), - [sym__unquoted_with_expr] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(6696), - [sym_comment] = STATE(680), - [aux_sym_ctrl_do_repeat2] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2588), - [anon_sym_true] = ACTIONS(2858), - [anon_sym_false] = ACTIONS(2858), - [anon_sym_null] = ACTIONS(2861), - [aux_sym_cmd_identifier_token38] = ACTIONS(2864), - [aux_sym_cmd_identifier_token39] = ACTIONS(2864), - [aux_sym_cmd_identifier_token40] = ACTIONS(2864), - [sym__newline] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_err_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_GT_PIPE] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2879), - [aux_sym_ctrl_match_token1] = ACTIONS(2882), - [anon_sym_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2891), - [aux_sym__val_number_decimal_token2] = ACTIONS(2894), - [aux_sym__val_number_decimal_token3] = ACTIONS(2897), - [aux_sym__val_number_decimal_token4] = ACTIONS(2900), - [aux_sym__val_number_token1] = ACTIONS(2903), - [aux_sym__val_number_token2] = ACTIONS(2903), - [aux_sym__val_number_token3] = ACTIONS(2903), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2909), - [anon_sym_0x] = ACTIONS(2909), - [sym_val_date] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym__str_single_quotes] = ACTIONS(2918), - [sym__str_back_ticks] = ACTIONS(2918), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_err_GT] = ACTIONS(2650), - [anon_sym_out_GT] = ACTIONS(2650), - [anon_sym_e_GT] = ACTIONS(2650), - [anon_sym_o_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT] = ACTIONS(2650), - [anon_sym_err_GT_GT] = ACTIONS(2653), - [anon_sym_out_GT_GT] = ACTIONS(2653), - [anon_sym_e_GT_GT] = ACTIONS(2653), - [anon_sym_o_GT_GT] = ACTIONS(2653), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2653), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2653), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2653), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2653), - [aux_sym_unquoted_token1] = ACTIONS(2927), + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(1888), + [anon_sym_alias] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_let_DASHenv] = ACTIONS(1888), + [anon_sym_mut] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [aux_sym_cmd_identifier_token1] = ACTIONS(1888), + [aux_sym_cmd_identifier_token2] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [aux_sym_cmd_identifier_token6] = ACTIONS(1888), + [aux_sym_cmd_identifier_token7] = ACTIONS(1888), + [aux_sym_cmd_identifier_token8] = ACTIONS(1888), + [aux_sym_cmd_identifier_token9] = ACTIONS(1888), + [aux_sym_cmd_identifier_token10] = ACTIONS(1888), + [aux_sym_cmd_identifier_token11] = ACTIONS(1888), + [aux_sym_cmd_identifier_token12] = ACTIONS(1888), + [aux_sym_cmd_identifier_token13] = ACTIONS(1888), + [aux_sym_cmd_identifier_token14] = ACTIONS(1888), + [aux_sym_cmd_identifier_token15] = ACTIONS(1888), + [aux_sym_cmd_identifier_token16] = ACTIONS(1888), + [aux_sym_cmd_identifier_token17] = ACTIONS(1888), + [aux_sym_cmd_identifier_token18] = ACTIONS(1888), + [aux_sym_cmd_identifier_token19] = ACTIONS(1888), + [aux_sym_cmd_identifier_token20] = ACTIONS(1888), + [aux_sym_cmd_identifier_token21] = ACTIONS(1888), + [aux_sym_cmd_identifier_token22] = ACTIONS(1888), + [aux_sym_cmd_identifier_token23] = ACTIONS(1888), + [aux_sym_cmd_identifier_token24] = ACTIONS(1888), + [aux_sym_cmd_identifier_token25] = ACTIONS(1888), + [aux_sym_cmd_identifier_token26] = ACTIONS(1888), + [aux_sym_cmd_identifier_token27] = ACTIONS(1888), + [aux_sym_cmd_identifier_token28] = ACTIONS(1888), + [aux_sym_cmd_identifier_token29] = ACTIONS(1888), + [aux_sym_cmd_identifier_token30] = ACTIONS(1888), + [aux_sym_cmd_identifier_token31] = ACTIONS(1888), + [aux_sym_cmd_identifier_token32] = ACTIONS(1888), + [aux_sym_cmd_identifier_token33] = ACTIONS(1888), + [aux_sym_cmd_identifier_token34] = ACTIONS(1888), + [aux_sym_cmd_identifier_token35] = ACTIONS(1888), + [aux_sym_cmd_identifier_token36] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1888), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1888), + [anon_sym_export_DASHenv] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_module] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1888), + [anon_sym_list] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_make] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1888), + [anon_sym_catch] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_source] = ACTIONS(1888), + [anon_sym_source_DASHenv] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_hide] = ACTIONS(1888), + [anon_sym_hide_DASHenv] = ACTIONS(1888), + [anon_sym_overlay] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1888), + [anon_sym_as] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1888), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1888), [anon_sym_POUND] = ACTIONS(247), }, - [681] = { - [aux_sym__pipe_separator] = STATE(682), - [sym_comment] = STATE(681), - [aux_sym_shebang_repeat1] = STATE(5112), - [aux_sym_cmd_identifier_token1] = ACTIONS(2930), - [aux_sym_cmd_identifier_token2] = ACTIONS(2932), - [aux_sym_cmd_identifier_token3] = ACTIONS(2932), - [aux_sym_cmd_identifier_token4] = ACTIONS(2932), - [aux_sym_cmd_identifier_token5] = ACTIONS(2932), - [aux_sym_cmd_identifier_token6] = ACTIONS(2932), - [aux_sym_cmd_identifier_token7] = ACTIONS(2932), - [aux_sym_cmd_identifier_token8] = ACTIONS(2932), - [aux_sym_cmd_identifier_token9] = ACTIONS(2930), - [aux_sym_cmd_identifier_token10] = ACTIONS(2932), - [aux_sym_cmd_identifier_token11] = ACTIONS(2932), - [aux_sym_cmd_identifier_token12] = ACTIONS(2932), - [aux_sym_cmd_identifier_token13] = ACTIONS(2930), - [aux_sym_cmd_identifier_token14] = ACTIONS(2932), - [aux_sym_cmd_identifier_token15] = ACTIONS(2930), - [aux_sym_cmd_identifier_token16] = ACTIONS(2932), - [aux_sym_cmd_identifier_token17] = ACTIONS(2932), - [aux_sym_cmd_identifier_token18] = ACTIONS(2932), - [aux_sym_cmd_identifier_token19] = ACTIONS(2932), - [aux_sym_cmd_identifier_token20] = ACTIONS(2932), - [aux_sym_cmd_identifier_token21] = ACTIONS(2932), - [aux_sym_cmd_identifier_token22] = ACTIONS(2930), - [aux_sym_cmd_identifier_token23] = ACTIONS(2930), - [aux_sym_cmd_identifier_token24] = ACTIONS(2932), - [aux_sym_cmd_identifier_token25] = ACTIONS(2930), - [aux_sym_cmd_identifier_token26] = ACTIONS(2932), - [aux_sym_cmd_identifier_token27] = ACTIONS(2930), - [aux_sym_cmd_identifier_token28] = ACTIONS(2930), - [aux_sym_cmd_identifier_token29] = ACTIONS(2930), - [aux_sym_cmd_identifier_token30] = ACTIONS(2930), - [aux_sym_cmd_identifier_token31] = ACTIONS(2932), - [aux_sym_cmd_identifier_token32] = ACTIONS(2932), - [aux_sym_cmd_identifier_token33] = ACTIONS(2932), - [aux_sym_cmd_identifier_token34] = ACTIONS(2932), - [aux_sym_cmd_identifier_token35] = ACTIONS(2932), - [aux_sym_cmd_identifier_token36] = ACTIONS(2930), - [anon_sym_true] = ACTIONS(2932), - [anon_sym_false] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2932), - [aux_sym_cmd_identifier_token38] = ACTIONS(2930), - [aux_sym_cmd_identifier_token39] = ACTIONS(2932), - [aux_sym_cmd_identifier_token40] = ACTIONS(2932), - [sym__newline] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_err_GT_PIPE] = ACTIONS(2936), - [anon_sym_out_GT_PIPE] = ACTIONS(2936), - [anon_sym_e_GT_PIPE] = ACTIONS(2936), - [anon_sym_o_GT_PIPE] = ACTIONS(2936), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2936), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2936), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2936), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2936), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_DOLLAR] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [aux_sym_ctrl_match_token1] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [aux_sym__val_number_decimal_token1] = ACTIONS(2930), - [aux_sym__val_number_decimal_token2] = ACTIONS(2932), - [aux_sym__val_number_decimal_token3] = ACTIONS(2932), - [aux_sym__val_number_decimal_token4] = ACTIONS(2932), - [aux_sym__val_number_token1] = ACTIONS(2932), - [aux_sym__val_number_token2] = ACTIONS(2932), - [aux_sym__val_number_token3] = ACTIONS(2932), - [anon_sym_0b] = ACTIONS(2930), - [anon_sym_0o] = ACTIONS(2930), - [anon_sym_0x] = ACTIONS(2930), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [sym__str_single_quotes] = ACTIONS(2932), - [sym__str_back_ticks] = ACTIONS(2932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2932), - [aux_sym_env_var_token1] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2932), + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_alias] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_let_DASHenv] = ACTIONS(2434), + [anon_sym_mut] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [aux_sym_cmd_identifier_token1] = ACTIONS(2434), + [aux_sym_cmd_identifier_token2] = ACTIONS(2434), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [aux_sym_cmd_identifier_token6] = ACTIONS(2434), + [aux_sym_cmd_identifier_token7] = ACTIONS(2434), + [aux_sym_cmd_identifier_token8] = ACTIONS(2434), + [aux_sym_cmd_identifier_token9] = ACTIONS(2434), + [aux_sym_cmd_identifier_token10] = ACTIONS(2434), + [aux_sym_cmd_identifier_token11] = ACTIONS(2434), + [aux_sym_cmd_identifier_token12] = ACTIONS(2434), + [aux_sym_cmd_identifier_token13] = ACTIONS(2434), + [aux_sym_cmd_identifier_token14] = ACTIONS(2434), + [aux_sym_cmd_identifier_token15] = ACTIONS(2434), + [aux_sym_cmd_identifier_token16] = ACTIONS(2434), + [aux_sym_cmd_identifier_token17] = ACTIONS(2434), + [aux_sym_cmd_identifier_token18] = ACTIONS(2434), + [aux_sym_cmd_identifier_token19] = ACTIONS(2434), + [aux_sym_cmd_identifier_token20] = ACTIONS(2434), + [aux_sym_cmd_identifier_token21] = ACTIONS(2434), + [aux_sym_cmd_identifier_token22] = ACTIONS(2434), + [aux_sym_cmd_identifier_token23] = ACTIONS(2434), + [aux_sym_cmd_identifier_token24] = ACTIONS(2434), + [aux_sym_cmd_identifier_token25] = ACTIONS(2434), + [aux_sym_cmd_identifier_token26] = ACTIONS(2434), + [aux_sym_cmd_identifier_token27] = ACTIONS(2434), + [aux_sym_cmd_identifier_token28] = ACTIONS(2434), + [aux_sym_cmd_identifier_token29] = ACTIONS(2434), + [aux_sym_cmd_identifier_token30] = ACTIONS(2434), + [aux_sym_cmd_identifier_token31] = ACTIONS(2434), + [aux_sym_cmd_identifier_token32] = ACTIONS(2434), + [aux_sym_cmd_identifier_token33] = ACTIONS(2434), + [aux_sym_cmd_identifier_token34] = ACTIONS(2434), + [aux_sym_cmd_identifier_token35] = ACTIONS(2434), + [aux_sym_cmd_identifier_token36] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_null] = ACTIONS(2436), + [aux_sym_cmd_identifier_token38] = ACTIONS(2434), + [aux_sym_cmd_identifier_token39] = ACTIONS(2436), + [aux_sym_cmd_identifier_token40] = ACTIONS(2436), + [anon_sym_def] = ACTIONS(2434), + [anon_sym_export_DASHenv] = ACTIONS(2434), + [anon_sym_extern] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_use] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2436), + [anon_sym_DOLLAR] = ACTIONS(2436), + [anon_sym_error] = ACTIONS(2434), + [anon_sym_list] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_loop] = ACTIONS(2434), + [anon_sym_make] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_match] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_catch] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_source] = ACTIONS(2434), + [anon_sym_source_DASHenv] = ACTIONS(2434), + [anon_sym_register] = ACTIONS(2434), + [anon_sym_hide] = ACTIONS(2434), + [anon_sym_hide_DASHenv] = ACTIONS(2434), + [anon_sym_overlay] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2436), + [aux_sym__val_number_decimal_token4] = ACTIONS(2436), + [aux_sym__val_number_token1] = ACTIONS(2436), + [aux_sym__val_number_token2] = ACTIONS(2436), + [aux_sym__val_number_token3] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2436), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2434), [anon_sym_POUND] = ACTIONS(247), }, - [682] = { - [aux_sym__pipe_separator] = STATE(682), - [sym_comment] = STATE(682), - [aux_sym_shebang_repeat1] = STATE(5112), - [aux_sym_cmd_identifier_token1] = ACTIONS(2938), - [aux_sym_cmd_identifier_token2] = ACTIONS(2940), - [aux_sym_cmd_identifier_token3] = ACTIONS(2940), - [aux_sym_cmd_identifier_token4] = ACTIONS(2940), - [aux_sym_cmd_identifier_token5] = ACTIONS(2940), - [aux_sym_cmd_identifier_token6] = ACTIONS(2940), - [aux_sym_cmd_identifier_token7] = ACTIONS(2940), - [aux_sym_cmd_identifier_token8] = ACTIONS(2940), - [aux_sym_cmd_identifier_token9] = ACTIONS(2938), - [aux_sym_cmd_identifier_token10] = ACTIONS(2940), - [aux_sym_cmd_identifier_token11] = ACTIONS(2940), - [aux_sym_cmd_identifier_token12] = ACTIONS(2940), - [aux_sym_cmd_identifier_token13] = ACTIONS(2938), - [aux_sym_cmd_identifier_token14] = ACTIONS(2940), - [aux_sym_cmd_identifier_token15] = ACTIONS(2938), - [aux_sym_cmd_identifier_token16] = ACTIONS(2940), - [aux_sym_cmd_identifier_token17] = ACTIONS(2940), - [aux_sym_cmd_identifier_token18] = ACTIONS(2940), - [aux_sym_cmd_identifier_token19] = ACTIONS(2940), - [aux_sym_cmd_identifier_token20] = ACTIONS(2940), - [aux_sym_cmd_identifier_token21] = ACTIONS(2940), - [aux_sym_cmd_identifier_token22] = ACTIONS(2938), - [aux_sym_cmd_identifier_token23] = ACTIONS(2938), - [aux_sym_cmd_identifier_token24] = ACTIONS(2940), - [aux_sym_cmd_identifier_token25] = ACTIONS(2938), - [aux_sym_cmd_identifier_token26] = ACTIONS(2940), - [aux_sym_cmd_identifier_token27] = ACTIONS(2938), - [aux_sym_cmd_identifier_token28] = ACTIONS(2938), - [aux_sym_cmd_identifier_token29] = ACTIONS(2938), - [aux_sym_cmd_identifier_token30] = ACTIONS(2938), - [aux_sym_cmd_identifier_token31] = ACTIONS(2940), - [aux_sym_cmd_identifier_token32] = ACTIONS(2940), - [aux_sym_cmd_identifier_token33] = ACTIONS(2940), - [aux_sym_cmd_identifier_token34] = ACTIONS(2940), - [aux_sym_cmd_identifier_token35] = ACTIONS(2940), - [aux_sym_cmd_identifier_token36] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2940), - [anon_sym_false] = ACTIONS(2940), - [anon_sym_null] = ACTIONS(2940), - [aux_sym_cmd_identifier_token38] = ACTIONS(2938), - [aux_sym_cmd_identifier_token39] = ACTIONS(2940), - [aux_sym_cmd_identifier_token40] = ACTIONS(2940), - [sym__newline] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_err_GT_PIPE] = ACTIONS(2945), - [anon_sym_out_GT_PIPE] = ACTIONS(2945), - [anon_sym_e_GT_PIPE] = ACTIONS(2945), - [anon_sym_o_GT_PIPE] = ACTIONS(2945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_match] = ACTIONS(2938), - [aux_sym_ctrl_match_token1] = ACTIONS(2940), - [anon_sym_DOT_DOT] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_where] = ACTIONS(2940), - [aux_sym_expr_unary_token1] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2940), - [anon_sym_DOT_DOT_LT] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2938), - [aux_sym__val_number_decimal_token2] = ACTIONS(2940), - [aux_sym__val_number_decimal_token3] = ACTIONS(2940), - [aux_sym__val_number_decimal_token4] = ACTIONS(2940), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [anon_sym_0b] = ACTIONS(2938), - [anon_sym_0o] = ACTIONS(2938), - [anon_sym_0x] = ACTIONS(2938), - [sym_val_date] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [sym__str_single_quotes] = ACTIONS(2940), - [sym__str_back_ticks] = ACTIONS(2940), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2940), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2940), - [aux_sym_env_var_token1] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_alias] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_let_DASHenv] = ACTIONS(2438), + [anon_sym_mut] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [aux_sym_cmd_identifier_token1] = ACTIONS(2438), + [aux_sym_cmd_identifier_token2] = ACTIONS(2438), + [aux_sym_cmd_identifier_token3] = ACTIONS(2438), + [aux_sym_cmd_identifier_token4] = ACTIONS(2438), + [aux_sym_cmd_identifier_token5] = ACTIONS(2438), + [aux_sym_cmd_identifier_token6] = ACTIONS(2438), + [aux_sym_cmd_identifier_token7] = ACTIONS(2438), + [aux_sym_cmd_identifier_token8] = ACTIONS(2438), + [aux_sym_cmd_identifier_token9] = ACTIONS(2438), + [aux_sym_cmd_identifier_token10] = ACTIONS(2438), + [aux_sym_cmd_identifier_token11] = ACTIONS(2438), + [aux_sym_cmd_identifier_token12] = ACTIONS(2438), + [aux_sym_cmd_identifier_token13] = ACTIONS(2438), + [aux_sym_cmd_identifier_token14] = ACTIONS(2438), + [aux_sym_cmd_identifier_token15] = ACTIONS(2438), + [aux_sym_cmd_identifier_token16] = ACTIONS(2438), + [aux_sym_cmd_identifier_token17] = ACTIONS(2438), + [aux_sym_cmd_identifier_token18] = ACTIONS(2438), + [aux_sym_cmd_identifier_token19] = ACTIONS(2438), + [aux_sym_cmd_identifier_token20] = ACTIONS(2438), + [aux_sym_cmd_identifier_token21] = ACTIONS(2438), + [aux_sym_cmd_identifier_token22] = ACTIONS(2438), + [aux_sym_cmd_identifier_token23] = ACTIONS(2438), + [aux_sym_cmd_identifier_token24] = ACTIONS(2438), + [aux_sym_cmd_identifier_token25] = ACTIONS(2438), + [aux_sym_cmd_identifier_token26] = ACTIONS(2438), + [aux_sym_cmd_identifier_token27] = ACTIONS(2438), + [aux_sym_cmd_identifier_token28] = ACTIONS(2438), + [aux_sym_cmd_identifier_token29] = ACTIONS(2438), + [aux_sym_cmd_identifier_token30] = ACTIONS(2438), + [aux_sym_cmd_identifier_token31] = ACTIONS(2438), + [aux_sym_cmd_identifier_token32] = ACTIONS(2438), + [aux_sym_cmd_identifier_token33] = ACTIONS(2438), + [aux_sym_cmd_identifier_token34] = ACTIONS(2438), + [aux_sym_cmd_identifier_token35] = ACTIONS(2438), + [aux_sym_cmd_identifier_token36] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_null] = ACTIONS(2440), + [aux_sym_cmd_identifier_token38] = ACTIONS(2438), + [aux_sym_cmd_identifier_token39] = ACTIONS(2440), + [aux_sym_cmd_identifier_token40] = ACTIONS(2440), + [anon_sym_def] = ACTIONS(2438), + [anon_sym_export_DASHenv] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_error] = ACTIONS(2438), + [anon_sym_list] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_make] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_catch] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_source] = ACTIONS(2438), + [anon_sym_source_DASHenv] = ACTIONS(2438), + [anon_sym_register] = ACTIONS(2438), + [anon_sym_hide] = ACTIONS(2438), + [anon_sym_hide_DASHenv] = ACTIONS(2438), + [anon_sym_overlay] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2440), + [aux_sym__val_number_decimal_token1] = ACTIONS(2438), + [aux_sym__val_number_decimal_token2] = ACTIONS(2440), + [aux_sym__val_number_decimal_token3] = ACTIONS(2440), + [aux_sym__val_number_decimal_token4] = ACTIONS(2440), + [aux_sym__val_number_token1] = ACTIONS(2440), + [aux_sym__val_number_token2] = ACTIONS(2440), + [aux_sym__val_number_token3] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [sym__str_single_quotes] = ACTIONS(2440), + [sym__str_back_ticks] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2438), [anon_sym_POUND] = ACTIONS(247), }, - [683] = { - [aux_sym__pipe_separator] = STATE(682), - [sym_comment] = STATE(683), - [aux_sym_shebang_repeat1] = STATE(685), - [aux_sym_cmd_identifier_token1] = ACTIONS(2948), - [aux_sym_cmd_identifier_token2] = ACTIONS(2950), - [aux_sym_cmd_identifier_token3] = ACTIONS(2950), - [aux_sym_cmd_identifier_token4] = ACTIONS(2950), - [aux_sym_cmd_identifier_token5] = ACTIONS(2950), - [aux_sym_cmd_identifier_token6] = ACTIONS(2950), - [aux_sym_cmd_identifier_token7] = ACTIONS(2950), - [aux_sym_cmd_identifier_token8] = ACTIONS(2950), - [aux_sym_cmd_identifier_token9] = ACTIONS(2948), - [aux_sym_cmd_identifier_token10] = ACTIONS(2950), - [aux_sym_cmd_identifier_token11] = ACTIONS(2950), - [aux_sym_cmd_identifier_token12] = ACTIONS(2950), - [aux_sym_cmd_identifier_token13] = ACTIONS(2948), - [aux_sym_cmd_identifier_token14] = ACTIONS(2950), - [aux_sym_cmd_identifier_token15] = ACTIONS(2948), - [aux_sym_cmd_identifier_token16] = ACTIONS(2950), - [aux_sym_cmd_identifier_token17] = ACTIONS(2950), - [aux_sym_cmd_identifier_token18] = ACTIONS(2950), - [aux_sym_cmd_identifier_token19] = ACTIONS(2950), - [aux_sym_cmd_identifier_token20] = ACTIONS(2950), - [aux_sym_cmd_identifier_token21] = ACTIONS(2950), - [aux_sym_cmd_identifier_token22] = ACTIONS(2948), - [aux_sym_cmd_identifier_token23] = ACTIONS(2948), - [aux_sym_cmd_identifier_token24] = ACTIONS(2950), - [aux_sym_cmd_identifier_token25] = ACTIONS(2948), - [aux_sym_cmd_identifier_token26] = ACTIONS(2950), - [aux_sym_cmd_identifier_token27] = ACTIONS(2948), - [aux_sym_cmd_identifier_token28] = ACTIONS(2948), - [aux_sym_cmd_identifier_token29] = ACTIONS(2948), - [aux_sym_cmd_identifier_token30] = ACTIONS(2948), - [aux_sym_cmd_identifier_token31] = ACTIONS(2950), - [aux_sym_cmd_identifier_token32] = ACTIONS(2950), - [aux_sym_cmd_identifier_token33] = ACTIONS(2950), - [aux_sym_cmd_identifier_token34] = ACTIONS(2950), - [aux_sym_cmd_identifier_token35] = ACTIONS(2950), - [aux_sym_cmd_identifier_token36] = ACTIONS(2948), - [anon_sym_true] = ACTIONS(2950), - [anon_sym_false] = ACTIONS(2950), - [anon_sym_null] = ACTIONS(2950), - [aux_sym_cmd_identifier_token38] = ACTIONS(2948), - [aux_sym_cmd_identifier_token39] = ACTIONS(2950), - [aux_sym_cmd_identifier_token40] = ACTIONS(2950), - [sym__newline] = ACTIONS(2952), - [anon_sym_PIPE] = ACTIONS(2936), - [anon_sym_err_GT_PIPE] = ACTIONS(2936), - [anon_sym_out_GT_PIPE] = ACTIONS(2936), - [anon_sym_e_GT_PIPE] = ACTIONS(2936), - [anon_sym_o_GT_PIPE] = ACTIONS(2936), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2936), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2936), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2936), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2936), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_break] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2948), - [anon_sym_do] = ACTIONS(2948), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_match] = ACTIONS(2948), - [aux_sym_ctrl_match_token1] = ACTIONS(2950), - [anon_sym_DOT_DOT] = ACTIONS(2948), - [anon_sym_try] = ACTIONS(2948), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_where] = ACTIONS(2950), - [aux_sym_expr_unary_token1] = ACTIONS(2950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2950), - [anon_sym_DOT_DOT_LT] = ACTIONS(2950), - [aux_sym__val_number_decimal_token1] = ACTIONS(2948), - [aux_sym__val_number_decimal_token2] = ACTIONS(2950), - [aux_sym__val_number_decimal_token3] = ACTIONS(2950), - [aux_sym__val_number_decimal_token4] = ACTIONS(2950), - [aux_sym__val_number_token1] = ACTIONS(2950), - [aux_sym__val_number_token2] = ACTIONS(2950), - [aux_sym__val_number_token3] = ACTIONS(2950), - [anon_sym_0b] = ACTIONS(2948), - [anon_sym_0o] = ACTIONS(2948), - [anon_sym_0x] = ACTIONS(2948), - [sym_val_date] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2950), - [sym__str_back_ticks] = ACTIONS(2950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [aux_sym_env_var_token1] = ACTIONS(2948), - [anon_sym_CARET] = ACTIONS(2950), + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(1892), + [anon_sym_alias] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_let_DASHenv] = ACTIONS(1892), + [anon_sym_mut] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [aux_sym_cmd_identifier_token1] = ACTIONS(1892), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1892), + [aux_sym_cmd_identifier_token9] = ACTIONS(1892), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1892), + [aux_sym_cmd_identifier_token13] = ACTIONS(1892), + [aux_sym_cmd_identifier_token14] = ACTIONS(1892), + [aux_sym_cmd_identifier_token15] = ACTIONS(1892), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1892), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token38] = ACTIONS(1892), + [aux_sym_cmd_identifier_token39] = ACTIONS(1894), + [aux_sym_cmd_identifier_token40] = ACTIONS(1894), + [anon_sym_def] = ACTIONS(1892), + [anon_sym_export_DASHenv] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_module] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_error] = ACTIONS(1892), + [anon_sym_list] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_make] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1892), + [anon_sym_catch] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_source] = ACTIONS(1892), + [anon_sym_source_DASHenv] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_hide] = ACTIONS(1892), + [anon_sym_hide_DASHenv] = ACTIONS(1892), + [anon_sym_overlay] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1892), + [anon_sym_as] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), + [aux_sym__val_number_decimal_token1] = ACTIONS(1892), + [aux_sym__val_number_decimal_token2] = ACTIONS(1894), + [aux_sym__val_number_decimal_token3] = ACTIONS(1894), + [aux_sym__val_number_decimal_token4] = ACTIONS(1894), + [aux_sym__val_number_token1] = ACTIONS(1894), + [aux_sym__val_number_token2] = ACTIONS(1894), + [aux_sym__val_number_token3] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1894), + [sym__str_back_ticks] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(247), }, - [684] = { - [sym_comment] = STATE(684), - [aux_sym_shebang_repeat1] = STATE(684), - [aux_sym_cmd_identifier_token1] = ACTIONS(1898), + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(1900), + [anon_sym_alias] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_let_DASHenv] = ACTIONS(1900), + [anon_sym_mut] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [aux_sym_cmd_identifier_token1] = ACTIONS(1900), [aux_sym_cmd_identifier_token2] = ACTIONS(1900), [aux_sym_cmd_identifier_token3] = ACTIONS(1900), [aux_sym_cmd_identifier_token4] = ACTIONS(1900), @@ -148161,21896 +150587,23640 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token6] = ACTIONS(1900), [aux_sym_cmd_identifier_token7] = ACTIONS(1900), [aux_sym_cmd_identifier_token8] = ACTIONS(1900), - [aux_sym_cmd_identifier_token9] = ACTIONS(1898), + [aux_sym_cmd_identifier_token9] = ACTIONS(1900), [aux_sym_cmd_identifier_token10] = ACTIONS(1900), [aux_sym_cmd_identifier_token11] = ACTIONS(1900), [aux_sym_cmd_identifier_token12] = ACTIONS(1900), - [aux_sym_cmd_identifier_token13] = ACTIONS(1898), + [aux_sym_cmd_identifier_token13] = ACTIONS(1900), [aux_sym_cmd_identifier_token14] = ACTIONS(1900), - [aux_sym_cmd_identifier_token15] = ACTIONS(1898), + [aux_sym_cmd_identifier_token15] = ACTIONS(1900), [aux_sym_cmd_identifier_token16] = ACTIONS(1900), [aux_sym_cmd_identifier_token17] = ACTIONS(1900), [aux_sym_cmd_identifier_token18] = ACTIONS(1900), [aux_sym_cmd_identifier_token19] = ACTIONS(1900), [aux_sym_cmd_identifier_token20] = ACTIONS(1900), [aux_sym_cmd_identifier_token21] = ACTIONS(1900), - [aux_sym_cmd_identifier_token22] = ACTIONS(1898), - [aux_sym_cmd_identifier_token23] = ACTIONS(1898), + [aux_sym_cmd_identifier_token22] = ACTIONS(1900), + [aux_sym_cmd_identifier_token23] = ACTIONS(1900), [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1898), + [aux_sym_cmd_identifier_token25] = ACTIONS(1900), [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1898), - [aux_sym_cmd_identifier_token28] = ACTIONS(1898), - [aux_sym_cmd_identifier_token29] = ACTIONS(1898), - [aux_sym_cmd_identifier_token30] = ACTIONS(1898), + [aux_sym_cmd_identifier_token27] = ACTIONS(1900), + [aux_sym_cmd_identifier_token28] = ACTIONS(1900), + [aux_sym_cmd_identifier_token29] = ACTIONS(1900), + [aux_sym_cmd_identifier_token30] = ACTIONS(1900), [aux_sym_cmd_identifier_token31] = ACTIONS(1900), [aux_sym_cmd_identifier_token32] = ACTIONS(1900), [aux_sym_cmd_identifier_token33] = ACTIONS(1900), [aux_sym_cmd_identifier_token34] = ACTIONS(1900), [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), - [aux_sym_cmd_identifier_token38] = ACTIONS(1898), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [sym__newline] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_err_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_GT_PIPE] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_do] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [aux_sym_ctrl_match_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_try] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_where] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), - [anon_sym_DOT_DOT_LT] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1898), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_0b] = ACTIONS(1898), - [anon_sym_0o] = ACTIONS(1898), - [anon_sym_0x] = ACTIONS(1898), - [sym_val_date] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), - [aux_sym_env_var_token1] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(247), - }, - [685] = { - [sym_comment] = STATE(685), - [aux_sym_shebang_repeat1] = STATE(684), - [aux_sym_cmd_identifier_token1] = ACTIONS(2957), - [aux_sym_cmd_identifier_token2] = ACTIONS(2959), - [aux_sym_cmd_identifier_token3] = ACTIONS(2959), - [aux_sym_cmd_identifier_token4] = ACTIONS(2959), - [aux_sym_cmd_identifier_token5] = ACTIONS(2959), - [aux_sym_cmd_identifier_token6] = ACTIONS(2959), - [aux_sym_cmd_identifier_token7] = ACTIONS(2959), - [aux_sym_cmd_identifier_token8] = ACTIONS(2959), - [aux_sym_cmd_identifier_token9] = ACTIONS(2957), - [aux_sym_cmd_identifier_token10] = ACTIONS(2959), - [aux_sym_cmd_identifier_token11] = ACTIONS(2959), - [aux_sym_cmd_identifier_token12] = ACTIONS(2959), - [aux_sym_cmd_identifier_token13] = ACTIONS(2957), - [aux_sym_cmd_identifier_token14] = ACTIONS(2959), - [aux_sym_cmd_identifier_token15] = ACTIONS(2957), - [aux_sym_cmd_identifier_token16] = ACTIONS(2959), - [aux_sym_cmd_identifier_token17] = ACTIONS(2959), - [aux_sym_cmd_identifier_token18] = ACTIONS(2959), - [aux_sym_cmd_identifier_token19] = ACTIONS(2959), - [aux_sym_cmd_identifier_token20] = ACTIONS(2959), - [aux_sym_cmd_identifier_token21] = ACTIONS(2959), - [aux_sym_cmd_identifier_token22] = ACTIONS(2957), - [aux_sym_cmd_identifier_token23] = ACTIONS(2957), - [aux_sym_cmd_identifier_token24] = ACTIONS(2959), - [aux_sym_cmd_identifier_token25] = ACTIONS(2957), - [aux_sym_cmd_identifier_token26] = ACTIONS(2959), - [aux_sym_cmd_identifier_token27] = ACTIONS(2957), - [aux_sym_cmd_identifier_token28] = ACTIONS(2957), - [aux_sym_cmd_identifier_token29] = ACTIONS(2957), - [aux_sym_cmd_identifier_token30] = ACTIONS(2957), - [aux_sym_cmd_identifier_token31] = ACTIONS(2959), - [aux_sym_cmd_identifier_token32] = ACTIONS(2959), - [aux_sym_cmd_identifier_token33] = ACTIONS(2959), - [aux_sym_cmd_identifier_token34] = ACTIONS(2959), - [aux_sym_cmd_identifier_token35] = ACTIONS(2959), - [aux_sym_cmd_identifier_token36] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_null] = ACTIONS(2959), - [aux_sym_cmd_identifier_token38] = ACTIONS(2957), - [aux_sym_cmd_identifier_token39] = ACTIONS(2959), - [aux_sym_cmd_identifier_token40] = ACTIONS(2959), - [sym__newline] = ACTIONS(2952), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_err_GT_PIPE] = ACTIONS(2961), - [anon_sym_out_GT_PIPE] = ACTIONS(2961), - [anon_sym_e_GT_PIPE] = ACTIONS(2961), - [anon_sym_o_GT_PIPE] = ACTIONS(2961), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2961), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2961), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2961), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2957), - [aux_sym_ctrl_match_token1] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_where] = ACTIONS(2959), - [aux_sym_expr_unary_token1] = ACTIONS(2959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [aux_sym__val_number_decimal_token1] = ACTIONS(2957), - [aux_sym__val_number_decimal_token2] = ACTIONS(2959), - [aux_sym__val_number_decimal_token3] = ACTIONS(2959), - [aux_sym__val_number_decimal_token4] = ACTIONS(2959), - [aux_sym__val_number_token1] = ACTIONS(2959), - [aux_sym__val_number_token2] = ACTIONS(2959), - [aux_sym__val_number_token3] = ACTIONS(2959), - [anon_sym_0b] = ACTIONS(2957), - [anon_sym_0o] = ACTIONS(2957), - [anon_sym_0x] = ACTIONS(2957), - [sym_val_date] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym__str_single_quotes] = ACTIONS(2959), - [sym__str_back_ticks] = ACTIONS(2959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), - [aux_sym_env_var_token1] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(247), - }, - [686] = { - [sym_comment] = STATE(686), - [aux_sym_cmd_identifier_token1] = ACTIONS(2938), - [aux_sym_cmd_identifier_token2] = ACTIONS(2940), - [aux_sym_cmd_identifier_token3] = ACTIONS(2940), - [aux_sym_cmd_identifier_token4] = ACTIONS(2940), - [aux_sym_cmd_identifier_token5] = ACTIONS(2940), - [aux_sym_cmd_identifier_token6] = ACTIONS(2940), - [aux_sym_cmd_identifier_token7] = ACTIONS(2940), - [aux_sym_cmd_identifier_token8] = ACTIONS(2940), - [aux_sym_cmd_identifier_token9] = ACTIONS(2938), - [aux_sym_cmd_identifier_token10] = ACTIONS(2940), - [aux_sym_cmd_identifier_token11] = ACTIONS(2940), - [aux_sym_cmd_identifier_token12] = ACTIONS(2940), - [aux_sym_cmd_identifier_token13] = ACTIONS(2938), - [aux_sym_cmd_identifier_token14] = ACTIONS(2940), - [aux_sym_cmd_identifier_token15] = ACTIONS(2938), - [aux_sym_cmd_identifier_token16] = ACTIONS(2940), - [aux_sym_cmd_identifier_token17] = ACTIONS(2940), - [aux_sym_cmd_identifier_token18] = ACTIONS(2940), - [aux_sym_cmd_identifier_token19] = ACTIONS(2940), - [aux_sym_cmd_identifier_token20] = ACTIONS(2940), - [aux_sym_cmd_identifier_token21] = ACTIONS(2940), - [aux_sym_cmd_identifier_token22] = ACTIONS(2938), - [aux_sym_cmd_identifier_token23] = ACTIONS(2938), - [aux_sym_cmd_identifier_token24] = ACTIONS(2940), - [aux_sym_cmd_identifier_token25] = ACTIONS(2938), - [aux_sym_cmd_identifier_token26] = ACTIONS(2940), - [aux_sym_cmd_identifier_token27] = ACTIONS(2938), - [aux_sym_cmd_identifier_token28] = ACTIONS(2938), - [aux_sym_cmd_identifier_token29] = ACTIONS(2938), - [aux_sym_cmd_identifier_token30] = ACTIONS(2938), - [aux_sym_cmd_identifier_token31] = ACTIONS(2940), - [aux_sym_cmd_identifier_token32] = ACTIONS(2940), - [aux_sym_cmd_identifier_token33] = ACTIONS(2940), - [aux_sym_cmd_identifier_token34] = ACTIONS(2940), - [aux_sym_cmd_identifier_token35] = ACTIONS(2940), - [aux_sym_cmd_identifier_token36] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2940), - [anon_sym_false] = ACTIONS(2940), - [anon_sym_null] = ACTIONS(2940), - [aux_sym_cmd_identifier_token38] = ACTIONS(2938), - [aux_sym_cmd_identifier_token39] = ACTIONS(2940), - [aux_sym_cmd_identifier_token40] = ACTIONS(2940), - [sym__newline] = ACTIONS(2940), - [anon_sym_PIPE] = ACTIONS(2940), - [anon_sym_err_GT_PIPE] = ACTIONS(2940), - [anon_sym_out_GT_PIPE] = ACTIONS(2940), - [anon_sym_e_GT_PIPE] = ACTIONS(2940), - [anon_sym_o_GT_PIPE] = ACTIONS(2940), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2940), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2940), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2940), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2940), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_DOLLAR] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_match] = ACTIONS(2938), - [aux_sym_ctrl_match_token1] = ACTIONS(2940), - [anon_sym_DOT_DOT] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_where] = ACTIONS(2940), - [aux_sym_expr_unary_token1] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2940), - [anon_sym_DOT_DOT_LT] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2938), - [aux_sym__val_number_decimal_token2] = ACTIONS(2940), - [aux_sym__val_number_decimal_token3] = ACTIONS(2940), - [aux_sym__val_number_decimal_token4] = ACTIONS(2940), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [anon_sym_0b] = ACTIONS(2938), - [anon_sym_0o] = ACTIONS(2938), - [anon_sym_0x] = ACTIONS(2938), - [sym_val_date] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [sym__str_single_quotes] = ACTIONS(2940), - [sym__str_back_ticks] = ACTIONS(2940), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2940), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2940), - [aux_sym_env_var_token1] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_POUND] = ACTIONS(247), - }, - [687] = { - [sym_comment] = STATE(687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1345), - [aux_sym_cmd_identifier_token2] = ACTIONS(1349), - [aux_sym_cmd_identifier_token3] = ACTIONS(1349), - [aux_sym_cmd_identifier_token4] = ACTIONS(1349), - [aux_sym_cmd_identifier_token5] = ACTIONS(1349), - [aux_sym_cmd_identifier_token6] = ACTIONS(1349), - [aux_sym_cmd_identifier_token7] = ACTIONS(1349), - [aux_sym_cmd_identifier_token8] = ACTIONS(1349), - [aux_sym_cmd_identifier_token9] = ACTIONS(1345), - [aux_sym_cmd_identifier_token10] = ACTIONS(1349), - [aux_sym_cmd_identifier_token11] = ACTIONS(1349), - [aux_sym_cmd_identifier_token12] = ACTIONS(1349), - [aux_sym_cmd_identifier_token13] = ACTIONS(1345), - [aux_sym_cmd_identifier_token14] = ACTIONS(1349), - [aux_sym_cmd_identifier_token15] = ACTIONS(1345), - [aux_sym_cmd_identifier_token16] = ACTIONS(1349), - [aux_sym_cmd_identifier_token17] = ACTIONS(1349), - [aux_sym_cmd_identifier_token18] = ACTIONS(1349), - [aux_sym_cmd_identifier_token19] = ACTIONS(1349), - [aux_sym_cmd_identifier_token20] = ACTIONS(1349), - [aux_sym_cmd_identifier_token21] = ACTIONS(1349), - [aux_sym_cmd_identifier_token22] = ACTIONS(1345), - [aux_sym_cmd_identifier_token23] = ACTIONS(1345), - [aux_sym_cmd_identifier_token24] = ACTIONS(1349), - [aux_sym_cmd_identifier_token25] = ACTIONS(1345), - [aux_sym_cmd_identifier_token26] = ACTIONS(1349), - [aux_sym_cmd_identifier_token27] = ACTIONS(1345), - [aux_sym_cmd_identifier_token28] = ACTIONS(1345), - [aux_sym_cmd_identifier_token29] = ACTIONS(1345), - [aux_sym_cmd_identifier_token30] = ACTIONS(1345), - [aux_sym_cmd_identifier_token31] = ACTIONS(1349), - [aux_sym_cmd_identifier_token32] = ACTIONS(1349), - [aux_sym_cmd_identifier_token33] = ACTIONS(1349), - [aux_sym_cmd_identifier_token34] = ACTIONS(1349), - [aux_sym_cmd_identifier_token35] = ACTIONS(1349), - [aux_sym_cmd_identifier_token36] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [anon_sym_null] = ACTIONS(1349), - [aux_sym_cmd_identifier_token38] = ACTIONS(1345), - [aux_sym_cmd_identifier_token39] = ACTIONS(1349), - [aux_sym_cmd_identifier_token40] = ACTIONS(1349), - [sym__newline] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_err_GT_PIPE] = ACTIONS(1349), - [anon_sym_out_GT_PIPE] = ACTIONS(1349), - [anon_sym_e_GT_PIPE] = ACTIONS(1349), - [anon_sym_o_GT_PIPE] = ACTIONS(1349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_DOLLAR] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [aux_sym_ctrl_match_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_try] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_where] = ACTIONS(1349), - [aux_sym_expr_unary_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), - [anon_sym_DOT_DOT_LT] = ACTIONS(1349), - [aux_sym__val_number_decimal_token1] = ACTIONS(1345), - [aux_sym__val_number_decimal_token2] = ACTIONS(1349), - [aux_sym__val_number_decimal_token3] = ACTIONS(1349), - [aux_sym__val_number_decimal_token4] = ACTIONS(1349), - [aux_sym__val_number_token1] = ACTIONS(1349), - [aux_sym__val_number_token2] = ACTIONS(1349), - [aux_sym__val_number_token3] = ACTIONS(1349), - [anon_sym_0b] = ACTIONS(1345), - [anon_sym_0o] = ACTIONS(1345), - [anon_sym_0x] = ACTIONS(1345), - [sym_val_date] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym__str_single_quotes] = ACTIONS(1349), - [sym__str_back_ticks] = ACTIONS(1349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), - [aux_sym_env_var_token1] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(247), - }, - [688] = { - [sym_comment] = STATE(688), - [aux_sym_cmd_identifier_token1] = ACTIONS(2963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2965), - [aux_sym_cmd_identifier_token3] = ACTIONS(2965), - [aux_sym_cmd_identifier_token4] = ACTIONS(2965), - [aux_sym_cmd_identifier_token5] = ACTIONS(2965), - [aux_sym_cmd_identifier_token6] = ACTIONS(2965), - [aux_sym_cmd_identifier_token7] = ACTIONS(2965), - [aux_sym_cmd_identifier_token8] = ACTIONS(2965), - [aux_sym_cmd_identifier_token9] = ACTIONS(2963), - [aux_sym_cmd_identifier_token10] = ACTIONS(2965), - [aux_sym_cmd_identifier_token11] = ACTIONS(2965), - [aux_sym_cmd_identifier_token12] = ACTIONS(2965), - [aux_sym_cmd_identifier_token13] = ACTIONS(2963), - [aux_sym_cmd_identifier_token14] = ACTIONS(2965), - [aux_sym_cmd_identifier_token15] = ACTIONS(2963), - [aux_sym_cmd_identifier_token16] = ACTIONS(2965), - [aux_sym_cmd_identifier_token17] = ACTIONS(2965), - [aux_sym_cmd_identifier_token18] = ACTIONS(2965), - [aux_sym_cmd_identifier_token19] = ACTIONS(2965), - [aux_sym_cmd_identifier_token20] = ACTIONS(2965), - [aux_sym_cmd_identifier_token21] = ACTIONS(2965), - [aux_sym_cmd_identifier_token22] = ACTIONS(2963), - [aux_sym_cmd_identifier_token23] = ACTIONS(2963), - [aux_sym_cmd_identifier_token24] = ACTIONS(2965), - [aux_sym_cmd_identifier_token25] = ACTIONS(2963), - [aux_sym_cmd_identifier_token26] = ACTIONS(2965), - [aux_sym_cmd_identifier_token27] = ACTIONS(2963), - [aux_sym_cmd_identifier_token28] = ACTIONS(2963), - [aux_sym_cmd_identifier_token29] = ACTIONS(2963), - [aux_sym_cmd_identifier_token30] = ACTIONS(2963), - [aux_sym_cmd_identifier_token31] = ACTIONS(2965), - [aux_sym_cmd_identifier_token32] = ACTIONS(2965), - [aux_sym_cmd_identifier_token33] = ACTIONS(2965), - [aux_sym_cmd_identifier_token34] = ACTIONS(2965), - [aux_sym_cmd_identifier_token35] = ACTIONS(2965), - [aux_sym_cmd_identifier_token36] = ACTIONS(2963), - [anon_sym_true] = ACTIONS(2965), - [anon_sym_false] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2965), - [aux_sym_cmd_identifier_token38] = ACTIONS(2963), - [aux_sym_cmd_identifier_token39] = ACTIONS(2965), - [aux_sym_cmd_identifier_token40] = ACTIONS(2965), - [sym__newline] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_err_GT_PIPE] = ACTIONS(1349), - [anon_sym_out_GT_PIPE] = ACTIONS(1349), - [anon_sym_e_GT_PIPE] = ACTIONS(1349), - [anon_sym_o_GT_PIPE] = ACTIONS(1349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [aux_sym_ctrl_match_token1] = ACTIONS(2965), - [anon_sym_DOT_DOT] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(2965), - [aux_sym_expr_unary_token1] = ACTIONS(2965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2965), - [anon_sym_DOT_DOT_LT] = ACTIONS(2965), - [aux_sym__val_number_decimal_token1] = ACTIONS(2963), - [aux_sym__val_number_decimal_token2] = ACTIONS(2965), - [aux_sym__val_number_decimal_token3] = ACTIONS(2965), - [aux_sym__val_number_decimal_token4] = ACTIONS(2965), - [aux_sym__val_number_token1] = ACTIONS(2965), - [aux_sym__val_number_token2] = ACTIONS(2965), - [aux_sym__val_number_token3] = ACTIONS(2965), - [anon_sym_0b] = ACTIONS(2963), - [anon_sym_0o] = ACTIONS(2963), - [anon_sym_0x] = ACTIONS(2963), - [sym_val_date] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [sym__str_single_quotes] = ACTIONS(2965), - [sym__str_back_ticks] = ACTIONS(2965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), - [aux_sym_env_var_token1] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(247), - }, - [689] = { - [sym_comment] = STATE(689), - [aux_sym_cmd_identifier_token1] = ACTIONS(2967), - [aux_sym_cmd_identifier_token2] = ACTIONS(2969), - [aux_sym_cmd_identifier_token3] = ACTIONS(2969), - [aux_sym_cmd_identifier_token4] = ACTIONS(2969), - [aux_sym_cmd_identifier_token5] = ACTIONS(2969), - [aux_sym_cmd_identifier_token6] = ACTIONS(2969), - [aux_sym_cmd_identifier_token7] = ACTIONS(2969), - [aux_sym_cmd_identifier_token8] = ACTIONS(2969), - [aux_sym_cmd_identifier_token9] = ACTIONS(2967), - [aux_sym_cmd_identifier_token10] = ACTIONS(2969), - [aux_sym_cmd_identifier_token11] = ACTIONS(2969), - [aux_sym_cmd_identifier_token12] = ACTIONS(2969), - [aux_sym_cmd_identifier_token13] = ACTIONS(2967), - [aux_sym_cmd_identifier_token14] = ACTIONS(2969), - [aux_sym_cmd_identifier_token15] = ACTIONS(2967), - [aux_sym_cmd_identifier_token16] = ACTIONS(2969), - [aux_sym_cmd_identifier_token17] = ACTIONS(2969), - [aux_sym_cmd_identifier_token18] = ACTIONS(2969), - [aux_sym_cmd_identifier_token19] = ACTIONS(2969), - [aux_sym_cmd_identifier_token20] = ACTIONS(2969), - [aux_sym_cmd_identifier_token21] = ACTIONS(2969), - [aux_sym_cmd_identifier_token22] = ACTIONS(2967), - [aux_sym_cmd_identifier_token23] = ACTIONS(2967), - [aux_sym_cmd_identifier_token24] = ACTIONS(2969), - [aux_sym_cmd_identifier_token25] = ACTIONS(2967), - [aux_sym_cmd_identifier_token26] = ACTIONS(2969), - [aux_sym_cmd_identifier_token27] = ACTIONS(2967), - [aux_sym_cmd_identifier_token28] = ACTIONS(2967), - [aux_sym_cmd_identifier_token29] = ACTIONS(2967), - [aux_sym_cmd_identifier_token30] = ACTIONS(2967), - [aux_sym_cmd_identifier_token31] = ACTIONS(2969), - [aux_sym_cmd_identifier_token32] = ACTIONS(2969), - [aux_sym_cmd_identifier_token33] = ACTIONS(2969), - [aux_sym_cmd_identifier_token34] = ACTIONS(2969), - [aux_sym_cmd_identifier_token35] = ACTIONS(2969), - [aux_sym_cmd_identifier_token36] = ACTIONS(2967), - [anon_sym_true] = ACTIONS(2969), - [anon_sym_false] = ACTIONS(2969), - [anon_sym_null] = ACTIONS(2969), - [aux_sym_cmd_identifier_token38] = ACTIONS(2967), - [aux_sym_cmd_identifier_token39] = ACTIONS(2969), - [aux_sym_cmd_identifier_token40] = ACTIONS(2969), - [sym__newline] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2969), - [anon_sym_err_GT_PIPE] = ACTIONS(2969), - [anon_sym_out_GT_PIPE] = ACTIONS(2969), - [anon_sym_e_GT_PIPE] = ACTIONS(2969), - [anon_sym_o_GT_PIPE] = ACTIONS(2969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_do] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [aux_sym_ctrl_match_token1] = ACTIONS(2969), - [anon_sym_DOT_DOT] = ACTIONS(2967), - [anon_sym_try] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_where] = ACTIONS(2969), - [aux_sym_expr_unary_token1] = ACTIONS(2969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2969), - [anon_sym_DOT_DOT_LT] = ACTIONS(2969), - [aux_sym__val_number_decimal_token1] = ACTIONS(2967), - [aux_sym__val_number_decimal_token2] = ACTIONS(2969), - [aux_sym__val_number_decimal_token3] = ACTIONS(2969), - [aux_sym__val_number_decimal_token4] = ACTIONS(2969), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [anon_sym_0b] = ACTIONS(2967), - [anon_sym_0o] = ACTIONS(2967), - [anon_sym_0x] = ACTIONS(2967), - [sym_val_date] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [sym__str_single_quotes] = ACTIONS(2969), - [sym__str_back_ticks] = ACTIONS(2969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2969), - [aux_sym_env_var_token1] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(247), - }, - [690] = { - [sym_comment] = STATE(690), - [aux_sym_shebang_repeat1] = STATE(690), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_null] = ACTIONS(1902), [aux_sym_cmd_identifier_token38] = ACTIONS(1900), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [sym__newline] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_err_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_GT_PIPE] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), - [anon_sym_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_RPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_any] = ACTIONS(1900), - [anon_sym_binary] = ACTIONS(1900), - [anon_sym_block] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_cell_DASHpath] = ACTIONS(1900), - [anon_sym_closure] = ACTIONS(1900), - [anon_sym_cond] = ACTIONS(1900), - [anon_sym_datetime] = ACTIONS(1900), - [anon_sym_directory] = ACTIONS(1900), - [anon_sym_duration] = ACTIONS(1900), + [aux_sym_cmd_identifier_token39] = ACTIONS(1902), + [aux_sym_cmd_identifier_token40] = ACTIONS(1902), + [anon_sym_def] = ACTIONS(1900), + [anon_sym_export_DASHenv] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_module] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1902), [anon_sym_error] = ACTIONS(1900), - [anon_sym_expr] = ACTIONS(1900), - [anon_sym_float] = ACTIONS(1900), - [anon_sym_decimal] = ACTIONS(1900), - [anon_sym_filesize] = ACTIONS(1900), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1900), - [anon_sym_glob] = ACTIONS(1900), - [anon_sym_int] = ACTIONS(1900), - [anon_sym_import_DASHpattern] = ACTIONS(1900), - [anon_sym_keyword] = ACTIONS(1900), - [anon_sym_math] = ACTIONS(1900), - [anon_sym_nothing] = ACTIONS(1900), - [anon_sym_number] = ACTIONS(1900), - [anon_sym_one_DASHof] = ACTIONS(1900), - [anon_sym_operator] = ACTIONS(1900), - [anon_sym_path] = ACTIONS(1900), - [anon_sym_range] = ACTIONS(1900), - [anon_sym_signature] = ACTIONS(1900), - [anon_sym_string] = ACTIONS(1900), - [anon_sym_table] = ACTIONS(1900), - [anon_sym_variable] = ACTIONS(1900), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1900), - [anon_sym_record] = ACTIONS(1900), [anon_sym_list] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_make] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), [anon_sym_else] = ACTIONS(1900), - [aux_sym_ctrl_match_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1900), [anon_sym_catch] = ACTIONS(1900), - [anon_sym_and] = ACTIONS(1900), - [anon_sym_xor] = ACTIONS(1900), - [anon_sym_or] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), - [anon_sym_DOT_DOT_LT] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1898), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_0b] = ACTIONS(1898), - [anon_sym_0o] = ACTIONS(1898), - [anon_sym_0x] = ACTIONS(1898), - [sym_val_date] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_source] = ACTIONS(1900), + [anon_sym_source_DASHenv] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_hide] = ACTIONS(1900), + [anon_sym_hide_DASHenv] = ACTIONS(1900), + [anon_sym_overlay] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1900), + [anon_sym_as] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1902), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1900), + [aux_sym__val_number_decimal_token2] = ACTIONS(1902), + [aux_sym__val_number_decimal_token3] = ACTIONS(1902), + [aux_sym__val_number_decimal_token4] = ACTIONS(1902), + [aux_sym__val_number_token1] = ACTIONS(1902), + [aux_sym__val_number_token2] = ACTIONS(1902), + [aux_sym__val_number_token3] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym__str_single_quotes] = ACTIONS(1902), + [sym__str_back_ticks] = ACTIONS(1902), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1902), + [anon_sym_PLUS] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(247), }, [691] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7252), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7532), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(691), - [aux_sym_shebang_repeat1] = STATE(722), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_alias] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_let_DASHenv] = ACTIONS(2442), + [anon_sym_mut] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [aux_sym_cmd_identifier_token1] = ACTIONS(2442), + [aux_sym_cmd_identifier_token2] = ACTIONS(2442), + [aux_sym_cmd_identifier_token3] = ACTIONS(2442), + [aux_sym_cmd_identifier_token4] = ACTIONS(2442), + [aux_sym_cmd_identifier_token5] = ACTIONS(2442), + [aux_sym_cmd_identifier_token6] = ACTIONS(2442), + [aux_sym_cmd_identifier_token7] = ACTIONS(2442), + [aux_sym_cmd_identifier_token8] = ACTIONS(2442), + [aux_sym_cmd_identifier_token9] = ACTIONS(2442), + [aux_sym_cmd_identifier_token10] = ACTIONS(2442), + [aux_sym_cmd_identifier_token11] = ACTIONS(2442), + [aux_sym_cmd_identifier_token12] = ACTIONS(2442), + [aux_sym_cmd_identifier_token13] = ACTIONS(2442), + [aux_sym_cmd_identifier_token14] = ACTIONS(2442), + [aux_sym_cmd_identifier_token15] = ACTIONS(2442), + [aux_sym_cmd_identifier_token16] = ACTIONS(2442), + [aux_sym_cmd_identifier_token17] = ACTIONS(2442), + [aux_sym_cmd_identifier_token18] = ACTIONS(2442), + [aux_sym_cmd_identifier_token19] = ACTIONS(2442), + [aux_sym_cmd_identifier_token20] = ACTIONS(2442), + [aux_sym_cmd_identifier_token21] = ACTIONS(2442), + [aux_sym_cmd_identifier_token22] = ACTIONS(2442), + [aux_sym_cmd_identifier_token23] = ACTIONS(2442), + [aux_sym_cmd_identifier_token24] = ACTIONS(2442), + [aux_sym_cmd_identifier_token25] = ACTIONS(2442), + [aux_sym_cmd_identifier_token26] = ACTIONS(2442), + [aux_sym_cmd_identifier_token27] = ACTIONS(2442), + [aux_sym_cmd_identifier_token28] = ACTIONS(2442), + [aux_sym_cmd_identifier_token29] = ACTIONS(2442), + [aux_sym_cmd_identifier_token30] = ACTIONS(2442), + [aux_sym_cmd_identifier_token31] = ACTIONS(2442), + [aux_sym_cmd_identifier_token32] = ACTIONS(2442), + [aux_sym_cmd_identifier_token33] = ACTIONS(2442), + [aux_sym_cmd_identifier_token34] = ACTIONS(2442), + [aux_sym_cmd_identifier_token35] = ACTIONS(2442), + [aux_sym_cmd_identifier_token36] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [anon_sym_null] = ACTIONS(2444), + [aux_sym_cmd_identifier_token38] = ACTIONS(2442), + [aux_sym_cmd_identifier_token39] = ACTIONS(2444), + [aux_sym_cmd_identifier_token40] = ACTIONS(2444), + [anon_sym_def] = ACTIONS(2442), + [anon_sym_export_DASHenv] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_error] = ACTIONS(2442), + [anon_sym_list] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_make] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_catch] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_source] = ACTIONS(2442), + [anon_sym_source_DASHenv] = ACTIONS(2442), + [anon_sym_register] = ACTIONS(2442), + [anon_sym_hide] = ACTIONS(2442), + [anon_sym_hide_DASHenv] = ACTIONS(2442), + [anon_sym_overlay] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2444), + [aux_sym__val_number_decimal_token1] = ACTIONS(2442), + [aux_sym__val_number_decimal_token2] = ACTIONS(2444), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [aux_sym__val_number_token1] = ACTIONS(2444), + [aux_sym__val_number_token2] = ACTIONS(2444), + [aux_sym__val_number_token3] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2444), + [sym__str_single_quotes] = ACTIONS(2444), + [sym__str_back_ticks] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(247), }, [692] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7048), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7624), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(692), - [aux_sym_shebang_repeat1] = STATE(720), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_let_DASHenv] = ACTIONS(2446), + [anon_sym_mut] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [aux_sym_cmd_identifier_token1] = ACTIONS(2446), + [aux_sym_cmd_identifier_token2] = ACTIONS(2446), + [aux_sym_cmd_identifier_token3] = ACTIONS(2446), + [aux_sym_cmd_identifier_token4] = ACTIONS(2446), + [aux_sym_cmd_identifier_token5] = ACTIONS(2446), + [aux_sym_cmd_identifier_token6] = ACTIONS(2446), + [aux_sym_cmd_identifier_token7] = ACTIONS(2446), + [aux_sym_cmd_identifier_token8] = ACTIONS(2446), + [aux_sym_cmd_identifier_token9] = ACTIONS(2446), + [aux_sym_cmd_identifier_token10] = ACTIONS(2446), + [aux_sym_cmd_identifier_token11] = ACTIONS(2446), + [aux_sym_cmd_identifier_token12] = ACTIONS(2446), + [aux_sym_cmd_identifier_token13] = ACTIONS(2446), + [aux_sym_cmd_identifier_token14] = ACTIONS(2446), + [aux_sym_cmd_identifier_token15] = ACTIONS(2446), + [aux_sym_cmd_identifier_token16] = ACTIONS(2446), + [aux_sym_cmd_identifier_token17] = ACTIONS(2446), + [aux_sym_cmd_identifier_token18] = ACTIONS(2446), + [aux_sym_cmd_identifier_token19] = ACTIONS(2446), + [aux_sym_cmd_identifier_token20] = ACTIONS(2446), + [aux_sym_cmd_identifier_token21] = ACTIONS(2446), + [aux_sym_cmd_identifier_token22] = ACTIONS(2446), + [aux_sym_cmd_identifier_token23] = ACTIONS(2446), + [aux_sym_cmd_identifier_token24] = ACTIONS(2446), + [aux_sym_cmd_identifier_token25] = ACTIONS(2446), + [aux_sym_cmd_identifier_token26] = ACTIONS(2446), + [aux_sym_cmd_identifier_token27] = ACTIONS(2446), + [aux_sym_cmd_identifier_token28] = ACTIONS(2446), + [aux_sym_cmd_identifier_token29] = ACTIONS(2446), + [aux_sym_cmd_identifier_token30] = ACTIONS(2446), + [aux_sym_cmd_identifier_token31] = ACTIONS(2446), + [aux_sym_cmd_identifier_token32] = ACTIONS(2446), + [aux_sym_cmd_identifier_token33] = ACTIONS(2446), + [aux_sym_cmd_identifier_token34] = ACTIONS(2446), + [aux_sym_cmd_identifier_token35] = ACTIONS(2446), + [aux_sym_cmd_identifier_token36] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_null] = ACTIONS(2448), + [aux_sym_cmd_identifier_token38] = ACTIONS(2446), + [aux_sym_cmd_identifier_token39] = ACTIONS(2448), + [aux_sym_cmd_identifier_token40] = ACTIONS(2448), + [anon_sym_def] = ACTIONS(2446), + [anon_sym_export_DASHenv] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym_module] = ACTIONS(2446), + [anon_sym_use] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_error] = ACTIONS(2446), + [anon_sym_list] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_loop] = ACTIONS(2446), + [anon_sym_make] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_do] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2446), + [anon_sym_match] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2446), + [anon_sym_catch] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_source] = ACTIONS(2446), + [anon_sym_source_DASHenv] = ACTIONS(2446), + [anon_sym_register] = ACTIONS(2446), + [anon_sym_hide] = ACTIONS(2446), + [anon_sym_hide_DASHenv] = ACTIONS(2446), + [anon_sym_overlay] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_as] = ACTIONS(2446), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_DOLLAR] = 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_DQUOTE] = ACTIONS(2448), + [sym__str_single_quotes] = ACTIONS(2448), + [sym__str_back_ticks] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2446), [anon_sym_POUND] = ACTIONS(247), }, [693] = { [sym_comment] = STATE(693), - [anon_sym_EQ] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [anon_sym_null] = ACTIONS(1349), - [aux_sym_cmd_identifier_token38] = ACTIONS(1349), - [aux_sym_cmd_identifier_token39] = ACTIONS(1349), - [aux_sym_cmd_identifier_token40] = ACTIONS(1349), - [sym__newline] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_err_GT_PIPE] = ACTIONS(1349), - [anon_sym_out_GT_PIPE] = ACTIONS(1349), - [anon_sym_e_GT_PIPE] = ACTIONS(1349), - [anon_sym_o_GT_PIPE] = ACTIONS(1349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1349), - [anon_sym_COLON] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_DOLLAR] = ACTIONS(1345), - [anon_sym_any] = ACTIONS(1349), - [anon_sym_binary] = ACTIONS(1349), - [anon_sym_block] = ACTIONS(1349), - [anon_sym_bool] = ACTIONS(1349), - [anon_sym_cell_DASHpath] = ACTIONS(1349), - [anon_sym_closure] = ACTIONS(1349), - [anon_sym_cond] = ACTIONS(1349), - [anon_sym_datetime] = ACTIONS(1349), - [anon_sym_directory] = ACTIONS(1349), - [anon_sym_duration] = ACTIONS(1349), - [anon_sym_error] = ACTIONS(1349), - [anon_sym_expr] = ACTIONS(1349), - [anon_sym_float] = ACTIONS(1349), - [anon_sym_decimal] = ACTIONS(1349), - [anon_sym_filesize] = ACTIONS(1349), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1349), - [anon_sym_glob] = ACTIONS(1349), - [anon_sym_int] = ACTIONS(1349), - [anon_sym_import_DASHpattern] = ACTIONS(1349), - [anon_sym_keyword] = ACTIONS(1349), - [anon_sym_math] = ACTIONS(1349), - [anon_sym_nothing] = ACTIONS(1349), - [anon_sym_number] = ACTIONS(1349), - [anon_sym_one_DASHof] = ACTIONS(1349), - [anon_sym_operator] = ACTIONS(1349), - [anon_sym_path] = ACTIONS(1349), - [anon_sym_range] = ACTIONS(1349), - [anon_sym_signature] = ACTIONS(1349), - [anon_sym_string] = ACTIONS(1349), - [anon_sym_table] = ACTIONS(1349), - [anon_sym_variable] = ACTIONS(1349), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1349), - [anon_sym_record] = ACTIONS(1349), - [anon_sym_list] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1349), - [aux_sym_ctrl_match_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_catch] = ACTIONS(1349), - [anon_sym_and] = ACTIONS(1349), - [anon_sym_xor] = ACTIONS(1349), - [anon_sym_or] = ACTIONS(1349), - [aux_sym_expr_unary_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), - [anon_sym_DOT_DOT_LT] = ACTIONS(1349), - [aux_sym__val_number_decimal_token1] = ACTIONS(1345), - [aux_sym__val_number_decimal_token2] = ACTIONS(1349), - [aux_sym__val_number_decimal_token3] = ACTIONS(1349), - [aux_sym__val_number_decimal_token4] = ACTIONS(1349), - [aux_sym__val_number_token1] = ACTIONS(1349), - [aux_sym__val_number_token2] = ACTIONS(1349), - [aux_sym__val_number_token3] = ACTIONS(1349), - [anon_sym_0b] = ACTIONS(1345), - [anon_sym_0o] = ACTIONS(1345), - [anon_sym_0x] = ACTIONS(1345), - [sym_val_date] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym__str_single_quotes] = ACTIONS(1349), - [sym__str_back_ticks] = ACTIONS(1349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_export] = ACTIONS(1904), + [anon_sym_alias] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_let_DASHenv] = ACTIONS(1904), + [anon_sym_mut] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [aux_sym_cmd_identifier_token1] = ACTIONS(1904), + [aux_sym_cmd_identifier_token2] = ACTIONS(1904), + [aux_sym_cmd_identifier_token3] = ACTIONS(1904), + [aux_sym_cmd_identifier_token4] = ACTIONS(1904), + [aux_sym_cmd_identifier_token5] = ACTIONS(1904), + [aux_sym_cmd_identifier_token6] = ACTIONS(1904), + [aux_sym_cmd_identifier_token7] = ACTIONS(1904), + [aux_sym_cmd_identifier_token8] = ACTIONS(1904), + [aux_sym_cmd_identifier_token9] = ACTIONS(1904), + [aux_sym_cmd_identifier_token10] = ACTIONS(1904), + [aux_sym_cmd_identifier_token11] = ACTIONS(1904), + [aux_sym_cmd_identifier_token12] = ACTIONS(1904), + [aux_sym_cmd_identifier_token13] = ACTIONS(1904), + [aux_sym_cmd_identifier_token14] = ACTIONS(1904), + [aux_sym_cmd_identifier_token15] = ACTIONS(1904), + [aux_sym_cmd_identifier_token16] = ACTIONS(1904), + [aux_sym_cmd_identifier_token17] = ACTIONS(1904), + [aux_sym_cmd_identifier_token18] = ACTIONS(1904), + [aux_sym_cmd_identifier_token19] = ACTIONS(1904), + [aux_sym_cmd_identifier_token20] = ACTIONS(1904), + [aux_sym_cmd_identifier_token21] = ACTIONS(1904), + [aux_sym_cmd_identifier_token22] = ACTIONS(1904), + [aux_sym_cmd_identifier_token23] = ACTIONS(1904), + [aux_sym_cmd_identifier_token24] = ACTIONS(1904), + [aux_sym_cmd_identifier_token25] = ACTIONS(1904), + [aux_sym_cmd_identifier_token26] = ACTIONS(1904), + [aux_sym_cmd_identifier_token27] = ACTIONS(1904), + [aux_sym_cmd_identifier_token28] = ACTIONS(1904), + [aux_sym_cmd_identifier_token29] = ACTIONS(1904), + [aux_sym_cmd_identifier_token30] = ACTIONS(1904), + [aux_sym_cmd_identifier_token31] = ACTIONS(1904), + [aux_sym_cmd_identifier_token32] = ACTIONS(1904), + [aux_sym_cmd_identifier_token33] = ACTIONS(1904), + [aux_sym_cmd_identifier_token34] = ACTIONS(1904), + [aux_sym_cmd_identifier_token35] = ACTIONS(1904), + [aux_sym_cmd_identifier_token36] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token38] = ACTIONS(1904), + [aux_sym_cmd_identifier_token39] = ACTIONS(1906), + [aux_sym_cmd_identifier_token40] = ACTIONS(1906), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_export_DASHenv] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_module] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1906), + [anon_sym_error] = ACTIONS(1904), + [anon_sym_list] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_make] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1904), + [anon_sym_catch] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_source] = ACTIONS(1904), + [anon_sym_source_DASHenv] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_hide] = ACTIONS(1904), + [anon_sym_hide_DASHenv] = ACTIONS(1904), + [anon_sym_overlay] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1906), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1906), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1906), + [aux_sym__val_number_decimal_token4] = ACTIONS(1906), + [aux_sym__val_number_token1] = ACTIONS(1906), + [aux_sym__val_number_token2] = ACTIONS(1906), + [aux_sym__val_number_token3] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym__str_single_quotes] = ACTIONS(1906), + [sym__str_back_ticks] = ACTIONS(1906), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1904), [anon_sym_POUND] = ACTIONS(247), }, [694] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7031), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7675), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(694), - [aux_sym_shebang_repeat1] = STATE(724), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_alias] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_let_DASHenv] = ACTIONS(2450), + [anon_sym_mut] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [aux_sym_cmd_identifier_token1] = ACTIONS(2450), + [aux_sym_cmd_identifier_token2] = ACTIONS(2450), + [aux_sym_cmd_identifier_token3] = ACTIONS(2450), + [aux_sym_cmd_identifier_token4] = ACTIONS(2450), + [aux_sym_cmd_identifier_token5] = ACTIONS(2450), + [aux_sym_cmd_identifier_token6] = ACTIONS(2450), + [aux_sym_cmd_identifier_token7] = ACTIONS(2450), + [aux_sym_cmd_identifier_token8] = ACTIONS(2450), + [aux_sym_cmd_identifier_token9] = ACTIONS(2450), + [aux_sym_cmd_identifier_token10] = ACTIONS(2450), + [aux_sym_cmd_identifier_token11] = ACTIONS(2450), + [aux_sym_cmd_identifier_token12] = ACTIONS(2450), + [aux_sym_cmd_identifier_token13] = ACTIONS(2450), + [aux_sym_cmd_identifier_token14] = ACTIONS(2450), + [aux_sym_cmd_identifier_token15] = ACTIONS(2450), + [aux_sym_cmd_identifier_token16] = ACTIONS(2450), + [aux_sym_cmd_identifier_token17] = ACTIONS(2450), + [aux_sym_cmd_identifier_token18] = ACTIONS(2450), + [aux_sym_cmd_identifier_token19] = ACTIONS(2450), + [aux_sym_cmd_identifier_token20] = ACTIONS(2450), + [aux_sym_cmd_identifier_token21] = ACTIONS(2450), + [aux_sym_cmd_identifier_token22] = ACTIONS(2450), + [aux_sym_cmd_identifier_token23] = ACTIONS(2450), + [aux_sym_cmd_identifier_token24] = ACTIONS(2450), + [aux_sym_cmd_identifier_token25] = ACTIONS(2450), + [aux_sym_cmd_identifier_token26] = ACTIONS(2450), + [aux_sym_cmd_identifier_token27] = ACTIONS(2450), + [aux_sym_cmd_identifier_token28] = ACTIONS(2450), + [aux_sym_cmd_identifier_token29] = ACTIONS(2450), + [aux_sym_cmd_identifier_token30] = ACTIONS(2450), + [aux_sym_cmd_identifier_token31] = ACTIONS(2450), + [aux_sym_cmd_identifier_token32] = ACTIONS(2450), + [aux_sym_cmd_identifier_token33] = ACTIONS(2450), + [aux_sym_cmd_identifier_token34] = ACTIONS(2450), + [aux_sym_cmd_identifier_token35] = ACTIONS(2450), + [aux_sym_cmd_identifier_token36] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_null] = ACTIONS(2452), + [aux_sym_cmd_identifier_token38] = ACTIONS(2450), + [aux_sym_cmd_identifier_token39] = ACTIONS(2452), + [aux_sym_cmd_identifier_token40] = ACTIONS(2452), + [anon_sym_def] = ACTIONS(2450), + [anon_sym_export_DASHenv] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_module] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_DOLLAR] = ACTIONS(2452), + [anon_sym_error] = ACTIONS(2450), + [anon_sym_list] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_make] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_catch] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_source] = ACTIONS(2450), + [anon_sym_source_DASHenv] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_hide] = ACTIONS(2450), + [anon_sym_hide_DASHenv] = ACTIONS(2450), + [anon_sym_overlay] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2452), + [aux_sym__val_number_decimal_token1] = ACTIONS(2450), + [aux_sym__val_number_decimal_token2] = ACTIONS(2452), + [aux_sym__val_number_decimal_token3] = ACTIONS(2452), + [aux_sym__val_number_decimal_token4] = ACTIONS(2452), + [aux_sym__val_number_token1] = ACTIONS(2452), + [aux_sym__val_number_token2] = ACTIONS(2452), + [aux_sym__val_number_token3] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym__str_single_quotes] = ACTIONS(2452), + [sym__str_back_ticks] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2450), [anon_sym_POUND] = ACTIONS(247), }, [695] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7663), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(695), - [aux_sym_shebang_repeat1] = STATE(721), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_alias] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_let_DASHenv] = ACTIONS(2454), + [anon_sym_mut] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [aux_sym_cmd_identifier_token1] = ACTIONS(2454), + [aux_sym_cmd_identifier_token2] = ACTIONS(2454), + [aux_sym_cmd_identifier_token3] = ACTIONS(2454), + [aux_sym_cmd_identifier_token4] = ACTIONS(2454), + [aux_sym_cmd_identifier_token5] = ACTIONS(2454), + [aux_sym_cmd_identifier_token6] = ACTIONS(2454), + [aux_sym_cmd_identifier_token7] = ACTIONS(2454), + [aux_sym_cmd_identifier_token8] = ACTIONS(2454), + [aux_sym_cmd_identifier_token9] = ACTIONS(2454), + [aux_sym_cmd_identifier_token10] = ACTIONS(2454), + [aux_sym_cmd_identifier_token11] = ACTIONS(2454), + [aux_sym_cmd_identifier_token12] = ACTIONS(2454), + [aux_sym_cmd_identifier_token13] = ACTIONS(2454), + [aux_sym_cmd_identifier_token14] = ACTIONS(2454), + [aux_sym_cmd_identifier_token15] = ACTIONS(2454), + [aux_sym_cmd_identifier_token16] = ACTIONS(2454), + [aux_sym_cmd_identifier_token17] = ACTIONS(2454), + [aux_sym_cmd_identifier_token18] = ACTIONS(2454), + [aux_sym_cmd_identifier_token19] = ACTIONS(2454), + [aux_sym_cmd_identifier_token20] = ACTIONS(2454), + [aux_sym_cmd_identifier_token21] = ACTIONS(2454), + [aux_sym_cmd_identifier_token22] = ACTIONS(2454), + [aux_sym_cmd_identifier_token23] = ACTIONS(2454), + [aux_sym_cmd_identifier_token24] = ACTIONS(2454), + [aux_sym_cmd_identifier_token25] = ACTIONS(2454), + [aux_sym_cmd_identifier_token26] = ACTIONS(2454), + [aux_sym_cmd_identifier_token27] = ACTIONS(2454), + [aux_sym_cmd_identifier_token28] = ACTIONS(2454), + [aux_sym_cmd_identifier_token29] = ACTIONS(2454), + [aux_sym_cmd_identifier_token30] = ACTIONS(2454), + [aux_sym_cmd_identifier_token31] = ACTIONS(2454), + [aux_sym_cmd_identifier_token32] = ACTIONS(2454), + [aux_sym_cmd_identifier_token33] = ACTIONS(2454), + [aux_sym_cmd_identifier_token34] = ACTIONS(2454), + [aux_sym_cmd_identifier_token35] = ACTIONS(2454), + [aux_sym_cmd_identifier_token36] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [anon_sym_null] = ACTIONS(2456), + [aux_sym_cmd_identifier_token38] = ACTIONS(2454), + [aux_sym_cmd_identifier_token39] = ACTIONS(2456), + [aux_sym_cmd_identifier_token40] = ACTIONS(2456), + [anon_sym_def] = ACTIONS(2454), + [anon_sym_export_DASHenv] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2456), + [anon_sym_error] = ACTIONS(2454), + [anon_sym_list] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_make] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_catch] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_source] = ACTIONS(2454), + [anon_sym_source_DASHenv] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_hide] = ACTIONS(2454), + [anon_sym_hide_DASHenv] = ACTIONS(2454), + [anon_sym_overlay] = ACTIONS(2454), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_as] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2456), + [aux_sym__val_number_decimal_token1] = ACTIONS(2454), + [aux_sym__val_number_decimal_token2] = ACTIONS(2456), + [aux_sym__val_number_decimal_token3] = ACTIONS(2456), + [aux_sym__val_number_decimal_token4] = ACTIONS(2456), + [aux_sym__val_number_token1] = ACTIONS(2456), + [aux_sym__val_number_token2] = ACTIONS(2456), + [aux_sym__val_number_token3] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym__str_single_quotes] = ACTIONS(2456), + [sym__str_back_ticks] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2454), [anon_sym_POUND] = ACTIONS(247), }, [696] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7755), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(696), - [aux_sym_shebang_repeat1] = STATE(721), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1572), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1560), [anon_sym_POUND] = ACTIONS(247), }, [697] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7123), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7509), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(697), - [aux_sym_shebang_repeat1] = STATE(725), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_alias] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_let_DASHenv] = ACTIONS(2430), + [anon_sym_mut] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [aux_sym_cmd_identifier_token1] = ACTIONS(2430), + [aux_sym_cmd_identifier_token2] = ACTIONS(2430), + [aux_sym_cmd_identifier_token3] = ACTIONS(2430), + [aux_sym_cmd_identifier_token4] = ACTIONS(2430), + [aux_sym_cmd_identifier_token5] = ACTIONS(2430), + [aux_sym_cmd_identifier_token6] = ACTIONS(2430), + [aux_sym_cmd_identifier_token7] = ACTIONS(2430), + [aux_sym_cmd_identifier_token8] = ACTIONS(2430), + [aux_sym_cmd_identifier_token9] = ACTIONS(2430), + [aux_sym_cmd_identifier_token10] = ACTIONS(2430), + [aux_sym_cmd_identifier_token11] = ACTIONS(2430), + [aux_sym_cmd_identifier_token12] = ACTIONS(2430), + [aux_sym_cmd_identifier_token13] = ACTIONS(2430), + [aux_sym_cmd_identifier_token14] = ACTIONS(2430), + [aux_sym_cmd_identifier_token15] = ACTIONS(2430), + [aux_sym_cmd_identifier_token16] = ACTIONS(2430), + [aux_sym_cmd_identifier_token17] = ACTIONS(2430), + [aux_sym_cmd_identifier_token18] = ACTIONS(2430), + [aux_sym_cmd_identifier_token19] = ACTIONS(2430), + [aux_sym_cmd_identifier_token20] = ACTIONS(2430), + [aux_sym_cmd_identifier_token21] = ACTIONS(2430), + [aux_sym_cmd_identifier_token22] = ACTIONS(2430), + [aux_sym_cmd_identifier_token23] = ACTIONS(2430), + [aux_sym_cmd_identifier_token24] = ACTIONS(2430), + [aux_sym_cmd_identifier_token25] = ACTIONS(2430), + [aux_sym_cmd_identifier_token26] = ACTIONS(2430), + [aux_sym_cmd_identifier_token27] = ACTIONS(2430), + [aux_sym_cmd_identifier_token28] = ACTIONS(2430), + [aux_sym_cmd_identifier_token29] = ACTIONS(2430), + [aux_sym_cmd_identifier_token30] = ACTIONS(2430), + [aux_sym_cmd_identifier_token31] = ACTIONS(2430), + [aux_sym_cmd_identifier_token32] = ACTIONS(2430), + [aux_sym_cmd_identifier_token33] = ACTIONS(2430), + [aux_sym_cmd_identifier_token34] = ACTIONS(2430), + [aux_sym_cmd_identifier_token35] = ACTIONS(2430), + [aux_sym_cmd_identifier_token36] = ACTIONS(2430), + [anon_sym_true] = ACTIONS(2432), + [anon_sym_false] = ACTIONS(2432), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token38] = ACTIONS(2430), + [aux_sym_cmd_identifier_token39] = ACTIONS(2432), + [aux_sym_cmd_identifier_token40] = ACTIONS(2432), + [anon_sym_def] = ACTIONS(2430), + [anon_sym_export_DASHenv] = ACTIONS(2430), + [anon_sym_extern] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_use] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(2432), + [anon_sym_error] = ACTIONS(2430), + [anon_sym_list] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_in] = ACTIONS(2430), + [anon_sym_loop] = ACTIONS(2430), + [anon_sym_make] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_match] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_catch] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_source] = ACTIONS(2430), + [anon_sym_source_DASHenv] = ACTIONS(2430), + [anon_sym_register] = ACTIONS(2430), + [anon_sym_hide] = ACTIONS(2430), + [anon_sym_hide_DASHenv] = ACTIONS(2430), + [anon_sym_overlay] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2430), + [aux_sym__val_number_decimal_token2] = ACTIONS(2432), + [aux_sym__val_number_decimal_token3] = ACTIONS(2432), + [aux_sym__val_number_decimal_token4] = ACTIONS(2432), + [aux_sym__val_number_token1] = ACTIONS(2432), + [aux_sym__val_number_token2] = ACTIONS(2432), + [aux_sym__val_number_token3] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2432), + [sym__str_back_ticks] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2430), [anon_sym_POUND] = ACTIONS(247), }, [698] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7681), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_rest] = STATE(7698), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2728), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(2981), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(2972), + [sym_val_bool] = STATE(2851), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(2740), + [sym_val_number] = STATE(2972), + [sym__val_number_decimal] = STATE(2493), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(2972), + [sym_val_filesize] = STATE(2972), + [sym_val_binary] = STATE(2972), + [sym_val_string] = STATE(2972), + [sym__str_double_quotes] = STATE(2995), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7138), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7379), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(2972), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(2853), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(698), - [aux_sym_shebang_repeat1] = STATE(721), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(772), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym__match_pattern_list_repeat1] = STATE(1147), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2539), + [aux_sym_cmd_identifier_token38] = ACTIONS(2541), + [aux_sym_cmd_identifier_token39] = ACTIONS(2541), + [aux_sym_cmd_identifier_token40] = ACTIONS(2541), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_RBRACK] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2557), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2559), + [anon_sym_DOT_DOT_LT] = ACTIONS(2559), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(2561), + [aux_sym__val_number_decimal_token2] = ACTIONS(2563), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2567), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym__str_single_quotes] = ACTIONS(2579), + [sym__str_back_ticks] = ACTIONS(2579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [699] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7134), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7688), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_rest] = STATE(7698), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2728), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(2981), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(2972), + [sym_val_bool] = STATE(2851), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(2740), + [sym_val_number] = STATE(2972), + [sym__val_number_decimal] = STATE(2493), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(2972), + [sym_val_filesize] = STATE(2972), + [sym_val_binary] = STATE(2972), + [sym_val_string] = STATE(2972), + [sym__str_double_quotes] = STATE(2995), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7117), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7426), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(2972), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(2853), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(699), - [aux_sym_shebang_repeat1] = STATE(726), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(769), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym__match_pattern_list_repeat1] = STATE(1147), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2539), + [aux_sym_cmd_identifier_token38] = ACTIONS(2541), + [aux_sym_cmd_identifier_token39] = ACTIONS(2541), + [aux_sym_cmd_identifier_token40] = ACTIONS(2541), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_RBRACK] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2557), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2559), + [anon_sym_DOT_DOT_LT] = ACTIONS(2559), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(2561), + [aux_sym__val_number_decimal_token2] = ACTIONS(2563), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2567), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym__str_single_quotes] = ACTIONS(2579), + [sym__str_back_ticks] = ACTIONS(2579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [700] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7143), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7480), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1401), + [sym_val_range] = STATE(1735), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1735), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1735), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1483), + [sym__unquoted_with_expr] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(700), - [aux_sym_shebang_repeat1] = STATE(727), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(706), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2601), + [anon_sym_err_GT_PIPE] = ACTIONS(2601), + [anon_sym_out_GT_PIPE] = ACTIONS(2601), + [anon_sym_e_GT_PIPE] = ACTIONS(2601), + [anon_sym_o_GT_PIPE] = ACTIONS(2601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2601), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [701] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7031), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7532), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1401), + [sym_val_range] = STATE(1735), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1735), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1735), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1483), + [sym__unquoted_with_expr] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(701), - [aux_sym_shebang_repeat1] = STATE(724), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(706), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_err_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_GT_PIPE] = ACTIONS(2649), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [702] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7158), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7752), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1401), + [sym_val_range] = STATE(1735), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1735), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1735), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1483), + [sym__unquoted_with_expr] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(702), - [aux_sym_shebang_repeat1] = STATE(729), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(700), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_err_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_GT_PIPE] = ACTIONS(2649), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [703] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7165), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7701), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1476), + [sym_val_range] = STATE(1895), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1895), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1895), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1533), + [sym__unquoted_with_expr] = STATE(1897), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(703), - [aux_sym_shebang_repeat1] = STATE(730), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(786), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(704), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_err_GT_PIPE] = ACTIONS(2651), + [anon_sym_out_GT_PIPE] = ACTIONS(2651), + [anon_sym_e_GT_PIPE] = ACTIONS(2651), + [anon_sym_o_GT_PIPE] = ACTIONS(2651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [704] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7174), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7730), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1476), + [sym_val_range] = STATE(1895), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1895), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1895), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1533), + [sym__unquoted_with_expr] = STATE(1897), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(704), - [aux_sym_shebang_repeat1] = STATE(731), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(786), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(709), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_err_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_GT_PIPE] = ACTIONS(2655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [705] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7182), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7628), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1476), + [sym_val_range] = STATE(1895), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1895), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1895), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1533), + [sym__unquoted_with_expr] = STATE(1897), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(705), - [aux_sym_shebang_repeat1] = STATE(732), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(786), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(709), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_err_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_GT_PIPE] = ACTIONS(2657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [706] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7196), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7489), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1401), + [sym_val_range] = STATE(1735), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1735), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1735), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1483), + [sym__unquoted_with_expr] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(706), - [aux_sym_shebang_repeat1] = STATE(734), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(706), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_null] = ACTIONS(2662), + [aux_sym_cmd_identifier_token38] = ACTIONS(2665), + [aux_sym_cmd_identifier_token39] = ACTIONS(2665), + [aux_sym_cmd_identifier_token40] = ACTIONS(2665), + [sym__newline] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_err_GT_PIPE] = ACTIONS(2668), + [anon_sym_out_GT_PIPE] = ACTIONS(2668), + [anon_sym_e_GT_PIPE] = ACTIONS(2668), + [anon_sym_o_GT_PIPE] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_RPAREN] = ACTIONS(2668), + [anon_sym_DOLLAR] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_DOT_DOT] = ACTIONS(2688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2691), + [anon_sym_DOT_DOT_LT] = ACTIONS(2691), + [aux_sym__val_number_decimal_token1] = ACTIONS(2694), + [aux_sym__val_number_decimal_token2] = ACTIONS(2697), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2703), + [aux_sym__val_number_token1] = ACTIONS(2706), + [aux_sym__val_number_token2] = ACTIONS(2706), + [aux_sym__val_number_token3] = ACTIONS(2706), + [anon_sym_0b] = ACTIONS(2709), + [anon_sym_0o] = ACTIONS(2712), + [anon_sym_0x] = ACTIONS(2712), + [sym_val_date] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2718), + [sym__str_single_quotes] = ACTIONS(2721), + [sym__str_back_ticks] = ACTIONS(2721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2727), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2733), + [anon_sym_out_GT_GT] = ACTIONS(2733), + [anon_sym_e_GT_GT] = ACTIONS(2733), + [anon_sym_o_GT_GT] = ACTIONS(2733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2733), + [aux_sym_unquoted_token1] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(247), }, [707] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7204), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7634), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1476), + [sym_val_range] = STATE(1895), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1895), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1895), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1533), + [sym__unquoted_with_expr] = STATE(1897), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(707), - [aux_sym_shebang_repeat1] = STATE(735), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(786), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(705), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_err_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_GT_PIPE] = ACTIONS(2655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [708] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7190), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7776), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1401), + [sym_val_range] = STATE(1735), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1735), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1735), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1483), + [sym__unquoted_with_expr] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(708), - [aux_sym_shebang_repeat1] = STATE(718), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(701), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2739), + [anon_sym_err_GT_PIPE] = ACTIONS(2739), + [anon_sym_out_GT_PIPE] = ACTIONS(2739), + [anon_sym_e_GT_PIPE] = ACTIONS(2739), + [anon_sym_o_GT_PIPE] = ACTIONS(2739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_RPAREN] = ACTIONS(2739), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [709] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7532), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1476), + [sym_val_range] = STATE(1895), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1895), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1895), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1533), + [sym__unquoted_with_expr] = STATE(1897), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(709), - [aux_sym_shebang_repeat1] = STATE(721), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(786), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(709), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_null] = ACTIONS(2744), + [aux_sym_cmd_identifier_token38] = ACTIONS(2747), + [aux_sym_cmd_identifier_token39] = ACTIONS(2747), + [aux_sym_cmd_identifier_token40] = ACTIONS(2747), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_PIPE] = ACTIONS(2753), + [anon_sym_err_GT_PIPE] = ACTIONS(2753), + [anon_sym_out_GT_PIPE] = ACTIONS(2753), + [anon_sym_e_GT_PIPE] = ACTIONS(2753), + [anon_sym_o_GT_PIPE] = ACTIONS(2753), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2753), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2753), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2753), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), + [anon_sym_DOT_DOT_LT] = ACTIONS(2776), + [aux_sym__val_number_decimal_token1] = ACTIONS(2779), + [aux_sym__val_number_decimal_token2] = ACTIONS(2782), + [aux_sym__val_number_decimal_token3] = ACTIONS(2785), + [aux_sym__val_number_decimal_token4] = ACTIONS(2788), + [aux_sym__val_number_token1] = ACTIONS(2791), + [aux_sym__val_number_token2] = ACTIONS(2791), + [aux_sym__val_number_token3] = ACTIONS(2791), + [anon_sym_0b] = ACTIONS(2794), + [anon_sym_0o] = ACTIONS(2797), + [anon_sym_0x] = ACTIONS(2797), + [sym_val_date] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym__str_single_quotes] = ACTIONS(2806), + [sym__str_back_ticks] = ACTIONS(2806), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2812), + [anon_sym_err_GT] = ACTIONS(2815), + [anon_sym_out_GT] = ACTIONS(2815), + [anon_sym_e_GT] = ACTIONS(2815), + [anon_sym_o_GT] = ACTIONS(2815), + [anon_sym_err_PLUSout_GT] = ACTIONS(2815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2815), + [anon_sym_o_PLUSe_GT] = ACTIONS(2815), + [anon_sym_e_PLUSo_GT] = ACTIONS(2815), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [aux_sym_unquoted_token1] = ACTIONS(2821), [anon_sym_POUND] = ACTIONS(247), }, [710] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7212), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7748), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1443), + [sym_val_range] = STATE(1821), + [sym__val_range] = STATE(7461), + [sym__val_range_with_end] = STATE(7212), + [sym__value] = STATE(1821), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(1455), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1148), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym__flag] = STATE(1821), + [sym_short_flag] = STATE(1953), + [sym_long_flag] = STATE(1953), + [sym_unquoted] = STATE(1507), + [sym__unquoted_with_expr] = STATE(1829), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(710), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_null] = ACTIONS(2826), + [aux_sym_cmd_identifier_token38] = ACTIONS(2828), + [aux_sym_cmd_identifier_token39] = ACTIONS(2828), + [aux_sym_cmd_identifier_token40] = ACTIONS(2828), + [sym__newline] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_err_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_GT_PIPE] = ACTIONS(2649), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), + [anon_sym_DOT_DOT_LT] = ACTIONS(2844), + [aux_sym__val_number_decimal_token1] = ACTIONS(2846), + [aux_sym__val_number_decimal_token2] = ACTIONS(2848), + [aux_sym__val_number_decimal_token3] = ACTIONS(2850), + [aux_sym__val_number_decimal_token4] = ACTIONS(2852), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2870), [anon_sym_POUND] = ACTIONS(247), }, [711] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7219), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7494), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1443), + [sym_val_range] = STATE(1821), + [sym__val_range] = STATE(7461), + [sym__val_range_with_end] = STATE(7212), + [sym__value] = STATE(1821), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(1455), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1148), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym__flag] = STATE(1821), + [sym_short_flag] = STATE(1953), + [sym_long_flag] = STATE(1953), + [sym_unquoted] = STATE(1507), + [sym__unquoted_with_expr] = STATE(1829), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(711), - [aux_sym_shebang_repeat1] = STATE(737), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_null] = ACTIONS(2826), + [aux_sym_cmd_identifier_token38] = ACTIONS(2828), + [aux_sym_cmd_identifier_token39] = ACTIONS(2828), + [aux_sym_cmd_identifier_token40] = ACTIONS(2828), + [sym__newline] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2739), + [anon_sym_err_GT_PIPE] = ACTIONS(2739), + [anon_sym_out_GT_PIPE] = ACTIONS(2739), + [anon_sym_e_GT_PIPE] = ACTIONS(2739), + [anon_sym_o_GT_PIPE] = ACTIONS(2739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), + [anon_sym_DOT_DOT_LT] = ACTIONS(2844), + [aux_sym__val_number_decimal_token1] = ACTIONS(2846), + [aux_sym__val_number_decimal_token2] = ACTIONS(2848), + [aux_sym__val_number_decimal_token3] = ACTIONS(2850), + [aux_sym__val_number_decimal_token4] = ACTIONS(2852), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2870), [anon_sym_POUND] = ACTIONS(247), }, [712] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7232), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7510), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1443), + [sym_val_range] = STATE(1821), + [sym__val_range] = STATE(7461), + [sym__val_range_with_end] = STATE(7212), + [sym__value] = STATE(1821), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(1455), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1148), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym__flag] = STATE(1821), + [sym_short_flag] = STATE(1953), + [sym_long_flag] = STATE(1953), + [sym_unquoted] = STATE(1507), + [sym__unquoted_with_expr] = STATE(1829), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(712), - [aux_sym_shebang_repeat1] = STATE(739), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_null] = ACTIONS(2826), + [aux_sym_cmd_identifier_token38] = ACTIONS(2828), + [aux_sym_cmd_identifier_token39] = ACTIONS(2828), + [aux_sym_cmd_identifier_token40] = ACTIONS(2828), + [sym__newline] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_err_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_GT_PIPE] = ACTIONS(2649), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), + [anon_sym_DOT_DOT_LT] = ACTIONS(2844), + [aux_sym__val_number_decimal_token1] = ACTIONS(2846), + [aux_sym__val_number_decimal_token2] = ACTIONS(2848), + [aux_sym__val_number_decimal_token3] = ACTIONS(2850), + [aux_sym__val_number_decimal_token4] = ACTIONS(2852), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2870), [anon_sym_POUND] = ACTIONS(247), }, [713] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7239), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7576), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1443), + [sym_val_range] = STATE(1821), + [sym__val_range] = STATE(7461), + [sym__val_range_with_end] = STATE(7212), + [sym__value] = STATE(1821), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(1455), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1148), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym__flag] = STATE(1821), + [sym_short_flag] = STATE(1953), + [sym_long_flag] = STATE(1953), + [sym_unquoted] = STATE(1507), + [sym__unquoted_with_expr] = STATE(1829), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(713), - [aux_sym_shebang_repeat1] = STATE(740), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [anon_sym_null] = ACTIONS(2875), + [aux_sym_cmd_identifier_token38] = ACTIONS(2878), + [aux_sym_cmd_identifier_token39] = ACTIONS(2878), + [aux_sym_cmd_identifier_token40] = ACTIONS(2878), + [sym__newline] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_err_GT_PIPE] = ACTIONS(2668), + [anon_sym_out_GT_PIPE] = ACTIONS(2668), + [anon_sym_e_GT_PIPE] = ACTIONS(2668), + [anon_sym_o_GT_PIPE] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_DOT_DOT] = ACTIONS(2899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT] = ACTIONS(2902), + [aux_sym__val_number_decimal_token1] = ACTIONS(2905), + [aux_sym__val_number_decimal_token2] = ACTIONS(2908), + [aux_sym__val_number_decimal_token3] = ACTIONS(2911), + [aux_sym__val_number_decimal_token4] = ACTIONS(2914), + [aux_sym__val_number_token1] = ACTIONS(2917), + [aux_sym__val_number_token2] = ACTIONS(2917), + [aux_sym__val_number_token3] = ACTIONS(2917), + [anon_sym_0b] = ACTIONS(2920), + [anon_sym_0o] = ACTIONS(2923), + [anon_sym_0x] = ACTIONS(2923), + [sym_val_date] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2929), + [sym__str_single_quotes] = ACTIONS(2932), + [sym__str_back_ticks] = ACTIONS(2932), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2733), + [anon_sym_out_GT_GT] = ACTIONS(2733), + [anon_sym_e_GT_GT] = ACTIONS(2733), + [anon_sym_o_GT_GT] = ACTIONS(2733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2733), + [aux_sym_unquoted_token1] = ACTIONS(2941), [anon_sym_POUND] = ACTIONS(247), }, [714] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7258), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7618), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(1443), + [sym_val_range] = STATE(1821), + [sym__val_range] = STATE(7461), + [sym__val_range_with_end] = STATE(7212), + [sym__value] = STATE(1821), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(1455), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1148), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym__flag] = STATE(1821), + [sym_short_flag] = STATE(1953), + [sym_long_flag] = STATE(1953), + [sym_unquoted] = STATE(1507), + [sym__unquoted_with_expr] = STATE(1829), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(714), - [aux_sym_shebang_repeat1] = STATE(719), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_ctrl_do_repeat2] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_null] = ACTIONS(2826), + [aux_sym_cmd_identifier_token38] = ACTIONS(2828), + [aux_sym_cmd_identifier_token39] = ACTIONS(2828), + [aux_sym_cmd_identifier_token40] = ACTIONS(2828), + [sym__newline] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2601), + [anon_sym_err_GT_PIPE] = ACTIONS(2601), + [anon_sym_out_GT_PIPE] = ACTIONS(2601), + [anon_sym_e_GT_PIPE] = ACTIONS(2601), + [anon_sym_o_GT_PIPE] = ACTIONS(2601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), + [anon_sym_DOT_DOT_LT] = ACTIONS(2844), + [aux_sym__val_number_decimal_token1] = ACTIONS(2846), + [aux_sym__val_number_decimal_token2] = ACTIONS(2848), + [aux_sym__val_number_decimal_token3] = ACTIONS(2850), + [aux_sym__val_number_decimal_token4] = ACTIONS(2852), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2870), [anon_sym_POUND] = ACTIONS(247), }, [715] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7265), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7656), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [aux_sym__pipe_separator] = STATE(717), [sym_comment] = STATE(715), - [aux_sym_shebang_repeat1] = STATE(723), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(5192), + [aux_sym_cmd_identifier_token1] = ACTIONS(2944), + [aux_sym_cmd_identifier_token2] = ACTIONS(2946), + [aux_sym_cmd_identifier_token3] = ACTIONS(2946), + [aux_sym_cmd_identifier_token4] = ACTIONS(2946), + [aux_sym_cmd_identifier_token5] = ACTIONS(2946), + [aux_sym_cmd_identifier_token6] = ACTIONS(2946), + [aux_sym_cmd_identifier_token7] = ACTIONS(2946), + [aux_sym_cmd_identifier_token8] = ACTIONS(2946), + [aux_sym_cmd_identifier_token9] = ACTIONS(2944), + [aux_sym_cmd_identifier_token10] = ACTIONS(2946), + [aux_sym_cmd_identifier_token11] = ACTIONS(2946), + [aux_sym_cmd_identifier_token12] = ACTIONS(2946), + [aux_sym_cmd_identifier_token13] = ACTIONS(2944), + [aux_sym_cmd_identifier_token14] = ACTIONS(2946), + [aux_sym_cmd_identifier_token15] = ACTIONS(2944), + [aux_sym_cmd_identifier_token16] = ACTIONS(2946), + [aux_sym_cmd_identifier_token17] = ACTIONS(2946), + [aux_sym_cmd_identifier_token18] = ACTIONS(2946), + [aux_sym_cmd_identifier_token19] = ACTIONS(2946), + [aux_sym_cmd_identifier_token20] = ACTIONS(2946), + [aux_sym_cmd_identifier_token21] = ACTIONS(2946), + [aux_sym_cmd_identifier_token22] = ACTIONS(2944), + [aux_sym_cmd_identifier_token23] = ACTIONS(2944), + [aux_sym_cmd_identifier_token24] = ACTIONS(2946), + [aux_sym_cmd_identifier_token25] = ACTIONS(2944), + [aux_sym_cmd_identifier_token26] = ACTIONS(2946), + [aux_sym_cmd_identifier_token27] = ACTIONS(2944), + [aux_sym_cmd_identifier_token28] = ACTIONS(2944), + [aux_sym_cmd_identifier_token29] = ACTIONS(2944), + [aux_sym_cmd_identifier_token30] = ACTIONS(2944), + [aux_sym_cmd_identifier_token31] = ACTIONS(2946), + [aux_sym_cmd_identifier_token32] = ACTIONS(2946), + [aux_sym_cmd_identifier_token33] = ACTIONS(2946), + [aux_sym_cmd_identifier_token34] = ACTIONS(2946), + [aux_sym_cmd_identifier_token35] = ACTIONS(2946), + [aux_sym_cmd_identifier_token36] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2946), + [anon_sym_false] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2946), + [aux_sym_cmd_identifier_token38] = ACTIONS(2944), + [aux_sym_cmd_identifier_token39] = ACTIONS(2946), + [aux_sym_cmd_identifier_token40] = ACTIONS(2946), + [sym__newline] = ACTIONS(2948), + [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_LBRACK] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_where] = ACTIONS(2946), + [aux_sym_expr_unary_token1] = ACTIONS(2946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2946), + [anon_sym_DOT_DOT_LT] = ACTIONS(2946), + [aux_sym__val_number_decimal_token1] = ACTIONS(2944), + [aux_sym__val_number_decimal_token2] = ACTIONS(2946), + [aux_sym__val_number_decimal_token3] = ACTIONS(2946), + [aux_sym__val_number_decimal_token4] = ACTIONS(2946), + [aux_sym__val_number_token1] = ACTIONS(2946), + [aux_sym__val_number_token2] = ACTIONS(2946), + [aux_sym__val_number_token3] = ACTIONS(2946), + [anon_sym_0b] = ACTIONS(2944), + [anon_sym_0o] = ACTIONS(2944), + [anon_sym_0x] = ACTIONS(2944), + [sym_val_date] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2946), + [sym__str_back_ticks] = ACTIONS(2946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2946), + [aux_sym_env_var_token1] = ACTIONS(2944), + [anon_sym_CARET] = ACTIONS(2946), [anon_sym_POUND] = ACTIONS(247), }, [716] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7150), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7526), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [aux_sym__pipe_separator] = STATE(717), [sym_comment] = STATE(716), - [aux_sym_shebang_repeat1] = STATE(728), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(718), + [aux_sym_cmd_identifier_token1] = ACTIONS(2952), + [aux_sym_cmd_identifier_token2] = ACTIONS(2954), + [aux_sym_cmd_identifier_token3] = ACTIONS(2954), + [aux_sym_cmd_identifier_token4] = ACTIONS(2954), + [aux_sym_cmd_identifier_token5] = ACTIONS(2954), + [aux_sym_cmd_identifier_token6] = ACTIONS(2954), + [aux_sym_cmd_identifier_token7] = ACTIONS(2954), + [aux_sym_cmd_identifier_token8] = ACTIONS(2954), + [aux_sym_cmd_identifier_token9] = ACTIONS(2952), + [aux_sym_cmd_identifier_token10] = ACTIONS(2954), + [aux_sym_cmd_identifier_token11] = ACTIONS(2954), + [aux_sym_cmd_identifier_token12] = ACTIONS(2954), + [aux_sym_cmd_identifier_token13] = ACTIONS(2952), + [aux_sym_cmd_identifier_token14] = ACTIONS(2954), + [aux_sym_cmd_identifier_token15] = ACTIONS(2952), + [aux_sym_cmd_identifier_token16] = ACTIONS(2954), + [aux_sym_cmd_identifier_token17] = ACTIONS(2954), + [aux_sym_cmd_identifier_token18] = ACTIONS(2954), + [aux_sym_cmd_identifier_token19] = ACTIONS(2954), + [aux_sym_cmd_identifier_token20] = ACTIONS(2954), + [aux_sym_cmd_identifier_token21] = ACTIONS(2954), + [aux_sym_cmd_identifier_token22] = ACTIONS(2952), + [aux_sym_cmd_identifier_token23] = ACTIONS(2952), + [aux_sym_cmd_identifier_token24] = ACTIONS(2954), + [aux_sym_cmd_identifier_token25] = ACTIONS(2952), + [aux_sym_cmd_identifier_token26] = ACTIONS(2954), + [aux_sym_cmd_identifier_token27] = ACTIONS(2952), + [aux_sym_cmd_identifier_token28] = ACTIONS(2952), + [aux_sym_cmd_identifier_token29] = ACTIONS(2952), + [aux_sym_cmd_identifier_token30] = ACTIONS(2952), + [aux_sym_cmd_identifier_token31] = ACTIONS(2954), + [aux_sym_cmd_identifier_token32] = ACTIONS(2954), + [aux_sym_cmd_identifier_token33] = ACTIONS(2954), + [aux_sym_cmd_identifier_token34] = ACTIONS(2954), + [aux_sym_cmd_identifier_token35] = ACTIONS(2954), + [aux_sym_cmd_identifier_token36] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2954), + [anon_sym_false] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2954), + [aux_sym_cmd_identifier_token38] = ACTIONS(2952), + [aux_sym_cmd_identifier_token39] = ACTIONS(2954), + [aux_sym_cmd_identifier_token40] = ACTIONS(2954), + [sym__newline] = ACTIONS(2956), + [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_LBRACK] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_DOLLAR] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_where] = ACTIONS(2954), + [aux_sym_expr_unary_token1] = ACTIONS(2954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2954), + [anon_sym_DOT_DOT_LT] = ACTIONS(2954), + [aux_sym__val_number_decimal_token1] = ACTIONS(2952), + [aux_sym__val_number_decimal_token2] = ACTIONS(2954), + [aux_sym__val_number_decimal_token3] = ACTIONS(2954), + [aux_sym__val_number_decimal_token4] = ACTIONS(2954), + [aux_sym__val_number_token1] = ACTIONS(2954), + [aux_sym__val_number_token2] = ACTIONS(2954), + [aux_sym__val_number_token3] = ACTIONS(2954), + [anon_sym_0b] = ACTIONS(2952), + [anon_sym_0o] = ACTIONS(2952), + [anon_sym_0x] = ACTIONS(2952), + [sym_val_date] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym__str_single_quotes] = ACTIONS(2954), + [sym__str_back_ticks] = ACTIONS(2954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2954), + [aux_sym_env_var_token1] = ACTIONS(2952), + [anon_sym_CARET] = ACTIONS(2954), [anon_sym_POUND] = ACTIONS(247), }, [717] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_list_body] = STATE(7711), - [sym_val_entry] = STATE(7059), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [aux_sym__pipe_separator] = STATE(717), [sym_comment] = STATE(717), - [aux_sym_shebang_repeat1] = STATE(721), - [aux_sym_list_body_repeat1] = STATE(743), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(5192), + [aux_sym_cmd_identifier_token1] = ACTIONS(2958), + [aux_sym_cmd_identifier_token2] = ACTIONS(2960), + [aux_sym_cmd_identifier_token3] = ACTIONS(2960), + [aux_sym_cmd_identifier_token4] = ACTIONS(2960), + [aux_sym_cmd_identifier_token5] = ACTIONS(2960), + [aux_sym_cmd_identifier_token6] = ACTIONS(2960), + [aux_sym_cmd_identifier_token7] = ACTIONS(2960), + [aux_sym_cmd_identifier_token8] = ACTIONS(2960), + [aux_sym_cmd_identifier_token9] = ACTIONS(2958), + [aux_sym_cmd_identifier_token10] = ACTIONS(2960), + [aux_sym_cmd_identifier_token11] = ACTIONS(2960), + [aux_sym_cmd_identifier_token12] = ACTIONS(2960), + [aux_sym_cmd_identifier_token13] = ACTIONS(2958), + [aux_sym_cmd_identifier_token14] = ACTIONS(2960), + [aux_sym_cmd_identifier_token15] = ACTIONS(2958), + [aux_sym_cmd_identifier_token16] = ACTIONS(2960), + [aux_sym_cmd_identifier_token17] = ACTIONS(2960), + [aux_sym_cmd_identifier_token18] = ACTIONS(2960), + [aux_sym_cmd_identifier_token19] = ACTIONS(2960), + [aux_sym_cmd_identifier_token20] = ACTIONS(2960), + [aux_sym_cmd_identifier_token21] = ACTIONS(2960), + [aux_sym_cmd_identifier_token22] = ACTIONS(2958), + [aux_sym_cmd_identifier_token23] = ACTIONS(2958), + [aux_sym_cmd_identifier_token24] = ACTIONS(2960), + [aux_sym_cmd_identifier_token25] = ACTIONS(2958), + [aux_sym_cmd_identifier_token26] = ACTIONS(2960), + [aux_sym_cmd_identifier_token27] = ACTIONS(2958), + [aux_sym_cmd_identifier_token28] = ACTIONS(2958), + [aux_sym_cmd_identifier_token29] = ACTIONS(2958), + [aux_sym_cmd_identifier_token30] = ACTIONS(2958), + [aux_sym_cmd_identifier_token31] = ACTIONS(2960), + [aux_sym_cmd_identifier_token32] = ACTIONS(2960), + [aux_sym_cmd_identifier_token33] = ACTIONS(2960), + [aux_sym_cmd_identifier_token34] = ACTIONS(2960), + [aux_sym_cmd_identifier_token35] = ACTIONS(2960), + [aux_sym_cmd_identifier_token36] = ACTIONS(2958), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [aux_sym_cmd_identifier_token38] = ACTIONS(2958), + [aux_sym_cmd_identifier_token39] = ACTIONS(2960), + [aux_sym_cmd_identifier_token40] = ACTIONS(2960), + [sym__newline] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_err_GT_PIPE] = ACTIONS(2965), + [anon_sym_out_GT_PIPE] = ACTIONS(2965), + [anon_sym_e_GT_PIPE] = ACTIONS(2965), + [anon_sym_o_GT_PIPE] = ACTIONS(2965), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2965), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2965), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2965), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_do] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_DOT_DOT] = ACTIONS(2958), + [anon_sym_try] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_where] = ACTIONS(2960), + [aux_sym_expr_unary_token1] = ACTIONS(2960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2960), + [anon_sym_DOT_DOT_LT] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2958), + [aux_sym__val_number_decimal_token2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token3] = ACTIONS(2960), + [aux_sym__val_number_decimal_token4] = ACTIONS(2960), + [aux_sym__val_number_token1] = ACTIONS(2960), + [aux_sym__val_number_token2] = ACTIONS(2960), + [aux_sym__val_number_token3] = ACTIONS(2960), + [anon_sym_0b] = ACTIONS(2958), + [anon_sym_0o] = ACTIONS(2958), + [anon_sym_0x] = ACTIONS(2958), + [sym_val_date] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(2960), + [sym__str_single_quotes] = ACTIONS(2960), + [sym__str_back_ticks] = ACTIONS(2960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), + [aux_sym_env_var_token1] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2960), [anon_sym_POUND] = ACTIONS(247), }, [718] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7191), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(718), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(719), + [aux_sym_cmd_identifier_token1] = ACTIONS(2968), + [aux_sym_cmd_identifier_token2] = ACTIONS(2970), + [aux_sym_cmd_identifier_token3] = ACTIONS(2970), + [aux_sym_cmd_identifier_token4] = ACTIONS(2970), + [aux_sym_cmd_identifier_token5] = ACTIONS(2970), + [aux_sym_cmd_identifier_token6] = ACTIONS(2970), + [aux_sym_cmd_identifier_token7] = ACTIONS(2970), + [aux_sym_cmd_identifier_token8] = ACTIONS(2970), + [aux_sym_cmd_identifier_token9] = ACTIONS(2968), + [aux_sym_cmd_identifier_token10] = ACTIONS(2970), + [aux_sym_cmd_identifier_token11] = ACTIONS(2970), + [aux_sym_cmd_identifier_token12] = ACTIONS(2970), + [aux_sym_cmd_identifier_token13] = ACTIONS(2968), + [aux_sym_cmd_identifier_token14] = ACTIONS(2970), + [aux_sym_cmd_identifier_token15] = ACTIONS(2968), + [aux_sym_cmd_identifier_token16] = ACTIONS(2970), + [aux_sym_cmd_identifier_token17] = ACTIONS(2970), + [aux_sym_cmd_identifier_token18] = ACTIONS(2970), + [aux_sym_cmd_identifier_token19] = ACTIONS(2970), + [aux_sym_cmd_identifier_token20] = ACTIONS(2970), + [aux_sym_cmd_identifier_token21] = ACTIONS(2970), + [aux_sym_cmd_identifier_token22] = ACTIONS(2968), + [aux_sym_cmd_identifier_token23] = ACTIONS(2968), + [aux_sym_cmd_identifier_token24] = ACTIONS(2970), + [aux_sym_cmd_identifier_token25] = ACTIONS(2968), + [aux_sym_cmd_identifier_token26] = ACTIONS(2970), + [aux_sym_cmd_identifier_token27] = ACTIONS(2968), + [aux_sym_cmd_identifier_token28] = ACTIONS(2968), + [aux_sym_cmd_identifier_token29] = ACTIONS(2968), + [aux_sym_cmd_identifier_token30] = ACTIONS(2968), + [aux_sym_cmd_identifier_token31] = ACTIONS(2970), + [aux_sym_cmd_identifier_token32] = ACTIONS(2970), + [aux_sym_cmd_identifier_token33] = ACTIONS(2970), + [aux_sym_cmd_identifier_token34] = ACTIONS(2970), + [aux_sym_cmd_identifier_token35] = ACTIONS(2970), + [aux_sym_cmd_identifier_token36] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2970), + [anon_sym_false] = ACTIONS(2970), + [anon_sym_null] = ACTIONS(2970), + [aux_sym_cmd_identifier_token38] = ACTIONS(2968), + [aux_sym_cmd_identifier_token39] = ACTIONS(2970), + [aux_sym_cmd_identifier_token40] = ACTIONS(2970), + [sym__newline] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_err_GT_PIPE] = ACTIONS(2972), + [anon_sym_out_GT_PIPE] = ACTIONS(2972), + [anon_sym_e_GT_PIPE] = ACTIONS(2972), + [anon_sym_o_GT_PIPE] = ACTIONS(2972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_DOLLAR] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_do] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_DOT_DOT] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_where] = ACTIONS(2970), + [aux_sym_expr_unary_token1] = ACTIONS(2970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2970), + [anon_sym_DOT_DOT_LT] = ACTIONS(2970), + [aux_sym__val_number_decimal_token1] = ACTIONS(2968), + [aux_sym__val_number_decimal_token2] = ACTIONS(2970), + [aux_sym__val_number_decimal_token3] = ACTIONS(2970), + [aux_sym__val_number_decimal_token4] = ACTIONS(2970), + [aux_sym__val_number_token1] = ACTIONS(2970), + [aux_sym__val_number_token2] = ACTIONS(2970), + [aux_sym__val_number_token3] = ACTIONS(2970), + [anon_sym_0b] = ACTIONS(2968), + [anon_sym_0o] = ACTIONS(2968), + [anon_sym_0x] = ACTIONS(2968), + [sym_val_date] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [sym__str_single_quotes] = ACTIONS(2970), + [sym__str_back_ticks] = ACTIONS(2970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [aux_sym_env_var_token1] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2970), [anon_sym_POUND] = ACTIONS(247), }, [719] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7259), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(719), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_shebang_repeat1] = STATE(719), + [aux_sym_cmd_identifier_token1] = ACTIONS(1313), + [aux_sym_cmd_identifier_token2] = ACTIONS(1315), + [aux_sym_cmd_identifier_token3] = ACTIONS(1315), + [aux_sym_cmd_identifier_token4] = ACTIONS(1315), + [aux_sym_cmd_identifier_token5] = ACTIONS(1315), + [aux_sym_cmd_identifier_token6] = ACTIONS(1315), + [aux_sym_cmd_identifier_token7] = ACTIONS(1315), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1313), + [aux_sym_cmd_identifier_token10] = ACTIONS(1315), + [aux_sym_cmd_identifier_token11] = ACTIONS(1315), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1313), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1313), + [aux_sym_cmd_identifier_token16] = ACTIONS(1315), + [aux_sym_cmd_identifier_token17] = ACTIONS(1315), + [aux_sym_cmd_identifier_token18] = ACTIONS(1315), + [aux_sym_cmd_identifier_token19] = ACTIONS(1315), + [aux_sym_cmd_identifier_token20] = ACTIONS(1315), + [aux_sym_cmd_identifier_token21] = ACTIONS(1315), + [aux_sym_cmd_identifier_token22] = ACTIONS(1313), + [aux_sym_cmd_identifier_token23] = ACTIONS(1313), + [aux_sym_cmd_identifier_token24] = ACTIONS(1315), + [aux_sym_cmd_identifier_token25] = ACTIONS(1313), + [aux_sym_cmd_identifier_token26] = ACTIONS(1315), + [aux_sym_cmd_identifier_token27] = ACTIONS(1313), + [aux_sym_cmd_identifier_token28] = ACTIONS(1313), + [aux_sym_cmd_identifier_token29] = ACTIONS(1313), + [aux_sym_cmd_identifier_token30] = ACTIONS(1313), + [aux_sym_cmd_identifier_token31] = ACTIONS(1315), + [aux_sym_cmd_identifier_token32] = ACTIONS(1315), + [aux_sym_cmd_identifier_token33] = ACTIONS(1315), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1315), + [aux_sym_cmd_identifier_token36] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_null] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1313), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [sym__newline] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_err_GT_PIPE] = ACTIONS(1315), + [anon_sym_out_GT_PIPE] = ACTIONS(1315), + [anon_sym_e_GT_PIPE] = ACTIONS(1315), + [anon_sym_o_GT_PIPE] = ACTIONS(1315), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1315), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1315), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1315), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_where] = ACTIONS(1315), + [aux_sym_expr_unary_token1] = ACTIONS(1315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_LT] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1315), + [aux_sym__val_number_token1] = ACTIONS(1315), + [aux_sym__val_number_token2] = ACTIONS(1315), + [aux_sym__val_number_token3] = ACTIONS(1315), + [anon_sym_0b] = ACTIONS(1313), + [anon_sym_0o] = ACTIONS(1313), + [anon_sym_0x] = ACTIONS(1313), + [sym_val_date] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym__str_single_quotes] = ACTIONS(1315), + [sym__str_back_ticks] = ACTIONS(1315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), + [aux_sym_env_var_token1] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(247), }, [720] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7216), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(720), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_cmd_identifier_token1] = ACTIONS(2958), + [aux_sym_cmd_identifier_token2] = ACTIONS(2960), + [aux_sym_cmd_identifier_token3] = ACTIONS(2960), + [aux_sym_cmd_identifier_token4] = ACTIONS(2960), + [aux_sym_cmd_identifier_token5] = ACTIONS(2960), + [aux_sym_cmd_identifier_token6] = ACTIONS(2960), + [aux_sym_cmd_identifier_token7] = ACTIONS(2960), + [aux_sym_cmd_identifier_token8] = ACTIONS(2960), + [aux_sym_cmd_identifier_token9] = ACTIONS(2958), + [aux_sym_cmd_identifier_token10] = ACTIONS(2960), + [aux_sym_cmd_identifier_token11] = ACTIONS(2960), + [aux_sym_cmd_identifier_token12] = ACTIONS(2960), + [aux_sym_cmd_identifier_token13] = ACTIONS(2958), + [aux_sym_cmd_identifier_token14] = ACTIONS(2960), + [aux_sym_cmd_identifier_token15] = ACTIONS(2958), + [aux_sym_cmd_identifier_token16] = ACTIONS(2960), + [aux_sym_cmd_identifier_token17] = ACTIONS(2960), + [aux_sym_cmd_identifier_token18] = ACTIONS(2960), + [aux_sym_cmd_identifier_token19] = ACTIONS(2960), + [aux_sym_cmd_identifier_token20] = ACTIONS(2960), + [aux_sym_cmd_identifier_token21] = ACTIONS(2960), + [aux_sym_cmd_identifier_token22] = ACTIONS(2958), + [aux_sym_cmd_identifier_token23] = ACTIONS(2958), + [aux_sym_cmd_identifier_token24] = ACTIONS(2960), + [aux_sym_cmd_identifier_token25] = ACTIONS(2958), + [aux_sym_cmd_identifier_token26] = ACTIONS(2960), + [aux_sym_cmd_identifier_token27] = ACTIONS(2958), + [aux_sym_cmd_identifier_token28] = ACTIONS(2958), + [aux_sym_cmd_identifier_token29] = ACTIONS(2958), + [aux_sym_cmd_identifier_token30] = ACTIONS(2958), + [aux_sym_cmd_identifier_token31] = ACTIONS(2960), + [aux_sym_cmd_identifier_token32] = ACTIONS(2960), + [aux_sym_cmd_identifier_token33] = ACTIONS(2960), + [aux_sym_cmd_identifier_token34] = ACTIONS(2960), + [aux_sym_cmd_identifier_token35] = ACTIONS(2960), + [aux_sym_cmd_identifier_token36] = ACTIONS(2958), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [aux_sym_cmd_identifier_token38] = ACTIONS(2958), + [aux_sym_cmd_identifier_token39] = ACTIONS(2960), + [aux_sym_cmd_identifier_token40] = ACTIONS(2960), + [sym__newline] = ACTIONS(2960), + [anon_sym_PIPE] = ACTIONS(2960), + [anon_sym_err_GT_PIPE] = ACTIONS(2960), + [anon_sym_out_GT_PIPE] = ACTIONS(2960), + [anon_sym_e_GT_PIPE] = ACTIONS(2960), + [anon_sym_o_GT_PIPE] = ACTIONS(2960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_do] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_DOT_DOT] = ACTIONS(2958), + [anon_sym_try] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_where] = ACTIONS(2960), + [aux_sym_expr_unary_token1] = ACTIONS(2960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2960), + [anon_sym_DOT_DOT_LT] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2958), + [aux_sym__val_number_decimal_token2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token3] = ACTIONS(2960), + [aux_sym__val_number_decimal_token4] = ACTIONS(2960), + [aux_sym__val_number_token1] = ACTIONS(2960), + [aux_sym__val_number_token2] = ACTIONS(2960), + [aux_sym__val_number_token3] = ACTIONS(2960), + [anon_sym_0b] = ACTIONS(2958), + [anon_sym_0o] = ACTIONS(2958), + [anon_sym_0x] = ACTIONS(2958), + [sym_val_date] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(2960), + [sym__str_single_quotes] = ACTIONS(2960), + [sym__str_back_ticks] = ACTIONS(2960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), + [aux_sym_env_var_token1] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2960), [anon_sym_POUND] = ACTIONS(247), }, [721] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(721), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_cmd_identifier_token1] = ACTIONS(2977), + [aux_sym_cmd_identifier_token2] = ACTIONS(2979), + [aux_sym_cmd_identifier_token3] = ACTIONS(2979), + [aux_sym_cmd_identifier_token4] = ACTIONS(2979), + [aux_sym_cmd_identifier_token5] = ACTIONS(2979), + [aux_sym_cmd_identifier_token6] = ACTIONS(2979), + [aux_sym_cmd_identifier_token7] = ACTIONS(2979), + [aux_sym_cmd_identifier_token8] = ACTIONS(2979), + [aux_sym_cmd_identifier_token9] = ACTIONS(2977), + [aux_sym_cmd_identifier_token10] = ACTIONS(2979), + [aux_sym_cmd_identifier_token11] = ACTIONS(2979), + [aux_sym_cmd_identifier_token12] = ACTIONS(2979), + [aux_sym_cmd_identifier_token13] = ACTIONS(2977), + [aux_sym_cmd_identifier_token14] = ACTIONS(2979), + [aux_sym_cmd_identifier_token15] = ACTIONS(2977), + [aux_sym_cmd_identifier_token16] = ACTIONS(2979), + [aux_sym_cmd_identifier_token17] = ACTIONS(2979), + [aux_sym_cmd_identifier_token18] = ACTIONS(2979), + [aux_sym_cmd_identifier_token19] = ACTIONS(2979), + [aux_sym_cmd_identifier_token20] = ACTIONS(2979), + [aux_sym_cmd_identifier_token21] = ACTIONS(2979), + [aux_sym_cmd_identifier_token22] = ACTIONS(2977), + [aux_sym_cmd_identifier_token23] = ACTIONS(2977), + [aux_sym_cmd_identifier_token24] = ACTIONS(2979), + [aux_sym_cmd_identifier_token25] = ACTIONS(2977), + [aux_sym_cmd_identifier_token26] = ACTIONS(2979), + [aux_sym_cmd_identifier_token27] = ACTIONS(2977), + [aux_sym_cmd_identifier_token28] = ACTIONS(2977), + [aux_sym_cmd_identifier_token29] = ACTIONS(2977), + [aux_sym_cmd_identifier_token30] = ACTIONS(2977), + [aux_sym_cmd_identifier_token31] = ACTIONS(2979), + [aux_sym_cmd_identifier_token32] = ACTIONS(2979), + [aux_sym_cmd_identifier_token33] = ACTIONS(2979), + [aux_sym_cmd_identifier_token34] = ACTIONS(2979), + [aux_sym_cmd_identifier_token35] = ACTIONS(2979), + [aux_sym_cmd_identifier_token36] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2979), + [aux_sym_cmd_identifier_token38] = ACTIONS(2977), + [aux_sym_cmd_identifier_token39] = ACTIONS(2979), + [aux_sym_cmd_identifier_token40] = ACTIONS(2979), + [sym__newline] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2979), + [anon_sym_err_GT_PIPE] = ACTIONS(2979), + [anon_sym_out_GT_PIPE] = ACTIONS(2979), + [anon_sym_e_GT_PIPE] = ACTIONS(2979), + [anon_sym_o_GT_PIPE] = ACTIONS(2979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_DOLLAR] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_DOT_DOT] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_where] = ACTIONS(2979), + [aux_sym_expr_unary_token1] = ACTIONS(2979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2979), + [anon_sym_DOT_DOT_LT] = ACTIONS(2979), + [aux_sym__val_number_decimal_token1] = ACTIONS(2977), + [aux_sym__val_number_decimal_token2] = ACTIONS(2979), + [aux_sym__val_number_decimal_token3] = ACTIONS(2979), + [aux_sym__val_number_decimal_token4] = ACTIONS(2979), + [aux_sym__val_number_token1] = ACTIONS(2979), + [aux_sym__val_number_token2] = ACTIONS(2979), + [aux_sym__val_number_token3] = ACTIONS(2979), + [anon_sym_0b] = ACTIONS(2977), + [anon_sym_0o] = ACTIONS(2977), + [anon_sym_0x] = ACTIONS(2977), + [sym_val_date] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym__str_single_quotes] = ACTIONS(2979), + [sym__str_back_ticks] = ACTIONS(2979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), + [aux_sym_env_var_token1] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2979), [anon_sym_POUND] = ACTIONS(247), }, [722] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7253), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(722), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_cmd_identifier_token1] = ACTIONS(1311), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1311), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1311), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1311), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1311), + [aux_sym_cmd_identifier_token23] = ACTIONS(1311), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1311), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1311), + [aux_sym_cmd_identifier_token28] = ACTIONS(1311), + [aux_sym_cmd_identifier_token29] = ACTIONS(1311), + [aux_sym_cmd_identifier_token30] = ACTIONS(1311), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_err_GT_PIPE] = ACTIONS(1307), + [anon_sym_out_GT_PIPE] = ACTIONS(1307), + [anon_sym_e_GT_PIPE] = ACTIONS(1307), + [anon_sym_o_GT_PIPE] = ACTIONS(1307), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1307), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1307), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1307), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_where] = ACTIONS(1307), + [aux_sym_expr_unary_token1] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1307), + [aux_sym__val_number_decimal_token3] = ACTIONS(1307), + [aux_sym__val_number_decimal_token4] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1311), + [anon_sym_0o] = ACTIONS(1311), + [anon_sym_0x] = ACTIONS(1311), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [aux_sym_env_var_token1] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(247), }, [723] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7266), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(723), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym_cmd_identifier_token1] = ACTIONS(2981), + [aux_sym_cmd_identifier_token2] = ACTIONS(2983), + [aux_sym_cmd_identifier_token3] = ACTIONS(2983), + [aux_sym_cmd_identifier_token4] = ACTIONS(2983), + [aux_sym_cmd_identifier_token5] = ACTIONS(2983), + [aux_sym_cmd_identifier_token6] = ACTIONS(2983), + [aux_sym_cmd_identifier_token7] = ACTIONS(2983), + [aux_sym_cmd_identifier_token8] = ACTIONS(2983), + [aux_sym_cmd_identifier_token9] = ACTIONS(2981), + [aux_sym_cmd_identifier_token10] = ACTIONS(2983), + [aux_sym_cmd_identifier_token11] = ACTIONS(2983), + [aux_sym_cmd_identifier_token12] = ACTIONS(2983), + [aux_sym_cmd_identifier_token13] = ACTIONS(2981), + [aux_sym_cmd_identifier_token14] = ACTIONS(2983), + [aux_sym_cmd_identifier_token15] = ACTIONS(2981), + [aux_sym_cmd_identifier_token16] = ACTIONS(2983), + [aux_sym_cmd_identifier_token17] = ACTIONS(2983), + [aux_sym_cmd_identifier_token18] = ACTIONS(2983), + [aux_sym_cmd_identifier_token19] = ACTIONS(2983), + [aux_sym_cmd_identifier_token20] = ACTIONS(2983), + [aux_sym_cmd_identifier_token21] = ACTIONS(2983), + [aux_sym_cmd_identifier_token22] = ACTIONS(2981), + [aux_sym_cmd_identifier_token23] = ACTIONS(2981), + [aux_sym_cmd_identifier_token24] = ACTIONS(2983), + [aux_sym_cmd_identifier_token25] = ACTIONS(2981), + [aux_sym_cmd_identifier_token26] = ACTIONS(2983), + [aux_sym_cmd_identifier_token27] = ACTIONS(2981), + [aux_sym_cmd_identifier_token28] = ACTIONS(2981), + [aux_sym_cmd_identifier_token29] = ACTIONS(2981), + [aux_sym_cmd_identifier_token30] = ACTIONS(2981), + [aux_sym_cmd_identifier_token31] = ACTIONS(2983), + [aux_sym_cmd_identifier_token32] = ACTIONS(2983), + [aux_sym_cmd_identifier_token33] = ACTIONS(2983), + [aux_sym_cmd_identifier_token34] = ACTIONS(2983), + [aux_sym_cmd_identifier_token35] = ACTIONS(2983), + [aux_sym_cmd_identifier_token36] = ACTIONS(2981), + [anon_sym_true] = ACTIONS(2983), + [anon_sym_false] = ACTIONS(2983), + [anon_sym_null] = ACTIONS(2983), + [aux_sym_cmd_identifier_token38] = ACTIONS(2981), + [aux_sym_cmd_identifier_token39] = ACTIONS(2983), + [aux_sym_cmd_identifier_token40] = ACTIONS(2983), + [sym__newline] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_err_GT_PIPE] = ACTIONS(1307), + [anon_sym_out_GT_PIPE] = ACTIONS(1307), + [anon_sym_e_GT_PIPE] = ACTIONS(1307), + [anon_sym_o_GT_PIPE] = ACTIONS(1307), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1307), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1307), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1307), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_DOLLAR] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_DOT_DOT] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_where] = ACTIONS(2983), + [aux_sym_expr_unary_token1] = ACTIONS(2983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2983), + [anon_sym_DOT_DOT_LT] = ACTIONS(2983), + [aux_sym__val_number_decimal_token1] = ACTIONS(2981), + [aux_sym__val_number_decimal_token2] = ACTIONS(2983), + [aux_sym__val_number_decimal_token3] = ACTIONS(2983), + [aux_sym__val_number_decimal_token4] = ACTIONS(2983), + [aux_sym__val_number_token1] = ACTIONS(2983), + [aux_sym__val_number_token2] = ACTIONS(2983), + [aux_sym__val_number_token3] = ACTIONS(2983), + [anon_sym_0b] = ACTIONS(2981), + [anon_sym_0o] = ACTIONS(2981), + [anon_sym_0x] = ACTIONS(2981), + [sym_val_date] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym__str_single_quotes] = ACTIONS(2983), + [sym__str_back_ticks] = ACTIONS(2983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), + [aux_sym_env_var_token1] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2983), [anon_sym_POUND] = ACTIONS(247), }, [724] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7051), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7057), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7714), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(724), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(751), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [725] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7126), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7049), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7547), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(725), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(761), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [726] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7136), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7086), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7506), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(726), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(765), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [727] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7145), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7672), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(727), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(755), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [728] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7152), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7042), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7422), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(728), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(760), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [729] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7160), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7034), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7509), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(729), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(759), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [730] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7167), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(6926), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7379), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(730), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(757), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [731] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7176), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7093), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7630), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(731), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(766), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [732] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7183), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7680), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(732), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(755), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [733] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7246), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7102), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7471), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(733), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(767), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [734] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7198), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(6926), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7381), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(734), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(757), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [735] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7206), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7078), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7561), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(735), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(764), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [736] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7213), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7109), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7541), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(736), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(768), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [737] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7221), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7006), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7501), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(737), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(756), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [738] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7226), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7124), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7476), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(738), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(770), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [739] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7233), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7679), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(739), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(755), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [740] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(7240), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7287), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7064), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7570), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(740), - [aux_sym_shebang_repeat1] = STATE(2586), - [aux_sym_list_body_repeat1] = STATE(742), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(762), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [741] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(7409), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7132), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7525), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(741), - [aux_sym_list_body_repeat1] = STATE(741), - [anon_sym_true] = ACTIONS(3056), - [anon_sym_false] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3059), - [aux_sym_cmd_identifier_token38] = ACTIONS(3062), - [aux_sym_cmd_identifier_token39] = ACTIONS(3062), - [aux_sym_cmd_identifier_token40] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(3071), - [aux_sym_ctrl_match_token1] = ACTIONS(3074), - [anon_sym_DOT_DOT] = ACTIONS(3077), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3080), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3083), - [anon_sym_DOT_DOT_LT] = ACTIONS(3083), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3086), - [aux_sym__val_number_decimal_token1] = ACTIONS(3089), - [aux_sym__val_number_decimal_token2] = ACTIONS(3092), - [aux_sym__val_number_decimal_token3] = ACTIONS(3095), - [aux_sym__val_number_decimal_token4] = ACTIONS(3098), - [aux_sym__val_number_token1] = ACTIONS(3101), - [aux_sym__val_number_token2] = ACTIONS(3101), - [aux_sym__val_number_token3] = ACTIONS(3101), - [anon_sym_0b] = ACTIONS(3104), - [anon_sym_0o] = ACTIONS(3107), - [anon_sym_0x] = ACTIONS(3107), - [sym_val_date] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3113), - [sym__str_single_quotes] = ACTIONS(3116), - [sym__str_back_ticks] = ACTIONS(3116), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3119), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3122), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3125), - [anon_sym_err_GT] = ACTIONS(3128), - [anon_sym_out_GT] = ACTIONS(3128), - [anon_sym_e_GT] = ACTIONS(3128), - [anon_sym_o_GT] = ACTIONS(3128), - [anon_sym_err_PLUSout_GT] = ACTIONS(3128), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3128), - [anon_sym_o_PLUSe_GT] = ACTIONS(3128), - [anon_sym_e_PLUSo_GT] = ACTIONS(3128), - [anon_sym_err_GT_GT] = ACTIONS(3131), - [anon_sym_out_GT_GT] = ACTIONS(3131), - [anon_sym_e_GT_GT] = ACTIONS(3131), - [anon_sym_o_GT_GT] = ACTIONS(3131), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3131), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3131), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3131), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3131), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3134), + [aux_sym_shebang_repeat1] = STATE(771), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [742] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(6924), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7070), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7595), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(742), - [aux_sym_list_body_repeat1] = STATE(741), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(763), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [743] = { - [sym_expr_parenthesized] = STATE(6013), - [sym__spread_parenthesized] = STATE(7324), - [sym_val_range] = STATE(7325), - [sym__val_range] = STATE(7600), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(7325), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6298), - [sym__spread_variable] = STATE(7327), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5236), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym__spread_list] = STATE(7324), - [sym_val_entry] = STATE(6673), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_list] = STATE(6559), - [sym__unquoted_in_list_with_expr] = STATE(7325), - [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(6901), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7568), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(743), - [aux_sym_list_body_repeat1] = STATE(741), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2976), - [aux_sym_cmd_identifier_token38] = ACTIONS(2978), - [aux_sym_cmd_identifier_token39] = ACTIONS(2978), - [aux_sym_cmd_identifier_token40] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(754), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), - [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2994), - [aux_sym__val_number_decimal_token2] = ACTIONS(2996), - [aux_sym__val_number_decimal_token3] = ACTIONS(2998), - [aux_sym__val_number_decimal_token4] = ACTIONS(3000), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [744] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3156), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1758), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7144), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7574), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(744), - [aux_sym_shebang_repeat1] = STATE(819), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(752), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [745] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3550), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1903), - [sym__unquoted_with_expr] = STATE(2122), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7151), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7615), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(745), - [aux_sym_shebang_repeat1] = STATE(759), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(753), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [746] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3551), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2125), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7381), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(746), - [aux_sym_shebang_repeat1] = STATE(760), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(755), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [747] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3552), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7426), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(747), - [aux_sym_shebang_repeat1] = STATE(761), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(755), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [748] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3553), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1849), - [sym__unquoted_with_expr] = STATE(2045), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7021), + [sym__spread_list] = STATE(7348), + [sym_list_body] = STATE(7632), + [sym_val_entry] = STATE(6844), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(748), - [aux_sym_shebang_repeat1] = STATE(762), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(758), + [aux_sym_parameter_repeat2] = STATE(6485), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [749] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3554), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1758), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(749), - [aux_sym_shebang_repeat1] = STATE(763), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(749), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_null] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [sym__newline] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_err_GT_PIPE] = ACTIONS(1315), + [anon_sym_out_GT_PIPE] = ACTIONS(1315), + [anon_sym_e_GT_PIPE] = ACTIONS(1315), + [anon_sym_o_GT_PIPE] = ACTIONS(1315), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1315), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1315), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1315), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1315), + [anon_sym_COLON] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_any] = ACTIONS(1315), + [anon_sym_binary] = ACTIONS(1315), + [anon_sym_block] = ACTIONS(1315), + [anon_sym_bool] = ACTIONS(1315), + [anon_sym_cell_DASHpath] = ACTIONS(1315), + [anon_sym_closure] = ACTIONS(1315), + [anon_sym_cond] = ACTIONS(1315), + [anon_sym_datetime] = ACTIONS(1315), + [anon_sym_directory] = ACTIONS(1315), + [anon_sym_duration] = ACTIONS(1315), + [anon_sym_error] = ACTIONS(1315), + [anon_sym_expr] = ACTIONS(1315), + [anon_sym_float] = ACTIONS(1315), + [anon_sym_decimal] = ACTIONS(1315), + [anon_sym_filesize] = ACTIONS(1315), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1315), + [anon_sym_glob] = ACTIONS(1315), + [anon_sym_int] = ACTIONS(1315), + [anon_sym_import_DASHpattern] = ACTIONS(1315), + [anon_sym_keyword] = ACTIONS(1315), + [anon_sym_math] = ACTIONS(1315), + [anon_sym_nothing] = ACTIONS(1315), + [anon_sym_number] = ACTIONS(1315), + [anon_sym_one_DASHof] = ACTIONS(1315), + [anon_sym_operator] = ACTIONS(1315), + [anon_sym_path] = ACTIONS(1315), + [anon_sym_range] = ACTIONS(1315), + [anon_sym_signature] = ACTIONS(1315), + [anon_sym_string] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_variable] = ACTIONS(1315), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1315), + [anon_sym_record] = ACTIONS(1315), + [anon_sym_list] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_and] = ACTIONS(1315), + [anon_sym_xor] = ACTIONS(1315), + [anon_sym_or] = ACTIONS(1315), + [aux_sym_expr_unary_token1] = ACTIONS(1315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_LT] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1315), + [aux_sym__val_number_token1] = ACTIONS(1315), + [aux_sym__val_number_token2] = ACTIONS(1315), + [aux_sym__val_number_token3] = ACTIONS(1315), + [anon_sym_0b] = ACTIONS(1313), + [anon_sym_0o] = ACTIONS(1313), + [anon_sym_0x] = ACTIONS(1313), + [sym_val_date] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym__str_single_quotes] = ACTIONS(1315), + [sym__str_back_ticks] = ACTIONS(1315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(247), }, [750] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3555), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1760), - [sym__unquoted_with_expr] = STATE(2133), - [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(750), - [aux_sym_shebang_repeat1] = STATE(764), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1307), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_err_GT_PIPE] = ACTIONS(1307), + [anon_sym_out_GT_PIPE] = ACTIONS(1307), + [anon_sym_e_GT_PIPE] = ACTIONS(1307), + [anon_sym_o_GT_PIPE] = ACTIONS(1307), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1307), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1307), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1307), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1307), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1311), + [anon_sym_any] = ACTIONS(1307), + [anon_sym_binary] = ACTIONS(1307), + [anon_sym_block] = ACTIONS(1307), + [anon_sym_bool] = ACTIONS(1307), + [anon_sym_cell_DASHpath] = ACTIONS(1307), + [anon_sym_closure] = ACTIONS(1307), + [anon_sym_cond] = ACTIONS(1307), + [anon_sym_datetime] = ACTIONS(1307), + [anon_sym_directory] = ACTIONS(1307), + [anon_sym_duration] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_expr] = ACTIONS(1307), + [anon_sym_float] = ACTIONS(1307), + [anon_sym_decimal] = ACTIONS(1307), + [anon_sym_filesize] = ACTIONS(1307), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1307), + [anon_sym_glob] = ACTIONS(1307), + [anon_sym_int] = ACTIONS(1307), + [anon_sym_import_DASHpattern] = ACTIONS(1307), + [anon_sym_keyword] = ACTIONS(1307), + [anon_sym_math] = ACTIONS(1307), + [anon_sym_nothing] = ACTIONS(1307), + [anon_sym_number] = ACTIONS(1307), + [anon_sym_one_DASHof] = ACTIONS(1307), + [anon_sym_operator] = ACTIONS(1307), + [anon_sym_path] = ACTIONS(1307), + [anon_sym_range] = ACTIONS(1307), + [anon_sym_signature] = ACTIONS(1307), + [anon_sym_string] = ACTIONS(1307), + [anon_sym_table] = ACTIONS(1307), + [anon_sym_variable] = ACTIONS(1307), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1307), + [anon_sym_record] = ACTIONS(1307), + [anon_sym_list] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_xor] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1307), + [aux_sym_expr_unary_token1] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1307), + [aux_sym__val_number_decimal_token3] = ACTIONS(1307), + [aux_sym__val_number_decimal_token4] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1311), + [anon_sym_0o] = ACTIONS(1311), + [anon_sym_0x] = ACTIONS(1311), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(247), }, [751] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3556), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1762), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7059), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(751), - [aux_sym_shebang_repeat1] = STATE(765), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [752] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3557), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1764), - [sym__unquoted_with_expr] = STATE(2146), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7145), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(752), - [aux_sym_shebang_repeat1] = STATE(766), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [753] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3558), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1766), - [sym__unquoted_with_expr] = STATE(2079), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7152), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(753), - [aux_sym_shebang_repeat1] = STATE(767), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [754] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3559), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1769), - [sym__unquoted_with_expr] = STATE(2011), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(6684), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(754), - [aux_sym_shebang_repeat1] = STATE(768), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [755] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3560), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1771), - [sym__unquoted_with_expr] = STATE(2032), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(755), - [aux_sym_shebang_repeat1] = STATE(769), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [756] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1890), - [sym__unquoted_with_expr] = STATE(2085), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7009), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(756), - [aux_sym_shebang_repeat1] = STATE(876), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [757] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2148), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1813), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(6950), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(757), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [758] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3563), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1821), - [sym__unquoted_with_expr] = STATE(2037), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7024), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(758), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [759] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3565), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1825), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7035), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(759), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [760] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3567), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1829), - [sym__unquoted_with_expr] = STATE(2088), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7043), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(760), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [761] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3569), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1830), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7051), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(761), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [762] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3571), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1838), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7065), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(762), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [763] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3573), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1842), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7073), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(763), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [764] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3575), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1845), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7080), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(764), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [765] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3577), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2013), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7087), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(765), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [766] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3579), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1854), - [sym__unquoted_with_expr] = STATE(2022), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7095), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(766), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [767] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3581), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2031), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(767), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [768] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3583), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2036), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7110), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(768), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [769] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3585), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2040), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7118), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(769), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [770] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2041), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1871), - [sym__unquoted_with_expr] = STATE(2044), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7125), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(770), - [aux_sym_shebang_repeat1] = STATE(783), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [771] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3586), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2047), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7133), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(771), - [aux_sym_shebang_repeat1] = STATE(784), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [772] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3587), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2050), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(7139), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6710), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(772), - [aux_sym_shebang_repeat1] = STATE(785), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2691), + [aux_sym_list_body_repeat1] = STATE(774), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [sym__newline] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [773] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3588), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1879), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(6713), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(773), - [aux_sym_shebang_repeat1] = STATE(786), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_list_body_repeat1] = STATE(775), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [774] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3589), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1880), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(7174), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(774), - [aux_sym_shebang_repeat1] = STATE(787), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_list_body_repeat1] = STATE(775), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_null] = ACTIONS(2987), + [aux_sym_cmd_identifier_token38] = ACTIONS(2989), + [aux_sym_cmd_identifier_token39] = ACTIONS(2989), + [aux_sym_cmd_identifier_token40] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), + [anon_sym_DOT_DOT_LT] = ACTIONS(3003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(3005), + [aux_sym__val_number_decimal_token2] = ACTIONS(3007), + [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [aux_sym__val_number_decimal_token4] = ACTIONS(3011), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), [anon_sym_POUND] = ACTIONS(247), }, [775] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3590), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(5961), + [sym__spread_parenthesized] = STATE(7348), + [sym_val_range] = STATE(7355), + [sym__val_range] = STATE(7469), + [sym__val_range_with_end] = STATE(7194), + [sym__value] = STATE(7355), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6215), + [sym__spread_variable] = STATE(7195), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5264), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym__spread_list] = STATE(7348), + [sym_val_entry] = STATE(7244), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_list] = STATE(6465), + [sym__unquoted_in_list_with_expr] = STATE(7355), + [sym__unquoted_anonymous_prefix] = STATE(6960), [sym_comment] = STATE(775), - [aux_sym_shebang_repeat1] = STATE(788), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_list_body_repeat1] = STATE(775), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3075), + [aux_sym_cmd_identifier_token38] = ACTIONS(3078), + [aux_sym_cmd_identifier_token39] = ACTIONS(3078), + [aux_sym_cmd_identifier_token40] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_DOLLAR] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3093), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3096), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3099), + [anon_sym_DOT_DOT_LT] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3102), + [aux_sym__val_number_decimal_token1] = ACTIONS(3105), + [aux_sym__val_number_decimal_token2] = ACTIONS(3108), + [aux_sym__val_number_decimal_token3] = ACTIONS(3111), + [aux_sym__val_number_decimal_token4] = ACTIONS(3114), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [anon_sym_0b] = ACTIONS(3120), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(3129), + [sym__str_single_quotes] = ACTIONS(3132), + [sym__str_back_ticks] = ACTIONS(3132), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3138), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_err_GT] = ACTIONS(3144), + [anon_sym_out_GT] = ACTIONS(3144), + [anon_sym_e_GT] = ACTIONS(3144), + [anon_sym_o_GT] = ACTIONS(3144), + [anon_sym_err_PLUSout_GT] = ACTIONS(3144), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3144), + [anon_sym_o_PLUSe_GT] = ACTIONS(3144), + [anon_sym_e_PLUSo_GT] = ACTIONS(3144), + [anon_sym_err_GT_GT] = ACTIONS(3147), + [anon_sym_out_GT_GT] = ACTIONS(3147), + [anon_sym_e_GT_GT] = ACTIONS(3147), + [anon_sym_o_GT_GT] = ACTIONS(3147), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3147), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3147), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3147), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3147), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3150), [anon_sym_POUND] = ACTIONS(247), }, [776] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3591), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3619), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1914), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(776), - [aux_sym_shebang_repeat1] = STATE(789), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [777] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3592), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1885), - [sym__unquoted_with_expr] = STATE(2067), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3644), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1796), + [sym__unquoted_with_expr] = STATE(2050), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [778] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3593), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1886), - [sym__unquoted_with_expr] = STATE(2074), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3646), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1797), + [sym__unquoted_with_expr] = STATE(2053), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(778), - [aux_sym_shebang_repeat1] = STATE(791), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [779] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3594), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1887), - [sym__unquoted_with_expr] = STATE(2076), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3648), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1798), + [sym__unquoted_with_expr] = STATE(2056), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(779), - [aux_sym_shebang_repeat1] = STATE(792), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [780] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3595), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3650), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1799), + [sym__unquoted_with_expr] = STATE(2059), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(780), - [aux_sym_shebang_repeat1] = STATE(793), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [781] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3596), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1890), - [sym__unquoted_with_expr] = STATE(2085), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3652), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1801), + [sym__unquoted_with_expr] = STATE(2063), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(781), - [aux_sym_shebang_repeat1] = STATE(794), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [782] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3597), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2087), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3654), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1802), + [sym__unquoted_with_expr] = STATE(2066), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(782), - [aux_sym_shebang_repeat1] = STATE(795), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [783] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2138), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1817), - [sym__unquoted_with_expr] = STATE(2012), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3656), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1803), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(783), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [784] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3611), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1882), - [sym__unquoted_with_expr] = STATE(2094), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3658), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1807), + [sym__unquoted_with_expr] = STATE(2072), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(784), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [785] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3613), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1897), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2300), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1926), + [sym__unquoted_with_expr] = STATE(2168), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(785), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [786] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3615), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1761), - [sym__unquoted_with_expr] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_parenthesized] = STATE(1431), + [sym_val_range] = STATE(1954), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7317), + [sym__value] = STATE(1954), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1475), + [sym_val_variable] = STATE(1370), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym__flag] = STATE(1954), + [sym_short_flag] = STATE(1633), + [sym_long_flag] = STATE(1633), + [sym_unquoted] = STATE(1506), + [sym__unquoted_with_expr] = STATE(1957), + [sym__unquoted_anonymous_prefix] = STATE(7099), [sym_comment] = STATE(786), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2763), + [anon_sym_true] = ACTIONS(2595), + [anon_sym_false] = ACTIONS(2595), + [anon_sym_null] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2599), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [sym__newline] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), + [anon_sym_DOT_DOT_LT] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2647), [anon_sym_POUND] = ACTIONS(247), }, [787] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3617), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1763), - [sym__unquoted_with_expr] = STATE(2135), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2324), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(787), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [788] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3619), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1765), - [sym__unquoted_with_expr] = STATE(2027), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2033), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2034), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(788), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [789] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3621), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1767), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2360), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1811), + [sym__unquoted_with_expr] = STATE(2074), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(789), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [790] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3623), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1775), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2246), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1820), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(790), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [791] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3625), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1777), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2216), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1823), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(791), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [792] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3627), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1783), - [sym__unquoted_with_expr] = STATE(2103), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(792), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [793] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3629), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1791), - [sym__unquoted_with_expr] = STATE(2002), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(793), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [794] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3631), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1797), - [sym__unquoted_with_expr] = STATE(2029), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(794), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [795] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3633), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1800), - [sym__unquoted_with_expr] = STATE(2043), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(795), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [796] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2318), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1767), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(796), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, - [797] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2319), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2087), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(797), - [aux_sym_shebang_repeat1] = STATE(877), + [792] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2184), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(792), + [aux_sym_shebang_repeat1] = STATE(870), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, - [798] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2298), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2047), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(798), - [aux_sym_shebang_repeat1] = STATE(890), + [793] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2346), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(793), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, - [799] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2174), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1775), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(799), - [aux_sym_shebang_repeat1] = STATE(2737), + [794] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1824), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(794), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [795] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2184), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(795), + [aux_sym_shebang_repeat1] = STATE(808), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [796] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3251), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2148), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(796), + [aux_sym_shebang_repeat1] = STATE(809), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [797] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3252), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1925), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(797), + [aux_sym_shebang_repeat1] = STATE(810), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [798] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3253), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2195), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(798), + [aux_sym_shebang_repeat1] = STATE(811), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [799] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3254), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1933), + [sym__unquoted_with_expr] = STATE(2039), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(799), + [aux_sym_shebang_repeat1] = STATE(812), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [800] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1901), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3256), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1961), [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(800), [aux_sym_shebang_repeat1] = STATE(813), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [801] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3151), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1902), - [sym__unquoted_with_expr] = STATE(2120), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3257), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1846), + [sym__unquoted_with_expr] = STATE(2116), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(801), [aux_sym_shebang_repeat1] = STATE(814), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [802] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3152), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1903), - [sym__unquoted_with_expr] = STATE(2122), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3261), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1856), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(802), [aux_sym_shebang_repeat1] = STATE(815), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [803] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3153), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2125), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3262), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(803), [aux_sym_shebang_repeat1] = STATE(816), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [804] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3154), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3263), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2163), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(804), [aux_sym_shebang_repeat1] = STATE(817), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [805] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3155), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1849), - [sym__unquoted_with_expr] = STATE(2045), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3264), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1918), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(805), [aux_sym_shebang_repeat1] = STATE(818), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [806] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2300), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2050), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3265), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(806), - [aux_sym_shebang_repeat1] = STATE(891), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(819), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [807] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3157), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1760), - [sym__unquoted_with_expr] = STATE(2133), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3268), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(807), [aux_sym_shebang_repeat1] = STATE(820), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [808] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3158), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1762), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1900), + [sym__unquoted_with_expr] = STATE(2119), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(808), - [aux_sym_shebang_repeat1] = STATE(821), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [809] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3159), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1764), - [sym__unquoted_with_expr] = STATE(2146), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3281), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1907), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(809), - [aux_sym_shebang_repeat1] = STATE(822), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [810] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3160), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1766), - [sym__unquoted_with_expr] = STATE(2079), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3283), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1923), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(810), - [aux_sym_shebang_repeat1] = STATE(823), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [811] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3161), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1769), - [sym__unquoted_with_expr] = STATE(2011), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3286), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1924), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(811), - [aux_sym_shebang_repeat1] = STATE(824), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [812] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3162), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1771), - [sym__unquoted_with_expr] = STATE(2032), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3288), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1926), + [sym__unquoted_with_expr] = STATE(2168), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(812), - [aux_sym_shebang_repeat1] = STATE(825), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [813] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2148), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1813), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3290), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(813), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [814] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3165), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1821), - [sym__unquoted_with_expr] = STATE(2037), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3292), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1811), + [sym__unquoted_with_expr] = STATE(2074), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(814), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [815] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3167), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1825), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3294), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1820), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(815), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [816] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3169), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1829), - [sym__unquoted_with_expr] = STATE(2088), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3296), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1823), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(816), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [817] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3171), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1830), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3299), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1824), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(817), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [818] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3173), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1838), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3301), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2068), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(818), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [819] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3175), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1842), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3166), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(819), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [820] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3177), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1845), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3168), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(820), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [821] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3179), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2013), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1877), + [sym__unquoted_with_expr] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(821), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(834), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [822] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3181), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1854), - [sym__unquoted_with_expr] = STATE(2022), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3169), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1888), + [sym__unquoted_with_expr] = STATE(2135), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(822), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(835), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [823] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3183), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2031), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3171), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(823), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(836), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [824] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3185), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2036), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3172), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1894), + [sym__unquoted_with_expr] = STATE(2142), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(824), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(837), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [825] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3187), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2040), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3173), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1896), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(825), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(838), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [826] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2041), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1871), - [sym__unquoted_with_expr] = STATE(2044), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3174), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(826), [aux_sym_shebang_repeat1] = STATE(839), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [827] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3188), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2047), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3175), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(827), [aux_sym_shebang_repeat1] = STATE(840), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [828] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2041), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1871), - [sym__unquoted_with_expr] = STATE(2044), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3177), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1912), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(828), - [aux_sym_shebang_repeat1] = STATE(889), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(841), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [829] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3190), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1879), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3178), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1913), + [sym__unquoted_with_expr] = STATE(2171), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(829), [aux_sym_shebang_repeat1] = STATE(842), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [830] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3191), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1880), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3180), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1914), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(830), [aux_sym_shebang_repeat1] = STATE(843), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [831] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3192), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3181), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2176), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(831), [aux_sym_shebang_repeat1] = STATE(844), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [832] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3193), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3182), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(832), [aux_sym_shebang_repeat1] = STATE(845), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [833] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3194), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1885), - [sym__unquoted_with_expr] = STATE(2067), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3184), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1922), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(833), [aux_sym_shebang_repeat1] = STATE(846), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [834] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3195), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1886), - [sym__unquoted_with_expr] = STATE(2074), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2033), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2034), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(834), - [aux_sym_shebang_repeat1] = STATE(847), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [835] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3196), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1887), - [sym__unquoted_with_expr] = STATE(2076), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3199), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(835), - [aux_sym_shebang_repeat1] = STATE(848), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [836] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3258), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3201), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(836), - [aux_sym_shebang_repeat1] = STATE(849), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [837] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3198), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1890), - [sym__unquoted_with_expr] = STATE(2085), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3203), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1885), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(837), - [aux_sym_shebang_repeat1] = STATE(850), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [838] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3199), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2087), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3205), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1795), + [sym__unquoted_with_expr] = STATE(2048), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(838), - [aux_sym_shebang_repeat1] = STATE(851), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [839] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2138), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1817), - [sym__unquoted_with_expr] = STATE(2012), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3207), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1796), + [sym__unquoted_with_expr] = STATE(2050), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [840] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3213), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1882), - [sym__unquoted_with_expr] = STATE(2094), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3209), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1797), + [sym__unquoted_with_expr] = STATE(2053), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(840), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [841] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3215), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1897), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3211), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1798), + [sym__unquoted_with_expr] = STATE(2056), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(841), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [842] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3217), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1761), - [sym__unquoted_with_expr] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3213), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1799), + [sym__unquoted_with_expr] = STATE(2059), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [843] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3219), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1763), - [sym__unquoted_with_expr] = STATE(2135), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3215), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1801), + [sym__unquoted_with_expr] = STATE(2063), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [844] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3221), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1765), - [sym__unquoted_with_expr] = STATE(2027), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3217), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1802), + [sym__unquoted_with_expr] = STATE(2066), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [845] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3223), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1767), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3219), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1803), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [846] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3225), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1775), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3221), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3138), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(2943), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1807), + [sym__unquoted_with_expr] = STATE(2072), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3201), + [aux_sym_cmd_identifier_token39] = ACTIONS(3201), + [aux_sym_cmd_identifier_token40] = ACTIONS(3201), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3203), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3207), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [847] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3227), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1777), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3602), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1823), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [848] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3229), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1783), - [sym__unquoted_with_expr] = STATE(2103), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2068), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [849] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3231), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1791), - [sym__unquoted_with_expr] = STATE(2002), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2323), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [850] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3233), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1797), - [sym__unquoted_with_expr] = STATE(2029), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2378), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [851] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3235), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1800), - [sym__unquoted_with_expr] = STATE(2043), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2305), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [852] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2276), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1845), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1877), + [sym__unquoted_with_expr] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(788), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [853] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1777), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2255), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1885), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [854] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2210), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1783), - [sym__unquoted_with_expr] = STATE(2103), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2329), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2148), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(889), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [855] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2302), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1879), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2198), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1795), + [sym__unquoted_with_expr] = STATE(2048), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(892), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [856] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2245), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1825), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2234), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1796), + [sym__unquoted_with_expr] = STATE(2050), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [857] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2249), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1829), - [sym__unquoted_with_expr] = STATE(2088), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2271), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1797), + [sym__unquoted_with_expr] = STATE(2053), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [858] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2304), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1880), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2306), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1798), + [sym__unquoted_with_expr] = STATE(2056), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(893), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [859] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2281), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2013), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2371), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1799), + [sym__unquoted_with_expr] = STATE(2059), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [860] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2305), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2342), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1925), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(894), + [aux_sym_shebang_repeat1] = STATE(891), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [861] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2255), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1830), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1824), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [862] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2258), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1838), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2195), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(926), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [863] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2309), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2236), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1888), + [sym__unquoted_with_expr] = STATE(2135), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(796), + [aux_sym_shebang_repeat1] = STATE(793), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [864] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2311), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1885), - [sym__unquoted_with_expr] = STATE(2067), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1933), + [sym__unquoted_with_expr] = STATE(2039), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(799), + [aux_sym_shebang_repeat1] = STATE(785), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [865] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2268), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1842), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2365), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(787), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [866] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2284), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1854), - [sym__unquoted_with_expr] = STATE(2022), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2370), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1846), + [sym__unquoted_with_expr] = STATE(2116), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(789), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [867] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1901), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2229), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1801), + [sym__unquoted_with_expr] = STATE(2063), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(879), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [868] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2262), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1902), - [sym__unquoted_with_expr] = STATE(2120), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2206), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1856), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(880), + [aux_sym_shebang_repeat1] = STATE(790), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [869] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2267), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1903), - [sym__unquoted_with_expr] = STATE(2122), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2252), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1802), + [sym__unquoted_with_expr] = STATE(2066), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(856), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [870] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2125), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1900), + [sym__unquoted_with_expr] = STATE(2119), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(857), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [871] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2278), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2247), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(861), + [aux_sym_shebang_repeat1] = STATE(851), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [872] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2280), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1849), - [sym__unquoted_with_expr] = STATE(2045), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2256), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1894), + [sym__unquoted_with_expr] = STATE(2142), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(862), + [aux_sym_shebang_repeat1] = STATE(853), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [873] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2282), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1758), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2262), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1896), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(865), + [aux_sym_shebang_repeat1] = STATE(855), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [874] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2233), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1791), - [sym__unquoted_with_expr] = STATE(2002), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2269), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1803), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [875] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2286), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1760), - [sym__unquoted_with_expr] = STATE(2133), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2276), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(852), + [aux_sym_shebang_repeat1] = STATE(856), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [876] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2240), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1797), - [sym__unquoted_with_expr] = STATE(2029), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2220), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(791), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [877] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2260), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1800), - [sym__unquoted_with_expr] = STATE(2043), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2225), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2163), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(794), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [878] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2288), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1762), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2301), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(859), + [aux_sym_shebang_repeat1] = STATE(857), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [879] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2148), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1813), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2298), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1807), + [sym__unquoted_with_expr] = STATE(2072), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [880] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2239), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1821), - [sym__unquoted_with_expr] = STATE(2037), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2307), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1912), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(858), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [881] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2294), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1764), - [sym__unquoted_with_expr] = STATE(2146), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2317), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1913), + [sym__unquoted_with_expr] = STATE(2171), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(866), + [aux_sym_shebang_repeat1] = STATE(859), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [882] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2296), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1766), - [sym__unquoted_with_expr] = STATE(2079), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2321), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1914), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_shebang_repeat1] = STATE(867), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [883] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2303), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1769), - [sym__unquoted_with_expr] = STATE(2011), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2327), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2176), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(888), + [aux_sym_shebang_repeat1] = STATE(869), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [884] = { - [sym_expr_parenthesized] = STATE(1448), - [sym_val_range] = STATE(1768), - [sym__val_range] = STATE(7566), - [sym__val_range_with_end] = STATE(7410), - [sym__value] = STATE(1768), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1405), - [sym_val_variable] = STATE(1306), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1060), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym__flag] = STATE(1768), - [sym_short_flag] = STATE(1719), - [sym_long_flag] = STATE(1719), - [sym_unquoted] = STATE(1494), - [sym__unquoted_with_expr] = STATE(1770), - [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2331), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2734), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2529), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2541), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2549), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(247), - }, - [885] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2312), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1771), - [sym__unquoted_with_expr] = STATE(2032), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(895), + [aux_sym_shebang_repeat1] = STATE(874), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, - [886] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2289), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2031), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2737), + [885] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1922), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(885), + [aux_sym_shebang_repeat1] = STATE(879), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, - [887] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2313), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1886), - [sym__unquoted_with_expr] = STATE(2074), - [sym__unquoted_anonymous_prefix] = STATE(7046), - [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(853), + [886] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2308), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1918), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(886), + [aux_sym_shebang_repeat1] = STATE(848), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [887] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3606), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2068), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(887), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [888] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2291), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2036), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(849), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [889] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2138), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1817), - [sym__unquoted_with_expr] = STATE(2012), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2218), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1907), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [890] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2241), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1882), - [sym__unquoted_with_expr] = STATE(2094), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2366), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(850), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [891] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2252), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1897), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2261), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1923), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2737), + [aux_sym_shebang_repeat1] = STATE(2826), [anon_sym_true] = ACTIONS(3181), [anon_sym_false] = ACTIONS(3181), [anon_sym_null] = ACTIONS(3183), [aux_sym_cmd_identifier_token38] = ACTIONS(3185), [aux_sym_cmd_identifier_token39] = ACTIONS(3185), [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), [aux_sym__val_number_decimal_token1] = ACTIONS(3187), [aux_sym__val_number_decimal_token2] = ACTIONS(3189), [aux_sym__val_number_decimal_token3] = ACTIONS(3191), [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [892] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2269), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1761), - [sym__unquoted_with_expr] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3608), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [893] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2285), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1763), - [sym__unquoted_with_expr] = STATE(2135), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3610), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [894] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2308), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1765), - [sym__unquoted_with_expr] = STATE(2027), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1877), + [sym__unquoted_with_expr] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(927), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [895] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2295), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2040), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2184), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2737), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(908), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [896] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1887), - [sym__unquoted_with_expr] = STATE(2076), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3575), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2148), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(854), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(909), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [897] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2316), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(1310), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3576), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1925), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(874), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(910), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [898] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1901), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3577), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2195), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(757), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(911), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [899] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3549), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3520), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(3314), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1902), - [sym__unquoted_with_expr] = STATE(2120), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3578), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1933), + [sym__unquoted_with_expr] = STATE(2039), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(758), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_null] = ACTIONS(3167), - [aux_sym_cmd_identifier_token38] = ACTIONS(3169), - [aux_sym_cmd_identifier_token39] = ACTIONS(3169), - [aux_sym_cmd_identifier_token40] = ACTIONS(3169), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3171), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3175), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(913), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [900] = { - [sym_expr_unary] = STATE(2259), - [sym__expr_unary_minus] = STATE(2236), - [sym_expr_binary_parenthesized] = STATE(2259), - [sym__expr_binary_expression_parenthesized] = STATE(3189), - [sym_expr_parenthesized] = STATE(2259), - [sym__val_range] = STATE(7551), - [sym__val_range_with_end] = STATE(7397), - [sym__value] = STATE(2259), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3110), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(2917), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1707), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2050), - [sym__unquoted_anonymous_prefix] = STATE(7046), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3579), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(841), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_null] = ACTIONS(3139), - [aux_sym_cmd_identifier_token38] = ACTIONS(3141), - [aux_sym_cmd_identifier_token39] = ACTIONS(3141), - [aux_sym_cmd_identifier_token40] = ACTIONS(3141), - [sym__newline] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(471), - [aux_sym_ctrl_match_token1] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [aux_sym_expr_unary_token1] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [aux_sym__val_number_decimal_token1] = ACTIONS(3153), - [aux_sym__val_number_decimal_token2] = ACTIONS(3155), - [aux_sym__val_number_decimal_token3] = ACTIONS(3157), - [aux_sym__val_number_decimal_token4] = ACTIONS(3159), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(919), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [901] = { - [sym_ctrl_do] = STATE(4850), - [sym_ctrl_if] = STATE(4850), - [sym_ctrl_match] = STATE(4850), - [sym_ctrl_try] = STATE(4850), - [sym__expression] = STATE(4850), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3784), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2837), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3580), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1846), + [sym__unquoted_with_expr] = STATE(2116), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(901), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(437), - [aux_sym_cmd_identifier_token39] = ACTIONS(437), - [aux_sym_cmd_identifier_token40] = ACTIONS(437), - [sym__newline] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_err_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_GT_PIPE] = ACTIONS(3203), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3209), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3211), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3213), + [aux_sym_shebang_repeat1] = STATE(922), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [902] = { - [sym_ctrl_do] = STATE(4850), - [sym_ctrl_if] = STATE(4850), - [sym_ctrl_match] = STATE(4850), - [sym_ctrl_try] = STATE(4850), - [sym__expression] = STATE(4850), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3784), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2837), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3581), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1856), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(902), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(437), - [aux_sym_cmd_identifier_token39] = ACTIONS(437), - [aux_sym_cmd_identifier_token40] = ACTIONS(437), - [sym__newline] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_err_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_GT_PIPE] = ACTIONS(3203), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3209), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3211), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3215), + [aux_sym_shebang_repeat1] = STATE(932), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [903] = { - [sym_ctrl_do] = STATE(4850), - [sym_ctrl_if] = STATE(4850), - [sym_ctrl_match] = STATE(4850), - [sym_ctrl_try] = STATE(4850), - [sym__expression] = STATE(4850), - [sym_expr_unary] = STATE(1606), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1606), - [sym__expr_binary_expression] = STATE(3784), - [sym_expr_parenthesized] = STATE(1458), - [sym_val_range] = STATE(3484), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1675), - [sym_val_variable] = STATE(1461), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2837), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3582), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(903), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(437), - [aux_sym_cmd_identifier_token39] = ACTIONS(437), - [aux_sym_cmd_identifier_token40] = ACTIONS(437), - [sym__newline] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_err_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_GT_PIPE] = ACTIONS(3203), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3209), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3211), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(429), - [aux_sym__val_number_decimal_token2] = ACTIONS(431), - [aux_sym__val_number_decimal_token3] = ACTIONS(433), - [aux_sym__val_number_decimal_token4] = ACTIONS(435), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_shebang_repeat1] = STATE(847), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [904] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2406), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2096), - [sym__unquoted_with_expr] = STATE(2409), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3583), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2163), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(904), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(861), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [905] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3745), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1391), - [sym__unquoted_with_expr] = STATE(1623), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3584), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1918), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(905), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(887), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [906] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3747), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1392), - [sym__unquoted_with_expr] = STATE(1626), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3585), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(906), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(892), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [907] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3750), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1393), - [sym__unquoted_with_expr] = STATE(1627), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3586), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(907), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(893), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [908] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3752), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1394), - [sym__unquoted_with_expr] = STATE(1628), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1900), + [sym__unquoted_with_expr] = STATE(2119), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(908), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [909] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3761), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1397), - [sym__unquoted_with_expr] = STATE(1629), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3588), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1907), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(909), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [910] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3751), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1398), - [sym__unquoted_with_expr] = STATE(1630), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3590), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1923), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(910), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [911] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3754), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1399), - [sym__unquoted_with_expr] = STATE(1631), - [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3592), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1924), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(911), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [912] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2403), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2095), - [sym__unquoted_with_expr] = STATE(2405), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1888), + [sym__unquoted_with_expr] = STATE(2135), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(912), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(928), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [913] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3277), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2096), - [sym__unquoted_with_expr] = STATE(2409), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3594), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1926), + [sym__unquoted_with_expr] = STATE(2168), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(913), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [914] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3278), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2106), - [sym__unquoted_with_expr] = STATE(2413), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3612), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(914), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(929), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [915] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3279), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2417), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3613), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1894), + [sym__unquoted_with_expr] = STATE(2142), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(915), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(930), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [916] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3280), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2132), - [sym__unquoted_with_expr] = STATE(2424), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3614), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1896), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(916), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(931), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [917] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3281), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2102), - [sym__unquoted_with_expr] = STATE(2427), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3615), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(917), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(777), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [918] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3282), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2131), - [sym__unquoted_with_expr] = STATE(2364), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3616), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(918), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(778), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [919] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3284), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3596), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(919), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [920] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3285), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2091), - [sym__unquoted_with_expr] = STATE(2362), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3617), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1912), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(920), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [921] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3287), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2121), - [sym__unquoted_with_expr] = STATE(2369), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3618), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1913), + [sym__unquoted_with_expr] = STATE(2171), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(921), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(780), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [922] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3288), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2123), - [sym__unquoted_with_expr] = STATE(2391), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3598), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1811), + [sym__unquoted_with_expr] = STATE(2074), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(922), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [923] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3290), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2155), - [sym__unquoted_with_expr] = STATE(2366), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3620), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2176), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(923), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [924] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(3291), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(3106), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(2888), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2156), - [sym__unquoted_with_expr] = STATE(2353), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3621), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(924), - [anon_sym_true] = ACTIONS(3275), - [anon_sym_false] = ACTIONS(3275), - [anon_sym_null] = ACTIONS(3277), - [aux_sym_cmd_identifier_token38] = ACTIONS(3279), - [aux_sym_cmd_identifier_token39] = ACTIONS(3279), - [aux_sym_cmd_identifier_token40] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [aux_sym__val_number_decimal_token3] = ACTIONS(3285), - [aux_sym__val_number_decimal_token4] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(783), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [925] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2346), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2155), - [sym__unquoted_with_expr] = STATE(2366), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3622), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1922), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(925), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(784), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [926] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2411), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2106), - [sym__unquoted_with_expr] = STATE(2413), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2285), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(2144), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1924), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(926), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [927] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2382), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2102), - [sym__unquoted_with_expr] = STATE(2427), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(2033), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2034), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(927), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [928] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2387), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2131), - [sym__unquoted_with_expr] = STATE(2364), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3636), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(928), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [929] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2354), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3638), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(929), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [930] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2351), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2091), - [sym__unquoted_with_expr] = STATE(2362), - [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3640), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1885), + [sym__unquoted_with_expr] = STATE(2046), + [sym__unquoted_anonymous_prefix] = STATE(6921), [sym_comment] = STATE(930), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [931] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3642), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1795), + [sym__unquoted_with_expr] = STATE(2048), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(931), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [932] = { + [sym_expr_unary] = STATE(2373), + [sym__expr_unary_minus] = STATE(2377), + [sym_expr_binary_parenthesized] = STATE(2373), + [sym__expr_binary_expression_parenthesized] = STATE(3600), + [sym_expr_parenthesized] = STATE(2373), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7306), + [sym__value] = STATE(2373), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3542), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(3361), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(1725), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(1820), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_comment] = STATE(932), + [aux_sym_shebang_repeat1] = STATE(2826), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3155), + [aux_sym_cmd_identifier_token38] = ACTIONS(3157), + [aux_sym_cmd_identifier_token39] = ACTIONS(3157), + [aux_sym_cmd_identifier_token40] = ACTIONS(3157), + [sym__newline] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [aux_sym_expr_unary_token1] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), + [anon_sym_DOT_DOT_LT] = ACTIONS(3167), + [aux_sym__val_number_decimal_token1] = ACTIONS(3169), + [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3175), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [933] = { + [sym_ctrl_do] = STATE(4912), + [sym_ctrl_if] = STATE(4912), + [sym_ctrl_match] = STATE(4912), + [sym_ctrl_try] = STATE(4912), + [sym__expression] = STATE(4912), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3819), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2846), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_comment] = STATE(933), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(439), + [aux_sym_cmd_identifier_token39] = ACTIONS(439), + [aux_sym_cmd_identifier_token40] = ACTIONS(439), + [sym__newline] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_err_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_GT_PIPE] = ACTIONS(3217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3225), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_POUND] = ACTIONS(247), + }, + [934] = { + [sym_ctrl_do] = STATE(4912), + [sym_ctrl_if] = STATE(4912), + [sym_ctrl_match] = STATE(4912), + [sym_ctrl_try] = STATE(4912), + [sym__expression] = STATE(4912), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3819), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2846), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_comment] = STATE(934), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(439), + [aux_sym_cmd_identifier_token39] = ACTIONS(439), + [aux_sym_cmd_identifier_token40] = ACTIONS(439), + [sym__newline] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_err_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_GT_PIPE] = ACTIONS(3217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3225), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3229), + [anon_sym_POUND] = ACTIONS(247), + }, + [935] = { + [sym_ctrl_do] = STATE(4912), + [sym_ctrl_if] = STATE(4912), + [sym_ctrl_match] = STATE(4912), + [sym_ctrl_try] = STATE(4912), + [sym__expression] = STATE(4912), + [sym_expr_unary] = STATE(1687), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1687), + [sym__expr_binary_expression] = STATE(3819), + [sym_expr_parenthesized] = STATE(1445), + [sym_val_range] = STATE(3520), + [sym__value] = STATE(1687), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1446), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2846), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_comment] = STATE(935), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(439), + [aux_sym_cmd_identifier_token39] = ACTIONS(439), + [aux_sym_cmd_identifier_token40] = ACTIONS(439), + [sym__newline] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_err_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_GT_PIPE] = ACTIONS(3217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3225), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3231), + [anon_sym_POUND] = ACTIONS(247), + }, + [936] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3326), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2145), + [sym__unquoted_with_expr] = STATE(2450), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(936), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3255), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [931] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2414), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2417), - [sym__unquoted_anonymous_prefix] = STATE(6671), - [sym_comment] = STATE(931), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [937] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3810), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1502), + [sym__unquoted_with_expr] = STATE(1786), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(937), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [938] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2462), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2190), + [sym__unquoted_with_expr] = STATE(2464), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(938), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3305), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [932] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(1615), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1433), - [sym__unquoted_with_expr] = STATE(1616), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(932), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [939] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3701), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1497), + [sym__unquoted_with_expr] = STATE(1778), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(939), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [933] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3676), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1380), - [sym__unquoted_with_expr] = STATE(1617), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(933), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [940] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(1739), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1485), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(940), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [941] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3702), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1498), + [sym__unquoted_with_expr] = STATE(1780), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(941), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [934] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3677), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1385), - [sym__unquoted_with_expr] = STATE(1618), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(934), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [942] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2330), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1486), + [sym__unquoted_with_expr] = STATE(1742), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(942), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [943] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3703), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1499), + [sym__unquoted_with_expr] = STATE(1781), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(943), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [935] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3678), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1386), - [sym__unquoted_with_expr] = STATE(1619), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(935), + [944] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2297), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1488), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(944), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [945] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2201), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1489), + [sym__unquoted_with_expr] = STATE(1744), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(945), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [946] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2466), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2191), + [sym__unquoted_with_expr] = STATE(2467), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(946), [anon_sym_true] = ACTIONS(3291), [anon_sym_false] = ACTIONS(3291), [anon_sym_null] = ACTIONS(3293), [aux_sym_cmd_identifier_token38] = ACTIONS(3295), [aux_sym_cmd_identifier_token39] = ACTIONS(3295), [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [936] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3679), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1387), - [sym__unquoted_with_expr] = STATE(1620), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(936), + [947] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2468), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2192), + [sym__unquoted_with_expr] = STATE(2469), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(947), [anon_sym_true] = ACTIONS(3291), [anon_sym_false] = ACTIONS(3291), [anon_sym_null] = ACTIONS(3293), [aux_sym_cmd_identifier_token38] = ACTIONS(3295), [aux_sym_cmd_identifier_token39] = ACTIONS(3295), [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [948] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3704), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1500), + [sym__unquoted_with_expr] = STATE(1783), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(948), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [937] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3680), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1388), - [sym__unquoted_with_expr] = STATE(1622), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(937), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [949] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3705), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1501), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(949), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [938] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3681), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1391), - [sym__unquoted_with_expr] = STATE(1623), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(938), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [950] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3706), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1502), + [sym__unquoted_with_expr] = STATE(1786), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(950), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [939] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3682), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1392), - [sym__unquoted_with_expr] = STATE(1626), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(939), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [951] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3239), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1502), + [sym__unquoted_with_expr] = STATE(1786), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(951), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [952] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(1739), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1485), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(952), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [953] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2202), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1490), + [sym__unquoted_with_expr] = STATE(1747), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(953), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [954] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1495), + [sym__unquoted_with_expr] = STATE(1774), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(954), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [955] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3276), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1486), + [sym__unquoted_with_expr] = STATE(1742), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(955), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [956] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3811), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1499), + [sym__unquoted_with_expr] = STATE(1781), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(956), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [940] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3683), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1393), - [sym__unquoted_with_expr] = STATE(1627), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(940), + [957] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2470), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2193), + [sym__unquoted_with_expr] = STATE(2424), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(957), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [958] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2451), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2153), + [sym__unquoted_with_expr] = STATE(2452), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(958), [anon_sym_true] = ACTIONS(3291), [anon_sym_false] = ACTIONS(3291), [anon_sym_null] = ACTIONS(3293), [aux_sym_cmd_identifier_token38] = ACTIONS(3295), [aux_sym_cmd_identifier_token39] = ACTIONS(3295), [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [959] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3170), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1488), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(959), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [960] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2232), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1496), + [sym__unquoted_with_expr] = STATE(1776), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(960), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [961] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(1739), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1485), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(961), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [941] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3684), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1394), - [sym__unquoted_with_expr] = STATE(1628), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(941), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [962] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2208), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1497), + [sym__unquoted_with_expr] = STATE(1778), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(962), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [963] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3788), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1486), + [sym__unquoted_with_expr] = STATE(1742), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(963), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [942] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3685), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1397), - [sym__unquoted_with_expr] = STATE(1629), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(942), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), + [964] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1498), + [sym__unquoted_with_expr] = STATE(1780), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(964), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [943] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3686), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1398), - [sym__unquoted_with_expr] = STATE(1630), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(943), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [965] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3790), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1488), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(965), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [944] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3687), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3467), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3300), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1399), - [sym__unquoted_with_expr] = STATE(1631), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(944), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [966] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3792), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1489), + [sym__unquoted_with_expr] = STATE(1744), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(966), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3309), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [945] = { - [sym_ctrl_do] = STATE(5064), - [sym_ctrl_if] = STATE(5064), - [sym_ctrl_match] = STATE(5064), - [sym_ctrl_try] = STATE(5064), - [sym__expression] = STATE(5064), - [sym_expr_unary] = STATE(2381), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2381), - [sym__expr_binary_expression] = STATE(3788), - [sym_expr_parenthesized] = STATE(1971), - [sym_val_range] = STATE(3771), - [sym__value] = STATE(2381), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2348), - [sym_val_variable] = STATE(1938), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(3064), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_comment] = STATE(945), - [ts_builtin_sym_end] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3311), - [anon_sym_false] = ACTIONS(3311), - [anon_sym_null] = ACTIONS(3313), + [967] = { + [sym_ctrl_do] = STATE(5081), + [sym_ctrl_if] = STATE(5081), + [sym_ctrl_match] = STATE(5081), + [sym_ctrl_try] = STATE(5081), + [sym__expression] = STATE(5081), + [sym_expr_unary] = STATE(2430), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2430), + [sym__expr_binary_expression] = STATE(3833), + [sym_expr_parenthesized] = STATE(2004), + [sym_val_range] = STATE(3821), + [sym__value] = STATE(2430), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2399), + [sym_val_variable] = STATE(1994), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(3110), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_comment] = STATE(967), + [ts_builtin_sym_end] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), [aux_sym_cmd_identifier_token38] = ACTIONS(103), [aux_sym_cmd_identifier_token39] = ACTIONS(103), [aux_sym_cmd_identifier_token40] = ACTIONS(103), - [sym__newline] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_err_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_GT_PIPE] = ACTIONS(3203), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), + [sym__newline] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_err_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_GT_PIPE] = ACTIONS(3217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_match] = ACTIONS(3319), - [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(71), [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3389), [aux_sym_expr_unary_token1] = ACTIONS(91), [anon_sym_DOT_DOT_EQ] = ACTIONS(93), [anon_sym_DOT_DOT_LT] = ACTIONS(93), @@ -170072,9417 +174242,8694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [anon_sym_POUND] = ACTIONS(247), }, - [946] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(1615), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1433), - [sym__unquoted_with_expr] = STATE(1616), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(946), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [968] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3794), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1490), + [sym__unquoted_with_expr] = STATE(1747), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(968), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [947] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3755), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1380), - [sym__unquoted_with_expr] = STATE(1617), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(947), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [969] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3787), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1500), + [sym__unquoted_with_expr] = STATE(1783), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(969), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [948] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3757), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1385), - [sym__unquoted_with_expr] = STATE(1618), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(948), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), + [970] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2250), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1499), + [sym__unquoted_with_expr] = STATE(1781), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(970), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [949] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1386), - [sym__unquoted_with_expr] = STATE(1619), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(949), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), + [971] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1500), + [sym__unquoted_with_expr] = STATE(1783), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(971), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [950] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3759), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1387), - [sym__unquoted_with_expr] = STATE(1620), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(950), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), + [972] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2363), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1501), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(972), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [951] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3740), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1388), - [sym__unquoted_with_expr] = STATE(1622), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(951), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), + [973] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(2302), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(1978), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(1287), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1502), + [sym__unquoted_with_expr] = STATE(1786), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(973), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_null] = ACTIONS(3329), + [aux_sym_cmd_identifier_token38] = ACTIONS(3331), + [aux_sym_cmd_identifier_token39] = ACTIONS(3331), + [aux_sym_cmd_identifier_token40] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3337), + [aux_sym__val_number_decimal_token2] = ACTIONS(3339), + [aux_sym__val_number_decimal_token3] = ACTIONS(3341), + [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [952] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3762), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1391), - [sym__unquoted_with_expr] = STATE(1623), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(952), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [974] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3795), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1495), + [sym__unquoted_with_expr] = STATE(1774), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(974), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [953] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3763), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1392), - [sym__unquoted_with_expr] = STATE(1626), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(953), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [975] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3800), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1496), + [sym__unquoted_with_expr] = STATE(1776), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(975), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [954] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3764), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1393), - [sym__unquoted_with_expr] = STATE(1627), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(954), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [976] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3801), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1497), + [sym__unquoted_with_expr] = STATE(1778), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(976), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [955] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3765), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1394), - [sym__unquoted_with_expr] = STATE(1628), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(955), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [977] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3802), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1498), + [sym__unquoted_with_expr] = STATE(1780), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(977), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [956] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3741), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1397), - [sym__unquoted_with_expr] = STATE(1629), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(956), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [978] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2134), + [sym__unquoted_with_expr] = STATE(2444), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(978), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [979] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3804), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1499), + [sym__unquoted_with_expr] = STATE(1781), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(979), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [957] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3742), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1398), - [sym__unquoted_with_expr] = STATE(1630), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(957), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [980] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2439), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2130), + [sym__unquoted_with_expr] = STATE(2440), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(980), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [981] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3322), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2133), + [sym__unquoted_with_expr] = STATE(2442), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(981), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [982] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3323), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2134), + [sym__unquoted_with_expr] = STATE(2444), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(982), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [983] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3324), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2136), + [sym__unquoted_with_expr] = STATE(2448), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(983), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [984] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3791), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1498), + [sym__unquoted_with_expr] = STATE(1780), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(984), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [958] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3743), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3616), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3337), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1399), - [sym__unquoted_with_expr] = STATE(1631), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(958), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(3327), - [aux_sym_cmd_identifier_token39] = ACTIONS(3327), - [aux_sym_cmd_identifier_token40] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [985] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3327), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2153), + [sym__unquoted_with_expr] = STATE(2452), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(985), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [986] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3328), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2154), + [sym__unquoted_with_expr] = STATE(2383), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(986), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [987] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3329), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2187), + [sym__unquoted_with_expr] = STATE(2460), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(987), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [988] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3700), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1496), + [sym__unquoted_with_expr] = STATE(1776), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(988), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3337), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [959] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2365), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2121), - [sym__unquoted_with_expr] = STATE(2369), - [sym__unquoted_anonymous_prefix] = STATE(6671), - [sym_comment] = STATE(959), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [989] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3331), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2191), + [sym__unquoted_with_expr] = STATE(2467), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(989), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3255), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [960] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2403), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2095), - [sym__unquoted_with_expr] = STATE(2405), - [sym__unquoted_anonymous_prefix] = STATE(6671), - [sym_comment] = STATE(960), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [990] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3334), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2192), + [sym__unquoted_with_expr] = STATE(2469), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(990), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3255), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [961] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(1615), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1433), - [sym__unquoted_with_expr] = STATE(1616), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(961), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [991] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3337), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2193), + [sym__unquoted_with_expr] = STATE(2424), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(991), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [992] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3805), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1500), + [sym__unquoted_with_expr] = STATE(1783), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(992), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3377), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [962] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2377), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2156), - [sym__unquoted_with_expr] = STATE(2353), - [sym__unquoted_anonymous_prefix] = STATE(6671), - [sym_comment] = STATE(962), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [993] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3304), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2194), + [sym__unquoted_with_expr] = STATE(2388), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(993), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3255), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [963] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(1615), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1433), - [sym__unquoted_with_expr] = STATE(1616), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(963), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [994] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3806), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1501), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(994), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [964] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2423), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2132), - [sym__unquoted_with_expr] = STATE(2424), - [sym__unquoted_anonymous_prefix] = STATE(6671), - [sym_comment] = STATE(964), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [995] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3808), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1502), + [sym__unquoted_with_expr] = STATE(1786), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(995), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(3367), + [aux_sym_cmd_identifier_token39] = ACTIONS(3367), + [aux_sym_cmd_identifier_token40] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [996] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2453), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2154), + [sym__unquoted_with_expr] = STATE(2383), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(996), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3305), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [965] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1380), - [sym__unquoted_with_expr] = STATE(1617), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(965), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [997] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3803), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1501), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(997), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [966] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1385), - [sym__unquoted_with_expr] = STATE(1618), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(966), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [998] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3302), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1489), + [sym__unquoted_with_expr] = STATE(1744), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(998), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [967] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1386), - [sym__unquoted_with_expr] = STATE(1619), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(967), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [999] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3179), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1490), + [sym__unquoted_with_expr] = STATE(1747), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(999), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [968] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1387), - [sym__unquoted_with_expr] = STATE(1620), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(968), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [1000] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2439), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2130), + [sym__unquoted_with_expr] = STATE(2440), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1000), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [969] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2191), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1388), - [sym__unquoted_with_expr] = STATE(1622), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(969), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1001] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3183), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1495), + [sym__unquoted_with_expr] = STATE(1774), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1001), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [970] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2192), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1391), - [sym__unquoted_with_expr] = STATE(1623), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(970), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1002] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3185), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1496), + [sym__unquoted_with_expr] = STATE(1776), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1002), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [971] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2193), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1392), - [sym__unquoted_with_expr] = STATE(1626), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(971), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [1003] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2447), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2136), + [sym__unquoted_with_expr] = STATE(2448), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1003), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), [anon_sym_POUND] = ACTIONS(247), }, - [972] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2194), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1393), - [sym__unquoted_with_expr] = STATE(1627), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(972), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1004] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2465), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2194), + [sym__unquoted_with_expr] = STATE(2388), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1004), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [1005] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2441), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2133), + [sym__unquoted_with_expr] = STATE(2442), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1005), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [1006] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2449), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2145), + [sym__unquoted_with_expr] = STATE(2450), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1006), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [1007] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3234), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1497), + [sym__unquoted_with_expr] = STATE(1778), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1007), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [973] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2195), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1394), - [sym__unquoted_with_expr] = STATE(1628), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(973), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1008] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3235), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1498), + [sym__unquoted_with_expr] = STATE(1780), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1008), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [974] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2196), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1397), - [sym__unquoted_with_expr] = STATE(1629), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(974), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1009] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3236), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1499), + [sym__unquoted_with_expr] = STATE(1781), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1009), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [975] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2197), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1398), - [sym__unquoted_with_expr] = STATE(1630), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(975), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1010] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3237), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1500), + [sym__unquoted_with_expr] = STATE(1783), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1010), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [976] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(2198), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(1970), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(1270), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1399), - [sym__unquoted_with_expr] = STATE(1631), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(976), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [1011] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3238), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3129), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(2873), + [sym__val_number] = STATE(2242), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1501), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1011), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_null] = ACTIONS(3349), + [aux_sym_cmd_identifier_token38] = ACTIONS(3351), + [aux_sym_cmd_identifier_token39] = ACTIONS(3351), + [aux_sym_cmd_identifier_token40] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3273), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [aux_sym__val_number_decimal_token3] = ACTIONS(3353), - [aux_sym__val_number_decimal_token4] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3353), + [aux_sym__val_number_decimal_token2] = ACTIONS(3355), + [aux_sym__val_number_decimal_token3] = ACTIONS(3357), + [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [977] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1380), - [sym__unquoted_with_expr] = STATE(1617), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(977), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [1012] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(1739), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1485), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1012), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [978] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3767), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1385), - [sym__unquoted_with_expr] = STATE(1618), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [1013] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3695), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1486), + [sym__unquoted_with_expr] = STATE(1742), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1013), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [979] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1386), - [sym__unquoted_with_expr] = STATE(1619), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(979), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [1014] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(2459), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(2149), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(1386), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2187), + [sym__unquoted_with_expr] = STATE(2460), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1014), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3297), + [aux_sym__val_number_decimal_token2] = ACTIONS(3299), + [aux_sym__val_number_decimal_token3] = ACTIONS(3301), + [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [1015] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(1739), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1485), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1015), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [980] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3749), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1387), - [sym__unquoted_with_expr] = STATE(1620), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(980), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [1016] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3798), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1486), + [sym__unquoted_with_expr] = STATE(1742), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1016), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [981] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(1615), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1433), - [sym__unquoted_with_expr] = STATE(1616), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(981), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [982] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3139), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1380), - [sym__unquoted_with_expr] = STATE(1617), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(982), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [983] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3140), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1385), - [sym__unquoted_with_expr] = STATE(1618), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(983), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [984] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3141), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1386), - [sym__unquoted_with_expr] = STATE(1619), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(984), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [985] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3142), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1387), - [sym__unquoted_with_expr] = STATE(1620), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [986] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3143), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1388), - [sym__unquoted_with_expr] = STATE(1622), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(986), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [987] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3144), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1391), - [sym__unquoted_with_expr] = STATE(1623), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [988] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3145), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1392), - [sym__unquoted_with_expr] = STATE(1626), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [1017] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3812), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1488), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1017), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [989] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3146), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1393), - [sym__unquoted_with_expr] = STATE(1627), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(989), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [1018] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3786), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1489), + [sym__unquoted_with_expr] = STATE(1744), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1018), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [990] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3147), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1394), - [sym__unquoted_with_expr] = STATE(1628), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(990), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [1019] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3813), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1490), + [sym__unquoted_with_expr] = STATE(1747), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1019), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [991] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3148), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1397), - [sym__unquoted_with_expr] = STATE(1629), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(991), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [1020] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3696), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1488), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1020), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [992] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3149), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1398), - [sym__unquoted_with_expr] = STATE(1630), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(992), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [1021] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3697), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1489), + [sym__unquoted_with_expr] = STATE(1744), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1021), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [993] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3150), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3092), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(2835), - [sym__val_number] = STATE(2266), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1946), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1399), - [sym__unquoted_with_expr] = STATE(1631), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(993), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_DOLLAR] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3365), - [aux_sym__val_number_decimal_token2] = ACTIONS(3367), - [aux_sym__val_number_decimal_token3] = ACTIONS(3369), - [aux_sym__val_number_decimal_token4] = ACTIONS(3371), - [aux_sym__val_number_token1] = ACTIONS(437), - [aux_sym__val_number_token2] = ACTIONS(437), - [aux_sym__val_number_token3] = ACTIONS(437), + [1022] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3698), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1490), + [sym__unquoted_with_expr] = STATE(1747), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1022), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym__str_single_quotes] = ACTIONS(441), - [sym__str_back_ticks] = ACTIONS(441), + [sym_val_date] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, - [994] = { - [sym_expr_unary] = STATE(1614), - [sym__expr_unary_minus] = STATE(1644), - [sym_expr_binary] = STATE(1614), - [sym__expr_binary_expression] = STATE(3746), - [sym_expr_parenthesized] = STATE(1614), - [sym__val_range] = STATE(7592), - [sym__val_range_with_end] = STATE(7402), - [sym__value] = STATE(1614), - [sym_val_nothing] = STATE(1675), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(1675), - [sym_val_number] = STATE(1675), - [sym__val_number_decimal] = STATE(3375), - [sym__val_number] = STATE(1676), - [sym_val_duration] = STATE(1675), - [sym_val_filesize] = STATE(1675), - [sym_val_binary] = STATE(1675), - [sym_val_string] = STATE(1675), - [sym__str_double_quotes] = STATE(1389), - [sym_val_interpolated] = STATE(1675), - [sym__inter_single_quotes] = STATE(1708), - [sym__inter_double_quotes] = STATE(1709), - [sym_val_list] = STATE(1675), - [sym_val_record] = STATE(1675), - [sym_val_table] = STATE(1675), - [sym_val_closure] = STATE(1675), - [sym_unquoted] = STATE(1388), - [sym__unquoted_with_expr] = STATE(1622), - [sym__unquoted_anonymous_prefix] = STATE(7135), - [sym_comment] = STATE(994), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3247), - [aux_sym_cmd_identifier_token39] = ACTIONS(3247), - [aux_sym_cmd_identifier_token40] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(395), - [aux_sym_ctrl_match_token1] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), - [anon_sym_DOT_DOT_LT] = ACTIONS(3261), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [1023] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3809), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1495), + [sym__unquoted_with_expr] = STATE(1774), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1023), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3271), + [sym_val_date] = ACTIONS(3287), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3273), - [anon_sym_POUND] = ACTIONS(247), - }, - [995] = { - [sym_expr_unary] = STATE(2402), - [sym__expr_unary_minus] = STATE(2398), - [sym_expr_binary] = STATE(2402), - [sym__expr_binary_expression] = STATE(2370), - [sym_expr_parenthesized] = STATE(2402), - [sym__val_range] = STATE(7784), - [sym__val_range_with_end] = STATE(7383), - [sym__value] = STATE(2402), - [sym_val_nothing] = STATE(2348), - [sym_val_bool] = STATE(2060), - [sym_val_variable] = STATE(2348), - [sym_val_number] = STATE(2348), - [sym__val_number_decimal] = STATE(1347), - [sym__val_number] = STATE(2401), - [sym_val_duration] = STATE(2348), - [sym_val_filesize] = STATE(2348), - [sym_val_binary] = STATE(2348), - [sym_val_string] = STATE(2348), - [sym__str_double_quotes] = STATE(1984), - [sym_val_interpolated] = STATE(2348), - [sym__inter_single_quotes] = STATE(2404), - [sym__inter_double_quotes] = STATE(2407), - [sym_val_list] = STATE(2348), - [sym_val_record] = STATE(2348), - [sym_val_table] = STATE(2348), - [sym_val_closure] = STATE(2348), - [sym_unquoted] = STATE(2123), - [sym__unquoted_with_expr] = STATE(2391), - [sym__unquoted_anonymous_prefix] = STATE(6671), - [sym_comment] = STATE(995), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3219), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), - [anon_sym_DOT_DOT_LT] = ACTIONS(3229), - [aux_sym__val_number_decimal_token1] = ACTIONS(3231), - [aux_sym__val_number_decimal_token2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_decimal_token4] = ACTIONS(3237), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3241), - [anon_sym_POUND] = ACTIONS(247), - }, - [996] = { - [sym_expr_unary] = STATE(4441), - [sym__expr_unary_minus] = STATE(4266), - [sym_expr_parenthesized] = STATE(4043), - [sym_val_range] = STATE(4441), - [sym__val_range] = STATE(7633), - [sym__val_range_with_end] = STATE(7419), - [sym__value] = STATE(4441), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(4084), - [sym_val_variable] = STATE(4005), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(3837), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(4163), - [sym__unquoted_with_expr] = STATE(4366), - [sym__unquoted_anonymous_prefix] = STATE(6704), - [sym_comment] = STATE(996), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_null] = ACTIONS(3377), - [aux_sym_cmd_identifier_token38] = ACTIONS(3379), - [aux_sym_cmd_identifier_token39] = ACTIONS(3379), - [aux_sym_cmd_identifier_token40] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3387), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3391), - [aux_sym_expr_unary_token1] = ACTIONS(3393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), - [anon_sym_DOT_DOT_LT] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(247), - }, - [997] = { - [sym_expr_unary] = STATE(4329), - [sym__expr_unary_minus] = STATE(4266), - [sym_expr_parenthesized] = STATE(4031), - [sym_val_range] = STATE(4329), - [sym__val_range] = STATE(7633), - [sym__val_range_with_end] = STATE(7419), - [sym__value] = STATE(4329), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(4084), - [sym_val_variable] = STATE(4005), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(3837), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(4075), - [sym__unquoted_with_expr] = STATE(4388), - [sym__unquoted_anonymous_prefix] = STATE(6704), - [sym_comment] = STATE(997), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_null] = ACTIONS(3377), - [aux_sym_cmd_identifier_token38] = ACTIONS(3379), - [aux_sym_cmd_identifier_token39] = ACTIONS(3379), - [aux_sym_cmd_identifier_token40] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3387), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3391), - [aux_sym_expr_unary_token1] = ACTIONS(3393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), - [anon_sym_DOT_DOT_LT] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(247), - }, - [998] = { - [sym_expr_unary] = STATE(4473), - [sym__expr_unary_minus] = STATE(4560), - [sym_expr_parenthesized] = STATE(4089), - [sym_val_range] = STATE(4473), - [sym__val_range] = STATE(7486), - [sym__val_range_with_end] = STATE(7416), - [sym__value] = STATE(4473), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(4201), - [sym_val_variable] = STATE(4068), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(3860), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(4191), - [sym__unquoted_with_expr] = STATE(4480), - [sym__unquoted_anonymous_prefix] = STATE(6681), - [sym_comment] = STATE(998), - [anon_sym_true] = ACTIONS(3423), - [anon_sym_false] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3425), - [aux_sym_cmd_identifier_token38] = ACTIONS(3427), - [aux_sym_cmd_identifier_token39] = ACTIONS(3427), - [aux_sym_cmd_identifier_token40] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3435), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(3439), - [aux_sym_expr_unary_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3443), - [anon_sym_DOT_DOT_LT] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(247), - }, - [999] = { - [sym_expr_unary] = STATE(4484), - [sym__expr_unary_minus] = STATE(4560), - [sym_expr_parenthesized] = STATE(4092), - [sym_val_range] = STATE(4484), - [sym__val_range] = STATE(7486), - [sym__val_range_with_end] = STATE(7416), - [sym__value] = STATE(4484), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(4201), - [sym_val_variable] = STATE(4068), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(3860), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(4203), - [sym__unquoted_with_expr] = STATE(4490), - [sym__unquoted_anonymous_prefix] = STATE(6681), - [sym_comment] = STATE(999), - [anon_sym_true] = ACTIONS(3423), - [anon_sym_false] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3425), - [aux_sym_cmd_identifier_token38] = ACTIONS(3427), - [aux_sym_cmd_identifier_token39] = ACTIONS(3427), - [aux_sym_cmd_identifier_token40] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3435), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(3439), - [aux_sym_expr_unary_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3443), - [anon_sym_DOT_DOT_LT] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(247), - }, - [1000] = { - [sym_expr_unary] = STATE(4482), - [sym__expr_unary_minus] = STATE(4560), - [sym_expr_parenthesized] = STATE(4091), - [sym_val_range] = STATE(4482), - [sym__val_range] = STATE(7486), - [sym__val_range_with_end] = STATE(7416), - [sym__value] = STATE(4482), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(4201), - [sym_val_variable] = STATE(4068), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(3860), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(4197), - [sym__unquoted_with_expr] = STATE(4483), - [sym__unquoted_anonymous_prefix] = STATE(6681), - [sym_comment] = STATE(1000), - [anon_sym_true] = ACTIONS(3423), - [anon_sym_false] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3425), - [aux_sym_cmd_identifier_token38] = ACTIONS(3427), - [aux_sym_cmd_identifier_token39] = ACTIONS(3427), - [aux_sym_cmd_identifier_token40] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3435), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(3439), - [aux_sym_expr_unary_token1] = ACTIONS(3441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3443), - [anon_sym_DOT_DOT_LT] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(247), - }, - [1001] = { - [sym_expr_unary] = STATE(4410), - [sym__expr_unary_minus] = STATE(4266), - [sym_expr_parenthesized] = STATE(4019), - [sym_val_range] = STATE(4410), - [sym__val_range] = STATE(7633), - [sym__val_range_with_end] = STATE(7419), - [sym__value] = STATE(4410), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(4084), - [sym_val_variable] = STATE(4005), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(3837), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(4081), - [sym__unquoted_with_expr] = STATE(4440), - [sym__unquoted_anonymous_prefix] = STATE(6704), - [sym_comment] = STATE(1001), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_null] = ACTIONS(3377), - [aux_sym_cmd_identifier_token38] = ACTIONS(3379), - [aux_sym_cmd_identifier_token39] = ACTIONS(3379), - [aux_sym_cmd_identifier_token40] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3387), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3391), - [aux_sym_expr_unary_token1] = ACTIONS(3393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), - [anon_sym_DOT_DOT_LT] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(247), - }, - [1002] = { - [sym_match_arm] = STATE(5952), - [sym_default_arm] = STATE(7643), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(1010), - [aux_sym_ctrl_match_repeat1] = STATE(1050), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3487), - [anon_sym__] = ACTIONS(3489), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1003] = { - [sym_match_arm] = STATE(5942), - [sym_default_arm] = STATE(7574), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(1016), - [aux_sym_ctrl_match_repeat1] = STATE(1055), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym__] = ACTIONS(3489), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1004] = { - [sym_match_arm] = STATE(6020), - [sym_default_arm] = STATE(7567), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(1014), - [aux_sym_ctrl_match_repeat1] = STATE(1036), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3507), - [anon_sym__] = ACTIONS(3489), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1005] = { - [sym_match_arm] = STATE(6021), - [sym_default_arm] = STATE(7585), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(1012), - [aux_sym_ctrl_match_repeat1] = STATE(1037), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3509), - [anon_sym__] = ACTIONS(3489), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1006] = { - [sym_expr_parenthesized] = STATE(4559), - [sym_val_range] = STATE(4950), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(4950), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(4697), - [sym_val_variable] = STATE(4553), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(4003), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4690), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym__unquoted_in_list] = STATE(4684), - [sym__unquoted_in_list_with_expr] = STATE(4950), - [sym__unquoted_anonymous_prefix] = STATE(7090), - [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(1008), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(3513), - [aux_sym_cmd_identifier_token38] = ACTIONS(3515), - [aux_sym_cmd_identifier_token39] = ACTIONS(3515), - [aux_sym_cmd_identifier_token40] = ACTIONS(3515), - [sym__newline] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3523), - [aux_sym_ctrl_match_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3547), - [sym__str_single_quotes] = ACTIONS(3549), - [sym__str_back_ticks] = ACTIONS(3549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), - [anon_sym_POUND] = ACTIONS(247), - }, - [1007] = { - [sym_expr_parenthesized] = STATE(4547), - [sym_val_range] = STATE(5039), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(5039), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(4697), - [sym_val_variable] = STATE(4553), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(4003), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4690), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym__unquoted_in_list] = STATE(4667), - [sym__unquoted_in_list_with_expr] = STATE(5039), - [sym__unquoted_anonymous_prefix] = STATE(7090), - [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(1009), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(3513), - [aux_sym_cmd_identifier_token38] = ACTIONS(3515), - [aux_sym_cmd_identifier_token39] = ACTIONS(3515), - [aux_sym_cmd_identifier_token40] = ACTIONS(3515), - [sym__newline] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3523), - [aux_sym_ctrl_match_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3547), - [sym__str_single_quotes] = ACTIONS(3549), - [sym__str_back_ticks] = ACTIONS(3549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), - [anon_sym_POUND] = ACTIONS(247), - }, - [1008] = { - [sym_expr_parenthesized] = STATE(4474), - [sym_val_range] = STATE(4981), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(4981), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(4697), - [sym_val_variable] = STATE(4553), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(4003), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4690), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym__unquoted_in_list] = STATE(4603), - [sym__unquoted_in_list_with_expr] = STATE(4981), - [sym__unquoted_anonymous_prefix] = STATE(7090), - [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(2860), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(3513), - [aux_sym_cmd_identifier_token38] = ACTIONS(3515), - [aux_sym_cmd_identifier_token39] = ACTIONS(3515), - [aux_sym_cmd_identifier_token40] = ACTIONS(3515), - [sym__newline] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3523), - [aux_sym_ctrl_match_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3547), - [sym__str_single_quotes] = ACTIONS(3549), - [sym__str_back_ticks] = ACTIONS(3549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), - [anon_sym_POUND] = ACTIONS(247), - }, - [1009] = { - [sym_expr_parenthesized] = STATE(4559), - [sym_val_range] = STATE(4950), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(4950), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(4697), - [sym_val_variable] = STATE(4553), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(4003), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4690), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym__unquoted_in_list] = STATE(4684), - [sym__unquoted_in_list_with_expr] = STATE(4950), - [sym__unquoted_anonymous_prefix] = STATE(7090), - [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(2860), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(3513), - [aux_sym_cmd_identifier_token38] = ACTIONS(3515), - [aux_sym_cmd_identifier_token39] = ACTIONS(3515), - [aux_sym_cmd_identifier_token40] = ACTIONS(3515), - [sym__newline] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3523), - [aux_sym_ctrl_match_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), - [anon_sym_DOT_DOT_LT] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3547), - [sym__str_single_quotes] = ACTIONS(3549), - [sym__str_back_ticks] = ACTIONS(3549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), - [anon_sym_POUND] = ACTIONS(247), - }, - [1010] = { - [sym_match_arm] = STATE(6023), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(2950), - [aux_sym_ctrl_match_repeat1] = STATE(1044), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1011] = { - [sym_comment] = STATE(1011), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(3559), - [aux_sym_cmd_identifier_token2] = ACTIONS(3559), - [aux_sym_cmd_identifier_token3] = ACTIONS(3559), - [aux_sym_cmd_identifier_token4] = ACTIONS(3559), - [aux_sym_cmd_identifier_token5] = ACTIONS(3559), - [aux_sym_cmd_identifier_token6] = ACTIONS(3559), - [aux_sym_cmd_identifier_token7] = ACTIONS(3559), - [aux_sym_cmd_identifier_token8] = ACTIONS(3559), - [aux_sym_cmd_identifier_token9] = ACTIONS(3559), - [aux_sym_cmd_identifier_token10] = ACTIONS(3559), - [aux_sym_cmd_identifier_token11] = ACTIONS(3559), - [aux_sym_cmd_identifier_token12] = ACTIONS(3559), - [aux_sym_cmd_identifier_token13] = ACTIONS(3559), - [aux_sym_cmd_identifier_token14] = ACTIONS(3559), - [aux_sym_cmd_identifier_token15] = ACTIONS(3559), - [aux_sym_cmd_identifier_token16] = ACTIONS(3559), - [aux_sym_cmd_identifier_token17] = ACTIONS(3559), - [aux_sym_cmd_identifier_token18] = ACTIONS(3559), - [aux_sym_cmd_identifier_token19] = ACTIONS(3559), - [aux_sym_cmd_identifier_token20] = ACTIONS(3559), - [aux_sym_cmd_identifier_token21] = ACTIONS(3559), - [aux_sym_cmd_identifier_token22] = ACTIONS(3559), - [aux_sym_cmd_identifier_token23] = ACTIONS(3559), - [aux_sym_cmd_identifier_token24] = ACTIONS(3559), - [aux_sym_cmd_identifier_token25] = ACTIONS(3559), - [aux_sym_cmd_identifier_token26] = ACTIONS(3559), - [aux_sym_cmd_identifier_token27] = ACTIONS(3559), - [aux_sym_cmd_identifier_token28] = ACTIONS(3559), - [aux_sym_cmd_identifier_token29] = ACTIONS(3559), - [aux_sym_cmd_identifier_token30] = ACTIONS(3559), - [aux_sym_cmd_identifier_token31] = ACTIONS(3559), - [aux_sym_cmd_identifier_token32] = ACTIONS(3559), - [aux_sym_cmd_identifier_token33] = ACTIONS(3559), - [aux_sym_cmd_identifier_token34] = ACTIONS(3559), - [aux_sym_cmd_identifier_token35] = ACTIONS(3559), - [aux_sym_cmd_identifier_token36] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3559), - [anon_sym_false] = ACTIONS(3559), - [anon_sym_null] = ACTIONS(3559), - [aux_sym_cmd_identifier_token38] = ACTIONS(3559), - [aux_sym_cmd_identifier_token39] = ACTIONS(3559), - [aux_sym_cmd_identifier_token40] = ACTIONS(3559), - [sym__newline] = ACTIONS(3561), - [sym__space] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3559), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_DOLLAR] = ACTIONS(3559), - [anon_sym_DASH] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3559), - [anon_sym_DOT_DOT] = ACTIONS(3559), - [aux_sym_expr_unary_token1] = ACTIONS(3559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3559), - [anon_sym_DOT_DOT_LT] = ACTIONS(3559), - [aux_sym__val_number_decimal_token1] = ACTIONS(3559), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3559), - [aux_sym__val_number_decimal_token4] = ACTIONS(3559), - [aux_sym__val_number_token1] = ACTIONS(3559), - [aux_sym__val_number_token2] = ACTIONS(3559), - [aux_sym__val_number_token3] = ACTIONS(3559), - [anon_sym_0b] = ACTIONS(3559), - [anon_sym_0o] = ACTIONS(3559), - [anon_sym_0x] = ACTIONS(3559), - [sym_val_date] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym__str_single_quotes] = ACTIONS(3559), - [sym__str_back_ticks] = ACTIONS(3559), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3559), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3559), - [aux_sym_env_var_token1] = ACTIONS(3559), - [anon_sym_CARET] = ACTIONS(3559), - [anon_sym_POUND] = ACTIONS(3), - }, - [1012] = { - [sym_match_arm] = STATE(6002), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(2950), - [aux_sym_ctrl_match_repeat1] = STATE(1039), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1013] = { - [sym_expr_parenthesized] = STATE(365), - [sym_val_range] = STATE(545), - [sym__val_range] = STATE(7684), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(545), - [sym_val_nothing] = STATE(556), - [sym_val_bool] = STATE(436), - [sym_val_variable] = STATE(398), - [sym_val_number] = STATE(556), - [sym__val_number_decimal] = STATE(194), - [sym__val_number] = STATE(542), - [sym_val_duration] = STATE(556), - [sym_val_filesize] = STATE(556), - [sym_val_binary] = STATE(556), - [sym_val_string] = STATE(556), - [sym__str_double_quotes] = STATE(559), - [sym_val_interpolated] = STATE(556), - [sym__inter_single_quotes] = STATE(514), - [sym__inter_double_quotes] = STATE(515), - [sym_val_list] = STATE(556), - [sym_val_record] = STATE(556), - [sym_val_table] = STATE(556), - [sym_val_closure] = STATE(556), - [sym__unquoted_in_record] = STATE(429), - [sym__unquoted_in_record_with_expr] = STATE(545), - [sym__unquoted_anonymous_prefix] = STATE(7013), - [sym_comment] = STATE(1013), - [anon_sym_true] = ACTIONS(3567), - [anon_sym_false] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3569), - [aux_sym_cmd_identifier_token38] = ACTIONS(3571), - [aux_sym_cmd_identifier_token39] = ACTIONS(3571), - [aux_sym_cmd_identifier_token40] = ACTIONS(3571), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(3577), - [anon_sym_DOT_DOT] = ACTIONS(3579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3581), - [anon_sym_DOT_DOT_LT] = ACTIONS(3581), - [aux_sym__val_number_decimal_token1] = ACTIONS(3583), - [aux_sym__val_number_decimal_token2] = ACTIONS(3585), - [aux_sym__val_number_decimal_token3] = ACTIONS(3587), - [aux_sym__val_number_decimal_token4] = ACTIONS(3589), - [aux_sym__val_number_token1] = ACTIONS(3591), - [aux_sym__val_number_token2] = ACTIONS(3591), - [aux_sym__val_number_token3] = ACTIONS(3591), - [anon_sym_0b] = ACTIONS(3593), - [anon_sym_0o] = ACTIONS(3595), - [anon_sym_0x] = ACTIONS(3595), - [sym_val_date] = ACTIONS(3597), - [anon_sym_DQUOTE] = ACTIONS(3599), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3609), - [anon_sym_out_GT_GT] = ACTIONS(3609), - [anon_sym_e_GT_GT] = ACTIONS(3609), - [anon_sym_o_GT_GT] = ACTIONS(3609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - }, - [1014] = { - [sym_match_arm] = STATE(6006), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(2950), - [aux_sym_ctrl_match_repeat1] = STATE(1038), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1015] = { - [sym_expr_parenthesized] = STATE(463), - [sym_val_range] = STATE(652), - [sym__val_range] = STATE(7601), - [sym__val_range_with_end] = STATE(7337), - [sym__value] = STATE(652), - [sym_val_nothing] = STATE(618), - [sym_val_bool] = STATE(472), - [sym_val_variable] = STATE(424), - [sym_val_number] = STATE(618), - [sym__val_number_decimal] = STATE(213), - [sym__val_number] = STATE(648), - [sym_val_duration] = STATE(618), - [sym_val_filesize] = STATE(618), - [sym_val_binary] = STATE(618), - [sym_val_string] = STATE(618), - [sym__str_double_quotes] = STATE(614), - [sym_val_interpolated] = STATE(618), - [sym__inter_single_quotes] = STATE(653), - [sym__inter_double_quotes] = STATE(656), - [sym_val_list] = STATE(618), - [sym_val_record] = STATE(618), - [sym_val_table] = STATE(618), - [sym_val_closure] = STATE(618), - [sym__unquoted_in_record] = STATE(505), - [sym__unquoted_in_record_with_expr] = STATE(652), - [sym__unquoted_anonymous_prefix] = STATE(7045), - [sym_comment] = STATE(1015), - [anon_sym_true] = ACTIONS(3613), - [anon_sym_false] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3615), - [aux_sym_cmd_identifier_token38] = ACTIONS(3617), - [aux_sym_cmd_identifier_token39] = ACTIONS(3617), - [aux_sym_cmd_identifier_token40] = ACTIONS(3617), - [anon_sym_LBRACK] = ACTIONS(3619), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_DOLLAR] = ACTIONS(3623), - [aux_sym_ctrl_match_token1] = ACTIONS(3625), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3629), - [anon_sym_DOT_DOT_LT] = ACTIONS(3629), - [aux_sym__val_number_decimal_token1] = ACTIONS(3631), - [aux_sym__val_number_decimal_token2] = ACTIONS(3633), - [aux_sym__val_number_decimal_token3] = ACTIONS(3635), - [aux_sym__val_number_decimal_token4] = ACTIONS(3637), - [aux_sym__val_number_token1] = ACTIONS(3639), - [aux_sym__val_number_token2] = ACTIONS(3639), - [aux_sym__val_number_token3] = ACTIONS(3639), - [anon_sym_0b] = ACTIONS(3641), - [anon_sym_0o] = ACTIONS(3643), - [anon_sym_0x] = ACTIONS(3643), - [sym_val_date] = ACTIONS(3645), - [anon_sym_DQUOTE] = ACTIONS(3647), - [sym__str_single_quotes] = ACTIONS(3649), - [sym__str_back_ticks] = ACTIONS(3649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3653), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3609), - [anon_sym_out_GT_GT] = ACTIONS(3609), - [anon_sym_e_GT_GT] = ACTIONS(3609), - [anon_sym_o_GT_GT] = ACTIONS(3609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(247), - }, - [1016] = { - [sym_match_arm] = STATE(6018), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), - [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(2950), - [aux_sym_ctrl_match_repeat1] = STATE(1056), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [sym__newline] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), - }, - [1017] = { - [sym_expr_parenthesized] = STATE(5963), - [sym_val_range] = STATE(543), - [sym__val_range] = STATE(7684), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(543), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6589), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5209), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_record] = STATE(413), - [sym__unquoted_in_record_with_expr] = STATE(543), - [sym__unquoted_anonymous_prefix] = STATE(7013), - [sym_comment] = STATE(1017), - [anon_sym_true] = ACTIONS(3657), - [anon_sym_false] = ACTIONS(3657), - [anon_sym_null] = ACTIONS(3659), - [aux_sym_cmd_identifier_token38] = ACTIONS(3661), - [aux_sym_cmd_identifier_token39] = ACTIONS(3661), - [aux_sym_cmd_identifier_token40] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(3663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3665), - [anon_sym_DOT_DOT_LT] = ACTIONS(3665), - [aux_sym__val_number_decimal_token1] = ACTIONS(3667), - [aux_sym__val_number_decimal_token2] = ACTIONS(3669), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3673), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3609), - [anon_sym_out_GT_GT] = ACTIONS(3609), - [anon_sym_e_GT_GT] = ACTIONS(3609), - [anon_sym_o_GT_GT] = ACTIONS(3609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - }, - [1018] = { - [sym_comment] = STATE(1018), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(3677), - [aux_sym_cmd_identifier_token2] = ACTIONS(3677), - [aux_sym_cmd_identifier_token3] = ACTIONS(3677), - [aux_sym_cmd_identifier_token4] = ACTIONS(3677), - [aux_sym_cmd_identifier_token5] = ACTIONS(3677), - [aux_sym_cmd_identifier_token6] = ACTIONS(3677), - [aux_sym_cmd_identifier_token7] = ACTIONS(3677), - [aux_sym_cmd_identifier_token8] = ACTIONS(3677), - [aux_sym_cmd_identifier_token9] = ACTIONS(3677), - [aux_sym_cmd_identifier_token10] = ACTIONS(3677), - [aux_sym_cmd_identifier_token11] = ACTIONS(3677), - [aux_sym_cmd_identifier_token12] = ACTIONS(3677), - [aux_sym_cmd_identifier_token13] = ACTIONS(3677), - [aux_sym_cmd_identifier_token14] = ACTIONS(3677), - [aux_sym_cmd_identifier_token15] = ACTIONS(3677), - [aux_sym_cmd_identifier_token16] = ACTIONS(3677), - [aux_sym_cmd_identifier_token17] = ACTIONS(3677), - [aux_sym_cmd_identifier_token18] = ACTIONS(3677), - [aux_sym_cmd_identifier_token19] = ACTIONS(3677), - [aux_sym_cmd_identifier_token20] = ACTIONS(3677), - [aux_sym_cmd_identifier_token21] = ACTIONS(3677), - [aux_sym_cmd_identifier_token22] = ACTIONS(3677), - [aux_sym_cmd_identifier_token23] = ACTIONS(3677), - [aux_sym_cmd_identifier_token24] = ACTIONS(3677), - [aux_sym_cmd_identifier_token25] = ACTIONS(3677), - [aux_sym_cmd_identifier_token26] = ACTIONS(3677), - [aux_sym_cmd_identifier_token27] = ACTIONS(3677), - [aux_sym_cmd_identifier_token28] = ACTIONS(3677), - [aux_sym_cmd_identifier_token29] = ACTIONS(3677), - [aux_sym_cmd_identifier_token30] = ACTIONS(3677), - [aux_sym_cmd_identifier_token31] = ACTIONS(3677), - [aux_sym_cmd_identifier_token32] = ACTIONS(3677), - [aux_sym_cmd_identifier_token33] = ACTIONS(3677), - [aux_sym_cmd_identifier_token34] = ACTIONS(3677), - [aux_sym_cmd_identifier_token35] = ACTIONS(3677), - [aux_sym_cmd_identifier_token36] = ACTIONS(3677), - [anon_sym_true] = ACTIONS(3677), - [anon_sym_false] = ACTIONS(3677), - [anon_sym_null] = ACTIONS(3677), - [aux_sym_cmd_identifier_token38] = ACTIONS(3677), - [aux_sym_cmd_identifier_token39] = ACTIONS(3677), - [aux_sym_cmd_identifier_token40] = ACTIONS(3677), - [sym__newline] = ACTIONS(3679), - [sym__space] = ACTIONS(3681), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_DOLLAR] = ACTIONS(3677), - [anon_sym_DASH] = ACTIONS(3677), - [aux_sym_ctrl_match_token1] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [aux_sym_expr_unary_token1] = ACTIONS(3677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3677), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [aux_sym__val_number_decimal_token1] = ACTIONS(3677), - [aux_sym__val_number_decimal_token2] = ACTIONS(3677), - [aux_sym__val_number_decimal_token3] = ACTIONS(3677), - [aux_sym__val_number_decimal_token4] = ACTIONS(3677), - [aux_sym__val_number_token1] = ACTIONS(3677), - [aux_sym__val_number_token2] = ACTIONS(3677), - [aux_sym__val_number_token3] = ACTIONS(3677), - [anon_sym_0b] = ACTIONS(3677), - [anon_sym_0o] = ACTIONS(3677), - [anon_sym_0x] = ACTIONS(3677), - [sym_val_date] = ACTIONS(3677), - [anon_sym_DQUOTE] = ACTIONS(3677), - [sym__str_single_quotes] = ACTIONS(3677), - [sym__str_back_ticks] = ACTIONS(3677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3677), - [aux_sym_env_var_token1] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_POUND] = ACTIONS(3), - }, - [1019] = { - [sym_expr_parenthesized] = STATE(5995), - [sym_val_range] = STATE(545), - [sym__val_range] = STATE(7684), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(545), - [sym_val_nothing] = STATE(6275), - [sym_val_bool] = STATE(6589), - [sym_val_variable] = STATE(5808), - [sym_val_number] = STATE(6275), - [sym__val_number_decimal] = STATE(5209), - [sym__val_number] = STATE(2907), - [sym_val_duration] = STATE(6275), - [sym_val_filesize] = STATE(6275), - [sym_val_binary] = STATE(6275), - [sym_val_string] = STATE(6275), - [sym__str_double_quotes] = STATE(5345), - [sym_val_interpolated] = STATE(6275), - [sym__inter_single_quotes] = STATE(6539), - [sym__inter_double_quotes] = STATE(6540), - [sym_val_list] = STATE(6275), - [sym_val_record] = STATE(6275), - [sym_val_table] = STATE(6275), - [sym_val_closure] = STATE(6275), - [sym__unquoted_in_record] = STATE(429), - [sym__unquoted_in_record_with_expr] = STATE(545), - [sym__unquoted_anonymous_prefix] = STATE(7013), - [sym_comment] = STATE(1019), - [anon_sym_true] = ACTIONS(3657), - [anon_sym_false] = ACTIONS(3657), - [anon_sym_null] = ACTIONS(3659), - [aux_sym_cmd_identifier_token38] = ACTIONS(3661), - [aux_sym_cmd_identifier_token39] = ACTIONS(3661), - [aux_sym_cmd_identifier_token40] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_DOLLAR] = ACTIONS(2986), - [aux_sym_ctrl_match_token1] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(3663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3665), - [anon_sym_DOT_DOT_LT] = ACTIONS(3665), - [aux_sym__val_number_decimal_token1] = ACTIONS(3667), - [aux_sym__val_number_decimal_token2] = ACTIONS(3669), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3673), - [aux_sym__val_number_token1] = ACTIONS(2832), - [aux_sym__val_number_token2] = ACTIONS(2832), - [aux_sym__val_number_token3] = ACTIONS(2832), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym__str_single_quotes] = ACTIONS(3006), - [sym__str_back_ticks] = ACTIONS(3006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3609), - [anon_sym_out_GT_GT] = ACTIONS(3609), - [anon_sym_e_GT_GT] = ACTIONS(3609), - [anon_sym_o_GT_GT] = ACTIONS(3609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - }, - [1020] = { - [sym_expr_parenthesized] = STATE(437), - [sym_val_range] = STATE(655), - [sym__val_range] = STATE(7601), - [sym__val_range_with_end] = STATE(7337), - [sym__value] = STATE(655), - [sym_val_nothing] = STATE(618), - [sym_val_bool] = STATE(472), - [sym_val_variable] = STATE(424), - [sym_val_number] = STATE(618), - [sym__val_number_decimal] = STATE(213), - [sym__val_number] = STATE(648), - [sym_val_duration] = STATE(618), - [sym_val_filesize] = STATE(618), - [sym_val_binary] = STATE(618), - [sym_val_string] = STATE(618), - [sym__str_double_quotes] = STATE(614), - [sym_val_interpolated] = STATE(618), - [sym__inter_single_quotes] = STATE(653), - [sym__inter_double_quotes] = STATE(656), - [sym_val_list] = STATE(618), - [sym_val_record] = STATE(618), - [sym_val_table] = STATE(618), - [sym_val_closure] = STATE(618), - [sym__unquoted_in_record] = STATE(506), - [sym__unquoted_in_record_with_expr] = STATE(655), - [sym__unquoted_anonymous_prefix] = STATE(7045), - [sym_comment] = STATE(1020), - [anon_sym_true] = ACTIONS(3613), - [anon_sym_false] = ACTIONS(3613), - [anon_sym_null] = ACTIONS(3615), - [aux_sym_cmd_identifier_token38] = ACTIONS(3617), - [aux_sym_cmd_identifier_token39] = ACTIONS(3617), - [aux_sym_cmd_identifier_token40] = ACTIONS(3617), - [anon_sym_LBRACK] = ACTIONS(3619), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_DOLLAR] = ACTIONS(3623), - [aux_sym_ctrl_match_token1] = ACTIONS(3625), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3629), - [anon_sym_DOT_DOT_LT] = ACTIONS(3629), - [aux_sym__val_number_decimal_token1] = ACTIONS(3631), - [aux_sym__val_number_decimal_token2] = ACTIONS(3633), - [aux_sym__val_number_decimal_token3] = ACTIONS(3635), - [aux_sym__val_number_decimal_token4] = ACTIONS(3637), - [aux_sym__val_number_token1] = ACTIONS(3639), - [aux_sym__val_number_token2] = ACTIONS(3639), - [aux_sym__val_number_token3] = ACTIONS(3639), - [anon_sym_0b] = ACTIONS(3641), - [anon_sym_0o] = ACTIONS(3643), - [anon_sym_0x] = ACTIONS(3643), - [sym_val_date] = ACTIONS(3645), - [anon_sym_DQUOTE] = ACTIONS(3647), - [sym__str_single_quotes] = ACTIONS(3649), - [sym__str_back_ticks] = ACTIONS(3649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3653), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3609), - [anon_sym_out_GT_GT] = ACTIONS(3609), - [anon_sym_e_GT_GT] = ACTIONS(3609), - [anon_sym_o_GT_GT] = ACTIONS(3609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(247), - }, - [1021] = { - [sym_expr_parenthesized] = STATE(362), - [sym_val_range] = STATE(543), - [sym__val_range] = STATE(7684), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(543), - [sym_val_nothing] = STATE(556), - [sym_val_bool] = STATE(436), - [sym_val_variable] = STATE(398), - [sym_val_number] = STATE(556), - [sym__val_number_decimal] = STATE(194), - [sym__val_number] = STATE(542), - [sym_val_duration] = STATE(556), - [sym_val_filesize] = STATE(556), - [sym_val_binary] = STATE(556), - [sym_val_string] = STATE(556), - [sym__str_double_quotes] = STATE(559), - [sym_val_interpolated] = STATE(556), - [sym__inter_single_quotes] = STATE(514), - [sym__inter_double_quotes] = STATE(515), - [sym_val_list] = STATE(556), - [sym_val_record] = STATE(556), - [sym_val_table] = STATE(556), - [sym_val_closure] = STATE(556), - [sym__unquoted_in_record] = STATE(413), - [sym__unquoted_in_record_with_expr] = STATE(543), - [sym__unquoted_anonymous_prefix] = STATE(7013), - [sym_comment] = STATE(1021), - [anon_sym_true] = ACTIONS(3567), - [anon_sym_false] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3569), - [aux_sym_cmd_identifier_token38] = ACTIONS(3571), - [aux_sym_cmd_identifier_token39] = ACTIONS(3571), - [aux_sym_cmd_identifier_token40] = ACTIONS(3571), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(3577), - [anon_sym_DOT_DOT] = ACTIONS(3579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3581), - [anon_sym_DOT_DOT_LT] = ACTIONS(3581), - [aux_sym__val_number_decimal_token1] = ACTIONS(3583), - [aux_sym__val_number_decimal_token2] = ACTIONS(3585), - [aux_sym__val_number_decimal_token3] = ACTIONS(3587), - [aux_sym__val_number_decimal_token4] = ACTIONS(3589), - [aux_sym__val_number_token1] = ACTIONS(3591), - [aux_sym__val_number_token2] = ACTIONS(3591), - [aux_sym__val_number_token3] = ACTIONS(3591), - [anon_sym_0b] = ACTIONS(3593), - [anon_sym_0o] = ACTIONS(3595), - [anon_sym_0x] = ACTIONS(3595), - [sym_val_date] = ACTIONS(3597), - [anon_sym_DQUOTE] = ACTIONS(3599), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3609), - [anon_sym_out_GT_GT] = ACTIONS(3609), - [anon_sym_e_GT_GT] = ACTIONS(3609), - [anon_sym_o_GT_GT] = ACTIONS(3609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - }, - [1022] = { - [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1898), - [aux_sym_cmd_identifier_token2] = ACTIONS(1900), - [aux_sym_cmd_identifier_token3] = ACTIONS(1900), - [aux_sym_cmd_identifier_token4] = ACTIONS(1900), - [aux_sym_cmd_identifier_token5] = ACTIONS(1900), - [aux_sym_cmd_identifier_token6] = ACTIONS(1900), - [aux_sym_cmd_identifier_token7] = ACTIONS(1900), - [aux_sym_cmd_identifier_token8] = ACTIONS(1900), - [aux_sym_cmd_identifier_token9] = ACTIONS(1898), - [aux_sym_cmd_identifier_token10] = ACTIONS(1900), - [aux_sym_cmd_identifier_token11] = ACTIONS(1900), - [aux_sym_cmd_identifier_token12] = ACTIONS(1900), - [aux_sym_cmd_identifier_token13] = ACTIONS(1898), - [aux_sym_cmd_identifier_token14] = ACTIONS(1900), - [aux_sym_cmd_identifier_token15] = ACTIONS(1898), - [aux_sym_cmd_identifier_token16] = ACTIONS(1900), - [aux_sym_cmd_identifier_token17] = ACTIONS(1900), - [aux_sym_cmd_identifier_token18] = ACTIONS(1900), - [aux_sym_cmd_identifier_token19] = ACTIONS(1900), - [aux_sym_cmd_identifier_token20] = ACTIONS(1900), - [aux_sym_cmd_identifier_token21] = ACTIONS(1900), - [aux_sym_cmd_identifier_token22] = ACTIONS(1900), - [aux_sym_cmd_identifier_token23] = ACTIONS(1898), - [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1900), - [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1900), - [aux_sym_cmd_identifier_token28] = ACTIONS(1900), - [aux_sym_cmd_identifier_token29] = ACTIONS(1900), - [aux_sym_cmd_identifier_token30] = ACTIONS(1900), - [aux_sym_cmd_identifier_token31] = ACTIONS(1900), - [aux_sym_cmd_identifier_token32] = ACTIONS(1900), - [aux_sym_cmd_identifier_token33] = ACTIONS(1900), - [aux_sym_cmd_identifier_token34] = ACTIONS(1900), - [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), - [aux_sym_cmd_identifier_token38] = ACTIONS(1898), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [sym__newline] = ACTIONS(3683), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [aux_sym_ctrl_match_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [aux_sym_expr_unary_token1] = ACTIONS(1900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), - [anon_sym_DOT_DOT_LT] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1898), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_0b] = ACTIONS(1898), - [anon_sym_0o] = ACTIONS(1898), - [anon_sym_0x] = ACTIONS(1898), - [sym_val_date] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), - [anon_sym_CARET] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(247), - }, - [1023] = { - [sym_expr_parenthesized] = STATE(6525), - [sym_val_range] = STATE(7554), - [sym__val_range] = STATE(7774), - [sym__value] = STATE(7554), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(3505), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(7502), - [sym_comment] = STATE(1023), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_DOLLAR] = ACTIONS(3692), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_LT] = ACTIONS(3698), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_record_entry_token1] = ACTIONS(3213), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), [anon_sym_POUND] = ACTIONS(247), }, [1024] = { - [sym_expr_parenthesized] = STATE(6525), - [sym_val_range] = STATE(7554), - [sym__val_range] = STATE(7774), - [sym__value] = STATE(7554), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(3505), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3797), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1496), + [sym__unquoted_with_expr] = STATE(1776), + [sym__unquoted_anonymous_prefix] = STATE(6990), [sym_comment] = STATE(1024), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_DOLLAR] = ACTIONS(3692), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_LT] = ACTIONS(3698), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [aux_sym_record_entry_token1] = ACTIONS(3215), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), - [anon_sym_POUND] = ACTIONS(247), - }, - [1025] = { - [sym__expr_parenthesized_immediate] = STATE(1371), - [sym__immediate_decimal] = STATE(1239), - [sym_val_variable] = STATE(1371), - [sym_comment] = STATE(1025), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_null] = ACTIONS(1493), - [aux_sym_cmd_identifier_token38] = ACTIONS(1493), - [aux_sym_cmd_identifier_token39] = ACTIONS(1493), - [aux_sym_cmd_identifier_token40] = ACTIONS(1493), - [sym__newline] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_err_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_GT_PIPE] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1479), - [aux_sym_ctrl_match_token1] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [aux_sym__immediate_decimal_token1] = ACTIONS(3710), - [aux_sym__immediate_decimal_token3] = ACTIONS(3712), - [aux_sym__immediate_decimal_token4] = ACTIONS(3714), - [aux_sym__immediate_decimal_token5] = ACTIONS(3716), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1479), - [anon_sym_0o] = ACTIONS(1479), - [anon_sym_0x] = ACTIONS(1479), - [sym_val_date] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), - [anon_sym_err_GT] = ACTIONS(1479), - [anon_sym_out_GT] = ACTIONS(1479), - [anon_sym_e_GT] = ACTIONS(1479), - [anon_sym_o_GT] = ACTIONS(1479), - [anon_sym_err_PLUSout_GT] = ACTIONS(1479), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), - [anon_sym_o_PLUSe_GT] = ACTIONS(1479), - [anon_sym_e_PLUSo_GT] = ACTIONS(1479), - [anon_sym_err_GT_GT] = ACTIONS(1493), - [anon_sym_out_GT_GT] = ACTIONS(1493), - [anon_sym_e_GT_GT] = ACTIONS(1493), - [anon_sym_o_GT_GT] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), - [aux_sym_unquoted_token1] = ACTIONS(1479), - [aux_sym_unquoted_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(247), - }, - [1026] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_rest] = STATE(7472), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2816), - [sym_val_range] = STATE(3028), - [sym__val_range] = STATE(7670), - [sym_val_nothing] = STATE(3031), - [sym_val_bool] = STATE(2974), - [sym_val_variable] = STATE(2817), - [sym_val_number] = STATE(3031), - [sym__val_number_decimal] = STATE(2606), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3031), - [sym_val_filesize] = STATE(3031), - [sym_val_binary] = STATE(3031), - [sym_val_string] = STATE(3031), - [sym__str_double_quotes] = STATE(3007), - [sym_val_list] = STATE(7651), - [sym_val_table] = STATE(3031), - [sym__unquoted_in_list] = STATE(3052), - [sym__unquoted_anonymous_prefix] = STATE(7659), - [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(6406), - [aux_sym__match_pattern_list_repeat1] = STATE(1166), - [anon_sym_true] = ACTIONS(3718), - [anon_sym_false] = ACTIONS(3718), - [anon_sym_null] = ACTIONS(3720), - [aux_sym_cmd_identifier_token38] = ACTIONS(3722), - [aux_sym_cmd_identifier_token39] = ACTIONS(3722), - [aux_sym_cmd_identifier_token40] = ACTIONS(3722), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_RBRACK] = ACTIONS(3726), - [anon_sym_LPAREN] = ACTIONS(3728), - [anon_sym_DOLLAR] = ACTIONS(3730), - [aux_sym_ctrl_match_token1] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(3734), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), - [anon_sym_DOT_DOT_LT] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3750), - [anon_sym_0x] = ACTIONS(3750), - [sym_val_date] = ACTIONS(3752), - [anon_sym_DQUOTE] = ACTIONS(3754), - [sym__str_single_quotes] = ACTIONS(3756), - [sym__str_back_ticks] = ACTIONS(3756), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(247), - }, - [1027] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_rest] = STATE(7798), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2816), - [sym_val_range] = STATE(3028), - [sym__val_range] = STATE(7670), - [sym_val_nothing] = STATE(3031), - [sym_val_bool] = STATE(2974), - [sym_val_variable] = STATE(2817), - [sym_val_number] = STATE(3031), - [sym__val_number_decimal] = STATE(2606), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3031), - [sym_val_filesize] = STATE(3031), - [sym_val_binary] = STATE(3031), - [sym_val_string] = STATE(3031), - [sym__str_double_quotes] = STATE(3007), - [sym_val_list] = STATE(7734), - [sym_val_table] = STATE(3031), - [sym__unquoted_in_list] = STATE(3052), - [sym__unquoted_anonymous_prefix] = STATE(7659), - [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(6642), - [aux_sym__match_pattern_list_repeat1] = STATE(1101), - [anon_sym_true] = ACTIONS(3718), - [anon_sym_false] = ACTIONS(3718), - [anon_sym_null] = ACTIONS(3720), - [aux_sym_cmd_identifier_token38] = ACTIONS(3722), - [aux_sym_cmd_identifier_token39] = ACTIONS(3722), - [aux_sym_cmd_identifier_token40] = ACTIONS(3722), - [sym__newline] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_RBRACK] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3728), - [anon_sym_DOLLAR] = ACTIONS(3730), - [aux_sym_ctrl_match_token1] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(3762), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), - [anon_sym_DOT_DOT_LT] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3750), - [anon_sym_0x] = ACTIONS(3750), - [sym_val_date] = ACTIONS(3752), - [anon_sym_DQUOTE] = ACTIONS(3754), - [sym__str_single_quotes] = ACTIONS(3756), - [sym__str_back_ticks] = ACTIONS(3756), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(247), - }, - [1028] = { - [sym_cell_path] = STATE(1204), - [sym_path] = STATE(1116), - [sym_comment] = STATE(1028), - [aux_sym_cell_path_repeat1] = STATE(1049), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [aux_sym_ctrl_match_token1] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3764), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [aux_sym_record_entry_token1] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [1025] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3699), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3522), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3346), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1495), + [sym__unquoted_with_expr] = STATE(1774), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1025), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3309), + [aux_sym_cmd_identifier_token38] = ACTIONS(3311), + [aux_sym_cmd_identifier_token39] = ACTIONS(3311), + [aux_sym_cmd_identifier_token40] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3319), + [aux_sym__val_number_decimal_token3] = ACTIONS(3321), + [aux_sym__val_number_decimal_token4] = ACTIONS(3323), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [1026] = { + [sym_expr_unary] = STATE(1738), + [sym__expr_unary_minus] = STATE(1646), + [sym_expr_binary] = STATE(1738), + [sym__expr_binary_expression] = STATE(3814), + [sym_expr_parenthesized] = STATE(1738), + [sym__val_range] = STATE(7580), + [sym__val_range_with_end] = STATE(7312), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1643), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(1643), + [sym_val_number] = STATE(1643), + [sym__val_number_decimal] = STATE(3383), + [sym__val_number] = STATE(1647), + [sym_val_duration] = STATE(1643), + [sym_val_filesize] = STATE(1643), + [sym_val_binary] = STATE(1643), + [sym_val_string] = STATE(1643), + [sym__str_double_quotes] = STATE(1418), + [sym_val_interpolated] = STATE(1643), + [sym__inter_single_quotes] = STATE(1729), + [sym__inter_double_quotes] = STATE(1732), + [sym_val_list] = STATE(1643), + [sym_val_record] = STATE(1643), + [sym_val_table] = STATE(1643), + [sym_val_closure] = STATE(1643), + [sym_unquoted] = STATE(1497), + [sym__unquoted_with_expr] = STATE(1778), + [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_comment] = STATE(1026), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [aux_sym_expr_unary_token1] = ACTIONS(3275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), + [anon_sym_DOT_DOT_LT] = ACTIONS(3277), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(247), + }, + [1027] = { + [sym_expr_unary] = STATE(2438), + [sym__expr_unary_minus] = STATE(2432), + [sym_expr_binary] = STATE(2438), + [sym__expr_binary_expression] = STATE(3330), + [sym_expr_parenthesized] = STATE(2438), + [sym__val_range] = STATE(7480), + [sym__val_range_with_end] = STATE(7292), + [sym__value] = STATE(2438), + [sym_val_nothing] = STATE(2399), + [sym_val_bool] = STATE(3156), + [sym_val_variable] = STATE(2399), + [sym_val_number] = STATE(2399), + [sym__val_number_decimal] = STATE(2937), + [sym__val_number] = STATE(2385), + [sym_val_duration] = STATE(2399), + [sym_val_filesize] = STATE(2399), + [sym_val_binary] = STATE(2399), + [sym_val_string] = STATE(2399), + [sym__str_double_quotes] = STATE(1975), + [sym_val_interpolated] = STATE(2399), + [sym__inter_single_quotes] = STATE(2384), + [sym__inter_double_quotes] = STATE(2390), + [sym_val_list] = STATE(2399), + [sym_val_record] = STATE(2399), + [sym_val_table] = STATE(2399), + [sym_val_closure] = STATE(2399), + [sym_unquoted] = STATE(2190), + [sym__unquoted_with_expr] = STATE(2464), + [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_comment] = STATE(1027), + [anon_sym_true] = ACTIONS(3233), + [anon_sym_false] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3235), + [aux_sym_cmd_identifier_token38] = ACTIONS(3237), + [aux_sym_cmd_identifier_token39] = ACTIONS(3237), + [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3243), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_LT] = ACTIONS(3245), + [aux_sym__val_number_decimal_token1] = ACTIONS(3247), + [aux_sym__val_number_decimal_token2] = ACTIONS(3249), + [aux_sym__val_number_decimal_token3] = ACTIONS(3251), + [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(247), + }, + [1028] = { + [sym_expr_unary] = STATE(4360), + [sym__expr_unary_minus] = STATE(4358), + [sym_expr_parenthesized] = STATE(4061), + [sym_val_range] = STATE(4360), + [sym__val_range] = STATE(7629), + [sym__val_range_with_end] = STATE(7328), + [sym__value] = STATE(4360), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(4158), + [sym_val_variable] = STATE(4055), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(3877), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(4176), + [sym__unquoted_with_expr] = STATE(4363), + [sym__unquoted_anonymous_prefix] = STATE(6642), + [sym_comment] = STATE(1028), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [aux_sym_cmd_identifier_token38] = ACTIONS(3395), + [aux_sym_cmd_identifier_token39] = ACTIONS(3395), + [aux_sym_cmd_identifier_token40] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3407), + [aux_sym_expr_unary_token1] = ACTIONS(3409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), + [anon_sym_DOT_DOT_LT] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1029] = { + [sym_expr_unary] = STATE(4364), + [sym__expr_unary_minus] = STATE(4358), + [sym_expr_parenthesized] = STATE(4053), + [sym_val_range] = STATE(4364), + [sym__val_range] = STATE(7629), + [sym__val_range_with_end] = STATE(7328), + [sym__value] = STATE(4364), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(4158), + [sym_val_variable] = STATE(4055), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(3877), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(4096), + [sym__unquoted_with_expr] = STATE(4365), + [sym__unquoted_anonymous_prefix] = STATE(6642), [sym_comment] = STATE(1029), - [aux_sym_cmd_identifier_token1] = ACTIONS(3766), - [aux_sym_cmd_identifier_token2] = ACTIONS(3766), - [aux_sym_cmd_identifier_token3] = ACTIONS(3766), - [aux_sym_cmd_identifier_token4] = ACTIONS(3766), - [aux_sym_cmd_identifier_token5] = ACTIONS(3766), - [aux_sym_cmd_identifier_token6] = ACTIONS(3766), - [aux_sym_cmd_identifier_token7] = ACTIONS(3766), - [aux_sym_cmd_identifier_token8] = ACTIONS(3766), - [aux_sym_cmd_identifier_token9] = ACTIONS(3766), - [aux_sym_cmd_identifier_token10] = ACTIONS(3766), - [aux_sym_cmd_identifier_token11] = ACTIONS(3766), - [aux_sym_cmd_identifier_token12] = ACTIONS(3766), - [aux_sym_cmd_identifier_token13] = ACTIONS(3766), - [aux_sym_cmd_identifier_token14] = ACTIONS(3766), - [aux_sym_cmd_identifier_token15] = ACTIONS(3766), - [aux_sym_cmd_identifier_token16] = ACTIONS(3766), - [aux_sym_cmd_identifier_token17] = ACTIONS(3766), - [aux_sym_cmd_identifier_token18] = ACTIONS(3766), - [aux_sym_cmd_identifier_token19] = ACTIONS(3766), - [aux_sym_cmd_identifier_token20] = ACTIONS(3766), - [aux_sym_cmd_identifier_token21] = ACTIONS(3766), - [aux_sym_cmd_identifier_token22] = ACTIONS(3766), - [aux_sym_cmd_identifier_token23] = ACTIONS(3766), - [aux_sym_cmd_identifier_token24] = ACTIONS(3766), - [aux_sym_cmd_identifier_token25] = ACTIONS(3766), - [aux_sym_cmd_identifier_token26] = ACTIONS(3766), - [aux_sym_cmd_identifier_token27] = ACTIONS(3766), - [aux_sym_cmd_identifier_token28] = ACTIONS(3766), - [aux_sym_cmd_identifier_token29] = ACTIONS(3766), - [aux_sym_cmd_identifier_token30] = ACTIONS(3766), - [aux_sym_cmd_identifier_token31] = ACTIONS(3766), - [aux_sym_cmd_identifier_token32] = ACTIONS(3766), - [aux_sym_cmd_identifier_token33] = ACTIONS(3766), - [aux_sym_cmd_identifier_token34] = ACTIONS(3766), - [aux_sym_cmd_identifier_token35] = ACTIONS(3766), - [aux_sym_cmd_identifier_token36] = ACTIONS(3766), - [anon_sym_true] = ACTIONS(3766), - [anon_sym_false] = ACTIONS(3766), - [anon_sym_null] = ACTIONS(3766), - [aux_sym_cmd_identifier_token38] = ACTIONS(3766), - [aux_sym_cmd_identifier_token39] = ACTIONS(3766), - [aux_sym_cmd_identifier_token40] = ACTIONS(3766), - [sym__newline] = ACTIONS(3766), - [sym__space] = ACTIONS(3768), - [anon_sym_LBRACK] = ACTIONS(3766), - [anon_sym_LPAREN] = ACTIONS(3766), - [anon_sym_DOLLAR] = ACTIONS(3766), - [anon_sym_DASH] = ACTIONS(3766), - [aux_sym_ctrl_match_token1] = ACTIONS(3766), - [anon_sym_DOT_DOT] = ACTIONS(3766), - [aux_sym_expr_unary_token1] = ACTIONS(3766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3766), - [anon_sym_DOT_DOT_LT] = ACTIONS(3766), - [aux_sym__val_number_decimal_token1] = ACTIONS(3766), - [aux_sym__val_number_decimal_token2] = ACTIONS(3766), - [aux_sym__val_number_decimal_token3] = ACTIONS(3766), - [aux_sym__val_number_decimal_token4] = ACTIONS(3766), - [aux_sym__val_number_token1] = ACTIONS(3766), - [aux_sym__val_number_token2] = ACTIONS(3766), - [aux_sym__val_number_token3] = ACTIONS(3766), - [anon_sym_0b] = ACTIONS(3766), - [anon_sym_0o] = ACTIONS(3766), - [anon_sym_0x] = ACTIONS(3766), - [sym_val_date] = ACTIONS(3766), - [anon_sym_DQUOTE] = ACTIONS(3766), - [sym__str_single_quotes] = ACTIONS(3766), - [sym__str_back_ticks] = ACTIONS(3766), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), - [aux_sym_env_var_token1] = ACTIONS(3766), - [anon_sym_CARET] = ACTIONS(3766), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [aux_sym_cmd_identifier_token38] = ACTIONS(3395), + [aux_sym_cmd_identifier_token39] = ACTIONS(3395), + [aux_sym_cmd_identifier_token40] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3407), + [aux_sym_expr_unary_token1] = ACTIONS(3409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), + [anon_sym_DOT_DOT_LT] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), + [anon_sym_POUND] = ACTIONS(247), }, [1030] = { - [sym_env_var] = STATE(6934), + [sym_expr_unary] = STATE(4366), + [sym__expr_unary_minus] = STATE(4358), + [sym_expr_parenthesized] = STATE(4062), + [sym_val_range] = STATE(4366), + [sym__val_range] = STATE(7629), + [sym__val_range_with_end] = STATE(7328), + [sym__value] = STATE(4366), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(4158), + [sym_val_variable] = STATE(4055), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(3877), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(4103), + [sym__unquoted_with_expr] = STATE(4379), + [sym__unquoted_anonymous_prefix] = STATE(6642), [sym_comment] = STATE(1030), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(3677), - [aux_sym_cmd_identifier_token2] = ACTIONS(3770), - [aux_sym_cmd_identifier_token3] = ACTIONS(3770), - [aux_sym_cmd_identifier_token4] = ACTIONS(3770), - [aux_sym_cmd_identifier_token5] = ACTIONS(3770), - [aux_sym_cmd_identifier_token6] = ACTIONS(3770), - [aux_sym_cmd_identifier_token7] = ACTIONS(3770), - [aux_sym_cmd_identifier_token8] = ACTIONS(3770), - [aux_sym_cmd_identifier_token9] = ACTIONS(3677), - [aux_sym_cmd_identifier_token10] = ACTIONS(3770), - [aux_sym_cmd_identifier_token11] = ACTIONS(3770), - [aux_sym_cmd_identifier_token12] = ACTIONS(3770), - [aux_sym_cmd_identifier_token13] = ACTIONS(3677), - [aux_sym_cmd_identifier_token14] = ACTIONS(3770), - [aux_sym_cmd_identifier_token15] = ACTIONS(3677), - [aux_sym_cmd_identifier_token16] = ACTIONS(3770), - [aux_sym_cmd_identifier_token17] = ACTIONS(3770), - [aux_sym_cmd_identifier_token18] = ACTIONS(3770), - [aux_sym_cmd_identifier_token19] = ACTIONS(3770), - [aux_sym_cmd_identifier_token20] = ACTIONS(3770), - [aux_sym_cmd_identifier_token21] = ACTIONS(3770), - [aux_sym_cmd_identifier_token22] = ACTIONS(3770), - [aux_sym_cmd_identifier_token23] = ACTIONS(3770), - [aux_sym_cmd_identifier_token24] = ACTIONS(3770), - [aux_sym_cmd_identifier_token25] = ACTIONS(3770), - [aux_sym_cmd_identifier_token26] = ACTIONS(3770), - [aux_sym_cmd_identifier_token27] = ACTIONS(3770), - [aux_sym_cmd_identifier_token28] = ACTIONS(3770), - [aux_sym_cmd_identifier_token29] = ACTIONS(3770), - [aux_sym_cmd_identifier_token30] = ACTIONS(3770), - [aux_sym_cmd_identifier_token31] = ACTIONS(3770), - [aux_sym_cmd_identifier_token32] = ACTIONS(3770), - [aux_sym_cmd_identifier_token33] = ACTIONS(3770), - [aux_sym_cmd_identifier_token34] = ACTIONS(3770), - [aux_sym_cmd_identifier_token35] = ACTIONS(3770), - [aux_sym_cmd_identifier_token36] = ACTIONS(3677), - [anon_sym_true] = ACTIONS(3770), - [anon_sym_false] = ACTIONS(3770), - [anon_sym_null] = ACTIONS(3770), - [aux_sym_cmd_identifier_token38] = ACTIONS(3677), - [aux_sym_cmd_identifier_token39] = ACTIONS(3770), - [aux_sym_cmd_identifier_token40] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(3677), - [anon_sym_DASH] = ACTIONS(3677), - [aux_sym_ctrl_match_token1] = ACTIONS(3770), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [aux_sym_expr_unary_token1] = ACTIONS(3770), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3770), - [anon_sym_DOT_DOT_LT] = ACTIONS(3770), - [aux_sym__val_number_decimal_token1] = ACTIONS(3677), - [aux_sym__val_number_decimal_token2] = ACTIONS(3770), - [aux_sym__val_number_decimal_token3] = ACTIONS(3770), - [aux_sym__val_number_decimal_token4] = ACTIONS(3770), - [aux_sym__val_number_token1] = ACTIONS(3770), - [aux_sym__val_number_token2] = ACTIONS(3770), - [aux_sym__val_number_token3] = ACTIONS(3770), - [anon_sym_0b] = ACTIONS(3677), - [anon_sym_0o] = ACTIONS(3677), - [anon_sym_0x] = ACTIONS(3677), - [sym_val_date] = ACTIONS(3770), - [anon_sym_DQUOTE] = ACTIONS(3770), - [sym__str_single_quotes] = ACTIONS(3770), - [sym__str_back_ticks] = ACTIONS(3770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3770), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), - [aux_sym_env_var_token1] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(3770), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3393), + [aux_sym_cmd_identifier_token38] = ACTIONS(3395), + [aux_sym_cmd_identifier_token39] = ACTIONS(3395), + [aux_sym_cmd_identifier_token40] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3407), + [aux_sym_expr_unary_token1] = ACTIONS(3409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), + [anon_sym_DOT_DOT_LT] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1031] = { + [sym_expr_unary] = STATE(4605), + [sym__expr_unary_minus] = STATE(4553), + [sym_expr_parenthesized] = STATE(4194), + [sym_val_range] = STATE(4605), + [sym__val_range] = STATE(7499), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(4605), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(4249), + [sym_val_variable] = STATE(4166), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(3906), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(4273), + [sym__unquoted_with_expr] = STATE(4610), + [sym__unquoted_anonymous_prefix] = STATE(6618), [sym_comment] = STATE(1031), - [aux_sym_pipe_element_repeat1] = STATE(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(3775), - [aux_sym_cmd_identifier_token2] = ACTIONS(3775), - [aux_sym_cmd_identifier_token3] = ACTIONS(3775), - [aux_sym_cmd_identifier_token4] = ACTIONS(3775), - [aux_sym_cmd_identifier_token5] = ACTIONS(3775), - [aux_sym_cmd_identifier_token6] = ACTIONS(3775), - [aux_sym_cmd_identifier_token7] = ACTIONS(3775), - [aux_sym_cmd_identifier_token8] = ACTIONS(3775), - [aux_sym_cmd_identifier_token9] = ACTIONS(3775), - [aux_sym_cmd_identifier_token10] = ACTIONS(3775), - [aux_sym_cmd_identifier_token11] = ACTIONS(3775), - [aux_sym_cmd_identifier_token12] = ACTIONS(3775), - [aux_sym_cmd_identifier_token13] = ACTIONS(3775), - [aux_sym_cmd_identifier_token14] = ACTIONS(3775), - [aux_sym_cmd_identifier_token15] = ACTIONS(3775), - [aux_sym_cmd_identifier_token16] = ACTIONS(3775), - [aux_sym_cmd_identifier_token17] = ACTIONS(3775), - [aux_sym_cmd_identifier_token18] = ACTIONS(3775), - [aux_sym_cmd_identifier_token19] = ACTIONS(3775), - [aux_sym_cmd_identifier_token20] = ACTIONS(3775), - [aux_sym_cmd_identifier_token21] = ACTIONS(3775), - [aux_sym_cmd_identifier_token22] = ACTIONS(3775), - [aux_sym_cmd_identifier_token23] = ACTIONS(3775), - [aux_sym_cmd_identifier_token24] = ACTIONS(3775), - [aux_sym_cmd_identifier_token25] = ACTIONS(3775), - [aux_sym_cmd_identifier_token26] = ACTIONS(3775), - [aux_sym_cmd_identifier_token27] = ACTIONS(3775), - [aux_sym_cmd_identifier_token28] = ACTIONS(3775), - [aux_sym_cmd_identifier_token29] = ACTIONS(3775), - [aux_sym_cmd_identifier_token30] = ACTIONS(3775), - [aux_sym_cmd_identifier_token31] = ACTIONS(3775), - [aux_sym_cmd_identifier_token32] = ACTIONS(3775), - [aux_sym_cmd_identifier_token33] = ACTIONS(3775), - [aux_sym_cmd_identifier_token34] = ACTIONS(3775), - [aux_sym_cmd_identifier_token35] = ACTIONS(3775), - [aux_sym_cmd_identifier_token36] = ACTIONS(3775), - [anon_sym_true] = ACTIONS(3775), - [anon_sym_false] = ACTIONS(3775), - [anon_sym_null] = ACTIONS(3775), - [aux_sym_cmd_identifier_token38] = ACTIONS(3775), - [aux_sym_cmd_identifier_token39] = ACTIONS(3775), - [aux_sym_cmd_identifier_token40] = ACTIONS(3775), - [sym__space] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(3775), - [anon_sym_DOLLAR] = ACTIONS(3775), - [anon_sym_DASH] = ACTIONS(3775), - [aux_sym_ctrl_match_token1] = ACTIONS(3775), - [anon_sym_DOT_DOT] = ACTIONS(3775), - [aux_sym_expr_unary_token1] = ACTIONS(3775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3775), - [anon_sym_DOT_DOT_LT] = ACTIONS(3775), - [aux_sym__val_number_decimal_token1] = ACTIONS(3775), - [aux_sym__val_number_decimal_token2] = ACTIONS(3775), - [aux_sym__val_number_decimal_token3] = ACTIONS(3775), - [aux_sym__val_number_decimal_token4] = ACTIONS(3775), - [aux_sym__val_number_token1] = ACTIONS(3775), - [aux_sym__val_number_token2] = ACTIONS(3775), - [aux_sym__val_number_token3] = ACTIONS(3775), - [anon_sym_0b] = ACTIONS(3775), - [anon_sym_0o] = ACTIONS(3775), - [anon_sym_0x] = ACTIONS(3775), - [sym_val_date] = ACTIONS(3775), - [anon_sym_DQUOTE] = ACTIONS(3775), - [sym__str_single_quotes] = ACTIONS(3775), - [sym__str_back_ticks] = ACTIONS(3775), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3775), - [aux_sym_env_var_token1] = ACTIONS(3775), - [anon_sym_CARET] = ACTIONS(3775), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [aux_sym_cmd_identifier_token38] = ACTIONS(3443), + [aux_sym_cmd_identifier_token39] = ACTIONS(3443), + [aux_sym_cmd_identifier_token40] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), + [anon_sym_DOT_DOT_LT] = ACTIONS(3459), + [aux_sym__val_number_decimal_token1] = ACTIONS(3461), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3465), + [aux_sym__val_number_decimal_token4] = ACTIONS(3467), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), }, [1032] = { - [sym_env_var] = STATE(7300), + [sym_expr_unary] = STATE(4512), + [sym__expr_unary_minus] = STATE(4553), + [sym_expr_parenthesized] = STATE(4195), + [sym_val_range] = STATE(4512), + [sym__val_range] = STATE(7499), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(4512), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(4249), + [sym_val_variable] = STATE(4166), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(3906), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(4275), + [sym__unquoted_with_expr] = STATE(4617), + [sym__unquoted_anonymous_prefix] = STATE(6618), [sym_comment] = STATE(1032), - [aux_sym_pipe_element_repeat2] = STATE(1032), - [aux_sym_cmd_identifier_token1] = ACTIONS(3780), - [aux_sym_cmd_identifier_token2] = ACTIONS(3782), - [aux_sym_cmd_identifier_token3] = ACTIONS(3782), - [aux_sym_cmd_identifier_token4] = ACTIONS(3782), - [aux_sym_cmd_identifier_token5] = ACTIONS(3782), - [aux_sym_cmd_identifier_token6] = ACTIONS(3782), - [aux_sym_cmd_identifier_token7] = ACTIONS(3782), - [aux_sym_cmd_identifier_token8] = ACTIONS(3782), - [aux_sym_cmd_identifier_token9] = ACTIONS(3780), - [aux_sym_cmd_identifier_token10] = ACTIONS(3782), - [aux_sym_cmd_identifier_token11] = ACTIONS(3782), - [aux_sym_cmd_identifier_token12] = ACTIONS(3782), - [aux_sym_cmd_identifier_token13] = ACTIONS(3780), - [aux_sym_cmd_identifier_token14] = ACTIONS(3782), - [aux_sym_cmd_identifier_token15] = ACTIONS(3780), - [aux_sym_cmd_identifier_token16] = ACTIONS(3782), - [aux_sym_cmd_identifier_token17] = ACTIONS(3782), - [aux_sym_cmd_identifier_token18] = ACTIONS(3782), - [aux_sym_cmd_identifier_token19] = ACTIONS(3782), - [aux_sym_cmd_identifier_token20] = ACTIONS(3782), - [aux_sym_cmd_identifier_token21] = ACTIONS(3782), - [aux_sym_cmd_identifier_token22] = ACTIONS(3782), - [aux_sym_cmd_identifier_token23] = ACTIONS(3782), - [aux_sym_cmd_identifier_token24] = ACTIONS(3782), - [aux_sym_cmd_identifier_token25] = ACTIONS(3782), - [aux_sym_cmd_identifier_token26] = ACTIONS(3782), - [aux_sym_cmd_identifier_token27] = ACTIONS(3782), - [aux_sym_cmd_identifier_token28] = ACTIONS(3782), - [aux_sym_cmd_identifier_token29] = ACTIONS(3782), - [aux_sym_cmd_identifier_token30] = ACTIONS(3782), - [aux_sym_cmd_identifier_token31] = ACTIONS(3782), - [aux_sym_cmd_identifier_token32] = ACTIONS(3782), - [aux_sym_cmd_identifier_token33] = ACTIONS(3782), - [aux_sym_cmd_identifier_token34] = ACTIONS(3782), - [aux_sym_cmd_identifier_token35] = ACTIONS(3782), - [aux_sym_cmd_identifier_token36] = ACTIONS(3780), - [anon_sym_true] = ACTIONS(3782), - [anon_sym_false] = ACTIONS(3782), - [anon_sym_null] = ACTIONS(3782), - [aux_sym_cmd_identifier_token38] = ACTIONS(3780), - [aux_sym_cmd_identifier_token39] = ACTIONS(3782), - [aux_sym_cmd_identifier_token40] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3782), - [anon_sym_LPAREN] = ACTIONS(3782), - [anon_sym_DOLLAR] = ACTIONS(3780), - [anon_sym_DASH] = ACTIONS(3780), - [aux_sym_ctrl_match_token1] = ACTIONS(3782), - [anon_sym_DOT_DOT] = ACTIONS(3780), - [aux_sym_expr_unary_token1] = ACTIONS(3782), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3782), - [anon_sym_DOT_DOT_LT] = ACTIONS(3782), - [aux_sym__val_number_decimal_token1] = ACTIONS(3780), - [aux_sym__val_number_decimal_token2] = ACTIONS(3782), - [aux_sym__val_number_decimal_token3] = ACTIONS(3782), - [aux_sym__val_number_decimal_token4] = ACTIONS(3782), - [aux_sym__val_number_token1] = ACTIONS(3782), - [aux_sym__val_number_token2] = ACTIONS(3782), - [aux_sym__val_number_token3] = ACTIONS(3782), - [anon_sym_0b] = ACTIONS(3780), - [anon_sym_0o] = ACTIONS(3780), - [anon_sym_0x] = ACTIONS(3780), - [sym_val_date] = ACTIONS(3782), - [anon_sym_DQUOTE] = ACTIONS(3782), - [sym__str_single_quotes] = ACTIONS(3782), - [sym__str_back_ticks] = ACTIONS(3782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), - [aux_sym_env_var_token1] = ACTIONS(3784), - [anon_sym_CARET] = ACTIONS(3782), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [aux_sym_cmd_identifier_token38] = ACTIONS(3443), + [aux_sym_cmd_identifier_token39] = ACTIONS(3443), + [aux_sym_cmd_identifier_token40] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), + [anon_sym_DOT_DOT_LT] = ACTIONS(3459), + [aux_sym__val_number_decimal_token1] = ACTIONS(3461), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3465), + [aux_sym__val_number_decimal_token4] = ACTIONS(3467), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), [anon_sym_POUND] = ACTIONS(247), }, [1033] = { + [sym_expr_unary] = STATE(4599), + [sym__expr_unary_minus] = STATE(4553), + [sym_expr_parenthesized] = STATE(4189), + [sym_val_range] = STATE(4599), + [sym__val_range] = STATE(7499), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(4599), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(4249), + [sym_val_variable] = STATE(4166), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(3906), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(4260), + [sym__unquoted_with_expr] = STATE(4604), + [sym__unquoted_anonymous_prefix] = STATE(6618), [sym_comment] = STATE(1033), - [aux_sym_pipe_element_repeat1] = STATE(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(3780), - [aux_sym_cmd_identifier_token2] = ACTIONS(3780), - [aux_sym_cmd_identifier_token3] = ACTIONS(3780), - [aux_sym_cmd_identifier_token4] = ACTIONS(3780), - [aux_sym_cmd_identifier_token5] = ACTIONS(3780), - [aux_sym_cmd_identifier_token6] = ACTIONS(3780), - [aux_sym_cmd_identifier_token7] = ACTIONS(3780), - [aux_sym_cmd_identifier_token8] = ACTIONS(3780), - [aux_sym_cmd_identifier_token9] = ACTIONS(3780), - [aux_sym_cmd_identifier_token10] = ACTIONS(3780), - [aux_sym_cmd_identifier_token11] = ACTIONS(3780), - [aux_sym_cmd_identifier_token12] = ACTIONS(3780), - [aux_sym_cmd_identifier_token13] = ACTIONS(3780), - [aux_sym_cmd_identifier_token14] = ACTIONS(3780), - [aux_sym_cmd_identifier_token15] = ACTIONS(3780), - [aux_sym_cmd_identifier_token16] = ACTIONS(3780), - [aux_sym_cmd_identifier_token17] = ACTIONS(3780), - [aux_sym_cmd_identifier_token18] = ACTIONS(3780), - [aux_sym_cmd_identifier_token19] = ACTIONS(3780), - [aux_sym_cmd_identifier_token20] = ACTIONS(3780), - [aux_sym_cmd_identifier_token21] = ACTIONS(3780), - [aux_sym_cmd_identifier_token22] = ACTIONS(3780), - [aux_sym_cmd_identifier_token23] = ACTIONS(3780), - [aux_sym_cmd_identifier_token24] = ACTIONS(3780), - [aux_sym_cmd_identifier_token25] = ACTIONS(3780), - [aux_sym_cmd_identifier_token26] = ACTIONS(3780), - [aux_sym_cmd_identifier_token27] = ACTIONS(3780), - [aux_sym_cmd_identifier_token28] = ACTIONS(3780), - [aux_sym_cmd_identifier_token29] = ACTIONS(3780), - [aux_sym_cmd_identifier_token30] = ACTIONS(3780), - [aux_sym_cmd_identifier_token31] = ACTIONS(3780), - [aux_sym_cmd_identifier_token32] = ACTIONS(3780), - [aux_sym_cmd_identifier_token33] = ACTIONS(3780), - [aux_sym_cmd_identifier_token34] = ACTIONS(3780), - [aux_sym_cmd_identifier_token35] = ACTIONS(3780), - [aux_sym_cmd_identifier_token36] = ACTIONS(3780), - [anon_sym_true] = ACTIONS(3780), - [anon_sym_false] = ACTIONS(3780), - [anon_sym_null] = ACTIONS(3780), - [aux_sym_cmd_identifier_token38] = ACTIONS(3780), - [aux_sym_cmd_identifier_token39] = ACTIONS(3780), - [aux_sym_cmd_identifier_token40] = ACTIONS(3780), - [sym__space] = ACTIONS(3787), - [anon_sym_LBRACK] = ACTIONS(3780), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_DOLLAR] = ACTIONS(3780), - [anon_sym_DASH] = ACTIONS(3780), - [aux_sym_ctrl_match_token1] = ACTIONS(3780), - [anon_sym_DOT_DOT] = ACTIONS(3780), - [aux_sym_expr_unary_token1] = ACTIONS(3780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), - [anon_sym_DOT_DOT_LT] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3780), - [aux_sym__val_number_decimal_token2] = ACTIONS(3780), - [aux_sym__val_number_decimal_token3] = ACTIONS(3780), - [aux_sym__val_number_decimal_token4] = ACTIONS(3780), - [aux_sym__val_number_token1] = ACTIONS(3780), - [aux_sym__val_number_token2] = ACTIONS(3780), - [aux_sym__val_number_token3] = ACTIONS(3780), - [anon_sym_0b] = ACTIONS(3780), - [anon_sym_0o] = ACTIONS(3780), - [anon_sym_0x] = ACTIONS(3780), - [sym_val_date] = ACTIONS(3780), - [anon_sym_DQUOTE] = ACTIONS(3780), - [sym__str_single_quotes] = ACTIONS(3780), - [sym__str_back_ticks] = ACTIONS(3780), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3780), - [aux_sym_env_var_token1] = ACTIONS(3780), - [anon_sym_CARET] = ACTIONS(3780), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [aux_sym_cmd_identifier_token38] = ACTIONS(3443), + [aux_sym_cmd_identifier_token39] = ACTIONS(3443), + [aux_sym_cmd_identifier_token40] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(3457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), + [anon_sym_DOT_DOT_LT] = ACTIONS(3459), + [aux_sym__val_number_decimal_token1] = ACTIONS(3461), + [aux_sym__val_number_decimal_token2] = ACTIONS(3463), + [aux_sym__val_number_decimal_token3] = ACTIONS(3465), + [aux_sym__val_number_decimal_token4] = ACTIONS(3467), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), }, [1034] = { - [sym_expr_parenthesized] = STATE(6194), - [sym_val_range] = STATE(7609), - [sym__val_range] = STATE(7774), - [sym__value] = STATE(7609), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(3505), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(7535), - [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym_expr_parenthesized] = STATE(4573), + [sym_val_range] = STATE(5129), + [sym__val_range] = STATE(7500), + [sym__val_range_with_end] = STATE(7223), + [sym__value] = STATE(5129), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4522), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(3999), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4680), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym__unquoted_in_list] = STATE(4741), + [sym__unquoted_in_list_with_expr] = STATE(5129), + [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(1034), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_DOLLAR] = ACTIONS(3692), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_LT] = ACTIONS(3698), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), + [aux_sym_shebang_repeat1] = STATE(1035), + [anon_sym_true] = ACTIONS(3487), + [anon_sym_false] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [aux_sym_cmd_identifier_token38] = ACTIONS(3491), + [aux_sym_cmd_identifier_token39] = ACTIONS(3491), + [aux_sym_cmd_identifier_token40] = ACTIONS(3491), + [sym__newline] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), + [anon_sym_DOT_DOT_LT] = ACTIONS(3505), + [aux_sym__val_number_decimal_token1] = ACTIONS(3507), + [aux_sym__val_number_decimal_token2] = ACTIONS(3509), + [aux_sym__val_number_decimal_token3] = ACTIONS(3511), + [aux_sym__val_number_decimal_token4] = ACTIONS(3513), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3523), + [sym__str_single_quotes] = ACTIONS(3525), + [sym__str_back_ticks] = ACTIONS(3525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), [anon_sym_POUND] = ACTIONS(247), }, [1035] = { - [sym__expr_parenthesized_immediate] = STATE(1468), - [sym__immediate_decimal] = STATE(1292), - [sym_val_variable] = STATE(1468), + [sym_expr_parenthesized] = STATE(4615), + [sym_val_range] = STATE(5009), + [sym__val_range] = STATE(7500), + [sym__val_range_with_end] = STATE(7223), + [sym__value] = STATE(5009), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4522), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(3999), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4680), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym__unquoted_in_list] = STATE(4788), + [sym__unquoted_in_list_with_expr] = STATE(5009), + [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_null] = ACTIONS(1493), - [aux_sym_cmd_identifier_token38] = ACTIONS(1493), - [aux_sym_cmd_identifier_token39] = ACTIONS(1493), - [aux_sym_cmd_identifier_token40] = ACTIONS(1493), - [sym__newline] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_err_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_GT_PIPE] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1479), - [aux_sym_ctrl_match_token1] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(3789), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [aux_sym__immediate_decimal_token1] = ACTIONS(3793), - [aux_sym__immediate_decimal_token3] = ACTIONS(3795), - [aux_sym__immediate_decimal_token4] = ACTIONS(3797), - [aux_sym__immediate_decimal_token5] = ACTIONS(3799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1479), - [anon_sym_0o] = ACTIONS(1479), - [anon_sym_0x] = ACTIONS(1479), - [sym_val_date] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), - [anon_sym_err_GT] = ACTIONS(1479), - [anon_sym_out_GT] = ACTIONS(1479), - [anon_sym_e_GT] = ACTIONS(1479), - [anon_sym_o_GT] = ACTIONS(1479), - [anon_sym_err_PLUSout_GT] = ACTIONS(1479), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), - [anon_sym_o_PLUSe_GT] = ACTIONS(1479), - [anon_sym_e_PLUSo_GT] = ACTIONS(1479), - [anon_sym_err_GT_GT] = ACTIONS(1493), - [anon_sym_out_GT_GT] = ACTIONS(1493), - [anon_sym_e_GT_GT] = ACTIONS(1493), - [anon_sym_o_GT_GT] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), - [aux_sym_unquoted_token1] = ACTIONS(1479), - [aux_sym_unquoted_token2] = ACTIONS(1495), + [aux_sym_shebang_repeat1] = STATE(2901), + [anon_sym_true] = ACTIONS(3487), + [anon_sym_false] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [aux_sym_cmd_identifier_token38] = ACTIONS(3491), + [aux_sym_cmd_identifier_token39] = ACTIONS(3491), + [aux_sym_cmd_identifier_token40] = ACTIONS(3491), + [sym__newline] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), + [anon_sym_DOT_DOT_LT] = ACTIONS(3505), + [aux_sym__val_number_decimal_token1] = ACTIONS(3507), + [aux_sym__val_number_decimal_token2] = ACTIONS(3509), + [aux_sym__val_number_decimal_token3] = ACTIONS(3511), + [aux_sym__val_number_decimal_token4] = ACTIONS(3513), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3523), + [sym__str_single_quotes] = ACTIONS(3525), + [sym__str_back_ticks] = ACTIONS(3525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), [anon_sym_POUND] = ACTIONS(247), }, [1036] = { - [sym_match_arm] = STATE(6006), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_expr_parenthesized] = STATE(4517), + [sym_val_range] = STATE(5065), + [sym__val_range] = STATE(7500), + [sym__val_range_with_end] = STATE(7223), + [sym__value] = STATE(5065), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4522), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(3999), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4680), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym__unquoted_in_list] = STATE(4697), + [sym__unquoted_in_list_with_expr] = STATE(5065), + [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(1036), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(1039), + [anon_sym_true] = ACTIONS(3487), + [anon_sym_false] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [aux_sym_cmd_identifier_token38] = ACTIONS(3491), + [aux_sym_cmd_identifier_token39] = ACTIONS(3491), + [aux_sym_cmd_identifier_token40] = ACTIONS(3491), + [sym__newline] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), + [anon_sym_DOT_DOT_LT] = ACTIONS(3505), + [aux_sym__val_number_decimal_token1] = ACTIONS(3507), + [aux_sym__val_number_decimal_token2] = ACTIONS(3509), + [aux_sym__val_number_decimal_token3] = ACTIONS(3511), + [aux_sym__val_number_decimal_token4] = ACTIONS(3513), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3523), + [sym__str_single_quotes] = ACTIONS(3525), + [sym__str_back_ticks] = ACTIONS(3525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), [anon_sym_POUND] = ACTIONS(247), }, [1037] = { - [sym_match_arm] = STATE(6002), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_match_arm] = STATE(6727), + [sym_default_arm] = STATE(6727), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1037), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(1042), + [aux_sym_ctrl_match_repeat1] = STATE(1058), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1038] = { - [sym_match_arm] = STATE(5901), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_match_arm] = STATE(6824), + [sym_default_arm] = STATE(6824), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1038), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(1044), + [aux_sym_ctrl_match_repeat1] = STATE(1059), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3567), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1039] = { - [sym_match_arm] = STATE(5902), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_expr_parenthesized] = STATE(4573), + [sym_val_range] = STATE(5129), + [sym__val_range] = STATE(7500), + [sym__val_range_with_end] = STATE(7223), + [sym__value] = STATE(5129), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4522), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(3999), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4680), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym__unquoted_in_list] = STATE(4741), + [sym__unquoted_in_list_with_expr] = STATE(5129), + [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(1039), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2901), + [anon_sym_true] = ACTIONS(3487), + [anon_sym_false] = ACTIONS(3487), + [anon_sym_null] = ACTIONS(3489), + [aux_sym_cmd_identifier_token38] = ACTIONS(3491), + [aux_sym_cmd_identifier_token39] = ACTIONS(3491), + [aux_sym_cmd_identifier_token40] = ACTIONS(3491), + [sym__newline] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), + [anon_sym_DOT_DOT_LT] = ACTIONS(3505), + [aux_sym__val_number_decimal_token1] = ACTIONS(3507), + [aux_sym__val_number_decimal_token2] = ACTIONS(3509), + [aux_sym__val_number_decimal_token3] = ACTIONS(3511), + [aux_sym__val_number_decimal_token4] = ACTIONS(3513), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3523), + [sym__str_single_quotes] = ACTIONS(3525), + [sym__str_back_ticks] = ACTIONS(3525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), [anon_sym_POUND] = ACTIONS(247), }, [1040] = { + [sym_match_arm] = STATE(6807), + [sym_default_arm] = STATE(6807), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1040), - [aux_sym_cmd_identifier_token1] = ACTIONS(1345), - [aux_sym_cmd_identifier_token2] = ACTIONS(1349), - [aux_sym_cmd_identifier_token3] = ACTIONS(1349), - [aux_sym_cmd_identifier_token4] = ACTIONS(1349), - [aux_sym_cmd_identifier_token5] = ACTIONS(1349), - [aux_sym_cmd_identifier_token6] = ACTIONS(1349), - [aux_sym_cmd_identifier_token7] = ACTIONS(1349), - [aux_sym_cmd_identifier_token8] = ACTIONS(1349), - [aux_sym_cmd_identifier_token9] = ACTIONS(1345), - [aux_sym_cmd_identifier_token10] = ACTIONS(1349), - [aux_sym_cmd_identifier_token11] = ACTIONS(1349), - [aux_sym_cmd_identifier_token12] = ACTIONS(1349), - [aux_sym_cmd_identifier_token13] = ACTIONS(1345), - [aux_sym_cmd_identifier_token14] = ACTIONS(1349), - [aux_sym_cmd_identifier_token15] = ACTIONS(1345), - [aux_sym_cmd_identifier_token16] = ACTIONS(1349), - [aux_sym_cmd_identifier_token17] = ACTIONS(1349), - [aux_sym_cmd_identifier_token18] = ACTIONS(1349), - [aux_sym_cmd_identifier_token19] = ACTIONS(1349), - [aux_sym_cmd_identifier_token20] = ACTIONS(1349), - [aux_sym_cmd_identifier_token21] = ACTIONS(1349), - [aux_sym_cmd_identifier_token22] = ACTIONS(1349), - [aux_sym_cmd_identifier_token23] = ACTIONS(1345), - [aux_sym_cmd_identifier_token24] = ACTIONS(1349), - [aux_sym_cmd_identifier_token25] = ACTIONS(1349), - [aux_sym_cmd_identifier_token26] = ACTIONS(1349), - [aux_sym_cmd_identifier_token27] = ACTIONS(1349), - [aux_sym_cmd_identifier_token28] = ACTIONS(1349), - [aux_sym_cmd_identifier_token29] = ACTIONS(1349), - [aux_sym_cmd_identifier_token30] = ACTIONS(1349), - [aux_sym_cmd_identifier_token31] = ACTIONS(1349), - [aux_sym_cmd_identifier_token32] = ACTIONS(1349), - [aux_sym_cmd_identifier_token33] = ACTIONS(1349), - [aux_sym_cmd_identifier_token34] = ACTIONS(1349), - [aux_sym_cmd_identifier_token35] = ACTIONS(1349), - [aux_sym_cmd_identifier_token36] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [anon_sym_null] = ACTIONS(1349), - [aux_sym_cmd_identifier_token38] = ACTIONS(1345), - [aux_sym_cmd_identifier_token39] = ACTIONS(1349), - [aux_sym_cmd_identifier_token40] = ACTIONS(1349), - [sym__newline] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_DOLLAR] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [aux_sym_ctrl_match_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [aux_sym_expr_unary_token1] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), - [anon_sym_DOT_DOT_LT] = ACTIONS(1349), - [aux_sym__val_number_decimal_token1] = ACTIONS(1345), - [aux_sym__val_number_decimal_token2] = ACTIONS(1349), - [aux_sym__val_number_decimal_token3] = ACTIONS(1349), - [aux_sym__val_number_decimal_token4] = ACTIONS(1349), - [aux_sym__val_number_token1] = ACTIONS(1349), - [aux_sym__val_number_token2] = ACTIONS(1349), - [aux_sym__val_number_token3] = ACTIONS(1349), - [anon_sym_0b] = ACTIONS(1345), - [anon_sym_0o] = ACTIONS(1345), - [anon_sym_0x] = ACTIONS(1345), - [sym_val_date] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym__str_single_quotes] = ACTIONS(1349), - [sym__str_back_ticks] = ACTIONS(1349), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), + [aux_sym_shebang_repeat1] = STATE(1045), + [aux_sym_ctrl_match_repeat1] = STATE(1072), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3569), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1041] = { - [sym__expr_parenthesized_immediate] = STATE(1368), - [sym__immediate_decimal] = STATE(1369), - [sym_val_variable] = STATE(1368), + [sym_match_arm] = STATE(6811), + [sym_default_arm] = STATE(6811), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1041), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [aux_sym_cmd_identifier_token38] = ACTIONS(1515), - [aux_sym_cmd_identifier_token39] = ACTIONS(1515), - [aux_sym_cmd_identifier_token40] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1505), - [aux_sym_ctrl_match_token1] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [aux_sym__immediate_decimal_token1] = ACTIONS(3803), - [aux_sym__immediate_decimal_token3] = ACTIONS(3805), - [aux_sym__immediate_decimal_token4] = ACTIONS(3807), - [aux_sym__immediate_decimal_token5] = ACTIONS(3809), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1505), - [anon_sym_out_GT] = ACTIONS(1505), - [anon_sym_e_GT] = ACTIONS(1505), - [anon_sym_o_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT] = ACTIONS(1505), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1505), + [aux_sym_shebang_repeat1] = STATE(1043), + [aux_sym_ctrl_match_repeat1] = STATE(1073), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3571), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1042] = { - [sym_match_arm] = STATE(7415), - [sym_match_pattern] = STATE(7698), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_match_arm] = STATE(7167), + [sym_default_arm] = STATE(7167), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1042), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3811), - [anon_sym_false] = ACTIONS(3811), - [anon_sym_null] = ACTIONS(3814), - [aux_sym_cmd_identifier_token38] = ACTIONS(3817), - [aux_sym_cmd_identifier_token39] = ACTIONS(3817), - [aux_sym_cmd_identifier_token40] = ACTIONS(3817), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_DOLLAR] = ACTIONS(3826), - [aux_sym_ctrl_match_token1] = ACTIONS(3829), - [anon_sym__] = ACTIONS(3832), - [anon_sym_DOT_DOT] = ACTIONS(3835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3838), - [anon_sym_DOT_DOT_LT] = ACTIONS(3838), - [aux_sym__val_number_decimal_token1] = ACTIONS(3841), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3847), - [aux_sym__val_number_decimal_token4] = ACTIONS(3850), - [aux_sym__val_number_token1] = ACTIONS(3853), - [aux_sym__val_number_token2] = ACTIONS(3853), - [aux_sym__val_number_token3] = ACTIONS(3853), - [anon_sym_0b] = ACTIONS(3856), - [anon_sym_0o] = ACTIONS(3859), - [anon_sym_0x] = ACTIONS(3859), - [sym_val_date] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(3865), - [sym__str_single_quotes] = ACTIONS(3868), - [sym__str_back_ticks] = ACTIONS(3868), - [anon_sym_err_GT] = ACTIONS(3871), - [anon_sym_out_GT] = ACTIONS(3871), - [anon_sym_e_GT] = ACTIONS(3871), - [anon_sym_o_GT] = ACTIONS(3871), - [anon_sym_err_PLUSout_GT] = ACTIONS(3871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3871), - [anon_sym_o_PLUSe_GT] = ACTIONS(3871), - [anon_sym_e_PLUSo_GT] = ACTIONS(3871), - [anon_sym_err_GT_GT] = ACTIONS(3874), - [anon_sym_out_GT_GT] = ACTIONS(3874), - [anon_sym_e_GT_GT] = ACTIONS(3874), - [anon_sym_o_GT_GT] = ACTIONS(3874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3874), - [aux_sym_unquoted_token1] = ACTIONS(3877), + [aux_sym_shebang_repeat1] = STATE(2973), + [aux_sym_ctrl_match_repeat1] = STATE(1062), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1043] = { - [sym_cell_path] = STATE(1225), - [sym_path] = STATE(1205), + [sym_match_arm] = STATE(6632), + [sym_default_arm] = STATE(6632), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1043), - [aux_sym_cell_path_repeat1] = STATE(1074), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3880), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_shebang_repeat1] = STATE(2973), + [aux_sym_ctrl_match_repeat1] = STATE(1064), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1044] = { - [sym_match_arm] = STATE(5999), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_match_arm] = STATE(6694), + [sym_default_arm] = STATE(6694), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1044), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_shebang_repeat1] = STATE(2973), + [aux_sym_ctrl_match_repeat1] = STATE(1074), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1045] = { - [sym__expr_parenthesized_immediate] = STATE(1586), - [sym__immediate_decimal] = STATE(1420), - [sym_val_variable] = STATE(1586), + [sym_match_arm] = STATE(6616), + [sym_default_arm] = STATE(6616), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1045), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_null] = ACTIONS(1493), - [aux_sym_cmd_identifier_token38] = ACTIONS(1493), - [aux_sym_cmd_identifier_token39] = ACTIONS(1493), - [aux_sym_cmd_identifier_token40] = ACTIONS(1493), - [sym__newline] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_err_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_GT_PIPE] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1479), - [aux_sym_ctrl_match_token1] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(3884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [aux_sym__immediate_decimal_token1] = ACTIONS(3886), - [aux_sym__immediate_decimal_token3] = ACTIONS(3888), - [aux_sym__immediate_decimal_token4] = ACTIONS(3890), - [aux_sym__immediate_decimal_token5] = ACTIONS(3892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1479), - [anon_sym_0o] = ACTIONS(1479), - [anon_sym_0x] = ACTIONS(1479), - [sym_val_date] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), - [anon_sym_err_GT] = ACTIONS(1479), - [anon_sym_out_GT] = ACTIONS(1479), - [anon_sym_e_GT] = ACTIONS(1479), - [anon_sym_o_GT] = ACTIONS(1479), - [anon_sym_err_PLUSout_GT] = ACTIONS(1479), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), - [anon_sym_o_PLUSe_GT] = ACTIONS(1479), - [anon_sym_e_PLUSo_GT] = ACTIONS(1479), - [anon_sym_err_GT_GT] = ACTIONS(1493), - [anon_sym_out_GT_GT] = ACTIONS(1493), - [anon_sym_e_GT_GT] = ACTIONS(1493), - [anon_sym_o_GT_GT] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), - [aux_sym_unquoted_token1] = ACTIONS(1479), - [aux_sym_unquoted_token2] = ACTIONS(1495), + [aux_sym_shebang_repeat1] = STATE(2973), + [aux_sym_ctrl_match_repeat1] = STATE(1055), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1046] = { - [sym_expr_parenthesized] = STATE(6525), - [sym_val_range] = STATE(7554), - [sym__val_range] = STATE(7774), - [sym__value] = STATE(7554), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(3505), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1046), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_DOLLAR] = ACTIONS(3692), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(3696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_LT] = ACTIONS(3698), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(3573), + [aux_sym_cmd_identifier_token2] = ACTIONS(3573), + [aux_sym_cmd_identifier_token3] = ACTIONS(3573), + [aux_sym_cmd_identifier_token4] = ACTIONS(3573), + [aux_sym_cmd_identifier_token5] = ACTIONS(3573), + [aux_sym_cmd_identifier_token6] = ACTIONS(3573), + [aux_sym_cmd_identifier_token7] = ACTIONS(3573), + [aux_sym_cmd_identifier_token8] = ACTIONS(3573), + [aux_sym_cmd_identifier_token9] = ACTIONS(3573), + [aux_sym_cmd_identifier_token10] = ACTIONS(3573), + [aux_sym_cmd_identifier_token11] = ACTIONS(3573), + [aux_sym_cmd_identifier_token12] = ACTIONS(3573), + [aux_sym_cmd_identifier_token13] = ACTIONS(3573), + [aux_sym_cmd_identifier_token14] = ACTIONS(3573), + [aux_sym_cmd_identifier_token15] = ACTIONS(3573), + [aux_sym_cmd_identifier_token16] = ACTIONS(3573), + [aux_sym_cmd_identifier_token17] = ACTIONS(3573), + [aux_sym_cmd_identifier_token18] = ACTIONS(3573), + [aux_sym_cmd_identifier_token19] = ACTIONS(3573), + [aux_sym_cmd_identifier_token20] = ACTIONS(3573), + [aux_sym_cmd_identifier_token21] = ACTIONS(3573), + [aux_sym_cmd_identifier_token22] = ACTIONS(3573), + [aux_sym_cmd_identifier_token23] = ACTIONS(3573), + [aux_sym_cmd_identifier_token24] = ACTIONS(3573), + [aux_sym_cmd_identifier_token25] = ACTIONS(3573), + [aux_sym_cmd_identifier_token26] = ACTIONS(3573), + [aux_sym_cmd_identifier_token27] = ACTIONS(3573), + [aux_sym_cmd_identifier_token28] = ACTIONS(3573), + [aux_sym_cmd_identifier_token29] = ACTIONS(3573), + [aux_sym_cmd_identifier_token30] = ACTIONS(3573), + [aux_sym_cmd_identifier_token31] = ACTIONS(3573), + [aux_sym_cmd_identifier_token32] = ACTIONS(3573), + [aux_sym_cmd_identifier_token33] = ACTIONS(3573), + [aux_sym_cmd_identifier_token34] = ACTIONS(3573), + [aux_sym_cmd_identifier_token35] = ACTIONS(3573), + [aux_sym_cmd_identifier_token36] = ACTIONS(3573), + [anon_sym_true] = ACTIONS(3573), + [anon_sym_false] = ACTIONS(3573), + [anon_sym_null] = ACTIONS(3573), + [aux_sym_cmd_identifier_token38] = ACTIONS(3573), + [aux_sym_cmd_identifier_token39] = ACTIONS(3573), + [aux_sym_cmd_identifier_token40] = ACTIONS(3573), + [sym__newline] = ACTIONS(3575), + [sym__space] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3573), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_DOLLAR] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_DOT_DOT] = ACTIONS(3573), + [aux_sym_expr_unary_token1] = ACTIONS(3573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3573), + [anon_sym_DOT_DOT_LT] = ACTIONS(3573), + [aux_sym__val_number_decimal_token1] = ACTIONS(3573), + [aux_sym__val_number_decimal_token2] = ACTIONS(3573), + [aux_sym__val_number_decimal_token3] = ACTIONS(3573), + [aux_sym__val_number_decimal_token4] = ACTIONS(3573), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3573), + [anon_sym_0o] = ACTIONS(3573), + [anon_sym_0x] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym__str_single_quotes] = ACTIONS(3573), + [sym__str_back_ticks] = ACTIONS(3573), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3573), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), + [aux_sym_env_var_token1] = ACTIONS(3573), + [anon_sym_CARET] = ACTIONS(3573), + [anon_sym_POUND] = ACTIONS(3), }, [1047] = { - [sym_cell_path] = STATE(1224), - [sym_path] = STATE(1206), [sym_comment] = STATE(1047), - [aux_sym_cell_path_repeat1] = STATE(1065), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [aux_sym_ctrl_match_token1] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(3581), + [aux_sym_cmd_identifier_token2] = ACTIONS(3581), + [aux_sym_cmd_identifier_token3] = ACTIONS(3581), + [aux_sym_cmd_identifier_token4] = ACTIONS(3581), + [aux_sym_cmd_identifier_token5] = ACTIONS(3581), + [aux_sym_cmd_identifier_token6] = ACTIONS(3581), + [aux_sym_cmd_identifier_token7] = ACTIONS(3581), + [aux_sym_cmd_identifier_token8] = ACTIONS(3581), + [aux_sym_cmd_identifier_token9] = ACTIONS(3581), + [aux_sym_cmd_identifier_token10] = ACTIONS(3581), + [aux_sym_cmd_identifier_token11] = ACTIONS(3581), + [aux_sym_cmd_identifier_token12] = ACTIONS(3581), + [aux_sym_cmd_identifier_token13] = ACTIONS(3581), + [aux_sym_cmd_identifier_token14] = ACTIONS(3581), + [aux_sym_cmd_identifier_token15] = ACTIONS(3581), + [aux_sym_cmd_identifier_token16] = ACTIONS(3581), + [aux_sym_cmd_identifier_token17] = ACTIONS(3581), + [aux_sym_cmd_identifier_token18] = ACTIONS(3581), + [aux_sym_cmd_identifier_token19] = ACTIONS(3581), + [aux_sym_cmd_identifier_token20] = ACTIONS(3581), + [aux_sym_cmd_identifier_token21] = ACTIONS(3581), + [aux_sym_cmd_identifier_token22] = ACTIONS(3581), + [aux_sym_cmd_identifier_token23] = ACTIONS(3581), + [aux_sym_cmd_identifier_token24] = ACTIONS(3581), + [aux_sym_cmd_identifier_token25] = ACTIONS(3581), + [aux_sym_cmd_identifier_token26] = ACTIONS(3581), + [aux_sym_cmd_identifier_token27] = ACTIONS(3581), + [aux_sym_cmd_identifier_token28] = ACTIONS(3581), + [aux_sym_cmd_identifier_token29] = ACTIONS(3581), + [aux_sym_cmd_identifier_token30] = ACTIONS(3581), + [aux_sym_cmd_identifier_token31] = ACTIONS(3581), + [aux_sym_cmd_identifier_token32] = ACTIONS(3581), + [aux_sym_cmd_identifier_token33] = ACTIONS(3581), + [aux_sym_cmd_identifier_token34] = ACTIONS(3581), + [aux_sym_cmd_identifier_token35] = ACTIONS(3581), + [aux_sym_cmd_identifier_token36] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3581), + [anon_sym_false] = ACTIONS(3581), + [anon_sym_null] = ACTIONS(3581), + [aux_sym_cmd_identifier_token38] = ACTIONS(3581), + [aux_sym_cmd_identifier_token39] = ACTIONS(3581), + [aux_sym_cmd_identifier_token40] = ACTIONS(3581), + [sym__newline] = ACTIONS(3583), + [sym__space] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_DOT_DOT] = ACTIONS(3581), + [aux_sym_expr_unary_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3581), + [anon_sym_DOT_DOT_LT] = ACTIONS(3581), + [aux_sym__val_number_decimal_token1] = ACTIONS(3581), + [aux_sym__val_number_decimal_token2] = ACTIONS(3581), + [aux_sym__val_number_decimal_token3] = ACTIONS(3581), + [aux_sym__val_number_decimal_token4] = ACTIONS(3581), + [aux_sym__val_number_token1] = ACTIONS(3581), + [aux_sym__val_number_token2] = ACTIONS(3581), + [aux_sym__val_number_token3] = ACTIONS(3581), + [anon_sym_0b] = ACTIONS(3581), + [anon_sym_0o] = ACTIONS(3581), + [anon_sym_0x] = ACTIONS(3581), + [sym_val_date] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3581), + [sym__str_back_ticks] = ACTIONS(3581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [aux_sym_env_var_token1] = ACTIONS(3581), + [anon_sym_CARET] = ACTIONS(3581), + [anon_sym_POUND] = ACTIONS(3), }, [1048] = { - [sym__expr_parenthesized_immediate] = STATE(1597), - [sym__immediate_decimal] = STATE(1440), - [sym_val_variable] = STATE(1597), + [sym_expr_parenthesized] = STATE(475), + [sym_val_range] = STATE(672), + [sym__val_range] = STATE(7377), + [sym__val_range_with_end] = STATE(7252), + [sym__value] = STATE(672), + [sym_val_nothing] = STATE(663), + [sym_val_bool] = STATE(551), + [sym_val_variable] = STATE(493), + [sym_val_number] = STATE(663), + [sym__val_number_decimal] = STATE(247), + [sym__val_number] = STATE(660), + [sym_val_duration] = STATE(663), + [sym_val_filesize] = STATE(663), + [sym_val_binary] = STATE(663), + [sym_val_string] = STATE(663), + [sym__str_double_quotes] = STATE(650), + [sym_val_interpolated] = STATE(663), + [sym__inter_single_quotes] = STATE(647), + [sym__inter_double_quotes] = STATE(662), + [sym_val_list] = STATE(663), + [sym_val_record] = STATE(663), + [sym_val_table] = STATE(663), + [sym_val_closure] = STATE(663), + [sym__unquoted_in_record] = STATE(507), + [sym__unquoted_in_record_with_expr] = STATE(672), + [sym__unquoted_anonymous_prefix] = STATE(6820), [sym_comment] = STATE(1048), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [aux_sym_cmd_identifier_token38] = ACTIONS(1551), - [aux_sym_cmd_identifier_token39] = ACTIONS(1551), - [aux_sym_cmd_identifier_token40] = ACTIONS(1551), - [sym__newline] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_err_GT_PIPE] = ACTIONS(1551), - [anon_sym_out_GT_PIPE] = ACTIONS(1551), - [anon_sym_e_GT_PIPE] = ACTIONS(1551), - [anon_sym_o_GT_PIPE] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [aux_sym_ctrl_match_token1] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(3884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), - [anon_sym_DOT_DOT_LT] = ACTIONS(1551), - [aux_sym__immediate_decimal_token1] = ACTIONS(3886), - [aux_sym__immediate_decimal_token3] = ACTIONS(3888), - [aux_sym__immediate_decimal_token4] = ACTIONS(3890), - [aux_sym__immediate_decimal_token5] = ACTIONS(3892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1549), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_decimal_token4] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1551), - [aux_sym__val_number_token2] = ACTIONS(1551), - [aux_sym__val_number_token3] = ACTIONS(1551), - [anon_sym_0b] = ACTIONS(1549), - [anon_sym_0o] = ACTIONS(1549), - [anon_sym_0x] = ACTIONS(1549), - [sym_val_date] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym__str_single_quotes] = ACTIONS(1551), - [sym__str_back_ticks] = ACTIONS(1551), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1549), - [anon_sym_out_GT] = ACTIONS(1549), - [anon_sym_e_GT] = ACTIONS(1549), - [anon_sym_o_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT] = ACTIONS(1549), - [anon_sym_err_GT_GT] = ACTIONS(1551), - [anon_sym_out_GT_GT] = ACTIONS(1551), - [anon_sym_e_GT_GT] = ACTIONS(1551), - [anon_sym_o_GT_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), - [aux_sym_unquoted_token1] = ACTIONS(1549), - [aux_sym_unquoted_token2] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(3587), + [anon_sym_false] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3589), + [aux_sym_cmd_identifier_token38] = ACTIONS(3591), + [aux_sym_cmd_identifier_token39] = ACTIONS(3591), + [aux_sym_cmd_identifier_token40] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_DOLLAR] = ACTIONS(3597), + [anon_sym_LBRACE] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [aux_sym__val_number_decimal_token1] = ACTIONS(3605), + [aux_sym__val_number_decimal_token2] = ACTIONS(3607), + [aux_sym__val_number_decimal_token3] = ACTIONS(3609), + [aux_sym__val_number_decimal_token4] = ACTIONS(3611), + [aux_sym__val_number_token1] = ACTIONS(3613), + [aux_sym__val_number_token2] = ACTIONS(3613), + [aux_sym__val_number_token3] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym__str_single_quotes] = ACTIONS(3623), + [sym__str_back_ticks] = ACTIONS(3623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), [anon_sym_POUND] = ACTIONS(247), }, [1049] = { - [sym_path] = STATE(1116), + [sym_expr_parenthesized] = STATE(476), + [sym_val_range] = STATE(645), + [sym__val_range] = STATE(7377), + [sym__val_range_with_end] = STATE(7252), + [sym__value] = STATE(645), + [sym_val_nothing] = STATE(663), + [sym_val_bool] = STATE(551), + [sym_val_variable] = STATE(493), + [sym_val_number] = STATE(663), + [sym__val_number_decimal] = STATE(247), + [sym__val_number] = STATE(660), + [sym_val_duration] = STATE(663), + [sym_val_filesize] = STATE(663), + [sym_val_binary] = STATE(663), + [sym_val_string] = STATE(663), + [sym__str_double_quotes] = STATE(650), + [sym_val_interpolated] = STATE(663), + [sym__inter_single_quotes] = STATE(647), + [sym__inter_double_quotes] = STATE(662), + [sym_val_list] = STATE(663), + [sym_val_record] = STATE(663), + [sym_val_table] = STATE(663), + [sym_val_closure] = STATE(663), + [sym__unquoted_in_record] = STATE(510), + [sym__unquoted_in_record_with_expr] = STATE(645), + [sym__unquoted_anonymous_prefix] = STATE(6820), [sym_comment] = STATE(1049), - [aux_sym_cell_path_repeat1] = STATE(1053), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [aux_sym_ctrl_match_token1] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [aux_sym_expr_binary_token1] = ACTIONS(1019), - [aux_sym_expr_binary_token2] = ACTIONS(1019), - [aux_sym_expr_binary_token3] = ACTIONS(1019), - [aux_sym_expr_binary_token4] = ACTIONS(1019), - [aux_sym_expr_binary_token5] = ACTIONS(1019), - [aux_sym_expr_binary_token6] = ACTIONS(1019), - [aux_sym_expr_binary_token7] = ACTIONS(1019), - [aux_sym_expr_binary_token8] = ACTIONS(1019), - [aux_sym_expr_binary_token9] = ACTIONS(1019), - [aux_sym_expr_binary_token10] = ACTIONS(1019), - [aux_sym_expr_binary_token11] = ACTIONS(1019), - [aux_sym_expr_binary_token12] = ACTIONS(1019), - [aux_sym_expr_binary_token13] = ACTIONS(1019), - [aux_sym_expr_binary_token14] = ACTIONS(1019), - [aux_sym_expr_binary_token15] = ACTIONS(1019), - [aux_sym_expr_binary_token16] = ACTIONS(1019), - [aux_sym_expr_binary_token17] = ACTIONS(1019), - [aux_sym_expr_binary_token18] = ACTIONS(1019), - [aux_sym_expr_binary_token19] = ACTIONS(1019), - [aux_sym_expr_binary_token20] = ACTIONS(1019), - [aux_sym_expr_binary_token21] = ACTIONS(1019), - [aux_sym_expr_binary_token22] = ACTIONS(1019), - [aux_sym_expr_binary_token23] = ACTIONS(1019), - [aux_sym_expr_binary_token24] = ACTIONS(1019), - [aux_sym_expr_binary_token25] = ACTIONS(1019), - [aux_sym_expr_binary_token26] = ACTIONS(1019), - [aux_sym_expr_binary_token27] = ACTIONS(1019), - [aux_sym_expr_binary_token28] = ACTIONS(1019), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(3764), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [aux_sym_record_entry_token1] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(3587), + [anon_sym_false] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3589), + [aux_sym_cmd_identifier_token38] = ACTIONS(3591), + [aux_sym_cmd_identifier_token39] = ACTIONS(3591), + [aux_sym_cmd_identifier_token40] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_DOLLAR] = ACTIONS(3597), + [anon_sym_LBRACE] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [aux_sym__val_number_decimal_token1] = ACTIONS(3605), + [aux_sym__val_number_decimal_token2] = ACTIONS(3607), + [aux_sym__val_number_decimal_token3] = ACTIONS(3609), + [aux_sym__val_number_decimal_token4] = ACTIONS(3611), + [aux_sym__val_number_token1] = ACTIONS(3613), + [aux_sym__val_number_token2] = ACTIONS(3613), + [aux_sym__val_number_token3] = ACTIONS(3613), + [anon_sym_0b] = ACTIONS(3615), + [anon_sym_0o] = ACTIONS(3617), + [anon_sym_0x] = ACTIONS(3617), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym__str_single_quotes] = ACTIONS(3623), + [sym__str_back_ticks] = ACTIONS(3623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), [anon_sym_POUND] = ACTIONS(247), }, [1050] = { - [sym_match_arm] = STATE(6023), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_expr_parenthesized] = STATE(381), + [sym_val_range] = STATE(614), + [sym__val_range] = STATE(7508), + [sym__val_range_with_end] = STATE(7323), + [sym__value] = STATE(614), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(461), + [sym_val_variable] = STATE(405), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(219), + [sym__val_number] = STATE(588), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(610), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_record] = STATE(490), + [sym__unquoted_in_record_with_expr] = STATE(614), + [sym__unquoted_anonymous_prefix] = STATE(7172), [sym_comment] = STATE(1050), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [anon_sym_null] = ACTIONS(3637), + [aux_sym_cmd_identifier_token38] = ACTIONS(3639), + [aux_sym_cmd_identifier_token39] = ACTIONS(3639), + [aux_sym_cmd_identifier_token40] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_DOT_DOT] = ACTIONS(3647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3649), + [anon_sym_DOT_DOT_LT] = ACTIONS(3649), + [aux_sym__val_number_decimal_token1] = ACTIONS(3651), + [aux_sym__val_number_decimal_token2] = ACTIONS(3653), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [anon_sym_0b] = ACTIONS(3661), + [anon_sym_0o] = ACTIONS(3663), + [anon_sym_0x] = ACTIONS(3663), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(3667), + [sym__str_single_quotes] = ACTIONS(3669), + [sym__str_back_ticks] = ACTIONS(3669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), [anon_sym_POUND] = ACTIONS(247), }, [1051] = { + [sym_expr_parenthesized] = STATE(387), + [sym_val_range] = STATE(618), + [sym__val_range] = STATE(7508), + [sym__val_range_with_end] = STATE(7323), + [sym__value] = STATE(618), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(461), + [sym_val_variable] = STATE(405), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(219), + [sym__val_number] = STATE(588), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(610), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_record] = STATE(444), + [sym__unquoted_in_record_with_expr] = STATE(618), + [sym__unquoted_anonymous_prefix] = STATE(7172), [sym_comment] = STATE(1051), - [aux_sym_cmd_identifier_token1] = ACTIONS(3896), - [aux_sym_cmd_identifier_token2] = ACTIONS(3896), - [aux_sym_cmd_identifier_token3] = ACTIONS(3896), - [aux_sym_cmd_identifier_token4] = ACTIONS(3896), - [aux_sym_cmd_identifier_token5] = ACTIONS(3896), - [aux_sym_cmd_identifier_token6] = ACTIONS(3896), - [aux_sym_cmd_identifier_token7] = ACTIONS(3896), - [aux_sym_cmd_identifier_token8] = ACTIONS(3896), - [aux_sym_cmd_identifier_token9] = ACTIONS(3896), - [aux_sym_cmd_identifier_token10] = ACTIONS(3896), - [aux_sym_cmd_identifier_token11] = ACTIONS(3896), - [aux_sym_cmd_identifier_token12] = ACTIONS(3896), - [aux_sym_cmd_identifier_token13] = ACTIONS(3896), - [aux_sym_cmd_identifier_token14] = ACTIONS(3896), - [aux_sym_cmd_identifier_token15] = ACTIONS(3896), - [aux_sym_cmd_identifier_token16] = ACTIONS(3896), - [aux_sym_cmd_identifier_token17] = ACTIONS(3896), - [aux_sym_cmd_identifier_token18] = ACTIONS(3896), - [aux_sym_cmd_identifier_token19] = ACTIONS(3896), - [aux_sym_cmd_identifier_token20] = ACTIONS(3896), - [aux_sym_cmd_identifier_token21] = ACTIONS(3896), - [aux_sym_cmd_identifier_token22] = ACTIONS(3896), - [aux_sym_cmd_identifier_token23] = ACTIONS(3896), - [aux_sym_cmd_identifier_token24] = ACTIONS(3896), - [aux_sym_cmd_identifier_token25] = ACTIONS(3896), - [aux_sym_cmd_identifier_token26] = ACTIONS(3896), - [aux_sym_cmd_identifier_token27] = ACTIONS(3896), - [aux_sym_cmd_identifier_token28] = ACTIONS(3896), - [aux_sym_cmd_identifier_token29] = ACTIONS(3896), - [aux_sym_cmd_identifier_token30] = ACTIONS(3896), - [aux_sym_cmd_identifier_token31] = ACTIONS(3896), - [aux_sym_cmd_identifier_token32] = ACTIONS(3896), - [aux_sym_cmd_identifier_token33] = ACTIONS(3896), - [aux_sym_cmd_identifier_token34] = ACTIONS(3896), - [aux_sym_cmd_identifier_token35] = ACTIONS(3896), - [aux_sym_cmd_identifier_token36] = ACTIONS(3896), - [anon_sym_true] = ACTIONS(3896), - [anon_sym_false] = ACTIONS(3896), - [anon_sym_null] = ACTIONS(3896), - [aux_sym_cmd_identifier_token38] = ACTIONS(3896), - [aux_sym_cmd_identifier_token39] = ACTIONS(3896), - [aux_sym_cmd_identifier_token40] = ACTIONS(3896), - [sym__space] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3896), - [anon_sym_LPAREN] = ACTIONS(3896), - [anon_sym_DOLLAR] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [aux_sym_ctrl_match_token1] = ACTIONS(3896), - [anon_sym_DOT_DOT] = ACTIONS(3896), - [aux_sym_expr_unary_token1] = ACTIONS(3896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3896), - [anon_sym_DOT_DOT_LT] = ACTIONS(3896), - [aux_sym__val_number_decimal_token1] = ACTIONS(3896), - [aux_sym__val_number_decimal_token2] = ACTIONS(3896), - [aux_sym__val_number_decimal_token3] = ACTIONS(3896), - [aux_sym__val_number_decimal_token4] = ACTIONS(3896), - [aux_sym__val_number_token1] = ACTIONS(3896), - [aux_sym__val_number_token2] = ACTIONS(3896), - [aux_sym__val_number_token3] = ACTIONS(3896), - [anon_sym_0b] = ACTIONS(3896), - [anon_sym_0o] = ACTIONS(3896), - [anon_sym_0x] = ACTIONS(3896), - [sym_val_date] = ACTIONS(3896), - [anon_sym_DQUOTE] = ACTIONS(3896), - [sym__str_single_quotes] = ACTIONS(3896), - [sym__str_back_ticks] = ACTIONS(3896), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3896), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3896), - [aux_sym_env_var_token1] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3896), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [anon_sym_null] = ACTIONS(3637), + [aux_sym_cmd_identifier_token38] = ACTIONS(3639), + [aux_sym_cmd_identifier_token39] = ACTIONS(3639), + [aux_sym_cmd_identifier_token40] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_DOT_DOT] = ACTIONS(3647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3649), + [anon_sym_DOT_DOT_LT] = ACTIONS(3649), + [aux_sym__val_number_decimal_token1] = ACTIONS(3651), + [aux_sym__val_number_decimal_token2] = ACTIONS(3653), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [anon_sym_0b] = ACTIONS(3661), + [anon_sym_0o] = ACTIONS(3663), + [anon_sym_0x] = ACTIONS(3663), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(3667), + [sym__str_single_quotes] = ACTIONS(3669), + [sym__str_back_ticks] = ACTIONS(3669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), + [anon_sym_POUND] = ACTIONS(247), }, [1052] = { + [sym_expr_parenthesized] = STATE(6045), + [sym_val_range] = STATE(614), + [sym__val_range] = STATE(7508), + [sym__val_range_with_end] = STATE(7323), + [sym__value] = STATE(614), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6478), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5237), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_record] = STATE(490), + [sym__unquoted_in_record_with_expr] = STATE(614), + [sym__unquoted_anonymous_prefix] = STATE(7172), [sym_comment] = STATE(1052), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(3900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(3673), + [anon_sym_false] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [aux_sym_cmd_identifier_token38] = ACTIONS(3677), + [aux_sym_cmd_identifier_token39] = ACTIONS(3677), + [aux_sym_cmd_identifier_token40] = ACTIONS(3677), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3681), + [anon_sym_DOT_DOT_LT] = ACTIONS(3681), + [aux_sym__val_number_decimal_token1] = ACTIONS(3683), + [aux_sym__val_number_decimal_token2] = ACTIONS(3685), + [aux_sym__val_number_decimal_token3] = ACTIONS(3687), + [aux_sym__val_number_decimal_token4] = ACTIONS(3689), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3691), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), [anon_sym_POUND] = ACTIONS(247), }, [1053] = { - [sym_path] = STATE(1116), + [sym_expr_parenthesized] = STATE(5918), + [sym_val_range] = STATE(618), + [sym__val_range] = STATE(7508), + [sym__val_range_with_end] = STATE(7323), + [sym__value] = STATE(618), + [sym_val_nothing] = STATE(521), + [sym_val_bool] = STATE(6478), + [sym_val_variable] = STATE(5719), + [sym_val_number] = STATE(521), + [sym__val_number_decimal] = STATE(5237), + [sym__val_number] = STATE(2915), + [sym_val_duration] = STATE(521), + [sym_val_filesize] = STATE(521), + [sym_val_binary] = STATE(521), + [sym_val_string] = STATE(521), + [sym__str_double_quotes] = STATE(5413), + [sym_val_interpolated] = STATE(521), + [sym__inter_single_quotes] = STATE(495), + [sym__inter_double_quotes] = STATE(556), + [sym_val_list] = STATE(521), + [sym_val_record] = STATE(521), + [sym_val_table] = STATE(521), + [sym_val_closure] = STATE(521), + [sym__unquoted_in_record] = STATE(444), + [sym__unquoted_in_record_with_expr] = STATE(618), + [sym__unquoted_anonymous_prefix] = STATE(7172), [sym_comment] = STATE(1053), - [aux_sym_cell_path_repeat1] = STATE(1053), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(3904), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym_record_entry_token1] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(3673), + [anon_sym_false] = ACTIONS(3673), + [anon_sym_null] = ACTIONS(3675), + [aux_sym_cmd_identifier_token38] = ACTIONS(3677), + [aux_sym_cmd_identifier_token39] = ACTIONS(3677), + [aux_sym_cmd_identifier_token40] = ACTIONS(3677), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(3679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3681), + [anon_sym_DOT_DOT_LT] = ACTIONS(3681), + [aux_sym__val_number_decimal_token1] = ACTIONS(3683), + [aux_sym__val_number_decimal_token2] = ACTIONS(3685), + [aux_sym__val_number_decimal_token3] = ACTIONS(3687), + [aux_sym__val_number_decimal_token4] = ACTIONS(3689), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_0b] = ACTIONS(2571), + [anon_sym_0o] = ACTIONS(2573), + [anon_sym_0x] = ACTIONS(2573), + [sym_val_date] = ACTIONS(3691), + [anon_sym_DQUOTE] = ACTIONS(3015), + [sym__str_single_quotes] = ACTIONS(3017), + [sym__str_back_ticks] = ACTIONS(3017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(3629), + [anon_sym_out_GT] = ACTIONS(3629), + [anon_sym_e_GT] = ACTIONS(3629), + [anon_sym_o_GT] = ACTIONS(3629), + [anon_sym_err_PLUSout_GT] = ACTIONS(3629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), + [anon_sym_o_PLUSe_GT] = ACTIONS(3629), + [anon_sym_e_PLUSo_GT] = ACTIONS(3629), + [anon_sym_err_GT_GT] = ACTIONS(3631), + [anon_sym_out_GT_GT] = ACTIONS(3631), + [anon_sym_e_GT_GT] = ACTIONS(3631), + [anon_sym_o_GT_GT] = ACTIONS(3631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), [anon_sym_POUND] = ACTIONS(247), }, [1054] = { + [sym_cell_path] = STATE(1217), + [sym_path] = STATE(1135), [sym_comment] = STATE(1054), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(3907), - [aux_sym__immediate_decimal_token2] = ACTIONS(3909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [aux_sym_cell_path_repeat1] = STATE(1078), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), + [sym__newline] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [aux_sym_expr_binary_token1] = ACTIONS(1007), + [aux_sym_expr_binary_token2] = ACTIONS(1007), + [aux_sym_expr_binary_token3] = ACTIONS(1007), + [aux_sym_expr_binary_token4] = ACTIONS(1007), + [aux_sym_expr_binary_token5] = ACTIONS(1007), + [aux_sym_expr_binary_token6] = ACTIONS(1007), + [aux_sym_expr_binary_token7] = ACTIONS(1007), + [aux_sym_expr_binary_token8] = ACTIONS(1007), + [aux_sym_expr_binary_token9] = ACTIONS(1007), + [aux_sym_expr_binary_token10] = ACTIONS(1007), + [aux_sym_expr_binary_token11] = ACTIONS(1007), + [aux_sym_expr_binary_token12] = ACTIONS(1007), + [aux_sym_expr_binary_token13] = ACTIONS(1007), + [aux_sym_expr_binary_token14] = ACTIONS(1007), + [aux_sym_expr_binary_token15] = ACTIONS(1007), + [aux_sym_expr_binary_token16] = ACTIONS(1007), + [aux_sym_expr_binary_token17] = ACTIONS(1007), + [aux_sym_expr_binary_token18] = ACTIONS(1007), + [aux_sym_expr_binary_token19] = ACTIONS(1007), + [aux_sym_expr_binary_token20] = ACTIONS(1007), + [aux_sym_expr_binary_token21] = ACTIONS(1007), + [aux_sym_expr_binary_token22] = ACTIONS(1007), + [aux_sym_expr_binary_token23] = ACTIONS(1007), + [aux_sym_expr_binary_token24] = ACTIONS(1007), + [aux_sym_expr_binary_token25] = ACTIONS(1007), + [aux_sym_expr_binary_token26] = ACTIONS(1007), + [aux_sym_expr_binary_token27] = ACTIONS(1007), + [aux_sym_expr_binary_token28] = ACTIONS(1007), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [aux_sym_record_entry_token1] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), [anon_sym_POUND] = ACTIONS(247), }, [1055] = { - [sym_match_arm] = STATE(6018), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_match_arm] = STATE(6752), + [sym_default_arm] = STATE(6752), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1055), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1056] = { - [sym_match_arm] = STATE(5915), - [sym_match_pattern] = STATE(7640), - [sym__match_pattern] = STATE(5944), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7551), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6595), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5295), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7814), [sym_comment] = STATE(1056), - [aux_sym_ctrl_match_repeat1] = STATE(1042), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3475), - [aux_sym_cmd_identifier_token39] = ACTIONS(3475), - [aux_sym_cmd_identifier_token40] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), - [anon_sym_DOT_DOT_LT] = ACTIONS(3493), - [aux_sym__val_number_decimal_token1] = ACTIONS(3495), - [aux_sym__val_number_decimal_token2] = ACTIONS(3497), - [aux_sym__val_number_decimal_token3] = ACTIONS(3499), - [aux_sym__val_number_decimal_token4] = ACTIONS(3501), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipe_element_repeat1] = STATE(1067), + [aux_sym_cmd_identifier_token1] = ACTIONS(3695), + [aux_sym_cmd_identifier_token2] = ACTIONS(3695), + [aux_sym_cmd_identifier_token3] = ACTIONS(3695), + [aux_sym_cmd_identifier_token4] = ACTIONS(3695), + [aux_sym_cmd_identifier_token5] = ACTIONS(3695), + [aux_sym_cmd_identifier_token6] = ACTIONS(3695), + [aux_sym_cmd_identifier_token7] = ACTIONS(3695), + [aux_sym_cmd_identifier_token8] = ACTIONS(3695), + [aux_sym_cmd_identifier_token9] = ACTIONS(3695), + [aux_sym_cmd_identifier_token10] = ACTIONS(3695), + [aux_sym_cmd_identifier_token11] = ACTIONS(3695), + [aux_sym_cmd_identifier_token12] = ACTIONS(3695), + [aux_sym_cmd_identifier_token13] = ACTIONS(3695), + [aux_sym_cmd_identifier_token14] = ACTIONS(3695), + [aux_sym_cmd_identifier_token15] = ACTIONS(3695), + [aux_sym_cmd_identifier_token16] = ACTIONS(3695), + [aux_sym_cmd_identifier_token17] = ACTIONS(3695), + [aux_sym_cmd_identifier_token18] = ACTIONS(3695), + [aux_sym_cmd_identifier_token19] = ACTIONS(3695), + [aux_sym_cmd_identifier_token20] = ACTIONS(3695), + [aux_sym_cmd_identifier_token21] = ACTIONS(3695), + [aux_sym_cmd_identifier_token22] = ACTIONS(3695), + [aux_sym_cmd_identifier_token23] = ACTIONS(3695), + [aux_sym_cmd_identifier_token24] = ACTIONS(3695), + [aux_sym_cmd_identifier_token25] = ACTIONS(3695), + [aux_sym_cmd_identifier_token26] = ACTIONS(3695), + [aux_sym_cmd_identifier_token27] = ACTIONS(3695), + [aux_sym_cmd_identifier_token28] = ACTIONS(3695), + [aux_sym_cmd_identifier_token29] = ACTIONS(3695), + [aux_sym_cmd_identifier_token30] = ACTIONS(3695), + [aux_sym_cmd_identifier_token31] = ACTIONS(3695), + [aux_sym_cmd_identifier_token32] = ACTIONS(3695), + [aux_sym_cmd_identifier_token33] = ACTIONS(3695), + [aux_sym_cmd_identifier_token34] = ACTIONS(3695), + [aux_sym_cmd_identifier_token35] = ACTIONS(3695), + [aux_sym_cmd_identifier_token36] = ACTIONS(3695), + [anon_sym_true] = ACTIONS(3695), + [anon_sym_false] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3695), + [aux_sym_cmd_identifier_token38] = ACTIONS(3695), + [aux_sym_cmd_identifier_token39] = ACTIONS(3695), + [aux_sym_cmd_identifier_token40] = ACTIONS(3695), + [sym__space] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3695), + [anon_sym_DASH] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3695), + [anon_sym_DOT_DOT] = ACTIONS(3695), + [aux_sym_expr_unary_token1] = ACTIONS(3695), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3695), + [anon_sym_DOT_DOT_LT] = ACTIONS(3695), + [aux_sym__val_number_decimal_token1] = ACTIONS(3695), + [aux_sym__val_number_decimal_token2] = ACTIONS(3695), + [aux_sym__val_number_decimal_token3] = ACTIONS(3695), + [aux_sym__val_number_decimal_token4] = ACTIONS(3695), + [aux_sym__val_number_token1] = ACTIONS(3695), + [aux_sym__val_number_token2] = ACTIONS(3695), + [aux_sym__val_number_token3] = ACTIONS(3695), + [anon_sym_0b] = ACTIONS(3695), + [anon_sym_0o] = ACTIONS(3695), + [anon_sym_0x] = ACTIONS(3695), + [sym_val_date] = ACTIONS(3695), + [anon_sym_DQUOTE] = ACTIONS(3695), + [sym__str_single_quotes] = ACTIONS(3695), + [sym__str_back_ticks] = ACTIONS(3695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3695), + [aux_sym_env_var_token1] = ACTIONS(3695), + [anon_sym_CARET] = ACTIONS(3695), + [anon_sym_POUND] = ACTIONS(3), }, [1057] = { + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_rest] = STATE(7654), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2884), + [sym_val_range] = STATE(3093), + [sym__val_range] = STATE(7378), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(3015), + [sym_val_variable] = STATE(2885), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2627), + [sym__val_number] = STATE(3088), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__str_double_quotes] = STATE(3056), + [sym_val_list] = STATE(7604), + [sym_val_table] = STATE(3096), + [sym__unquoted_in_list] = STATE(3060), + [sym__unquoted_anonymous_prefix] = STATE(7454), [sym_comment] = STATE(1057), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [aux_sym_ctrl_match_token1] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_QMARK2] = ACTIONS(1046), - [aux_sym_expr_binary_token1] = ACTIONS(1046), - [aux_sym_expr_binary_token2] = ACTIONS(1046), - [aux_sym_expr_binary_token3] = ACTIONS(1046), - [aux_sym_expr_binary_token4] = ACTIONS(1046), - [aux_sym_expr_binary_token5] = ACTIONS(1046), - [aux_sym_expr_binary_token6] = ACTIONS(1046), - [aux_sym_expr_binary_token7] = ACTIONS(1046), - [aux_sym_expr_binary_token8] = ACTIONS(1046), - [aux_sym_expr_binary_token9] = ACTIONS(1046), - [aux_sym_expr_binary_token10] = ACTIONS(1046), - [aux_sym_expr_binary_token11] = ACTIONS(1046), - [aux_sym_expr_binary_token12] = ACTIONS(1046), - [aux_sym_expr_binary_token13] = ACTIONS(1046), - [aux_sym_expr_binary_token14] = ACTIONS(1046), - [aux_sym_expr_binary_token15] = ACTIONS(1046), - [aux_sym_expr_binary_token16] = ACTIONS(1046), - [aux_sym_expr_binary_token17] = ACTIONS(1046), - [aux_sym_expr_binary_token18] = ACTIONS(1046), - [aux_sym_expr_binary_token19] = ACTIONS(1046), - [aux_sym_expr_binary_token20] = ACTIONS(1046), - [aux_sym_expr_binary_token21] = ACTIONS(1046), - [aux_sym_expr_binary_token22] = ACTIONS(1046), - [aux_sym_expr_binary_token23] = ACTIONS(1046), - [aux_sym_expr_binary_token24] = ACTIONS(1046), - [aux_sym_expr_binary_token25] = ACTIONS(1046), - [aux_sym_expr_binary_token26] = ACTIONS(1046), - [aux_sym_expr_binary_token27] = ACTIONS(1046), - [aux_sym_expr_binary_token28] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [aux_sym_shebang_repeat1] = STATE(6550), + [aux_sym__match_pattern_list_repeat1] = STATE(1125), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3701), + [aux_sym_cmd_identifier_token38] = ACTIONS(3703), + [aux_sym_cmd_identifier_token39] = ACTIONS(3703), + [aux_sym_cmd_identifier_token40] = ACTIONS(3703), + [sym__newline] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_DOT_DOT] = ACTIONS(3717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), + [anon_sym_DOT_DOT_LT] = ACTIONS(3719), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3723), + [aux_sym__val_number_decimal_token3] = ACTIONS(3725), + [aux_sym__val_number_decimal_token4] = ACTIONS(3727), + [aux_sym__val_number_token1] = ACTIONS(3729), + [aux_sym__val_number_token2] = ACTIONS(3729), + [aux_sym__val_number_token3] = ACTIONS(3729), + [anon_sym_0b] = ACTIONS(3731), + [anon_sym_0o] = ACTIONS(3733), + [anon_sym_0x] = ACTIONS(3733), + [sym_val_date] = ACTIONS(3735), + [anon_sym_DQUOTE] = ACTIONS(3737), + [sym__str_single_quotes] = ACTIONS(3739), + [sym__str_back_ticks] = ACTIONS(3739), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(247), }, [1058] = { - [sym_path] = STATE(1206), + [sym_match_arm] = STATE(7167), + [sym_default_arm] = STATE(7167), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1058), - [aux_sym_cell_path_repeat1] = STATE(1058), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(3911), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1059] = { + [sym_match_arm] = STATE(6694), + [sym_default_arm] = STATE(6694), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1059), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [aux_sym_ctrl_match_token1] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(1050), - [aux_sym_expr_binary_token1] = ACTIONS(1050), - [aux_sym_expr_binary_token2] = ACTIONS(1050), - [aux_sym_expr_binary_token3] = ACTIONS(1050), - [aux_sym_expr_binary_token4] = ACTIONS(1050), - [aux_sym_expr_binary_token5] = ACTIONS(1050), - [aux_sym_expr_binary_token6] = ACTIONS(1050), - [aux_sym_expr_binary_token7] = ACTIONS(1050), - [aux_sym_expr_binary_token8] = ACTIONS(1050), - [aux_sym_expr_binary_token9] = ACTIONS(1050), - [aux_sym_expr_binary_token10] = ACTIONS(1050), - [aux_sym_expr_binary_token11] = ACTIONS(1050), - [aux_sym_expr_binary_token12] = ACTIONS(1050), - [aux_sym_expr_binary_token13] = ACTIONS(1050), - [aux_sym_expr_binary_token14] = ACTIONS(1050), - [aux_sym_expr_binary_token15] = ACTIONS(1050), - [aux_sym_expr_binary_token16] = ACTIONS(1050), - [aux_sym_expr_binary_token17] = ACTIONS(1050), - [aux_sym_expr_binary_token18] = ACTIONS(1050), - [aux_sym_expr_binary_token19] = ACTIONS(1050), - [aux_sym_expr_binary_token20] = ACTIONS(1050), - [aux_sym_expr_binary_token21] = ACTIONS(1050), - [aux_sym_expr_binary_token22] = ACTIONS(1050), - [aux_sym_expr_binary_token23] = ACTIONS(1050), - [aux_sym_expr_binary_token24] = ACTIONS(1050), - [aux_sym_expr_binary_token25] = ACTIONS(1050), - [aux_sym_expr_binary_token26] = ACTIONS(1050), - [aux_sym_expr_binary_token27] = ACTIONS(1050), - [aux_sym_expr_binary_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [aux_sym_record_entry_token1] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1060] = { - [sym__expr_parenthesized_immediate] = STATE(7469), + [sym_env_var] = STATE(7340), [sym_comment] = STATE(1060), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1575), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT2] = ACTIONS(3916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3918), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(3920), - [sym_duration_unit] = ACTIONS(3922), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(3924), + [aux_sym_pipe_element_repeat2] = STATE(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(3695), + [aux_sym_cmd_identifier_token2] = ACTIONS(3743), + [aux_sym_cmd_identifier_token3] = ACTIONS(3743), + [aux_sym_cmd_identifier_token4] = ACTIONS(3743), + [aux_sym_cmd_identifier_token5] = ACTIONS(3743), + [aux_sym_cmd_identifier_token6] = ACTIONS(3743), + [aux_sym_cmd_identifier_token7] = ACTIONS(3743), + [aux_sym_cmd_identifier_token8] = ACTIONS(3743), + [aux_sym_cmd_identifier_token9] = ACTIONS(3695), + [aux_sym_cmd_identifier_token10] = ACTIONS(3743), + [aux_sym_cmd_identifier_token11] = ACTIONS(3743), + [aux_sym_cmd_identifier_token12] = ACTIONS(3743), + [aux_sym_cmd_identifier_token13] = ACTIONS(3695), + [aux_sym_cmd_identifier_token14] = ACTIONS(3743), + [aux_sym_cmd_identifier_token15] = ACTIONS(3695), + [aux_sym_cmd_identifier_token16] = ACTIONS(3743), + [aux_sym_cmd_identifier_token17] = ACTIONS(3743), + [aux_sym_cmd_identifier_token18] = ACTIONS(3743), + [aux_sym_cmd_identifier_token19] = ACTIONS(3743), + [aux_sym_cmd_identifier_token20] = ACTIONS(3743), + [aux_sym_cmd_identifier_token21] = ACTIONS(3743), + [aux_sym_cmd_identifier_token22] = ACTIONS(3743), + [aux_sym_cmd_identifier_token23] = ACTIONS(3743), + [aux_sym_cmd_identifier_token24] = ACTIONS(3743), + [aux_sym_cmd_identifier_token25] = ACTIONS(3743), + [aux_sym_cmd_identifier_token26] = ACTIONS(3743), + [aux_sym_cmd_identifier_token27] = ACTIONS(3743), + [aux_sym_cmd_identifier_token28] = ACTIONS(3743), + [aux_sym_cmd_identifier_token29] = ACTIONS(3743), + [aux_sym_cmd_identifier_token30] = ACTIONS(3743), + [aux_sym_cmd_identifier_token31] = ACTIONS(3743), + [aux_sym_cmd_identifier_token32] = ACTIONS(3743), + [aux_sym_cmd_identifier_token33] = ACTIONS(3743), + [aux_sym_cmd_identifier_token34] = ACTIONS(3743), + [aux_sym_cmd_identifier_token35] = ACTIONS(3743), + [aux_sym_cmd_identifier_token36] = ACTIONS(3695), + [anon_sym_true] = ACTIONS(3743), + [anon_sym_false] = ACTIONS(3743), + [anon_sym_null] = ACTIONS(3743), + [aux_sym_cmd_identifier_token38] = ACTIONS(3695), + [aux_sym_cmd_identifier_token39] = ACTIONS(3743), + [aux_sym_cmd_identifier_token40] = ACTIONS(3743), + [anon_sym_LBRACK] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3743), + [anon_sym_DOLLAR] = ACTIONS(3695), + [anon_sym_DASH] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3743), + [anon_sym_DOT_DOT] = ACTIONS(3695), + [aux_sym_expr_unary_token1] = ACTIONS(3743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3743), + [anon_sym_DOT_DOT_LT] = ACTIONS(3743), + [aux_sym__val_number_decimal_token1] = ACTIONS(3695), + [aux_sym__val_number_decimal_token2] = ACTIONS(3743), + [aux_sym__val_number_decimal_token3] = ACTIONS(3743), + [aux_sym__val_number_decimal_token4] = ACTIONS(3743), + [aux_sym__val_number_token1] = ACTIONS(3743), + [aux_sym__val_number_token2] = ACTIONS(3743), + [aux_sym__val_number_token3] = ACTIONS(3743), + [anon_sym_0b] = ACTIONS(3695), + [anon_sym_0o] = ACTIONS(3695), + [anon_sym_0x] = ACTIONS(3695), + [sym_val_date] = ACTIONS(3743), + [anon_sym_DQUOTE] = ACTIONS(3743), + [sym__str_single_quotes] = ACTIONS(3743), + [sym__str_back_ticks] = ACTIONS(3743), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3743), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), + [aux_sym_env_var_token1] = ACTIONS(3745), + [anon_sym_CARET] = ACTIONS(3743), [anon_sym_POUND] = ACTIONS(247), }, [1061] = { - [sym__expr_parenthesized_immediate] = STATE(1591), - [sym__immediate_decimal] = STATE(1592), - [sym_val_variable] = STATE(1591), [sym_comment] = STATE(1061), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [aux_sym_cmd_identifier_token38] = ACTIONS(1619), - [aux_sym_cmd_identifier_token39] = ACTIONS(1619), - [aux_sym_cmd_identifier_token40] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_DOLLAR] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1617), - [aux_sym_ctrl_match_token1] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(3884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), - [anon_sym_DOT_DOT_LT] = ACTIONS(1619), - [aux_sym__immediate_decimal_token1] = ACTIONS(3926), - [aux_sym__immediate_decimal_token3] = ACTIONS(3928), - [aux_sym__immediate_decimal_token4] = ACTIONS(3930), - [aux_sym__immediate_decimal_token5] = ACTIONS(3932), - [aux_sym__val_number_decimal_token1] = ACTIONS(1617), - [aux_sym__val_number_decimal_token2] = ACTIONS(1617), - [aux_sym__val_number_decimal_token3] = ACTIONS(1617), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(1619), - [aux_sym__val_number_token2] = ACTIONS(1619), - [aux_sym__val_number_token3] = ACTIONS(1619), - [anon_sym_0b] = ACTIONS(1617), - [anon_sym_0o] = ACTIONS(1617), - [anon_sym_0x] = ACTIONS(1617), - [sym_val_date] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [sym__str_single_quotes] = ACTIONS(1619), - [sym__str_back_ticks] = ACTIONS(1619), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), - [anon_sym_err_GT] = ACTIONS(1617), - [anon_sym_out_GT] = ACTIONS(1617), - [anon_sym_e_GT] = ACTIONS(1617), - [anon_sym_o_GT] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT] = ACTIONS(1617), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [aux_sym_unquoted_token1] = ACTIONS(1617), + [aux_sym_shebang_repeat1] = STATE(1061), + [aux_sym_cmd_identifier_token1] = ACTIONS(1313), + [aux_sym_cmd_identifier_token2] = ACTIONS(1315), + [aux_sym_cmd_identifier_token3] = ACTIONS(1315), + [aux_sym_cmd_identifier_token4] = ACTIONS(1315), + [aux_sym_cmd_identifier_token5] = ACTIONS(1315), + [aux_sym_cmd_identifier_token6] = ACTIONS(1315), + [aux_sym_cmd_identifier_token7] = ACTIONS(1315), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1313), + [aux_sym_cmd_identifier_token10] = ACTIONS(1315), + [aux_sym_cmd_identifier_token11] = ACTIONS(1315), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1313), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1313), + [aux_sym_cmd_identifier_token16] = ACTIONS(1315), + [aux_sym_cmd_identifier_token17] = ACTIONS(1315), + [aux_sym_cmd_identifier_token18] = ACTIONS(1315), + [aux_sym_cmd_identifier_token19] = ACTIONS(1315), + [aux_sym_cmd_identifier_token20] = ACTIONS(1315), + [aux_sym_cmd_identifier_token21] = ACTIONS(1315), + [aux_sym_cmd_identifier_token22] = ACTIONS(1315), + [aux_sym_cmd_identifier_token23] = ACTIONS(1313), + [aux_sym_cmd_identifier_token24] = ACTIONS(1315), + [aux_sym_cmd_identifier_token25] = ACTIONS(1315), + [aux_sym_cmd_identifier_token26] = ACTIONS(1315), + [aux_sym_cmd_identifier_token27] = ACTIONS(1315), + [aux_sym_cmd_identifier_token28] = ACTIONS(1315), + [aux_sym_cmd_identifier_token29] = ACTIONS(1315), + [aux_sym_cmd_identifier_token30] = ACTIONS(1315), + [aux_sym_cmd_identifier_token31] = ACTIONS(1315), + [aux_sym_cmd_identifier_token32] = ACTIONS(1315), + [aux_sym_cmd_identifier_token33] = ACTIONS(1315), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1315), + [aux_sym_cmd_identifier_token36] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_null] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1313), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [sym__newline] = ACTIONS(3748), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [aux_sym_expr_unary_token1] = ACTIONS(1315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_LT] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1315), + [aux_sym__val_number_token1] = ACTIONS(1315), + [aux_sym__val_number_token2] = ACTIONS(1315), + [aux_sym__val_number_token3] = ACTIONS(1315), + [anon_sym_0b] = ACTIONS(1313), + [anon_sym_0o] = ACTIONS(1313), + [anon_sym_0x] = ACTIONS(1313), + [sym_val_date] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym__str_single_quotes] = ACTIONS(1315), + [sym__str_back_ticks] = ACTIONS(1315), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), [anon_sym_POUND] = ACTIONS(247), }, [1062] = { - [sym__expr_parenthesized_immediate] = STATE(1595), - [sym__immediate_decimal] = STATE(1596), - [sym_val_variable] = STATE(1595), + [sym_match_arm] = STATE(6696), + [sym_default_arm] = STATE(6696), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1062), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [aux_sym_cmd_identifier_token38] = ACTIONS(1563), - [aux_sym_cmd_identifier_token39] = ACTIONS(1563), - [aux_sym_cmd_identifier_token40] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_err_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_GT_PIPE] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [aux_sym_ctrl_match_token1] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(3884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT] = ACTIONS(1563), - [aux_sym__immediate_decimal_token1] = ACTIONS(3926), - [aux_sym__immediate_decimal_token3] = ACTIONS(3928), - [aux_sym__immediate_decimal_token4] = ACTIONS(3930), - [aux_sym__immediate_decimal_token5] = ACTIONS(3932), - [aux_sym__val_number_decimal_token1] = ACTIONS(1561), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1563), - [aux_sym__val_number_token2] = ACTIONS(1563), - [aux_sym__val_number_token3] = ACTIONS(1563), - [anon_sym_0b] = ACTIONS(1561), - [anon_sym_0o] = ACTIONS(1561), - [anon_sym_0x] = ACTIONS(1561), - [sym_val_date] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym__str_single_quotes] = ACTIONS(1563), - [sym__str_back_ticks] = ACTIONS(1563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1563), - [anon_sym_out_GT_GT] = ACTIONS(1563), - [anon_sym_e_GT_GT] = ACTIONS(1563), - [anon_sym_o_GT_GT] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), - [aux_sym_unquoted_token1] = ACTIONS(1561), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1063] = { - [sym__expr_parenthesized_immediate] = STATE(1757), - [sym__immediate_decimal] = STATE(1477), - [sym_val_variable] = STATE(1757), + [sym_match_arm] = STATE(7305), + [sym_default_arm] = STATE(7305), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [aux_sym_cmd_identifier_token38] = ACTIONS(1551), - [aux_sym_cmd_identifier_token39] = ACTIONS(1551), - [aux_sym_cmd_identifier_token40] = ACTIONS(1551), - [sym__newline] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_err_GT_PIPE] = ACTIONS(1551), - [anon_sym_out_GT_PIPE] = ACTIONS(1551), - [anon_sym_e_GT_PIPE] = ACTIONS(1551), - [anon_sym_o_GT_PIPE] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [aux_sym_ctrl_match_token1] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), - [anon_sym_DOT_DOT_LT] = ACTIONS(1551), - [aux_sym__immediate_decimal_token1] = ACTIONS(3938), - [aux_sym__immediate_decimal_token3] = ACTIONS(3940), - [aux_sym__immediate_decimal_token4] = ACTIONS(3942), - [aux_sym__immediate_decimal_token5] = ACTIONS(3944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1549), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_decimal_token4] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1551), - [aux_sym__val_number_token2] = ACTIONS(1551), - [aux_sym__val_number_token3] = ACTIONS(1551), - [anon_sym_0b] = ACTIONS(1549), - [anon_sym_0o] = ACTIONS(1549), - [anon_sym_0x] = ACTIONS(1549), - [sym_val_date] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym__str_single_quotes] = ACTIONS(1551), - [sym__str_back_ticks] = ACTIONS(1551), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), - [anon_sym_err_GT] = ACTIONS(1549), - [anon_sym_out_GT] = ACTIONS(1549), - [anon_sym_e_GT] = ACTIONS(1549), - [anon_sym_o_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT] = ACTIONS(1549), - [anon_sym_err_GT_GT] = ACTIONS(1551), - [anon_sym_out_GT_GT] = ACTIONS(1551), - [anon_sym_e_GT_GT] = ACTIONS(1551), - [anon_sym_o_GT_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), - [aux_sym_unquoted_token1] = ACTIONS(1549), - [aux_sym_unquoted_token2] = ACTIONS(1553), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3751), + [anon_sym_false] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3754), + [aux_sym_cmd_identifier_token38] = ACTIONS(3757), + [aux_sym_cmd_identifier_token39] = ACTIONS(3757), + [aux_sym_cmd_identifier_token40] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3763), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym__] = ACTIONS(3772), + [anon_sym_DOT_DOT] = ACTIONS(3775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3778), + [anon_sym_DOT_DOT_LT] = ACTIONS(3778), + [aux_sym__val_number_decimal_token1] = ACTIONS(3781), + [aux_sym__val_number_decimal_token2] = ACTIONS(3784), + [aux_sym__val_number_decimal_token3] = ACTIONS(3787), + [aux_sym__val_number_decimal_token4] = ACTIONS(3790), + [aux_sym__val_number_token1] = ACTIONS(3793), + [aux_sym__val_number_token2] = ACTIONS(3793), + [aux_sym__val_number_token3] = ACTIONS(3793), + [anon_sym_0b] = ACTIONS(3796), + [anon_sym_0o] = ACTIONS(3799), + [anon_sym_0x] = ACTIONS(3799), + [sym_val_date] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3805), + [sym__str_single_quotes] = ACTIONS(3808), + [sym__str_back_ticks] = ACTIONS(3808), + [anon_sym_err_GT] = ACTIONS(3811), + [anon_sym_out_GT] = ACTIONS(3811), + [anon_sym_e_GT] = ACTIONS(3811), + [anon_sym_o_GT] = ACTIONS(3811), + [anon_sym_err_PLUSout_GT] = ACTIONS(3811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3811), + [anon_sym_o_PLUSe_GT] = ACTIONS(3811), + [anon_sym_e_PLUSo_GT] = ACTIONS(3811), + [anon_sym_err_GT_GT] = ACTIONS(3814), + [anon_sym_out_GT_GT] = ACTIONS(3814), + [anon_sym_e_GT_GT] = ACTIONS(3814), + [anon_sym_o_GT_GT] = ACTIONS(3814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3814), + [aux_sym_unquoted_token1] = ACTIONS(3817), [anon_sym_POUND] = ACTIONS(247), }, [1064] = { + [sym_match_arm] = STATE(6757), + [sym_default_arm] = STATE(6757), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1064), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(3946), - [aux_sym__immediate_decimal_token2] = ACTIONS(3948), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), [anon_sym_POUND] = ACTIONS(247), }, [1065] = { - [sym_path] = STATE(1206), + [sym_env_var] = STATE(7165), [sym_comment] = STATE(1065), - [aux_sym_cell_path_repeat1] = STATE(1058), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [aux_sym_ctrl_match_token1] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1019), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1019), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(3894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1065), + [aux_sym_cmd_identifier_token1] = ACTIONS(3581), + [aux_sym_cmd_identifier_token2] = ACTIONS(3820), + [aux_sym_cmd_identifier_token3] = ACTIONS(3820), + [aux_sym_cmd_identifier_token4] = ACTIONS(3820), + [aux_sym_cmd_identifier_token5] = ACTIONS(3820), + [aux_sym_cmd_identifier_token6] = ACTIONS(3820), + [aux_sym_cmd_identifier_token7] = ACTIONS(3820), + [aux_sym_cmd_identifier_token8] = ACTIONS(3820), + [aux_sym_cmd_identifier_token9] = ACTIONS(3581), + [aux_sym_cmd_identifier_token10] = ACTIONS(3820), + [aux_sym_cmd_identifier_token11] = ACTIONS(3820), + [aux_sym_cmd_identifier_token12] = ACTIONS(3820), + [aux_sym_cmd_identifier_token13] = ACTIONS(3581), + [aux_sym_cmd_identifier_token14] = ACTIONS(3820), + [aux_sym_cmd_identifier_token15] = ACTIONS(3581), + [aux_sym_cmd_identifier_token16] = ACTIONS(3820), + [aux_sym_cmd_identifier_token17] = ACTIONS(3820), + [aux_sym_cmd_identifier_token18] = ACTIONS(3820), + [aux_sym_cmd_identifier_token19] = ACTIONS(3820), + [aux_sym_cmd_identifier_token20] = ACTIONS(3820), + [aux_sym_cmd_identifier_token21] = ACTIONS(3820), + [aux_sym_cmd_identifier_token22] = ACTIONS(3820), + [aux_sym_cmd_identifier_token23] = ACTIONS(3820), + [aux_sym_cmd_identifier_token24] = ACTIONS(3820), + [aux_sym_cmd_identifier_token25] = ACTIONS(3820), + [aux_sym_cmd_identifier_token26] = ACTIONS(3820), + [aux_sym_cmd_identifier_token27] = ACTIONS(3820), + [aux_sym_cmd_identifier_token28] = ACTIONS(3820), + [aux_sym_cmd_identifier_token29] = ACTIONS(3820), + [aux_sym_cmd_identifier_token30] = ACTIONS(3820), + [aux_sym_cmd_identifier_token31] = ACTIONS(3820), + [aux_sym_cmd_identifier_token32] = ACTIONS(3820), + [aux_sym_cmd_identifier_token33] = ACTIONS(3820), + [aux_sym_cmd_identifier_token34] = ACTIONS(3820), + [aux_sym_cmd_identifier_token35] = ACTIONS(3820), + [aux_sym_cmd_identifier_token36] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3820), + [anon_sym_false] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [aux_sym_cmd_identifier_token38] = ACTIONS(3581), + [aux_sym_cmd_identifier_token39] = ACTIONS(3820), + [aux_sym_cmd_identifier_token40] = ACTIONS(3820), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3820), + [anon_sym_DOT_DOT] = ACTIONS(3581), + [aux_sym_expr_unary_token1] = ACTIONS(3820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3820), + [anon_sym_DOT_DOT_LT] = ACTIONS(3820), + [aux_sym__val_number_decimal_token1] = ACTIONS(3581), + [aux_sym__val_number_decimal_token2] = ACTIONS(3820), + [aux_sym__val_number_decimal_token3] = ACTIONS(3820), + [aux_sym__val_number_decimal_token4] = ACTIONS(3820), + [aux_sym__val_number_token1] = ACTIONS(3820), + [aux_sym__val_number_token2] = ACTIONS(3820), + [aux_sym__val_number_token3] = ACTIONS(3820), + [anon_sym_0b] = ACTIONS(3581), + [anon_sym_0o] = ACTIONS(3581), + [anon_sym_0x] = ACTIONS(3581), + [sym_val_date] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [sym__str_single_quotes] = ACTIONS(3820), + [sym__str_back_ticks] = ACTIONS(3820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [aux_sym_env_var_token1] = ACTIONS(3822), + [anon_sym_CARET] = ACTIONS(3820), [anon_sym_POUND] = ACTIONS(247), }, [1066] = { - [sym__expr_parenthesized_immediate] = STATE(1593), - [sym__immediate_decimal] = STATE(1594), - [sym_val_variable] = STATE(1593), + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_rest] = STATE(7698), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2884), + [sym_val_range] = STATE(3093), + [sym__val_range] = STATE(7378), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(3015), + [sym_val_variable] = STATE(2885), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2627), + [sym__val_number] = STATE(3088), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__str_double_quotes] = STATE(3056), + [sym_val_list] = STATE(7644), + [sym_val_table] = STATE(3096), + [sym__unquoted_in_list] = STATE(3060), + [sym__unquoted_anonymous_prefix] = STATE(7454), [sym_comment] = STATE(1066), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [aux_sym_cmd_identifier_token38] = ACTIONS(1623), - [aux_sym_cmd_identifier_token39] = ACTIONS(1623), - [aux_sym_cmd_identifier_token40] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [aux_sym_ctrl_match_token1] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(3884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3926), - [aux_sym__immediate_decimal_token3] = ACTIONS(3928), - [aux_sym__immediate_decimal_token4] = ACTIONS(3930), - [aux_sym__immediate_decimal_token5] = ACTIONS(3932), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1621), - [aux_sym__val_number_decimal_token3] = ACTIONS(1621), - [aux_sym__val_number_decimal_token4] = ACTIONS(1621), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), + [aux_sym_shebang_repeat1] = STATE(6585), + [aux_sym__match_pattern_list_repeat1] = STATE(1147), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3701), + [aux_sym_cmd_identifier_token38] = ACTIONS(3703), + [aux_sym_cmd_identifier_token39] = ACTIONS(3703), + [aux_sym_cmd_identifier_token40] = ACTIONS(3703), + [sym__newline] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_RBRACK] = ACTIONS(3825), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_DOT_DOT] = ACTIONS(3827), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), + [anon_sym_DOT_DOT_LT] = ACTIONS(3719), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3723), + [aux_sym__val_number_decimal_token3] = ACTIONS(3725), + [aux_sym__val_number_decimal_token4] = ACTIONS(3727), + [aux_sym__val_number_token1] = ACTIONS(3729), + [aux_sym__val_number_token2] = ACTIONS(3729), + [aux_sym__val_number_token3] = ACTIONS(3729), + [anon_sym_0b] = ACTIONS(3731), + [anon_sym_0o] = ACTIONS(3733), + [anon_sym_0x] = ACTIONS(3733), + [sym_val_date] = ACTIONS(3735), + [anon_sym_DQUOTE] = ACTIONS(3737), + [sym__str_single_quotes] = ACTIONS(3739), + [sym__str_back_ticks] = ACTIONS(3739), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(247), }, [1067] = { - [sym_cell_path] = STATE(1240), - [sym_path] = STATE(1238), [sym_comment] = STATE(1067), - [aux_sym_cell_path_repeat1] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(1013), + [aux_sym_pipe_element_repeat1] = STATE(1067), + [aux_sym_cmd_identifier_token1] = ACTIONS(3829), + [aux_sym_cmd_identifier_token2] = ACTIONS(3829), + [aux_sym_cmd_identifier_token3] = ACTIONS(3829), + [aux_sym_cmd_identifier_token4] = ACTIONS(3829), + [aux_sym_cmd_identifier_token5] = ACTIONS(3829), + [aux_sym_cmd_identifier_token6] = ACTIONS(3829), + [aux_sym_cmd_identifier_token7] = ACTIONS(3829), + [aux_sym_cmd_identifier_token8] = ACTIONS(3829), + [aux_sym_cmd_identifier_token9] = ACTIONS(3829), + [aux_sym_cmd_identifier_token10] = ACTIONS(3829), + [aux_sym_cmd_identifier_token11] = ACTIONS(3829), + [aux_sym_cmd_identifier_token12] = ACTIONS(3829), + [aux_sym_cmd_identifier_token13] = ACTIONS(3829), + [aux_sym_cmd_identifier_token14] = ACTIONS(3829), + [aux_sym_cmd_identifier_token15] = ACTIONS(3829), + [aux_sym_cmd_identifier_token16] = ACTIONS(3829), + [aux_sym_cmd_identifier_token17] = ACTIONS(3829), + [aux_sym_cmd_identifier_token18] = ACTIONS(3829), + [aux_sym_cmd_identifier_token19] = ACTIONS(3829), + [aux_sym_cmd_identifier_token20] = ACTIONS(3829), + [aux_sym_cmd_identifier_token21] = ACTIONS(3829), + [aux_sym_cmd_identifier_token22] = ACTIONS(3829), + [aux_sym_cmd_identifier_token23] = ACTIONS(3829), + [aux_sym_cmd_identifier_token24] = ACTIONS(3829), + [aux_sym_cmd_identifier_token25] = ACTIONS(3829), + [aux_sym_cmd_identifier_token26] = ACTIONS(3829), + [aux_sym_cmd_identifier_token27] = ACTIONS(3829), + [aux_sym_cmd_identifier_token28] = ACTIONS(3829), + [aux_sym_cmd_identifier_token29] = ACTIONS(3829), + [aux_sym_cmd_identifier_token30] = ACTIONS(3829), + [aux_sym_cmd_identifier_token31] = ACTIONS(3829), + [aux_sym_cmd_identifier_token32] = ACTIONS(3829), + [aux_sym_cmd_identifier_token33] = ACTIONS(3829), + [aux_sym_cmd_identifier_token34] = ACTIONS(3829), + [aux_sym_cmd_identifier_token35] = ACTIONS(3829), + [aux_sym_cmd_identifier_token36] = ACTIONS(3829), + [anon_sym_true] = ACTIONS(3829), + [anon_sym_false] = ACTIONS(3829), + [anon_sym_null] = ACTIONS(3829), + [aux_sym_cmd_identifier_token38] = ACTIONS(3829), + [aux_sym_cmd_identifier_token39] = ACTIONS(3829), + [aux_sym_cmd_identifier_token40] = ACTIONS(3829), + [sym__space] = ACTIONS(3831), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_DOT_DOT] = ACTIONS(3829), + [aux_sym_expr_unary_token1] = ACTIONS(3829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3829), + [anon_sym_DOT_DOT_LT] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3829), + [aux_sym__val_number_decimal_token2] = ACTIONS(3829), + [aux_sym__val_number_decimal_token3] = ACTIONS(3829), + [aux_sym__val_number_decimal_token4] = ACTIONS(3829), + [aux_sym__val_number_token1] = ACTIONS(3829), + [aux_sym__val_number_token2] = ACTIONS(3829), + [aux_sym__val_number_token3] = ACTIONS(3829), + [anon_sym_0b] = ACTIONS(3829), + [anon_sym_0o] = ACTIONS(3829), + [anon_sym_0x] = ACTIONS(3829), + [sym_val_date] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [sym__str_single_quotes] = ACTIONS(3829), + [sym__str_back_ticks] = ACTIONS(3829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [aux_sym_env_var_token1] = ACTIONS(3829), + [anon_sym_CARET] = ACTIONS(3829), + [anon_sym_POUND] = ACTIONS(3), + }, + [1068] = { + [sym__expr_parenthesized_immediate] = STATE(1354), + [sym__immediate_decimal] = STATE(1270), + [sym_val_variable] = STATE(1354), + [sym_comment] = STATE(1068), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1492), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(3834), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT] = ACTIONS(1492), + [aux_sym__immediate_decimal_token1] = ACTIONS(3838), + [aux_sym__immediate_decimal_token3] = ACTIONS(3840), + [aux_sym__immediate_decimal_token4] = ACTIONS(3842), + [aux_sym__immediate_decimal_token5] = ACTIONS(3844), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [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(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1478), + [aux_sym_unquoted_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [1069] = { + [sym_expr_parenthesized] = STATE(6448), + [sym_val_range] = STATE(7431), + [sym__val_range] = STATE(7681), + [sym__value] = STATE(7431), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(3559), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5629), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(7432), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1069), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(3850), + [anon_sym_DOLLAR] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(3856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), + [anon_sym_DOT_DOT_LT] = ACTIONS(3858), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_record_entry_token1] = ACTIONS(3229), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1070] = { + [sym_comment] = STATE(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(3866), + [aux_sym_cmd_identifier_token2] = ACTIONS(3866), + [aux_sym_cmd_identifier_token3] = ACTIONS(3866), + [aux_sym_cmd_identifier_token4] = ACTIONS(3866), + [aux_sym_cmd_identifier_token5] = ACTIONS(3866), + [aux_sym_cmd_identifier_token6] = ACTIONS(3866), + [aux_sym_cmd_identifier_token7] = ACTIONS(3866), + [aux_sym_cmd_identifier_token8] = ACTIONS(3866), + [aux_sym_cmd_identifier_token9] = ACTIONS(3866), + [aux_sym_cmd_identifier_token10] = ACTIONS(3866), + [aux_sym_cmd_identifier_token11] = ACTIONS(3866), + [aux_sym_cmd_identifier_token12] = ACTIONS(3866), + [aux_sym_cmd_identifier_token13] = ACTIONS(3866), + [aux_sym_cmd_identifier_token14] = ACTIONS(3866), + [aux_sym_cmd_identifier_token15] = ACTIONS(3866), + [aux_sym_cmd_identifier_token16] = ACTIONS(3866), + [aux_sym_cmd_identifier_token17] = ACTIONS(3866), + [aux_sym_cmd_identifier_token18] = ACTIONS(3866), + [aux_sym_cmd_identifier_token19] = ACTIONS(3866), + [aux_sym_cmd_identifier_token20] = ACTIONS(3866), + [aux_sym_cmd_identifier_token21] = ACTIONS(3866), + [aux_sym_cmd_identifier_token22] = ACTIONS(3866), + [aux_sym_cmd_identifier_token23] = ACTIONS(3866), + [aux_sym_cmd_identifier_token24] = ACTIONS(3866), + [aux_sym_cmd_identifier_token25] = ACTIONS(3866), + [aux_sym_cmd_identifier_token26] = ACTIONS(3866), + [aux_sym_cmd_identifier_token27] = ACTIONS(3866), + [aux_sym_cmd_identifier_token28] = ACTIONS(3866), + [aux_sym_cmd_identifier_token29] = ACTIONS(3866), + [aux_sym_cmd_identifier_token30] = ACTIONS(3866), + [aux_sym_cmd_identifier_token31] = ACTIONS(3866), + [aux_sym_cmd_identifier_token32] = ACTIONS(3866), + [aux_sym_cmd_identifier_token33] = ACTIONS(3866), + [aux_sym_cmd_identifier_token34] = ACTIONS(3866), + [aux_sym_cmd_identifier_token35] = ACTIONS(3866), + [aux_sym_cmd_identifier_token36] = ACTIONS(3866), + [anon_sym_true] = ACTIONS(3866), + [anon_sym_false] = ACTIONS(3866), + [anon_sym_null] = ACTIONS(3866), + [aux_sym_cmd_identifier_token38] = ACTIONS(3866), + [aux_sym_cmd_identifier_token39] = ACTIONS(3866), + [aux_sym_cmd_identifier_token40] = ACTIONS(3866), + [sym__newline] = ACTIONS(3866), + [sym__space] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3866), + [anon_sym_LPAREN] = ACTIONS(3866), + [anon_sym_DOLLAR] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_DOT_DOT] = ACTIONS(3866), + [aux_sym_expr_unary_token1] = ACTIONS(3866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), + [anon_sym_DOT_DOT_LT] = ACTIONS(3866), + [aux_sym__val_number_decimal_token1] = ACTIONS(3866), + [aux_sym__val_number_decimal_token2] = ACTIONS(3866), + [aux_sym__val_number_decimal_token3] = ACTIONS(3866), + [aux_sym__val_number_decimal_token4] = ACTIONS(3866), + [aux_sym__val_number_token1] = ACTIONS(3866), + [aux_sym__val_number_token2] = ACTIONS(3866), + [aux_sym__val_number_token3] = ACTIONS(3866), + [anon_sym_0b] = ACTIONS(3866), + [anon_sym_0o] = ACTIONS(3866), + [anon_sym_0x] = ACTIONS(3866), + [sym_val_date] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym__str_single_quotes] = ACTIONS(3866), + [sym__str_back_ticks] = ACTIONS(3866), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [aux_sym_env_var_token1] = ACTIONS(3866), + [anon_sym_CARET] = ACTIONS(3866), + [anon_sym_POUND] = ACTIONS(3), + }, + [1071] = { + [sym_expr_parenthesized] = STATE(6448), + [sym_val_range] = STATE(7431), + [sym__val_range] = STATE(7681), + [sym__value] = STATE(7431), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(3559), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5629), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(7432), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1071), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(3850), + [anon_sym_DOLLAR] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(3856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), + [anon_sym_DOT_DOT_LT] = ACTIONS(3858), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_record_entry_token1] = ACTIONS(3231), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1072] = { + [sym_match_arm] = STATE(6616), + [sym_default_arm] = STATE(6616), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_comment] = STATE(1072), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [1073] = { + [sym_match_arm] = STATE(6632), + [sym_default_arm] = STATE(6632), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_comment] = STATE(1073), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [1074] = { + [sym_match_arm] = STATE(6726), + [sym_default_arm] = STATE(6726), + [sym_match_pattern] = STATE(7650), + [sym__match_pattern] = STATE(5895), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7706), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(6086), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_comment] = STATE(1074), + [aux_sym_ctrl_match_repeat1] = STATE(1063), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_null] = ACTIONS(3535), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3551), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(247), + }, + [1075] = { + [sym_expr_parenthesized] = STATE(6254), + [sym_val_range] = STATE(7466), + [sym__val_range] = STATE(7681), + [sym__value] = STATE(7466), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(3559), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5629), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(7551), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1075), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(3850), + [anon_sym_DOLLAR] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(3856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), + [anon_sym_DOT_DOT_LT] = ACTIONS(3858), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1076] = { + [sym_comment] = STATE(1076), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(3870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(3872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [1077] = { + [sym_comment] = STATE(1077), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(3874), + [aux_sym__immediate_decimal_token2] = ACTIONS(3876), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(247), + }, + [1078] = { + [sym_path] = STATE(1135), + [sym_comment] = STATE(1078), + [aux_sym_cell_path_repeat1] = STATE(1079), [anon_sym_EQ] = ACTIONS(1011), [anon_sym_PLUS_EQ] = ACTIONS(1013), [anon_sym_DASH_EQ] = ACTIONS(1013), [anon_sym_STAR_EQ] = ACTIONS(1013), [anon_sym_SLASH_EQ] = ACTIONS(1013), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), + [sym__newline] = ACTIONS(1011), [anon_sym_SEMI] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1013), [anon_sym_err_GT_PIPE] = ACTIONS(1013), @@ -179493,6 +182940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), [aux_sym_expr_binary_token1] = ACTIONS(1013), [aux_sym_expr_binary_token2] = ACTIONS(1013), [aux_sym_expr_binary_token3] = ACTIONS(1013), @@ -179522,9 +182971,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token27] = ACTIONS(1013), [aux_sym_expr_binary_token28] = ACTIONS(1013), [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_DOT] = ACTIONS(3693), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [aux_sym_record_entry_token1] = ACTIONS(1013), [anon_sym_err_GT] = ACTIONS(1011), [anon_sym_out_GT] = ACTIONS(1011), [anon_sym_e_GT] = ACTIONS(1011), @@ -179543,81 +182993,967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), [anon_sym_POUND] = ACTIONS(247), }, - [1068] = { - [sym_comment] = STATE(1068), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(3902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [1079] = { + [sym_path] = STATE(1135), + [sym_comment] = STATE(1079), + [aux_sym_cell_path_repeat1] = STATE(1079), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), + [sym__newline] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [aux_sym_expr_binary_token1] = ACTIONS(1017), + [aux_sym_expr_binary_token2] = ACTIONS(1017), + [aux_sym_expr_binary_token3] = ACTIONS(1017), + [aux_sym_expr_binary_token4] = ACTIONS(1017), + [aux_sym_expr_binary_token5] = ACTIONS(1017), + [aux_sym_expr_binary_token6] = ACTIONS(1017), + [aux_sym_expr_binary_token7] = ACTIONS(1017), + [aux_sym_expr_binary_token8] = ACTIONS(1017), + [aux_sym_expr_binary_token9] = ACTIONS(1017), + [aux_sym_expr_binary_token10] = ACTIONS(1017), + [aux_sym_expr_binary_token11] = ACTIONS(1017), + [aux_sym_expr_binary_token12] = ACTIONS(1017), + [aux_sym_expr_binary_token13] = ACTIONS(1017), + [aux_sym_expr_binary_token14] = ACTIONS(1017), + [aux_sym_expr_binary_token15] = ACTIONS(1017), + [aux_sym_expr_binary_token16] = ACTIONS(1017), + [aux_sym_expr_binary_token17] = ACTIONS(1017), + [aux_sym_expr_binary_token18] = ACTIONS(1017), + [aux_sym_expr_binary_token19] = ACTIONS(1017), + [aux_sym_expr_binary_token20] = ACTIONS(1017), + [aux_sym_expr_binary_token21] = ACTIONS(1017), + [aux_sym_expr_binary_token22] = ACTIONS(1017), + [aux_sym_expr_binary_token23] = ACTIONS(1017), + [aux_sym_expr_binary_token24] = ACTIONS(1017), + [aux_sym_expr_binary_token25] = ACTIONS(1017), + [aux_sym_expr_binary_token26] = ACTIONS(1017), + [aux_sym_expr_binary_token27] = ACTIONS(1017), + [aux_sym_expr_binary_token28] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [aux_sym_record_entry_token1] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, - [1069] = { - [sym_comment] = STATE(1069), + [1080] = { + [sym__expr_parenthesized_immediate] = STATE(1788), + [sym__immediate_decimal] = STATE(1456), + [sym_val_variable] = STATE(1788), + [sym_comment] = STATE(1080), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1492), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT] = ACTIONS(1492), + [aux_sym__immediate_decimal_token1] = ACTIONS(3885), + [aux_sym__immediate_decimal_token3] = ACTIONS(3887), + [aux_sym__immediate_decimal_token4] = ACTIONS(3889), + [aux_sym__immediate_decimal_token5] = ACTIONS(3891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [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(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1478), + [aux_sym_unquoted_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [1081] = { + [sym__expr_parenthesized_immediate] = STATE(1582), + [sym__immediate_decimal] = STATE(1423), + [sym_val_variable] = STATE(1582), + [sym_comment] = STATE(1081), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [anon_sym_null] = ACTIONS(1550), + [aux_sym_cmd_identifier_token38] = ACTIONS(1550), + [aux_sym_cmd_identifier_token39] = ACTIONS(1550), + [aux_sym_cmd_identifier_token40] = ACTIONS(1550), + [sym__newline] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_err_GT_PIPE] = ACTIONS(1550), + [anon_sym_out_GT_PIPE] = ACTIONS(1550), + [anon_sym_e_GT_PIPE] = ACTIONS(1550), + [anon_sym_o_GT_PIPE] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), + [anon_sym_DOT_DOT_LT] = ACTIONS(1550), + [aux_sym__immediate_decimal_token1] = ACTIONS(3885), + [aux_sym__immediate_decimal_token3] = ACTIONS(3887), + [aux_sym__immediate_decimal_token4] = ACTIONS(3889), + [aux_sym__immediate_decimal_token5] = ACTIONS(3891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1548), + [aux_sym__val_number_decimal_token2] = ACTIONS(1548), + [aux_sym__val_number_decimal_token3] = ACTIONS(1548), + [aux_sym__val_number_decimal_token4] = ACTIONS(1548), + [aux_sym__val_number_token1] = ACTIONS(1550), + [aux_sym__val_number_token2] = ACTIONS(1550), + [aux_sym__val_number_token3] = ACTIONS(1550), + [anon_sym_0b] = ACTIONS(1548), + [anon_sym_0o] = ACTIONS(1548), + [anon_sym_0x] = ACTIONS(1548), + [sym_val_date] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym__str_single_quotes] = ACTIONS(1550), + [sym__str_back_ticks] = ACTIONS(1550), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1548), + [anon_sym_out_GT] = ACTIONS(1548), + [anon_sym_e_GT] = ACTIONS(1548), + [anon_sym_o_GT] = ACTIONS(1548), + [anon_sym_err_PLUSout_GT] = ACTIONS(1548), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1548), + [anon_sym_o_PLUSe_GT] = ACTIONS(1548), + [anon_sym_e_PLUSo_GT] = ACTIONS(1548), + [anon_sym_err_GT_GT] = ACTIONS(1550), + [anon_sym_out_GT_GT] = ACTIONS(1550), + [anon_sym_e_GT_GT] = ACTIONS(1550), + [anon_sym_o_GT_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [aux_sym_unquoted_token1] = ACTIONS(1548), + [aux_sym_unquoted_token2] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(247), + }, + [1082] = { + [sym__expr_parenthesized_immediate] = STATE(1491), + [sym__immediate_decimal] = STATE(1304), + [sym_val_variable] = STATE(1491), + [sym_comment] = STATE(1082), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1492), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT] = ACTIONS(1492), + [aux_sym__immediate_decimal_token1] = ACTIONS(3897), + [aux_sym__immediate_decimal_token3] = ACTIONS(3899), + [aux_sym__immediate_decimal_token4] = ACTIONS(3901), + [aux_sym__immediate_decimal_token5] = ACTIONS(3903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [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(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1478), + [aux_sym_unquoted_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [1083] = { + [sym_comment] = STATE(1083), + [aux_sym_cmd_identifier_token1] = ACTIONS(1311), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1311), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1311), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1311), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1311), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_null] = ACTIONS(1307), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1307), + [aux_sym_cmd_identifier_token40] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [aux_sym_expr_unary_token1] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1307), + [aux_sym__val_number_decimal_token3] = ACTIONS(1307), + [aux_sym__val_number_decimal_token4] = ACTIONS(1307), + [aux_sym__val_number_token1] = ACTIONS(1307), + [aux_sym__val_number_token2] = ACTIONS(1307), + [aux_sym__val_number_token3] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1311), + [anon_sym_0o] = ACTIONS(1311), + [anon_sym_0x] = ACTIONS(1311), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1084] = { + [sym_cell_path] = STATE(1257), + [sym_path] = STATE(1219), + [sym_comment] = STATE(1084), + [aux_sym_cell_path_repeat1] = STATE(1110), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), + [sym__newline] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [aux_sym_expr_binary_token1] = ACTIONS(1007), + [aux_sym_expr_binary_token2] = ACTIONS(1007), + [aux_sym_expr_binary_token3] = ACTIONS(1007), + [aux_sym_expr_binary_token4] = ACTIONS(1007), + [aux_sym_expr_binary_token5] = ACTIONS(1007), + [aux_sym_expr_binary_token6] = ACTIONS(1007), + [aux_sym_expr_binary_token7] = ACTIONS(1007), + [aux_sym_expr_binary_token8] = ACTIONS(1007), + [aux_sym_expr_binary_token9] = ACTIONS(1007), + [aux_sym_expr_binary_token10] = ACTIONS(1007), + [aux_sym_expr_binary_token11] = ACTIONS(1007), + [aux_sym_expr_binary_token12] = ACTIONS(1007), + [aux_sym_expr_binary_token13] = ACTIONS(1007), + [aux_sym_expr_binary_token14] = ACTIONS(1007), + [aux_sym_expr_binary_token15] = ACTIONS(1007), + [aux_sym_expr_binary_token16] = ACTIONS(1007), + [aux_sym_expr_binary_token17] = ACTIONS(1007), + [aux_sym_expr_binary_token18] = ACTIONS(1007), + [aux_sym_expr_binary_token19] = ACTIONS(1007), + [aux_sym_expr_binary_token20] = ACTIONS(1007), + [aux_sym_expr_binary_token21] = ACTIONS(1007), + [aux_sym_expr_binary_token22] = ACTIONS(1007), + [aux_sym_expr_binary_token23] = ACTIONS(1007), + [aux_sym_expr_binary_token24] = ACTIONS(1007), + [aux_sym_expr_binary_token25] = ACTIONS(1007), + [aux_sym_expr_binary_token26] = ACTIONS(1007), + [aux_sym_expr_binary_token27] = ACTIONS(1007), + [aux_sym_expr_binary_token28] = ACTIONS(1007), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(247), + }, + [1085] = { + [sym__expr_parenthesized_immediate] = STATE(1352), + [sym__immediate_decimal] = STATE(1353), + [sym_val_variable] = STATE(1352), + [sym_comment] = STATE(1085), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(3834), + [anon_sym_DOT] = ACTIONS(3907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3909), + [aux_sym__immediate_decimal_token3] = ACTIONS(3911), + [aux_sym__immediate_decimal_token4] = ACTIONS(3913), + [aux_sym__immediate_decimal_token5] = ACTIONS(3915), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [aux_sym_unquoted_token1] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(247), + }, + [1086] = { + [sym_cell_path] = STATE(1254), + [sym_path] = STATE(1212), + [sym_comment] = STATE(1086), + [aux_sym_cell_path_repeat1] = STATE(1099), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), + [sym__newline] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1007), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1007), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(247), + }, + [1087] = { + [sym_expr_parenthesized] = STATE(6448), + [sym_val_range] = STATE(7431), + [sym__val_range] = STATE(7681), + [sym__value] = STATE(7431), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(3559), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5629), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(7432), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1087), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(3850), + [anon_sym_DOLLAR] = ACTIONS(3852), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(3856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), + [anon_sym_DOT_DOT_LT] = ACTIONS(3858), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1088] = { + [sym_comment] = STATE(1088), + [aux_sym_cmd_identifier_token1] = ACTIONS(3919), + [aux_sym_cmd_identifier_token2] = ACTIONS(3919), + [aux_sym_cmd_identifier_token3] = ACTIONS(3919), + [aux_sym_cmd_identifier_token4] = ACTIONS(3919), + [aux_sym_cmd_identifier_token5] = ACTIONS(3919), + [aux_sym_cmd_identifier_token6] = ACTIONS(3919), + [aux_sym_cmd_identifier_token7] = ACTIONS(3919), + [aux_sym_cmd_identifier_token8] = ACTIONS(3919), + [aux_sym_cmd_identifier_token9] = ACTIONS(3919), + [aux_sym_cmd_identifier_token10] = ACTIONS(3919), + [aux_sym_cmd_identifier_token11] = ACTIONS(3919), + [aux_sym_cmd_identifier_token12] = ACTIONS(3919), + [aux_sym_cmd_identifier_token13] = ACTIONS(3919), + [aux_sym_cmd_identifier_token14] = ACTIONS(3919), + [aux_sym_cmd_identifier_token15] = ACTIONS(3919), + [aux_sym_cmd_identifier_token16] = ACTIONS(3919), + [aux_sym_cmd_identifier_token17] = ACTIONS(3919), + [aux_sym_cmd_identifier_token18] = ACTIONS(3919), + [aux_sym_cmd_identifier_token19] = ACTIONS(3919), + [aux_sym_cmd_identifier_token20] = ACTIONS(3919), + [aux_sym_cmd_identifier_token21] = ACTIONS(3919), + [aux_sym_cmd_identifier_token22] = ACTIONS(3919), + [aux_sym_cmd_identifier_token23] = ACTIONS(3919), + [aux_sym_cmd_identifier_token24] = ACTIONS(3919), + [aux_sym_cmd_identifier_token25] = ACTIONS(3919), + [aux_sym_cmd_identifier_token26] = ACTIONS(3919), + [aux_sym_cmd_identifier_token27] = ACTIONS(3919), + [aux_sym_cmd_identifier_token28] = ACTIONS(3919), + [aux_sym_cmd_identifier_token29] = ACTIONS(3919), + [aux_sym_cmd_identifier_token30] = ACTIONS(3919), + [aux_sym_cmd_identifier_token31] = ACTIONS(3919), + [aux_sym_cmd_identifier_token32] = ACTIONS(3919), + [aux_sym_cmd_identifier_token33] = ACTIONS(3919), + [aux_sym_cmd_identifier_token34] = ACTIONS(3919), + [aux_sym_cmd_identifier_token35] = ACTIONS(3919), + [aux_sym_cmd_identifier_token36] = ACTIONS(3919), + [anon_sym_true] = ACTIONS(3919), + [anon_sym_false] = ACTIONS(3919), + [anon_sym_null] = ACTIONS(3919), + [aux_sym_cmd_identifier_token38] = ACTIONS(3919), + [aux_sym_cmd_identifier_token39] = ACTIONS(3919), + [aux_sym_cmd_identifier_token40] = ACTIONS(3919), + [sym__space] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3919), + [anon_sym_LPAREN] = ACTIONS(3919), + [anon_sym_DOLLAR] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3919), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_DOT_DOT] = ACTIONS(3919), + [aux_sym_expr_unary_token1] = ACTIONS(3919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3919), + [anon_sym_DOT_DOT_LT] = ACTIONS(3919), + [aux_sym__val_number_decimal_token1] = ACTIONS(3919), + [aux_sym__val_number_decimal_token2] = ACTIONS(3919), + [aux_sym__val_number_decimal_token3] = ACTIONS(3919), + [aux_sym__val_number_decimal_token4] = ACTIONS(3919), + [aux_sym__val_number_token1] = ACTIONS(3919), + [aux_sym__val_number_token2] = ACTIONS(3919), + [aux_sym__val_number_token3] = ACTIONS(3919), + [anon_sym_0b] = ACTIONS(3919), + [anon_sym_0o] = ACTIONS(3919), + [anon_sym_0x] = ACTIONS(3919), + [sym_val_date] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym__str_single_quotes] = ACTIONS(3919), + [sym__str_back_ticks] = ACTIONS(3919), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3919), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3919), + [aux_sym_env_var_token1] = ACTIONS(3919), + [anon_sym_CARET] = ACTIONS(3919), + [anon_sym_POUND] = ACTIONS(3), + }, + [1089] = { + [sym__expr_parenthesized_immediate] = STATE(1889), + [sym__immediate_decimal] = STATE(1569), + [sym_val_variable] = STATE(1889), + [sym_comment] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1492), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT] = ACTIONS(1492), + [aux_sym__immediate_decimal_token1] = ACTIONS(3927), + [aux_sym__immediate_decimal_token3] = ACTIONS(3929), + [aux_sym__immediate_decimal_token4] = ACTIONS(3931), + [aux_sym__immediate_decimal_token5] = ACTIONS(3933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1478), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1478), + [anon_sym_0o] = ACTIONS(1478), + [anon_sym_0x] = ACTIONS(1478), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [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(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1478), + [aux_sym_unquoted_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [1090] = { + [sym__expr_parenthesized_immediate] = STATE(1576), + [sym__immediate_decimal] = STATE(1577), + [sym_val_variable] = STATE(1576), + [sym_comment] = STATE(1090), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [anon_sym_null] = ACTIONS(1604), + [aux_sym_cmd_identifier_token38] = ACTIONS(1604), + [aux_sym_cmd_identifier_token39] = ACTIONS(1604), + [aux_sym_cmd_identifier_token40] = ACTIONS(1604), + [sym__newline] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_err_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_GT_PIPE] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1604), + [anon_sym_DOT_DOT_LT] = ACTIONS(1604), + [aux_sym__immediate_decimal_token1] = ACTIONS(3935), + [aux_sym__immediate_decimal_token3] = ACTIONS(3937), + [aux_sym__immediate_decimal_token4] = ACTIONS(3939), + [aux_sym__immediate_decimal_token5] = ACTIONS(3941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1602), + [aux_sym__val_number_decimal_token2] = ACTIONS(1602), + [aux_sym__val_number_decimal_token3] = ACTIONS(1602), + [aux_sym__val_number_decimal_token4] = ACTIONS(1602), + [aux_sym__val_number_token1] = ACTIONS(1604), + [aux_sym__val_number_token2] = ACTIONS(1604), + [aux_sym__val_number_token3] = ACTIONS(1604), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0o] = ACTIONS(1602), + [anon_sym_0x] = ACTIONS(1602), + [sym_val_date] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [sym__str_single_quotes] = ACTIONS(1604), + [sym__str_back_ticks] = ACTIONS(1604), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1604), + [anon_sym_out_GT_GT] = ACTIONS(1604), + [anon_sym_e_GT_GT] = ACTIONS(1604), + [anon_sym_o_GT_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1604), + [aux_sym_unquoted_token1] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(247), + }, + [1091] = { + [sym_comment] = STATE(1091), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [sym__newline] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(247), + }, + [1092] = { + [sym_comment] = STATE(1092), [anon_sym_EQ] = ACTIONS(1034), [anon_sym_PLUS_EQ] = ACTIONS(1036), [anon_sym_DASH_EQ] = ACTIONS(1036), @@ -179635,9 +183971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(3952), + [anon_sym_QMARK2] = ACTIONS(1036), [aux_sym_expr_binary_token1] = ACTIONS(1036), [aux_sym_expr_binary_token2] = ACTIONS(1036), [aux_sym_expr_binary_token3] = ACTIONS(1036), @@ -179689,227 +184025,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, - [1070] = { - [sym_path] = STATE(1205), - [sym_comment] = STATE(1070), - [aux_sym_cell_path_repeat1] = STATE(1070), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(3954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(247), - }, - [1071] = { - [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(3957), - [aux_sym__immediate_decimal_token2] = ACTIONS(3959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [1093] = { + [sym_comment] = STATE(1093), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [sym__newline] = ACTIONS(1022), + [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_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(3943), + [aux_sym_expr_binary_token1] = ACTIONS(1024), + [aux_sym_expr_binary_token2] = ACTIONS(1024), + [aux_sym_expr_binary_token3] = ACTIONS(1024), + [aux_sym_expr_binary_token4] = ACTIONS(1024), + [aux_sym_expr_binary_token5] = ACTIONS(1024), + [aux_sym_expr_binary_token6] = ACTIONS(1024), + [aux_sym_expr_binary_token7] = ACTIONS(1024), + [aux_sym_expr_binary_token8] = ACTIONS(1024), + [aux_sym_expr_binary_token9] = ACTIONS(1024), + [aux_sym_expr_binary_token10] = ACTIONS(1024), + [aux_sym_expr_binary_token11] = ACTIONS(1024), + [aux_sym_expr_binary_token12] = ACTIONS(1024), + [aux_sym_expr_binary_token13] = ACTIONS(1024), + [aux_sym_expr_binary_token14] = ACTIONS(1024), + [aux_sym_expr_binary_token15] = ACTIONS(1024), + [aux_sym_expr_binary_token16] = ACTIONS(1024), + [aux_sym_expr_binary_token17] = ACTIONS(1024), + [aux_sym_expr_binary_token18] = ACTIONS(1024), + [aux_sym_expr_binary_token19] = ACTIONS(1024), + [aux_sym_expr_binary_token20] = ACTIONS(1024), + [aux_sym_expr_binary_token21] = ACTIONS(1024), + [aux_sym_expr_binary_token22] = ACTIONS(1024), + [aux_sym_expr_binary_token23] = ACTIONS(1024), + [aux_sym_expr_binary_token24] = ACTIONS(1024), + [aux_sym_expr_binary_token25] = ACTIONS(1024), + [aux_sym_expr_binary_token26] = ACTIONS(1024), + [aux_sym_expr_binary_token27] = ACTIONS(1024), + [aux_sym_expr_binary_token28] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [aux_sym_record_entry_token1] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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(247), }, - [1072] = { - [sym_comment] = STATE(1072), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(3961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(3963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [1094] = { + [sym__expr_parenthesized_immediate] = STATE(1505), + [sym__immediate_decimal] = STATE(1453), + [sym_val_variable] = STATE(1505), + [sym_comment] = STATE(1094), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3947), + [aux_sym__immediate_decimal_token3] = ACTIONS(3949), + [aux_sym__immediate_decimal_token4] = ACTIONS(3951), + [aux_sym__immediate_decimal_token5] = ACTIONS(3953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [aux_sym_unquoted_token1] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(247), }, - [1073] = { - [sym_comment] = STATE(1073), + [1095] = { + [sym_comment] = STATE(1095), [anon_sym_EQ] = ACTIONS(1028), [anon_sym_PLUS_EQ] = ACTIONS(1030), [anon_sym_DASH_EQ] = ACTIONS(1030), @@ -179927,9 +184190,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(3965), + [anon_sym_QMARK2] = ACTIONS(3955), [aux_sym_expr_binary_token1] = ACTIONS(1030), [aux_sym_expr_binary_token2] = ACTIONS(1030), [aux_sym_expr_binary_token3] = ACTIONS(1030), @@ -179981,2688 +184244,1038 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, - [1074] = { - [sym_path] = STATE(1205), - [sym_comment] = STATE(1074), - [aux_sym_cell_path_repeat1] = STATE(1070), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), - [sym__newline] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [aux_sym_expr_binary_token1] = ACTIONS(1019), - [aux_sym_expr_binary_token2] = ACTIONS(1019), - [aux_sym_expr_binary_token3] = ACTIONS(1019), - [aux_sym_expr_binary_token4] = ACTIONS(1019), - [aux_sym_expr_binary_token5] = ACTIONS(1019), - [aux_sym_expr_binary_token6] = ACTIONS(1019), - [aux_sym_expr_binary_token7] = ACTIONS(1019), - [aux_sym_expr_binary_token8] = ACTIONS(1019), - [aux_sym_expr_binary_token9] = ACTIONS(1019), - [aux_sym_expr_binary_token10] = ACTIONS(1019), - [aux_sym_expr_binary_token11] = ACTIONS(1019), - [aux_sym_expr_binary_token12] = ACTIONS(1019), - [aux_sym_expr_binary_token13] = ACTIONS(1019), - [aux_sym_expr_binary_token14] = ACTIONS(1019), - [aux_sym_expr_binary_token15] = ACTIONS(1019), - [aux_sym_expr_binary_token16] = ACTIONS(1019), - [aux_sym_expr_binary_token17] = ACTIONS(1019), - [aux_sym_expr_binary_token18] = ACTIONS(1019), - [aux_sym_expr_binary_token19] = ACTIONS(1019), - [aux_sym_expr_binary_token20] = ACTIONS(1019), - [aux_sym_expr_binary_token21] = ACTIONS(1019), - [aux_sym_expr_binary_token22] = ACTIONS(1019), - [aux_sym_expr_binary_token23] = ACTIONS(1019), - [aux_sym_expr_binary_token24] = ACTIONS(1019), - [aux_sym_expr_binary_token25] = ACTIONS(1019), - [aux_sym_expr_binary_token26] = ACTIONS(1019), - [aux_sym_expr_binary_token27] = ACTIONS(1019), - [aux_sym_expr_binary_token28] = ACTIONS(1019), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(3880), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(247), - }, - [1075] = { - [sym__expr_parenthesized_immediate] = STATE(1449), - [sym__immediate_decimal] = STATE(1465), - [sym_val_variable] = STATE(1449), - [sym_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [aux_sym_cmd_identifier_token38] = ACTIONS(1515), - [aux_sym_cmd_identifier_token39] = ACTIONS(1515), - [aux_sym_cmd_identifier_token40] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1505), - [aux_sym_ctrl_match_token1] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(3789), - [anon_sym_DOT] = ACTIONS(3967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [aux_sym__immediate_decimal_token1] = ACTIONS(3969), - [aux_sym__immediate_decimal_token3] = ACTIONS(3971), - [aux_sym__immediate_decimal_token4] = ACTIONS(3973), - [aux_sym__immediate_decimal_token5] = ACTIONS(3975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1505), - [anon_sym_out_GT] = ACTIONS(1505), - [anon_sym_e_GT] = ACTIONS(1505), - [anon_sym_o_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT] = ACTIONS(1505), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(247), - }, - [1076] = { - [sym_comment] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(3977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(3979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [1077] = { - [sym_comment] = STATE(1077), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(3981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(247), - }, - [1078] = { - [sym__expr_parenthesized_immediate] = STATE(1584), - [sym__immediate_decimal] = STATE(1585), - [sym_val_variable] = STATE(1584), - [sym_comment] = STATE(1078), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [aux_sym_cmd_identifier_token38] = ACTIONS(1515), - [aux_sym_cmd_identifier_token39] = ACTIONS(1515), - [aux_sym_cmd_identifier_token40] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1505), - [aux_sym_ctrl_match_token1] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(3884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [aux_sym__immediate_decimal_token1] = ACTIONS(3926), - [aux_sym__immediate_decimal_token3] = ACTIONS(3928), - [aux_sym__immediate_decimal_token4] = ACTIONS(3930), - [aux_sym__immediate_decimal_token5] = ACTIONS(3932), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1505), - [anon_sym_out_GT] = ACTIONS(1505), - [anon_sym_e_GT] = ACTIONS(1505), - [anon_sym_o_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT] = ACTIONS(1505), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(247), - }, - [1079] = { - [sym_comment] = STATE(1079), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_PLUS_EQ] = ACTIONS(1042), - [anon_sym_DASH_EQ] = ACTIONS(1042), - [anon_sym_STAR_EQ] = ACTIONS(1042), - [anon_sym_SLASH_EQ] = ACTIONS(1042), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), - [sym__newline] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [aux_sym_ctrl_match_token1] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), - [aux_sym_expr_binary_token1] = ACTIONS(1042), - [aux_sym_expr_binary_token2] = ACTIONS(1042), - [aux_sym_expr_binary_token3] = ACTIONS(1042), - [aux_sym_expr_binary_token4] = ACTIONS(1042), - [aux_sym_expr_binary_token5] = ACTIONS(1042), - [aux_sym_expr_binary_token6] = ACTIONS(1042), - [aux_sym_expr_binary_token7] = ACTIONS(1042), - [aux_sym_expr_binary_token8] = ACTIONS(1042), - [aux_sym_expr_binary_token9] = ACTIONS(1042), - [aux_sym_expr_binary_token10] = ACTIONS(1042), - [aux_sym_expr_binary_token11] = ACTIONS(1042), - [aux_sym_expr_binary_token12] = ACTIONS(1042), - [aux_sym_expr_binary_token13] = ACTIONS(1042), - [aux_sym_expr_binary_token14] = ACTIONS(1042), - [aux_sym_expr_binary_token15] = ACTIONS(1042), - [aux_sym_expr_binary_token16] = ACTIONS(1042), - [aux_sym_expr_binary_token17] = ACTIONS(1042), - [aux_sym_expr_binary_token18] = ACTIONS(1042), - [aux_sym_expr_binary_token19] = ACTIONS(1042), - [aux_sym_expr_binary_token20] = ACTIONS(1042), - [aux_sym_expr_binary_token21] = ACTIONS(1042), - [aux_sym_expr_binary_token22] = ACTIONS(1042), - [aux_sym_expr_binary_token23] = ACTIONS(1042), - [aux_sym_expr_binary_token24] = ACTIONS(1042), - [aux_sym_expr_binary_token25] = ACTIONS(1042), - [aux_sym_expr_binary_token26] = ACTIONS(1042), - [aux_sym_expr_binary_token27] = ACTIONS(1042), - [aux_sym_expr_binary_token28] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [aux_sym_record_entry_token1] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [1080] = { - [sym__expr_parenthesized_immediate] = STATE(1828), - [sym__immediate_decimal] = STATE(1527), - [sym_val_variable] = STATE(1828), - [sym_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_null] = ACTIONS(1493), - [aux_sym_cmd_identifier_token38] = ACTIONS(1493), - [aux_sym_cmd_identifier_token39] = ACTIONS(1493), - [aux_sym_cmd_identifier_token40] = ACTIONS(1493), - [sym__newline] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_err_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_GT_PIPE] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1479), - [aux_sym_ctrl_match_token1] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_DOT_DOT_LT] = ACTIONS(1493), - [aux_sym__immediate_decimal_token1] = ACTIONS(3938), - [aux_sym__immediate_decimal_token3] = ACTIONS(3940), - [aux_sym__immediate_decimal_token4] = ACTIONS(3942), - [aux_sym__immediate_decimal_token5] = ACTIONS(3944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1479), - [aux_sym__val_number_decimal_token2] = ACTIONS(1479), - [aux_sym__val_number_decimal_token3] = ACTIONS(1479), - [aux_sym__val_number_decimal_token4] = ACTIONS(1479), - [aux_sym__val_number_token1] = ACTIONS(1493), - [aux_sym__val_number_token2] = ACTIONS(1493), - [aux_sym__val_number_token3] = ACTIONS(1493), - [anon_sym_0b] = ACTIONS(1479), - [anon_sym_0o] = ACTIONS(1479), - [anon_sym_0x] = ACTIONS(1479), - [sym_val_date] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym__str_single_quotes] = ACTIONS(1493), - [sym__str_back_ticks] = ACTIONS(1493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), - [anon_sym_err_GT] = ACTIONS(1479), - [anon_sym_out_GT] = ACTIONS(1479), - [anon_sym_e_GT] = ACTIONS(1479), - [anon_sym_o_GT] = ACTIONS(1479), - [anon_sym_err_PLUSout_GT] = ACTIONS(1479), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), - [anon_sym_o_PLUSe_GT] = ACTIONS(1479), - [anon_sym_e_PLUSo_GT] = ACTIONS(1479), - [anon_sym_err_GT_GT] = ACTIONS(1493), - [anon_sym_out_GT_GT] = ACTIONS(1493), - [anon_sym_e_GT_GT] = ACTIONS(1493), - [anon_sym_o_GT_GT] = ACTIONS(1493), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), - [aux_sym_unquoted_token1] = ACTIONS(1479), - [aux_sym_unquoted_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(247), - }, - [1081] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5478), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(5440), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(4836), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5479), - [sym__unquoted_anonymous_prefix] = STATE(7531), - [sym_comment] = STATE(1081), - [anon_sym_true] = ACTIONS(3983), - [anon_sym_false] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [aux_sym_cmd_identifier_token38] = ACTIONS(3987), - [aux_sym_cmd_identifier_token39] = ACTIONS(3987), - [aux_sym_cmd_identifier_token40] = ACTIONS(3987), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(247), - }, - [1082] = { - [sym__expr_parenthesized_immediate] = STATE(1826), - [sym__immediate_decimal] = STATE(1827), - [sym_val_variable] = STATE(1826), - [sym_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [aux_sym_cmd_identifier_token38] = ACTIONS(1515), - [aux_sym_cmd_identifier_token39] = ACTIONS(1515), - [aux_sym_cmd_identifier_token40] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1505), - [aux_sym_ctrl_match_token1] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [aux_sym__immediate_decimal_token1] = ACTIONS(4007), - [aux_sym__immediate_decimal_token3] = ACTIONS(4009), - [aux_sym__immediate_decimal_token4] = ACTIONS(4011), - [aux_sym__immediate_decimal_token5] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1505), - [aux_sym__val_number_decimal_token3] = ACTIONS(1505), - [aux_sym__val_number_decimal_token4] = ACTIONS(1505), - [aux_sym__val_number_token1] = ACTIONS(1515), - [aux_sym__val_number_token2] = ACTIONS(1515), - [aux_sym__val_number_token3] = ACTIONS(1515), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym__str_single_quotes] = ACTIONS(1515), - [sym__str_back_ticks] = ACTIONS(1515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), - [anon_sym_err_GT] = ACTIONS(1505), - [anon_sym_out_GT] = ACTIONS(1505), - [anon_sym_e_GT] = ACTIONS(1505), - [anon_sym_o_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT] = ACTIONS(1505), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), - [aux_sym_unquoted_token1] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(247), - }, - [1083] = { - [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(3979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [1084] = { - [sym_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(247), - }, - [1085] = { - [sym_comment] = STATE(1085), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_PLUS_EQ] = ACTIONS(1042), - [anon_sym_DASH_EQ] = ACTIONS(1042), - [anon_sym_STAR_EQ] = ACTIONS(1042), - [anon_sym_SLASH_EQ] = ACTIONS(1042), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), - [aux_sym_expr_binary_token1] = ACTIONS(1042), - [aux_sym_expr_binary_token2] = ACTIONS(1042), - [aux_sym_expr_binary_token3] = ACTIONS(1042), - [aux_sym_expr_binary_token4] = ACTIONS(1042), - [aux_sym_expr_binary_token5] = ACTIONS(1042), - [aux_sym_expr_binary_token6] = ACTIONS(1042), - [aux_sym_expr_binary_token7] = ACTIONS(1042), - [aux_sym_expr_binary_token8] = ACTIONS(1042), - [aux_sym_expr_binary_token9] = ACTIONS(1042), - [aux_sym_expr_binary_token10] = ACTIONS(1042), - [aux_sym_expr_binary_token11] = ACTIONS(1042), - [aux_sym_expr_binary_token12] = ACTIONS(1042), - [aux_sym_expr_binary_token13] = ACTIONS(1042), - [aux_sym_expr_binary_token14] = ACTIONS(1042), - [aux_sym_expr_binary_token15] = ACTIONS(1042), - [aux_sym_expr_binary_token16] = ACTIONS(1042), - [aux_sym_expr_binary_token17] = ACTIONS(1042), - [aux_sym_expr_binary_token18] = ACTIONS(1042), - [aux_sym_expr_binary_token19] = ACTIONS(1042), - [aux_sym_expr_binary_token20] = ACTIONS(1042), - [aux_sym_expr_binary_token21] = ACTIONS(1042), - [aux_sym_expr_binary_token22] = ACTIONS(1042), - [aux_sym_expr_binary_token23] = ACTIONS(1042), - [aux_sym_expr_binary_token24] = ACTIONS(1042), - [aux_sym_expr_binary_token25] = ACTIONS(1042), - [aux_sym_expr_binary_token26] = ACTIONS(1042), - [aux_sym_expr_binary_token27] = ACTIONS(1042), - [aux_sym_expr_binary_token28] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [1086] = { - [sym_comment] = STATE(1086), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_QMARK2] = ACTIONS(1046), - [aux_sym_expr_binary_token1] = ACTIONS(1046), - [aux_sym_expr_binary_token2] = ACTIONS(1046), - [aux_sym_expr_binary_token3] = ACTIONS(1046), - [aux_sym_expr_binary_token4] = ACTIONS(1046), - [aux_sym_expr_binary_token5] = ACTIONS(1046), - [aux_sym_expr_binary_token6] = ACTIONS(1046), - [aux_sym_expr_binary_token7] = ACTIONS(1046), - [aux_sym_expr_binary_token8] = ACTIONS(1046), - [aux_sym_expr_binary_token9] = ACTIONS(1046), - [aux_sym_expr_binary_token10] = ACTIONS(1046), - [aux_sym_expr_binary_token11] = ACTIONS(1046), - [aux_sym_expr_binary_token12] = ACTIONS(1046), - [aux_sym_expr_binary_token13] = ACTIONS(1046), - [aux_sym_expr_binary_token14] = ACTIONS(1046), - [aux_sym_expr_binary_token15] = ACTIONS(1046), - [aux_sym_expr_binary_token16] = ACTIONS(1046), - [aux_sym_expr_binary_token17] = ACTIONS(1046), - [aux_sym_expr_binary_token18] = ACTIONS(1046), - [aux_sym_expr_binary_token19] = ACTIONS(1046), - [aux_sym_expr_binary_token20] = ACTIONS(1046), - [aux_sym_expr_binary_token21] = ACTIONS(1046), - [aux_sym_expr_binary_token22] = ACTIONS(1046), - [aux_sym_expr_binary_token23] = ACTIONS(1046), - [aux_sym_expr_binary_token24] = ACTIONS(1046), - [aux_sym_expr_binary_token25] = ACTIONS(1046), - [aux_sym_expr_binary_token26] = ACTIONS(1046), - [aux_sym_expr_binary_token27] = ACTIONS(1046), - [aux_sym_expr_binary_token28] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - }, - [1087] = { - [sym_comment] = STATE(1087), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(1050), - [aux_sym_expr_binary_token1] = ACTIONS(1050), - [aux_sym_expr_binary_token2] = ACTIONS(1050), - [aux_sym_expr_binary_token3] = ACTIONS(1050), - [aux_sym_expr_binary_token4] = ACTIONS(1050), - [aux_sym_expr_binary_token5] = ACTIONS(1050), - [aux_sym_expr_binary_token6] = ACTIONS(1050), - [aux_sym_expr_binary_token7] = ACTIONS(1050), - [aux_sym_expr_binary_token8] = ACTIONS(1050), - [aux_sym_expr_binary_token9] = ACTIONS(1050), - [aux_sym_expr_binary_token10] = ACTIONS(1050), - [aux_sym_expr_binary_token11] = ACTIONS(1050), - [aux_sym_expr_binary_token12] = ACTIONS(1050), - [aux_sym_expr_binary_token13] = ACTIONS(1050), - [aux_sym_expr_binary_token14] = ACTIONS(1050), - [aux_sym_expr_binary_token15] = ACTIONS(1050), - [aux_sym_expr_binary_token16] = ACTIONS(1050), - [aux_sym_expr_binary_token17] = ACTIONS(1050), - [aux_sym_expr_binary_token18] = ACTIONS(1050), - [aux_sym_expr_binary_token19] = ACTIONS(1050), - [aux_sym_expr_binary_token20] = ACTIONS(1050), - [aux_sym_expr_binary_token21] = ACTIONS(1050), - [aux_sym_expr_binary_token22] = ACTIONS(1050), - [aux_sym_expr_binary_token23] = ACTIONS(1050), - [aux_sym_expr_binary_token24] = ACTIONS(1050), - [aux_sym_expr_binary_token25] = ACTIONS(1050), - [aux_sym_expr_binary_token26] = ACTIONS(1050), - [aux_sym_expr_binary_token27] = ACTIONS(1050), - [aux_sym_expr_binary_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), - }, - [1088] = { - [sym_comment] = STATE(1088), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [aux_sym_ctrl_match_token1] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(4017), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [1089] = { - [sym_comment] = STATE(1089), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [aux_sym_ctrl_match_token1] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4019), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), - }, - [1090] = { - [sym__expr_parenthesized_immediate] = STATE(1913), - [sym__immediate_decimal] = STATE(1918), - [sym_val_variable] = STATE(1913), - [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [aux_sym_cmd_identifier_token38] = ACTIONS(1619), - [aux_sym_cmd_identifier_token39] = ACTIONS(1619), - [aux_sym_cmd_identifier_token40] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1617), - [aux_sym_ctrl_match_token1] = ACTIONS(1619), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), - [anon_sym_DOT_DOT_LT] = ACTIONS(1619), - [aux_sym__immediate_decimal_token1] = ACTIONS(4007), - [aux_sym__immediate_decimal_token3] = ACTIONS(4009), - [aux_sym__immediate_decimal_token4] = ACTIONS(4011), - [aux_sym__immediate_decimal_token5] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1617), - [aux_sym__val_number_decimal_token2] = ACTIONS(1617), - [aux_sym__val_number_decimal_token3] = ACTIONS(1617), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(1619), - [aux_sym__val_number_token2] = ACTIONS(1619), - [aux_sym__val_number_token3] = ACTIONS(1619), - [anon_sym_0b] = ACTIONS(1617), - [anon_sym_0o] = ACTIONS(1617), - [anon_sym_0x] = ACTIONS(1617), - [sym_val_date] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [sym__str_single_quotes] = ACTIONS(1619), - [sym__str_back_ticks] = ACTIONS(1619), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), - [anon_sym_err_GT] = ACTIONS(1617), - [anon_sym_out_GT] = ACTIONS(1617), - [anon_sym_e_GT] = ACTIONS(1617), - [anon_sym_o_GT] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT] = ACTIONS(1617), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [aux_sym_unquoted_token1] = ACTIONS(1617), - [anon_sym_POUND] = ACTIONS(247), - }, - [1091] = { - [sym_cell_path] = STATE(1359), - [sym_path] = STATE(1252), - [sym_comment] = STATE(1091), - [aux_sym_cell_path_repeat1] = STATE(1184), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [anon_sym_null] = ACTIONS(1688), - [aux_sym_cmd_identifier_token38] = ACTIONS(1688), - [aux_sym_cmd_identifier_token39] = ACTIONS(1688), - [aux_sym_cmd_identifier_token40] = ACTIONS(1688), - [sym__newline] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_err_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_GT_PIPE] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1686), - [aux_sym_ctrl_match_token1] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), - [anon_sym_DOT_DOT_LT] = ACTIONS(1686), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token1] = ACTIONS(1686), - [aux_sym__val_number_decimal_token2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token3] = ACTIONS(1688), - [aux_sym__val_number_decimal_token4] = ACTIONS(1688), - [aux_sym__val_number_token1] = ACTIONS(1688), - [aux_sym__val_number_token2] = ACTIONS(1688), - [aux_sym__val_number_token3] = ACTIONS(1688), - [anon_sym_0b] = ACTIONS(1686), - [anon_sym_0o] = ACTIONS(1686), - [anon_sym_0x] = ACTIONS(1686), - [sym_val_date] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__str_single_quotes] = ACTIONS(1688), - [sym__str_back_ticks] = ACTIONS(1688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), - [anon_sym_err_GT] = ACTIONS(1686), - [anon_sym_out_GT] = ACTIONS(1686), - [anon_sym_e_GT] = ACTIONS(1686), - [anon_sym_o_GT] = ACTIONS(1686), - [anon_sym_err_PLUSout_GT] = ACTIONS(1686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), - [anon_sym_o_PLUSe_GT] = ACTIONS(1686), - [anon_sym_e_PLUSo_GT] = ACTIONS(1686), - [anon_sym_err_GT_GT] = ACTIONS(1688), - [anon_sym_out_GT_GT] = ACTIONS(1688), - [anon_sym_e_GT_GT] = ACTIONS(1688), - [anon_sym_o_GT_GT] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), - [aux_sym_unquoted_token1] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(247), - }, - [1092] = { - [sym_cell_path] = STATE(1319), - [sym_path] = STATE(1252), - [sym_comment] = STATE(1092), - [aux_sym_cell_path_repeat1] = STATE(1184), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1629), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1625), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token3] = ACTIONS(1629), - [aux_sym__val_number_decimal_token4] = ACTIONS(1629), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1625), - [anon_sym_0o] = ACTIONS(1625), - [anon_sym_0x] = ACTIONS(1625), - [sym_val_date] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), - [aux_sym_unquoted_token1] = ACTIONS(1625), - [anon_sym_POUND] = ACTIONS(247), - }, - [1093] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5920), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(7097), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5410), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5922), - [sym__unquoted_anonymous_prefix] = STATE(7683), - [sym_comment] = STATE(1093), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_null] = ACTIONS(4025), - [aux_sym_cmd_identifier_token38] = ACTIONS(4027), - [aux_sym_cmd_identifier_token39] = ACTIONS(4027), - [aux_sym_cmd_identifier_token40] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4041), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4045), - [aux_sym__val_number_decimal_token4] = ACTIONS(4047), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), - [anon_sym_POUND] = ACTIONS(247), - }, - [1094] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(7097), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5410), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7683), - [sym_comment] = STATE(1094), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_null] = ACTIONS(4025), - [aux_sym_cmd_identifier_token38] = ACTIONS(4027), - [aux_sym_cmd_identifier_token39] = ACTIONS(4027), - [aux_sym_cmd_identifier_token40] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4041), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4045), - [aux_sym__val_number_decimal_token4] = ACTIONS(4047), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), - [anon_sym_POUND] = ACTIONS(247), - }, - [1095] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5937), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5195), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5938), - [sym__unquoted_anonymous_prefix] = STATE(7683), - [sym_comment] = STATE(1095), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4061), - [aux_sym_cmd_identifier_token39] = ACTIONS(4061), - [aux_sym_cmd_identifier_token40] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [aux_sym__val_number_decimal_token3] = ACTIONS(4071), - [aux_sym__val_number_decimal_token4] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), - [anon_sym_POUND] = ACTIONS(247), - }, [1096] = { - [sym__expr_parenthesized_immediate] = STATE(1919), - [sym__immediate_decimal] = STATE(1924), - [sym_val_variable] = STATE(1919), [sym_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [aux_sym_cmd_identifier_token38] = ACTIONS(1623), - [aux_sym_cmd_identifier_token39] = ACTIONS(1623), - [aux_sym_cmd_identifier_token40] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1621), - [aux_sym_ctrl_match_token1] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4007), - [aux_sym__immediate_decimal_token3] = ACTIONS(4009), - [aux_sym__immediate_decimal_token4] = ACTIONS(4011), - [aux_sym__immediate_decimal_token5] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1621), - [aux_sym__val_number_decimal_token3] = ACTIONS(1621), - [aux_sym__val_number_decimal_token4] = ACTIONS(1621), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(3959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1097] = { - [sym__expr_parenthesized_immediate] = STATE(1925), - [sym__immediate_decimal] = STATE(1785), - [sym_val_variable] = STATE(1925), [sym_comment] = STATE(1097), - [ts_builtin_sym_end] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [aux_sym_cmd_identifier_token38] = ACTIONS(1563), - [aux_sym_cmd_identifier_token39] = ACTIONS(1563), - [aux_sym_cmd_identifier_token40] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_err_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_GT_PIPE] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [aux_sym_ctrl_match_token1] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT] = ACTIONS(1563), - [aux_sym__immediate_decimal_token1] = ACTIONS(4007), - [aux_sym__immediate_decimal_token3] = ACTIONS(4009), - [aux_sym__immediate_decimal_token4] = ACTIONS(4011), - [aux_sym__immediate_decimal_token5] = ACTIONS(4013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1561), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1563), - [aux_sym__val_number_token2] = ACTIONS(1563), - [aux_sym__val_number_token3] = ACTIONS(1563), - [anon_sym_0b] = ACTIONS(1561), - [anon_sym_0o] = ACTIONS(1561), - [anon_sym_0x] = ACTIONS(1561), - [sym_val_date] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym__str_single_quotes] = ACTIONS(1563), - [sym__str_back_ticks] = ACTIONS(1563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1563), - [anon_sym_out_GT_GT] = ACTIONS(1563), - [anon_sym_e_GT_GT] = ACTIONS(1563), - [anon_sym_o_GT_GT] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), - [aux_sym_unquoted_token1] = ACTIONS(1561), + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(3961), + [aux_sym__immediate_decimal_token2] = ACTIONS(3963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1098] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5947), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(7097), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5410), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5948), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1098), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_null] = ACTIONS(4025), - [aux_sym_cmd_identifier_token38] = ACTIONS(4027), - [aux_sym_cmd_identifier_token39] = ACTIONS(4027), - [aux_sym_cmd_identifier_token40] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4041), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4045), - [aux_sym__val_number_decimal_token4] = ACTIONS(4047), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(3872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1099] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5195), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7683), + [sym_path] = STATE(1212), [sym_comment] = STATE(1099), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4061), - [aux_sym_cmd_identifier_token39] = ACTIONS(4061), - [aux_sym_cmd_identifier_token40] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [aux_sym__val_number_decimal_token3] = ACTIONS(4071), - [aux_sym__val_number_decimal_token4] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [aux_sym_cell_path_repeat1] = STATE(1103), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [sym__newline] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), [anon_sym_POUND] = ACTIONS(247), }, [1100] = { [sym_comment] = STATE(1100), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4077), - [aux_sym__immediate_decimal_token2] = ACTIONS(4079), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(3965), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1101] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_rest] = STATE(7606), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2816), - [sym_val_range] = STATE(3028), - [sym__val_range] = STATE(7670), - [sym_val_nothing] = STATE(3031), - [sym_val_bool] = STATE(2974), - [sym_val_variable] = STATE(2817), - [sym_val_number] = STATE(3031), - [sym__val_number_decimal] = STATE(2606), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3031), - [sym_val_filesize] = STATE(3031), - [sym_val_binary] = STATE(3031), - [sym_val_string] = STATE(3031), - [sym__str_double_quotes] = STATE(3007), - [sym_val_table] = STATE(3031), - [sym__unquoted_in_list] = STATE(3052), - [sym__unquoted_anonymous_prefix] = STATE(7659), [sym_comment] = STATE(1101), - [aux_sym__match_pattern_list_repeat1] = STATE(1202), - [anon_sym_true] = ACTIONS(3718), - [anon_sym_false] = ACTIONS(3718), - [anon_sym_null] = ACTIONS(3720), - [aux_sym_cmd_identifier_token38] = ACTIONS(3722), - [aux_sym_cmd_identifier_token39] = ACTIONS(3722), - [aux_sym_cmd_identifier_token40] = ACTIONS(3722), - [anon_sym_LBRACK] = ACTIONS(4081), - [anon_sym_RBRACK] = ACTIONS(4083), - [anon_sym_LPAREN] = ACTIONS(3728), - [anon_sym_DOLLAR] = ACTIONS(3730), - [aux_sym_ctrl_match_token1] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), - [anon_sym_DOT_DOT_LT] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3750), - [anon_sym_0x] = ACTIONS(3750), - [sym_val_date] = ACTIONS(3752), - [anon_sym_DQUOTE] = ACTIONS(3754), - [sym__str_single_quotes] = ACTIONS(3756), - [sym__str_back_ticks] = ACTIONS(3756), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(3967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(3969), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1102] = { [sym_comment] = STATE(1102), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(3971), + [aux_sym__immediate_decimal_token2] = ACTIONS(3973), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1103] = { + [sym_path] = STATE(1212), [sym_comment] = STATE(1103), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [aux_sym_cell_path_repeat1] = STATE(1103), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), + [sym__newline] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1017), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [1104] = { - [sym__val_range] = STATE(7774), - [sym__value] = STATE(2681), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5515), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(2675), - [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym__expr_parenthesized_immediate] = STATE(1941), + [sym__immediate_decimal] = STATE(1560), + [sym_val_variable] = STATE(1941), [sym_comment] = STATE(1104), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4089), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(4091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), - [anon_sym_DOT_DOT_LT] = ACTIONS(4093), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), + [ts_builtin_sym_end] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [anon_sym_null] = ACTIONS(1550), + [aux_sym_cmd_identifier_token38] = ACTIONS(1550), + [aux_sym_cmd_identifier_token39] = ACTIONS(1550), + [aux_sym_cmd_identifier_token40] = ACTIONS(1550), + [sym__newline] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_err_GT_PIPE] = ACTIONS(1550), + [anon_sym_out_GT_PIPE] = ACTIONS(1550), + [anon_sym_e_GT_PIPE] = ACTIONS(1550), + [anon_sym_o_GT_PIPE] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), + [anon_sym_DOT_DOT_LT] = ACTIONS(1550), + [aux_sym__immediate_decimal_token1] = ACTIONS(3927), + [aux_sym__immediate_decimal_token3] = ACTIONS(3929), + [aux_sym__immediate_decimal_token4] = ACTIONS(3931), + [aux_sym__immediate_decimal_token5] = ACTIONS(3933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1548), + [aux_sym__val_number_decimal_token2] = ACTIONS(1548), + [aux_sym__val_number_decimal_token3] = ACTIONS(1548), + [aux_sym__val_number_decimal_token4] = ACTIONS(1548), + [aux_sym__val_number_token1] = ACTIONS(1550), + [aux_sym__val_number_token2] = ACTIONS(1550), + [aux_sym__val_number_token3] = ACTIONS(1550), + [anon_sym_0b] = ACTIONS(1548), + [anon_sym_0o] = ACTIONS(1548), + [anon_sym_0x] = ACTIONS(1548), + [sym_val_date] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym__str_single_quotes] = ACTIONS(1550), + [sym__str_back_ticks] = ACTIONS(1550), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1548), + [anon_sym_out_GT] = ACTIONS(1548), + [anon_sym_e_GT] = ACTIONS(1548), + [anon_sym_o_GT] = ACTIONS(1548), + [anon_sym_err_PLUSout_GT] = ACTIONS(1548), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1548), + [anon_sym_o_PLUSe_GT] = ACTIONS(1548), + [anon_sym_e_PLUSo_GT] = ACTIONS(1548), + [anon_sym_err_GT_GT] = ACTIONS(1550), + [anon_sym_out_GT_GT] = ACTIONS(1550), + [anon_sym_e_GT_GT] = ACTIONS(1550), + [anon_sym_o_GT_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [aux_sym_unquoted_token1] = ACTIONS(1548), + [aux_sym_unquoted_token2] = ACTIONS(1552), [anon_sym_POUND] = ACTIONS(247), }, [1105] = { - [sym_path] = STATE(1238), + [sym__expr_parenthesized_immediate] = STATE(1578), + [sym__immediate_decimal] = STATE(1579), + [sym_val_variable] = STATE(1578), [sym_comment] = STATE(1105), - [aux_sym_cell_path_repeat1] = STATE(1146), - [ts_builtin_sym_end] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), - [sym__newline] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [aux_sym_expr_binary_token1] = ACTIONS(1019), - [aux_sym_expr_binary_token2] = ACTIONS(1019), - [aux_sym_expr_binary_token3] = ACTIONS(1019), - [aux_sym_expr_binary_token4] = ACTIONS(1019), - [aux_sym_expr_binary_token5] = ACTIONS(1019), - [aux_sym_expr_binary_token6] = ACTIONS(1019), - [aux_sym_expr_binary_token7] = ACTIONS(1019), - [aux_sym_expr_binary_token8] = ACTIONS(1019), - [aux_sym_expr_binary_token9] = ACTIONS(1019), - [aux_sym_expr_binary_token10] = ACTIONS(1019), - [aux_sym_expr_binary_token11] = ACTIONS(1019), - [aux_sym_expr_binary_token12] = ACTIONS(1019), - [aux_sym_expr_binary_token13] = ACTIONS(1019), - [aux_sym_expr_binary_token14] = ACTIONS(1019), - [aux_sym_expr_binary_token15] = ACTIONS(1019), - [aux_sym_expr_binary_token16] = ACTIONS(1019), - [aux_sym_expr_binary_token17] = ACTIONS(1019), - [aux_sym_expr_binary_token18] = ACTIONS(1019), - [aux_sym_expr_binary_token19] = ACTIONS(1019), - [aux_sym_expr_binary_token20] = ACTIONS(1019), - [aux_sym_expr_binary_token21] = ACTIONS(1019), - [aux_sym_expr_binary_token22] = ACTIONS(1019), - [aux_sym_expr_binary_token23] = ACTIONS(1019), - [aux_sym_expr_binary_token24] = ACTIONS(1019), - [aux_sym_expr_binary_token25] = ACTIONS(1019), - [aux_sym_expr_binary_token26] = ACTIONS(1019), - [aux_sym_expr_binary_token27] = ACTIONS(1019), - [aux_sym_expr_binary_token28] = ACTIONS(1019), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_null] = ACTIONS(1588), + [aux_sym_cmd_identifier_token38] = ACTIONS(1588), + [aux_sym_cmd_identifier_token39] = ACTIONS(1588), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1588), + [anon_sym_DOT_DOT_LT] = ACTIONS(1588), + [aux_sym__immediate_decimal_token1] = ACTIONS(3935), + [aux_sym__immediate_decimal_token3] = ACTIONS(3937), + [aux_sym__immediate_decimal_token4] = ACTIONS(3939), + [aux_sym__immediate_decimal_token5] = ACTIONS(3941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1586), + [aux_sym__val_number_decimal_token2] = ACTIONS(1586), + [aux_sym__val_number_decimal_token3] = ACTIONS(1586), + [aux_sym__val_number_decimal_token4] = ACTIONS(1586), + [aux_sym__val_number_token1] = ACTIONS(1588), + [aux_sym__val_number_token2] = ACTIONS(1588), + [aux_sym__val_number_token3] = ACTIONS(1588), + [anon_sym_0b] = ACTIONS(1586), + [anon_sym_0o] = ACTIONS(1586), + [anon_sym_0x] = ACTIONS(1586), + [sym_val_date] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [sym__str_single_quotes] = ACTIONS(1588), + [sym__str_back_ticks] = ACTIONS(1588), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), + [anon_sym_err_GT] = ACTIONS(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(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), + [aux_sym_unquoted_token1] = ACTIONS(1586), [anon_sym_POUND] = ACTIONS(247), }, [1106] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5920), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5195), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5922), - [sym__unquoted_anonymous_prefix] = STATE(7683), + [sym__expr_parenthesized_immediate] = STATE(7347), [sym_comment] = STATE(1106), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4061), - [aux_sym_cmd_identifier_token39] = ACTIONS(4061), - [aux_sym_cmd_identifier_token40] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [aux_sym__val_number_decimal_token3] = ACTIONS(4071), - [aux_sym__val_number_decimal_token4] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1572), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT2] = ACTIONS(3980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT] = ACTIONS(1560), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3982), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [anon_sym_0b] = ACTIONS(1560), + [sym_filesize_unit] = ACTIONS(3984), + [sym_duration_unit] = ACTIONS(3986), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [aux_sym_unquoted_token2] = ACTIONS(3988), [anon_sym_POUND] = ACTIONS(247), }, [1107] = { + [sym_cell_path] = STATE(1256), + [sym_path] = STATE(1246), [sym_comment] = STATE(1107), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [aux_sym_cell_path_repeat1] = STATE(1189), + [ts_builtin_sym_end] = ACTIONS(1007), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), + [sym__newline] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [aux_sym_expr_binary_token1] = ACTIONS(1007), + [aux_sym_expr_binary_token2] = ACTIONS(1007), + [aux_sym_expr_binary_token3] = ACTIONS(1007), + [aux_sym_expr_binary_token4] = ACTIONS(1007), + [aux_sym_expr_binary_token5] = ACTIONS(1007), + [aux_sym_expr_binary_token6] = ACTIONS(1007), + [aux_sym_expr_binary_token7] = ACTIONS(1007), + [aux_sym_expr_binary_token8] = ACTIONS(1007), + [aux_sym_expr_binary_token9] = ACTIONS(1007), + [aux_sym_expr_binary_token10] = ACTIONS(1007), + [aux_sym_expr_binary_token11] = ACTIONS(1007), + [aux_sym_expr_binary_token12] = ACTIONS(1007), + [aux_sym_expr_binary_token13] = ACTIONS(1007), + [aux_sym_expr_binary_token14] = ACTIONS(1007), + [aux_sym_expr_binary_token15] = ACTIONS(1007), + [aux_sym_expr_binary_token16] = ACTIONS(1007), + [aux_sym_expr_binary_token17] = ACTIONS(1007), + [aux_sym_expr_binary_token18] = ACTIONS(1007), + [aux_sym_expr_binary_token19] = ACTIONS(1007), + [aux_sym_expr_binary_token20] = ACTIONS(1007), + [aux_sym_expr_binary_token21] = ACTIONS(1007), + [aux_sym_expr_binary_token22] = ACTIONS(1007), + [aux_sym_expr_binary_token23] = ACTIONS(1007), + [aux_sym_expr_binary_token24] = ACTIONS(1007), + [aux_sym_expr_binary_token25] = ACTIONS(1007), + [aux_sym_expr_binary_token26] = ACTIONS(1007), + [aux_sym_expr_binary_token27] = ACTIONS(1007), + [aux_sym_expr_binary_token28] = ACTIONS(1007), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(3990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), [anon_sym_POUND] = ACTIONS(247), }, [1108] = { + [sym__expr_parenthesized_immediate] = STATE(1580), + [sym__immediate_decimal] = STATE(1581), + [sym_val_variable] = STATE(1580), [sym_comment] = STATE(1108), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1641), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1639), - [aux_sym_ctrl_match_token1] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [anon_sym_0b] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_0o] = ACTIONS(1639), - [anon_sym_0x] = ACTIONS(1639), - [sym_val_date] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token1] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_null] = ACTIONS(1584), + [aux_sym_cmd_identifier_token38] = ACTIONS(1584), + [aux_sym_cmd_identifier_token39] = ACTIONS(1584), + [aux_sym_cmd_identifier_token40] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1584), + [anon_sym_DOT_DOT_LT] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(3935), + [aux_sym__immediate_decimal_token3] = ACTIONS(3937), + [aux_sym__immediate_decimal_token4] = ACTIONS(3939), + [aux_sym__immediate_decimal_token5] = ACTIONS(3941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1576), + [aux_sym__val_number_decimal_token2] = ACTIONS(1576), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1576), + [aux_sym__val_number_token1] = ACTIONS(1584), + [aux_sym__val_number_token2] = ACTIONS(1584), + [aux_sym__val_number_token3] = ACTIONS(1584), + [anon_sym_0b] = ACTIONS(1576), + [anon_sym_0o] = ACTIONS(1576), + [anon_sym_0x] = ACTIONS(1576), + [sym_val_date] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [sym__str_single_quotes] = ACTIONS(1584), + [sym__str_back_ticks] = ACTIONS(1584), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1576), + [anon_sym_out_GT] = ACTIONS(1576), + [anon_sym_e_GT] = ACTIONS(1576), + [anon_sym_o_GT] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT] = ACTIONS(1576), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [aux_sym_unquoted_token1] = ACTIONS(1576), [anon_sym_POUND] = ACTIONS(247), }, [1109] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5937), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5227), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5938), - [sym__unquoted_anonymous_prefix] = STATE(7683), + [sym__expr_parenthesized_immediate] = STATE(1785), + [sym__immediate_decimal] = STATE(1787), + [sym_val_variable] = STATE(1785), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4095), - [aux_sym_cmd_identifier_token39] = ACTIONS(4095), - [aux_sym_cmd_identifier_token40] = ACTIONS(4095), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4097), - [aux_sym__val_number_decimal_token2] = ACTIONS(4099), - [aux_sym__val_number_decimal_token3] = ACTIONS(4101), - [aux_sym__val_number_decimal_token4] = ACTIONS(4103), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(3935), + [aux_sym__immediate_decimal_token3] = ACTIONS(3937), + [aux_sym__immediate_decimal_token4] = ACTIONS(3939), + [aux_sym__immediate_decimal_token5] = ACTIONS(3941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [aux_sym_unquoted_token1] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(247), }, [1110] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5947), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5195), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5948), - [sym__unquoted_anonymous_prefix] = STATE(7683), + [sym_path] = STATE(1219), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4061), - [aux_sym_cmd_identifier_token39] = ACTIONS(4061), - [aux_sym_cmd_identifier_token40] = ACTIONS(4061), - [anon_sym_LBRACK] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4069), - [aux_sym__val_number_decimal_token3] = ACTIONS(4071), - [aux_sym__val_number_decimal_token4] = ACTIONS(4073), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), - [anon_sym_POUND] = ACTIONS(247), - }, - [1111] = { - [sym_cell_path] = STATE(1375), - [sym_path] = STATE(1252), - [sym_comment] = STATE(1111), - [aux_sym_cell_path_repeat1] = STATE(1184), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [aux_sym_cell_path_repeat1] = STATE(1111), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), [sym__newline] = ACTIONS(1013), [anon_sym_SEMI] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1013), @@ -182674,37 +185287,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [aux_sym_ctrl_match_token1] = ACTIONS(1013), [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_DOT_DOT_LT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3905), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), [anon_sym_err_GT] = ACTIONS(1011), [anon_sym_out_GT] = ACTIONS(1011), [anon_sym_e_GT] = ACTIONS(1011), @@ -182721,5116 +185337,8416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(247), + }, + [1111] = { + [sym_path] = STATE(1219), + [sym_comment] = STATE(1111), + [aux_sym_cell_path_repeat1] = STATE(1111), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [aux_sym_expr_binary_token1] = ACTIONS(1017), + [aux_sym_expr_binary_token2] = ACTIONS(1017), + [aux_sym_expr_binary_token3] = ACTIONS(1017), + [aux_sym_expr_binary_token4] = ACTIONS(1017), + [aux_sym_expr_binary_token5] = ACTIONS(1017), + [aux_sym_expr_binary_token6] = ACTIONS(1017), + [aux_sym_expr_binary_token7] = ACTIONS(1017), + [aux_sym_expr_binary_token8] = ACTIONS(1017), + [aux_sym_expr_binary_token9] = ACTIONS(1017), + [aux_sym_expr_binary_token10] = ACTIONS(1017), + [aux_sym_expr_binary_token11] = ACTIONS(1017), + [aux_sym_expr_binary_token12] = ACTIONS(1017), + [aux_sym_expr_binary_token13] = ACTIONS(1017), + [aux_sym_expr_binary_token14] = ACTIONS(1017), + [aux_sym_expr_binary_token15] = ACTIONS(1017), + [aux_sym_expr_binary_token16] = ACTIONS(1017), + [aux_sym_expr_binary_token17] = ACTIONS(1017), + [aux_sym_expr_binary_token18] = ACTIONS(1017), + [aux_sym_expr_binary_token19] = ACTIONS(1017), + [aux_sym_expr_binary_token20] = ACTIONS(1017), + [aux_sym_expr_binary_token21] = ACTIONS(1017), + [aux_sym_expr_binary_token22] = ACTIONS(1017), + [aux_sym_expr_binary_token23] = ACTIONS(1017), + [aux_sym_expr_binary_token24] = ACTIONS(1017), + [aux_sym_expr_binary_token25] = ACTIONS(1017), + [aux_sym_expr_binary_token26] = ACTIONS(1017), + [aux_sym_expr_binary_token27] = ACTIONS(1017), + [aux_sym_expr_binary_token28] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [1112] = { [sym_comment] = STATE(1112), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [1113] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5227), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7683), + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5495), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(5510), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(4917), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5496), + [sym__unquoted_anonymous_prefix] = STATE(7720), [sym_comment] = STATE(1113), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4095), - [aux_sym_cmd_identifier_token39] = ACTIONS(4095), - [aux_sym_cmd_identifier_token40] = ACTIONS(4095), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4097), - [aux_sym__val_number_decimal_token2] = ACTIONS(4099), - [aux_sym__val_number_decimal_token3] = ACTIONS(4101), - [aux_sym__val_number_decimal_token4] = ACTIONS(4103), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = ACTIONS(3995), + [anon_sym_null] = ACTIONS(3997), + [aux_sym_cmd_identifier_token38] = ACTIONS(3999), + [aux_sym_cmd_identifier_token39] = ACTIONS(3999), + [aux_sym_cmd_identifier_token40] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4009), + [aux_sym__val_number_decimal_token2] = ACTIONS(4011), + [aux_sym__val_number_decimal_token3] = ACTIONS(4013), + [aux_sym__val_number_decimal_token4] = ACTIONS(4015), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1114] = { + [sym_cell_path] = STATE(1395), + [sym_path] = STATE(1292), [sym_comment] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [aux_sym_cell_path_repeat1] = STATE(1230), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [anon_sym_0b] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [sym_val_date] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [aux_sym_unquoted_token1] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(247), }, [1115] = { + [sym__val_range] = STATE(7687), + [sym__value] = STATE(2720), + [sym_val_nothing] = STATE(2777), + [sym_val_bool] = STATE(2662), + [sym_val_variable] = STATE(2777), + [sym_val_number] = STATE(2777), + [sym__val_number_decimal] = STATE(2457), + [sym__val_number] = STATE(2758), + [sym_val_duration] = STATE(2777), + [sym_val_filesize] = STATE(2777), + [sym_val_binary] = STATE(2777), + [sym_val_string] = STATE(2777), + [sym__str_double_quotes] = STATE(2731), + [sym_val_interpolated] = STATE(2777), + [sym__inter_single_quotes] = STATE(2787), + [sym__inter_double_quotes] = STATE(2788), + [sym_val_list] = STATE(2777), + [sym_val_record] = STATE(2777), + [sym_val_table] = STATE(2777), + [sym_val_closure] = STATE(2777), + [sym_unquoted] = STATE(2724), + [sym__unquoted_anonymous_prefix] = STATE(7483), [sym_comment] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4113), - [aux_sym__immediate_decimal_token2] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(4021), + [anon_sym_false] = ACTIONS(4021), + [anon_sym_null] = ACTIONS(4023), + [aux_sym_cmd_identifier_token38] = ACTIONS(4025), + [aux_sym_cmd_identifier_token39] = ACTIONS(4025), + [aux_sym_cmd_identifier_token40] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_LBRACE] = ACTIONS(4033), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4037), + [anon_sym_DOT_DOT_LT] = ACTIONS(4037), + [aux_sym__val_number_decimal_token1] = ACTIONS(4039), + [aux_sym__val_number_decimal_token2] = ACTIONS(4041), + [aux_sym__val_number_decimal_token3] = ACTIONS(4043), + [aux_sym__val_number_decimal_token4] = ACTIONS(4045), + [aux_sym__val_number_token1] = ACTIONS(4047), + [aux_sym__val_number_token2] = ACTIONS(4047), + [aux_sym__val_number_token3] = ACTIONS(4047), + [anon_sym_0b] = ACTIONS(4049), + [anon_sym_0o] = ACTIONS(4051), + [anon_sym_0x] = ACTIONS(4051), + [sym_val_date] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4055), + [sym__str_single_quotes] = ACTIONS(4057), + [sym__str_back_ticks] = ACTIONS(4057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4059), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4061), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4063), [anon_sym_POUND] = ACTIONS(247), }, [1116] = { [sym_comment] = STATE(1116), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [aux_sym_ctrl_match_token1] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [aux_sym_expr_binary_token1] = ACTIONS(1058), - [aux_sym_expr_binary_token2] = ACTIONS(1058), - [aux_sym_expr_binary_token3] = ACTIONS(1058), - [aux_sym_expr_binary_token4] = ACTIONS(1058), - [aux_sym_expr_binary_token5] = ACTIONS(1058), - [aux_sym_expr_binary_token6] = ACTIONS(1058), - [aux_sym_expr_binary_token7] = ACTIONS(1058), - [aux_sym_expr_binary_token8] = ACTIONS(1058), - [aux_sym_expr_binary_token9] = ACTIONS(1058), - [aux_sym_expr_binary_token10] = ACTIONS(1058), - [aux_sym_expr_binary_token11] = ACTIONS(1058), - [aux_sym_expr_binary_token12] = ACTIONS(1058), - [aux_sym_expr_binary_token13] = ACTIONS(1058), - [aux_sym_expr_binary_token14] = ACTIONS(1058), - [aux_sym_expr_binary_token15] = ACTIONS(1058), - [aux_sym_expr_binary_token16] = ACTIONS(1058), - [aux_sym_expr_binary_token17] = ACTIONS(1058), - [aux_sym_expr_binary_token18] = ACTIONS(1058), - [aux_sym_expr_binary_token19] = ACTIONS(1058), - [aux_sym_expr_binary_token20] = ACTIONS(1058), - [aux_sym_expr_binary_token21] = ACTIONS(1058), - [aux_sym_expr_binary_token22] = ACTIONS(1058), - [aux_sym_expr_binary_token23] = ACTIONS(1058), - [aux_sym_expr_binary_token24] = ACTIONS(1058), - [aux_sym_expr_binary_token25] = ACTIONS(1058), - [aux_sym_expr_binary_token26] = ACTIONS(1058), - [aux_sym_expr_binary_token27] = ACTIONS(1058), - [aux_sym_expr_binary_token28] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [aux_sym_record_entry_token1] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1117] = { - [sym__val_range] = STATE(7517), - [sym__value] = STATE(2620), - [sym_val_nothing] = STATE(2688), - [sym_val_bool] = STATE(2629), - [sym_val_variable] = STATE(2688), - [sym_val_number] = STATE(2688), - [sym__val_number_decimal] = STATE(2420), - [sym__val_number] = STATE(2686), - [sym_val_duration] = STATE(2688), - [sym_val_filesize] = STATE(2688), - [sym_val_binary] = STATE(2688), - [sym_val_string] = STATE(2688), - [sym__str_double_quotes] = STATE(2763), - [sym_val_interpolated] = STATE(2688), - [sym__inter_single_quotes] = STATE(2787), - [sym__inter_double_quotes] = STATE(2687), - [sym_val_list] = STATE(2688), - [sym_val_record] = STATE(2688), - [sym_val_table] = STATE(2688), - [sym_val_closure] = STATE(2688), - [sym_unquoted] = STATE(2621), - [sym__unquoted_anonymous_prefix] = STATE(7477), [sym_comment] = STATE(1117), - [anon_sym_true] = ACTIONS(4117), - [anon_sym_false] = ACTIONS(4117), - [anon_sym_null] = ACTIONS(4119), - [aux_sym_cmd_identifier_token38] = ACTIONS(4121), - [aux_sym_cmd_identifier_token39] = ACTIONS(4121), - [aux_sym_cmd_identifier_token40] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4125), - [anon_sym_DOLLAR] = ACTIONS(4127), - [aux_sym_ctrl_match_token1] = ACTIONS(4129), - [anon_sym_DOT_DOT] = ACTIONS(4131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4133), - [anon_sym_DOT_DOT_LT] = ACTIONS(4133), - [aux_sym__val_number_decimal_token1] = ACTIONS(4135), - [aux_sym__val_number_decimal_token2] = ACTIONS(4137), - [aux_sym__val_number_decimal_token3] = ACTIONS(4139), - [aux_sym__val_number_decimal_token4] = ACTIONS(4141), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [anon_sym_0b] = ACTIONS(4145), - [anon_sym_0o] = ACTIONS(4147), - [anon_sym_0x] = ACTIONS(4147), - [sym_val_date] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(4151), - [sym__str_single_quotes] = ACTIONS(4153), - [sym__str_back_ticks] = ACTIONS(4153), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4155), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4157), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4159), + [ts_builtin_sym_end] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4065), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1118] = { - [sym__val_range] = STATE(7774), - [sym__value] = STATE(5937), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5515), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(5938), - [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1118), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4089), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(4091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), - [anon_sym_DOT_DOT_LT] = ACTIONS(4093), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1119] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5920), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5227), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5922), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1119), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4095), - [aux_sym_cmd_identifier_token39] = ACTIONS(4095), - [aux_sym_cmd_identifier_token40] = ACTIONS(4095), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4097), - [aux_sym__val_number_decimal_token2] = ACTIONS(4099), - [aux_sym__val_number_decimal_token3] = ACTIONS(4101), - [aux_sym__val_number_decimal_token4] = ACTIONS(4103), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1120] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5420), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(7382), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(5596), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5421), - [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1120), - [anon_sym_true] = ACTIONS(4161), - [anon_sym_false] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4163), - [aux_sym_cmd_identifier_token38] = ACTIONS(4165), - [aux_sym_cmd_identifier_token39] = ACTIONS(4165), - [aux_sym_cmd_identifier_token40] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(4167), - [aux_sym__val_number_decimal_token2] = ACTIONS(4169), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_decimal_token4] = ACTIONS(4173), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4175), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [aux_sym_cmd_identifier_token38] = ACTIONS(1655), + [aux_sym_cmd_identifier_token39] = ACTIONS(1655), + [aux_sym_cmd_identifier_token40] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token3] = ACTIONS(1655), + [aux_sym__val_number_decimal_token4] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [1121] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5947), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(5806), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5227), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5948), - [sym__unquoted_anonymous_prefix] = STATE(7683), + [sym_cell_path] = STATE(1410), + [sym_path] = STATE(1292), [sym_comment] = STATE(1121), - [anon_sym_true] = ACTIONS(4057), - [anon_sym_false] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(4059), - [aux_sym_cmd_identifier_token38] = ACTIONS(4095), - [aux_sym_cmd_identifier_token39] = ACTIONS(4095), - [aux_sym_cmd_identifier_token40] = ACTIONS(4095), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4097), - [aux_sym__val_number_decimal_token2] = ACTIONS(4099), - [aux_sym__val_number_decimal_token3] = ACTIONS(4101), - [aux_sym__val_number_decimal_token4] = ACTIONS(4103), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4075), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [aux_sym_cell_path_repeat1] = STATE(1230), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1007), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [sym__newline] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_DOT_DOT_LT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_0b] = ACTIONS(1005), + [anon_sym_0o] = ACTIONS(1005), + [anon_sym_0x] = ACTIONS(1005), + [sym_val_date] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [aux_sym_unquoted_token1] = ACTIONS(1005), [anon_sym_POUND] = ACTIONS(247), }, [1122] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5453), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(7382), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(5596), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5454), - [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1122), - [anon_sym_true] = ACTIONS(4161), - [anon_sym_false] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4163), - [aux_sym_cmd_identifier_token38] = ACTIONS(4165), - [aux_sym_cmd_identifier_token39] = ACTIONS(4165), - [aux_sym_cmd_identifier_token40] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(4167), - [aux_sym__val_number_decimal_token2] = ACTIONS(4169), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_decimal_token4] = ACTIONS(4173), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4175), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(4067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4069), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1123] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5427), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(7382), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(5596), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5432), - [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1123), - [anon_sym_true] = ACTIONS(4161), - [anon_sym_false] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4163), - [aux_sym_cmd_identifier_token38] = ACTIONS(4165), - [aux_sym_cmd_identifier_token39] = ACTIONS(4165), - [aux_sym_cmd_identifier_token40] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(4167), - [aux_sym__val_number_decimal_token2] = ACTIONS(4169), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_decimal_token4] = ACTIONS(4173), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4175), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1124] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1793), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1613), - [sym_val_variable] = STATE(1822), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1237), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym_unquoted] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1124), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4179), - [aux_sym_cmd_identifier_token38] = ACTIONS(4181), - [aux_sym_cmd_identifier_token39] = ACTIONS(4181), - [aux_sym_cmd_identifier_token40] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(3934), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4199), + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4075), + [aux_sym__immediate_decimal_token2] = ACTIONS(4077), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1125] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5478), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(7382), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(5596), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5479), - [sym__unquoted_anonymous_prefix] = STATE(7531), + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_rest] = STATE(7626), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2884), + [sym_val_range] = STATE(3093), + [sym__val_range] = STATE(7378), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(3015), + [sym_val_variable] = STATE(2885), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2627), + [sym__val_number] = STATE(3088), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__str_double_quotes] = STATE(3056), + [sym_val_table] = STATE(3096), + [sym__unquoted_in_list] = STATE(3060), + [sym__unquoted_anonymous_prefix] = STATE(7454), [sym_comment] = STATE(1125), - [anon_sym_true] = ACTIONS(4161), - [anon_sym_false] = ACTIONS(4161), - [anon_sym_null] = ACTIONS(4163), - [aux_sym_cmd_identifier_token38] = ACTIONS(4165), - [aux_sym_cmd_identifier_token39] = ACTIONS(4165), - [aux_sym_cmd_identifier_token40] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(4167), - [aux_sym__val_number_decimal_token2] = ACTIONS(4169), - [aux_sym__val_number_decimal_token3] = ACTIONS(4171), - [aux_sym__val_number_decimal_token4] = ACTIONS(4173), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4175), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [aux_sym__match_pattern_list_repeat1] = STATE(1232), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3701), + [aux_sym_cmd_identifier_token38] = ACTIONS(3703), + [aux_sym_cmd_identifier_token39] = ACTIONS(3703), + [aux_sym_cmd_identifier_token40] = ACTIONS(3703), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4081), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_DOT_DOT] = ACTIONS(4083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), + [anon_sym_DOT_DOT_LT] = ACTIONS(3719), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3723), + [aux_sym__val_number_decimal_token3] = ACTIONS(3725), + [aux_sym__val_number_decimal_token4] = ACTIONS(3727), + [aux_sym__val_number_token1] = ACTIONS(3729), + [aux_sym__val_number_token2] = ACTIONS(3729), + [aux_sym__val_number_token3] = ACTIONS(3729), + [anon_sym_0b] = ACTIONS(3731), + [anon_sym_0o] = ACTIONS(3733), + [anon_sym_0x] = ACTIONS(3733), + [sym_val_date] = ACTIONS(3735), + [anon_sym_DQUOTE] = ACTIONS(3737), + [sym__str_single_quotes] = ACTIONS(3739), + [sym__str_back_ticks] = ACTIONS(3739), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(247), }, [1126] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1798), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1613), - [sym_val_variable] = STATE(1822), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1237), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym_unquoted] = STATE(1799), - [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1126), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4179), - [aux_sym_cmd_identifier_token38] = ACTIONS(4181), - [aux_sym_cmd_identifier_token39] = ACTIONS(4181), - [aux_sym_cmd_identifier_token40] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(3934), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(3969), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1127] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1811), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1613), - [sym_val_variable] = STATE(1822), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1237), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym_unquoted] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1127), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4179), - [aux_sym_cmd_identifier_token38] = ACTIONS(4181), - [aux_sym_cmd_identifier_token39] = ACTIONS(4181), - [aux_sym_cmd_identifier_token40] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(3934), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1128] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5937), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(6291), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5296), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5938), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1128), - [anon_sym_true] = ACTIONS(4201), - [anon_sym_false] = ACTIONS(4201), - [anon_sym_null] = ACTIONS(4203), - [aux_sym_cmd_identifier_token38] = ACTIONS(4205), - [aux_sym_cmd_identifier_token39] = ACTIONS(4205), - [aux_sym_cmd_identifier_token40] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4215), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [sym__newline] = ACTIONS(1022), + [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_LBRACE] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4087), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1024), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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(247), }, [1129] = { - [sym__val_range] = STATE(7517), - [sym__value] = STATE(2681), - [sym_val_nothing] = STATE(2688), - [sym_val_bool] = STATE(2629), - [sym_val_variable] = STATE(2688), - [sym_val_number] = STATE(2688), - [sym__val_number_decimal] = STATE(2420), - [sym__val_number] = STATE(2686), - [sym_val_duration] = STATE(2688), - [sym_val_filesize] = STATE(2688), - [sym_val_binary] = STATE(2688), - [sym_val_string] = STATE(2688), - [sym__str_double_quotes] = STATE(2763), - [sym_val_interpolated] = STATE(2688), - [sym__inter_single_quotes] = STATE(2787), - [sym__inter_double_quotes] = STATE(2687), - [sym_val_list] = STATE(2688), - [sym_val_record] = STATE(2688), - [sym_val_table] = STATE(2688), - [sym_val_closure] = STATE(2688), - [sym_unquoted] = STATE(2675), - [sym__unquoted_anonymous_prefix] = STATE(7477), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(4117), - [anon_sym_false] = ACTIONS(4117), - [anon_sym_null] = ACTIONS(4119), - [aux_sym_cmd_identifier_token38] = ACTIONS(4121), - [aux_sym_cmd_identifier_token39] = ACTIONS(4121), - [aux_sym_cmd_identifier_token40] = ACTIONS(4121), - [anon_sym_LBRACK] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4125), - [anon_sym_DOLLAR] = ACTIONS(4127), - [aux_sym_ctrl_match_token1] = ACTIONS(4129), - [anon_sym_DOT_DOT] = ACTIONS(4131), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4133), - [anon_sym_DOT_DOT_LT] = ACTIONS(4133), - [aux_sym__val_number_decimal_token1] = ACTIONS(4135), - [aux_sym__val_number_decimal_token2] = ACTIONS(4137), - [aux_sym__val_number_decimal_token3] = ACTIONS(4139), - [aux_sym__val_number_decimal_token4] = ACTIONS(4141), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [anon_sym_0b] = ACTIONS(4145), - [anon_sym_0o] = ACTIONS(4147), - [anon_sym_0x] = ACTIONS(4147), - [sym_val_date] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(4151), - [sym__str_single_quotes] = ACTIONS(4153), - [sym__str_back_ticks] = ACTIONS(4153), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4155), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4157), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(4089), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, [1130] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(6291), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5296), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1130), - [anon_sym_true] = ACTIONS(4201), - [anon_sym_false] = ACTIONS(4201), - [anon_sym_null] = ACTIONS(4203), - [aux_sym_cmd_identifier_token38] = ACTIONS(4205), - [aux_sym_cmd_identifier_token39] = ACTIONS(4205), - [aux_sym_cmd_identifier_token40] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4215), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [1131] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5920), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(6291), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5296), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5922), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1131), - [anon_sym_true] = ACTIONS(4201), - [anon_sym_false] = ACTIONS(4201), - [anon_sym_null] = ACTIONS(4203), - [aux_sym_cmd_identifier_token38] = ACTIONS(4205), - [aux_sym_cmd_identifier_token39] = ACTIONS(4205), - [aux_sym_cmd_identifier_token40] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4215), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [sym__newline] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [1132] = { - [sym__val_range] = STATE(7672), - [sym__value] = STATE(4849), - [sym_val_nothing] = STATE(4945), - [sym_val_bool] = STATE(4563), - [sym_val_variable] = STATE(4945), - [sym_val_number] = STATE(4945), - [sym__val_number_decimal] = STATE(4015), - [sym__val_number] = STATE(4892), - [sym_val_duration] = STATE(4945), - [sym_val_filesize] = STATE(4945), - [sym_val_binary] = STATE(4945), - [sym_val_string] = STATE(4945), - [sym__str_double_quotes] = STATE(4462), - [sym_val_interpolated] = STATE(4945), - [sym__inter_single_quotes] = STATE(4775), - [sym__inter_double_quotes] = STATE(4778), - [sym_val_list] = STATE(4945), - [sym_val_record] = STATE(4945), - [sym_val_table] = STATE(4945), - [sym_val_closure] = STATE(4945), - [sym_unquoted] = STATE(4893), - [sym__unquoted_anonymous_prefix] = STATE(7676), [sym_comment] = STATE(1132), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [aux_sym_cmd_identifier_token38] = ACTIONS(4221), - [aux_sym_cmd_identifier_token39] = ACTIONS(4221), - [aux_sym_cmd_identifier_token40] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4227), - [aux_sym_ctrl_match_token1] = ACTIONS(4229), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2190), - [aux_sym__val_number_decimal_token2] = ACTIONS(4235), - [aux_sym__val_number_decimal_token3] = ACTIONS(4237), - [aux_sym__val_number_decimal_token4] = ACTIONS(4239), - [aux_sym__val_number_token1] = ACTIONS(4241), - [aux_sym__val_number_token2] = ACTIONS(4241), - [aux_sym__val_number_token3] = ACTIONS(4241), - [anon_sym_0b] = ACTIONS(2198), - [anon_sym_0o] = ACTIONS(2200), - [anon_sym_0x] = ACTIONS(2200), - [sym_val_date] = ACTIONS(4243), - [anon_sym_DQUOTE] = ACTIONS(4245), - [sym__str_single_quotes] = ACTIONS(4247), - [sym__str_back_ticks] = ACTIONS(4247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, [1133] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5947), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(6291), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5296), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5948), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1133), - [anon_sym_true] = ACTIONS(4201), - [anon_sym_false] = ACTIONS(4201), - [anon_sym_null] = ACTIONS(4203), - [aux_sym_cmd_identifier_token38] = ACTIONS(4205), - [aux_sym_cmd_identifier_token39] = ACTIONS(4205), - [aux_sym_cmd_identifier_token40] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4215), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [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_RBRACE] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4091), + [aux_sym_expr_binary_token1] = ACTIONS(1024), + [aux_sym_expr_binary_token2] = ACTIONS(1024), + [aux_sym_expr_binary_token3] = ACTIONS(1024), + [aux_sym_expr_binary_token4] = ACTIONS(1024), + [aux_sym_expr_binary_token5] = ACTIONS(1024), + [aux_sym_expr_binary_token6] = ACTIONS(1024), + [aux_sym_expr_binary_token7] = ACTIONS(1024), + [aux_sym_expr_binary_token8] = ACTIONS(1024), + [aux_sym_expr_binary_token9] = ACTIONS(1024), + [aux_sym_expr_binary_token10] = ACTIONS(1024), + [aux_sym_expr_binary_token11] = ACTIONS(1024), + [aux_sym_expr_binary_token12] = ACTIONS(1024), + [aux_sym_expr_binary_token13] = ACTIONS(1024), + [aux_sym_expr_binary_token14] = ACTIONS(1024), + [aux_sym_expr_binary_token15] = ACTIONS(1024), + [aux_sym_expr_binary_token16] = ACTIONS(1024), + [aux_sym_expr_binary_token17] = ACTIONS(1024), + [aux_sym_expr_binary_token18] = ACTIONS(1024), + [aux_sym_expr_binary_token19] = ACTIONS(1024), + [aux_sym_expr_binary_token20] = ACTIONS(1024), + [aux_sym_expr_binary_token21] = ACTIONS(1024), + [aux_sym_expr_binary_token22] = ACTIONS(1024), + [aux_sym_expr_binary_token23] = ACTIONS(1024), + [aux_sym_expr_binary_token24] = ACTIONS(1024), + [aux_sym_expr_binary_token25] = ACTIONS(1024), + [aux_sym_expr_binary_token26] = ACTIONS(1024), + [aux_sym_expr_binary_token27] = ACTIONS(1024), + [aux_sym_expr_binary_token28] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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(247), }, [1134] = { - [sym__val_range] = STATE(7672), - [sym__value] = STATE(4800), - [sym_val_nothing] = STATE(4945), - [sym_val_bool] = STATE(4563), - [sym_val_variable] = STATE(4945), - [sym_val_number] = STATE(4945), - [sym__val_number_decimal] = STATE(4015), - [sym__val_number] = STATE(4892), - [sym_val_duration] = STATE(4945), - [sym_val_filesize] = STATE(4945), - [sym_val_binary] = STATE(4945), - [sym_val_string] = STATE(4945), - [sym__str_double_quotes] = STATE(4462), - [sym_val_interpolated] = STATE(4945), - [sym__inter_single_quotes] = STATE(4775), - [sym__inter_double_quotes] = STATE(4778), - [sym_val_list] = STATE(4945), - [sym_val_record] = STATE(4945), - [sym_val_table] = STATE(4945), - [sym_val_closure] = STATE(4945), - [sym_unquoted] = STATE(4809), - [sym__unquoted_anonymous_prefix] = STATE(7676), [sym_comment] = STATE(1134), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [aux_sym_cmd_identifier_token38] = ACTIONS(4221), - [aux_sym_cmd_identifier_token39] = ACTIONS(4221), - [aux_sym_cmd_identifier_token40] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4227), - [aux_sym_ctrl_match_token1] = ACTIONS(4229), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2190), - [aux_sym__val_number_decimal_token2] = ACTIONS(4235), - [aux_sym__val_number_decimal_token3] = ACTIONS(4237), - [aux_sym__val_number_decimal_token4] = ACTIONS(4239), - [aux_sym__val_number_token1] = ACTIONS(4241), - [aux_sym__val_number_token2] = ACTIONS(4241), - [aux_sym__val_number_token3] = ACTIONS(4241), - [anon_sym_0b] = ACTIONS(2198), - [anon_sym_0o] = ACTIONS(2200), - [anon_sym_0x] = ACTIONS(2200), - [sym_val_date] = ACTIONS(4243), - [anon_sym_DQUOTE] = ACTIONS(4245), - [sym__str_single_quotes] = ACTIONS(4247), - [sym__str_back_ticks] = ACTIONS(4247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(4093), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, [1135] = { - [sym__val_range] = STATE(7772), - [sym__value] = STATE(5937), - [sym_val_nothing] = STATE(4784), - [sym_val_bool] = STATE(7097), - [sym_val_variable] = STATE(4784), - [sym_val_number] = STATE(4784), - [sym__val_number_decimal] = STATE(5410), - [sym__val_number] = STATE(4955), - [sym_val_duration] = STATE(4784), - [sym_val_filesize] = STATE(4784), - [sym_val_binary] = STATE(4784), - [sym_val_string] = STATE(4784), - [sym__str_double_quotes] = STATE(4704), - [sym_val_interpolated] = STATE(4784), - [sym__inter_single_quotes] = STATE(4879), - [sym__inter_double_quotes] = STATE(4781), - [sym_val_list] = STATE(4784), - [sym_val_record] = STATE(4784), - [sym_val_table] = STATE(4784), - [sym_val_closure] = STATE(4784), - [sym_unquoted] = STATE(5938), - [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1135), - [anon_sym_true] = ACTIONS(4023), - [anon_sym_false] = ACTIONS(4023), - [anon_sym_null] = ACTIONS(4025), - [aux_sym_cmd_identifier_token38] = ACTIONS(4027), - [aux_sym_cmd_identifier_token39] = ACTIONS(4027), - [aux_sym_cmd_identifier_token40] = ACTIONS(4027), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_DOLLAR] = ACTIONS(4033), - [aux_sym_ctrl_match_token1] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), - [anon_sym_DOT_DOT_LT] = ACTIONS(4039), - [aux_sym__val_number_decimal_token1] = ACTIONS(4041), - [aux_sym__val_number_decimal_token2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token3] = ACTIONS(4045), - [aux_sym__val_number_decimal_token4] = ACTIONS(4047), - [aux_sym__val_number_token1] = ACTIONS(3539), - [aux_sym__val_number_token2] = ACTIONS(3539), - [aux_sym__val_number_token3] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(3541), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [aux_sym_expr_binary_token1] = ACTIONS(1048), + [aux_sym_expr_binary_token2] = ACTIONS(1048), + [aux_sym_expr_binary_token3] = ACTIONS(1048), + [aux_sym_expr_binary_token4] = ACTIONS(1048), + [aux_sym_expr_binary_token5] = ACTIONS(1048), + [aux_sym_expr_binary_token6] = ACTIONS(1048), + [aux_sym_expr_binary_token7] = ACTIONS(1048), + [aux_sym_expr_binary_token8] = ACTIONS(1048), + [aux_sym_expr_binary_token9] = ACTIONS(1048), + [aux_sym_expr_binary_token10] = ACTIONS(1048), + [aux_sym_expr_binary_token11] = ACTIONS(1048), + [aux_sym_expr_binary_token12] = ACTIONS(1048), + [aux_sym_expr_binary_token13] = ACTIONS(1048), + [aux_sym_expr_binary_token14] = ACTIONS(1048), + [aux_sym_expr_binary_token15] = ACTIONS(1048), + [aux_sym_expr_binary_token16] = ACTIONS(1048), + [aux_sym_expr_binary_token17] = ACTIONS(1048), + [aux_sym_expr_binary_token18] = ACTIONS(1048), + [aux_sym_expr_binary_token19] = ACTIONS(1048), + [aux_sym_expr_binary_token20] = ACTIONS(1048), + [aux_sym_expr_binary_token21] = ACTIONS(1048), + [aux_sym_expr_binary_token22] = ACTIONS(1048), + [aux_sym_expr_binary_token23] = ACTIONS(1048), + [aux_sym_expr_binary_token24] = ACTIONS(1048), + [aux_sym_expr_binary_token25] = ACTIONS(1048), + [aux_sym_expr_binary_token26] = ACTIONS(1048), + [aux_sym_expr_binary_token27] = ACTIONS(1048), + [aux_sym_expr_binary_token28] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [aux_sym_record_entry_token1] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, [1136] = { - [sym__val_range] = STATE(7672), - [sym__value] = STATE(4896), - [sym_val_nothing] = STATE(4945), - [sym_val_bool] = STATE(4563), - [sym_val_variable] = STATE(4945), - [sym_val_number] = STATE(4945), - [sym__val_number_decimal] = STATE(4015), - [sym__val_number] = STATE(4892), - [sym_val_duration] = STATE(4945), - [sym_val_filesize] = STATE(4945), - [sym_val_binary] = STATE(4945), - [sym_val_string] = STATE(4945), - [sym__str_double_quotes] = STATE(4462), - [sym_val_interpolated] = STATE(4945), - [sym__inter_single_quotes] = STATE(4775), - [sym__inter_double_quotes] = STATE(4778), - [sym_val_list] = STATE(4945), - [sym_val_record] = STATE(4945), - [sym_val_table] = STATE(4945), - [sym_val_closure] = STATE(4945), - [sym_unquoted] = STATE(4899), - [sym__unquoted_anonymous_prefix] = STATE(7676), + [sym__expr_parenthesized_immediate] = STATE(1934), + [sym__immediate_decimal] = STATE(1935), + [sym_val_variable] = STATE(1934), [sym_comment] = STATE(1136), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [aux_sym_cmd_identifier_token38] = ACTIONS(4221), - [aux_sym_cmd_identifier_token39] = ACTIONS(4221), - [aux_sym_cmd_identifier_token40] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4227), - [aux_sym_ctrl_match_token1] = ACTIONS(4229), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2190), - [aux_sym__val_number_decimal_token2] = ACTIONS(4235), - [aux_sym__val_number_decimal_token3] = ACTIONS(4237), - [aux_sym__val_number_decimal_token4] = ACTIONS(4239), - [aux_sym__val_number_token1] = ACTIONS(4241), - [aux_sym__val_number_token2] = ACTIONS(4241), - [aux_sym__val_number_token3] = ACTIONS(4241), - [anon_sym_0b] = ACTIONS(2198), - [anon_sym_0o] = ACTIONS(2200), - [anon_sym_0x] = ACTIONS(2200), - [sym_val_date] = ACTIONS(4243), - [anon_sym_DQUOTE] = ACTIONS(4245), - [sym__str_single_quotes] = ACTIONS(4247), - [sym__str_back_ticks] = ACTIONS(4247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2216), + [ts_builtin_sym_end] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [anon_sym_null] = ACTIONS(1604), + [aux_sym_cmd_identifier_token38] = ACTIONS(1604), + [aux_sym_cmd_identifier_token39] = ACTIONS(1604), + [aux_sym_cmd_identifier_token40] = ACTIONS(1604), + [sym__newline] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_err_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_GT_PIPE] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1604), + [anon_sym_DOT_DOT_LT] = ACTIONS(1604), + [aux_sym__immediate_decimal_token1] = ACTIONS(4095), + [aux_sym__immediate_decimal_token3] = ACTIONS(4097), + [aux_sym__immediate_decimal_token4] = ACTIONS(4099), + [aux_sym__immediate_decimal_token5] = ACTIONS(4101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1602), + [aux_sym__val_number_decimal_token2] = ACTIONS(1602), + [aux_sym__val_number_decimal_token3] = ACTIONS(1602), + [aux_sym__val_number_decimal_token4] = ACTIONS(1602), + [aux_sym__val_number_token1] = ACTIONS(1604), + [aux_sym__val_number_token2] = ACTIONS(1604), + [aux_sym__val_number_token3] = ACTIONS(1604), + [anon_sym_0b] = ACTIONS(1602), + [anon_sym_0o] = ACTIONS(1602), + [anon_sym_0x] = ACTIONS(1602), + [sym_val_date] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [sym__str_single_quotes] = ACTIONS(1604), + [sym__str_back_ticks] = ACTIONS(1604), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1604), + [anon_sym_out_GT_GT] = ACTIONS(1604), + [anon_sym_e_GT_GT] = ACTIONS(1604), + [anon_sym_o_GT_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1604), + [aux_sym_unquoted_token1] = ACTIONS(1602), [anon_sym_POUND] = ACTIONS(247), }, [1137] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4743), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(7030), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4746), - [sym__unquoted_anonymous_prefix] = STATE(7678), [sym_comment] = STATE(1137), - [anon_sym_true] = ACTIONS(4253), - [anon_sym_false] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(4255), - [aux_sym_cmd_identifier_token38] = ACTIONS(4257), - [aux_sym_cmd_identifier_token39] = ACTIONS(4257), - [aux_sym_cmd_identifier_token40] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [1138] = { - [sym__val_range] = STATE(7672), - [sym__value] = STATE(4894), - [sym_val_nothing] = STATE(4945), - [sym_val_bool] = STATE(4563), - [sym_val_variable] = STATE(4945), - [sym_val_number] = STATE(4945), - [sym__val_number_decimal] = STATE(4015), - [sym__val_number] = STATE(4892), - [sym_val_duration] = STATE(4945), - [sym_val_filesize] = STATE(4945), - [sym_val_binary] = STATE(4945), - [sym_val_string] = STATE(4945), - [sym__str_double_quotes] = STATE(4462), - [sym_val_interpolated] = STATE(4945), - [sym__inter_single_quotes] = STATE(4775), - [sym__inter_double_quotes] = STATE(4778), - [sym_val_list] = STATE(4945), - [sym_val_record] = STATE(4945), - [sym_val_table] = STATE(4945), - [sym_val_closure] = STATE(4945), - [sym_unquoted] = STATE(4834), - [sym__unquoted_anonymous_prefix] = STATE(7676), [sym_comment] = STATE(1138), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [aux_sym_cmd_identifier_token38] = ACTIONS(4221), - [aux_sym_cmd_identifier_token39] = ACTIONS(4221), - [aux_sym_cmd_identifier_token40] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4227), - [aux_sym_ctrl_match_token1] = ACTIONS(4229), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2190), - [aux_sym__val_number_decimal_token2] = ACTIONS(4235), - [aux_sym__val_number_decimal_token3] = ACTIONS(4237), - [aux_sym__val_number_decimal_token4] = ACTIONS(4239), - [aux_sym__val_number_token1] = ACTIONS(4241), - [aux_sym__val_number_token2] = ACTIONS(4241), - [aux_sym__val_number_token3] = ACTIONS(4241), - [anon_sym_0b] = ACTIONS(2198), - [anon_sym_0o] = ACTIONS(2200), - [anon_sym_0x] = ACTIONS(2200), - [sym_val_date] = ACTIONS(4243), - [anon_sym_DQUOTE] = ACTIONS(4245), - [sym__str_single_quotes] = ACTIONS(4247), - [sym__str_back_ticks] = ACTIONS(4247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [1139] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4614), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(7030), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4621), - [sym__unquoted_anonymous_prefix] = STATE(7678), [sym_comment] = STATE(1139), - [anon_sym_true] = ACTIONS(4253), - [anon_sym_false] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(4255), - [aux_sym_cmd_identifier_token38] = ACTIONS(4257), - [aux_sym_cmd_identifier_token39] = ACTIONS(4257), - [aux_sym_cmd_identifier_token40] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(1036), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, [1140] = { - [sym__expr_parenthesized_immediate] = STATE(7403), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5948), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6709), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5391), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5953), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1140), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1575), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT2] = ACTIONS(4291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4293), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4293), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(4295), - [sym_duration_unit] = ACTIONS(4297), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(4299), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4105), + [aux_sym_cmd_identifier_token38] = ACTIONS(4107), + [aux_sym_cmd_identifier_token39] = ACTIONS(4107), + [aux_sym_cmd_identifier_token40] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4121), + [aux_sym__val_number_decimal_token2] = ACTIONS(4123), + [aux_sym__val_number_decimal_token3] = ACTIONS(4125), + [aux_sym__val_number_decimal_token4] = ACTIONS(4127), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1141] = { - [sym__val_range] = STATE(7774), - [sym__value] = STATE(2620), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5515), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(2621), - [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5290), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(6008), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1141), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4089), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(4091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), - [anon_sym_DOT_DOT_LT] = ACTIONS(4093), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4141), + [aux_sym_cmd_identifier_token39] = ACTIONS(4141), + [aux_sym_cmd_identifier_token40] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4151), + [aux_sym__val_number_decimal_token4] = ACTIONS(4153), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1142] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4755), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(7030), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4611), - [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5932), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6709), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5391), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1142), - [anon_sym_true] = ACTIONS(4253), - [anon_sym_false] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(4255), - [aux_sym_cmd_identifier_token38] = ACTIONS(4257), - [aux_sym_cmd_identifier_token39] = ACTIONS(4257), - [aux_sym_cmd_identifier_token40] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4105), + [aux_sym_cmd_identifier_token38] = ACTIONS(4107), + [aux_sym_cmd_identifier_token39] = ACTIONS(4107), + [aux_sym_cmd_identifier_token40] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4121), + [aux_sym__val_number_decimal_token2] = ACTIONS(4123), + [aux_sym__val_number_decimal_token3] = ACTIONS(4125), + [aux_sym__val_number_decimal_token4] = ACTIONS(4127), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1143] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4743), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(3973), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4746), - [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5935), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6709), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5391), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5939), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1143), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4303), - [aux_sym_cmd_identifier_token38] = ACTIONS(4305), - [aux_sym_cmd_identifier_token39] = ACTIONS(4305), - [aux_sym_cmd_identifier_token40] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4307), - [aux_sym__val_number_decimal_token3] = ACTIONS(4309), - [aux_sym__val_number_decimal_token4] = ACTIONS(4311), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4105), + [aux_sym_cmd_identifier_token38] = ACTIONS(4107), + [aux_sym_cmd_identifier_token39] = ACTIONS(4107), + [aux_sym_cmd_identifier_token40] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4121), + [aux_sym__val_number_decimal_token2] = ACTIONS(4123), + [aux_sym__val_number_decimal_token3] = ACTIONS(4125), + [aux_sym__val_number_decimal_token4] = ACTIONS(4127), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1144] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4717), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(7030), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4738), - [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6709), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5391), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(6008), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1144), - [anon_sym_true] = ACTIONS(4253), - [anon_sym_false] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(4255), - [aux_sym_cmd_identifier_token38] = ACTIONS(4257), - [aux_sym_cmd_identifier_token39] = ACTIONS(4257), - [aux_sym_cmd_identifier_token40] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4105), + [aux_sym_cmd_identifier_token38] = ACTIONS(4107), + [aux_sym_cmd_identifier_token39] = ACTIONS(4107), + [aux_sym_cmd_identifier_token40] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4121), + [aux_sym__val_number_decimal_token2] = ACTIONS(4123), + [aux_sym__val_number_decimal_token3] = ACTIONS(4125), + [aux_sym__val_number_decimal_token4] = ACTIONS(4127), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1145] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4614), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(3973), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4621), - [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5935), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5290), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5939), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1145), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4303), - [aux_sym_cmd_identifier_token38] = ACTIONS(4305), - [aux_sym_cmd_identifier_token39] = ACTIONS(4305), - [aux_sym_cmd_identifier_token40] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4307), - [aux_sym__val_number_decimal_token3] = ACTIONS(4309), - [aux_sym__val_number_decimal_token4] = ACTIONS(4311), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4141), + [aux_sym_cmd_identifier_token39] = ACTIONS(4141), + [aux_sym_cmd_identifier_token40] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4151), + [aux_sym__val_number_decimal_token4] = ACTIONS(4153), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1146] = { - [sym_path] = STATE(1238), [sym_comment] = STATE(1146), - [aux_sym_cell_path_repeat1] = STATE(1146), - [ts_builtin_sym_end] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1052), + [anon_sym_DASH_EQ] = ACTIONS(1052), + [anon_sym_STAR_EQ] = ACTIONS(1052), + [anon_sym_SLASH_EQ] = ACTIONS(1052), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_expr_binary_token1] = ACTIONS(1052), + [aux_sym_expr_binary_token2] = ACTIONS(1052), + [aux_sym_expr_binary_token3] = ACTIONS(1052), + [aux_sym_expr_binary_token4] = ACTIONS(1052), + [aux_sym_expr_binary_token5] = ACTIONS(1052), + [aux_sym_expr_binary_token6] = ACTIONS(1052), + [aux_sym_expr_binary_token7] = ACTIONS(1052), + [aux_sym_expr_binary_token8] = ACTIONS(1052), + [aux_sym_expr_binary_token9] = ACTIONS(1052), + [aux_sym_expr_binary_token10] = ACTIONS(1052), + [aux_sym_expr_binary_token11] = ACTIONS(1052), + [aux_sym_expr_binary_token12] = ACTIONS(1052), + [aux_sym_expr_binary_token13] = ACTIONS(1052), + [aux_sym_expr_binary_token14] = ACTIONS(1052), + [aux_sym_expr_binary_token15] = ACTIONS(1052), + [aux_sym_expr_binary_token16] = ACTIONS(1052), + [aux_sym_expr_binary_token17] = ACTIONS(1052), + [aux_sym_expr_binary_token18] = ACTIONS(1052), + [aux_sym_expr_binary_token19] = ACTIONS(1052), + [aux_sym_expr_binary_token20] = ACTIONS(1052), + [aux_sym_expr_binary_token21] = ACTIONS(1052), + [aux_sym_expr_binary_token22] = ACTIONS(1052), + [aux_sym_expr_binary_token23] = ACTIONS(1052), + [aux_sym_expr_binary_token24] = ACTIONS(1052), + [aux_sym_expr_binary_token25] = ACTIONS(1052), + [aux_sym_expr_binary_token26] = ACTIONS(1052), + [aux_sym_expr_binary_token27] = ACTIONS(1052), + [aux_sym_expr_binary_token28] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [aux_sym_record_entry_token1] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), [anon_sym_POUND] = ACTIONS(247), }, [1147] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4755), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(3973), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4611), - [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_rest] = STATE(7447), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2884), + [sym_val_range] = STATE(3093), + [sym__val_range] = STATE(7378), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(3015), + [sym_val_variable] = STATE(2885), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2627), + [sym__val_number] = STATE(3088), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__str_double_quotes] = STATE(3056), + [sym_val_table] = STATE(3096), + [sym__unquoted_in_list] = STATE(3060), + [sym__unquoted_anonymous_prefix] = STATE(7454), [sym_comment] = STATE(1147), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4303), - [aux_sym_cmd_identifier_token38] = ACTIONS(4305), - [aux_sym_cmd_identifier_token39] = ACTIONS(4305), - [aux_sym_cmd_identifier_token40] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4307), - [aux_sym__val_number_decimal_token3] = ACTIONS(4309), - [aux_sym__val_number_decimal_token4] = ACTIONS(4311), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [aux_sym__match_pattern_list_repeat1] = STATE(1232), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3701), + [aux_sym_cmd_identifier_token38] = ACTIONS(3703), + [aux_sym_cmd_identifier_token39] = ACTIONS(3703), + [aux_sym_cmd_identifier_token40] = ACTIONS(3703), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_DOT_DOT] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), + [anon_sym_DOT_DOT_LT] = ACTIONS(3719), + [aux_sym__val_number_decimal_token1] = ACTIONS(3721), + [aux_sym__val_number_decimal_token2] = ACTIONS(3723), + [aux_sym__val_number_decimal_token3] = ACTIONS(3725), + [aux_sym__val_number_decimal_token4] = ACTIONS(3727), + [aux_sym__val_number_token1] = ACTIONS(3729), + [aux_sym__val_number_token2] = ACTIONS(3729), + [aux_sym__val_number_token3] = ACTIONS(3729), + [anon_sym_0b] = ACTIONS(3731), + [anon_sym_0o] = ACTIONS(3733), + [anon_sym_0x] = ACTIONS(3733), + [sym_val_date] = ACTIONS(3735), + [anon_sym_DQUOTE] = ACTIONS(3737), + [sym__str_single_quotes] = ACTIONS(3739), + [sym__str_back_ticks] = ACTIONS(3739), + [anon_sym_err_GT] = ACTIONS(2587), + [anon_sym_out_GT] = ACTIONS(2587), + [anon_sym_e_GT] = ACTIONS(2587), + [anon_sym_o_GT] = ACTIONS(2587), + [anon_sym_err_PLUSout_GT] = ACTIONS(2587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), + [anon_sym_o_PLUSe_GT] = ACTIONS(2587), + [anon_sym_e_PLUSo_GT] = ACTIONS(2587), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), [anon_sym_POUND] = ACTIONS(247), }, [1148] = { - [sym__val_range] = STATE(7492), - [sym__value] = STATE(3693), - [sym_val_nothing] = STATE(3533), - [sym_val_bool] = STATE(3515), - [sym_val_variable] = STATE(3533), - [sym_val_number] = STATE(3533), - [sym__val_number_decimal] = STATE(3370), - [sym__val_number] = STATE(3535), - [sym_val_duration] = STATE(3533), - [sym_val_filesize] = STATE(3533), - [sym_val_binary] = STATE(3533), - [sym_val_string] = STATE(3533), - [sym__str_double_quotes] = STATE(3471), - [sym_val_interpolated] = STATE(3533), - [sym__inter_single_quotes] = STATE(3648), - [sym__inter_double_quotes] = STATE(3649), - [sym_val_list] = STATE(3533), - [sym_val_record] = STATE(3533), - [sym_val_table] = STATE(3533), - [sym_val_closure] = STATE(3533), - [sym_unquoted] = STATE(3525), - [sym__unquoted_anonymous_prefix] = STATE(7626), + [sym__expr_parenthesized_immediate] = STATE(7299), [sym_comment] = STATE(1148), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_null] = ACTIONS(4320), - [aux_sym_cmd_identifier_token38] = ACTIONS(4322), - [aux_sym_cmd_identifier_token39] = ACTIONS(4322), - [aux_sym_cmd_identifier_token40] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_DOLLAR] = ACTIONS(4328), - [aux_sym_ctrl_match_token1] = ACTIONS(4330), - [anon_sym_DOT_DOT] = ACTIONS(4332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), - [anon_sym_DOT_DOT_LT] = ACTIONS(4334), - [aux_sym__val_number_decimal_token1] = ACTIONS(4336), - [aux_sym__val_number_decimal_token2] = ACTIONS(4338), - [aux_sym__val_number_decimal_token3] = ACTIONS(4340), - [aux_sym__val_number_decimal_token4] = ACTIONS(4342), - [aux_sym__val_number_token1] = ACTIONS(4344), - [aux_sym__val_number_token2] = ACTIONS(4344), - [aux_sym__val_number_token3] = ACTIONS(4344), - [anon_sym_0b] = ACTIONS(4346), - [anon_sym_0o] = ACTIONS(4348), - [anon_sym_0x] = ACTIONS(4348), - [sym_val_date] = ACTIONS(4350), - [anon_sym_DQUOTE] = ACTIONS(4352), - [sym__str_single_quotes] = ACTIONS(4354), - [sym__str_back_ticks] = ACTIONS(4354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4360), + [ts_builtin_sym_end] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1572), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT2] = ACTIONS(4161), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT] = ACTIONS(1560), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4163), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4163), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [anon_sym_0b] = ACTIONS(1560), + [sym_filesize_unit] = ACTIONS(4165), + [sym_duration_unit] = ACTIONS(4167), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [aux_sym_unquoted_token2] = ACTIONS(4169), [anon_sym_POUND] = ACTIONS(247), }, [1149] = { - [sym__val_range] = STATE(7733), - [sym__value] = STATE(4717), - [sym_val_nothing] = STATE(4607), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4607), - [sym_val_number] = STATE(4607), - [sym__val_number_decimal] = STATE(3973), - [sym__val_number] = STATE(4724), - [sym_val_duration] = STATE(4607), - [sym_val_filesize] = STATE(4607), - [sym_val_binary] = STATE(4607), - [sym_val_string] = STATE(4607), - [sym__str_double_quotes] = STATE(4321), - [sym_val_interpolated] = STATE(4607), - [sym__inter_single_quotes] = STATE(4619), - [sym__inter_double_quotes] = STATE(4620), - [sym_val_list] = STATE(4607), - [sym_val_record] = STATE(4607), - [sym_val_table] = STATE(4607), - [sym_val_closure] = STATE(4607), - [sym_unquoted] = STATE(4738), - [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5948), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5290), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5953), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1149), - [anon_sym_true] = ACTIONS(4301), - [anon_sym_false] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4303), - [aux_sym_cmd_identifier_token38] = ACTIONS(4305), - [aux_sym_cmd_identifier_token39] = ACTIONS(4305), - [aux_sym_cmd_identifier_token40] = ACTIONS(4305), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4263), - [aux_sym_ctrl_match_token1] = ACTIONS(4265), - [anon_sym_DOT_DOT] = ACTIONS(4267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), - [anon_sym_DOT_DOT_LT] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4307), - [aux_sym__val_number_decimal_token3] = ACTIONS(4309), - [aux_sym__val_number_decimal_token4] = ACTIONS(4311), - [aux_sym__val_number_token1] = ACTIONS(4279), - [aux_sym__val_number_token2] = ACTIONS(4279), - [aux_sym__val_number_token3] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4283), - [sym__str_single_quotes] = ACTIONS(4285), - [sym__str_back_ticks] = ACTIONS(4285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4141), + [aux_sym_cmd_identifier_token39] = ACTIONS(4141), + [aux_sym_cmd_identifier_token40] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4151), + [aux_sym__val_number_decimal_token4] = ACTIONS(4153), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1150] = { - [sym__val_range] = STATE(7492), - [sym__value] = STATE(3695), - [sym_val_nothing] = STATE(3533), - [sym_val_bool] = STATE(3515), - [sym_val_variable] = STATE(3533), - [sym_val_number] = STATE(3533), - [sym__val_number_decimal] = STATE(3370), - [sym__val_number] = STATE(3535), - [sym_val_duration] = STATE(3533), - [sym_val_filesize] = STATE(3533), - [sym_val_binary] = STATE(3533), - [sym_val_string] = STATE(3533), - [sym__str_double_quotes] = STATE(3471), - [sym_val_interpolated] = STATE(3533), - [sym__inter_single_quotes] = STATE(3648), - [sym__inter_double_quotes] = STATE(3649), - [sym_val_list] = STATE(3533), - [sym_val_record] = STATE(3533), - [sym_val_table] = STATE(3533), - [sym_val_closure] = STATE(3533), - [sym_unquoted] = STATE(3696), - [sym__unquoted_anonymous_prefix] = STATE(7626), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5212), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(6008), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1150), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_null] = ACTIONS(4320), - [aux_sym_cmd_identifier_token38] = ACTIONS(4322), - [aux_sym_cmd_identifier_token39] = ACTIONS(4322), - [aux_sym_cmd_identifier_token40] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_DOLLAR] = ACTIONS(4328), - [aux_sym_ctrl_match_token1] = ACTIONS(4330), - [anon_sym_DOT_DOT] = ACTIONS(4332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), - [anon_sym_DOT_DOT_LT] = ACTIONS(4334), - [aux_sym__val_number_decimal_token1] = ACTIONS(4336), - [aux_sym__val_number_decimal_token2] = ACTIONS(4338), - [aux_sym__val_number_decimal_token3] = ACTIONS(4340), - [aux_sym__val_number_decimal_token4] = ACTIONS(4342), - [aux_sym__val_number_token1] = ACTIONS(4344), - [aux_sym__val_number_token2] = ACTIONS(4344), - [aux_sym__val_number_token3] = ACTIONS(4344), - [anon_sym_0b] = ACTIONS(4346), - [anon_sym_0o] = ACTIONS(4348), - [anon_sym_0x] = ACTIONS(4348), - [sym_val_date] = ACTIONS(4350), - [anon_sym_DQUOTE] = ACTIONS(4352), - [sym__str_single_quotes] = ACTIONS(4354), - [sym__str_back_ticks] = ACTIONS(4354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4360), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4171), + [aux_sym_cmd_identifier_token39] = ACTIONS(4171), + [aux_sym_cmd_identifier_token40] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4173), + [aux_sym__val_number_decimal_token2] = ACTIONS(4175), + [aux_sym__val_number_decimal_token3] = ACTIONS(4177), + [aux_sym__val_number_decimal_token4] = ACTIONS(4179), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1151] = { [sym_comment] = STATE(1151), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_PLUS_EQ] = ACTIONS(1062), - [anon_sym_DASH_EQ] = ACTIONS(1062), - [anon_sym_STAR_EQ] = ACTIONS(1062), - [anon_sym_SLASH_EQ] = ACTIONS(1062), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), - [sym__newline] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [aux_sym_ctrl_match_token1] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [aux_sym_expr_binary_token1] = ACTIONS(1062), - [aux_sym_expr_binary_token2] = ACTIONS(1062), - [aux_sym_expr_binary_token3] = ACTIONS(1062), - [aux_sym_expr_binary_token4] = ACTIONS(1062), - [aux_sym_expr_binary_token5] = ACTIONS(1062), - [aux_sym_expr_binary_token6] = ACTIONS(1062), - [aux_sym_expr_binary_token7] = ACTIONS(1062), - [aux_sym_expr_binary_token8] = ACTIONS(1062), - [aux_sym_expr_binary_token9] = ACTIONS(1062), - [aux_sym_expr_binary_token10] = ACTIONS(1062), - [aux_sym_expr_binary_token11] = ACTIONS(1062), - [aux_sym_expr_binary_token12] = ACTIONS(1062), - [aux_sym_expr_binary_token13] = ACTIONS(1062), - [aux_sym_expr_binary_token14] = ACTIONS(1062), - [aux_sym_expr_binary_token15] = ACTIONS(1062), - [aux_sym_expr_binary_token16] = ACTIONS(1062), - [aux_sym_expr_binary_token17] = ACTIONS(1062), - [aux_sym_expr_binary_token18] = ACTIONS(1062), - [aux_sym_expr_binary_token19] = ACTIONS(1062), - [aux_sym_expr_binary_token20] = ACTIONS(1062), - [aux_sym_expr_binary_token21] = ACTIONS(1062), - [aux_sym_expr_binary_token22] = ACTIONS(1062), - [aux_sym_expr_binary_token23] = ACTIONS(1062), - [aux_sym_expr_binary_token24] = ACTIONS(1062), - [aux_sym_expr_binary_token25] = ACTIONS(1062), - [aux_sym_expr_binary_token26] = ACTIONS(1062), - [aux_sym_expr_binary_token27] = ACTIONS(1062), - [aux_sym_expr_binary_token28] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [aux_sym_record_entry_token1] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [aux_sym_expr_binary_token1] = ACTIONS(1056), + [aux_sym_expr_binary_token2] = ACTIONS(1056), + [aux_sym_expr_binary_token3] = ACTIONS(1056), + [aux_sym_expr_binary_token4] = ACTIONS(1056), + [aux_sym_expr_binary_token5] = ACTIONS(1056), + [aux_sym_expr_binary_token6] = ACTIONS(1056), + [aux_sym_expr_binary_token7] = ACTIONS(1056), + [aux_sym_expr_binary_token8] = ACTIONS(1056), + [aux_sym_expr_binary_token9] = ACTIONS(1056), + [aux_sym_expr_binary_token10] = ACTIONS(1056), + [aux_sym_expr_binary_token11] = ACTIONS(1056), + [aux_sym_expr_binary_token12] = ACTIONS(1056), + [aux_sym_expr_binary_token13] = ACTIONS(1056), + [aux_sym_expr_binary_token14] = ACTIONS(1056), + [aux_sym_expr_binary_token15] = ACTIONS(1056), + [aux_sym_expr_binary_token16] = ACTIONS(1056), + [aux_sym_expr_binary_token17] = ACTIONS(1056), + [aux_sym_expr_binary_token18] = ACTIONS(1056), + [aux_sym_expr_binary_token19] = ACTIONS(1056), + [aux_sym_expr_binary_token20] = ACTIONS(1056), + [aux_sym_expr_binary_token21] = ACTIONS(1056), + [aux_sym_expr_binary_token22] = ACTIONS(1056), + [aux_sym_expr_binary_token23] = ACTIONS(1056), + [aux_sym_expr_binary_token24] = ACTIONS(1056), + [aux_sym_expr_binary_token25] = ACTIONS(1056), + [aux_sym_expr_binary_token26] = ACTIONS(1056), + [aux_sym_expr_binary_token27] = ACTIONS(1056), + [aux_sym_expr_binary_token28] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [aux_sym_record_entry_token1] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), [anon_sym_POUND] = ACTIONS(247), }, [1152] = { + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5932), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5290), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1152), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [aux_sym_ctrl_match_token1] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [aux_sym_expr_binary_token1] = ACTIONS(1054), - [aux_sym_expr_binary_token2] = ACTIONS(1054), - [aux_sym_expr_binary_token3] = ACTIONS(1054), - [aux_sym_expr_binary_token4] = ACTIONS(1054), - [aux_sym_expr_binary_token5] = ACTIONS(1054), - [aux_sym_expr_binary_token6] = ACTIONS(1054), - [aux_sym_expr_binary_token7] = ACTIONS(1054), - [aux_sym_expr_binary_token8] = ACTIONS(1054), - [aux_sym_expr_binary_token9] = ACTIONS(1054), - [aux_sym_expr_binary_token10] = ACTIONS(1054), - [aux_sym_expr_binary_token11] = ACTIONS(1054), - [aux_sym_expr_binary_token12] = ACTIONS(1054), - [aux_sym_expr_binary_token13] = ACTIONS(1054), - [aux_sym_expr_binary_token14] = ACTIONS(1054), - [aux_sym_expr_binary_token15] = ACTIONS(1054), - [aux_sym_expr_binary_token16] = ACTIONS(1054), - [aux_sym_expr_binary_token17] = ACTIONS(1054), - [aux_sym_expr_binary_token18] = ACTIONS(1054), - [aux_sym_expr_binary_token19] = ACTIONS(1054), - [aux_sym_expr_binary_token20] = ACTIONS(1054), - [aux_sym_expr_binary_token21] = ACTIONS(1054), - [aux_sym_expr_binary_token22] = ACTIONS(1054), - [aux_sym_expr_binary_token23] = ACTIONS(1054), - [aux_sym_expr_binary_token24] = ACTIONS(1054), - [aux_sym_expr_binary_token25] = ACTIONS(1054), - [aux_sym_expr_binary_token26] = ACTIONS(1054), - [aux_sym_expr_binary_token27] = ACTIONS(1054), - [aux_sym_expr_binary_token28] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4141), + [aux_sym_cmd_identifier_token39] = ACTIONS(4141), + [aux_sym_cmd_identifier_token40] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4149), + [aux_sym__val_number_decimal_token3] = ACTIONS(4151), + [aux_sym__val_number_decimal_token4] = ACTIONS(4153), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1153] = { - [sym__val_range] = STATE(7774), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(2168), - [sym_val_bool] = STATE(3524), - [sym_val_variable] = STATE(2168), - [sym_val_number] = STATE(2168), - [sym__val_number_decimal] = STATE(5515), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(2168), - [sym_val_filesize] = STATE(2168), - [sym_val_binary] = STATE(2168), - [sym_val_string] = STATE(2168), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(2168), - [sym__inter_single_quotes] = STATE(2218), - [sym__inter_double_quotes] = STATE(2219), - [sym_val_list] = STATE(2168), - [sym_val_record] = STATE(2168), - [sym_val_table] = STATE(2168), - [sym_val_closure] = STATE(2168), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym__expr_parenthesized_immediate] = STATE(1936), + [sym__immediate_decimal] = STATE(1937), + [sym_val_variable] = STATE(1936), [sym_comment] = STATE(1153), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(3686), - [aux_sym_cmd_identifier_token39] = ACTIONS(3686), - [aux_sym_cmd_identifier_token40] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4089), - [aux_sym_ctrl_match_token1] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(4091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), - [anon_sym_DOT_DOT_LT] = ACTIONS(4093), - [aux_sym__val_number_decimal_token1] = ACTIONS(3263), - [aux_sym__val_number_decimal_token2] = ACTIONS(3265), - [aux_sym__val_number_decimal_token3] = ACTIONS(3267), - [aux_sym__val_number_decimal_token4] = ACTIONS(3269), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__str_single_quotes] = ACTIONS(3702), - [sym__str_back_ticks] = ACTIONS(3702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), + [ts_builtin_sym_end] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_null] = ACTIONS(1588), + [aux_sym_cmd_identifier_token38] = ACTIONS(1588), + [aux_sym_cmd_identifier_token39] = ACTIONS(1588), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1588), + [anon_sym_DOT_DOT_LT] = ACTIONS(1588), + [aux_sym__immediate_decimal_token1] = ACTIONS(4095), + [aux_sym__immediate_decimal_token3] = ACTIONS(4097), + [aux_sym__immediate_decimal_token4] = ACTIONS(4099), + [aux_sym__immediate_decimal_token5] = ACTIONS(4101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1586), + [aux_sym__val_number_decimal_token2] = ACTIONS(1586), + [aux_sym__val_number_decimal_token3] = ACTIONS(1586), + [aux_sym__val_number_decimal_token4] = ACTIONS(1586), + [aux_sym__val_number_token1] = ACTIONS(1588), + [aux_sym__val_number_token2] = ACTIONS(1588), + [aux_sym__val_number_token3] = ACTIONS(1588), + [anon_sym_0b] = ACTIONS(1586), + [anon_sym_0o] = ACTIONS(1586), + [anon_sym_0x] = ACTIONS(1586), + [sym_val_date] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [sym__str_single_quotes] = ACTIONS(1588), + [sym__str_back_ticks] = ACTIONS(1588), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), + [anon_sym_err_GT] = ACTIONS(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(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), + [aux_sym_unquoted_token1] = ACTIONS(1586), [anon_sym_POUND] = ACTIONS(247), }, [1154] = { - [sym__val_range] = STATE(7492), - [sym__value] = STATE(3540), - [sym_val_nothing] = STATE(3533), - [sym_val_bool] = STATE(3515), - [sym_val_variable] = STATE(3533), - [sym_val_number] = STATE(3533), - [sym__val_number_decimal] = STATE(3370), - [sym__val_number] = STATE(3535), - [sym_val_duration] = STATE(3533), - [sym_val_filesize] = STATE(3533), - [sym_val_binary] = STATE(3533), - [sym_val_string] = STATE(3533), - [sym__str_double_quotes] = STATE(3471), - [sym_val_interpolated] = STATE(3533), - [sym__inter_single_quotes] = STATE(3648), - [sym__inter_double_quotes] = STATE(3649), - [sym_val_list] = STATE(3533), - [sym_val_record] = STATE(3533), - [sym_val_table] = STATE(3533), - [sym_val_closure] = STATE(3533), - [sym_unquoted] = STATE(3544), - [sym__unquoted_anonymous_prefix] = STATE(7626), + [sym__expr_parenthesized_immediate] = STATE(1938), + [sym__immediate_decimal] = STATE(1940), + [sym_val_variable] = STATE(1938), [sym_comment] = STATE(1154), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_null] = ACTIONS(4320), - [aux_sym_cmd_identifier_token38] = ACTIONS(4322), - [aux_sym_cmd_identifier_token39] = ACTIONS(4322), - [aux_sym_cmd_identifier_token40] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_DOLLAR] = ACTIONS(4328), - [aux_sym_ctrl_match_token1] = ACTIONS(4330), - [anon_sym_DOT_DOT] = ACTIONS(4332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), - [anon_sym_DOT_DOT_LT] = ACTIONS(4334), - [aux_sym__val_number_decimal_token1] = ACTIONS(4336), - [aux_sym__val_number_decimal_token2] = ACTIONS(4338), - [aux_sym__val_number_decimal_token3] = ACTIONS(4340), - [aux_sym__val_number_decimal_token4] = ACTIONS(4342), - [aux_sym__val_number_token1] = ACTIONS(4344), - [aux_sym__val_number_token2] = ACTIONS(4344), - [aux_sym__val_number_token3] = ACTIONS(4344), - [anon_sym_0b] = ACTIONS(4346), - [anon_sym_0o] = ACTIONS(4348), - [anon_sym_0x] = ACTIONS(4348), - [sym_val_date] = ACTIONS(4350), - [anon_sym_DQUOTE] = ACTIONS(4352), - [sym__str_single_quotes] = ACTIONS(4354), - [sym__str_back_ticks] = ACTIONS(4354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4360), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [anon_sym_null] = ACTIONS(1584), + [aux_sym_cmd_identifier_token38] = ACTIONS(1584), + [aux_sym_cmd_identifier_token39] = ACTIONS(1584), + [aux_sym_cmd_identifier_token40] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1584), + [anon_sym_DOT_DOT_LT] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(4095), + [aux_sym__immediate_decimal_token3] = ACTIONS(4097), + [aux_sym__immediate_decimal_token4] = ACTIONS(4099), + [aux_sym__immediate_decimal_token5] = ACTIONS(4101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1576), + [aux_sym__val_number_decimal_token2] = ACTIONS(1576), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1576), + [aux_sym__val_number_token1] = ACTIONS(1584), + [aux_sym__val_number_token2] = ACTIONS(1584), + [aux_sym__val_number_token3] = ACTIONS(1584), + [anon_sym_0b] = ACTIONS(1576), + [anon_sym_0o] = ACTIONS(1576), + [anon_sym_0x] = ACTIONS(1576), + [sym_val_date] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [sym__str_single_quotes] = ACTIONS(1584), + [sym__str_back_ticks] = ACTIONS(1584), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1576), + [anon_sym_out_GT] = ACTIONS(1576), + [anon_sym_e_GT] = ACTIONS(1576), + [anon_sym_o_GT] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT] = ACTIONS(1576), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [aux_sym_unquoted_token1] = ACTIONS(1576), [anon_sym_POUND] = ACTIONS(247), }, [1155] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1720), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1534), - [sym_val_variable] = STATE(1755), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym_unquoted] = STATE(1721), - [sym__unquoted_anonymous_prefix] = STATE(7741), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5935), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5212), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5939), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1155), - [anon_sym_true] = ACTIONS(4362), - [anon_sym_false] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [aux_sym_cmd_identifier_token38] = ACTIONS(4366), - [aux_sym_cmd_identifier_token39] = ACTIONS(4366), - [aux_sym_cmd_identifier_token40] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_DOLLAR] = ACTIONS(3882), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(4370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), - [anon_sym_DOT_DOT_LT] = ACTIONS(4372), - [aux_sym__val_number_decimal_token1] = ACTIONS(4374), - [aux_sym__val_number_decimal_token2] = ACTIONS(4376), - [aux_sym__val_number_decimal_token3] = ACTIONS(4378), - [aux_sym__val_number_decimal_token4] = ACTIONS(4380), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4171), + [aux_sym_cmd_identifier_token39] = ACTIONS(4171), + [aux_sym_cmd_identifier_token40] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4173), + [aux_sym__val_number_decimal_token2] = ACTIONS(4175), + [aux_sym__val_number_decimal_token3] = ACTIONS(4177), + [aux_sym__val_number_decimal_token4] = ACTIONS(4179), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1156] = { - [sym__val_range] = STATE(7492), - [sym__value] = STATE(3688), - [sym_val_nothing] = STATE(3533), - [sym_val_bool] = STATE(3515), - [sym_val_variable] = STATE(3533), - [sym_val_number] = STATE(3533), - [sym__val_number_decimal] = STATE(3370), - [sym__val_number] = STATE(3535), - [sym_val_duration] = STATE(3533), - [sym_val_filesize] = STATE(3533), - [sym_val_binary] = STATE(3533), - [sym_val_string] = STATE(3533), - [sym__str_double_quotes] = STATE(3471), - [sym_val_interpolated] = STATE(3533), - [sym__inter_single_quotes] = STATE(3648), - [sym__inter_double_quotes] = STATE(3649), - [sym_val_list] = STATE(3533), - [sym_val_record] = STATE(3533), - [sym_val_table] = STATE(3533), - [sym_val_closure] = STATE(3533), - [sym_unquoted] = STATE(3690), - [sym__unquoted_anonymous_prefix] = STATE(7626), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5948), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5212), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5953), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1156), - [anon_sym_true] = ACTIONS(4318), - [anon_sym_false] = ACTIONS(4318), - [anon_sym_null] = ACTIONS(4320), - [aux_sym_cmd_identifier_token38] = ACTIONS(4322), - [aux_sym_cmd_identifier_token39] = ACTIONS(4322), - [aux_sym_cmd_identifier_token40] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_DOLLAR] = ACTIONS(4328), - [aux_sym_ctrl_match_token1] = ACTIONS(4330), - [anon_sym_DOT_DOT] = ACTIONS(4332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), - [anon_sym_DOT_DOT_LT] = ACTIONS(4334), - [aux_sym__val_number_decimal_token1] = ACTIONS(4336), - [aux_sym__val_number_decimal_token2] = ACTIONS(4338), - [aux_sym__val_number_decimal_token3] = ACTIONS(4340), - [aux_sym__val_number_decimal_token4] = ACTIONS(4342), - [aux_sym__val_number_token1] = ACTIONS(4344), - [aux_sym__val_number_token2] = ACTIONS(4344), - [aux_sym__val_number_token3] = ACTIONS(4344), - [anon_sym_0b] = ACTIONS(4346), - [anon_sym_0o] = ACTIONS(4348), - [anon_sym_0x] = ACTIONS(4348), - [sym_val_date] = ACTIONS(4350), - [anon_sym_DQUOTE] = ACTIONS(4352), - [sym__str_single_quotes] = ACTIONS(4354), - [sym__str_back_ticks] = ACTIONS(4354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4360), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4171), + [aux_sym_cmd_identifier_token39] = ACTIONS(4171), + [aux_sym_cmd_identifier_token40] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4173), + [aux_sym__val_number_decimal_token2] = ACTIONS(4175), + [aux_sym__val_number_decimal_token3] = ACTIONS(4177), + [aux_sym__val_number_decimal_token4] = ACTIONS(4179), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1157] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1722), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1534), - [sym_val_variable] = STATE(1755), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym_unquoted] = STATE(1723), - [sym__unquoted_anonymous_prefix] = STATE(7741), + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5389), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(7351), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5440), + [sym__unquoted_anonymous_prefix] = STATE(7720), [sym_comment] = STATE(1157), - [anon_sym_true] = ACTIONS(4362), - [anon_sym_false] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [aux_sym_cmd_identifier_token38] = ACTIONS(4366), - [aux_sym_cmd_identifier_token39] = ACTIONS(4366), - [aux_sym_cmd_identifier_token40] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_DOLLAR] = ACTIONS(3882), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(4370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), - [anon_sym_DOT_DOT_LT] = ACTIONS(4372), - [aux_sym__val_number_decimal_token1] = ACTIONS(4374), - [aux_sym__val_number_decimal_token2] = ACTIONS(4376), - [aux_sym__val_number_decimal_token3] = ACTIONS(4378), - [aux_sym__val_number_decimal_token4] = ACTIONS(4380), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4181), + [anon_sym_false] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4183), + [aux_sym_cmd_identifier_token38] = ACTIONS(4185), + [aux_sym_cmd_identifier_token39] = ACTIONS(4185), + [aux_sym_cmd_identifier_token40] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4187), + [aux_sym__val_number_decimal_token2] = ACTIONS(4189), + [aux_sym__val_number_decimal_token3] = ACTIONS(4191), + [aux_sym__val_number_decimal_token4] = ACTIONS(4193), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1158] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1726), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1534), - [sym_val_variable] = STATE(1755), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym_unquoted] = STATE(1727), - [sym__unquoted_anonymous_prefix] = STATE(7741), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5932), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(5877), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5212), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1158), - [anon_sym_true] = ACTIONS(4362), - [anon_sym_false] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [aux_sym_cmd_identifier_token38] = ACTIONS(4366), - [aux_sym_cmd_identifier_token39] = ACTIONS(4366), - [aux_sym_cmd_identifier_token40] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_DOLLAR] = ACTIONS(3882), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(4370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), - [anon_sym_DOT_DOT_LT] = ACTIONS(4372), - [aux_sym__val_number_decimal_token1] = ACTIONS(4374), - [aux_sym__val_number_decimal_token2] = ACTIONS(4376), - [aux_sym__val_number_decimal_token3] = ACTIONS(4378), - [aux_sym__val_number_decimal_token4] = ACTIONS(4380), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4137), + [anon_sym_false] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(4139), + [aux_sym_cmd_identifier_token38] = ACTIONS(4171), + [aux_sym_cmd_identifier_token39] = ACTIONS(4171), + [aux_sym_cmd_identifier_token40] = ACTIONS(4171), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4173), + [aux_sym__val_number_decimal_token2] = ACTIONS(4175), + [aux_sym__val_number_decimal_token3] = ACTIONS(4177), + [aux_sym__val_number_decimal_token4] = ACTIONS(4179), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1159] = { - [sym__val_range] = STATE(7486), - [sym__value] = STATE(5719), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(5506), - [sym_val_variable] = STATE(4088), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(5111), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(5722), - [sym__unquoted_anonymous_prefix] = STATE(7488), + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5495), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(7351), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5496), + [sym__unquoted_anonymous_prefix] = STATE(7720), [sym_comment] = STATE(1159), - [anon_sym_true] = ACTIONS(4386), - [anon_sym_false] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4388), - [aux_sym_cmd_identifier_token38] = ACTIONS(4390), - [aux_sym_cmd_identifier_token39] = ACTIONS(4390), - [aux_sym_cmd_identifier_token40] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_DOLLAR] = ACTIONS(4394), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), - [anon_sym_DOT_DOT_LT] = ACTIONS(4398), - [aux_sym__val_number_decimal_token1] = ACTIONS(4400), - [aux_sym__val_number_decimal_token2] = ACTIONS(4402), - [aux_sym__val_number_decimal_token3] = ACTIONS(4404), - [aux_sym__val_number_decimal_token4] = ACTIONS(4406), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(4408), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_true] = ACTIONS(4181), + [anon_sym_false] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4183), + [aux_sym_cmd_identifier_token38] = ACTIONS(4185), + [aux_sym_cmd_identifier_token39] = ACTIONS(4185), + [aux_sym_cmd_identifier_token40] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4187), + [aux_sym__val_number_decimal_token2] = ACTIONS(4189), + [aux_sym__val_number_decimal_token3] = ACTIONS(4191), + [aux_sym__val_number_decimal_token4] = ACTIONS(4193), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1160] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1728), - [sym_val_nothing] = STATE(1755), - [sym_val_bool] = STATE(1534), - [sym_val_variable] = STATE(1755), - [sym_val_number] = STATE(1755), - [sym__val_number_decimal] = STATE(1195), - [sym__val_number] = STATE(1569), - [sym_val_duration] = STATE(1755), - [sym_val_filesize] = STATE(1755), - [sym_val_binary] = STATE(1755), - [sym_val_string] = STATE(1755), - [sym__str_double_quotes] = STATE(1657), - [sym_val_interpolated] = STATE(1755), - [sym__inter_single_quotes] = STATE(1574), - [sym__inter_double_quotes] = STATE(1575), - [sym_val_list] = STATE(1755), - [sym_val_record] = STATE(1755), - [sym_val_table] = STATE(1755), - [sym_val_closure] = STATE(1755), - [sym_unquoted] = STATE(1729), - [sym__unquoted_anonymous_prefix] = STATE(7741), + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5485), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(7351), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5487), + [sym__unquoted_anonymous_prefix] = STATE(7720), [sym_comment] = STATE(1160), - [anon_sym_true] = ACTIONS(4362), - [anon_sym_false] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [aux_sym_cmd_identifier_token38] = ACTIONS(4366), - [aux_sym_cmd_identifier_token39] = ACTIONS(4366), - [aux_sym_cmd_identifier_token40] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_DOLLAR] = ACTIONS(3882), - [aux_sym_ctrl_match_token1] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(4370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), - [anon_sym_DOT_DOT_LT] = ACTIONS(4372), - [aux_sym__val_number_decimal_token1] = ACTIONS(4374), - [aux_sym__val_number_decimal_token2] = ACTIONS(4376), - [aux_sym__val_number_decimal_token3] = ACTIONS(4378), - [aux_sym__val_number_decimal_token4] = ACTIONS(4380), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_0b] = ACTIONS(2559), - [anon_sym_0o] = ACTIONS(2561), - [anon_sym_0x] = ACTIONS(2561), - [sym_val_date] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4181), + [anon_sym_false] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4183), + [aux_sym_cmd_identifier_token38] = ACTIONS(4185), + [aux_sym_cmd_identifier_token39] = ACTIONS(4185), + [aux_sym_cmd_identifier_token40] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4187), + [aux_sym__val_number_decimal_token2] = ACTIONS(4189), + [aux_sym__val_number_decimal_token3] = ACTIONS(4191), + [aux_sym__val_number_decimal_token4] = ACTIONS(4193), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1161] = { - [sym__val_range] = STATE(7486), - [sym__value] = STATE(5752), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(5506), - [sym_val_variable] = STATE(4088), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(5111), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(5753), - [sym__unquoted_anonymous_prefix] = STATE(7488), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(1873), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1573), + [sym_val_variable] = STATE(1887), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1250), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym_unquoted] = STATE(1880), + [sym__unquoted_anonymous_prefix] = STATE(7544), [sym_comment] = STATE(1161), - [anon_sym_true] = ACTIONS(4386), - [anon_sym_false] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4388), - [aux_sym_cmd_identifier_token38] = ACTIONS(4390), - [aux_sym_cmd_identifier_token39] = ACTIONS(4390), - [aux_sym_cmd_identifier_token40] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_DOLLAR] = ACTIONS(4394), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), - [anon_sym_DOT_DOT_LT] = ACTIONS(4398), - [aux_sym__val_number_decimal_token1] = ACTIONS(4400), - [aux_sym__val_number_decimal_token2] = ACTIONS(4402), - [aux_sym__val_number_decimal_token3] = ACTIONS(4404), - [aux_sym__val_number_decimal_token4] = ACTIONS(4406), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(4408), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_true] = ACTIONS(4197), + [anon_sym_false] = ACTIONS(4197), + [anon_sym_null] = ACTIONS(4199), + [aux_sym_cmd_identifier_token38] = ACTIONS(4201), + [aux_sym_cmd_identifier_token39] = ACTIONS(4201), + [aux_sym_cmd_identifier_token40] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(4203), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(4205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), + [anon_sym_DOT_DOT_LT] = ACTIONS(4207), + [aux_sym__val_number_decimal_token1] = ACTIONS(4209), + [aux_sym__val_number_decimal_token2] = ACTIONS(4211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4213), + [aux_sym__val_number_decimal_token4] = ACTIONS(4215), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4219), [anon_sym_POUND] = ACTIONS(247), }, [1162] = { - [sym__val_range] = STATE(7486), - [sym__value] = STATE(5895), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(5506), - [sym_val_variable] = STATE(4088), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(5111), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(5833), - [sym__unquoted_anonymous_prefix] = STATE(7488), + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5522), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(7351), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5390), + [sym__unquoted_anonymous_prefix] = STATE(7720), [sym_comment] = STATE(1162), - [anon_sym_true] = ACTIONS(4386), - [anon_sym_false] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4388), - [aux_sym_cmd_identifier_token38] = ACTIONS(4390), - [aux_sym_cmd_identifier_token39] = ACTIONS(4390), - [aux_sym_cmd_identifier_token40] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_DOLLAR] = ACTIONS(4394), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), - [anon_sym_DOT_DOT_LT] = ACTIONS(4398), - [aux_sym__val_number_decimal_token1] = ACTIONS(4400), - [aux_sym__val_number_decimal_token2] = ACTIONS(4402), - [aux_sym__val_number_decimal_token3] = ACTIONS(4404), - [aux_sym__val_number_decimal_token4] = ACTIONS(4406), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(4408), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_true] = ACTIONS(4181), + [anon_sym_false] = ACTIONS(4181), + [anon_sym_null] = ACTIONS(4183), + [aux_sym_cmd_identifier_token38] = ACTIONS(4185), + [aux_sym_cmd_identifier_token39] = ACTIONS(4185), + [aux_sym_cmd_identifier_token40] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4187), + [aux_sym__val_number_decimal_token2] = ACTIONS(4189), + [aux_sym__val_number_decimal_token3] = ACTIONS(4191), + [aux_sym__val_number_decimal_token4] = ACTIONS(4193), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), [anon_sym_POUND] = ACTIONS(247), }, [1163] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5420), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(5440), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(4836), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5421), - [sym__unquoted_anonymous_prefix] = STATE(7531), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(1951), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1573), + [sym_val_variable] = STATE(1887), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1250), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym_unquoted] = STATE(1810), + [sym__unquoted_anonymous_prefix] = STATE(7544), [sym_comment] = STATE(1163), - [anon_sym_true] = ACTIONS(3983), - [anon_sym_false] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [aux_sym_cmd_identifier_token38] = ACTIONS(3987), - [aux_sym_cmd_identifier_token39] = ACTIONS(3987), - [aux_sym_cmd_identifier_token40] = ACTIONS(3987), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(4197), + [anon_sym_false] = ACTIONS(4197), + [anon_sym_null] = ACTIONS(4199), + [aux_sym_cmd_identifier_token38] = ACTIONS(4201), + [aux_sym_cmd_identifier_token39] = ACTIONS(4201), + [aux_sym_cmd_identifier_token40] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(4203), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(4205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), + [anon_sym_DOT_DOT_LT] = ACTIONS(4207), + [aux_sym__val_number_decimal_token1] = ACTIONS(4209), + [aux_sym__val_number_decimal_token2] = ACTIONS(4211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4213), + [aux_sym__val_number_decimal_token4] = ACTIONS(4215), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4219), [anon_sym_POUND] = ACTIONS(247), }, [1164] = { - [sym__val_range] = STATE(7486), - [sym__value] = STATE(5658), - [sym_val_nothing] = STATE(4088), - [sym_val_bool] = STATE(5506), - [sym_val_variable] = STATE(4088), - [sym_val_number] = STATE(4088), - [sym__val_number_decimal] = STATE(5111), - [sym__val_number] = STATE(4128), - [sym_val_duration] = STATE(4088), - [sym_val_filesize] = STATE(4088), - [sym_val_binary] = STATE(4088), - [sym_val_string] = STATE(4088), - [sym__str_double_quotes] = STATE(3509), - [sym_val_interpolated] = STATE(4088), - [sym__inter_single_quotes] = STATE(4155), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4088), - [sym_val_record] = STATE(4088), - [sym_val_table] = STATE(4088), - [sym_val_closure] = STATE(4088), - [sym_unquoted] = STATE(5853), - [sym__unquoted_anonymous_prefix] = STATE(7488), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(1932), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1573), + [sym_val_variable] = STATE(1887), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1250), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym_unquoted] = STATE(1939), + [sym__unquoted_anonymous_prefix] = STATE(7544), [sym_comment] = STATE(1164), - [anon_sym_true] = ACTIONS(4386), - [anon_sym_false] = ACTIONS(4386), - [anon_sym_null] = ACTIONS(4388), - [aux_sym_cmd_identifier_token38] = ACTIONS(4390), - [aux_sym_cmd_identifier_token39] = ACTIONS(4390), - [aux_sym_cmd_identifier_token40] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_DOLLAR] = ACTIONS(4394), - [aux_sym_ctrl_match_token1] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(4396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), - [anon_sym_DOT_DOT_LT] = ACTIONS(4398), - [aux_sym__val_number_decimal_token1] = ACTIONS(4400), - [aux_sym__val_number_decimal_token2] = ACTIONS(4402), - [aux_sym__val_number_decimal_token3] = ACTIONS(4404), - [aux_sym__val_number_decimal_token4] = ACTIONS(4406), - [aux_sym__val_number_token1] = ACTIONS(3453), - [aux_sym__val_number_token2] = ACTIONS(3453), - [aux_sym__val_number_token3] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(3455), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(4408), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym__str_single_quotes] = ACTIONS(3463), - [sym__str_back_ticks] = ACTIONS(3463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_true] = ACTIONS(4197), + [anon_sym_false] = ACTIONS(4197), + [anon_sym_null] = ACTIONS(4199), + [aux_sym_cmd_identifier_token38] = ACTIONS(4201), + [aux_sym_cmd_identifier_token39] = ACTIONS(4201), + [aux_sym_cmd_identifier_token40] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(4203), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(4205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), + [anon_sym_DOT_DOT_LT] = ACTIONS(4207), + [aux_sym__val_number_decimal_token1] = ACTIONS(4209), + [aux_sym__val_number_decimal_token2] = ACTIONS(4211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4213), + [aux_sym__val_number_decimal_token4] = ACTIONS(4215), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4219), [anon_sym_POUND] = ACTIONS(247), }, [1165] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5453), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(5440), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(4836), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5454), - [sym__unquoted_anonymous_prefix] = STATE(7531), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6545), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5303), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(6008), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1165), - [anon_sym_true] = ACTIONS(3983), - [anon_sym_false] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [aux_sym_cmd_identifier_token38] = ACTIONS(3987), - [aux_sym_cmd_identifier_token39] = ACTIONS(3987), - [aux_sym_cmd_identifier_token40] = ACTIONS(3987), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [anon_sym_null] = ACTIONS(4223), + [aux_sym_cmd_identifier_token38] = ACTIONS(4225), + [aux_sym_cmd_identifier_token39] = ACTIONS(4225), + [aux_sym_cmd_identifier_token40] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4227), + [aux_sym__val_number_decimal_token2] = ACTIONS(4229), + [aux_sym__val_number_decimal_token3] = ACTIONS(4231), + [aux_sym__val_number_decimal_token4] = ACTIONS(4233), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1166] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_rest] = STATE(7801), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2816), - [sym_val_range] = STATE(3028), - [sym__val_range] = STATE(7670), - [sym_val_nothing] = STATE(3031), - [sym_val_bool] = STATE(2974), - [sym_val_variable] = STATE(2817), - [sym_val_number] = STATE(3031), - [sym__val_number_decimal] = STATE(2606), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3031), - [sym_val_filesize] = STATE(3031), - [sym_val_binary] = STATE(3031), - [sym_val_string] = STATE(3031), - [sym__str_double_quotes] = STATE(3007), - [sym_val_table] = STATE(3031), - [sym__unquoted_in_list] = STATE(3052), - [sym__unquoted_anonymous_prefix] = STATE(7659), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(1825), + [sym_val_nothing] = STATE(1887), + [sym_val_bool] = STATE(1573), + [sym_val_variable] = STATE(1887), + [sym_val_number] = STATE(1887), + [sym__val_number_decimal] = STATE(1250), + [sym__val_number] = STATE(1800), + [sym_val_duration] = STATE(1887), + [sym_val_filesize] = STATE(1887), + [sym_val_binary] = STATE(1887), + [sym_val_string] = STATE(1887), + [sym__str_double_quotes] = STATE(1944), + [sym_val_interpolated] = STATE(1887), + [sym__inter_single_quotes] = STATE(1945), + [sym__inter_double_quotes] = STATE(1946), + [sym_val_list] = STATE(1887), + [sym_val_record] = STATE(1887), + [sym_val_table] = STATE(1887), + [sym_val_closure] = STATE(1887), + [sym_unquoted] = STATE(1826), + [sym__unquoted_anonymous_prefix] = STATE(7544), [sym_comment] = STATE(1166), - [aux_sym__match_pattern_list_repeat1] = STATE(1202), - [anon_sym_true] = ACTIONS(3718), - [anon_sym_false] = ACTIONS(3718), - [anon_sym_null] = ACTIONS(3720), - [aux_sym_cmd_identifier_token38] = ACTIONS(3722), - [aux_sym_cmd_identifier_token39] = ACTIONS(3722), - [aux_sym_cmd_identifier_token40] = ACTIONS(3722), - [anon_sym_LBRACK] = ACTIONS(4081), - [anon_sym_RBRACK] = ACTIONS(4410), - [anon_sym_LPAREN] = ACTIONS(3728), - [anon_sym_DOLLAR] = ACTIONS(3730), - [aux_sym_ctrl_match_token1] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), - [anon_sym_DOT_DOT_LT] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [anon_sym_0b] = ACTIONS(3748), - [anon_sym_0o] = ACTIONS(3750), - [anon_sym_0x] = ACTIONS(3750), - [sym_val_date] = ACTIONS(3752), - [anon_sym_DQUOTE] = ACTIONS(3754), - [sym__str_single_quotes] = ACTIONS(3756), - [sym__str_back_ticks] = ACTIONS(3756), - [anon_sym_err_GT] = ACTIONS(2850), - [anon_sym_out_GT] = ACTIONS(2850), - [anon_sym_e_GT] = ACTIONS(2850), - [anon_sym_o_GT] = ACTIONS(2850), - [anon_sym_err_PLUSout_GT] = ACTIONS(2850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), - [anon_sym_o_PLUSe_GT] = ACTIONS(2850), - [anon_sym_e_PLUSo_GT] = ACTIONS(2850), - [anon_sym_err_GT_GT] = ACTIONS(2852), - [anon_sym_out_GT_GT] = ACTIONS(2852), - [anon_sym_e_GT_GT] = ACTIONS(2852), - [anon_sym_o_GT_GT] = ACTIONS(2852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), + [anon_sym_true] = ACTIONS(4197), + [anon_sym_false] = ACTIONS(4197), + [anon_sym_null] = ACTIONS(4199), + [aux_sym_cmd_identifier_token38] = ACTIONS(4201), + [aux_sym_cmd_identifier_token39] = ACTIONS(4201), + [aux_sym_cmd_identifier_token40] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(4203), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(4205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), + [anon_sym_DOT_DOT_LT] = ACTIONS(4207), + [aux_sym__val_number_decimal_token1] = ACTIONS(4209), + [aux_sym__val_number_decimal_token2] = ACTIONS(4211), + [aux_sym__val_number_decimal_token3] = ACTIONS(4213), + [aux_sym__val_number_decimal_token4] = ACTIONS(4215), + [aux_sym__val_number_token1] = ACTIONS(2854), + [aux_sym__val_number_token2] = ACTIONS(2854), + [aux_sym__val_number_token3] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2856), + [anon_sym_0o] = ACTIONS(2858), + [anon_sym_0x] = ACTIONS(2858), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2864), + [sym__str_back_ticks] = ACTIONS(2864), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4219), [anon_sym_POUND] = ACTIONS(247), }, [1167] = { - [sym__val_range] = STATE(7633), - [sym__value] = STATE(5427), - [sym_val_nothing] = STATE(3939), - [sym_val_bool] = STATE(5440), - [sym_val_variable] = STATE(3939), - [sym_val_number] = STATE(3939), - [sym__val_number_decimal] = STATE(4836), - [sym__val_number] = STATE(3437), - [sym_val_duration] = STATE(3939), - [sym_val_filesize] = STATE(3939), - [sym_val_binary] = STATE(3939), - [sym_val_string] = STATE(3939), - [sym__str_double_quotes] = STATE(2643), - [sym_val_interpolated] = STATE(3939), - [sym__inter_single_quotes] = STATE(3938), - [sym__inter_double_quotes] = STATE(3966), - [sym_val_list] = STATE(3939), - [sym_val_record] = STATE(3939), - [sym_val_table] = STATE(3939), - [sym_val_closure] = STATE(3939), - [sym_unquoted] = STATE(5432), - [sym__unquoted_anonymous_prefix] = STATE(7531), + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5935), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6545), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5303), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5939), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1167), - [anon_sym_true] = ACTIONS(3983), - [anon_sym_false] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [aux_sym_cmd_identifier_token38] = ACTIONS(3987), - [aux_sym_cmd_identifier_token39] = ACTIONS(3987), - [aux_sym_cmd_identifier_token40] = ACTIONS(3987), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_DOLLAR] = ACTIONS(3991), - [aux_sym_ctrl_match_token1] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), - [anon_sym_DOT_DOT_LT] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(3405), - [aux_sym__val_number_token2] = ACTIONS(3405), - [aux_sym__val_number_token3] = ACTIONS(3405), - [anon_sym_0b] = ACTIONS(3407), - [anon_sym_0o] = ACTIONS(3409), - [anon_sym_0x] = ACTIONS(3409), - [sym_val_date] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym__str_single_quotes] = ACTIONS(3415), - [sym__str_back_ticks] = ACTIONS(3415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [anon_sym_null] = ACTIONS(4223), + [aux_sym_cmd_identifier_token38] = ACTIONS(4225), + [aux_sym_cmd_identifier_token39] = ACTIONS(4225), + [aux_sym_cmd_identifier_token40] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4227), + [aux_sym__val_number_decimal_token2] = ACTIONS(4229), + [aux_sym__val_number_decimal_token3] = ACTIONS(4231), + [aux_sym__val_number_decimal_token4] = ACTIONS(4233), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1168] = { + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5948), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6545), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5303), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5953), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1168), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(3963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [anon_sym_null] = ACTIONS(4223), + [aux_sym_cmd_identifier_token38] = ACTIONS(4225), + [aux_sym_cmd_identifier_token39] = ACTIONS(4225), + [aux_sym_cmd_identifier_token40] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4227), + [aux_sym__val_number_decimal_token2] = ACTIONS(4229), + [aux_sym__val_number_decimal_token3] = ACTIONS(4231), + [aux_sym__val_number_decimal_token4] = ACTIONS(4233), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1169] = { + [sym__val_range] = STATE(7614), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4843), + [sym_val_bool] = STATE(4562), + [sym_val_variable] = STATE(4843), + [sym_val_number] = STATE(4843), + [sym__val_number_decimal] = STATE(4068), + [sym__val_number] = STATE(4928), + [sym_val_duration] = STATE(4843), + [sym_val_filesize] = STATE(4843), + [sym_val_binary] = STATE(4843), + [sym_val_string] = STATE(4843), + [sym__str_double_quotes] = STATE(4626), + [sym_val_interpolated] = STATE(4843), + [sym__inter_single_quotes] = STATE(4866), + [sym__inter_double_quotes] = STATE(4872), + [sym_val_list] = STATE(4843), + [sym_val_record] = STATE(4843), + [sym_val_table] = STATE(4843), + [sym_val_closure] = STATE(4843), + [sym_unquoted] = STATE(4965), + [sym__unquoted_anonymous_prefix] = STATE(7713), [sym_comment] = STATE(1169), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4414), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4239), + [aux_sym_cmd_identifier_token38] = ACTIONS(4241), + [aux_sym_cmd_identifier_token39] = ACTIONS(4241), + [aux_sym_cmd_identifier_token40] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_DOT_DOT] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT] = ACTIONS(4253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [anon_sym_0b] = ACTIONS(2194), + [anon_sym_0o] = ACTIONS(2196), + [anon_sym_0x] = ACTIONS(2196), + [sym_val_date] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4265), + [sym__str_single_quotes] = ACTIONS(4267), + [sym__str_back_ticks] = ACTIONS(4267), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2212), [anon_sym_POUND] = ACTIONS(247), }, [1170] = { + [sym__val_range] = STATE(7468), + [sym__value] = STATE(5932), + [sym_val_nothing] = STATE(4953), + [sym_val_bool] = STATE(6545), + [sym_val_variable] = STATE(4953), + [sym_val_number] = STATE(4953), + [sym__val_number_decimal] = STATE(5303), + [sym__val_number] = STATE(5152), + [sym_val_duration] = STATE(4953), + [sym_val_filesize] = STATE(4953), + [sym_val_binary] = STATE(4953), + [sym_val_string] = STATE(4953), + [sym__str_double_quotes] = STATE(4744), + [sym_val_interpolated] = STATE(4953), + [sym__inter_single_quotes] = STATE(4860), + [sym__inter_double_quotes] = STATE(4909), + [sym_val_list] = STATE(4953), + [sym_val_record] = STATE(4953), + [sym_val_table] = STATE(4953), + [sym_val_closure] = STATE(4953), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7625), [sym_comment] = STATE(1170), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_PLUS_EQ] = ACTIONS(1042), - [anon_sym_DASH_EQ] = ACTIONS(1042), - [anon_sym_STAR_EQ] = ACTIONS(1042), - [anon_sym_SLASH_EQ] = ACTIONS(1042), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), - [sym__newline] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_RPAREN] = ACTIONS(1042), - [aux_sym_ctrl_match_token1] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1042), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [anon_sym_null] = ACTIONS(4223), + [aux_sym_cmd_identifier_token38] = ACTIONS(4225), + [aux_sym_cmd_identifier_token39] = ACTIONS(4225), + [aux_sym_cmd_identifier_token40] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_DOT_DOT] = ACTIONS(4117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), + [anon_sym_DOT_DOT_LT] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(4227), + [aux_sym__val_number_decimal_token2] = ACTIONS(4229), + [aux_sym__val_number_decimal_token3] = ACTIONS(4231), + [aux_sym__val_number_decimal_token4] = ACTIONS(4233), + [aux_sym__val_number_token1] = ACTIONS(3515), + [aux_sym__val_number_token2] = ACTIONS(3515), + [aux_sym__val_number_token3] = ACTIONS(3515), + [anon_sym_0b] = ACTIONS(3517), + [anon_sym_0o] = ACTIONS(3519), + [anon_sym_0x] = ACTIONS(3519), + [sym_val_date] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4131), + [sym__str_single_quotes] = ACTIONS(4133), + [sym__str_back_ticks] = ACTIONS(4133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4135), [anon_sym_POUND] = ACTIONS(247), }, [1171] = { + [sym__val_range] = STATE(7614), + [sym__value] = STATE(4935), + [sym_val_nothing] = STATE(4843), + [sym_val_bool] = STATE(4562), + [sym_val_variable] = STATE(4843), + [sym_val_number] = STATE(4843), + [sym__val_number_decimal] = STATE(4068), + [sym__val_number] = STATE(4928), + [sym_val_duration] = STATE(4843), + [sym_val_filesize] = STATE(4843), + [sym_val_binary] = STATE(4843), + [sym_val_string] = STATE(4843), + [sym__str_double_quotes] = STATE(4626), + [sym_val_interpolated] = STATE(4843), + [sym__inter_single_quotes] = STATE(4866), + [sym__inter_double_quotes] = STATE(4872), + [sym_val_list] = STATE(4843), + [sym_val_record] = STATE(4843), + [sym_val_table] = STATE(4843), + [sym_val_closure] = STATE(4843), + [sym_unquoted] = STATE(4937), + [sym__unquoted_anonymous_prefix] = STATE(7713), [sym_comment] = STATE(1171), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [aux_sym_ctrl_match_token1] = ACTIONS(1046), - [anon_sym_QMARK2] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1046), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4239), + [aux_sym_cmd_identifier_token38] = ACTIONS(4241), + [aux_sym_cmd_identifier_token39] = ACTIONS(4241), + [aux_sym_cmd_identifier_token40] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_DOT_DOT] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT] = ACTIONS(4253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [anon_sym_0b] = ACTIONS(2194), + [anon_sym_0o] = ACTIONS(2196), + [anon_sym_0x] = ACTIONS(2196), + [sym_val_date] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4265), + [sym__str_single_quotes] = ACTIONS(4267), + [sym__str_back_ticks] = ACTIONS(4267), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2212), [anon_sym_POUND] = ACTIONS(247), }, [1172] = { + [sym__val_range] = STATE(7614), + [sym__value] = STATE(4837), + [sym_val_nothing] = STATE(4843), + [sym_val_bool] = STATE(4562), + [sym_val_variable] = STATE(4843), + [sym_val_number] = STATE(4843), + [sym__val_number_decimal] = STATE(4068), + [sym__val_number] = STATE(4928), + [sym_val_duration] = STATE(4843), + [sym_val_filesize] = STATE(4843), + [sym_val_binary] = STATE(4843), + [sym_val_string] = STATE(4843), + [sym__str_double_quotes] = STATE(4626), + [sym_val_interpolated] = STATE(4843), + [sym__inter_single_quotes] = STATE(4866), + [sym__inter_double_quotes] = STATE(4872), + [sym_val_list] = STATE(4843), + [sym_val_record] = STATE(4843), + [sym_val_table] = STATE(4843), + [sym_val_closure] = STATE(4843), + [sym_unquoted] = STATE(4846), + [sym__unquoted_anonymous_prefix] = STATE(7713), [sym_comment] = STATE(1172), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [aux_sym_ctrl_match_token1] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4239), + [aux_sym_cmd_identifier_token38] = ACTIONS(4241), + [aux_sym_cmd_identifier_token39] = ACTIONS(4241), + [aux_sym_cmd_identifier_token40] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_DOT_DOT] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT] = ACTIONS(4253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [anon_sym_0b] = ACTIONS(2194), + [anon_sym_0o] = ACTIONS(2196), + [anon_sym_0x] = ACTIONS(2196), + [sym_val_date] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4265), + [sym__str_single_quotes] = ACTIONS(4267), + [sym__str_back_ticks] = ACTIONS(4267), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2212), [anon_sym_POUND] = ACTIONS(247), }, [1173] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4679), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(6644), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(5398), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4681), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1173), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(4416), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(4273), + [anon_sym_false] = ACTIONS(4273), + [anon_sym_null] = ACTIONS(4275), + [aux_sym_cmd_identifier_token38] = ACTIONS(4277), + [aux_sym_cmd_identifier_token39] = ACTIONS(4277), + [aux_sym_cmd_identifier_token40] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(4291), + [aux_sym__val_number_decimal_token2] = ACTIONS(4293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4295), + [aux_sym__val_number_decimal_token4] = ACTIONS(4297), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1174] = { + [sym__val_range] = STATE(7614), + [sym__value] = STATE(4982), + [sym_val_nothing] = STATE(4843), + [sym_val_bool] = STATE(4562), + [sym_val_variable] = STATE(4843), + [sym_val_number] = STATE(4843), + [sym__val_number_decimal] = STATE(4068), + [sym__val_number] = STATE(4928), + [sym_val_duration] = STATE(4843), + [sym_val_filesize] = STATE(4843), + [sym_val_binary] = STATE(4843), + [sym_val_string] = STATE(4843), + [sym__str_double_quotes] = STATE(4626), + [sym_val_interpolated] = STATE(4843), + [sym__inter_single_quotes] = STATE(4866), + [sym__inter_double_quotes] = STATE(4872), + [sym_val_list] = STATE(4843), + [sym_val_record] = STATE(4843), + [sym_val_table] = STATE(4843), + [sym_val_closure] = STATE(4843), + [sym_unquoted] = STATE(4984), + [sym__unquoted_anonymous_prefix] = STATE(7713), [sym_comment] = STATE(1174), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4418), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(4237), + [anon_sym_false] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4239), + [aux_sym_cmd_identifier_token38] = ACTIONS(4241), + [aux_sym_cmd_identifier_token39] = ACTIONS(4241), + [aux_sym_cmd_identifier_token40] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_DOT_DOT] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT] = ACTIONS(4253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [anon_sym_0b] = ACTIONS(2194), + [anon_sym_0o] = ACTIONS(2196), + [anon_sym_0x] = ACTIONS(2196), + [sym_val_date] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4265), + [sym__str_single_quotes] = ACTIONS(4267), + [sym__str_back_ticks] = ACTIONS(4267), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2212), [anon_sym_POUND] = ACTIONS(247), }, [1175] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1814), - [sym_val_nothing] = STATE(1822), - [sym_val_bool] = STATE(1613), - [sym_val_variable] = STATE(1822), - [sym_val_number] = STATE(1822), - [sym__val_number_decimal] = STATE(1237), - [sym__val_number] = STATE(1866), - [sym_val_duration] = STATE(1822), - [sym_val_filesize] = STATE(1822), - [sym_val_binary] = STATE(1822), - [sym_val_string] = STATE(1822), - [sym__str_double_quotes] = STATE(1910), - [sym_val_interpolated] = STATE(1822), - [sym__inter_single_quotes] = STATE(1911), - [sym__inter_double_quotes] = STATE(1912), - [sym_val_list] = STATE(1822), - [sym_val_record] = STATE(1822), - [sym_val_table] = STATE(1822), - [sym_val_closure] = STATE(1822), - [sym_unquoted] = STATE(1815), - [sym__unquoted_anonymous_prefix] = STATE(7749), + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4722), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(6644), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(5398), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4726), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1175), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4179), - [aux_sym_cmd_identifier_token38] = ACTIONS(4181), - [aux_sym_cmd_identifier_token39] = ACTIONS(4181), - [aux_sym_cmd_identifier_token40] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(3934), - [aux_sym_ctrl_match_token1] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [aux_sym__val_number_decimal_token1] = ACTIONS(4189), - [aux_sym__val_number_decimal_token2] = ACTIONS(4191), - [aux_sym__val_number_decimal_token3] = ACTIONS(4193), - [aux_sym__val_number_decimal_token4] = ACTIONS(4195), - [aux_sym__val_number_token1] = ACTIONS(2784), - [aux_sym__val_number_token2] = ACTIONS(2784), - [aux_sym__val_number_token3] = ACTIONS(2784), - [anon_sym_0b] = ACTIONS(2786), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym__str_single_quotes] = ACTIONS(2794), - [sym__str_back_ticks] = ACTIONS(2794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4273), + [anon_sym_false] = ACTIONS(4273), + [anon_sym_null] = ACTIONS(4275), + [aux_sym_cmd_identifier_token38] = ACTIONS(4277), + [aux_sym_cmd_identifier_token39] = ACTIONS(4277), + [aux_sym_cmd_identifier_token40] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(4291), + [aux_sym__val_number_decimal_token2] = ACTIONS(4293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4295), + [aux_sym__val_number_decimal_token4] = ACTIONS(4297), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1176] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4692), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(6644), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(5398), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4693), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1176), - [ts_builtin_sym_end] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(4273), + [anon_sym_false] = ACTIONS(4273), + [anon_sym_null] = ACTIONS(4275), + [aux_sym_cmd_identifier_token38] = ACTIONS(4277), + [aux_sym_cmd_identifier_token39] = ACTIONS(4277), + [aux_sym_cmd_identifier_token40] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(4291), + [aux_sym__val_number_decimal_token2] = ACTIONS(4293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4295), + [aux_sym__val_number_decimal_token4] = ACTIONS(4297), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1177] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4679), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(4456), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(4038), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4681), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1177), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_PLUS_EQ] = ACTIONS(1062), - [anon_sym_DASH_EQ] = ACTIONS(1062), - [anon_sym_STAR_EQ] = ACTIONS(1062), - [anon_sym_SLASH_EQ] = ACTIONS(1062), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [aux_sym_expr_binary_token1] = ACTIONS(1062), - [aux_sym_expr_binary_token2] = ACTIONS(1062), - [aux_sym_expr_binary_token3] = ACTIONS(1062), - [aux_sym_expr_binary_token4] = ACTIONS(1062), - [aux_sym_expr_binary_token5] = ACTIONS(1062), - [aux_sym_expr_binary_token6] = ACTIONS(1062), - [aux_sym_expr_binary_token7] = ACTIONS(1062), - [aux_sym_expr_binary_token8] = ACTIONS(1062), - [aux_sym_expr_binary_token9] = ACTIONS(1062), - [aux_sym_expr_binary_token10] = ACTIONS(1062), - [aux_sym_expr_binary_token11] = ACTIONS(1062), - [aux_sym_expr_binary_token12] = ACTIONS(1062), - [aux_sym_expr_binary_token13] = ACTIONS(1062), - [aux_sym_expr_binary_token14] = ACTIONS(1062), - [aux_sym_expr_binary_token15] = ACTIONS(1062), - [aux_sym_expr_binary_token16] = ACTIONS(1062), - [aux_sym_expr_binary_token17] = ACTIONS(1062), - [aux_sym_expr_binary_token18] = ACTIONS(1062), - [aux_sym_expr_binary_token19] = ACTIONS(1062), - [aux_sym_expr_binary_token20] = ACTIONS(1062), - [aux_sym_expr_binary_token21] = ACTIONS(1062), - [aux_sym_expr_binary_token22] = ACTIONS(1062), - [aux_sym_expr_binary_token23] = ACTIONS(1062), - [aux_sym_expr_binary_token24] = ACTIONS(1062), - [aux_sym_expr_binary_token25] = ACTIONS(1062), - [aux_sym_expr_binary_token26] = ACTIONS(1062), - [aux_sym_expr_binary_token27] = ACTIONS(1062), - [aux_sym_expr_binary_token28] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [aux_sym_cmd_identifier_token38] = ACTIONS(4315), + [aux_sym_cmd_identifier_token39] = ACTIONS(4315), + [aux_sym_cmd_identifier_token40] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4317), + [aux_sym__val_number_decimal_token3] = ACTIONS(4319), + [aux_sym__val_number_decimal_token4] = ACTIONS(4321), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1178] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4759), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(6644), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(5398), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4762), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1178), - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(4273), + [anon_sym_false] = ACTIONS(4273), + [anon_sym_null] = ACTIONS(4275), + [aux_sym_cmd_identifier_token38] = ACTIONS(4277), + [aux_sym_cmd_identifier_token39] = ACTIONS(4277), + [aux_sym_cmd_identifier_token40] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(4291), + [aux_sym__val_number_decimal_token2] = ACTIONS(4293), + [aux_sym__val_number_decimal_token3] = ACTIONS(4295), + [aux_sym__val_number_decimal_token4] = ACTIONS(4297), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1179] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4722), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(4456), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(4038), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4726), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1179), - [ts_builtin_sym_end] = ACTIONS(1042), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_PLUS_EQ] = ACTIONS(1042), - [anon_sym_DASH_EQ] = ACTIONS(1042), - [anon_sym_STAR_EQ] = ACTIONS(1042), - [anon_sym_SLASH_EQ] = ACTIONS(1042), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), - [aux_sym_expr_binary_token1] = ACTIONS(1042), - [aux_sym_expr_binary_token2] = ACTIONS(1042), - [aux_sym_expr_binary_token3] = ACTIONS(1042), - [aux_sym_expr_binary_token4] = ACTIONS(1042), - [aux_sym_expr_binary_token5] = ACTIONS(1042), - [aux_sym_expr_binary_token6] = ACTIONS(1042), - [aux_sym_expr_binary_token7] = ACTIONS(1042), - [aux_sym_expr_binary_token8] = ACTIONS(1042), - [aux_sym_expr_binary_token9] = ACTIONS(1042), - [aux_sym_expr_binary_token10] = ACTIONS(1042), - [aux_sym_expr_binary_token11] = ACTIONS(1042), - [aux_sym_expr_binary_token12] = ACTIONS(1042), - [aux_sym_expr_binary_token13] = ACTIONS(1042), - [aux_sym_expr_binary_token14] = ACTIONS(1042), - [aux_sym_expr_binary_token15] = ACTIONS(1042), - [aux_sym_expr_binary_token16] = ACTIONS(1042), - [aux_sym_expr_binary_token17] = ACTIONS(1042), - [aux_sym_expr_binary_token18] = ACTIONS(1042), - [aux_sym_expr_binary_token19] = ACTIONS(1042), - [aux_sym_expr_binary_token20] = ACTIONS(1042), - [aux_sym_expr_binary_token21] = ACTIONS(1042), - [aux_sym_expr_binary_token22] = ACTIONS(1042), - [aux_sym_expr_binary_token23] = ACTIONS(1042), - [aux_sym_expr_binary_token24] = ACTIONS(1042), - [aux_sym_expr_binary_token25] = ACTIONS(1042), - [aux_sym_expr_binary_token26] = ACTIONS(1042), - [aux_sym_expr_binary_token27] = ACTIONS(1042), - [aux_sym_expr_binary_token28] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [aux_sym_cmd_identifier_token38] = ACTIONS(4315), + [aux_sym_cmd_identifier_token39] = ACTIONS(4315), + [aux_sym_cmd_identifier_token40] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4317), + [aux_sym__val_number_decimal_token3] = ACTIONS(4319), + [aux_sym__val_number_decimal_token4] = ACTIONS(4321), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1180] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4692), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(4456), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(4038), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4693), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_QMARK2] = ACTIONS(1046), - [aux_sym_expr_binary_token1] = ACTIONS(1046), - [aux_sym_expr_binary_token2] = ACTIONS(1046), - [aux_sym_expr_binary_token3] = ACTIONS(1046), - [aux_sym_expr_binary_token4] = ACTIONS(1046), - [aux_sym_expr_binary_token5] = ACTIONS(1046), - [aux_sym_expr_binary_token6] = ACTIONS(1046), - [aux_sym_expr_binary_token7] = ACTIONS(1046), - [aux_sym_expr_binary_token8] = ACTIONS(1046), - [aux_sym_expr_binary_token9] = ACTIONS(1046), - [aux_sym_expr_binary_token10] = ACTIONS(1046), - [aux_sym_expr_binary_token11] = ACTIONS(1046), - [aux_sym_expr_binary_token12] = ACTIONS(1046), - [aux_sym_expr_binary_token13] = ACTIONS(1046), - [aux_sym_expr_binary_token14] = ACTIONS(1046), - [aux_sym_expr_binary_token15] = ACTIONS(1046), - [aux_sym_expr_binary_token16] = ACTIONS(1046), - [aux_sym_expr_binary_token17] = ACTIONS(1046), - [aux_sym_expr_binary_token18] = ACTIONS(1046), - [aux_sym_expr_binary_token19] = ACTIONS(1046), - [aux_sym_expr_binary_token20] = ACTIONS(1046), - [aux_sym_expr_binary_token21] = ACTIONS(1046), - [aux_sym_expr_binary_token22] = ACTIONS(1046), - [aux_sym_expr_binary_token23] = ACTIONS(1046), - [aux_sym_expr_binary_token24] = ACTIONS(1046), - [aux_sym_expr_binary_token25] = ACTIONS(1046), - [aux_sym_expr_binary_token26] = ACTIONS(1046), - [aux_sym_expr_binary_token27] = ACTIONS(1046), - [aux_sym_expr_binary_token28] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [aux_sym_cmd_identifier_token38] = ACTIONS(4315), + [aux_sym_cmd_identifier_token39] = ACTIONS(4315), + [aux_sym_cmd_identifier_token40] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4317), + [aux_sym__val_number_decimal_token3] = ACTIONS(4319), + [aux_sym__val_number_decimal_token4] = ACTIONS(4321), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1181] = { + [sym__val_range] = STATE(7539), + [sym__value] = STATE(3680), + [sym_val_nothing] = STATE(3675), + [sym_val_bool] = STATE(3533), + [sym_val_variable] = STATE(3675), + [sym_val_number] = STATE(3675), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(3676), + [sym_val_duration] = STATE(3675), + [sym_val_filesize] = STATE(3675), + [sym_val_binary] = STATE(3675), + [sym_val_string] = STATE(3675), + [sym__str_double_quotes] = STATE(3512), + [sym_val_interpolated] = STATE(3675), + [sym__inter_single_quotes] = STATE(3709), + [sym__inter_double_quotes] = STATE(3710), + [sym_val_list] = STATE(3675), + [sym_val_record] = STATE(3675), + [sym_val_table] = STATE(3675), + [sym_val_closure] = STATE(3675), + [sym_unquoted] = STATE(3684), + [sym__unquoted_anonymous_prefix] = STATE(7592), [sym_comment] = STATE(1181), - [ts_builtin_sym_end] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(1050), - [aux_sym_expr_binary_token1] = ACTIONS(1050), - [aux_sym_expr_binary_token2] = ACTIONS(1050), - [aux_sym_expr_binary_token3] = ACTIONS(1050), - [aux_sym_expr_binary_token4] = ACTIONS(1050), - [aux_sym_expr_binary_token5] = ACTIONS(1050), - [aux_sym_expr_binary_token6] = ACTIONS(1050), - [aux_sym_expr_binary_token7] = ACTIONS(1050), - [aux_sym_expr_binary_token8] = ACTIONS(1050), - [aux_sym_expr_binary_token9] = ACTIONS(1050), - [aux_sym_expr_binary_token10] = ACTIONS(1050), - [aux_sym_expr_binary_token11] = ACTIONS(1050), - [aux_sym_expr_binary_token12] = ACTIONS(1050), - [aux_sym_expr_binary_token13] = ACTIONS(1050), - [aux_sym_expr_binary_token14] = ACTIONS(1050), - [aux_sym_expr_binary_token15] = ACTIONS(1050), - [aux_sym_expr_binary_token16] = ACTIONS(1050), - [aux_sym_expr_binary_token17] = ACTIONS(1050), - [aux_sym_expr_binary_token18] = ACTIONS(1050), - [aux_sym_expr_binary_token19] = ACTIONS(1050), - [aux_sym_expr_binary_token20] = ACTIONS(1050), - [aux_sym_expr_binary_token21] = ACTIONS(1050), - [aux_sym_expr_binary_token22] = ACTIONS(1050), - [aux_sym_expr_binary_token23] = ACTIONS(1050), - [aux_sym_expr_binary_token24] = ACTIONS(1050), - [aux_sym_expr_binary_token25] = ACTIONS(1050), - [aux_sym_expr_binary_token26] = ACTIONS(1050), - [aux_sym_expr_binary_token27] = ACTIONS(1050), - [aux_sym_expr_binary_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_null] = ACTIONS(4327), + [aux_sym_cmd_identifier_token38] = ACTIONS(4329), + [aux_sym_cmd_identifier_token39] = ACTIONS(4329), + [aux_sym_cmd_identifier_token40] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_DOLLAR] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(4351), + [aux_sym__val_number_token2] = ACTIONS(4351), + [aux_sym__val_number_token3] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4367), [anon_sym_POUND] = ACTIONS(247), }, [1182] = { + [sym__val_range] = STATE(7527), + [sym__value] = STATE(4759), + [sym_val_nothing] = STATE(4764), + [sym_val_bool] = STATE(4456), + [sym_val_variable] = STATE(4764), + [sym_val_number] = STATE(4764), + [sym__val_number_decimal] = STATE(4038), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4764), + [sym_val_filesize] = STATE(4764), + [sym_val_binary] = STATE(4764), + [sym_val_string] = STATE(4764), + [sym__str_double_quotes] = STATE(4501), + [sym_val_interpolated] = STATE(4764), + [sym__inter_single_quotes] = STATE(4767), + [sym__inter_double_quotes] = STATE(4768), + [sym_val_list] = STATE(4764), + [sym_val_record] = STATE(4764), + [sym_val_table] = STATE(4764), + [sym_val_closure] = STATE(4764), + [sym_unquoted] = STATE(4762), + [sym__unquoted_anonymous_prefix] = STATE(7549), [sym_comment] = STATE(1182), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_PLUS_EQ] = ACTIONS(1062), - [anon_sym_DASH_EQ] = ACTIONS(1062), - [anon_sym_STAR_EQ] = ACTIONS(1062), - [anon_sym_SLASH_EQ] = ACTIONS(1062), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), - [sym__newline] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1062), - [aux_sym_ctrl_match_token1] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1062), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [aux_sym_cmd_identifier_token38] = ACTIONS(4315), + [aux_sym_cmd_identifier_token39] = ACTIONS(4315), + [aux_sym_cmd_identifier_token40] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4281), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_DOT_DOT] = ACTIONS(4287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), + [anon_sym_DOT_DOT_LT] = ACTIONS(4289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4317), + [aux_sym__val_number_decimal_token3] = ACTIONS(4319), + [aux_sym__val_number_decimal_token4] = ACTIONS(4321), + [aux_sym__val_number_token1] = ACTIONS(4299), + [aux_sym__val_number_token2] = ACTIONS(4299), + [aux_sym__val_number_token3] = ACTIONS(4299), + [anon_sym_0b] = ACTIONS(2075), + [anon_sym_0o] = ACTIONS(2077), + [anon_sym_0x] = ACTIONS(2077), + [sym_val_date] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym__str_single_quotes] = ACTIONS(4305), + [sym__str_back_ticks] = ACTIONS(4305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(2093), [anon_sym_POUND] = ACTIONS(247), }, [1183] = { + [sym__val_range] = STATE(7539), + [sym__value] = STATE(3688), + [sym_val_nothing] = STATE(3675), + [sym_val_bool] = STATE(3533), + [sym_val_variable] = STATE(3675), + [sym_val_number] = STATE(3675), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(3676), + [sym_val_duration] = STATE(3675), + [sym_val_filesize] = STATE(3675), + [sym_val_binary] = STATE(3675), + [sym_val_string] = STATE(3675), + [sym__str_double_quotes] = STATE(3512), + [sym_val_interpolated] = STATE(3675), + [sym__inter_single_quotes] = STATE(3709), + [sym__inter_double_quotes] = STATE(3710), + [sym_val_list] = STATE(3675), + [sym_val_record] = STATE(3675), + [sym_val_table] = STATE(3675), + [sym_val_closure] = STATE(3675), + [sym_unquoted] = STATE(3689), + [sym__unquoted_anonymous_prefix] = STATE(7592), [sym_comment] = STATE(1183), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_null] = ACTIONS(4327), + [aux_sym_cmd_identifier_token38] = ACTIONS(4329), + [aux_sym_cmd_identifier_token39] = ACTIONS(4329), + [aux_sym_cmd_identifier_token40] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_DOLLAR] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(4351), + [aux_sym__val_number_token2] = ACTIONS(4351), + [aux_sym__val_number_token3] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(247), + }, + [1184] = { + [sym__val_range] = STATE(7539), + [sym__value] = STATE(3733), + [sym_val_nothing] = STATE(3675), + [sym_val_bool] = STATE(3533), + [sym_val_variable] = STATE(3675), + [sym_val_number] = STATE(3675), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(3676), + [sym_val_duration] = STATE(3675), + [sym_val_filesize] = STATE(3675), + [sym_val_binary] = STATE(3675), + [sym_val_string] = STATE(3675), + [sym__str_double_quotes] = STATE(3512), + [sym_val_interpolated] = STATE(3675), + [sym__inter_single_quotes] = STATE(3709), + [sym__inter_double_quotes] = STATE(3710), + [sym_val_list] = STATE(3675), + [sym_val_record] = STATE(3675), + [sym_val_table] = STATE(3675), + [sym_val_closure] = STATE(3675), + [sym_unquoted] = STATE(3738), + [sym__unquoted_anonymous_prefix] = STATE(7592), + [sym_comment] = STATE(1184), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_null] = ACTIONS(4327), + [aux_sym_cmd_identifier_token38] = ACTIONS(4329), + [aux_sym_cmd_identifier_token39] = ACTIONS(4329), + [aux_sym_cmd_identifier_token40] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_DOLLAR] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(4351), + [aux_sym__val_number_token2] = ACTIONS(4351), + [aux_sym__val_number_token3] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(247), + }, + [1185] = { + [sym__val_range] = STATE(7420), + [sym__value] = STATE(1637), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1515), + [sym_val_variable] = STATE(1673), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1233), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym_unquoted] = STATE(1638), + [sym__unquoted_anonymous_prefix] = STATE(7560), + [sym_comment] = STATE(1185), + [anon_sym_true] = ACTIONS(4369), + [anon_sym_false] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [aux_sym_cmd_identifier_token38] = ACTIONS(4373), + [aux_sym_cmd_identifier_token39] = ACTIONS(4373), + [aux_sym_cmd_identifier_token40] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), + [anon_sym_DOT_DOT_LT] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(4381), + [aux_sym__val_number_decimal_token2] = ACTIONS(4383), + [aux_sym__val_number_decimal_token3] = ACTIONS(4385), + [aux_sym__val_number_decimal_token4] = ACTIONS(4387), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(247), + }, + [1186] = { + [sym__val_range] = STATE(7539), + [sym__value] = STATE(3741), + [sym_val_nothing] = STATE(3675), + [sym_val_bool] = STATE(3533), + [sym_val_variable] = STATE(3675), + [sym_val_number] = STATE(3675), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(3676), + [sym_val_duration] = STATE(3675), + [sym_val_filesize] = STATE(3675), + [sym_val_binary] = STATE(3675), + [sym_val_string] = STATE(3675), + [sym__str_double_quotes] = STATE(3512), + [sym_val_interpolated] = STATE(3675), + [sym__inter_single_quotes] = STATE(3709), + [sym__inter_double_quotes] = STATE(3710), + [sym_val_list] = STATE(3675), + [sym_val_record] = STATE(3675), + [sym_val_table] = STATE(3675), + [sym_val_closure] = STATE(3675), + [sym_unquoted] = STATE(3742), + [sym__unquoted_anonymous_prefix] = STATE(7592), + [sym_comment] = STATE(1186), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_null] = ACTIONS(4327), + [aux_sym_cmd_identifier_token38] = ACTIONS(4329), + [aux_sym_cmd_identifier_token39] = ACTIONS(4329), + [aux_sym_cmd_identifier_token40] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_DOLLAR] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(4351), + [aux_sym__val_number_token2] = ACTIONS(4351), + [aux_sym__val_number_token3] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(247), + }, + [1187] = { + [sym__val_range] = STATE(7420), + [sym__value] = STATE(1640), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1515), + [sym_val_variable] = STATE(1673), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1233), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym_unquoted] = STATE(1642), + [sym__unquoted_anonymous_prefix] = STATE(7560), + [sym_comment] = STATE(1187), + [anon_sym_true] = ACTIONS(4369), + [anon_sym_false] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [aux_sym_cmd_identifier_token38] = ACTIONS(4373), + [aux_sym_cmd_identifier_token39] = ACTIONS(4373), + [aux_sym_cmd_identifier_token40] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), + [anon_sym_DOT_DOT_LT] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(4381), + [aux_sym__val_number_decimal_token2] = ACTIONS(4383), + [aux_sym__val_number_decimal_token3] = ACTIONS(4385), + [aux_sym__val_number_decimal_token4] = ACTIONS(4387), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(247), + }, + [1188] = { + [sym__val_range] = STATE(7681), + [sym__value] = STATE(2715), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5604), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(2717), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1188), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), + [anon_sym_DOT_DOT_LT] = ACTIONS(4399), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1189] = { + [sym_path] = STATE(1246), + [sym_comment] = STATE(1189), + [aux_sym_cell_path_repeat1] = STATE(1204), + [ts_builtin_sym_end] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(247), + }, + [1190] = { + [sym__val_range] = STATE(7420), + [sym__value] = STATE(1663), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1515), + [sym_val_variable] = STATE(1673), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1233), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym_unquoted] = STATE(1664), + [sym__unquoted_anonymous_prefix] = STATE(7560), + [sym_comment] = STATE(1190), + [anon_sym_true] = ACTIONS(4369), + [anon_sym_false] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [aux_sym_cmd_identifier_token38] = ACTIONS(4373), + [aux_sym_cmd_identifier_token39] = ACTIONS(4373), + [aux_sym_cmd_identifier_token40] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), + [anon_sym_DOT_DOT_LT] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(4381), + [aux_sym__val_number_decimal_token2] = ACTIONS(4383), + [aux_sym__val_number_decimal_token3] = ACTIONS(4385), + [aux_sym__val_number_decimal_token4] = ACTIONS(4387), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(247), + }, + [1191] = { + [sym__val_range] = STATE(7499), + [sym__value] = STATE(5713), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(5575), + [sym_val_variable] = STATE(4130), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(5071), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(5718), + [sym__unquoted_anonymous_prefix] = STATE(7504), + [sym_comment] = STATE(1191), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [aux_sym_cmd_identifier_token38] = ACTIONS(4405), + [aux_sym_cmd_identifier_token39] = ACTIONS(4405), + [aux_sym_cmd_identifier_token40] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), + [anon_sym_DOT_DOT_LT] = ACTIONS(4413), + [aux_sym__val_number_decimal_token1] = ACTIONS(4415), + [aux_sym__val_number_decimal_token2] = ACTIONS(4417), + [aux_sym__val_number_decimal_token3] = ACTIONS(4419), + [aux_sym__val_number_decimal_token4] = ACTIONS(4421), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + }, + [1192] = { + [sym__val_range] = STATE(7420), + [sym__value] = STATE(1666), + [sym_val_nothing] = STATE(1673), + [sym_val_bool] = STATE(1515), + [sym_val_variable] = STATE(1673), + [sym_val_number] = STATE(1673), + [sym__val_number_decimal] = STATE(1233), + [sym__val_number] = STATE(1734), + [sym_val_duration] = STATE(1673), + [sym_val_filesize] = STATE(1673), + [sym_val_binary] = STATE(1673), + [sym_val_string] = STATE(1673), + [sym__str_double_quotes] = STATE(1675), + [sym_val_interpolated] = STATE(1673), + [sym__inter_single_quotes] = STATE(1583), + [sym__inter_double_quotes] = STATE(1584), + [sym_val_list] = STATE(1673), + [sym_val_record] = STATE(1673), + [sym_val_table] = STATE(1673), + [sym_val_closure] = STATE(1673), + [sym_unquoted] = STATE(1667), + [sym__unquoted_anonymous_prefix] = STATE(7560), + [sym_comment] = STATE(1192), + [anon_sym_true] = ACTIONS(4369), + [anon_sym_false] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [aux_sym_cmd_identifier_token38] = ACTIONS(4373), + [aux_sym_cmd_identifier_token39] = ACTIONS(4373), + [aux_sym_cmd_identifier_token40] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), + [anon_sym_DOT_DOT_LT] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(4381), + [aux_sym__val_number_decimal_token2] = ACTIONS(4383), + [aux_sym__val_number_decimal_token3] = ACTIONS(4385), + [aux_sym__val_number_decimal_token4] = ACTIONS(4387), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2631), + [anon_sym_0x] = ACTIONS(2631), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(247), + }, + [1193] = { + [sym__val_range] = STATE(7499), + [sym__value] = STATE(5720), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(5575), + [sym_val_variable] = STATE(4130), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(5071), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(5721), + [sym__unquoted_anonymous_prefix] = STATE(7504), + [sym_comment] = STATE(1193), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [aux_sym_cmd_identifier_token38] = ACTIONS(4405), + [aux_sym_cmd_identifier_token39] = ACTIONS(4405), + [aux_sym_cmd_identifier_token40] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), + [anon_sym_DOT_DOT_LT] = ACTIONS(4413), + [aux_sym__val_number_decimal_token1] = ACTIONS(4415), + [aux_sym__val_number_decimal_token2] = ACTIONS(4417), + [aux_sym__val_number_decimal_token3] = ACTIONS(4419), + [aux_sym__val_number_decimal_token4] = ACTIONS(4421), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + }, + [1194] = { + [sym__val_range] = STATE(7499), + [sym__value] = STATE(5849), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(5575), + [sym_val_variable] = STATE(4130), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(5071), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(5850), + [sym__unquoted_anonymous_prefix] = STATE(7504), + [sym_comment] = STATE(1194), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [aux_sym_cmd_identifier_token38] = ACTIONS(4405), + [aux_sym_cmd_identifier_token39] = ACTIONS(4405), + [aux_sym_cmd_identifier_token40] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), + [anon_sym_DOT_DOT_LT] = ACTIONS(4413), + [aux_sym__val_number_decimal_token1] = ACTIONS(4415), + [aux_sym__val_number_decimal_token2] = ACTIONS(4417), + [aux_sym__val_number_decimal_token3] = ACTIONS(4419), + [aux_sym__val_number_decimal_token4] = ACTIONS(4421), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + }, + [1195] = { + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5389), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(5510), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(4917), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5440), + [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym_comment] = STATE(1195), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = ACTIONS(3995), + [anon_sym_null] = ACTIONS(3997), + [aux_sym_cmd_identifier_token38] = ACTIONS(3999), + [aux_sym_cmd_identifier_token39] = ACTIONS(3999), + [aux_sym_cmd_identifier_token40] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4009), + [aux_sym__val_number_decimal_token2] = ACTIONS(4011), + [aux_sym__val_number_decimal_token3] = ACTIONS(4013), + [aux_sym__val_number_decimal_token4] = ACTIONS(4015), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), + [anon_sym_POUND] = ACTIONS(247), + }, + [1196] = { + [sym__val_range] = STATE(7499), + [sym__value] = STATE(5852), + [sym_val_nothing] = STATE(4130), + [sym_val_bool] = STATE(5575), + [sym_val_variable] = STATE(4130), + [sym_val_number] = STATE(4130), + [sym__val_number_decimal] = STATE(5071), + [sym__val_number] = STATE(4118), + [sym_val_duration] = STATE(4130), + [sym_val_filesize] = STATE(4130), + [sym_val_binary] = STATE(4130), + [sym_val_string] = STATE(4130), + [sym__str_double_quotes] = STATE(3551), + [sym_val_interpolated] = STATE(4130), + [sym__inter_single_quotes] = STATE(4213), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4130), + [sym_val_record] = STATE(4130), + [sym_val_table] = STATE(4130), + [sym_val_closure] = STATE(4130), + [sym_unquoted] = STATE(5854), + [sym__unquoted_anonymous_prefix] = STATE(7504), + [sym_comment] = STATE(1196), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [aux_sym_cmd_identifier_token38] = ACTIONS(4405), + [aux_sym_cmd_identifier_token39] = ACTIONS(4405), + [aux_sym_cmd_identifier_token40] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), + [anon_sym_DOT_DOT_LT] = ACTIONS(4413), + [aux_sym__val_number_decimal_token1] = ACTIONS(4415), + [aux_sym__val_number_decimal_token2] = ACTIONS(4417), + [aux_sym__val_number_decimal_token3] = ACTIONS(4419), + [aux_sym__val_number_decimal_token4] = ACTIONS(4421), + [aux_sym__val_number_token1] = ACTIONS(3469), + [aux_sym__val_number_token2] = ACTIONS(3469), + [aux_sym__val_number_token3] = ACTIONS(3469), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym__str_single_quotes] = ACTIONS(3479), + [sym__str_back_ticks] = ACTIONS(3479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + }, + [1197] = { + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5485), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(5510), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(4917), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5487), + [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym_comment] = STATE(1197), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = ACTIONS(3995), + [anon_sym_null] = ACTIONS(3997), + [aux_sym_cmd_identifier_token38] = ACTIONS(3999), + [aux_sym_cmd_identifier_token39] = ACTIONS(3999), + [aux_sym_cmd_identifier_token40] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4009), + [aux_sym__val_number_decimal_token2] = ACTIONS(4011), + [aux_sym__val_number_decimal_token3] = ACTIONS(4013), + [aux_sym__val_number_decimal_token4] = ACTIONS(4015), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), + [anon_sym_POUND] = ACTIONS(247), + }, + [1198] = { + [sym__val_range] = STATE(7629), + [sym__value] = STATE(5522), + [sym_val_nothing] = STATE(4042), + [sym_val_bool] = STATE(5510), + [sym_val_variable] = STATE(4042), + [sym_val_number] = STATE(4042), + [sym__val_number_decimal] = STATE(4917), + [sym__val_number] = STATE(3465), + [sym_val_duration] = STATE(4042), + [sym_val_filesize] = STATE(4042), + [sym_val_binary] = STATE(4042), + [sym_val_string] = STATE(4042), + [sym__str_double_quotes] = STATE(2725), + [sym_val_interpolated] = STATE(4042), + [sym__inter_single_quotes] = STATE(4011), + [sym__inter_double_quotes] = STATE(4052), + [sym_val_list] = STATE(4042), + [sym_val_record] = STATE(4042), + [sym_val_table] = STATE(4042), + [sym_val_closure] = STATE(4042), + [sym_unquoted] = STATE(5390), + [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym_comment] = STATE(1198), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = ACTIONS(3995), + [anon_sym_null] = ACTIONS(3997), + [aux_sym_cmd_identifier_token38] = ACTIONS(3999), + [aux_sym_cmd_identifier_token39] = ACTIONS(3999), + [aux_sym_cmd_identifier_token40] = ACTIONS(3999), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4003), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(4005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), + [anon_sym_DOT_DOT_LT] = ACTIONS(4007), + [aux_sym__val_number_decimal_token1] = ACTIONS(4009), + [aux_sym__val_number_decimal_token2] = ACTIONS(4011), + [aux_sym__val_number_decimal_token3] = ACTIONS(4013), + [aux_sym__val_number_decimal_token4] = ACTIONS(4015), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [anon_sym_0b] = ACTIONS(3423), + [anon_sym_0o] = ACTIONS(3425), + [anon_sym_0x] = ACTIONS(3425), + [sym_val_date] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym__str_single_quotes] = ACTIONS(3431), + [sym__str_back_ticks] = ACTIONS(3431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3437), + [anon_sym_POUND] = ACTIONS(247), + }, + [1199] = { + [sym__val_range] = STATE(7681), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5604), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(6008), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1199), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), + [anon_sym_DOT_DOT_LT] = ACTIONS(4399), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1200] = { + [sym__expr_parenthesized_immediate] = STATE(1827), + [sym__immediate_decimal] = STATE(1902), + [sym_val_variable] = STATE(1827), + [sym_comment] = STATE(1200), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT] = ACTIONS(1506), + [aux_sym__immediate_decimal_token1] = ACTIONS(4095), + [aux_sym__immediate_decimal_token3] = ACTIONS(4097), + [aux_sym__immediate_decimal_token4] = ACTIONS(4099), + [aux_sym__immediate_decimal_token5] = ACTIONS(4101), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [aux_sym_unquoted_token1] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(247), + }, + [1201] = { + [sym__val_range] = STATE(7687), + [sym__value] = STATE(2715), + [sym_val_nothing] = STATE(2777), + [sym_val_bool] = STATE(2662), + [sym_val_variable] = STATE(2777), + [sym_val_number] = STATE(2777), + [sym__val_number_decimal] = STATE(2457), + [sym__val_number] = STATE(2758), + [sym_val_duration] = STATE(2777), + [sym_val_filesize] = STATE(2777), + [sym_val_binary] = STATE(2777), + [sym_val_string] = STATE(2777), + [sym__str_double_quotes] = STATE(2731), + [sym_val_interpolated] = STATE(2777), + [sym__inter_single_quotes] = STATE(2787), + [sym__inter_double_quotes] = STATE(2788), + [sym_val_list] = STATE(2777), + [sym_val_record] = STATE(2777), + [sym_val_table] = STATE(2777), + [sym_val_closure] = STATE(2777), + [sym_unquoted] = STATE(2717), + [sym__unquoted_anonymous_prefix] = STATE(7483), + [sym_comment] = STATE(1201), + [anon_sym_true] = ACTIONS(4021), + [anon_sym_false] = ACTIONS(4021), + [anon_sym_null] = ACTIONS(4023), + [aux_sym_cmd_identifier_token38] = ACTIONS(4025), + [aux_sym_cmd_identifier_token39] = ACTIONS(4025), + [aux_sym_cmd_identifier_token40] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4031), + [anon_sym_LBRACE] = ACTIONS(4033), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4037), + [anon_sym_DOT_DOT_LT] = ACTIONS(4037), + [aux_sym__val_number_decimal_token1] = ACTIONS(4039), + [aux_sym__val_number_decimal_token2] = ACTIONS(4041), + [aux_sym__val_number_decimal_token3] = ACTIONS(4043), + [aux_sym__val_number_decimal_token4] = ACTIONS(4045), + [aux_sym__val_number_token1] = ACTIONS(4047), + [aux_sym__val_number_token2] = ACTIONS(4047), + [aux_sym__val_number_token3] = ACTIONS(4047), + [anon_sym_0b] = ACTIONS(4049), + [anon_sym_0o] = ACTIONS(4051), + [anon_sym_0x] = ACTIONS(4051), + [sym_val_date] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4055), + [sym__str_single_quotes] = ACTIONS(4057), + [sym__str_back_ticks] = ACTIONS(4057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4059), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4061), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(4063), + [anon_sym_POUND] = ACTIONS(247), + }, + [1202] = { + [sym_comment] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(3959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [1203] = { + [sym__val_range] = STATE(7681), + [sym__value] = STATE(2720), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5604), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(2724), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1203), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), + [anon_sym_DOT_DOT_LT] = ACTIONS(4399), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1204] = { + [sym_path] = STATE(1246), + [sym_comment] = STATE(1204), + [aux_sym_cell_path_repeat1] = STATE(1204), + [ts_builtin_sym_end] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [aux_sym_expr_binary_token1] = ACTIONS(1017), + [aux_sym_expr_binary_token2] = ACTIONS(1017), + [aux_sym_expr_binary_token3] = ACTIONS(1017), + [aux_sym_expr_binary_token4] = ACTIONS(1017), + [aux_sym_expr_binary_token5] = ACTIONS(1017), + [aux_sym_expr_binary_token6] = ACTIONS(1017), + [aux_sym_expr_binary_token7] = ACTIONS(1017), + [aux_sym_expr_binary_token8] = ACTIONS(1017), + [aux_sym_expr_binary_token9] = ACTIONS(1017), + [aux_sym_expr_binary_token10] = ACTIONS(1017), + [aux_sym_expr_binary_token11] = ACTIONS(1017), + [aux_sym_expr_binary_token12] = ACTIONS(1017), + [aux_sym_expr_binary_token13] = ACTIONS(1017), + [aux_sym_expr_binary_token14] = ACTIONS(1017), + [aux_sym_expr_binary_token15] = ACTIONS(1017), + [aux_sym_expr_binary_token16] = ACTIONS(1017), + [aux_sym_expr_binary_token17] = ACTIONS(1017), + [aux_sym_expr_binary_token18] = ACTIONS(1017), + [aux_sym_expr_binary_token19] = ACTIONS(1017), + [aux_sym_expr_binary_token20] = ACTIONS(1017), + [aux_sym_expr_binary_token21] = ACTIONS(1017), + [aux_sym_expr_binary_token22] = ACTIONS(1017), + [aux_sym_expr_binary_token23] = ACTIONS(1017), + [aux_sym_expr_binary_token24] = ACTIONS(1017), + [aux_sym_expr_binary_token25] = ACTIONS(1017), + [aux_sym_expr_binary_token26] = ACTIONS(1017), + [aux_sym_expr_binary_token27] = ACTIONS(1017), + [aux_sym_expr_binary_token28] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(4425), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(247), + }, + [1205] = { + [sym_cell_path] = STATE(1391), + [sym_path] = STATE(1292), + [sym_comment] = STATE(1205), + [aux_sym_cell_path_repeat1] = STATE(1230), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT] = ACTIONS(1641), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(247), + }, + [1206] = { + [sym__val_range] = STATE(7681), + [sym__value] = STATE(5935), + [sym_val_nothing] = STATE(2221), + [sym_val_bool] = STATE(3707), + [sym_val_variable] = STATE(2221), + [sym_val_number] = STATE(2221), + [sym__val_number_decimal] = STATE(5604), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(2221), + [sym_val_filesize] = STATE(2221), + [sym_val_binary] = STATE(2221), + [sym_val_string] = STATE(2221), + [sym__str_double_quotes] = STATE(2002), + [sym_val_interpolated] = STATE(2221), + [sym__inter_single_quotes] = STATE(2239), + [sym__inter_double_quotes] = STATE(2243), + [sym_val_list] = STATE(2221), + [sym_val_record] = STATE(2221), + [sym_val_table] = STATE(2221), + [sym_val_closure] = STATE(2221), + [sym_unquoted] = STATE(5939), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1206), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3261), + [aux_sym_cmd_identifier_token38] = ACTIONS(3846), + [aux_sym_cmd_identifier_token39] = ACTIONS(3846), + [aux_sym_cmd_identifier_token40] = ACTIONS(3846), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(3854), + [anon_sym_DOT_DOT] = ACTIONS(4397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), + [anon_sym_DOT_DOT_LT] = ACTIONS(4399), + [aux_sym__val_number_decimal_token1] = ACTIONS(3279), + [aux_sym__val_number_decimal_token2] = ACTIONS(3281), + [aux_sym__val_number_decimal_token3] = ACTIONS(3283), + [aux_sym__val_number_decimal_token4] = ACTIONS(3285), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym__str_single_quotes] = ACTIONS(3862), + [sym__str_back_ticks] = ACTIONS(3862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1207] = { + [sym_comment] = STATE(1207), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4428), + [aux_sym__immediate_decimal_token2] = ACTIONS(4430), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [1208] = { + [sym_cell_path] = STATE(1467), + [sym_path] = STATE(1376), + [sym_comment] = STATE(1208), + [aux_sym_cell_path_repeat1] = STATE(1258), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(4432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT] = ACTIONS(1641), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1641), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1641), + [anon_sym_0x] = ACTIONS(1641), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(247), + }, + [1209] = { + [sym_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4434), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [aux_sym_cmd_identifier_token38] = ACTIONS(1655), + [aux_sym_cmd_identifier_token39] = ACTIONS(1655), + [aux_sym_cmd_identifier_token40] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token3] = ACTIONS(1655), + [aux_sym__val_number_decimal_token4] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(247), + }, + [1211] = { + [sym_comment] = STATE(1211), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [1212] = { + [sym_comment] = STATE(1212), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1048), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(247), + }, + [1213] = { + [sym_comment] = STATE(1213), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(247), + }, + [1214] = { + [sym_comment] = STATE(1214), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [1215] = { + [sym_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(247), + }, + [1216] = { + [sym_comment] = STATE(1216), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [aux_sym_cmd_identifier_token38] = ACTIONS(1655), + [aux_sym_cmd_identifier_token39] = ACTIONS(1655), + [aux_sym_cmd_identifier_token40] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token3] = ACTIONS(1655), + [aux_sym__val_number_decimal_token4] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(247), + }, + [1217] = { + [sym_comment] = STATE(1217), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [aux_sym_record_entry_token1] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(247), + }, + [1218] = { + [sym_comment] = STATE(1218), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1052), + [anon_sym_DASH_EQ] = ACTIONS(1052), + [anon_sym_STAR_EQ] = ACTIONS(1052), + [anon_sym_SLASH_EQ] = ACTIONS(1052), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1052), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(247), + }, + [1219] = { + [sym_comment] = STATE(1219), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [aux_sym_expr_binary_token1] = ACTIONS(1048), + [aux_sym_expr_binary_token2] = ACTIONS(1048), + [aux_sym_expr_binary_token3] = ACTIONS(1048), + [aux_sym_expr_binary_token4] = ACTIONS(1048), + [aux_sym_expr_binary_token5] = ACTIONS(1048), + [aux_sym_expr_binary_token6] = ACTIONS(1048), + [aux_sym_expr_binary_token7] = ACTIONS(1048), + [aux_sym_expr_binary_token8] = ACTIONS(1048), + [aux_sym_expr_binary_token9] = ACTIONS(1048), + [aux_sym_expr_binary_token10] = ACTIONS(1048), + [aux_sym_expr_binary_token11] = ACTIONS(1048), + [aux_sym_expr_binary_token12] = ACTIONS(1048), + [aux_sym_expr_binary_token13] = ACTIONS(1048), + [aux_sym_expr_binary_token14] = ACTIONS(1048), + [aux_sym_expr_binary_token15] = ACTIONS(1048), + [aux_sym_expr_binary_token16] = ACTIONS(1048), + [aux_sym_expr_binary_token17] = ACTIONS(1048), + [aux_sym_expr_binary_token18] = ACTIONS(1048), + [aux_sym_expr_binary_token19] = ACTIONS(1048), + [aux_sym_expr_binary_token20] = ACTIONS(1048), + [aux_sym_expr_binary_token21] = ACTIONS(1048), + [aux_sym_expr_binary_token22] = ACTIONS(1048), + [aux_sym_expr_binary_token23] = ACTIONS(1048), + [aux_sym_expr_binary_token24] = ACTIONS(1048), + [aux_sym_expr_binary_token25] = ACTIONS(1048), + [aux_sym_expr_binary_token26] = ACTIONS(1048), + [aux_sym_expr_binary_token27] = ACTIONS(1048), + [aux_sym_expr_binary_token28] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(247), + }, + [1220] = { + [sym_comment] = STATE(1220), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1056), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(247), + }, + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [1222] = { + [sym_comment] = STATE(1222), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4069), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1223] = { + [sym_comment] = STATE(1223), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(4436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1224] = { + [sym_comment] = STATE(1224), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1052), + [anon_sym_DASH_EQ] = ACTIONS(1052), + [anon_sym_STAR_EQ] = ACTIONS(1052), + [anon_sym_SLASH_EQ] = ACTIONS(1052), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_expr_binary_token1] = ACTIONS(1052), + [aux_sym_expr_binary_token2] = ACTIONS(1052), + [aux_sym_expr_binary_token3] = ACTIONS(1052), + [aux_sym_expr_binary_token4] = ACTIONS(1052), + [aux_sym_expr_binary_token5] = ACTIONS(1052), + [aux_sym_expr_binary_token6] = ACTIONS(1052), + [aux_sym_expr_binary_token7] = ACTIONS(1052), + [aux_sym_expr_binary_token8] = ACTIONS(1052), + [aux_sym_expr_binary_token9] = ACTIONS(1052), + [aux_sym_expr_binary_token10] = ACTIONS(1052), + [aux_sym_expr_binary_token11] = ACTIONS(1052), + [aux_sym_expr_binary_token12] = ACTIONS(1052), + [aux_sym_expr_binary_token13] = ACTIONS(1052), + [aux_sym_expr_binary_token14] = ACTIONS(1052), + [aux_sym_expr_binary_token15] = ACTIONS(1052), + [aux_sym_expr_binary_token16] = ACTIONS(1052), + [aux_sym_expr_binary_token17] = ACTIONS(1052), + [aux_sym_expr_binary_token18] = ACTIONS(1052), + [aux_sym_expr_binary_token19] = ACTIONS(1052), + [aux_sym_expr_binary_token20] = ACTIONS(1052), + [aux_sym_expr_binary_token21] = ACTIONS(1052), + [aux_sym_expr_binary_token22] = ACTIONS(1052), + [aux_sym_expr_binary_token23] = ACTIONS(1052), + [aux_sym_expr_binary_token24] = ACTIONS(1052), + [aux_sym_expr_binary_token25] = ACTIONS(1052), + [aux_sym_expr_binary_token26] = ACTIONS(1052), + [aux_sym_expr_binary_token27] = ACTIONS(1052), + [aux_sym_expr_binary_token28] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(247), + }, + [1225] = { + [sym_comment] = STATE(1225), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [aux_sym_expr_binary_token1] = ACTIONS(1056), + [aux_sym_expr_binary_token2] = ACTIONS(1056), + [aux_sym_expr_binary_token3] = ACTIONS(1056), + [aux_sym_expr_binary_token4] = ACTIONS(1056), + [aux_sym_expr_binary_token5] = ACTIONS(1056), + [aux_sym_expr_binary_token6] = ACTIONS(1056), + [aux_sym_expr_binary_token7] = ACTIONS(1056), + [aux_sym_expr_binary_token8] = ACTIONS(1056), + [aux_sym_expr_binary_token9] = ACTIONS(1056), + [aux_sym_expr_binary_token10] = ACTIONS(1056), + [aux_sym_expr_binary_token11] = ACTIONS(1056), + [aux_sym_expr_binary_token12] = ACTIONS(1056), + [aux_sym_expr_binary_token13] = ACTIONS(1056), + [aux_sym_expr_binary_token14] = ACTIONS(1056), + [aux_sym_expr_binary_token15] = ACTIONS(1056), + [aux_sym_expr_binary_token16] = ACTIONS(1056), + [aux_sym_expr_binary_token17] = ACTIONS(1056), + [aux_sym_expr_binary_token18] = ACTIONS(1056), + [aux_sym_expr_binary_token19] = ACTIONS(1056), + [aux_sym_expr_binary_token20] = ACTIONS(1056), + [aux_sym_expr_binary_token21] = ACTIONS(1056), + [aux_sym_expr_binary_token22] = ACTIONS(1056), + [aux_sym_expr_binary_token23] = ACTIONS(1056), + [aux_sym_expr_binary_token24] = ACTIONS(1056), + [aux_sym_expr_binary_token25] = ACTIONS(1056), + [aux_sym_expr_binary_token26] = ACTIONS(1056), + [aux_sym_expr_binary_token27] = ACTIONS(1056), + [aux_sym_expr_binary_token28] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(247), + }, + [1226] = { + [sym_comment] = STATE(1226), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), + }, + [1227] = { + [sym_comment] = STATE(1227), + [ts_builtin_sym_end] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(247), + }, + [1228] = { + [sym_comment] = STATE(1228), [ts_builtin_sym_end] = ACTIONS(1036), [anon_sym_EQ] = ACTIONS(1034), [anon_sym_PLUS_EQ] = ACTIONS(1036), @@ -187849,7 +193765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(4420), + [anon_sym_QMARK2] = ACTIONS(1036), [aux_sym_expr_binary_token1] = ACTIONS(1036), [aux_sym_expr_binary_token2] = ACTIONS(1036), [aux_sym_expr_binary_token3] = ACTIONS(1036), @@ -187900,150 +193816,789 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, - [1184] = { - [sym_path] = STATE(1252), - [sym_comment] = STATE(1184), - [aux_sym_cell_path_repeat1] = STATE(1185), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1019), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [sym__newline] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1017), - [aux_sym_ctrl_match_token1] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1017), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_0b] = ACTIONS(1017), - [anon_sym_0o] = ACTIONS(1017), - [anon_sym_0x] = ACTIONS(1017), - [sym_val_date] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), - [aux_sym_unquoted_token1] = ACTIONS(1017), + [1229] = { + [sym_comment] = STATE(1229), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4440), + [aux_sym__immediate_decimal_token2] = ACTIONS(4442), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [1185] = { - [sym_path] = STATE(1252), - [sym_comment] = STATE(1185), - [aux_sym_cell_path_repeat1] = STATE(1185), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1021), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_DOT_DOT_LT] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), + [1230] = { + [sym_path] = STATE(1292), + [sym_comment] = STATE(1230), + [aux_sym_cell_path_repeat1] = STATE(1234), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_DOT_DOT_LT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, - [1186] = { - [sym_comment] = STATE(1186), + [1231] = { + [sym_cell_path] = STATE(1472), + [sym_path] = STATE(1376), + [sym_comment] = STATE(1231), + [aux_sym_cell_path_repeat1] = STATE(1258), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(4432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [anon_sym_0b] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [sym_val_date] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [aux_sym_unquoted_token1] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(247), + }, + [1232] = { + [sym__match_pattern_expression] = STATE(3060), + [sym__match_pattern_value] = STATE(3093), + [sym__match_pattern_list] = STATE(3094), + [sym__match_pattern_record] = STATE(3095), + [sym_expr_parenthesized] = STATE(2884), + [sym_val_range] = STATE(3093), + [sym__val_range] = STATE(7378), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(3015), + [sym_val_variable] = STATE(2885), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2627), + [sym__val_number] = STATE(3088), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__str_double_quotes] = STATE(3056), + [sym_val_table] = STATE(3096), + [sym__unquoted_in_list] = STATE(3060), + [sym__unquoted_anonymous_prefix] = STATE(7454), + [sym_comment] = STATE(1232), + [aux_sym__match_pattern_list_repeat1] = STATE(1232), + [anon_sym_true] = ACTIONS(4444), + [anon_sym_false] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4447), + [aux_sym_cmd_identifier_token38] = ACTIONS(4450), + [aux_sym_cmd_identifier_token39] = ACTIONS(4450), + [aux_sym_cmd_identifier_token40] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4456), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_DOT_DOT] = ACTIONS(4467), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), + [anon_sym_DOT_DOT_LT] = ACTIONS(4470), + [aux_sym__val_number_decimal_token1] = ACTIONS(4473), + [aux_sym__val_number_decimal_token2] = ACTIONS(4476), + [aux_sym__val_number_decimal_token3] = ACTIONS(4479), + [aux_sym__val_number_decimal_token4] = ACTIONS(4482), + [aux_sym__val_number_token1] = ACTIONS(4485), + [aux_sym__val_number_token2] = ACTIONS(4485), + [aux_sym__val_number_token3] = ACTIONS(4485), + [anon_sym_0b] = ACTIONS(4488), + [anon_sym_0o] = ACTIONS(4491), + [anon_sym_0x] = ACTIONS(4491), + [sym_val_date] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4497), + [sym__str_single_quotes] = ACTIONS(4500), + [sym__str_back_ticks] = ACTIONS(4500), + [anon_sym_err_GT] = ACTIONS(4503), + [anon_sym_out_GT] = ACTIONS(4503), + [anon_sym_e_GT] = ACTIONS(4503), + [anon_sym_o_GT] = ACTIONS(4503), + [anon_sym_err_PLUSout_GT] = ACTIONS(4503), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4503), + [anon_sym_o_PLUSe_GT] = ACTIONS(4503), + [anon_sym_e_PLUSo_GT] = ACTIONS(4503), + [anon_sym_err_GT_GT] = ACTIONS(4506), + [anon_sym_out_GT_GT] = ACTIONS(4506), + [anon_sym_e_GT_GT] = ACTIONS(4506), + [anon_sym_o_GT_GT] = ACTIONS(4506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4506), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4509), + [anon_sym_POUND] = ACTIONS(247), + }, + [1233] = { + [sym_comment] = STATE(1233), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1572), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(4512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT] = ACTIONS(1560), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [anon_sym_0b] = ACTIONS(1560), + [sym_filesize_unit] = ACTIONS(4516), + [sym_duration_unit] = ACTIONS(4518), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [aux_sym_unquoted_token2] = ACTIONS(4520), + [anon_sym_POUND] = ACTIONS(247), + }, + [1234] = { + [sym_path] = STATE(1292), + [sym_comment] = STATE(1234), + [aux_sym_cell_path_repeat1] = STATE(1234), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(4522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_DOT_DOT_LT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_0b] = ACTIONS(1015), + [anon_sym_0o] = ACTIONS(1015), + [anon_sym_0x] = ACTIONS(1015), + [sym_val_date] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), + [aux_sym_unquoted_token1] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(247), + }, + [1235] = { + [sym_comment] = STATE(1235), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4073), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [1236] = { + [sym_comment] = STATE(1236), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [1237] = { + [sym_cell_path] = STATE(1468), + [sym_path] = STATE(1376), + [sym_comment] = STATE(1237), + [aux_sym_cell_path_repeat1] = STATE(1258), + [ts_builtin_sym_end] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1007), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [sym__newline] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT2] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(4432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_DOT_DOT_LT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_0b] = ACTIONS(1005), + [anon_sym_0o] = ACTIONS(1005), + [anon_sym_0x] = ACTIONS(1005), + [sym_val_date] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [aux_sym_unquoted_token1] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(247), + }, + [1238] = { + [sym_comment] = STATE(1238), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4525), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [1239] = { + [sym_comment] = STATE(1239), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [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_QMARK2] = ACTIONS(4527), + [aux_sym_expr_binary_token1] = ACTIONS(1024), + [aux_sym_expr_binary_token2] = ACTIONS(1024), + [aux_sym_expr_binary_token3] = ACTIONS(1024), + [aux_sym_expr_binary_token4] = ACTIONS(1024), + [aux_sym_expr_binary_token5] = ACTIONS(1024), + [aux_sym_expr_binary_token6] = ACTIONS(1024), + [aux_sym_expr_binary_token7] = ACTIONS(1024), + [aux_sym_expr_binary_token8] = ACTIONS(1024), + [aux_sym_expr_binary_token9] = ACTIONS(1024), + [aux_sym_expr_binary_token10] = ACTIONS(1024), + [aux_sym_expr_binary_token11] = ACTIONS(1024), + [aux_sym_expr_binary_token12] = ACTIONS(1024), + [aux_sym_expr_binary_token13] = ACTIONS(1024), + [aux_sym_expr_binary_token14] = ACTIONS(1024), + [aux_sym_expr_binary_token15] = ACTIONS(1024), + [aux_sym_expr_binary_token16] = ACTIONS(1024), + [aux_sym_expr_binary_token17] = ACTIONS(1024), + [aux_sym_expr_binary_token18] = ACTIONS(1024), + [aux_sym_expr_binary_token19] = ACTIONS(1024), + [aux_sym_expr_binary_token20] = ACTIONS(1024), + [aux_sym_expr_binary_token21] = ACTIONS(1024), + [aux_sym_expr_binary_token22] = ACTIONS(1024), + [aux_sym_expr_binary_token23] = ACTIONS(1024), + [aux_sym_expr_binary_token24] = ACTIONS(1024), + [aux_sym_expr_binary_token25] = ACTIONS(1024), + [aux_sym_expr_binary_token26] = ACTIONS(1024), + [aux_sym_expr_binary_token27] = ACTIONS(1024), + [aux_sym_expr_binary_token28] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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(247), + }, + [1240] = { + [sym_comment] = STATE(1240), [ts_builtin_sym_end] = ACTIONS(1030), [anon_sym_EQ] = ACTIONS(1028), [anon_sym_PLUS_EQ] = ACTIONS(1030), @@ -188062,7 +194617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4425), + [anon_sym_QMARK2] = ACTIONS(4529), [aux_sym_expr_binary_token1] = ACTIONS(1030), [aux_sym_expr_binary_token2] = ACTIONS(1030), [aux_sym_expr_binary_token3] = ACTIONS(1030), @@ -188113,792 +194668,1200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, - [1187] = { - [sym_comment] = STATE(1187), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [1241] = { + [sym_comment] = STATE(1241), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [aux_sym_expr_binary_token1] = ACTIONS(1056), + [aux_sym_expr_binary_token2] = ACTIONS(1056), + [aux_sym_expr_binary_token3] = ACTIONS(1056), + [aux_sym_expr_binary_token4] = ACTIONS(1056), + [aux_sym_expr_binary_token5] = ACTIONS(1056), + [aux_sym_expr_binary_token6] = ACTIONS(1056), + [aux_sym_expr_binary_token7] = ACTIONS(1056), + [aux_sym_expr_binary_token8] = ACTIONS(1056), + [aux_sym_expr_binary_token9] = ACTIONS(1056), + [aux_sym_expr_binary_token10] = ACTIONS(1056), + [aux_sym_expr_binary_token11] = ACTIONS(1056), + [aux_sym_expr_binary_token12] = ACTIONS(1056), + [aux_sym_expr_binary_token13] = ACTIONS(1056), + [aux_sym_expr_binary_token14] = ACTIONS(1056), + [aux_sym_expr_binary_token15] = ACTIONS(1056), + [aux_sym_expr_binary_token16] = ACTIONS(1056), + [aux_sym_expr_binary_token17] = ACTIONS(1056), + [aux_sym_expr_binary_token18] = ACTIONS(1056), + [aux_sym_expr_binary_token19] = ACTIONS(1056), + [aux_sym_expr_binary_token20] = ACTIONS(1056), + [aux_sym_expr_binary_token21] = ACTIONS(1056), + [aux_sym_expr_binary_token22] = ACTIONS(1056), + [aux_sym_expr_binary_token23] = ACTIONS(1056), + [aux_sym_expr_binary_token24] = ACTIONS(1056), + [aux_sym_expr_binary_token25] = ACTIONS(1056), + [aux_sym_expr_binary_token26] = ACTIONS(1056), + [aux_sym_expr_binary_token27] = ACTIONS(1056), + [aux_sym_expr_binary_token28] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), [anon_sym_POUND] = ACTIONS(247), }, - [1188] = { - [sym_comment] = STATE(1188), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [1242] = { + [sym_comment] = STATE(1242), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4438), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, - [1189] = { - [sym_comment] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [1243] = { + [sym_comment] = STATE(1243), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1740), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [sym__newline] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_err_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_GT_PIPE] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), + [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(1740), + [anon_sym_out_GT_GT] = ACTIONS(1740), + [anon_sym_e_GT_GT] = ACTIONS(1740), + [anon_sym_o_GT_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), + [aux_sym_unquoted_token1] = ACTIONS(1738), + [aux_sym_unquoted_token2] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(247), }, - [1190] = { - [sym_comment] = STATE(1190), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [aux_sym_ctrl_match_token1] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1054), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [1244] = { + [sym_comment] = STATE(1244), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [aux_sym_cmd_identifier_token38] = ACTIONS(1655), + [aux_sym_cmd_identifier_token39] = ACTIONS(1655), + [aux_sym_cmd_identifier_token40] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1655), + [aux_sym__val_number_decimal_token3] = ACTIONS(1655), + [aux_sym__val_number_decimal_token4] = ACTIONS(1655), + [aux_sym__val_number_token1] = ACTIONS(1655), + [aux_sym__val_number_token2] = ACTIONS(1655), + [aux_sym__val_number_token3] = ACTIONS(1655), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym__str_single_quotes] = ACTIONS(1655), + [sym__str_back_ticks] = ACTIONS(1655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, - [1191] = { - [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1641), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1639), - [aux_sym_ctrl_match_token1] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [anon_sym_0b] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_0o] = ACTIONS(1639), - [anon_sym_0x] = ACTIONS(1639), - [sym_val_date] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token1] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1639), + [1245] = { + [sym_comment] = STATE(1245), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4533), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, - [1192] = { - [sym_comment] = STATE(1192), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(4429), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), + [1246] = { + [sym_comment] = STATE(1246), + [ts_builtin_sym_end] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [aux_sym_expr_binary_token1] = ACTIONS(1048), + [aux_sym_expr_binary_token2] = ACTIONS(1048), + [aux_sym_expr_binary_token3] = ACTIONS(1048), + [aux_sym_expr_binary_token4] = ACTIONS(1048), + [aux_sym_expr_binary_token5] = ACTIONS(1048), + [aux_sym_expr_binary_token6] = ACTIONS(1048), + [aux_sym_expr_binary_token7] = ACTIONS(1048), + [aux_sym_expr_binary_token8] = ACTIONS(1048), + [aux_sym_expr_binary_token9] = ACTIONS(1048), + [aux_sym_expr_binary_token10] = ACTIONS(1048), + [aux_sym_expr_binary_token11] = ACTIONS(1048), + [aux_sym_expr_binary_token12] = ACTIONS(1048), + [aux_sym_expr_binary_token13] = ACTIONS(1048), + [aux_sym_expr_binary_token14] = ACTIONS(1048), + [aux_sym_expr_binary_token15] = ACTIONS(1048), + [aux_sym_expr_binary_token16] = ACTIONS(1048), + [aux_sym_expr_binary_token17] = ACTIONS(1048), + [aux_sym_expr_binary_token18] = ACTIONS(1048), + [aux_sym_expr_binary_token19] = ACTIONS(1048), + [aux_sym_expr_binary_token20] = ACTIONS(1048), + [aux_sym_expr_binary_token21] = ACTIONS(1048), + [aux_sym_expr_binary_token22] = ACTIONS(1048), + [aux_sym_expr_binary_token23] = ACTIONS(1048), + [aux_sym_expr_binary_token24] = ACTIONS(1048), + [aux_sym_expr_binary_token25] = ACTIONS(1048), + [aux_sym_expr_binary_token26] = ACTIONS(1048), + [aux_sym_expr_binary_token27] = ACTIONS(1048), + [aux_sym_expr_binary_token28] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, - [1193] = { - [sym_cell_path] = STATE(1435), - [sym_path] = STATE(1341), - [sym_comment] = STATE(1193), - [aux_sym_cell_path_repeat1] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(1688), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [anon_sym_null] = ACTIONS(1688), - [aux_sym_cmd_identifier_token38] = ACTIONS(1688), - [aux_sym_cmd_identifier_token39] = ACTIONS(1688), - [aux_sym_cmd_identifier_token40] = ACTIONS(1688), - [sym__newline] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_err_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_GT_PIPE] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1686), - [aux_sym_ctrl_match_token1] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), - [anon_sym_DOT_DOT_LT] = ACTIONS(1686), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token1] = ACTIONS(1686), - [aux_sym__val_number_decimal_token2] = ACTIONS(1688), - [aux_sym__val_number_decimal_token3] = ACTIONS(1688), - [aux_sym__val_number_decimal_token4] = ACTIONS(1688), - [aux_sym__val_number_token1] = ACTIONS(1688), - [aux_sym__val_number_token2] = ACTIONS(1688), - [aux_sym__val_number_token3] = ACTIONS(1688), - [anon_sym_0b] = ACTIONS(1686), - [anon_sym_0o] = ACTIONS(1686), - [anon_sym_0x] = ACTIONS(1686), - [sym_val_date] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym__str_single_quotes] = ACTIONS(1688), - [sym__str_back_ticks] = ACTIONS(1688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), - [anon_sym_err_GT] = ACTIONS(1686), - [anon_sym_out_GT] = ACTIONS(1686), - [anon_sym_e_GT] = ACTIONS(1686), - [anon_sym_o_GT] = ACTIONS(1686), - [anon_sym_err_PLUSout_GT] = ACTIONS(1686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), - [anon_sym_o_PLUSe_GT] = ACTIONS(1686), - [anon_sym_e_PLUSo_GT] = ACTIONS(1686), - [anon_sym_err_GT_GT] = ACTIONS(1688), - [anon_sym_out_GT_GT] = ACTIONS(1688), - [anon_sym_e_GT_GT] = ACTIONS(1688), - [anon_sym_o_GT_GT] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), - [aux_sym_unquoted_token1] = ACTIONS(1686), + [1247] = { + [sym_comment] = STATE(1247), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, - [1194] = { - [sym_cell_path] = STATE(1384), - [sym_path] = STATE(1341), - [sym_comment] = STATE(1194), - [aux_sym_cell_path_repeat1] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1629), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1625), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token3] = ACTIONS(1629), - [aux_sym__val_number_decimal_token4] = ACTIONS(1629), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1625), - [anon_sym_0o] = ACTIONS(1625), - [anon_sym_0x] = ACTIONS(1625), - [sym_val_date] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), - [aux_sym_unquoted_token1] = ACTIONS(1625), + [1248] = { + [sym_comment] = STATE(1248), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [1195] = { - [sym_comment] = STATE(1195), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1575), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4435), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4435), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(4437), - [sym_duration_unit] = ACTIONS(4439), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(4441), + [1249] = { + [sym_comment] = STATE(1249), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_0b] = ACTIONS(1042), + [anon_sym_0o] = ACTIONS(1042), + [anon_sym_0x] = ACTIONS(1042), + [sym_val_date] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [aux_sym_unquoted_token1] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, - [1196] = { - [sym_comment] = STATE(1196), - [ts_builtin_sym_end] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4443), - [aux_sym__immediate_decimal_token2] = ACTIONS(4445), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [1250] = { + [sym_comment] = STATE(1250), + [ts_builtin_sym_end] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_null] = ACTIONS(1572), + [aux_sym_cmd_identifier_token38] = ACTIONS(1572), + [aux_sym_cmd_identifier_token39] = ACTIONS(1572), + [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(4512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT] = ACTIONS(1560), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1572), + [aux_sym__val_number_decimal_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token4] = ACTIONS(1572), + [aux_sym__val_number_token1] = ACTIONS(1572), + [aux_sym__val_number_token2] = ACTIONS(1572), + [aux_sym__val_number_token3] = ACTIONS(1572), + [anon_sym_0b] = ACTIONS(1560), + [sym_filesize_unit] = ACTIONS(4535), + [sym_duration_unit] = ACTIONS(4537), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym__str_single_quotes] = ACTIONS(1572), + [sym__str_back_ticks] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [aux_sym_unquoted_token2] = ACTIONS(4539), + [anon_sym_POUND] = ACTIONS(247), + }, + [1251] = { + [sym_comment] = STATE(1251), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1252] = { + [sym__match_pattern] = STATE(7235), + [sym__match_pattern_expression] = STATE(6770), + [sym__match_pattern_value] = STATE(6771), + [sym__match_pattern_list] = STATE(6772), + [sym__match_pattern_record] = STATE(6774), + [sym_expr_parenthesized] = STATE(5667), + [sym_val_range] = STATE(6771), + [sym__val_range] = STATE(7681), + [sym_val_nothing] = STATE(6776), + [sym_val_bool] = STATE(7007), + [sym_val_variable] = STATE(5668), + [sym_val_number] = STATE(6776), + [sym__val_number_decimal] = STATE(5438), + [sym__val_number] = STATE(2014), + [sym_val_duration] = STATE(6776), + [sym_val_filesize] = STATE(6776), + [sym_val_binary] = STATE(6776), + [sym_val_string] = STATE(6776), + [sym__str_double_quotes] = STATE(1725), + [sym_val_table] = STATE(6776), + [sym_unquoted] = STATE(6780), + [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_comment] = STATE(1252), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3365), + [aux_sym_cmd_identifier_token38] = ACTIONS(4541), + [aux_sym_cmd_identifier_token39] = ACTIONS(4541), + [aux_sym_cmd_identifier_token40] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [aux_sym__val_number_decimal_token1] = ACTIONS(3369), + [aux_sym__val_number_decimal_token2] = ACTIONS(3371), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3375), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2643), + [anon_sym_out_GT] = ACTIONS(2643), + [anon_sym_e_GT] = ACTIONS(2643), + [anon_sym_o_GT] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT] = ACTIONS(2643), + [anon_sym_err_GT_GT] = ACTIONS(2645), + [anon_sym_out_GT_GT] = ACTIONS(2645), + [anon_sym_e_GT_GT] = ACTIONS(2645), + [anon_sym_o_GT_GT] = ACTIONS(2645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), + [aux_sym_unquoted_token1] = ACTIONS(3864), + [anon_sym_POUND] = ACTIONS(247), + }, + [1253] = { + [sym_comment] = STATE(1253), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [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_RBRACE] = ACTIONS(1520), + [anon_sym_EQ_GT] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4551), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [aux_sym_record_entry_token1] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), + }, + [1254] = { + [sym_comment] = STATE(1254), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(247), + }, + [1255] = { + [sym_comment] = STATE(1255), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1024), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [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_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(4553), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(247), + }, + [1256] = { + [sym_comment] = STATE(1256), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), [anon_sym_POUND] = ACTIONS(247), }, - [1197] = { - [sym_comment] = STATE(1197), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [1257] = { + [sym_comment] = STATE(1257), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), [anon_sym_POUND] = ACTIONS(247), }, - [1198] = { - [sym_cell_path] = STATE(1436), - [sym_path] = STATE(1341), - [sym_comment] = STATE(1198), - [aux_sym_cell_path_repeat1] = STATE(1213), + [1258] = { + [sym_path] = STATE(1376), + [sym_comment] = STATE(1258), + [aux_sym_cell_path_repeat1] = STATE(1266), [ts_builtin_sym_end] = ACTIONS(1013), [anon_sym_true] = ACTIONS(1013), [anon_sym_false] = ACTIONS(1013), @@ -188922,10 +195885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1011), [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_DASH] = ACTIONS(1011), - [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), [anon_sym_DOT_DOT] = ACTIONS(1011), [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_DOT] = ACTIONS(4432), [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), [anon_sym_DOT_DOT_LT] = ACTIONS(1011), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), @@ -188965,928 +195928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, - [1199] = { - [sym_comment] = STATE(1199), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(247), - }, - [1200] = { - [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [1201] = { - [sym_comment] = STATE(1201), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(247), - }, - [1202] = { - [sym__match_pattern_expression] = STATE(3052), - [sym__match_pattern_value] = STATE(3028), - [sym__match_pattern_list] = STATE(3029), - [sym__match_pattern_record] = STATE(3030), - [sym_expr_parenthesized] = STATE(2816), - [sym_val_range] = STATE(3028), - [sym__val_range] = STATE(7670), - [sym_val_nothing] = STATE(3031), - [sym_val_bool] = STATE(2974), - [sym_val_variable] = STATE(2817), - [sym_val_number] = STATE(3031), - [sym__val_number_decimal] = STATE(2606), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3031), - [sym_val_filesize] = STATE(3031), - [sym_val_binary] = STATE(3031), - [sym_val_string] = STATE(3031), - [sym__str_double_quotes] = STATE(3007), - [sym_val_table] = STATE(3031), - [sym__unquoted_in_list] = STATE(3052), - [sym__unquoted_anonymous_prefix] = STATE(7659), - [sym_comment] = STATE(1202), - [aux_sym__match_pattern_list_repeat1] = STATE(1202), - [anon_sym_true] = ACTIONS(4447), - [anon_sym_false] = ACTIONS(4447), - [anon_sym_null] = ACTIONS(4450), - [aux_sym_cmd_identifier_token38] = ACTIONS(4453), - [aux_sym_cmd_identifier_token39] = ACTIONS(4453), - [aux_sym_cmd_identifier_token40] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4461), - [anon_sym_DOLLAR] = ACTIONS(4464), - [aux_sym_ctrl_match_token1] = ACTIONS(4467), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), - [anon_sym_DOT_DOT_LT] = ACTIONS(4473), - [aux_sym__val_number_decimal_token1] = ACTIONS(4476), - [aux_sym__val_number_decimal_token2] = ACTIONS(4479), - [aux_sym__val_number_decimal_token3] = ACTIONS(4482), - [aux_sym__val_number_decimal_token4] = ACTIONS(4485), - [aux_sym__val_number_token1] = ACTIONS(4488), - [aux_sym__val_number_token2] = ACTIONS(4488), - [aux_sym__val_number_token3] = ACTIONS(4488), - [anon_sym_0b] = ACTIONS(4491), - [anon_sym_0o] = ACTIONS(4494), - [anon_sym_0x] = ACTIONS(4494), - [sym_val_date] = ACTIONS(4497), - [anon_sym_DQUOTE] = ACTIONS(4500), - [sym__str_single_quotes] = ACTIONS(4503), - [sym__str_back_ticks] = ACTIONS(4503), - [anon_sym_err_GT] = ACTIONS(4506), - [anon_sym_out_GT] = ACTIONS(4506), - [anon_sym_e_GT] = ACTIONS(4506), - [anon_sym_o_GT] = ACTIONS(4506), - [anon_sym_err_PLUSout_GT] = ACTIONS(4506), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4506), - [anon_sym_o_PLUSe_GT] = ACTIONS(4506), - [anon_sym_e_PLUSo_GT] = ACTIONS(4506), - [anon_sym_err_GT_GT] = ACTIONS(4509), - [anon_sym_out_GT_GT] = ACTIONS(4509), - [anon_sym_e_GT_GT] = ACTIONS(4509), - [anon_sym_o_GT_GT] = ACTIONS(4509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4509), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4512), - [anon_sym_POUND] = ACTIONS(247), - }, - [1203] = { - [sym_comment] = STATE(1203), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1641), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1639), - [aux_sym_ctrl_match_token1] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [anon_sym_0b] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_0o] = ACTIONS(1639), - [anon_sym_0x] = ACTIONS(1639), - [sym_val_date] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token1] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(247), - }, - [1204] = { - [sym_comment] = STATE(1204), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [aux_sym_ctrl_match_token1] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [aux_sym_expr_binary_token1] = ACTIONS(1066), - [aux_sym_expr_binary_token2] = ACTIONS(1066), - [aux_sym_expr_binary_token3] = ACTIONS(1066), - [aux_sym_expr_binary_token4] = ACTIONS(1066), - [aux_sym_expr_binary_token5] = ACTIONS(1066), - [aux_sym_expr_binary_token6] = ACTIONS(1066), - [aux_sym_expr_binary_token7] = ACTIONS(1066), - [aux_sym_expr_binary_token8] = ACTIONS(1066), - [aux_sym_expr_binary_token9] = ACTIONS(1066), - [aux_sym_expr_binary_token10] = ACTIONS(1066), - [aux_sym_expr_binary_token11] = ACTIONS(1066), - [aux_sym_expr_binary_token12] = ACTIONS(1066), - [aux_sym_expr_binary_token13] = ACTIONS(1066), - [aux_sym_expr_binary_token14] = ACTIONS(1066), - [aux_sym_expr_binary_token15] = ACTIONS(1066), - [aux_sym_expr_binary_token16] = ACTIONS(1066), - [aux_sym_expr_binary_token17] = ACTIONS(1066), - [aux_sym_expr_binary_token18] = ACTIONS(1066), - [aux_sym_expr_binary_token19] = ACTIONS(1066), - [aux_sym_expr_binary_token20] = ACTIONS(1066), - [aux_sym_expr_binary_token21] = ACTIONS(1066), - [aux_sym_expr_binary_token22] = ACTIONS(1066), - [aux_sym_expr_binary_token23] = ACTIONS(1066), - [aux_sym_expr_binary_token24] = ACTIONS(1066), - [aux_sym_expr_binary_token25] = ACTIONS(1066), - [aux_sym_expr_binary_token26] = ACTIONS(1066), - [aux_sym_expr_binary_token27] = ACTIONS(1066), - [aux_sym_expr_binary_token28] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [aux_sym_record_entry_token1] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(247), - }, - [1205] = { - [sym_comment] = STATE(1205), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [aux_sym_expr_binary_token1] = ACTIONS(1058), - [aux_sym_expr_binary_token2] = ACTIONS(1058), - [aux_sym_expr_binary_token3] = ACTIONS(1058), - [aux_sym_expr_binary_token4] = ACTIONS(1058), - [aux_sym_expr_binary_token5] = ACTIONS(1058), - [aux_sym_expr_binary_token6] = ACTIONS(1058), - [aux_sym_expr_binary_token7] = ACTIONS(1058), - [aux_sym_expr_binary_token8] = ACTIONS(1058), - [aux_sym_expr_binary_token9] = ACTIONS(1058), - [aux_sym_expr_binary_token10] = ACTIONS(1058), - [aux_sym_expr_binary_token11] = ACTIONS(1058), - [aux_sym_expr_binary_token12] = ACTIONS(1058), - [aux_sym_expr_binary_token13] = ACTIONS(1058), - [aux_sym_expr_binary_token14] = ACTIONS(1058), - [aux_sym_expr_binary_token15] = ACTIONS(1058), - [aux_sym_expr_binary_token16] = ACTIONS(1058), - [aux_sym_expr_binary_token17] = ACTIONS(1058), - [aux_sym_expr_binary_token18] = ACTIONS(1058), - [aux_sym_expr_binary_token19] = ACTIONS(1058), - [aux_sym_expr_binary_token20] = ACTIONS(1058), - [aux_sym_expr_binary_token21] = ACTIONS(1058), - [aux_sym_expr_binary_token22] = ACTIONS(1058), - [aux_sym_expr_binary_token23] = ACTIONS(1058), - [aux_sym_expr_binary_token24] = ACTIONS(1058), - [aux_sym_expr_binary_token25] = ACTIONS(1058), - [aux_sym_expr_binary_token26] = ACTIONS(1058), - [aux_sym_expr_binary_token27] = ACTIONS(1058), - [aux_sym_expr_binary_token28] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [1206] = { - [sym_comment] = STATE(1206), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [aux_sym_ctrl_match_token1] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1058), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [1207] = { - [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4517), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1208] = { - [sym_comment] = STATE(1208), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [aux_sym_expr_binary_token1] = ACTIONS(1054), - [aux_sym_expr_binary_token2] = ACTIONS(1054), - [aux_sym_expr_binary_token3] = ACTIONS(1054), - [aux_sym_expr_binary_token4] = ACTIONS(1054), - [aux_sym_expr_binary_token5] = ACTIONS(1054), - [aux_sym_expr_binary_token6] = ACTIONS(1054), - [aux_sym_expr_binary_token7] = ACTIONS(1054), - [aux_sym_expr_binary_token8] = ACTIONS(1054), - [aux_sym_expr_binary_token9] = ACTIONS(1054), - [aux_sym_expr_binary_token10] = ACTIONS(1054), - [aux_sym_expr_binary_token11] = ACTIONS(1054), - [aux_sym_expr_binary_token12] = ACTIONS(1054), - [aux_sym_expr_binary_token13] = ACTIONS(1054), - [aux_sym_expr_binary_token14] = ACTIONS(1054), - [aux_sym_expr_binary_token15] = ACTIONS(1054), - [aux_sym_expr_binary_token16] = ACTIONS(1054), - [aux_sym_expr_binary_token17] = ACTIONS(1054), - [aux_sym_expr_binary_token18] = ACTIONS(1054), - [aux_sym_expr_binary_token19] = ACTIONS(1054), - [aux_sym_expr_binary_token20] = ACTIONS(1054), - [aux_sym_expr_binary_token21] = ACTIONS(1054), - [aux_sym_expr_binary_token22] = ACTIONS(1054), - [aux_sym_expr_binary_token23] = ACTIONS(1054), - [aux_sym_expr_binary_token24] = ACTIONS(1054), - [aux_sym_expr_binary_token25] = ACTIONS(1054), - [aux_sym_expr_binary_token26] = ACTIONS(1054), - [aux_sym_expr_binary_token27] = ACTIONS(1054), - [aux_sym_expr_binary_token28] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [1209] = { - [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4517), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1210] = { - [sym_comment] = STATE(1210), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [aux_sym_ctrl_match_token1] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_0b] = ACTIONS(1048), - [anon_sym_0o] = ACTIONS(1048), - [anon_sym_0x] = ACTIONS(1048), - [sym_val_date] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [aux_sym_unquoted_token1] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [1211] = { - [sym_comment] = STATE(1211), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1212] = { - [sym_comment] = STATE(1212), + [1259] = { + [sym_comment] = STATE(1259), [anon_sym_true] = ACTIONS(1030), [anon_sym_false] = ACTIONS(1030), [anon_sym_null] = ACTIONS(1030), @@ -189910,10 +195953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1028), [anon_sym_DASH_DASH] = ACTIONS(1030), [anon_sym_DASH] = ACTIONS(1028), - [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), [anon_sym_RBRACE] = ACTIONS(1030), [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(4523), + [anon_sym_QMARK2] = ACTIONS(4555), [anon_sym_DOT_DOT2] = ACTIONS(1028), [anon_sym_DOT] = ACTIONS(1028), [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), @@ -189955,1548 +195998,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, - [1213] = { - [sym_path] = STATE(1341), - [sym_comment] = STATE(1213), - [aux_sym_cell_path_repeat1] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(1019), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1019), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [sym__newline] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1017), - [aux_sym_ctrl_match_token1] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1017), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_0b] = ACTIONS(1017), - [anon_sym_0o] = ACTIONS(1017), - [anon_sym_0x] = ACTIONS(1017), - [sym_val_date] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), - [aux_sym_unquoted_token1] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), - }, - [1214] = { - [sym_comment] = STATE(1214), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [1215] = { - [sym_comment] = STATE(1215), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4525), - [aux_sym__immediate_decimal_token2] = ACTIONS(4527), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [1216] = { - [sym_comment] = STATE(1216), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1786), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(4529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4531), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4531), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(247), - }, - [1217] = { - [sym_comment] = STATE(1217), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4533), - [aux_sym__immediate_decimal_token2] = ACTIONS(4535), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(247), - }, - [1218] = { - [sym_comment] = STATE(1218), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - }, - [1219] = { - [sym__match_pattern] = STATE(7295), - [sym__match_pattern_expression] = STATE(6857), - [sym__match_pattern_value] = STATE(6861), - [sym__match_pattern_list] = STATE(6862), - [sym__match_pattern_record] = STATE(6888), - [sym_expr_parenthesized] = STATE(5713), - [sym_val_range] = STATE(6861), - [sym__val_range] = STATE(7774), - [sym_val_nothing] = STATE(6915), - [sym_val_bool] = STATE(6854), - [sym_val_variable] = STATE(5754), - [sym_val_number] = STATE(6915), - [sym__val_number_decimal] = STATE(5488), - [sym__val_number] = STATE(1937), - [sym_val_duration] = STATE(6915), - [sym_val_filesize] = STATE(6915), - [sym_val_binary] = STATE(6915), - [sym_val_string] = STATE(6915), - [sym__str_double_quotes] = STATE(1707), - [sym_val_table] = STATE(6915), - [sym_unquoted] = STATE(6919), - [sym__unquoted_anonymous_prefix] = STATE(7502), - [sym_comment] = STATE(1219), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_null] = ACTIONS(3325), - [aux_sym_cmd_identifier_token38] = ACTIONS(4537), - [aux_sym_cmd_identifier_token39] = ACTIONS(4537), - [aux_sym_cmd_identifier_token40] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_DOLLAR] = ACTIONS(3483), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_DOT_DOT] = ACTIONS(4539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4541), - [anon_sym_DOT_DOT_LT] = ACTIONS(4541), - [aux_sym__val_number_decimal_token1] = ACTIONS(3329), - [aux_sym__val_number_decimal_token2] = ACTIONS(3331), - [aux_sym__val_number_decimal_token3] = ACTIONS(3333), - [aux_sym__val_number_decimal_token4] = ACTIONS(3335), - [aux_sym__val_number_token1] = ACTIONS(499), - [aux_sym__val_number_token2] = ACTIONS(499), - [aux_sym__val_number_token3] = ACTIONS(499), - [anon_sym_0b] = ACTIONS(501), - [anon_sym_0o] = ACTIONS(503), - [anon_sym_0x] = ACTIONS(503), - [sym_val_date] = ACTIONS(4543), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__str_single_quotes] = ACTIONS(509), - [sym__str_back_ticks] = ACTIONS(509), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [aux_sym_unquoted_token1] = ACTIONS(3704), - [anon_sym_POUND] = ACTIONS(247), - }, - [1220] = { - [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(1062), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_PLUS_EQ] = ACTIONS(1062), - [anon_sym_DASH_EQ] = ACTIONS(1062), - [anon_sym_STAR_EQ] = ACTIONS(1062), - [anon_sym_SLASH_EQ] = ACTIONS(1062), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [aux_sym_expr_binary_token1] = ACTIONS(1062), - [aux_sym_expr_binary_token2] = ACTIONS(1062), - [aux_sym_expr_binary_token3] = ACTIONS(1062), - [aux_sym_expr_binary_token4] = ACTIONS(1062), - [aux_sym_expr_binary_token5] = ACTIONS(1062), - [aux_sym_expr_binary_token6] = ACTIONS(1062), - [aux_sym_expr_binary_token7] = ACTIONS(1062), - [aux_sym_expr_binary_token8] = ACTIONS(1062), - [aux_sym_expr_binary_token9] = ACTIONS(1062), - [aux_sym_expr_binary_token10] = ACTIONS(1062), - [aux_sym_expr_binary_token11] = ACTIONS(1062), - [aux_sym_expr_binary_token12] = ACTIONS(1062), - [aux_sym_expr_binary_token13] = ACTIONS(1062), - [aux_sym_expr_binary_token14] = ACTIONS(1062), - [aux_sym_expr_binary_token15] = ACTIONS(1062), - [aux_sym_expr_binary_token16] = ACTIONS(1062), - [aux_sym_expr_binary_token17] = ACTIONS(1062), - [aux_sym_expr_binary_token18] = ACTIONS(1062), - [aux_sym_expr_binary_token19] = ACTIONS(1062), - [aux_sym_expr_binary_token20] = ACTIONS(1062), - [aux_sym_expr_binary_token21] = ACTIONS(1062), - [aux_sym_expr_binary_token22] = ACTIONS(1062), - [aux_sym_expr_binary_token23] = ACTIONS(1062), - [aux_sym_expr_binary_token24] = ACTIONS(1062), - [aux_sym_expr_binary_token25] = ACTIONS(1062), - [aux_sym_expr_binary_token26] = ACTIONS(1062), - [aux_sym_expr_binary_token27] = ACTIONS(1062), - [aux_sym_expr_binary_token28] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(247), - }, - [1221] = { - [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [aux_sym_expr_binary_token1] = ACTIONS(1054), - [aux_sym_expr_binary_token2] = ACTIONS(1054), - [aux_sym_expr_binary_token3] = ACTIONS(1054), - [aux_sym_expr_binary_token4] = ACTIONS(1054), - [aux_sym_expr_binary_token5] = ACTIONS(1054), - [aux_sym_expr_binary_token6] = ACTIONS(1054), - [aux_sym_expr_binary_token7] = ACTIONS(1054), - [aux_sym_expr_binary_token8] = ACTIONS(1054), - [aux_sym_expr_binary_token9] = ACTIONS(1054), - [aux_sym_expr_binary_token10] = ACTIONS(1054), - [aux_sym_expr_binary_token11] = ACTIONS(1054), - [aux_sym_expr_binary_token12] = ACTIONS(1054), - [aux_sym_expr_binary_token13] = ACTIONS(1054), - [aux_sym_expr_binary_token14] = ACTIONS(1054), - [aux_sym_expr_binary_token15] = ACTIONS(1054), - [aux_sym_expr_binary_token16] = ACTIONS(1054), - [aux_sym_expr_binary_token17] = ACTIONS(1054), - [aux_sym_expr_binary_token18] = ACTIONS(1054), - [aux_sym_expr_binary_token19] = ACTIONS(1054), - [aux_sym_expr_binary_token20] = ACTIONS(1054), - [aux_sym_expr_binary_token21] = ACTIONS(1054), - [aux_sym_expr_binary_token22] = ACTIONS(1054), - [aux_sym_expr_binary_token23] = ACTIONS(1054), - [aux_sym_expr_binary_token24] = ACTIONS(1054), - [aux_sym_expr_binary_token25] = ACTIONS(1054), - [aux_sym_expr_binary_token26] = ACTIONS(1054), - [aux_sym_expr_binary_token27] = ACTIONS(1054), - [aux_sym_expr_binary_token28] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [1222] = { - [sym_comment] = STATE(1222), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [aux_sym_ctrl_match_token1] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_DOT_DOT] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_0b] = ACTIONS(1040), - [anon_sym_0o] = ACTIONS(1040), - [anon_sym_0x] = ACTIONS(1040), - [sym_val_date] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1042), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), - [aux_sym_unquoted_token1] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1223] = { - [sym_comment] = STATE(1223), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1224] = { - [sym_comment] = STATE(1224), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [aux_sym_ctrl_match_token1] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1066), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(247), - }, - [1225] = { - [sym_comment] = STATE(1225), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [aux_sym_expr_binary_token1] = ACTIONS(1066), - [aux_sym_expr_binary_token2] = ACTIONS(1066), - [aux_sym_expr_binary_token3] = ACTIONS(1066), - [aux_sym_expr_binary_token4] = ACTIONS(1066), - [aux_sym_expr_binary_token5] = ACTIONS(1066), - [aux_sym_expr_binary_token6] = ACTIONS(1066), - [aux_sym_expr_binary_token7] = ACTIONS(1066), - [aux_sym_expr_binary_token8] = ACTIONS(1066), - [aux_sym_expr_binary_token9] = ACTIONS(1066), - [aux_sym_expr_binary_token10] = ACTIONS(1066), - [aux_sym_expr_binary_token11] = ACTIONS(1066), - [aux_sym_expr_binary_token12] = ACTIONS(1066), - [aux_sym_expr_binary_token13] = ACTIONS(1066), - [aux_sym_expr_binary_token14] = ACTIONS(1066), - [aux_sym_expr_binary_token15] = ACTIONS(1066), - [aux_sym_expr_binary_token16] = ACTIONS(1066), - [aux_sym_expr_binary_token17] = ACTIONS(1066), - [aux_sym_expr_binary_token18] = ACTIONS(1066), - [aux_sym_expr_binary_token19] = ACTIONS(1066), - [aux_sym_expr_binary_token20] = ACTIONS(1066), - [aux_sym_expr_binary_token21] = ACTIONS(1066), - [aux_sym_expr_binary_token22] = ACTIONS(1066), - [aux_sym_expr_binary_token23] = ACTIONS(1066), - [aux_sym_expr_binary_token24] = ACTIONS(1066), - [aux_sym_expr_binary_token25] = ACTIONS(1066), - [aux_sym_expr_binary_token26] = ACTIONS(1066), - [aux_sym_expr_binary_token27] = ACTIONS(1066), - [aux_sym_expr_binary_token28] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(247), - }, - [1226] = { - [sym_comment] = STATE(1226), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_EQ_GT] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4547), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [aux_sym_record_entry_token1] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(247), - }, - [1227] = { - [sym_path] = STATE(1341), - [sym_comment] = STATE(1227), - [aux_sym_cell_path_repeat1] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1021), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_DOT_DOT_LT] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [1228] = { - [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1517), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1517), - [anon_sym_0x] = ACTIONS(1517), - [sym_val_date] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token1] = ACTIONS(1517), - [aux_sym_unquoted_token2] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(247), - }, - [1229] = { - [sym_comment] = STATE(1229), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_PLUS_EQ] = ACTIONS(1072), - [anon_sym_DASH_EQ] = ACTIONS(1072), - [anon_sym_STAR_EQ] = ACTIONS(1072), - [anon_sym_SLASH_EQ] = ACTIONS(1072), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), - [sym__newline] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [aux_sym_expr_binary_token1] = ACTIONS(1078), - [aux_sym_expr_binary_token2] = ACTIONS(1078), - [aux_sym_expr_binary_token3] = ACTIONS(1078), - [aux_sym_expr_binary_token4] = ACTIONS(1078), - [aux_sym_expr_binary_token5] = ACTIONS(1078), - [aux_sym_expr_binary_token6] = ACTIONS(1078), - [aux_sym_expr_binary_token7] = ACTIONS(1078), - [aux_sym_expr_binary_token8] = ACTIONS(1078), - [aux_sym_expr_binary_token9] = ACTIONS(1078), - [aux_sym_expr_binary_token10] = ACTIONS(1078), - [aux_sym_expr_binary_token11] = ACTIONS(1078), - [aux_sym_expr_binary_token12] = ACTIONS(1078), - [aux_sym_expr_binary_token13] = ACTIONS(1078), - [aux_sym_expr_binary_token14] = ACTIONS(1078), - [aux_sym_expr_binary_token15] = ACTIONS(1078), - [aux_sym_expr_binary_token16] = ACTIONS(1078), - [aux_sym_expr_binary_token17] = ACTIONS(1078), - [aux_sym_expr_binary_token18] = ACTIONS(1078), - [aux_sym_expr_binary_token19] = ACTIONS(1078), - [aux_sym_expr_binary_token20] = ACTIONS(1078), - [aux_sym_expr_binary_token21] = ACTIONS(1078), - [aux_sym_expr_binary_token22] = ACTIONS(1078), - [aux_sym_expr_binary_token23] = ACTIONS(1078), - [aux_sym_expr_binary_token24] = ACTIONS(1078), - [aux_sym_expr_binary_token25] = ACTIONS(1078), - [aux_sym_expr_binary_token26] = ACTIONS(1078), - [aux_sym_expr_binary_token27] = ACTIONS(1078), - [aux_sym_expr_binary_token28] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), - [aux_sym_record_entry_token1] = ACTIONS(4552), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(247), - }, - [1230] = { - [sym_comment] = STATE(1230), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4556), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [1231] = { - [sym_comment] = STATE(1231), - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1567), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_LT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [anon_sym_0b] = ACTIONS(1565), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(247), - }, - [1232] = { - [sym_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1641), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1639), - [aux_sym_ctrl_match_token1] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [anon_sym_0b] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_0o] = ACTIONS(1639), - [anon_sym_0x] = ACTIONS(1639), - [sym_val_date] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token1] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(247), - }, - [1233] = { - [sym_comment] = STATE(1233), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [aux_sym_ctrl_match_token1] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_0b] = ACTIONS(1044), - [anon_sym_0o] = ACTIONS(1044), - [anon_sym_0x] = ACTIONS(1044), - [sym_val_date] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [aux_sym_unquoted_token1] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [1234] = { - [sym_comment] = STATE(1234), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_PLUS_EQ] = ACTIONS(1072), - [anon_sym_DASH_EQ] = ACTIONS(1072), - [anon_sym_STAR_EQ] = ACTIONS(1072), - [anon_sym_SLASH_EQ] = ACTIONS(1072), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [aux_sym_expr_binary_token1] = ACTIONS(1078), - [aux_sym_expr_binary_token2] = ACTIONS(1078), - [aux_sym_expr_binary_token3] = ACTIONS(1078), - [aux_sym_expr_binary_token4] = ACTIONS(1078), - [aux_sym_expr_binary_token5] = ACTIONS(1078), - [aux_sym_expr_binary_token6] = ACTIONS(1078), - [aux_sym_expr_binary_token7] = ACTIONS(1078), - [aux_sym_expr_binary_token8] = ACTIONS(1078), - [aux_sym_expr_binary_token9] = ACTIONS(1078), - [aux_sym_expr_binary_token10] = ACTIONS(1078), - [aux_sym_expr_binary_token11] = ACTIONS(1078), - [aux_sym_expr_binary_token12] = ACTIONS(1078), - [aux_sym_expr_binary_token13] = ACTIONS(1078), - [aux_sym_expr_binary_token14] = ACTIONS(1078), - [aux_sym_expr_binary_token15] = ACTIONS(1078), - [aux_sym_expr_binary_token16] = ACTIONS(1078), - [aux_sym_expr_binary_token17] = ACTIONS(1078), - [aux_sym_expr_binary_token18] = ACTIONS(1078), - [aux_sym_expr_binary_token19] = ACTIONS(1078), - [aux_sym_expr_binary_token20] = ACTIONS(1078), - [aux_sym_expr_binary_token21] = ACTIONS(1078), - [aux_sym_expr_binary_token22] = ACTIONS(1078), - [aux_sym_expr_binary_token23] = ACTIONS(1078), - [aux_sym_expr_binary_token24] = ACTIONS(1078), - [aux_sym_expr_binary_token25] = ACTIONS(1078), - [aux_sym_expr_binary_token26] = ACTIONS(1078), - [aux_sym_expr_binary_token27] = ACTIONS(1078), - [aux_sym_expr_binary_token28] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [1260] = { + [sym_comment] = STATE(1260), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4557), + [aux_sym__immediate_decimal_token2] = ACTIONS(4559), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, - [1235] = { - [sym_comment] = STATE(1235), + [1261] = { + [sym_comment] = STATE(1261), [anon_sym_true] = ACTIONS(1036), [anon_sym_false] = ACTIONS(1036), [anon_sym_null] = ACTIONS(1036), @@ -191520,10 +196093,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1034), [anon_sym_DASH_DASH] = ACTIONS(1036), [anon_sym_DASH] = ACTIONS(1034), - [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), [anon_sym_RBRACE] = ACTIONS(1036), [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(4558), + [anon_sym_QMARK2] = ACTIONS(1036), [anon_sym_DOT_DOT2] = ACTIONS(1034), [anon_sym_DOT] = ACTIONS(1034), [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), @@ -191565,4087 +196138,1540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [1236] = { - [sym_comment] = STATE(1236), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_EQ_GT] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4560), - [aux_sym__immediate_decimal_token2] = ACTIONS(4562), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [aux_sym_record_entry_token1] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1237] = { - [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1575), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4435), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4435), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(4564), - [sym_duration_unit] = ACTIONS(4566), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(4568), - [anon_sym_POUND] = ACTIONS(247), - }, - [1238] = { - [sym_comment] = STATE(1238), - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [aux_sym_expr_binary_token1] = ACTIONS(1058), - [aux_sym_expr_binary_token2] = ACTIONS(1058), - [aux_sym_expr_binary_token3] = ACTIONS(1058), - [aux_sym_expr_binary_token4] = ACTIONS(1058), - [aux_sym_expr_binary_token5] = ACTIONS(1058), - [aux_sym_expr_binary_token6] = ACTIONS(1058), - [aux_sym_expr_binary_token7] = ACTIONS(1058), - [aux_sym_expr_binary_token8] = ACTIONS(1058), - [aux_sym_expr_binary_token9] = ACTIONS(1058), - [aux_sym_expr_binary_token10] = ACTIONS(1058), - [aux_sym_expr_binary_token11] = ACTIONS(1058), - [aux_sym_expr_binary_token12] = ACTIONS(1058), - [aux_sym_expr_binary_token13] = ACTIONS(1058), - [aux_sym_expr_binary_token14] = ACTIONS(1058), - [aux_sym_expr_binary_token15] = ACTIONS(1058), - [aux_sym_expr_binary_token16] = ACTIONS(1058), - [aux_sym_expr_binary_token17] = ACTIONS(1058), - [aux_sym_expr_binary_token18] = ACTIONS(1058), - [aux_sym_expr_binary_token19] = ACTIONS(1058), - [aux_sym_expr_binary_token20] = ACTIONS(1058), - [aux_sym_expr_binary_token21] = ACTIONS(1058), - [aux_sym_expr_binary_token22] = ACTIONS(1058), - [aux_sym_expr_binary_token23] = ACTIONS(1058), - [aux_sym_expr_binary_token24] = ACTIONS(1058), - [aux_sym_expr_binary_token25] = ACTIONS(1058), - [aux_sym_expr_binary_token26] = ACTIONS(1058), - [aux_sym_expr_binary_token27] = ACTIONS(1058), - [aux_sym_expr_binary_token28] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [1239] = { - [sym_comment] = STATE(1239), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [sym__newline] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_err_GT_PIPE] = ACTIONS(1804), - [anon_sym_out_GT_PIPE] = ACTIONS(1804), - [anon_sym_e_GT_PIPE] = ACTIONS(1804), - [anon_sym_o_GT_PIPE] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1796), - [aux_sym_ctrl_match_token1] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT2] = ACTIONS(4570), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), - [anon_sym_DOT_DOT_LT] = ACTIONS(1796), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4572), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_decimal_token4] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1804), - [anon_sym_out_GT_GT] = ACTIONS(1804), - [anon_sym_e_GT_GT] = ACTIONS(1804), - [anon_sym_o_GT_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1796), - [aux_sym_unquoted_token2] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(247), - }, - [1240] = { - [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [aux_sym_ctrl_match_token1] = ACTIONS(1066), - [aux_sym_expr_binary_token1] = ACTIONS(1066), - [aux_sym_expr_binary_token2] = ACTIONS(1066), - [aux_sym_expr_binary_token3] = ACTIONS(1066), - [aux_sym_expr_binary_token4] = ACTIONS(1066), - [aux_sym_expr_binary_token5] = ACTIONS(1066), - [aux_sym_expr_binary_token6] = ACTIONS(1066), - [aux_sym_expr_binary_token7] = ACTIONS(1066), - [aux_sym_expr_binary_token8] = ACTIONS(1066), - [aux_sym_expr_binary_token9] = ACTIONS(1066), - [aux_sym_expr_binary_token10] = ACTIONS(1066), - [aux_sym_expr_binary_token11] = ACTIONS(1066), - [aux_sym_expr_binary_token12] = ACTIONS(1066), - [aux_sym_expr_binary_token13] = ACTIONS(1066), - [aux_sym_expr_binary_token14] = ACTIONS(1066), - [aux_sym_expr_binary_token15] = ACTIONS(1066), - [aux_sym_expr_binary_token16] = ACTIONS(1066), - [aux_sym_expr_binary_token17] = ACTIONS(1066), - [aux_sym_expr_binary_token18] = ACTIONS(1066), - [aux_sym_expr_binary_token19] = ACTIONS(1066), - [aux_sym_expr_binary_token20] = ACTIONS(1066), - [aux_sym_expr_binary_token21] = ACTIONS(1066), - [aux_sym_expr_binary_token22] = ACTIONS(1066), - [aux_sym_expr_binary_token23] = ACTIONS(1066), - [aux_sym_expr_binary_token24] = ACTIONS(1066), - [aux_sym_expr_binary_token25] = ACTIONS(1066), - [aux_sym_expr_binary_token26] = ACTIONS(1066), - [aux_sym_expr_binary_token27] = ACTIONS(1066), - [aux_sym_expr_binary_token28] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(247), - }, - [1241] = { - [sym_comment] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(4574), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [1242] = { - [sym_comment] = STATE(1242), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [1243] = { - [sym_comment] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1499), - [aux_sym_cmd_identifier_token40] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_DOT_DOT_LT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1499), - [aux_sym__val_number_decimal_token4] = ACTIONS(1499), - [aux_sym__val_number_token1] = ACTIONS(1499), - [aux_sym__val_number_token2] = ACTIONS(1499), - [aux_sym__val_number_token3] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1497), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1497), - [anon_sym_0x] = ACTIONS(1497), - [sym_val_date] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym__str_single_quotes] = ACTIONS(1499), - [sym__str_back_ticks] = ACTIONS(1499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token1] = ACTIONS(1497), - [aux_sym_unquoted_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [1244] = { - [sym_comment] = STATE(1244), - [ts_builtin_sym_end] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4576), - [aux_sym__immediate_decimal_token2] = ACTIONS(4578), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [1245] = { - [sym_cell_path] = STATE(1308), - [sym_path] = STATE(1116), - [sym_comment] = STATE(1245), - [aux_sym_cell_path_repeat1] = STATE(1049), - [sym__newline] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [aux_sym_expr_binary_token1] = ACTIONS(1629), - [aux_sym_expr_binary_token2] = ACTIONS(1629), - [aux_sym_expr_binary_token3] = ACTIONS(1629), - [aux_sym_expr_binary_token4] = ACTIONS(1629), - [aux_sym_expr_binary_token5] = ACTIONS(1629), - [aux_sym_expr_binary_token6] = ACTIONS(1629), - [aux_sym_expr_binary_token7] = ACTIONS(1629), - [aux_sym_expr_binary_token8] = ACTIONS(1629), - [aux_sym_expr_binary_token9] = ACTIONS(1629), - [aux_sym_expr_binary_token10] = ACTIONS(1629), - [aux_sym_expr_binary_token11] = ACTIONS(1629), - [aux_sym_expr_binary_token12] = ACTIONS(1629), - [aux_sym_expr_binary_token13] = ACTIONS(1629), - [aux_sym_expr_binary_token14] = ACTIONS(1629), - [aux_sym_expr_binary_token15] = ACTIONS(1629), - [aux_sym_expr_binary_token16] = ACTIONS(1629), - [aux_sym_expr_binary_token17] = ACTIONS(1629), - [aux_sym_expr_binary_token18] = ACTIONS(1629), - [aux_sym_expr_binary_token19] = ACTIONS(1629), - [aux_sym_expr_binary_token20] = ACTIONS(1629), - [aux_sym_expr_binary_token21] = ACTIONS(1629), - [aux_sym_expr_binary_token22] = ACTIONS(1629), - [aux_sym_expr_binary_token23] = ACTIONS(1629), - [aux_sym_expr_binary_token24] = ACTIONS(1629), - [aux_sym_expr_binary_token25] = ACTIONS(1629), - [aux_sym_expr_binary_token26] = ACTIONS(1629), - [aux_sym_expr_binary_token27] = ACTIONS(1629), - [aux_sym_expr_binary_token28] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(3764), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [aux_sym_record_entry_token1] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(247), - }, - [1246] = { - [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1786), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(4580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4582), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(247), - }, - [1247] = { - [sym_comment] = STATE(1247), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4584), - [aux_sym__immediate_decimal_token2] = ACTIONS(4586), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - }, - [1248] = { - [sym_comment] = STATE(1248), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4556), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(247), - }, - [1249] = { - [sym_comment] = STATE(1249), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4588), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token2] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(247), - }, - [1250] = { - [sym_comment] = STATE(1250), - [ts_builtin_sym_end] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - }, - [1251] = { - [sym_comment] = STATE(1251), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4590), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4592), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(247), - }, - [1252] = { - [sym_comment] = STATE(1252), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1058), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [aux_sym_ctrl_match_token1] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [anon_sym_0b] = ACTIONS(1056), - [anon_sym_0o] = ACTIONS(1056), - [anon_sym_0x] = ACTIONS(1056), - [sym_val_date] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [aux_sym_unquoted_token1] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), - }, - [1253] = { - [sym_comment] = STATE(1253), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_EQ_GT] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4547), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [aux_sym_record_entry_token1] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(247), - }, - [1254] = { - [sym_comment] = STATE(1254), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1062), - [aux_sym_cmd_identifier_token40] = ACTIONS(1062), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [aux_sym_ctrl_match_token1] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token3] = ACTIONS(1062), - [aux_sym__val_number_decimal_token4] = ACTIONS(1062), - [aux_sym__val_number_token1] = ACTIONS(1062), - [aux_sym__val_number_token2] = ACTIONS(1062), - [aux_sym__val_number_token3] = ACTIONS(1062), - [anon_sym_0b] = ACTIONS(1060), - [anon_sym_0o] = ACTIONS(1060), - [anon_sym_0x] = ACTIONS(1060), - [sym_val_date] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym__str_single_quotes] = ACTIONS(1062), - [sym__str_back_ticks] = ACTIONS(1062), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), - [aux_sym_unquoted_token1] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), - }, - [1255] = { - [sym_comment] = STATE(1255), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1054), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [aux_sym_ctrl_match_token1] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1052), - [anon_sym_0o] = ACTIONS(1052), - [anon_sym_0x] = ACTIONS(1052), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [aux_sym_unquoted_token1] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), - }, - [1256] = { - [sym_comment] = STATE(1256), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1257] = { - [sym_cell_path] = STATE(1544), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1257), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [aux_sym_ctrl_match_token1] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(247), - }, - [1258] = { - [sym_cell_path] = STATE(1548), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1258), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [aux_sym_ctrl_match_token1] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(247), - }, - [1259] = { - [sym_comment] = STATE(1259), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1260] = { - [sym_comment] = STATE(1260), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4600), - [aux_sym__immediate_decimal_token2] = ACTIONS(4602), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1261] = { - [sym_cell_path] = STATE(1313), - [sym_path] = STATE(1116), - [sym_comment] = STATE(1261), - [aux_sym_cell_path_repeat1] = STATE(1049), - [sym__newline] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_err_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_GT_PIPE] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), - [aux_sym_ctrl_match_token1] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [aux_sym_expr_binary_token1] = ACTIONS(1688), - [aux_sym_expr_binary_token2] = ACTIONS(1688), - [aux_sym_expr_binary_token3] = ACTIONS(1688), - [aux_sym_expr_binary_token4] = ACTIONS(1688), - [aux_sym_expr_binary_token5] = ACTIONS(1688), - [aux_sym_expr_binary_token6] = ACTIONS(1688), - [aux_sym_expr_binary_token7] = ACTIONS(1688), - [aux_sym_expr_binary_token8] = ACTIONS(1688), - [aux_sym_expr_binary_token9] = ACTIONS(1688), - [aux_sym_expr_binary_token10] = ACTIONS(1688), - [aux_sym_expr_binary_token11] = ACTIONS(1688), - [aux_sym_expr_binary_token12] = ACTIONS(1688), - [aux_sym_expr_binary_token13] = ACTIONS(1688), - [aux_sym_expr_binary_token14] = ACTIONS(1688), - [aux_sym_expr_binary_token15] = ACTIONS(1688), - [aux_sym_expr_binary_token16] = ACTIONS(1688), - [aux_sym_expr_binary_token17] = ACTIONS(1688), - [aux_sym_expr_binary_token18] = ACTIONS(1688), - [aux_sym_expr_binary_token19] = ACTIONS(1688), - [aux_sym_expr_binary_token20] = ACTIONS(1688), - [aux_sym_expr_binary_token21] = ACTIONS(1688), - [aux_sym_expr_binary_token22] = ACTIONS(1688), - [aux_sym_expr_binary_token23] = ACTIONS(1688), - [aux_sym_expr_binary_token24] = ACTIONS(1688), - [aux_sym_expr_binary_token25] = ACTIONS(1688), - [aux_sym_expr_binary_token26] = ACTIONS(1688), - [aux_sym_expr_binary_token27] = ACTIONS(1688), - [aux_sym_expr_binary_token28] = ACTIONS(1688), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(3764), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [aux_sym_record_entry_token1] = ACTIONS(1688), - [anon_sym_err_GT] = ACTIONS(1686), - [anon_sym_out_GT] = ACTIONS(1686), - [anon_sym_e_GT] = ACTIONS(1686), - [anon_sym_o_GT] = ACTIONS(1686), - [anon_sym_err_PLUSout_GT] = ACTIONS(1686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), - [anon_sym_o_PLUSe_GT] = ACTIONS(1686), - [anon_sym_e_PLUSo_GT] = ACTIONS(1686), - [anon_sym_err_GT_GT] = ACTIONS(1688), - [anon_sym_out_GT_GT] = ACTIONS(1688), - [anon_sym_e_GT_GT] = ACTIONS(1688), - [anon_sym_o_GT_GT] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(247), - }, [1262] = { - [sym_cell_path] = STATE(1550), - [sym_path] = STATE(1532), [sym_comment] = STATE(1262), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1833), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_err_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_GT_PIPE] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_RPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1829), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_decimal_token4] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_err_GT] = ACTIONS(1829), - [anon_sym_out_GT] = ACTIONS(1829), - [anon_sym_e_GT] = ACTIONS(1829), - [anon_sym_o_GT] = ACTIONS(1829), - [anon_sym_err_PLUSout_GT] = ACTIONS(1829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), - [anon_sym_o_PLUSe_GT] = ACTIONS(1829), - [anon_sym_e_PLUSo_GT] = ACTIONS(1829), - [anon_sym_err_GT_GT] = ACTIONS(1833), - [anon_sym_out_GT_GT] = ACTIONS(1833), - [anon_sym_e_GT_GT] = ACTIONS(1833), - [anon_sym_o_GT_GT] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), - [aux_sym_unquoted_token1] = ACTIONS(1829), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1520), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1263] = { - [sym_cell_path] = STATE(1551), - [sym_path] = STATE(1532), [sym_comment] = STATE(1263), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1837), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [aux_sym_ctrl_match_token1] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ_GT] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4561), + [aux_sym__immediate_decimal_token2] = ACTIONS(4563), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [aux_sym_record_entry_token1] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), [anon_sym_POUND] = ACTIONS(247), }, [1264] = { - [sym_cell_path] = STATE(1552), - [sym_path] = STATE(1532), [sym_comment] = STATE(1264), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [aux_sym_ctrl_match_token1] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT2] = ACTIONS(4565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), + [anon_sym_DOT_DOT_LT] = ACTIONS(1778), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [aux_sym_unquoted_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(247), }, [1265] = { - [sym_cell_path] = STATE(1553), - [sym_path] = STATE(1532), [sym_comment] = STATE(1265), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1845), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [sym__newline] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_err_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_GT_PIPE] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1843), - [aux_sym_ctrl_match_token1] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_LT] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1845), - [anon_sym_out_GT_GT] = ACTIONS(1845), - [anon_sym_e_GT_GT] = ACTIONS(1845), - [anon_sym_o_GT_GT] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), - [aux_sym_unquoted_token1] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), + [anon_sym_DOT_DOT_LT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_0b] = ACTIONS(1038), + [anon_sym_0o] = ACTIONS(1038), + [anon_sym_0x] = ACTIONS(1038), + [sym_val_date] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [aux_sym_unquoted_token1] = ACTIONS(1038), [anon_sym_POUND] = ACTIONS(247), }, [1266] = { - [sym_cell_path] = STATE(1554), - [sym_path] = STATE(1532), + [sym_path] = STATE(1376), [sym_comment] = STATE(1266), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1849), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [aux_sym_ctrl_match_token1] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), + [aux_sym_cell_path_repeat1] = STATE(1266), + [ts_builtin_sym_end] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_DOT_DOT_LT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_0b] = ACTIONS(1015), + [anon_sym_0o] = ACTIONS(1015), + [anon_sym_0x] = ACTIONS(1015), + [sym_val_date] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), + [aux_sym_unquoted_token1] = ACTIONS(1015), [anon_sym_POUND] = ACTIONS(247), }, [1267] = { [sym_comment] = STATE(1267), - [anon_sym_EQ] = ACTIONS(4604), - [anon_sym_PLUS_EQ] = ACTIONS(4606), - [anon_sym_DASH_EQ] = ACTIONS(4606), - [anon_sym_STAR_EQ] = ACTIONS(4606), - [anon_sym_SLASH_EQ] = ACTIONS(4606), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4606), - [sym__newline] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1078), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [sym__newline] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_expr_binary_token1] = ACTIONS(1072), + [aux_sym_expr_binary_token2] = ACTIONS(1072), + [aux_sym_expr_binary_token3] = ACTIONS(1072), + [aux_sym_expr_binary_token4] = ACTIONS(1072), + [aux_sym_expr_binary_token5] = ACTIONS(1072), + [aux_sym_expr_binary_token6] = ACTIONS(1072), + [aux_sym_expr_binary_token7] = ACTIONS(1072), + [aux_sym_expr_binary_token8] = ACTIONS(1072), + [aux_sym_expr_binary_token9] = ACTIONS(1072), + [aux_sym_expr_binary_token10] = ACTIONS(1072), + [aux_sym_expr_binary_token11] = ACTIONS(1072), + [aux_sym_expr_binary_token12] = ACTIONS(1072), + [aux_sym_expr_binary_token13] = ACTIONS(1072), + [aux_sym_expr_binary_token14] = ACTIONS(1072), + [aux_sym_expr_binary_token15] = ACTIONS(1072), + [aux_sym_expr_binary_token16] = ACTIONS(1072), + [aux_sym_expr_binary_token17] = ACTIONS(1072), + [aux_sym_expr_binary_token18] = ACTIONS(1072), + [aux_sym_expr_binary_token19] = ACTIONS(1072), + [aux_sym_expr_binary_token20] = ACTIONS(1072), + [aux_sym_expr_binary_token21] = ACTIONS(1072), + [aux_sym_expr_binary_token22] = ACTIONS(1072), + [aux_sym_expr_binary_token23] = ACTIONS(1072), + [aux_sym_expr_binary_token24] = ACTIONS(1072), + [aux_sym_expr_binary_token25] = ACTIONS(1072), + [aux_sym_expr_binary_token26] = ACTIONS(1072), + [aux_sym_expr_binary_token27] = ACTIONS(1072), + [aux_sym_expr_binary_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [aux_sym_record_entry_token1] = ACTIONS(4572), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(247), }, [1268] = { [sym_comment] = STATE(1268), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(4608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_expr_binary_token1] = ACTIONS(1072), + [aux_sym_expr_binary_token2] = ACTIONS(1072), + [aux_sym_expr_binary_token3] = ACTIONS(1072), + [aux_sym_expr_binary_token4] = ACTIONS(1072), + [aux_sym_expr_binary_token5] = ACTIONS(1072), + [aux_sym_expr_binary_token6] = ACTIONS(1072), + [aux_sym_expr_binary_token7] = ACTIONS(1072), + [aux_sym_expr_binary_token8] = ACTIONS(1072), + [aux_sym_expr_binary_token9] = ACTIONS(1072), + [aux_sym_expr_binary_token10] = ACTIONS(1072), + [aux_sym_expr_binary_token11] = ACTIONS(1072), + [aux_sym_expr_binary_token12] = ACTIONS(1072), + [aux_sym_expr_binary_token13] = ACTIONS(1072), + [aux_sym_expr_binary_token14] = ACTIONS(1072), + [aux_sym_expr_binary_token15] = ACTIONS(1072), + [aux_sym_expr_binary_token16] = ACTIONS(1072), + [aux_sym_expr_binary_token17] = ACTIONS(1072), + [aux_sym_expr_binary_token18] = ACTIONS(1072), + [aux_sym_expr_binary_token19] = ACTIONS(1072), + [aux_sym_expr_binary_token20] = ACTIONS(1072), + [aux_sym_expr_binary_token21] = ACTIONS(1072), + [aux_sym_expr_binary_token22] = ACTIONS(1072), + [aux_sym_expr_binary_token23] = ACTIONS(1072), + [aux_sym_expr_binary_token24] = ACTIONS(1072), + [aux_sym_expr_binary_token25] = ACTIONS(1072), + [aux_sym_expr_binary_token26] = ACTIONS(1072), + [aux_sym_expr_binary_token27] = ACTIONS(1072), + [aux_sym_expr_binary_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(247), }, [1269] = { - [sym_cell_path] = STATE(1555), - [sym_path] = STATE(1532), [sym_comment] = STATE(1269), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [sym__newline] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_err_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_GT_PIPE] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1851), - [aux_sym_ctrl_match_token1] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_LT] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [anon_sym_0b] = ACTIONS(1851), - [anon_sym_0o] = ACTIONS(1851), - [anon_sym_0x] = ACTIONS(1851), - [sym_val_date] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_err_GT] = ACTIONS(1851), - [anon_sym_out_GT] = ACTIONS(1851), - [anon_sym_e_GT] = ACTIONS(1851), - [anon_sym_o_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT] = ACTIONS(1851), - [anon_sym_err_GT_GT] = ACTIONS(1853), - [anon_sym_out_GT_GT] = ACTIONS(1853), - [anon_sym_e_GT_GT] = ACTIONS(1853), - [anon_sym_o_GT_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), - [aux_sym_unquoted_token1] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_null] = ACTIONS(1542), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1542), + [aux_sym_cmd_identifier_token40] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1540), + [aux_sym__val_number_decimal_token2] = ACTIONS(1542), + [aux_sym__val_number_decimal_token3] = ACTIONS(1542), + [aux_sym__val_number_decimal_token4] = ACTIONS(1542), + [aux_sym__val_number_token1] = ACTIONS(1542), + [aux_sym__val_number_token2] = ACTIONS(1542), + [aux_sym__val_number_token3] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1540), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1540), + [anon_sym_0x] = ACTIONS(1540), + [sym_val_date] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym__str_single_quotes] = ACTIONS(1542), + [sym__str_back_ticks] = ACTIONS(1542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token1] = ACTIONS(1540), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1270] = { - [sym__expr_parenthesized_immediate] = STATE(7411), [sym_comment] = STATE(1270), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(4610), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4612), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4612), - [sym_filesize_unit] = ACTIONS(4614), - [sym_duration_unit] = ACTIONS(4616), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(4618), - [anon_sym_POUND] = ACTIONS(247), - }, - [1271] = { - [sym_comment] = STATE(1271), - [ts_builtin_sym_end] = ACTIONS(1078), - [anon_sym_EQ] = ACTIONS(4620), - [anon_sym_PLUS_EQ] = ACTIONS(4622), - [anon_sym_DASH_EQ] = ACTIONS(4622), - [anon_sym_STAR_EQ] = ACTIONS(4622), - [anon_sym_SLASH_EQ] = ACTIONS(4622), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4622), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [aux_sym_expr_binary_token1] = ACTIONS(1078), - [aux_sym_expr_binary_token2] = ACTIONS(1078), - [aux_sym_expr_binary_token3] = ACTIONS(1078), - [aux_sym_expr_binary_token4] = ACTIONS(1078), - [aux_sym_expr_binary_token5] = ACTIONS(1078), - [aux_sym_expr_binary_token6] = ACTIONS(1078), - [aux_sym_expr_binary_token7] = ACTIONS(1078), - [aux_sym_expr_binary_token8] = ACTIONS(1078), - [aux_sym_expr_binary_token9] = ACTIONS(1078), - [aux_sym_expr_binary_token10] = ACTIONS(1078), - [aux_sym_expr_binary_token11] = ACTIONS(1078), - [aux_sym_expr_binary_token12] = ACTIONS(1078), - [aux_sym_expr_binary_token13] = ACTIONS(1078), - [aux_sym_expr_binary_token14] = ACTIONS(1078), - [aux_sym_expr_binary_token15] = ACTIONS(1078), - [aux_sym_expr_binary_token16] = ACTIONS(1078), - [aux_sym_expr_binary_token17] = ACTIONS(1078), - [aux_sym_expr_binary_token18] = ACTIONS(1078), - [aux_sym_expr_binary_token19] = ACTIONS(1078), - [aux_sym_expr_binary_token20] = ACTIONS(1078), - [aux_sym_expr_binary_token21] = ACTIONS(1078), - [aux_sym_expr_binary_token22] = ACTIONS(1078), - [aux_sym_expr_binary_token23] = ACTIONS(1078), - [aux_sym_expr_binary_token24] = ACTIONS(1078), - [aux_sym_expr_binary_token25] = ACTIONS(1078), - [aux_sym_expr_binary_token26] = ACTIONS(1078), - [aux_sym_expr_binary_token27] = ACTIONS(1078), - [aux_sym_expr_binary_token28] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(4624), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4626), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4626), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(247), - }, - [1272] = { - [sym_comment] = STATE(1272), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [1273] = { - [sym_cell_path] = STATE(1557), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1273), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [sym__newline] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_err_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_GT_PIPE] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1859), - [aux_sym_ctrl_match_token1] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [anon_sym_0b] = ACTIONS(1859), - [anon_sym_0o] = ACTIONS(1859), - [anon_sym_0x] = ACTIONS(1859), - [sym_val_date] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), - [anon_sym_err_GT] = ACTIONS(1859), - [anon_sym_out_GT] = ACTIONS(1859), - [anon_sym_e_GT] = ACTIONS(1859), - [anon_sym_o_GT] = ACTIONS(1859), - [anon_sym_err_PLUSout_GT] = ACTIONS(1859), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), - [anon_sym_o_PLUSe_GT] = ACTIONS(1859), - [anon_sym_e_PLUSo_GT] = ACTIONS(1859), - [anon_sym_err_GT_GT] = ACTIONS(1861), - [anon_sym_out_GT_GT] = ACTIONS(1861), - [anon_sym_e_GT_GT] = ACTIONS(1861), - [anon_sym_o_GT_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), - [aux_sym_unquoted_token1] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(247), - }, - [1274] = { - [sym_comment] = STATE(1274), - [ts_builtin_sym_end] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [aux_sym_ctrl_match_token1] = ACTIONS(1042), - [anon_sym_DOT_DOT] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1042), - [anon_sym_DOT_DOT2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_0b] = ACTIONS(1040), - [anon_sym_0o] = ACTIONS(1040), - [anon_sym_0x] = ACTIONS(1040), - [sym_val_date] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1042), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), - [aux_sym_unquoted_token1] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1275] = { - [sym_cell_path] = STATE(1558), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1275), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1865), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [sym__newline] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_err_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_GT_PIPE] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1863), - [aux_sym_ctrl_match_token1] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1865), - [anon_sym_out_GT_GT] = ACTIONS(1865), - [anon_sym_e_GT_GT] = ACTIONS(1865), - [anon_sym_o_GT_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), - [aux_sym_unquoted_token1] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(247), - }, - [1276] = { - [sym_cell_path] = STATE(1559), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1276), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1869), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1867), - [aux_sym_ctrl_match_token1] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), - [anon_sym_DOT_DOT_LT] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_0b] = ACTIONS(1867), - [anon_sym_0o] = ACTIONS(1867), - [anon_sym_0x] = ACTIONS(1867), - [sym_val_date] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1867), - [anon_sym_out_GT] = ACTIONS(1867), - [anon_sym_e_GT] = ACTIONS(1867), - [anon_sym_o_GT] = ACTIONS(1867), - [anon_sym_err_PLUSout_GT] = ACTIONS(1867), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), - [anon_sym_o_PLUSe_GT] = ACTIONS(1867), - [anon_sym_e_PLUSo_GT] = ACTIONS(1867), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [aux_sym_unquoted_token1] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(247), - }, - [1277] = { - [sym_cell_path] = STATE(1579), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1277), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [aux_sym_ctrl_match_token1] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), - }, - [1278] = { - [sym_comment] = STATE(1278), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4630), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1279] = { - [sym_comment] = STATE(1279), - [ts_builtin_sym_end] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [aux_sym_ctrl_match_token1] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_0b] = ACTIONS(1044), - [anon_sym_0o] = ACTIONS(1044), - [anon_sym_0x] = ACTIONS(1044), - [sym_val_date] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [aux_sym_unquoted_token1] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [1280] = { - [sym_cell_path] = STATE(1560), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1280), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1873), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [aux_sym_ctrl_match_token1] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), - }, - [1281] = { - [sym_cell_path] = STATE(1561), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1281), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1875), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(247), - }, - [1282] = { - [sym_comment] = STATE(1282), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_EQ_GT] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4632), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [aux_sym_record_entry_token1] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(247), - }, - [1283] = { - [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [aux_sym_ctrl_match_token1] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_0b] = ACTIONS(1048), - [anon_sym_0o] = ACTIONS(1048), - [anon_sym_0x] = ACTIONS(1048), - [sym_val_date] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [aux_sym_unquoted_token1] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [sym__newline] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_err_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_GT_PIPE] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(4574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4576), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4576), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1796), + [anon_sym_out_GT_GT] = ACTIONS(1796), + [anon_sym_e_GT_GT] = ACTIONS(1796), + [anon_sym_o_GT_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(247), }, - [1284] = { - [sym_cell_path] = STATE(1562), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1284), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1971), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1969), - [aux_sym_ctrl_match_token1] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [1271] = { + [sym_comment] = STATE(1271), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4580), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, - [1285] = { - [sym_cell_path] = STATE(1563), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1285), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1892), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [aux_sym_ctrl_match_token1] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), + [1272] = { + [sym_comment] = STATE(1272), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4582), + [aux_sym__immediate_decimal_token2] = ACTIONS(4584), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, - [1286] = { - [sym_cell_path] = STATE(1564), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1286), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1896), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [sym__newline] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_err_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_GT_PIPE] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [aux_sym_ctrl_match_token1] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1896), - [anon_sym_DOT_DOT_LT] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [anon_sym_0b] = ACTIONS(1894), - [anon_sym_0o] = ACTIONS(1894), - [anon_sym_0x] = ACTIONS(1894), - [sym_val_date] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1896), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1896), - [anon_sym_err_GT] = ACTIONS(1894), - [anon_sym_out_GT] = ACTIONS(1894), - [anon_sym_e_GT] = ACTIONS(1894), - [anon_sym_o_GT] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT] = ACTIONS(1894), - [anon_sym_err_GT_GT] = ACTIONS(1896), - [anon_sym_out_GT_GT] = ACTIONS(1896), - [anon_sym_e_GT_GT] = ACTIONS(1896), - [anon_sym_o_GT_GT] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), - [aux_sym_unquoted_token1] = ACTIONS(1894), + [1273] = { + [sym_comment] = STATE(1273), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4586), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, - [1287] = { - [sym_cell_path] = STATE(1565), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1287), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1939), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1937), - [aux_sym_ctrl_match_token1] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), + [1274] = { + [sym_comment] = STATE(1274), + [ts_builtin_sym_end] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_0b] = ACTIONS(1554), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1554), + [anon_sym_0x] = ACTIONS(1554), + [sym_val_date] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1554), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, - [1288] = { - [sym_cell_path] = STATE(1566), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1288), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1945), - [aux_sym_ctrl_match_token1] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), + [1275] = { + [sym_comment] = STATE(1275), + [ts_builtin_sym_end] = ACTIONS(1052), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1052), + [anon_sym_DASH_EQ] = ACTIONS(1052), + [anon_sym_STAR_EQ] = ACTIONS(1052), + [anon_sym_SLASH_EQ] = ACTIONS(1052), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [aux_sym_expr_binary_token1] = ACTIONS(1052), + [aux_sym_expr_binary_token2] = ACTIONS(1052), + [aux_sym_expr_binary_token3] = ACTIONS(1052), + [aux_sym_expr_binary_token4] = ACTIONS(1052), + [aux_sym_expr_binary_token5] = ACTIONS(1052), + [aux_sym_expr_binary_token6] = ACTIONS(1052), + [aux_sym_expr_binary_token7] = ACTIONS(1052), + [aux_sym_expr_binary_token8] = ACTIONS(1052), + [aux_sym_expr_binary_token9] = ACTIONS(1052), + [aux_sym_expr_binary_token10] = ACTIONS(1052), + [aux_sym_expr_binary_token11] = ACTIONS(1052), + [aux_sym_expr_binary_token12] = ACTIONS(1052), + [aux_sym_expr_binary_token13] = ACTIONS(1052), + [aux_sym_expr_binary_token14] = ACTIONS(1052), + [aux_sym_expr_binary_token15] = ACTIONS(1052), + [aux_sym_expr_binary_token16] = ACTIONS(1052), + [aux_sym_expr_binary_token17] = ACTIONS(1052), + [aux_sym_expr_binary_token18] = ACTIONS(1052), + [aux_sym_expr_binary_token19] = ACTIONS(1052), + [aux_sym_expr_binary_token20] = ACTIONS(1052), + [aux_sym_expr_binary_token21] = ACTIONS(1052), + [aux_sym_expr_binary_token22] = ACTIONS(1052), + [aux_sym_expr_binary_token23] = ACTIONS(1052), + [aux_sym_expr_binary_token24] = ACTIONS(1052), + [aux_sym_expr_binary_token25] = ACTIONS(1052), + [aux_sym_expr_binary_token26] = ACTIONS(1052), + [aux_sym_expr_binary_token27] = ACTIONS(1052), + [aux_sym_expr_binary_token28] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), [anon_sym_POUND] = ACTIONS(247), }, - [1289] = { - [sym_cell_path] = STATE(1567), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1289), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1951), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1949), - [aux_sym_ctrl_match_token1] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), + [1276] = { + [sym_cell_path] = STATE(1375), + [sym_path] = STATE(1135), + [sym_comment] = STATE(1276), + [aux_sym_cell_path_repeat1] = STATE(1078), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [aux_sym_expr_binary_token1] = ACTIONS(1677), + [aux_sym_expr_binary_token2] = ACTIONS(1677), + [aux_sym_expr_binary_token3] = ACTIONS(1677), + [aux_sym_expr_binary_token4] = ACTIONS(1677), + [aux_sym_expr_binary_token5] = ACTIONS(1677), + [aux_sym_expr_binary_token6] = ACTIONS(1677), + [aux_sym_expr_binary_token7] = ACTIONS(1677), + [aux_sym_expr_binary_token8] = ACTIONS(1677), + [aux_sym_expr_binary_token9] = ACTIONS(1677), + [aux_sym_expr_binary_token10] = ACTIONS(1677), + [aux_sym_expr_binary_token11] = ACTIONS(1677), + [aux_sym_expr_binary_token12] = ACTIONS(1677), + [aux_sym_expr_binary_token13] = ACTIONS(1677), + [aux_sym_expr_binary_token14] = ACTIONS(1677), + [aux_sym_expr_binary_token15] = ACTIONS(1677), + [aux_sym_expr_binary_token16] = ACTIONS(1677), + [aux_sym_expr_binary_token17] = ACTIONS(1677), + [aux_sym_expr_binary_token18] = ACTIONS(1677), + [aux_sym_expr_binary_token19] = ACTIONS(1677), + [aux_sym_expr_binary_token20] = ACTIONS(1677), + [aux_sym_expr_binary_token21] = ACTIONS(1677), + [aux_sym_expr_binary_token22] = ACTIONS(1677), + [aux_sym_expr_binary_token23] = ACTIONS(1677), + [aux_sym_expr_binary_token24] = ACTIONS(1677), + [aux_sym_expr_binary_token25] = ACTIONS(1677), + [aux_sym_expr_binary_token26] = ACTIONS(1677), + [aux_sym_expr_binary_token27] = ACTIONS(1677), + [aux_sym_expr_binary_token28] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [aux_sym_record_entry_token1] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(247), }, - [1290] = { - [sym_comment] = STATE(1290), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4636), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [1277] = { + [sym_comment] = STATE(1277), + [sym__newline] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4590), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, - [1291] = { - [sym_cell_path] = STATE(1571), - [sym_path] = STATE(1532), - [sym_comment] = STATE(1291), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1967), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1965), - [aux_sym_ctrl_match_token1] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), + [1278] = { + [sym_comment] = STATE(1278), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4592), + [aux_sym__immediate_decimal_token2] = ACTIONS(4594), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, - [1292] = { - [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [sym__newline] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_err_GT_PIPE] = ACTIONS(1804), - [anon_sym_out_GT_PIPE] = ACTIONS(1804), - [anon_sym_e_GT_PIPE] = ACTIONS(1804), - [anon_sym_o_GT_PIPE] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1796), - [aux_sym_ctrl_match_token1] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT2] = ACTIONS(4638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), - [anon_sym_DOT_DOT_LT] = ACTIONS(1796), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4640), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_decimal_token4] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1804), - [anon_sym_out_GT_GT] = ACTIONS(1804), - [anon_sym_e_GT_GT] = ACTIONS(1804), - [anon_sym_o_GT_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1796), - [aux_sym_unquoted_token2] = ACTIONS(1806), + [1279] = { + [sym_comment] = STATE(1279), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [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_RBRACE] = ACTIONS(1520), + [anon_sym_EQ_GT] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4551), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [aux_sym_record_entry_token1] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, - [1293] = { - [sym_comment] = STATE(1293), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4642), - [aux_sym__immediate_decimal_token2] = ACTIONS(4644), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [1280] = { + [sym_comment] = STATE(1280), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_0b] = ACTIONS(1042), + [anon_sym_0o] = ACTIONS(1042), + [anon_sym_0x] = ACTIONS(1042), + [sym_val_date] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [aux_sym_unquoted_token1] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, - [1294] = { - [sym_comment] = STATE(1294), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4646), - [aux_sym__immediate_decimal_token2] = ACTIONS(4648), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [1281] = { + [sym_cell_path] = STATE(1589), + [sym_path] = STATE(1551), + [sym_comment] = STATE(1281), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1007), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [sym__newline] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_0b] = ACTIONS(1005), + [anon_sym_0o] = ACTIONS(1005), + [anon_sym_0x] = ACTIONS(1005), + [sym_val_date] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [aux_sym_unquoted_token1] = ACTIONS(1005), [anon_sym_POUND] = ACTIONS(247), }, - [1295] = { - [sym_comment] = STATE(1295), + [1282] = { + [sym_comment] = STATE(1282), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4600), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1283] = { + [sym_comment] = STATE(1283), + [ts_builtin_sym_end] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), + [anon_sym_DOT_DOT_LT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_0b] = ACTIONS(1038), + [anon_sym_0o] = ACTIONS(1038), + [anon_sym_0x] = ACTIONS(1038), + [sym_val_date] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [aux_sym_unquoted_token1] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(247), + }, + [1284] = { + [sym_comment] = STATE(1284), [ts_builtin_sym_end] = ACTIONS(1036), [anon_sym_true] = ACTIONS(1036), [anon_sym_false] = ACTIONS(1036), @@ -195669,9 +197695,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1034), [anon_sym_DASH_DASH] = ACTIONS(1036), [anon_sym_DASH] = ACTIONS(1034), - [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(4650), + [anon_sym_QMARK2] = ACTIONS(1036), [anon_sym_DOT_DOT2] = ACTIONS(1034), [anon_sym_DOT] = ACTIONS(1034), [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), @@ -195713,8 +197739,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [1296] = { - [sym_comment] = STATE(1296), + [1285] = { + [sym_comment] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1024), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [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_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(4602), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(247), + }, + [1286] = { + [sym_comment] = STATE(1286), [ts_builtin_sym_end] = ACTIONS(1030), [anon_sym_true] = ACTIONS(1030), [anon_sym_false] = ACTIONS(1030), @@ -195738,9 +197833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1028), [anon_sym_DASH_DASH] = ACTIONS(1030), [anon_sym_DASH] = ACTIONS(1028), - [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(4652), + [anon_sym_QMARK2] = ACTIONS(4604), [anon_sym_DOT_DOT2] = ACTIONS(1028), [anon_sym_DOT] = ACTIONS(1028), [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), @@ -195782,3694 +197877,4344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, + [1287] = { + [sym__expr_parenthesized_immediate] = STATE(7282), + [sym_comment] = STATE(1287), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(1572), + [aux_sym_expr_binary_token2] = ACTIONS(1572), + [aux_sym_expr_binary_token3] = ACTIONS(1572), + [aux_sym_expr_binary_token4] = ACTIONS(1572), + [aux_sym_expr_binary_token5] = ACTIONS(1572), + [aux_sym_expr_binary_token6] = ACTIONS(1572), + [aux_sym_expr_binary_token7] = ACTIONS(1572), + [aux_sym_expr_binary_token8] = ACTIONS(1572), + [aux_sym_expr_binary_token9] = ACTIONS(1572), + [aux_sym_expr_binary_token10] = ACTIONS(1572), + [aux_sym_expr_binary_token11] = ACTIONS(1572), + [aux_sym_expr_binary_token12] = ACTIONS(1572), + [aux_sym_expr_binary_token13] = ACTIONS(1572), + [aux_sym_expr_binary_token14] = ACTIONS(1572), + [aux_sym_expr_binary_token15] = ACTIONS(1572), + [aux_sym_expr_binary_token16] = ACTIONS(1572), + [aux_sym_expr_binary_token17] = ACTIONS(1572), + [aux_sym_expr_binary_token18] = ACTIONS(1572), + [aux_sym_expr_binary_token19] = ACTIONS(1572), + [aux_sym_expr_binary_token20] = ACTIONS(1572), + [aux_sym_expr_binary_token21] = ACTIONS(1572), + [aux_sym_expr_binary_token22] = ACTIONS(1572), + [aux_sym_expr_binary_token23] = ACTIONS(1572), + [aux_sym_expr_binary_token24] = ACTIONS(1572), + [aux_sym_expr_binary_token25] = ACTIONS(1572), + [aux_sym_expr_binary_token26] = ACTIONS(1572), + [aux_sym_expr_binary_token27] = ACTIONS(1572), + [aux_sym_expr_binary_token28] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4608), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4608), + [sym_filesize_unit] = ACTIONS(4610), + [sym_duration_unit] = ACTIONS(4612), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token2] = ACTIONS(4614), + [anon_sym_POUND] = ACTIONS(247), + }, + [1288] = { + [sym_comment] = STATE(1288), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [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_RBRACE] = ACTIONS(1556), + [anon_sym_EQ_GT] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4616), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [aux_sym_record_entry_token1] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), + }, + [1289] = { + [sym_comment] = STATE(1289), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4618), + [aux_sym__immediate_decimal_token2] = ACTIONS(4620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [1290] = { + [sym_comment] = STATE(1290), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4580), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(247), + }, + [1291] = { + [sym_comment] = STATE(1291), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4622), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [1292] = { + [sym_comment] = STATE(1292), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_0b] = ACTIONS(1046), + [anon_sym_0o] = ACTIONS(1046), + [anon_sym_0x] = ACTIONS(1046), + [sym_val_date] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), + [aux_sym_unquoted_token1] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + }, + [1293] = { + [sym_comment] = STATE(1293), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1294] = { + [sym_comment] = STATE(1294), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_DOT_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_0b] = ACTIONS(1050), + [anon_sym_0o] = ACTIONS(1050), + [anon_sym_0x] = ACTIONS(1050), + [sym_val_date] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), + [aux_sym_unquoted_token1] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(247), + }, + [1295] = { + [sym_comment] = STATE(1295), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [aux_sym_unquoted_token1] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(247), + }, + [1296] = { + [sym_comment] = STATE(1296), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4626), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, [1297] = { - [sym_cell_path] = STATE(1573), - [sym_path] = STATE(1532), [sym_comment] = STATE(1297), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [aux_sym_ctrl_match_token1] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, [1298] = { [sym_comment] = STATE(1298), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4656), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4630), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1299] = { [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [1300] = { [sym_comment] = STATE(1300), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4660), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4533), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1301] = { [sym_comment] = STATE(1301), - [ts_builtin_sym_end] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [1302] = { [sym_comment] = STATE(1302), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4662), - [aux_sym__immediate_decimal_token2] = ACTIONS(4664), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1740), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [sym__newline] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_err_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_GT_PIPE] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), + [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(1740), + [anon_sym_out_GT_GT] = ACTIONS(1740), + [anon_sym_e_GT_GT] = ACTIONS(1740), + [anon_sym_o_GT_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), + [aux_sym_unquoted_token1] = ACTIONS(1738), + [aux_sym_unquoted_token2] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(247), }, [1303] = { - [sym_cell_path] = STATE(1556), - [sym_path] = STATE(1532), [sym_comment] = STATE(1303), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1857), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [aux_sym_ctrl_match_token1] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_EQ] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4636), + [anon_sym_DASH_EQ] = ACTIONS(4636), + [anon_sym_STAR_EQ] = ACTIONS(4636), + [anon_sym_SLASH_EQ] = ACTIONS(4636), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4636), + [sym__newline] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(247), }, [1304] = { [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(1499), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(4666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4668), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [sym__newline] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_err_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_GT_PIPE] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(4638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4640), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1796), + [anon_sym_out_GT_GT] = ACTIONS(1796), + [anon_sym_e_GT_GT] = ACTIONS(1796), + [anon_sym_o_GT_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(247), }, [1305] = { [sym_comment] = STATE(1305), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4642), + [aux_sym__immediate_decimal_token2] = ACTIONS(4644), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), [anon_sym_POUND] = ACTIONS(247), }, [1306] = { + [sym_cell_path] = STATE(1371), + [sym_path] = STATE(1135), [sym_comment] = STATE(1306), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [anon_sym_null] = ACTIONS(1078), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1078), - [aux_sym_cmd_identifier_token40] = ACTIONS(1078), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [aux_sym_ctrl_match_token1] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT] = ACTIONS(1076), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1078), - [aux_sym__val_number_decimal_token3] = ACTIONS(1078), - [aux_sym__val_number_decimal_token4] = ACTIONS(1078), - [aux_sym__val_number_token1] = ACTIONS(1078), - [aux_sym__val_number_token2] = ACTIONS(1078), - [aux_sym__val_number_token3] = ACTIONS(1078), - [anon_sym_0b] = ACTIONS(1076), - [anon_sym_0o] = ACTIONS(1076), - [anon_sym_0x] = ACTIONS(1076), - [sym_val_date] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym__str_single_quotes] = ACTIONS(1078), - [sym__str_back_ticks] = ACTIONS(1078), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1078), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1078), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), - [aux_sym_unquoted_token1] = ACTIONS(1076), + [aux_sym_cell_path_repeat1] = STATE(1078), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [aux_sym_expr_binary_token1] = ACTIONS(1645), + [aux_sym_expr_binary_token2] = ACTIONS(1645), + [aux_sym_expr_binary_token3] = ACTIONS(1645), + [aux_sym_expr_binary_token4] = ACTIONS(1645), + [aux_sym_expr_binary_token5] = ACTIONS(1645), + [aux_sym_expr_binary_token6] = ACTIONS(1645), + [aux_sym_expr_binary_token7] = ACTIONS(1645), + [aux_sym_expr_binary_token8] = ACTIONS(1645), + [aux_sym_expr_binary_token9] = ACTIONS(1645), + [aux_sym_expr_binary_token10] = ACTIONS(1645), + [aux_sym_expr_binary_token11] = ACTIONS(1645), + [aux_sym_expr_binary_token12] = ACTIONS(1645), + [aux_sym_expr_binary_token13] = ACTIONS(1645), + [aux_sym_expr_binary_token14] = ACTIONS(1645), + [aux_sym_expr_binary_token15] = ACTIONS(1645), + [aux_sym_expr_binary_token16] = ACTIONS(1645), + [aux_sym_expr_binary_token17] = ACTIONS(1645), + [aux_sym_expr_binary_token18] = ACTIONS(1645), + [aux_sym_expr_binary_token19] = ACTIONS(1645), + [aux_sym_expr_binary_token20] = ACTIONS(1645), + [aux_sym_expr_binary_token21] = ACTIONS(1645), + [aux_sym_expr_binary_token22] = ACTIONS(1645), + [aux_sym_expr_binary_token23] = ACTIONS(1645), + [aux_sym_expr_binary_token24] = ACTIONS(1645), + [aux_sym_expr_binary_token25] = ACTIONS(1645), + [aux_sym_expr_binary_token26] = ACTIONS(1645), + [aux_sym_expr_binary_token27] = ACTIONS(1645), + [aux_sym_expr_binary_token28] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym_record_entry_token1] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(247), }, [1307] = { [sym_comment] = STATE(1307), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4646), + [aux_sym__immediate_decimal_token2] = ACTIONS(4648), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), [anon_sym_POUND] = ACTIONS(247), }, [1308] = { + [sym_cell_path] = STATE(1682), + [sym_path] = STATE(1551), [sym_comment] = STATE(1308), - [sym__newline] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_err_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_GT_PIPE] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2137), - [aux_sym_ctrl_match_token1] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_EQ_GT] = ACTIONS(2139), - [aux_sym_expr_binary_token1] = ACTIONS(2139), - [aux_sym_expr_binary_token2] = ACTIONS(2139), - [aux_sym_expr_binary_token3] = ACTIONS(2139), - [aux_sym_expr_binary_token4] = ACTIONS(2139), - [aux_sym_expr_binary_token5] = ACTIONS(2139), - [aux_sym_expr_binary_token6] = ACTIONS(2139), - [aux_sym_expr_binary_token7] = ACTIONS(2139), - [aux_sym_expr_binary_token8] = ACTIONS(2139), - [aux_sym_expr_binary_token9] = ACTIONS(2139), - [aux_sym_expr_binary_token10] = ACTIONS(2139), - [aux_sym_expr_binary_token11] = ACTIONS(2139), - [aux_sym_expr_binary_token12] = ACTIONS(2139), - [aux_sym_expr_binary_token13] = ACTIONS(2139), - [aux_sym_expr_binary_token14] = ACTIONS(2139), - [aux_sym_expr_binary_token15] = ACTIONS(2139), - [aux_sym_expr_binary_token16] = ACTIONS(2139), - [aux_sym_expr_binary_token17] = ACTIONS(2139), - [aux_sym_expr_binary_token18] = ACTIONS(2139), - [aux_sym_expr_binary_token19] = ACTIONS(2139), - [aux_sym_expr_binary_token20] = ACTIONS(2139), - [aux_sym_expr_binary_token21] = ACTIONS(2139), - [aux_sym_expr_binary_token22] = ACTIONS(2139), - [aux_sym_expr_binary_token23] = ACTIONS(2139), - [aux_sym_expr_binary_token24] = ACTIONS(2139), - [aux_sym_expr_binary_token25] = ACTIONS(2139), - [aux_sym_expr_binary_token26] = ACTIONS(2139), - [aux_sym_expr_binary_token27] = ACTIONS(2139), - [aux_sym_expr_binary_token28] = ACTIONS(2139), - [anon_sym_DOT_DOT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), - [aux_sym_record_entry_token1] = ACTIONS(2139), - [anon_sym_err_GT] = ACTIONS(2137), - [anon_sym_out_GT] = ACTIONS(2137), - [anon_sym_e_GT] = ACTIONS(2137), - [anon_sym_o_GT] = ACTIONS(2137), - [anon_sym_err_PLUSout_GT] = ACTIONS(2137), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2137), - [anon_sym_o_PLUSe_GT] = ACTIONS(2137), - [anon_sym_e_PLUSo_GT] = ACTIONS(2137), - [anon_sym_err_GT_GT] = ACTIONS(2139), - [anon_sym_out_GT_GT] = ACTIONS(2139), - [anon_sym_e_GT_GT] = ACTIONS(2139), - [anon_sym_o_GT_GT] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), + [aux_sym_cmd_identifier_token38] = ACTIONS(1914), + [aux_sym_cmd_identifier_token39] = ACTIONS(1914), + [aux_sym_cmd_identifier_token40] = ACTIONS(1914), + [sym__newline] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_err_GT_PIPE] = ACTIONS(1914), + [anon_sym_out_GT_PIPE] = ACTIONS(1914), + [anon_sym_e_GT_PIPE] = ACTIONS(1914), + [anon_sym_o_GT_PIPE] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1912), + [aux_sym__val_number_decimal_token2] = ACTIONS(1914), + [aux_sym__val_number_decimal_token3] = ACTIONS(1914), + [aux_sym__val_number_decimal_token4] = ACTIONS(1914), + [aux_sym__val_number_token1] = ACTIONS(1914), + [aux_sym__val_number_token2] = ACTIONS(1914), + [aux_sym__val_number_token3] = ACTIONS(1914), + [anon_sym_0b] = ACTIONS(1912), + [anon_sym_0o] = ACTIONS(1912), + [anon_sym_0x] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym__str_single_quotes] = ACTIONS(1914), + [sym__str_back_ticks] = ACTIONS(1914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1914), + [anon_sym_err_GT] = ACTIONS(1912), + [anon_sym_out_GT] = ACTIONS(1912), + [anon_sym_e_GT] = ACTIONS(1912), + [anon_sym_o_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT] = ACTIONS(1912), + [anon_sym_err_GT_GT] = ACTIONS(1914), + [anon_sym_out_GT_GT] = ACTIONS(1914), + [anon_sym_e_GT_GT] = ACTIONS(1914), + [anon_sym_o_GT_GT] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(247), }, [1309] = { - [sym_cell_path] = STATE(1876), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1692), + [sym_path] = STATE(1551), [sym_comment] = STATE(1309), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [aux_sym_ctrl_match_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [sym__newline] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_err_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_GT_PIPE] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1822), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_0b] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1822), + [anon_sym_0x] = ACTIONS(1822), + [sym_val_date] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(1822), + [anon_sym_out_GT] = ACTIONS(1822), + [anon_sym_e_GT] = ACTIONS(1822), + [anon_sym_o_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT] = ACTIONS(1822), + [anon_sym_err_GT_GT] = ACTIONS(1826), + [anon_sym_out_GT_GT] = ACTIONS(1826), + [anon_sym_e_GT_GT] = ACTIONS(1826), + [anon_sym_o_GT_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), + [aux_sym_unquoted_token1] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(247), }, [1310] = { - [sym__expr_parenthesized_immediate] = STATE(7332), + [sym_cell_path] = STATE(1699), + [sym_path] = STATE(1551), [sym_comment] = STATE(1310), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(4610), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4612), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4612), - [sym_filesize_unit] = ACTIONS(4676), - [sym_duration_unit] = ACTIONS(4678), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(4680), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), + [aux_sym_cmd_identifier_token38] = ACTIONS(1838), + [aux_sym_cmd_identifier_token39] = ACTIONS(1838), + [aux_sym_cmd_identifier_token40] = ACTIONS(1838), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1836), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1836), + [anon_sym_0o] = ACTIONS(1836), + [anon_sym_0x] = ACTIONS(1836), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(1836), + [anon_sym_out_GT] = ACTIONS(1836), + [anon_sym_e_GT] = ACTIONS(1836), + [anon_sym_o_GT] = ACTIONS(1836), + [anon_sym_err_PLUSout_GT] = ACTIONS(1836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), + [anon_sym_o_PLUSe_GT] = ACTIONS(1836), + [anon_sym_e_PLUSo_GT] = ACTIONS(1836), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [aux_sym_unquoted_token1] = ACTIONS(1836), [anon_sym_POUND] = ACTIONS(247), }, [1311] = { + [sym_cell_path] = STATE(1702), + [sym_path] = STATE(1551), [sym_comment] = STATE(1311), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [anon_sym_null] = ACTIONS(2135), - [aux_sym_cmd_identifier_token38] = ACTIONS(2135), - [aux_sym_cmd_identifier_token39] = ACTIONS(2135), - [aux_sym_cmd_identifier_token40] = ACTIONS(2135), - [sym__newline] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(2135), - [anon_sym_err_GT_PIPE] = ACTIONS(2135), - [anon_sym_out_GT_PIPE] = ACTIONS(2135), - [anon_sym_e_GT_PIPE] = ACTIONS(2135), - [anon_sym_o_GT_PIPE] = ACTIONS(2135), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2135), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2135), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2135), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2133), - [aux_sym_ctrl_match_token1] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2133), - [anon_sym_DOT_DOT2] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_LT] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token3] = ACTIONS(2135), - [aux_sym__val_number_decimal_token4] = ACTIONS(2135), - [aux_sym__val_number_token1] = ACTIONS(2135), - [aux_sym__val_number_token2] = ACTIONS(2135), - [aux_sym__val_number_token3] = ACTIONS(2135), - [anon_sym_0b] = ACTIONS(2133), - [anon_sym_0o] = ACTIONS(2133), - [anon_sym_0x] = ACTIONS(2133), - [sym_val_date] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym__str_single_quotes] = ACTIONS(2135), - [sym__str_back_ticks] = ACTIONS(2135), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), - [anon_sym_err_GT] = ACTIONS(2133), - [anon_sym_out_GT] = ACTIONS(2133), - [anon_sym_e_GT] = ACTIONS(2133), - [anon_sym_o_GT] = ACTIONS(2133), - [anon_sym_err_PLUSout_GT] = ACTIONS(2133), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2133), - [anon_sym_o_PLUSe_GT] = ACTIONS(2133), - [anon_sym_e_PLUSo_GT] = ACTIONS(2133), - [anon_sym_err_GT_GT] = ACTIONS(2135), - [anon_sym_out_GT_GT] = ACTIONS(2135), - [anon_sym_e_GT_GT] = ACTIONS(2135), - [anon_sym_o_GT_GT] = ACTIONS(2135), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2135), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2135), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2135), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2135), - [aux_sym_unquoted_token1] = ACTIONS(2133), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), + [aux_sym_cmd_identifier_token38] = ACTIONS(1842), + [aux_sym_cmd_identifier_token39] = ACTIONS(1842), + [aux_sym_cmd_identifier_token40] = ACTIONS(1842), + [sym__newline] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_err_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_GT_PIPE] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), + [anon_sym_DOT_DOT_LT] = ACTIONS(1842), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1842), + [aux_sym__val_number_decimal_token3] = ACTIONS(1842), + [aux_sym__val_number_decimal_token4] = ACTIONS(1842), + [aux_sym__val_number_token1] = ACTIONS(1842), + [aux_sym__val_number_token2] = ACTIONS(1842), + [aux_sym__val_number_token3] = ACTIONS(1842), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1840), + [anon_sym_0x] = ACTIONS(1840), + [sym_val_date] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym__str_single_quotes] = ACTIONS(1842), + [sym__str_back_ticks] = ACTIONS(1842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1842), + [anon_sym_out_GT_GT] = ACTIONS(1842), + [anon_sym_e_GT_GT] = ACTIONS(1842), + [anon_sym_o_GT_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), + [aux_sym_unquoted_token1] = ACTIONS(1840), [anon_sym_POUND] = ACTIONS(247), }, [1312] = { + [sym_cell_path] = STATE(1706), + [sym_path] = STATE(1551), [sym_comment] = STATE(1312), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_EQ_GT] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [aux_sym_record_entry_token1] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [anon_sym_null] = ACTIONS(1846), + [aux_sym_cmd_identifier_token38] = ACTIONS(1846), + [aux_sym_cmd_identifier_token39] = ACTIONS(1846), + [aux_sym_cmd_identifier_token40] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT] = ACTIONS(1846), + [aux_sym__val_number_decimal_token1] = ACTIONS(1844), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1846), + [aux_sym__val_number_token2] = ACTIONS(1846), + [aux_sym__val_number_token3] = ACTIONS(1846), + [anon_sym_0b] = ACTIONS(1844), + [anon_sym_0o] = ACTIONS(1844), + [anon_sym_0x] = ACTIONS(1844), + [sym_val_date] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym__str_single_quotes] = ACTIONS(1846), + [sym__str_back_ticks] = ACTIONS(1846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1844), + [anon_sym_out_GT] = ACTIONS(1844), + [anon_sym_e_GT] = ACTIONS(1844), + [anon_sym_o_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT] = ACTIONS(1844), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [aux_sym_unquoted_token1] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(247), }, [1313] = { + [sym_cell_path] = STATE(1708), + [sym_path] = STATE(1551), [sym_comment] = STATE(1313), - [sym__newline] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1625), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_EQ_GT] = ACTIONS(1629), - [aux_sym_expr_binary_token1] = ACTIONS(1629), - [aux_sym_expr_binary_token2] = ACTIONS(1629), - [aux_sym_expr_binary_token3] = ACTIONS(1629), - [aux_sym_expr_binary_token4] = ACTIONS(1629), - [aux_sym_expr_binary_token5] = ACTIONS(1629), - [aux_sym_expr_binary_token6] = ACTIONS(1629), - [aux_sym_expr_binary_token7] = ACTIONS(1629), - [aux_sym_expr_binary_token8] = ACTIONS(1629), - [aux_sym_expr_binary_token9] = ACTIONS(1629), - [aux_sym_expr_binary_token10] = ACTIONS(1629), - [aux_sym_expr_binary_token11] = ACTIONS(1629), - [aux_sym_expr_binary_token12] = ACTIONS(1629), - [aux_sym_expr_binary_token13] = ACTIONS(1629), - [aux_sym_expr_binary_token14] = ACTIONS(1629), - [aux_sym_expr_binary_token15] = ACTIONS(1629), - [aux_sym_expr_binary_token16] = ACTIONS(1629), - [aux_sym_expr_binary_token17] = ACTIONS(1629), - [aux_sym_expr_binary_token18] = ACTIONS(1629), - [aux_sym_expr_binary_token19] = ACTIONS(1629), - [aux_sym_expr_binary_token20] = ACTIONS(1629), - [aux_sym_expr_binary_token21] = ACTIONS(1629), - [aux_sym_expr_binary_token22] = ACTIONS(1629), - [aux_sym_expr_binary_token23] = ACTIONS(1629), - [aux_sym_expr_binary_token24] = ACTIONS(1629), - [aux_sym_expr_binary_token25] = ACTIONS(1629), - [aux_sym_expr_binary_token26] = ACTIONS(1629), - [aux_sym_expr_binary_token27] = ACTIONS(1629), - [aux_sym_expr_binary_token28] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [aux_sym_record_entry_token1] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), + [anon_sym_DOT_DOT_LT] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_0b] = ACTIONS(1848), + [anon_sym_0o] = ACTIONS(1848), + [anon_sym_0x] = ACTIONS(1848), + [sym_val_date] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(247), }, [1314] = { + [sym_cell_path] = STATE(1709), + [sym_path] = STATE(1551), [sym_comment] = STATE(1314), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4592), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1854), + [aux_sym_cmd_identifier_token38] = ACTIONS(1854), + [aux_sym_cmd_identifier_token39] = ACTIONS(1854), + [aux_sym_cmd_identifier_token40] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT] = ACTIONS(1854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1852), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1854), + [aux_sym__val_number_token2] = ACTIONS(1854), + [aux_sym__val_number_token3] = ACTIONS(1854), + [anon_sym_0b] = ACTIONS(1852), + [anon_sym_0o] = ACTIONS(1852), + [anon_sym_0x] = ACTIONS(1852), + [sym_val_date] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym__str_single_quotes] = ACTIONS(1854), + [sym__str_back_ticks] = ACTIONS(1854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1852), + [anon_sym_out_GT] = ACTIONS(1852), + [anon_sym_e_GT] = ACTIONS(1852), + [anon_sym_o_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT] = ACTIONS(1852), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [aux_sym_unquoted_token1] = ACTIONS(1852), [anon_sym_POUND] = ACTIONS(247), }, [1315] = { - [sym_cell_path] = STATE(1861), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1712), + [sym_path] = STATE(1551), [sym_comment] = STATE(1315), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1939), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1937), - [aux_sym_ctrl_match_token1] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_null] = ACTIONS(1858), + [aux_sym_cmd_identifier_token38] = ACTIONS(1858), + [aux_sym_cmd_identifier_token39] = ACTIONS(1858), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT] = ACTIONS(1858), + [aux_sym__val_number_decimal_token1] = ACTIONS(1856), + [aux_sym__val_number_decimal_token2] = ACTIONS(1858), + [aux_sym__val_number_decimal_token3] = ACTIONS(1858), + [aux_sym__val_number_decimal_token4] = ACTIONS(1858), + [aux_sym__val_number_token1] = ACTIONS(1858), + [aux_sym__val_number_token2] = ACTIONS(1858), + [aux_sym__val_number_token3] = ACTIONS(1858), + [anon_sym_0b] = ACTIONS(1856), + [anon_sym_0o] = ACTIONS(1856), + [anon_sym_0x] = ACTIONS(1856), + [sym_val_date] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym__str_single_quotes] = ACTIONS(1858), + [sym__str_back_ticks] = ACTIONS(1858), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(247), }, [1316] = { - [sym_cell_path] = STATE(1840), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1714), + [sym_path] = STATE(1551), [sym_comment] = STATE(1316), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [aux_sym_ctrl_match_token1] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_null] = ACTIONS(1862), + [aux_sym_cmd_identifier_token38] = ACTIONS(1862), + [aux_sym_cmd_identifier_token39] = ACTIONS(1862), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), + [anon_sym_DOT_DOT_LT] = ACTIONS(1862), + [aux_sym__val_number_decimal_token1] = ACTIONS(1860), + [aux_sym__val_number_decimal_token2] = ACTIONS(1862), + [aux_sym__val_number_decimal_token3] = ACTIONS(1862), + [aux_sym__val_number_decimal_token4] = ACTIONS(1862), + [aux_sym__val_number_token1] = ACTIONS(1862), + [aux_sym__val_number_token2] = ACTIONS(1862), + [aux_sym__val_number_token3] = ACTIONS(1862), + [anon_sym_0b] = ACTIONS(1860), + [anon_sym_0o] = ACTIONS(1860), + [anon_sym_0x] = ACTIONS(1860), + [sym_val_date] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym__str_single_quotes] = ACTIONS(1862), + [sym__str_back_ticks] = ACTIONS(1862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), + [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(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_unquoted_token1] = ACTIONS(1860), [anon_sym_POUND] = ACTIONS(247), }, [1317] = { + [sym_cell_path] = STATE(1718), + [sym_path] = STATE(1551), [sym_comment] = STATE(1317), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(4682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1864), + [aux_sym__val_number_decimal_token2] = ACTIONS(1866), + [aux_sym__val_number_decimal_token3] = ACTIONS(1866), + [aux_sym__val_number_decimal_token4] = ACTIONS(1866), + [aux_sym__val_number_token1] = ACTIONS(1866), + [aux_sym__val_number_token2] = ACTIONS(1866), + [aux_sym__val_number_token3] = ACTIONS(1866), + [anon_sym_0b] = ACTIONS(1864), + [anon_sym_0o] = ACTIONS(1864), + [anon_sym_0x] = ACTIONS(1864), + [sym_val_date] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym__str_single_quotes] = ACTIONS(1866), + [sym__str_back_ticks] = ACTIONS(1866), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1866), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1864), [anon_sym_POUND] = ACTIONS(247), }, [1318] = { - [sym_cell_path] = STATE(1904), - [sym_path] = STATE(1205), + [sym_cell_path] = STATE(1719), + [sym_path] = STATE(1551), [sym_comment] = STATE(1318), - [aux_sym_cell_path_repeat1] = STATE(1074), - [sym__newline] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_err_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_GT_PIPE] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [aux_sym_expr_binary_token1] = ACTIONS(1688), - [aux_sym_expr_binary_token2] = ACTIONS(1688), - [aux_sym_expr_binary_token3] = ACTIONS(1688), - [aux_sym_expr_binary_token4] = ACTIONS(1688), - [aux_sym_expr_binary_token5] = ACTIONS(1688), - [aux_sym_expr_binary_token6] = ACTIONS(1688), - [aux_sym_expr_binary_token7] = ACTIONS(1688), - [aux_sym_expr_binary_token8] = ACTIONS(1688), - [aux_sym_expr_binary_token9] = ACTIONS(1688), - [aux_sym_expr_binary_token10] = ACTIONS(1688), - [aux_sym_expr_binary_token11] = ACTIONS(1688), - [aux_sym_expr_binary_token12] = ACTIONS(1688), - [aux_sym_expr_binary_token13] = ACTIONS(1688), - [aux_sym_expr_binary_token14] = ACTIONS(1688), - [aux_sym_expr_binary_token15] = ACTIONS(1688), - [aux_sym_expr_binary_token16] = ACTIONS(1688), - [aux_sym_expr_binary_token17] = ACTIONS(1688), - [aux_sym_expr_binary_token18] = ACTIONS(1688), - [aux_sym_expr_binary_token19] = ACTIONS(1688), - [aux_sym_expr_binary_token20] = ACTIONS(1688), - [aux_sym_expr_binary_token21] = ACTIONS(1688), - [aux_sym_expr_binary_token22] = ACTIONS(1688), - [aux_sym_expr_binary_token23] = ACTIONS(1688), - [aux_sym_expr_binary_token24] = ACTIONS(1688), - [aux_sym_expr_binary_token25] = ACTIONS(1688), - [aux_sym_expr_binary_token26] = ACTIONS(1688), - [aux_sym_expr_binary_token27] = ACTIONS(1688), - [aux_sym_expr_binary_token28] = ACTIONS(1688), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(3880), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [anon_sym_err_GT] = ACTIONS(1686), - [anon_sym_out_GT] = ACTIONS(1686), - [anon_sym_e_GT] = ACTIONS(1686), - [anon_sym_o_GT] = ACTIONS(1686), - [anon_sym_err_PLUSout_GT] = ACTIONS(1686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), - [anon_sym_o_PLUSe_GT] = ACTIONS(1686), - [anon_sym_e_PLUSo_GT] = ACTIONS(1686), - [anon_sym_err_GT_GT] = ACTIONS(1688), - [anon_sym_out_GT_GT] = ACTIONS(1688), - [anon_sym_e_GT_GT] = ACTIONS(1688), - [anon_sym_o_GT_GT] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [anon_sym_null] = ACTIONS(1870), + [aux_sym_cmd_identifier_token38] = ACTIONS(1870), + [aux_sym_cmd_identifier_token39] = ACTIONS(1870), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1870), + [anon_sym_DOT_DOT_LT] = ACTIONS(1870), + [aux_sym__val_number_decimal_token1] = ACTIONS(1868), + [aux_sym__val_number_decimal_token2] = ACTIONS(1870), + [aux_sym__val_number_decimal_token3] = ACTIONS(1870), + [aux_sym__val_number_decimal_token4] = ACTIONS(1870), + [aux_sym__val_number_token1] = ACTIONS(1870), + [aux_sym__val_number_token2] = ACTIONS(1870), + [aux_sym__val_number_token3] = ACTIONS(1870), + [anon_sym_0b] = ACTIONS(1868), + [anon_sym_0o] = ACTIONS(1868), + [anon_sym_0x] = ACTIONS(1868), + [sym_val_date] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym__str_single_quotes] = ACTIONS(1870), + [sym__str_back_ticks] = ACTIONS(1870), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1870), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1870), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(247), }, [1319] = { + [sym_cell_path] = STATE(1720), + [sym_path] = STATE(1551), [sym_comment] = STATE(1319), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [anon_sym_null] = ACTIONS(2139), - [aux_sym_cmd_identifier_token38] = ACTIONS(2139), - [aux_sym_cmd_identifier_token39] = ACTIONS(2139), - [aux_sym_cmd_identifier_token40] = ACTIONS(2139), - [sym__newline] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_err_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_GT_PIPE] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2137), - [aux_sym_ctrl_match_token1] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2137), - [anon_sym_DOT_DOT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2137), - [anon_sym_DOT_DOT_LT] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2137), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [anon_sym_0b] = ACTIONS(2137), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), - [anon_sym_err_GT] = ACTIONS(2137), - [anon_sym_out_GT] = ACTIONS(2137), - [anon_sym_e_GT] = ACTIONS(2137), - [anon_sym_o_GT] = ACTIONS(2137), - [anon_sym_err_PLUSout_GT] = ACTIONS(2137), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2137), - [anon_sym_o_PLUSe_GT] = ACTIONS(2137), - [anon_sym_e_PLUSo_GT] = ACTIONS(2137), - [anon_sym_err_GT_GT] = ACTIONS(2139), - [anon_sym_out_GT_GT] = ACTIONS(2139), - [anon_sym_e_GT_GT] = ACTIONS(2139), - [anon_sym_o_GT_GT] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), - [aux_sym_unquoted_token1] = ACTIONS(2137), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1874), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(247), }, [1320] = { - [sym_cell_path] = STATE(1906), - [sym_path] = STATE(1205), + [sym_cell_path] = STATE(1721), + [sym_path] = STATE(1551), [sym_comment] = STATE(1320), - [aux_sym_cell_path_repeat1] = STATE(1074), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [aux_sym_expr_binary_token1] = ACTIONS(1629), - [aux_sym_expr_binary_token2] = ACTIONS(1629), - [aux_sym_expr_binary_token3] = ACTIONS(1629), - [aux_sym_expr_binary_token4] = ACTIONS(1629), - [aux_sym_expr_binary_token5] = ACTIONS(1629), - [aux_sym_expr_binary_token6] = ACTIONS(1629), - [aux_sym_expr_binary_token7] = ACTIONS(1629), - [aux_sym_expr_binary_token8] = ACTIONS(1629), - [aux_sym_expr_binary_token9] = ACTIONS(1629), - [aux_sym_expr_binary_token10] = ACTIONS(1629), - [aux_sym_expr_binary_token11] = ACTIONS(1629), - [aux_sym_expr_binary_token12] = ACTIONS(1629), - [aux_sym_expr_binary_token13] = ACTIONS(1629), - [aux_sym_expr_binary_token14] = ACTIONS(1629), - [aux_sym_expr_binary_token15] = ACTIONS(1629), - [aux_sym_expr_binary_token16] = ACTIONS(1629), - [aux_sym_expr_binary_token17] = ACTIONS(1629), - [aux_sym_expr_binary_token18] = ACTIONS(1629), - [aux_sym_expr_binary_token19] = ACTIONS(1629), - [aux_sym_expr_binary_token20] = ACTIONS(1629), - [aux_sym_expr_binary_token21] = ACTIONS(1629), - [aux_sym_expr_binary_token22] = ACTIONS(1629), - [aux_sym_expr_binary_token23] = ACTIONS(1629), - [aux_sym_expr_binary_token24] = ACTIONS(1629), - [aux_sym_expr_binary_token25] = ACTIONS(1629), - [aux_sym_expr_binary_token26] = ACTIONS(1629), - [aux_sym_expr_binary_token27] = ACTIONS(1629), - [aux_sym_expr_binary_token28] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(3880), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), + [aux_sym_cmd_identifier_token38] = ACTIONS(1878), + [aux_sym_cmd_identifier_token39] = ACTIONS(1878), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1876), + [aux_sym__val_number_decimal_token2] = ACTIONS(1878), + [aux_sym__val_number_decimal_token3] = ACTIONS(1878), + [aux_sym__val_number_decimal_token4] = ACTIONS(1878), + [aux_sym__val_number_token1] = ACTIONS(1878), + [aux_sym__val_number_token2] = ACTIONS(1878), + [aux_sym__val_number_token3] = ACTIONS(1878), + [anon_sym_0b] = ACTIONS(1876), + [anon_sym_0o] = ACTIONS(1876), + [anon_sym_0x] = ACTIONS(1876), + [sym_val_date] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym__str_single_quotes] = ACTIONS(1878), + [sym__str_back_ticks] = ACTIONS(1878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1878), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1876), [anon_sym_POUND] = ACTIONS(247), }, [1321] = { - [sym_cell_path] = STATE(1533), - [sym_path] = STATE(1206), + [sym_cell_path] = STATE(1722), + [sym_path] = STATE(1551), [sym_comment] = STATE(1321), - [aux_sym_cell_path_repeat1] = STATE(1065), - [sym__newline] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1629), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(3894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_null] = ACTIONS(1882), + [aux_sym_cmd_identifier_token38] = ACTIONS(1882), + [aux_sym_cmd_identifier_token39] = ACTIONS(1882), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_decimal_token4] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [anon_sym_0b] = ACTIONS(1880), + [anon_sym_0o] = ACTIONS(1880), + [anon_sym_0x] = ACTIONS(1880), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(247), }, [1322] = { - [sym_cell_path] = STATE(1870), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1724), + [sym_path] = STATE(1551), [sym_comment] = STATE(1322), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1967), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1965), - [aux_sym_ctrl_match_token1] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1886), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1884), + [aux_sym__val_number_decimal_token2] = ACTIONS(1886), + [aux_sym__val_number_decimal_token3] = ACTIONS(1886), + [aux_sym__val_number_decimal_token4] = ACTIONS(1886), + [aux_sym__val_number_token1] = ACTIONS(1886), + [aux_sym__val_number_token2] = ACTIONS(1886), + [aux_sym__val_number_token3] = ACTIONS(1886), + [anon_sym_0b] = ACTIONS(1884), + [anon_sym_0o] = ACTIONS(1884), + [anon_sym_0x] = ACTIONS(1884), + [sym_val_date] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym__str_single_quotes] = ACTIONS(1886), + [sym__str_back_ticks] = ACTIONS(1886), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(247), }, [1323] = { + [sym_cell_path] = STATE(1726), + [sym_path] = STATE(1551), [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4684), - [aux_sym__immediate_decimal_token2] = ACTIONS(4686), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [sym__newline] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_err_GT_PIPE] = ACTIONS(1890), + [anon_sym_out_GT_PIPE] = ACTIONS(1890), + [anon_sym_e_GT_PIPE] = ACTIONS(1890), + [anon_sym_o_GT_PIPE] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1888), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [anon_sym_0b] = ACTIONS(1888), + [anon_sym_0o] = ACTIONS(1888), + [anon_sym_0x] = ACTIONS(1888), + [sym_val_date] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1890), + [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(1890), + [anon_sym_out_GT_GT] = ACTIONS(1890), + [anon_sym_e_GT_GT] = ACTIONS(1890), + [anon_sym_o_GT_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1890), + [aux_sym_unquoted_token1] = ACTIONS(1888), [anon_sym_POUND] = ACTIONS(247), }, [1324] = { + [sym_cell_path] = STATE(1727), + [sym_path] = STATE(1551), [sym_comment] = STATE(1324), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token38] = ACTIONS(2067), - [aux_sym_cmd_identifier_token39] = ACTIONS(2067), - [aux_sym_cmd_identifier_token40] = ACTIONS(2067), - [sym__newline] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_err_GT_PIPE] = ACTIONS(2067), - [anon_sym_out_GT_PIPE] = ACTIONS(2067), - [anon_sym_e_GT_PIPE] = ACTIONS(2067), - [anon_sym_o_GT_PIPE] = ACTIONS(2067), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2067), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2067), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2067), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2061), - [aux_sym_ctrl_match_token1] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_DOT_DOT2] = ACTIONS(4688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), - [anon_sym_DOT_DOT_LT] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4690), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4690), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [aux_sym__val_number_decimal_token3] = ACTIONS(2067), - [aux_sym__val_number_decimal_token4] = ACTIONS(2067), - [aux_sym__val_number_token1] = ACTIONS(2067), - [aux_sym__val_number_token2] = ACTIONS(2067), - [aux_sym__val_number_token3] = ACTIONS(2067), - [anon_sym_0b] = ACTIONS(2061), - [anon_sym_0o] = ACTIONS(2061), - [anon_sym_0x] = ACTIONS(2061), - [sym_val_date] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [sym__str_single_quotes] = ACTIONS(2067), - [sym__str_back_ticks] = ACTIONS(2067), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2067), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2067), - [anon_sym_err_GT] = ACTIONS(2061), - [anon_sym_out_GT] = ACTIONS(2061), - [anon_sym_e_GT] = ACTIONS(2061), - [anon_sym_o_GT] = ACTIONS(2061), - [anon_sym_err_PLUSout_GT] = ACTIONS(2061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2061), - [anon_sym_o_PLUSe_GT] = ACTIONS(2061), - [anon_sym_e_PLUSo_GT] = ACTIONS(2061), - [anon_sym_err_GT_GT] = ACTIONS(2067), - [anon_sym_out_GT_GT] = ACTIONS(2067), - [anon_sym_e_GT_GT] = ACTIONS(2067), - [anon_sym_o_GT_GT] = ACTIONS(2067), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2067), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2067), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2067), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2067), - [aux_sym_unquoted_token1] = ACTIONS(2061), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token38] = ACTIONS(1894), + [aux_sym_cmd_identifier_token39] = ACTIONS(1894), + [aux_sym_cmd_identifier_token40] = ACTIONS(1894), + [sym__newline] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_err_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_GT_PIPE] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1894), + [anon_sym_DOT_DOT_LT] = ACTIONS(1894), + [aux_sym__val_number_decimal_token1] = ACTIONS(1892), + [aux_sym__val_number_decimal_token2] = ACTIONS(1894), + [aux_sym__val_number_decimal_token3] = ACTIONS(1894), + [aux_sym__val_number_decimal_token4] = ACTIONS(1894), + [aux_sym__val_number_token1] = ACTIONS(1894), + [aux_sym__val_number_token2] = ACTIONS(1894), + [aux_sym__val_number_token3] = ACTIONS(1894), + [anon_sym_0b] = ACTIONS(1892), + [anon_sym_0o] = ACTIONS(1892), + [anon_sym_0x] = ACTIONS(1892), + [sym_val_date] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1894), + [sym__str_back_ticks] = ACTIONS(1894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1894), + [anon_sym_err_GT] = ACTIONS(1892), + [anon_sym_out_GT] = ACTIONS(1892), + [anon_sym_e_GT] = ACTIONS(1892), + [anon_sym_o_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT] = ACTIONS(1892), + [anon_sym_err_GT_GT] = ACTIONS(1894), + [anon_sym_out_GT_GT] = ACTIONS(1894), + [anon_sym_e_GT_GT] = ACTIONS(1894), + [anon_sym_o_GT_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), + [aux_sym_unquoted_token1] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(247), }, [1325] = { + [sym_cell_path] = STATE(1728), + [sym_path] = STATE(1551), [sym_comment] = STATE(1325), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4692), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_null] = ACTIONS(1898), + [aux_sym_cmd_identifier_token38] = ACTIONS(1898), + [aux_sym_cmd_identifier_token39] = ACTIONS(1898), + [aux_sym_cmd_identifier_token40] = ACTIONS(1898), + [sym__newline] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_err_GT_PIPE] = ACTIONS(1898), + [anon_sym_out_GT_PIPE] = ACTIONS(1898), + [anon_sym_e_GT_PIPE] = ACTIONS(1898), + [anon_sym_o_GT_PIPE] = ACTIONS(1898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1898), + [anon_sym_DOT_DOT_LT] = ACTIONS(1898), + [aux_sym__val_number_decimal_token1] = ACTIONS(1896), + [aux_sym__val_number_decimal_token2] = ACTIONS(1898), + [aux_sym__val_number_decimal_token3] = ACTIONS(1898), + [aux_sym__val_number_decimal_token4] = ACTIONS(1898), + [aux_sym__val_number_token1] = ACTIONS(1898), + [aux_sym__val_number_token2] = ACTIONS(1898), + [aux_sym__val_number_token3] = ACTIONS(1898), + [anon_sym_0b] = ACTIONS(1896), + [anon_sym_0o] = ACTIONS(1896), + [anon_sym_0x] = ACTIONS(1896), + [sym_val_date] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [sym__str_single_quotes] = ACTIONS(1898), + [sym__str_back_ticks] = ACTIONS(1898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1896), + [anon_sym_out_GT] = ACTIONS(1896), + [anon_sym_e_GT] = ACTIONS(1896), + [anon_sym_o_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT] = ACTIONS(1896), + [anon_sym_err_GT_GT] = ACTIONS(1898), + [anon_sym_out_GT_GT] = ACTIONS(1898), + [anon_sym_e_GT_GT] = ACTIONS(1898), + [anon_sym_o_GT_GT] = ACTIONS(1898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1898), + [aux_sym_unquoted_token1] = ACTIONS(1896), [anon_sym_POUND] = ACTIONS(247), }, [1326] = { + [sym_cell_path] = STATE(1730), + [sym_path] = STATE(1551), [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4696), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_null] = ACTIONS(1902), + [aux_sym_cmd_identifier_token38] = ACTIONS(1902), + [aux_sym_cmd_identifier_token39] = ACTIONS(1902), + [aux_sym_cmd_identifier_token40] = ACTIONS(1902), + [sym__newline] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_err_GT_PIPE] = ACTIONS(1902), + [anon_sym_out_GT_PIPE] = ACTIONS(1902), + [anon_sym_e_GT_PIPE] = ACTIONS(1902), + [anon_sym_o_GT_PIPE] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1900), + [aux_sym__val_number_decimal_token2] = ACTIONS(1902), + [aux_sym__val_number_decimal_token3] = ACTIONS(1902), + [aux_sym__val_number_decimal_token4] = ACTIONS(1902), + [aux_sym__val_number_token1] = ACTIONS(1902), + [aux_sym__val_number_token2] = ACTIONS(1902), + [aux_sym__val_number_token3] = ACTIONS(1902), + [anon_sym_0b] = ACTIONS(1900), + [anon_sym_0o] = ACTIONS(1900), + [anon_sym_0x] = ACTIONS(1900), + [sym_val_date] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym__str_single_quotes] = ACTIONS(1902), + [sym__str_back_ticks] = ACTIONS(1902), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1902), + [anon_sym_err_GT] = ACTIONS(1900), + [anon_sym_out_GT] = ACTIONS(1900), + [anon_sym_e_GT] = ACTIONS(1900), + [anon_sym_o_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT] = ACTIONS(1900), + [anon_sym_err_GT_GT] = ACTIONS(1902), + [anon_sym_out_GT_GT] = ACTIONS(1902), + [anon_sym_e_GT_GT] = ACTIONS(1902), + [anon_sym_o_GT_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1902), + [aux_sym_unquoted_token1] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(247), }, [1327] = { + [sym_cell_path] = STATE(1731), + [sym_path] = STATE(1551), [sym_comment] = STATE(1327), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4656), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token38] = ACTIONS(1906), + [aux_sym_cmd_identifier_token39] = ACTIONS(1906), + [aux_sym_cmd_identifier_token40] = ACTIONS(1906), + [sym__newline] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_err_GT_PIPE] = ACTIONS(1906), + [anon_sym_out_GT_PIPE] = ACTIONS(1906), + [anon_sym_e_GT_PIPE] = ACTIONS(1906), + [anon_sym_o_GT_PIPE] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1906), + [anon_sym_DOT_DOT_LT] = ACTIONS(1906), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1906), + [aux_sym__val_number_decimal_token4] = ACTIONS(1906), + [aux_sym__val_number_token1] = ACTIONS(1906), + [aux_sym__val_number_token2] = ACTIONS(1906), + [aux_sym__val_number_token3] = ACTIONS(1906), + [anon_sym_0b] = ACTIONS(1904), + [anon_sym_0o] = ACTIONS(1904), + [anon_sym_0x] = ACTIONS(1904), + [sym_val_date] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym__str_single_quotes] = ACTIONS(1906), + [sym__str_back_ticks] = ACTIONS(1906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1906), + [anon_sym_err_GT] = ACTIONS(1904), + [anon_sym_out_GT] = ACTIONS(1904), + [anon_sym_e_GT] = ACTIONS(1904), + [anon_sym_o_GT] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT] = ACTIONS(1904), + [anon_sym_err_GT_GT] = ACTIONS(1906), + [anon_sym_out_GT_GT] = ACTIONS(1906), + [anon_sym_e_GT_GT] = ACTIONS(1906), + [anon_sym_o_GT_GT] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1906), + [aux_sym_unquoted_token1] = ACTIONS(1904), [anon_sym_POUND] = ACTIONS(247), }, [1328] = { [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(1519), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [aux_sym__immediate_decimal_token1] = ACTIONS(4698), - [aux_sym__immediate_decimal_token2] = ACTIONS(4700), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [ts_builtin_sym_end] = 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_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4650), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4652), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1329] = { + [sym_cell_path] = STATE(1746), + [sym_path] = STATE(1551), [sym_comment] = STATE(1329), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_EQ_GT] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [aux_sym_record_entry_token1] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [anon_sym_null] = ACTIONS(1830), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1830), + [aux_sym_cmd_identifier_token40] = ACTIONS(1830), + [sym__newline] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_err_GT_PIPE] = ACTIONS(1830), + [anon_sym_out_GT_PIPE] = ACTIONS(1830), + [anon_sym_e_GT_PIPE] = ACTIONS(1830), + [anon_sym_o_GT_PIPE] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), + [anon_sym_DOT_DOT_LT] = ACTIONS(1830), + [aux_sym__val_number_decimal_token1] = ACTIONS(1828), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1830), + [aux_sym__val_number_decimal_token4] = ACTIONS(1830), + [aux_sym__val_number_token1] = ACTIONS(1830), + [aux_sym__val_number_token2] = ACTIONS(1830), + [aux_sym__val_number_token3] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1828), + [anon_sym_0x] = ACTIONS(1828), + [sym_val_date] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym__str_single_quotes] = ACTIONS(1830), + [sym__str_back_ticks] = ACTIONS(1830), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1830), + [anon_sym_err_GT] = ACTIONS(1828), + [anon_sym_out_GT] = ACTIONS(1828), + [anon_sym_e_GT] = ACTIONS(1828), + [anon_sym_o_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT] = ACTIONS(1828), + [anon_sym_err_GT_GT] = ACTIONS(1830), + [anon_sym_out_GT_GT] = ACTIONS(1830), + [anon_sym_e_GT_GT] = ACTIONS(1830), + [anon_sym_o_GT_GT] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1830), + [aux_sym_unquoted_token1] = ACTIONS(1828), [anon_sym_POUND] = ACTIONS(247), }, [1330] = { [sym_comment] = STATE(1330), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4656), + [anon_sym_DASH_EQ] = ACTIONS(4656), + [anon_sym_STAR_EQ] = ACTIONS(4656), + [anon_sym_SLASH_EQ] = ACTIONS(4656), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4656), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [aux_sym_expr_binary_token1] = ACTIONS(1072), + [aux_sym_expr_binary_token2] = ACTIONS(1072), + [aux_sym_expr_binary_token3] = ACTIONS(1072), + [aux_sym_expr_binary_token4] = ACTIONS(1072), + [aux_sym_expr_binary_token5] = ACTIONS(1072), + [aux_sym_expr_binary_token6] = ACTIONS(1072), + [aux_sym_expr_binary_token7] = ACTIONS(1072), + [aux_sym_expr_binary_token8] = ACTIONS(1072), + [aux_sym_expr_binary_token9] = ACTIONS(1072), + [aux_sym_expr_binary_token10] = ACTIONS(1072), + [aux_sym_expr_binary_token11] = ACTIONS(1072), + [aux_sym_expr_binary_token12] = ACTIONS(1072), + [aux_sym_expr_binary_token13] = ACTIONS(1072), + [aux_sym_expr_binary_token14] = ACTIONS(1072), + [aux_sym_expr_binary_token15] = ACTIONS(1072), + [aux_sym_expr_binary_token16] = ACTIONS(1072), + [aux_sym_expr_binary_token17] = ACTIONS(1072), + [aux_sym_expr_binary_token18] = ACTIONS(1072), + [aux_sym_expr_binary_token19] = ACTIONS(1072), + [aux_sym_expr_binary_token20] = ACTIONS(1072), + [aux_sym_expr_binary_token21] = ACTIONS(1072), + [aux_sym_expr_binary_token22] = ACTIONS(1072), + [aux_sym_expr_binary_token23] = ACTIONS(1072), + [aux_sym_expr_binary_token24] = ACTIONS(1072), + [aux_sym_expr_binary_token25] = ACTIONS(1072), + [aux_sym_expr_binary_token26] = ACTIONS(1072), + [aux_sym_expr_binary_token27] = ACTIONS(1072), + [aux_sym_expr_binary_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(4658), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4660), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4660), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(247), }, [1331] = { - [sym_cell_path] = STATE(1484), - [sym_path] = STATE(1206), [sym_comment] = STATE(1331), - [aux_sym_cell_path_repeat1] = STATE(1065), - [sym__newline] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_err_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_GT_PIPE] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [aux_sym_ctrl_match_token1] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1688), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1688), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(3894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [anon_sym_err_GT] = ACTIONS(1686), - [anon_sym_out_GT] = ACTIONS(1686), - [anon_sym_e_GT] = ACTIONS(1686), - [anon_sym_o_GT] = ACTIONS(1686), - [anon_sym_err_PLUSout_GT] = ACTIONS(1686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), - [anon_sym_o_PLUSe_GT] = ACTIONS(1686), - [anon_sym_e_PLUSo_GT] = ACTIONS(1686), - [anon_sym_err_GT_GT] = ACTIONS(1688), - [anon_sym_out_GT_GT] = ACTIONS(1688), - [anon_sym_e_GT_GT] = ACTIONS(1688), - [anon_sym_o_GT_GT] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4662), + [aux_sym__immediate_decimal_token2] = ACTIONS(4664), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1332] = { + [sym_cell_path] = STATE(1790), + [sym_path] = STATE(1551), [sym_comment] = STATE(1332), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_cell_path_repeat1] = STATE(1383), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [anon_sym_null] = ACTIONS(1834), + [aux_sym_cmd_identifier_token38] = ACTIONS(1834), + [aux_sym_cmd_identifier_token39] = ACTIONS(1834), + [aux_sym_cmd_identifier_token40] = ACTIONS(1834), + [sym__newline] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_err_GT_PIPE] = ACTIONS(1834), + [anon_sym_out_GT_PIPE] = ACTIONS(1834), + [anon_sym_e_GT_PIPE] = ACTIONS(1834), + [anon_sym_o_GT_PIPE] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1834), + [anon_sym_DOT_DOT_LT] = ACTIONS(1834), + [aux_sym__val_number_decimal_token1] = ACTIONS(1832), + [aux_sym__val_number_decimal_token2] = ACTIONS(1834), + [aux_sym__val_number_decimal_token3] = ACTIONS(1834), + [aux_sym__val_number_decimal_token4] = ACTIONS(1834), + [aux_sym__val_number_token1] = ACTIONS(1834), + [aux_sym__val_number_token2] = ACTIONS(1834), + [aux_sym__val_number_token3] = ACTIONS(1834), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0o] = ACTIONS(1832), + [anon_sym_0x] = ACTIONS(1832), + [sym_val_date] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym__str_single_quotes] = ACTIONS(1834), + [sym__str_back_ticks] = ACTIONS(1834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), + [anon_sym_err_GT] = ACTIONS(1832), + [anon_sym_out_GT] = ACTIONS(1832), + [anon_sym_e_GT] = ACTIONS(1832), + [anon_sym_o_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT] = ACTIONS(1832), + [anon_sym_err_GT_GT] = ACTIONS(1834), + [anon_sym_out_GT_GT] = ACTIONS(1834), + [anon_sym_e_GT_GT] = ACTIONS(1834), + [anon_sym_o_GT_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1834), + [aux_sym_unquoted_token1] = ACTIONS(1832), [anon_sym_POUND] = ACTIONS(247), }, [1333] = { - [sym_cell_path] = STATE(1859), - [sym_path] = STATE(1599), [sym_comment] = STATE(1333), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1892), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [aux_sym_ctrl_match_token1] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT2] = ACTIONS(4666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), + [anon_sym_DOT_DOT_LT] = ACTIONS(1778), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [aux_sym_unquoted_token2] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(247), }, [1334] = { [sym_comment] = STATE(1334), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4636), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4670), + [aux_sym__immediate_decimal_token2] = ACTIONS(4672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, [1335] = { [sym_comment] = STATE(1335), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4676), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1336] = { [sym_comment] = STATE(1336), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4702), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [sym__newline] = ACTIONS(1554), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4678), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1337] = { + [sym_cell_path] = STATE(1909), + [sym_path] = STATE(1603), [sym_comment] = STATE(1337), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token38] = ACTIONS(1894), + [aux_sym_cmd_identifier_token39] = ACTIONS(1894), + [aux_sym_cmd_identifier_token40] = ACTIONS(1894), + [sym__newline] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_err_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_GT_PIPE] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1894), + [anon_sym_DOT_DOT_LT] = ACTIONS(1894), + [aux_sym__val_number_decimal_token1] = ACTIONS(1892), + [aux_sym__val_number_decimal_token2] = ACTIONS(1894), + [aux_sym__val_number_decimal_token3] = ACTIONS(1894), + [aux_sym__val_number_decimal_token4] = ACTIONS(1894), + [aux_sym__val_number_token1] = ACTIONS(1894), + [aux_sym__val_number_token2] = ACTIONS(1894), + [aux_sym__val_number_token3] = ACTIONS(1894), + [anon_sym_0b] = ACTIONS(1892), + [anon_sym_0o] = ACTIONS(1892), + [anon_sym_0x] = ACTIONS(1892), + [sym_val_date] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1894), + [sym__str_back_ticks] = ACTIONS(1894), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1894), + [anon_sym_err_GT] = ACTIONS(1892), + [anon_sym_out_GT] = ACTIONS(1892), + [anon_sym_e_GT] = ACTIONS(1892), + [anon_sym_o_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT] = ACTIONS(1892), + [anon_sym_err_GT_GT] = ACTIONS(1894), + [anon_sym_out_GT_GT] = ACTIONS(1894), + [anon_sym_e_GT_GT] = ACTIONS(1894), + [anon_sym_o_GT_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), + [aux_sym_unquoted_token1] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(247), }, [1338] = { - [sym_cell_path] = STATE(1831), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1852), + [sym_path] = STATE(1603), [sym_comment] = STATE(1338), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [aux_sym_ctrl_match_token1] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1834), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [anon_sym_null] = ACTIONS(1834), + [aux_sym_cmd_identifier_token38] = ACTIONS(1834), + [aux_sym_cmd_identifier_token39] = ACTIONS(1834), + [aux_sym_cmd_identifier_token40] = ACTIONS(1834), + [sym__newline] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_err_GT_PIPE] = ACTIONS(1834), + [anon_sym_out_GT_PIPE] = ACTIONS(1834), + [anon_sym_e_GT_PIPE] = ACTIONS(1834), + [anon_sym_o_GT_PIPE] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1834), + [anon_sym_DOT_DOT_LT] = ACTIONS(1834), + [aux_sym__val_number_decimal_token1] = ACTIONS(1832), + [aux_sym__val_number_decimal_token2] = ACTIONS(1834), + [aux_sym__val_number_decimal_token3] = ACTIONS(1834), + [aux_sym__val_number_decimal_token4] = ACTIONS(1834), + [aux_sym__val_number_token1] = ACTIONS(1834), + [aux_sym__val_number_token2] = ACTIONS(1834), + [aux_sym__val_number_token3] = ACTIONS(1834), + [anon_sym_0b] = ACTIONS(1832), + [anon_sym_0o] = ACTIONS(1832), + [anon_sym_0x] = ACTIONS(1832), + [sym_val_date] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym__str_single_quotes] = ACTIONS(1834), + [sym__str_back_ticks] = ACTIONS(1834), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), + [anon_sym_err_GT] = ACTIONS(1832), + [anon_sym_out_GT] = ACTIONS(1832), + [anon_sym_e_GT] = ACTIONS(1832), + [anon_sym_o_GT] = ACTIONS(1832), + [anon_sym_err_PLUSout_GT] = ACTIONS(1832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1832), + [anon_sym_o_PLUSe_GT] = ACTIONS(1832), + [anon_sym_e_PLUSo_GT] = ACTIONS(1832), + [anon_sym_err_GT_GT] = ACTIONS(1834), + [anon_sym_out_GT_GT] = ACTIONS(1834), + [anon_sym_e_GT_GT] = ACTIONS(1834), + [anon_sym_o_GT_GT] = ACTIONS(1834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1834), + [aux_sym_unquoted_token1] = ACTIONS(1832), [anon_sym_POUND] = ACTIONS(247), }, [1339] = { [sym_comment] = STATE(1339), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [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_RBRACE] = ACTIONS(1556), + [anon_sym_EQ_GT] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [aux_sym_record_entry_token1] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), }, [1340] = { [sym_comment] = STATE(1340), - [anon_sym_true] = ACTIONS(4704), - [anon_sym_false] = ACTIONS(4704), - [anon_sym_null] = ACTIONS(4704), - [aux_sym_cmd_identifier_token38] = ACTIONS(4704), - [aux_sym_cmd_identifier_token39] = ACTIONS(4704), - [aux_sym_cmd_identifier_token40] = ACTIONS(4704), - [sym__newline] = ACTIONS(4704), - [anon_sym_SEMI] = ACTIONS(4704), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_err_GT_PIPE] = ACTIONS(4704), - [anon_sym_out_GT_PIPE] = ACTIONS(4704), - [anon_sym_e_GT_PIPE] = ACTIONS(4704), - [anon_sym_o_GT_PIPE] = ACTIONS(4704), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4704), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4704), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4704), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4704), - [anon_sym_LPAREN] = ACTIONS(4704), - [anon_sym_RPAREN] = ACTIONS(4704), - [anon_sym_DOLLAR] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4706), - [aux_sym_ctrl_match_token1] = ACTIONS(4704), - [anon_sym_RBRACE] = ACTIONS(4704), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_DOT_DOT2] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4706), - [anon_sym_DOT_DOT_LT] = ACTIONS(4706), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), - [aux_sym__val_number_decimal_token1] = ACTIONS(4706), - [aux_sym__val_number_decimal_token2] = ACTIONS(4704), - [aux_sym__val_number_decimal_token3] = ACTIONS(4704), - [aux_sym__val_number_decimal_token4] = ACTIONS(4704), - [aux_sym__val_number_token1] = ACTIONS(4704), - [aux_sym__val_number_token2] = ACTIONS(4704), - [aux_sym__val_number_token3] = ACTIONS(4704), - [anon_sym_0b] = ACTIONS(4706), - [anon_sym_0o] = ACTIONS(4706), - [anon_sym_0x] = ACTIONS(4706), - [sym_val_date] = ACTIONS(4704), - [anon_sym_DQUOTE] = ACTIONS(4704), - [sym__str_single_quotes] = ACTIONS(4704), - [sym__str_back_ticks] = ACTIONS(4704), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4704), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4704), - [anon_sym_err_GT] = ACTIONS(4706), - [anon_sym_out_GT] = ACTIONS(4706), - [anon_sym_e_GT] = ACTIONS(4706), - [anon_sym_o_GT] = ACTIONS(4706), - [anon_sym_err_PLUSout_GT] = ACTIONS(4706), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4706), - [anon_sym_o_PLUSe_GT] = ACTIONS(4706), - [anon_sym_e_PLUSo_GT] = ACTIONS(4706), - [anon_sym_err_GT_GT] = ACTIONS(4704), - [anon_sym_out_GT_GT] = ACTIONS(4704), - [anon_sym_e_GT_GT] = ACTIONS(4704), - [anon_sym_o_GT_GT] = ACTIONS(4704), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4704), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4704), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4704), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4704), - [aux_sym_unquoted_token1] = ACTIONS(4706), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4626), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1341] = { [sym_comment] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1058), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [aux_sym_ctrl_match_token1] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [anon_sym_0b] = ACTIONS(1056), - [anon_sym_0o] = ACTIONS(1056), - [anon_sym_0x] = ACTIONS(1056), - [sym_val_date] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [aux_sym_unquoted_token1] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4682), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [1342] = { - [sym_cell_path] = STATE(1844), - [sym_path] = STATE(1599), [sym_comment] = STATE(1342), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1837), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [aux_sym_ctrl_match_token1] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token41] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1655), + [aux_sym_expr_binary_token1] = ACTIONS(1655), + [aux_sym_expr_binary_token2] = ACTIONS(1655), + [aux_sym_expr_binary_token3] = ACTIONS(1655), + [aux_sym_expr_binary_token4] = ACTIONS(1655), + [aux_sym_expr_binary_token5] = ACTIONS(1655), + [aux_sym_expr_binary_token6] = ACTIONS(1655), + [aux_sym_expr_binary_token7] = ACTIONS(1655), + [aux_sym_expr_binary_token8] = ACTIONS(1655), + [aux_sym_expr_binary_token9] = ACTIONS(1655), + [aux_sym_expr_binary_token10] = ACTIONS(1655), + [aux_sym_expr_binary_token11] = ACTIONS(1655), + [aux_sym_expr_binary_token12] = ACTIONS(1655), + [aux_sym_expr_binary_token13] = ACTIONS(1655), + [aux_sym_expr_binary_token14] = ACTIONS(1655), + [aux_sym_expr_binary_token15] = ACTIONS(1655), + [aux_sym_expr_binary_token16] = ACTIONS(1655), + [aux_sym_expr_binary_token17] = ACTIONS(1655), + [aux_sym_expr_binary_token18] = ACTIONS(1655), + [aux_sym_expr_binary_token19] = ACTIONS(1655), + [aux_sym_expr_binary_token20] = ACTIONS(1655), + [aux_sym_expr_binary_token21] = ACTIONS(1655), + [aux_sym_expr_binary_token22] = ACTIONS(1655), + [aux_sym_expr_binary_token23] = ACTIONS(1655), + [aux_sym_expr_binary_token24] = ACTIONS(1655), + [aux_sym_expr_binary_token25] = ACTIONS(1655), + [aux_sym_expr_binary_token26] = ACTIONS(1655), + [aux_sym_expr_binary_token27] = ACTIONS(1655), + [aux_sym_expr_binary_token28] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [aux_sym_record_entry_token1] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), [anon_sym_POUND] = ACTIONS(247), }, [1343] = { [sym_comment] = STATE(1343), - [aux_sym_cmd_identifier_token41] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [aux_sym_expr_binary_token1] = ACTIONS(1641), - [aux_sym_expr_binary_token2] = ACTIONS(1641), - [aux_sym_expr_binary_token3] = ACTIONS(1641), - [aux_sym_expr_binary_token4] = ACTIONS(1641), - [aux_sym_expr_binary_token5] = ACTIONS(1641), - [aux_sym_expr_binary_token6] = ACTIONS(1641), - [aux_sym_expr_binary_token7] = ACTIONS(1641), - [aux_sym_expr_binary_token8] = ACTIONS(1641), - [aux_sym_expr_binary_token9] = ACTIONS(1641), - [aux_sym_expr_binary_token10] = ACTIONS(1641), - [aux_sym_expr_binary_token11] = ACTIONS(1641), - [aux_sym_expr_binary_token12] = ACTIONS(1641), - [aux_sym_expr_binary_token13] = ACTIONS(1641), - [aux_sym_expr_binary_token14] = ACTIONS(1641), - [aux_sym_expr_binary_token15] = ACTIONS(1641), - [aux_sym_expr_binary_token16] = ACTIONS(1641), - [aux_sym_expr_binary_token17] = ACTIONS(1641), - [aux_sym_expr_binary_token18] = ACTIONS(1641), - [aux_sym_expr_binary_token19] = ACTIONS(1641), - [aux_sym_expr_binary_token20] = ACTIONS(1641), - [aux_sym_expr_binary_token21] = ACTIONS(1641), - [aux_sym_expr_binary_token22] = ACTIONS(1641), - [aux_sym_expr_binary_token23] = ACTIONS(1641), - [aux_sym_expr_binary_token24] = ACTIONS(1641), - [aux_sym_expr_binary_token25] = ACTIONS(1641), - [aux_sym_expr_binary_token26] = ACTIONS(1641), - [aux_sym_expr_binary_token27] = ACTIONS(1641), - [aux_sym_expr_binary_token28] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [aux_sym_record_entry_token1] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1344] = { - [sym_cell_path] = STATE(1858), - [sym_path] = STATE(1599), [sym_comment] = STATE(1344), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1971), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1969), - [aux_sym_ctrl_match_token1] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1345] = { - [sym_cell_path] = STATE(1843), - [sym_path] = STATE(1599), [sym_comment] = STATE(1345), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1833), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_err_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_GT_PIPE] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1829), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_decimal_token4] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_err_GT] = ACTIONS(1829), - [anon_sym_out_GT] = ACTIONS(1829), - [anon_sym_e_GT] = ACTIONS(1829), - [anon_sym_o_GT] = ACTIONS(1829), - [anon_sym_err_PLUSout_GT] = ACTIONS(1829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), - [anon_sym_o_PLUSe_GT] = ACTIONS(1829), - [anon_sym_e_PLUSo_GT] = ACTIONS(1829), - [anon_sym_err_GT_GT] = ACTIONS(1833), - [anon_sym_out_GT_GT] = ACTIONS(1833), - [anon_sym_e_GT_GT] = ACTIONS(1833), - [anon_sym_o_GT_GT] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), - [aux_sym_unquoted_token1] = ACTIONS(1829), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1346] = { - [sym_cell_path] = STATE(1846), - [sym_path] = STATE(1599), [sym_comment] = STATE(1346), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [aux_sym_ctrl_match_token1] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1655), + [aux_sym_expr_binary_token1] = ACTIONS(1655), + [aux_sym_expr_binary_token2] = ACTIONS(1655), + [aux_sym_expr_binary_token3] = ACTIONS(1655), + [aux_sym_expr_binary_token4] = ACTIONS(1655), + [aux_sym_expr_binary_token5] = ACTIONS(1655), + [aux_sym_expr_binary_token6] = ACTIONS(1655), + [aux_sym_expr_binary_token7] = ACTIONS(1655), + [aux_sym_expr_binary_token8] = ACTIONS(1655), + [aux_sym_expr_binary_token9] = ACTIONS(1655), + [aux_sym_expr_binary_token10] = ACTIONS(1655), + [aux_sym_expr_binary_token11] = ACTIONS(1655), + [aux_sym_expr_binary_token12] = ACTIONS(1655), + [aux_sym_expr_binary_token13] = ACTIONS(1655), + [aux_sym_expr_binary_token14] = ACTIONS(1655), + [aux_sym_expr_binary_token15] = ACTIONS(1655), + [aux_sym_expr_binary_token16] = ACTIONS(1655), + [aux_sym_expr_binary_token17] = ACTIONS(1655), + [aux_sym_expr_binary_token18] = ACTIONS(1655), + [aux_sym_expr_binary_token19] = ACTIONS(1655), + [aux_sym_expr_binary_token20] = ACTIONS(1655), + [aux_sym_expr_binary_token21] = ACTIONS(1655), + [aux_sym_expr_binary_token22] = ACTIONS(1655), + [aux_sym_expr_binary_token23] = ACTIONS(1655), + [aux_sym_expr_binary_token24] = ACTIONS(1655), + [aux_sym_expr_binary_token25] = ACTIONS(1655), + [aux_sym_expr_binary_token26] = ACTIONS(1655), + [aux_sym_expr_binary_token27] = ACTIONS(1655), + [aux_sym_expr_binary_token28] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [1347] = { - [sym__expr_parenthesized_immediate] = STATE(7427), + [sym_cell_path] = STATE(1870), + [sym_path] = STATE(1603), [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(4610), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4612), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4612), - [sym_filesize_unit] = ACTIONS(4708), - [sym_duration_unit] = ACTIONS(4710), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(4712), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1007), + [aux_sym_cmd_identifier_token38] = ACTIONS(1007), + [aux_sym_cmd_identifier_token39] = ACTIONS(1007), + [aux_sym_cmd_identifier_token40] = ACTIONS(1007), + [sym__newline] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_err_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_GT_PIPE] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), + [anon_sym_DOT_DOT_LT] = ACTIONS(1007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1005), + [aux_sym__val_number_decimal_token2] = ACTIONS(1007), + [aux_sym__val_number_decimal_token3] = ACTIONS(1007), + [aux_sym__val_number_decimal_token4] = ACTIONS(1007), + [aux_sym__val_number_token1] = ACTIONS(1007), + [aux_sym__val_number_token2] = ACTIONS(1007), + [aux_sym__val_number_token3] = ACTIONS(1007), + [anon_sym_0b] = ACTIONS(1005), + [anon_sym_0o] = ACTIONS(1005), + [anon_sym_0x] = ACTIONS(1005), + [sym_val_date] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym__str_single_quotes] = ACTIONS(1007), + [sym__str_back_ticks] = ACTIONS(1007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), + [anon_sym_err_GT] = ACTIONS(1005), + [anon_sym_out_GT] = ACTIONS(1005), + [anon_sym_e_GT] = ACTIONS(1005), + [anon_sym_o_GT] = ACTIONS(1005), + [anon_sym_err_PLUSout_GT] = ACTIONS(1005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), + [anon_sym_o_PLUSe_GT] = ACTIONS(1005), + [anon_sym_e_PLUSo_GT] = ACTIONS(1005), + [anon_sym_err_GT_GT] = ACTIONS(1007), + [anon_sym_out_GT_GT] = ACTIONS(1007), + [anon_sym_e_GT_GT] = ACTIONS(1007), + [anon_sym_o_GT_GT] = ACTIONS(1007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), + [aux_sym_unquoted_token1] = ACTIONS(1005), [anon_sym_POUND] = ACTIONS(247), }, [1348] = { [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1062), - [aux_sym_cmd_identifier_token40] = ACTIONS(1062), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_err_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_GT_PIPE] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [aux_sym_ctrl_match_token1] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT] = ACTIONS(1060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1060), - [aux_sym__val_number_decimal_token2] = ACTIONS(1062), - [aux_sym__val_number_decimal_token3] = ACTIONS(1062), - [aux_sym__val_number_decimal_token4] = ACTIONS(1062), - [aux_sym__val_number_token1] = ACTIONS(1062), - [aux_sym__val_number_token2] = ACTIONS(1062), - [aux_sym__val_number_token3] = ACTIONS(1062), - [anon_sym_0b] = ACTIONS(1060), - [anon_sym_0o] = ACTIONS(1060), - [anon_sym_0x] = ACTIONS(1060), - [sym_val_date] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym__str_single_quotes] = ACTIONS(1062), - [sym__str_back_ticks] = ACTIONS(1062), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1060), - [anon_sym_out_GT] = ACTIONS(1060), - [anon_sym_e_GT] = ACTIONS(1060), - [anon_sym_o_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT] = ACTIONS(1060), - [anon_sym_err_GT_GT] = ACTIONS(1062), - [anon_sym_out_GT_GT] = ACTIONS(1062), - [anon_sym_e_GT_GT] = ACTIONS(1062), - [anon_sym_o_GT_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), - [aux_sym_unquoted_token1] = ACTIONS(1060), + [ts_builtin_sym_end] = ACTIONS(1542), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(4684), + [aux_sym__immediate_decimal_token2] = ACTIONS(4686), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), [anon_sym_POUND] = ACTIONS(247), }, [1349] = { + [sym_cell_path] = STATE(1921), + [sym_path] = STATE(1603), [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1054), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [aux_sym_ctrl_match_token1] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1052), - [anon_sym_0o] = ACTIONS(1052), - [anon_sym_0x] = ACTIONS(1052), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [aux_sym_unquoted_token1] = ACTIONS(1052), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token38] = ACTIONS(1906), + [aux_sym_cmd_identifier_token39] = ACTIONS(1906), + [aux_sym_cmd_identifier_token40] = ACTIONS(1906), + [sym__newline] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_err_GT_PIPE] = ACTIONS(1906), + [anon_sym_out_GT_PIPE] = ACTIONS(1906), + [anon_sym_e_GT_PIPE] = ACTIONS(1906), + [anon_sym_o_GT_PIPE] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1906), + [anon_sym_DOT_DOT_LT] = ACTIONS(1906), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1906), + [aux_sym__val_number_decimal_token4] = ACTIONS(1906), + [aux_sym__val_number_token1] = ACTIONS(1906), + [aux_sym__val_number_token2] = ACTIONS(1906), + [aux_sym__val_number_token3] = ACTIONS(1906), + [anon_sym_0b] = ACTIONS(1904), + [anon_sym_0o] = ACTIONS(1904), + [anon_sym_0x] = ACTIONS(1904), + [sym_val_date] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym__str_single_quotes] = ACTIONS(1906), + [sym__str_back_ticks] = ACTIONS(1906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1906), + [anon_sym_err_GT] = ACTIONS(1904), + [anon_sym_out_GT] = ACTIONS(1904), + [anon_sym_e_GT] = ACTIONS(1904), + [anon_sym_o_GT] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT] = ACTIONS(1904), + [anon_sym_err_GT_GT] = ACTIONS(1906), + [anon_sym_out_GT_GT] = ACTIONS(1906), + [anon_sym_e_GT_GT] = ACTIONS(1906), + [anon_sym_o_GT_GT] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1906), + [aux_sym_unquoted_token1] = ACTIONS(1904), [anon_sym_POUND] = ACTIONS(247), }, [1350] = { - [sym_cell_path] = STATE(1860), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1804), + [sym_path] = STATE(1219), [sym_comment] = STATE(1350), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1896), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [sym__newline] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_err_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_GT_PIPE] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [aux_sym_ctrl_match_token1] = ACTIONS(1896), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1896), - [anon_sym_DOT_DOT_LT] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [anon_sym_0b] = ACTIONS(1894), - [anon_sym_0o] = ACTIONS(1894), - [anon_sym_0x] = ACTIONS(1894), - [sym_val_date] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1896), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1896), - [anon_sym_err_GT] = ACTIONS(1894), - [anon_sym_out_GT] = ACTIONS(1894), - [anon_sym_e_GT] = ACTIONS(1894), - [anon_sym_o_GT] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT] = ACTIONS(1894), - [anon_sym_err_GT_GT] = ACTIONS(1896), - [anon_sym_out_GT_GT] = ACTIONS(1896), - [anon_sym_e_GT_GT] = ACTIONS(1896), - [anon_sym_o_GT_GT] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), - [aux_sym_unquoted_token1] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(247), - }, - [1351] = { - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [aux_sym_cell_path_repeat1] = STATE(1110), [sym__newline] = ACTIONS(1645), [anon_sym_SEMI] = ACTIONS(1645), [anon_sym_PIPE] = ACTIONS(1645), @@ -199481,43 +202226,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [aux_sym_expr_binary_token1] = ACTIONS(1645), + [aux_sym_expr_binary_token2] = ACTIONS(1645), + [aux_sym_expr_binary_token3] = ACTIONS(1645), + [aux_sym_expr_binary_token4] = ACTIONS(1645), + [aux_sym_expr_binary_token5] = ACTIONS(1645), + [aux_sym_expr_binary_token6] = ACTIONS(1645), + [aux_sym_expr_binary_token7] = ACTIONS(1645), + [aux_sym_expr_binary_token8] = ACTIONS(1645), + [aux_sym_expr_binary_token9] = ACTIONS(1645), + [aux_sym_expr_binary_token10] = ACTIONS(1645), + [aux_sym_expr_binary_token11] = ACTIONS(1645), + [aux_sym_expr_binary_token12] = ACTIONS(1645), + [aux_sym_expr_binary_token13] = ACTIONS(1645), + [aux_sym_expr_binary_token14] = ACTIONS(1645), + [aux_sym_expr_binary_token15] = ACTIONS(1645), + [aux_sym_expr_binary_token16] = ACTIONS(1645), + [aux_sym_expr_binary_token17] = ACTIONS(1645), + [aux_sym_expr_binary_token18] = ACTIONS(1645), + [aux_sym_expr_binary_token19] = ACTIONS(1645), + [aux_sym_expr_binary_token20] = ACTIONS(1645), + [aux_sym_expr_binary_token21] = ACTIONS(1645), + [aux_sym_expr_binary_token22] = ACTIONS(1645), + [aux_sym_expr_binary_token23] = ACTIONS(1645), + [aux_sym_expr_binary_token24] = ACTIONS(1645), + [aux_sym_expr_binary_token25] = ACTIONS(1645), + [aux_sym_expr_binary_token26] = ACTIONS(1645), + [aux_sym_expr_binary_token27] = ACTIONS(1645), + [aux_sym_expr_binary_token28] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(3905), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4630), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), [anon_sym_err_GT_GT] = ACTIONS(1645), [anon_sym_out_GT_GT] = ACTIONS(1645), [anon_sym_e_GT_GT] = ACTIONS(1645), @@ -199526,5338 +202276,4359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [1351] = { + [sym_cell_path] = STATE(1812), + [sym_path] = STATE(1219), + [sym_comment] = STATE(1351), + [aux_sym_cell_path_repeat1] = STATE(1110), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [aux_sym_expr_binary_token1] = ACTIONS(1677), + [aux_sym_expr_binary_token2] = ACTIONS(1677), + [aux_sym_expr_binary_token3] = ACTIONS(1677), + [aux_sym_expr_binary_token4] = ACTIONS(1677), + [aux_sym_expr_binary_token5] = ACTIONS(1677), + [aux_sym_expr_binary_token6] = ACTIONS(1677), + [aux_sym_expr_binary_token7] = ACTIONS(1677), + [aux_sym_expr_binary_token8] = ACTIONS(1677), + [aux_sym_expr_binary_token9] = ACTIONS(1677), + [aux_sym_expr_binary_token10] = ACTIONS(1677), + [aux_sym_expr_binary_token11] = ACTIONS(1677), + [aux_sym_expr_binary_token12] = ACTIONS(1677), + [aux_sym_expr_binary_token13] = ACTIONS(1677), + [aux_sym_expr_binary_token14] = ACTIONS(1677), + [aux_sym_expr_binary_token15] = ACTIONS(1677), + [aux_sym_expr_binary_token16] = ACTIONS(1677), + [aux_sym_expr_binary_token17] = ACTIONS(1677), + [aux_sym_expr_binary_token18] = ACTIONS(1677), + [aux_sym_expr_binary_token19] = ACTIONS(1677), + [aux_sym_expr_binary_token20] = ACTIONS(1677), + [aux_sym_expr_binary_token21] = ACTIONS(1677), + [aux_sym_expr_binary_token22] = ACTIONS(1677), + [aux_sym_expr_binary_token23] = ACTIONS(1677), + [aux_sym_expr_binary_token24] = ACTIONS(1677), + [aux_sym_expr_binary_token25] = ACTIONS(1677), + [aux_sym_expr_binary_token26] = ACTIONS(1677), + [aux_sym_expr_binary_token27] = ACTIONS(1677), + [aux_sym_expr_binary_token28] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(247), }, [1352] = { - [sym_cell_path] = STATE(1862), - [sym_path] = STATE(1599), [sym_comment] = STATE(1352), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1945), - [aux_sym_ctrl_match_token1] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [sym__newline] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1997), + [anon_sym_err_GT_PIPE] = ACTIONS(1997), + [anon_sym_out_GT_PIPE] = ACTIONS(1997), + [anon_sym_e_GT_PIPE] = ACTIONS(1997), + [anon_sym_o_GT_PIPE] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_DOT_DOT2] = ACTIONS(4688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), + [anon_sym_DOT_DOT_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4690), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4690), + [aux_sym__val_number_decimal_token1] = ACTIONS(1991), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0o] = ACTIONS(1991), + [anon_sym_0x] = ACTIONS(1991), + [sym_val_date] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), + [anon_sym_err_GT] = ACTIONS(1991), + [anon_sym_out_GT] = ACTIONS(1991), + [anon_sym_e_GT] = ACTIONS(1991), + [anon_sym_o_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT] = ACTIONS(1991), + [anon_sym_err_GT_GT] = ACTIONS(1997), + [anon_sym_out_GT_GT] = ACTIONS(1997), + [anon_sym_e_GT_GT] = ACTIONS(1997), + [anon_sym_o_GT_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1997), + [aux_sym_unquoted_token1] = ACTIONS(1991), [anon_sym_POUND] = ACTIONS(247), }, [1353] = { [sym_comment] = STATE(1353), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [aux_sym_cmd_identifier_token38] = ACTIONS(2021), - [aux_sym_cmd_identifier_token39] = ACTIONS(2021), - [aux_sym_cmd_identifier_token40] = ACTIONS(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2019), - [aux_sym_ctrl_match_token1] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token3] = ACTIONS(2021), - [aux_sym__val_number_decimal_token4] = ACTIONS(2021), - [aux_sym__val_number_token1] = ACTIONS(2021), - [aux_sym__val_number_token2] = ACTIONS(2021), - [aux_sym__val_number_token3] = ACTIONS(2021), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2019), - [anon_sym_out_GT] = ACTIONS(2019), - [anon_sym_e_GT] = ACTIONS(2019), - [anon_sym_o_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT] = ACTIONS(2019), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [aux_sym_unquoted_token1] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_null] = ACTIONS(2005), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2005), + [aux_sym_cmd_identifier_token40] = ACTIONS(2005), + [sym__newline] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_err_GT_PIPE] = ACTIONS(2005), + [anon_sym_out_GT_PIPE] = ACTIONS(2005), + [anon_sym_e_GT_PIPE] = ACTIONS(2005), + [anon_sym_o_GT_PIPE] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_DASH_DASH] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_DOT_DOT2] = ACTIONS(4692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4694), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4694), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2005), + [aux_sym__val_number_decimal_token4] = ACTIONS(2005), + [aux_sym__val_number_token1] = ACTIONS(2005), + [aux_sym__val_number_token2] = ACTIONS(2005), + [aux_sym__val_number_token3] = ACTIONS(2005), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), + [anon_sym_err_GT] = ACTIONS(1999), + [anon_sym_out_GT] = ACTIONS(1999), + [anon_sym_e_GT] = ACTIONS(1999), + [anon_sym_o_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT] = ACTIONS(1999), + [anon_sym_err_GT_GT] = ACTIONS(2005), + [anon_sym_out_GT_GT] = ACTIONS(2005), + [anon_sym_e_GT_GT] = ACTIONS(2005), + [anon_sym_o_GT_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2005), + [aux_sym_unquoted_token1] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(247), }, [1354] = { [sym_comment] = STATE(1354), - [ts_builtin_sym_end] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4714), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_null] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [sym__newline] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_err_GT_PIPE] = ACTIONS(2013), + [anon_sym_out_GT_PIPE] = ACTIONS(2013), + [anon_sym_e_GT_PIPE] = ACTIONS(2013), + [anon_sym_o_GT_PIPE] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_RPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_DASH_DASH] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_DOT_DOT2] = ACTIONS(4696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), + [anon_sym_DOT_DOT_LT] = ACTIONS(2007), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4698), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4698), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2007), + [anon_sym_0x] = ACTIONS(2007), + [sym_val_date] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), + [anon_sym_err_GT] = ACTIONS(2007), + [anon_sym_out_GT] = ACTIONS(2007), + [anon_sym_e_GT] = ACTIONS(2007), + [anon_sym_o_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT] = ACTIONS(2007), + [anon_sym_err_GT_GT] = ACTIONS(2013), + [anon_sym_out_GT_GT] = ACTIONS(2013), + [anon_sym_e_GT_GT] = ACTIONS(2013), + [anon_sym_o_GT_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2013), + [aux_sym_unquoted_token1] = ACTIONS(2007), [anon_sym_POUND] = ACTIONS(247), }, [1355] = { - [sym_cell_path] = STATE(1883), - [sym_path] = STATE(1599), [sym_comment] = STATE(1355), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [aux_sym_ctrl_match_token1] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1356] = { [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(4716), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, [1357] = { [sym_comment] = STATE(1357), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [1358] = { - [sym_cell_path] = STATE(1847), - [sym_path] = STATE(1599), [sym_comment] = STATE(1358), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1845), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [sym__newline] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_err_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_GT_PIPE] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1843), - [aux_sym_ctrl_match_token1] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_LT] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1845), - [anon_sym_out_GT_GT] = ACTIONS(1845), - [anon_sym_e_GT_GT] = ACTIONS(1845), - [anon_sym_o_GT_GT] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), - [aux_sym_unquoted_token1] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1740), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [sym__newline] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_err_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_GT_PIPE] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), + [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(1740), + [anon_sym_out_GT_GT] = ACTIONS(1740), + [anon_sym_e_GT_GT] = ACTIONS(1740), + [anon_sym_o_GT_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), + [aux_sym_unquoted_token1] = ACTIONS(1738), [anon_sym_POUND] = ACTIONS(247), }, [1359] = { [sym_comment] = STATE(1359), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1629), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1625), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token3] = ACTIONS(1629), - [aux_sym__val_number_decimal_token4] = ACTIONS(1629), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1625), - [anon_sym_0o] = ACTIONS(1625), - [anon_sym_0x] = ACTIONS(1625), - [sym_val_date] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), - [aux_sym_unquoted_token1] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [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_RBRACE] = ACTIONS(1520), + [anon_sym_EQ_GT] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [aux_sym_record_entry_token1] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1360] = { - [sym_cell_path] = STATE(1848), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1915), + [sym_path] = STATE(1603), [sym_comment] = STATE(1360), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1849), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [aux_sym_ctrl_match_token1] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_null] = ACTIONS(1898), + [aux_sym_cmd_identifier_token38] = ACTIONS(1898), + [aux_sym_cmd_identifier_token39] = ACTIONS(1898), + [aux_sym_cmd_identifier_token40] = ACTIONS(1898), + [sym__newline] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_err_GT_PIPE] = ACTIONS(1898), + [anon_sym_out_GT_PIPE] = ACTIONS(1898), + [anon_sym_e_GT_PIPE] = ACTIONS(1898), + [anon_sym_o_GT_PIPE] = ACTIONS(1898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1898), + [anon_sym_DOT_DOT_LT] = ACTIONS(1898), + [aux_sym__val_number_decimal_token1] = ACTIONS(1896), + [aux_sym__val_number_decimal_token2] = ACTIONS(1898), + [aux_sym__val_number_decimal_token3] = ACTIONS(1898), + [aux_sym__val_number_decimal_token4] = ACTIONS(1898), + [aux_sym__val_number_token1] = ACTIONS(1898), + [aux_sym__val_number_token2] = ACTIONS(1898), + [aux_sym__val_number_token3] = ACTIONS(1898), + [anon_sym_0b] = ACTIONS(1896), + [anon_sym_0o] = ACTIONS(1896), + [anon_sym_0x] = ACTIONS(1896), + [sym_val_date] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [sym__str_single_quotes] = ACTIONS(1898), + [sym__str_back_ticks] = ACTIONS(1898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1896), + [anon_sym_out_GT] = ACTIONS(1896), + [anon_sym_e_GT] = ACTIONS(1896), + [anon_sym_o_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT] = ACTIONS(1896), + [anon_sym_err_GT_GT] = ACTIONS(1898), + [anon_sym_out_GT_GT] = ACTIONS(1898), + [anon_sym_e_GT_GT] = ACTIONS(1898), + [anon_sym_o_GT_GT] = ACTIONS(1898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1898), + [aux_sym_unquoted_token1] = ACTIONS(1896), [anon_sym_POUND] = ACTIONS(247), }, [1361] = { - [sym_cell_path] = STATE(1850), - [sym_path] = STATE(1599), [sym_comment] = STATE(1361), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [sym__newline] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_err_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_GT_PIPE] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1851), - [aux_sym_ctrl_match_token1] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_LT] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [anon_sym_0b] = ACTIONS(1851), - [anon_sym_0o] = ACTIONS(1851), - [anon_sym_0x] = ACTIONS(1851), - [sym_val_date] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_err_GT] = ACTIONS(1851), - [anon_sym_out_GT] = ACTIONS(1851), - [anon_sym_e_GT] = ACTIONS(1851), - [anon_sym_o_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT] = ACTIONS(1851), - [anon_sym_err_GT_GT] = ACTIONS(1853), - [anon_sym_out_GT_GT] = ACTIONS(1853), - [anon_sym_e_GT_GT] = ACTIONS(1853), - [anon_sym_o_GT_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), - [aux_sym_unquoted_token1] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1520), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [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), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4702), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1362] = { [sym_comment] = STATE(1362), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4660), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4704), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [1363] = { - [sym_cell_path] = STATE(1851), - [sym_path] = STATE(1599), [sym_comment] = STATE(1363), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1857), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [aux_sym_ctrl_match_token1] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4676), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1364] = { [sym_comment] = STATE(1364), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_EQ_GT] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [aux_sym_record_entry_token1] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2025), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [sym__newline] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_err_GT_PIPE] = ACTIONS(2025), + [anon_sym_out_GT_PIPE] = ACTIONS(2025), + [anon_sym_e_GT_PIPE] = ACTIONS(2025), + [anon_sym_o_GT_PIPE] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_DASH_DASH] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_DOT_DOT2] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4708), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4708), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_0b] = ACTIONS(2019), + [anon_sym_0o] = ACTIONS(2019), + [anon_sym_0x] = ACTIONS(2019), + [sym_val_date] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), + [anon_sym_err_GT] = ACTIONS(2019), + [anon_sym_out_GT] = ACTIONS(2019), + [anon_sym_e_GT] = ACTIONS(2019), + [anon_sym_o_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT] = ACTIONS(2019), + [anon_sym_err_GT_GT] = ACTIONS(2025), + [anon_sym_out_GT_GT] = ACTIONS(2025), + [anon_sym_e_GT_GT] = ACTIONS(2025), + [anon_sym_o_GT_GT] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2025), + [aux_sym_unquoted_token1] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(247), }, [1365] = { - [sym_cell_path] = STATE(1852), - [sym_path] = STATE(1599), [sym_comment] = STATE(1365), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [sym__newline] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_err_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_GT_PIPE] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1859), - [aux_sym_ctrl_match_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [anon_sym_0b] = ACTIONS(1859), - [anon_sym_0o] = ACTIONS(1859), - [anon_sym_0x] = ACTIONS(1859), - [sym_val_date] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), - [anon_sym_err_GT] = ACTIONS(1859), - [anon_sym_out_GT] = ACTIONS(1859), - [anon_sym_e_GT] = ACTIONS(1859), - [anon_sym_o_GT] = ACTIONS(1859), - [anon_sym_err_PLUSout_GT] = ACTIONS(1859), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), - [anon_sym_o_PLUSe_GT] = ACTIONS(1859), - [anon_sym_e_PLUSo_GT] = ACTIONS(1859), - [anon_sym_err_GT_GT] = ACTIONS(1861), - [anon_sym_out_GT_GT] = ACTIONS(1861), - [anon_sym_e_GT_GT] = ACTIONS(1861), - [anon_sym_o_GT_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), - [aux_sym_unquoted_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4630), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1366] = { - [sym_cell_path] = STATE(1853), - [sym_path] = STATE(1599), [sym_comment] = STATE(1366), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1865), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [sym__newline] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_err_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_GT_PIPE] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1863), - [aux_sym_ctrl_match_token1] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1865), - [anon_sym_out_GT_GT] = ACTIONS(1865), - [anon_sym_e_GT_GT] = ACTIONS(1865), - [anon_sym_o_GT_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), - [aux_sym_unquoted_token1] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4710), + [aux_sym__immediate_decimal_token2] = ACTIONS(4712), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, [1367] = { - [sym_cell_path] = STATE(1855), - [sym_path] = STATE(1599), [sym_comment] = STATE(1367), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1869), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1867), - [aux_sym_ctrl_match_token1] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), - [anon_sym_DOT_DOT_LT] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_0b] = ACTIONS(1867), - [anon_sym_0o] = ACTIONS(1867), - [anon_sym_0x] = ACTIONS(1867), - [sym_val_date] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1867), - [anon_sym_out_GT] = ACTIONS(1867), - [anon_sym_e_GT] = ACTIONS(1867), - [anon_sym_o_GT] = ACTIONS(1867), - [anon_sym_err_PLUSout_GT] = ACTIONS(1867), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), - [anon_sym_o_PLUSe_GT] = ACTIONS(1867), - [anon_sym_e_PLUSo_GT] = ACTIONS(1867), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [aux_sym_unquoted_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4714), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), }, [1368] = { + [sym_cell_path] = STATE(1865), + [sym_path] = STATE(1603), [sym_comment] = STATE(1368), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [sym__newline] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_err_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_GT_PIPE] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2035), - [aux_sym_ctrl_match_token1] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(4718), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4720), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4720), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [anon_sym_0b] = ACTIONS(2035), - [anon_sym_0o] = ACTIONS(2035), - [anon_sym_0x] = ACTIONS(2035), - [sym_val_date] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_err_GT] = ACTIONS(2035), - [anon_sym_out_GT] = ACTIONS(2035), - [anon_sym_e_GT] = ACTIONS(2035), - [anon_sym_o_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT] = ACTIONS(2035), - [anon_sym_err_GT_GT] = ACTIONS(2041), - [anon_sym_out_GT_GT] = ACTIONS(2041), - [anon_sym_e_GT_GT] = ACTIONS(2041), - [anon_sym_o_GT_GT] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), - [aux_sym_unquoted_token1] = ACTIONS(2035), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), + [aux_sym_cmd_identifier_token38] = ACTIONS(1914), + [aux_sym_cmd_identifier_token39] = ACTIONS(1914), + [aux_sym_cmd_identifier_token40] = ACTIONS(1914), + [sym__newline] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_err_GT_PIPE] = ACTIONS(1914), + [anon_sym_out_GT_PIPE] = ACTIONS(1914), + [anon_sym_e_GT_PIPE] = ACTIONS(1914), + [anon_sym_o_GT_PIPE] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1912), + [aux_sym__val_number_decimal_token2] = ACTIONS(1914), + [aux_sym__val_number_decimal_token3] = ACTIONS(1914), + [aux_sym__val_number_decimal_token4] = ACTIONS(1914), + [aux_sym__val_number_token1] = ACTIONS(1914), + [aux_sym__val_number_token2] = ACTIONS(1914), + [aux_sym__val_number_token3] = ACTIONS(1914), + [anon_sym_0b] = ACTIONS(1912), + [anon_sym_0o] = ACTIONS(1912), + [anon_sym_0x] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym__str_single_quotes] = ACTIONS(1914), + [sym__str_back_ticks] = ACTIONS(1914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1914), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1914), + [anon_sym_err_GT] = ACTIONS(1912), + [anon_sym_out_GT] = ACTIONS(1912), + [anon_sym_e_GT] = ACTIONS(1912), + [anon_sym_o_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT] = ACTIONS(1912), + [anon_sym_err_GT_GT] = ACTIONS(1914), + [anon_sym_out_GT_GT] = ACTIONS(1914), + [anon_sym_e_GT_GT] = ACTIONS(1914), + [anon_sym_o_GT_GT] = ACTIONS(1914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(247), }, [1369] = { + [sym_cell_path] = STATE(1916), + [sym_path] = STATE(1603), [sym_comment] = STATE(1369), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2049), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [sym__newline] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_err_GT_PIPE] = ACTIONS(2049), - [anon_sym_out_GT_PIPE] = ACTIONS(2049), - [anon_sym_e_GT_PIPE] = ACTIONS(2049), - [anon_sym_o_GT_PIPE] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2043), - [aux_sym_ctrl_match_token1] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT2] = ACTIONS(4722), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4724), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4724), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [sym_val_date] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), - [anon_sym_err_GT] = ACTIONS(2043), - [anon_sym_out_GT] = ACTIONS(2043), - [anon_sym_e_GT] = ACTIONS(2043), - [anon_sym_o_GT] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT] = ACTIONS(2043), - [anon_sym_err_GT_GT] = ACTIONS(2049), - [anon_sym_out_GT_GT] = ACTIONS(2049), - [anon_sym_e_GT_GT] = ACTIONS(2049), - [anon_sym_o_GT_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), - [aux_sym_unquoted_token1] = ACTIONS(2043), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_null] = ACTIONS(1902), + [aux_sym_cmd_identifier_token38] = ACTIONS(1902), + [aux_sym_cmd_identifier_token39] = ACTIONS(1902), + [aux_sym_cmd_identifier_token40] = ACTIONS(1902), + [sym__newline] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_err_GT_PIPE] = ACTIONS(1902), + [anon_sym_out_GT_PIPE] = ACTIONS(1902), + [anon_sym_e_GT_PIPE] = ACTIONS(1902), + [anon_sym_o_GT_PIPE] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1900), + [aux_sym__val_number_decimal_token2] = ACTIONS(1902), + [aux_sym__val_number_decimal_token3] = ACTIONS(1902), + [aux_sym__val_number_decimal_token4] = ACTIONS(1902), + [aux_sym__val_number_token1] = ACTIONS(1902), + [aux_sym__val_number_token2] = ACTIONS(1902), + [aux_sym__val_number_token3] = ACTIONS(1902), + [anon_sym_0b] = ACTIONS(1900), + [anon_sym_0o] = ACTIONS(1900), + [anon_sym_0x] = ACTIONS(1900), + [sym_val_date] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym__str_single_quotes] = ACTIONS(1902), + [sym__str_back_ticks] = ACTIONS(1902), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1902), + [anon_sym_err_GT] = ACTIONS(1900), + [anon_sym_out_GT] = ACTIONS(1900), + [anon_sym_e_GT] = ACTIONS(1900), + [anon_sym_o_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT] = ACTIONS(1900), + [anon_sym_err_GT_GT] = ACTIONS(1902), + [anon_sym_out_GT_GT] = ACTIONS(1902), + [anon_sym_e_GT_GT] = ACTIONS(1902), + [anon_sym_o_GT_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1902), + [aux_sym_unquoted_token1] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(247), }, [1370] = { - [sym_cell_path] = STATE(1857), - [sym_path] = STATE(1599), [sym_comment] = STATE(1370), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1875), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1072), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT2] = ACTIONS(4716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), + [aux_sym_unquoted_token1] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(247), }, [1371] = { [sym_comment] = STATE(1371), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [sym__newline] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_err_GT_PIPE] = ACTIONS(2057), - [anon_sym_out_GT_PIPE] = ACTIONS(2057), - [anon_sym_e_GT_PIPE] = ACTIONS(2057), - [anon_sym_o_GT_PIPE] = ACTIONS(2057), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_RPAREN] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2051), - [aux_sym_ctrl_match_token1] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT2] = ACTIONS(4726), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), - [anon_sym_DOT_DOT_LT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4728), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [anon_sym_0b] = ACTIONS(2051), - [anon_sym_0o] = ACTIONS(2051), - [anon_sym_0x] = ACTIONS(2051), - [sym_val_date] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), - [anon_sym_err_GT] = ACTIONS(2051), - [anon_sym_out_GT] = ACTIONS(2051), - [anon_sym_e_GT] = ACTIONS(2051), - [anon_sym_o_GT] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT] = ACTIONS(2051), - [anon_sym_err_GT_GT] = ACTIONS(2057), - [anon_sym_out_GT_GT] = ACTIONS(2057), - [anon_sym_e_GT_GT] = ACTIONS(2057), - [anon_sym_o_GT_GT] = ACTIONS(2057), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), - [aux_sym_unquoted_token1] = ACTIONS(2051), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_EQ_GT] = ACTIONS(1677), + [aux_sym_expr_binary_token1] = ACTIONS(1677), + [aux_sym_expr_binary_token2] = ACTIONS(1677), + [aux_sym_expr_binary_token3] = ACTIONS(1677), + [aux_sym_expr_binary_token4] = ACTIONS(1677), + [aux_sym_expr_binary_token5] = ACTIONS(1677), + [aux_sym_expr_binary_token6] = ACTIONS(1677), + [aux_sym_expr_binary_token7] = ACTIONS(1677), + [aux_sym_expr_binary_token8] = ACTIONS(1677), + [aux_sym_expr_binary_token9] = ACTIONS(1677), + [aux_sym_expr_binary_token10] = ACTIONS(1677), + [aux_sym_expr_binary_token11] = ACTIONS(1677), + [aux_sym_expr_binary_token12] = ACTIONS(1677), + [aux_sym_expr_binary_token13] = ACTIONS(1677), + [aux_sym_expr_binary_token14] = ACTIONS(1677), + [aux_sym_expr_binary_token15] = ACTIONS(1677), + [aux_sym_expr_binary_token16] = ACTIONS(1677), + [aux_sym_expr_binary_token17] = ACTIONS(1677), + [aux_sym_expr_binary_token18] = ACTIONS(1677), + [aux_sym_expr_binary_token19] = ACTIONS(1677), + [aux_sym_expr_binary_token20] = ACTIONS(1677), + [aux_sym_expr_binary_token21] = ACTIONS(1677), + [aux_sym_expr_binary_token22] = ACTIONS(1677), + [aux_sym_expr_binary_token23] = ACTIONS(1677), + [aux_sym_expr_binary_token24] = ACTIONS(1677), + [aux_sym_expr_binary_token25] = ACTIONS(1677), + [aux_sym_expr_binary_token26] = ACTIONS(1677), + [aux_sym_expr_binary_token27] = ACTIONS(1677), + [aux_sym_expr_binary_token28] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [aux_sym_record_entry_token1] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(247), }, [1372] = { - [sym_cell_path] = STATE(1856), - [sym_path] = STATE(1599), + [sym_cell_path] = STATE(1898), + [sym_path] = STATE(1603), [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1873), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [aux_sym_ctrl_match_token1] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [sym__newline] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_err_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_GT_PIPE] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1822), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_0b] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1822), + [anon_sym_0x] = ACTIONS(1822), + [sym_val_date] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(1822), + [anon_sym_out_GT] = ACTIONS(1822), + [anon_sym_e_GT] = ACTIONS(1822), + [anon_sym_o_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT] = ACTIONS(1822), + [anon_sym_err_GT_GT] = ACTIONS(1826), + [anon_sym_out_GT_GT] = ACTIONS(1826), + [anon_sym_e_GT_GT] = ACTIONS(1826), + [anon_sym_o_GT_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), + [aux_sym_unquoted_token1] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(247), }, [1373] = { - [sym_path] = STATE(1532), [sym_comment] = STATE(1373), - [aux_sym_cell_path_repeat1] = STATE(1373), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1021), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4720), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), }, [1374] = { - [sym_path] = STATE(1532), + [sym_cell_path] = STATE(1831), + [sym_path] = STATE(1603), [sym_comment] = STATE(1374), - [aux_sym_cell_path_repeat1] = STATE(1373), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1019), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [sym__newline] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1017), - [aux_sym_ctrl_match_token1] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_0b] = ACTIONS(1017), - [anon_sym_0o] = ACTIONS(1017), - [anon_sym_0x] = ACTIONS(1017), - [sym_val_date] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), - [aux_sym_unquoted_token1] = ACTIONS(1017), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), + [aux_sym_cmd_identifier_token38] = ACTIONS(1838), + [aux_sym_cmd_identifier_token39] = ACTIONS(1838), + [aux_sym_cmd_identifier_token40] = ACTIONS(1838), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1836), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1836), + [anon_sym_0o] = ACTIONS(1836), + [anon_sym_0x] = ACTIONS(1836), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(1836), + [anon_sym_out_GT] = ACTIONS(1836), + [anon_sym_e_GT] = ACTIONS(1836), + [anon_sym_o_GT] = ACTIONS(1836), + [anon_sym_err_PLUSout_GT] = ACTIONS(1836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), + [anon_sym_o_PLUSe_GT] = ACTIONS(1836), + [anon_sym_e_PLUSo_GT] = ACTIONS(1836), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [aux_sym_unquoted_token1] = ACTIONS(1836), [anon_sym_POUND] = ACTIONS(247), }, [1375] = { [sym_comment] = STATE(1375), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1066), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1066), - [aux_sym_cmd_identifier_token40] = ACTIONS(1066), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [aux_sym_ctrl_match_token1] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1066), - [aux_sym__val_number_token1] = ACTIONS(1066), - [aux_sym__val_number_token2] = ACTIONS(1066), - [aux_sym__val_number_token3] = ACTIONS(1066), - [anon_sym_0b] = ACTIONS(1064), - [anon_sym_0o] = ACTIONS(1064), - [anon_sym_0x] = ACTIONS(1064), - [sym_val_date] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym__str_single_quotes] = ACTIONS(1066), - [sym__str_back_ticks] = ACTIONS(1066), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1066), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [aux_sym_unquoted_token1] = ACTIONS(1064), + [sym__newline] = ACTIONS(2141), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_err_GT_PIPE] = ACTIONS(2143), + [anon_sym_out_GT_PIPE] = ACTIONS(2143), + [anon_sym_e_GT_PIPE] = ACTIONS(2143), + [anon_sym_o_GT_PIPE] = ACTIONS(2143), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2143), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2143), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2143), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_EQ_GT] = ACTIONS(2143), + [aux_sym_expr_binary_token1] = ACTIONS(2143), + [aux_sym_expr_binary_token2] = ACTIONS(2143), + [aux_sym_expr_binary_token3] = ACTIONS(2143), + [aux_sym_expr_binary_token4] = ACTIONS(2143), + [aux_sym_expr_binary_token5] = ACTIONS(2143), + [aux_sym_expr_binary_token6] = ACTIONS(2143), + [aux_sym_expr_binary_token7] = ACTIONS(2143), + [aux_sym_expr_binary_token8] = ACTIONS(2143), + [aux_sym_expr_binary_token9] = ACTIONS(2143), + [aux_sym_expr_binary_token10] = ACTIONS(2143), + [aux_sym_expr_binary_token11] = ACTIONS(2143), + [aux_sym_expr_binary_token12] = ACTIONS(2143), + [aux_sym_expr_binary_token13] = ACTIONS(2143), + [aux_sym_expr_binary_token14] = ACTIONS(2143), + [aux_sym_expr_binary_token15] = ACTIONS(2143), + [aux_sym_expr_binary_token16] = ACTIONS(2143), + [aux_sym_expr_binary_token17] = ACTIONS(2143), + [aux_sym_expr_binary_token18] = ACTIONS(2143), + [aux_sym_expr_binary_token19] = ACTIONS(2143), + [aux_sym_expr_binary_token20] = ACTIONS(2143), + [aux_sym_expr_binary_token21] = ACTIONS(2143), + [aux_sym_expr_binary_token22] = ACTIONS(2143), + [aux_sym_expr_binary_token23] = ACTIONS(2143), + [aux_sym_expr_binary_token24] = ACTIONS(2143), + [aux_sym_expr_binary_token25] = ACTIONS(2143), + [aux_sym_expr_binary_token26] = ACTIONS(2143), + [aux_sym_expr_binary_token27] = ACTIONS(2143), + [aux_sym_expr_binary_token28] = ACTIONS(2143), + [anon_sym_DOT_DOT2] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), + [aux_sym_record_entry_token1] = ACTIONS(2143), + [anon_sym_err_GT] = ACTIONS(2141), + [anon_sym_out_GT] = ACTIONS(2141), + [anon_sym_e_GT] = ACTIONS(2141), + [anon_sym_o_GT] = ACTIONS(2141), + [anon_sym_err_PLUSout_GT] = ACTIONS(2141), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2141), + [anon_sym_o_PLUSe_GT] = ACTIONS(2141), + [anon_sym_e_PLUSo_GT] = ACTIONS(2141), + [anon_sym_err_GT_GT] = ACTIONS(2143), + [anon_sym_out_GT_GT] = ACTIONS(2143), + [anon_sym_e_GT_GT] = ACTIONS(2143), + [anon_sym_o_GT_GT] = ACTIONS(2143), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2143), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2143), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2143), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2143), [anon_sym_POUND] = ACTIONS(247), }, [1376] = { - [sym_cell_path] = STATE(1863), - [sym_path] = STATE(1599), [sym_comment] = STATE(1376), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1951), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1949), - [aux_sym_ctrl_match_token1] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), + [ts_builtin_sym_end] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_err_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_GT_PIPE] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1046), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_0b] = ACTIONS(1046), + [anon_sym_0o] = ACTIONS(1046), + [anon_sym_0x] = ACTIONS(1046), + [sym_val_date] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1046), + [anon_sym_out_GT] = ACTIONS(1046), + [anon_sym_e_GT] = ACTIONS(1046), + [anon_sym_o_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT] = ACTIONS(1046), + [anon_sym_err_GT_GT] = ACTIONS(1048), + [anon_sym_out_GT_GT] = ACTIONS(1048), + [anon_sym_e_GT_GT] = ACTIONS(1048), + [anon_sym_o_GT_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), + [aux_sym_unquoted_token1] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, [1377] = { + [sym_cell_path] = STATE(1837), + [sym_path] = STATE(1603), [sym_comment] = STATE(1377), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4733), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [anon_sym_null] = ACTIONS(1830), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1830), + [aux_sym_cmd_identifier_token40] = ACTIONS(1830), + [sym__newline] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_err_GT_PIPE] = ACTIONS(1830), + [anon_sym_out_GT_PIPE] = ACTIONS(1830), + [anon_sym_e_GT_PIPE] = ACTIONS(1830), + [anon_sym_o_GT_PIPE] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), + [anon_sym_DOT_DOT_LT] = ACTIONS(1830), + [aux_sym__val_number_decimal_token1] = ACTIONS(1828), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1830), + [aux_sym__val_number_decimal_token4] = ACTIONS(1830), + [aux_sym__val_number_token1] = ACTIONS(1830), + [aux_sym__val_number_token2] = ACTIONS(1830), + [aux_sym__val_number_token3] = ACTIONS(1830), + [anon_sym_0b] = ACTIONS(1828), + [anon_sym_0o] = ACTIONS(1828), + [anon_sym_0x] = ACTIONS(1828), + [sym_val_date] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym__str_single_quotes] = ACTIONS(1830), + [sym__str_back_ticks] = ACTIONS(1830), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1830), + [anon_sym_err_GT] = ACTIONS(1828), + [anon_sym_out_GT] = ACTIONS(1828), + [anon_sym_e_GT] = ACTIONS(1828), + [anon_sym_o_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT] = ACTIONS(1828), + [anon_sym_err_GT_GT] = ACTIONS(1830), + [anon_sym_out_GT_GT] = ACTIONS(1830), + [anon_sym_e_GT_GT] = ACTIONS(1830), + [anon_sym_o_GT_GT] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1830), + [aux_sym_unquoted_token1] = ACTIONS(1828), [anon_sym_POUND] = ACTIONS(247), }, [1378] = { [sym_comment] = STATE(1378), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1641), - [aux_sym_expr_binary_token1] = ACTIONS(1641), - [aux_sym_expr_binary_token2] = ACTIONS(1641), - [aux_sym_expr_binary_token3] = ACTIONS(1641), - [aux_sym_expr_binary_token4] = ACTIONS(1641), - [aux_sym_expr_binary_token5] = ACTIONS(1641), - [aux_sym_expr_binary_token6] = ACTIONS(1641), - [aux_sym_expr_binary_token7] = ACTIONS(1641), - [aux_sym_expr_binary_token8] = ACTIONS(1641), - [aux_sym_expr_binary_token9] = ACTIONS(1641), - [aux_sym_expr_binary_token10] = ACTIONS(1641), - [aux_sym_expr_binary_token11] = ACTIONS(1641), - [aux_sym_expr_binary_token12] = ACTIONS(1641), - [aux_sym_expr_binary_token13] = ACTIONS(1641), - [aux_sym_expr_binary_token14] = ACTIONS(1641), - [aux_sym_expr_binary_token15] = ACTIONS(1641), - [aux_sym_expr_binary_token16] = ACTIONS(1641), - [aux_sym_expr_binary_token17] = ACTIONS(1641), - [aux_sym_expr_binary_token18] = ACTIONS(1641), - [aux_sym_expr_binary_token19] = ACTIONS(1641), - [aux_sym_expr_binary_token20] = ACTIONS(1641), - [aux_sym_expr_binary_token21] = ACTIONS(1641), - [aux_sym_expr_binary_token22] = ACTIONS(1641), - [aux_sym_expr_binary_token23] = ACTIONS(1641), - [aux_sym_expr_binary_token24] = ACTIONS(1641), - [aux_sym_expr_binary_token25] = ACTIONS(1641), - [aux_sym_expr_binary_token26] = ACTIONS(1641), - [aux_sym_expr_binary_token27] = ACTIONS(1641), - [aux_sym_expr_binary_token28] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token2] = ACTIONS(1639), + [sym__newline] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4590), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1379] = { [sym_comment] = STATE(1379), - [anon_sym_true] = ACTIONS(4735), - [anon_sym_false] = ACTIONS(4735), - [anon_sym_null] = ACTIONS(4735), - [aux_sym_cmd_identifier_token38] = ACTIONS(4735), - [aux_sym_cmd_identifier_token39] = ACTIONS(4737), - [aux_sym_cmd_identifier_token40] = ACTIONS(4735), - [sym_long_flag_identifier] = ACTIONS(4739), - [sym__newline] = ACTIONS(4737), - [anon_sym_SEMI] = ACTIONS(4737), - [anon_sym_PIPE] = ACTIONS(4737), - [anon_sym_err_GT_PIPE] = ACTIONS(4737), - [anon_sym_out_GT_PIPE] = ACTIONS(4737), - [anon_sym_e_GT_PIPE] = ACTIONS(4737), - [anon_sym_o_GT_PIPE] = ACTIONS(4737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4737), - [anon_sym_LBRACK] = ACTIONS(4737), - [anon_sym_LPAREN] = ACTIONS(4737), - [anon_sym_RPAREN] = ACTIONS(4737), - [anon_sym_DOLLAR] = ACTIONS(4735), - [anon_sym_DASH_DASH] = ACTIONS(4737), - [anon_sym_DASH] = ACTIONS(4735), - [aux_sym_ctrl_match_token1] = ACTIONS(4737), - [anon_sym_RBRACE] = ACTIONS(4737), - [anon_sym_DOT_DOT] = ACTIONS(4735), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4737), - [anon_sym_DOT_DOT_LT] = ACTIONS(4737), - [aux_sym__val_number_decimal_token1] = ACTIONS(4735), - [aux_sym__val_number_decimal_token2] = ACTIONS(4737), - [aux_sym__val_number_decimal_token3] = ACTIONS(4737), - [aux_sym__val_number_decimal_token4] = ACTIONS(4737), - [aux_sym__val_number_token1] = ACTIONS(4735), - [aux_sym__val_number_token2] = ACTIONS(4735), - [aux_sym__val_number_token3] = ACTIONS(4735), - [anon_sym_0b] = ACTIONS(4735), - [anon_sym_0o] = ACTIONS(4735), - [anon_sym_0x] = ACTIONS(4735), - [sym_val_date] = ACTIONS(4735), - [anon_sym_DQUOTE] = ACTIONS(4737), - [sym__str_single_quotes] = ACTIONS(4737), - [sym__str_back_ticks] = ACTIONS(4737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4737), - [anon_sym_err_GT] = ACTIONS(4735), - [anon_sym_out_GT] = ACTIONS(4735), - [anon_sym_e_GT] = ACTIONS(4735), - [anon_sym_o_GT] = ACTIONS(4735), - [anon_sym_err_PLUSout_GT] = ACTIONS(4735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4735), - [anon_sym_o_PLUSe_GT] = ACTIONS(4735), - [anon_sym_e_PLUSo_GT] = ACTIONS(4735), - [anon_sym_err_GT_GT] = ACTIONS(4737), - [anon_sym_out_GT_GT] = ACTIONS(4737), - [anon_sym_e_GT_GT] = ACTIONS(4737), - [anon_sym_o_GT_GT] = ACTIONS(4737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4737), - [anon_sym_EQ2] = ACTIONS(4741), - [aux_sym_unquoted_token1] = ACTIONS(4735), + [ts_builtin_sym_end] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1052), + [anon_sym_err_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_GT_PIPE] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_DOT_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT] = ACTIONS(1050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1050), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_0b] = ACTIONS(1050), + [anon_sym_0o] = ACTIONS(1050), + [anon_sym_0x] = ACTIONS(1050), + [sym_val_date] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1050), + [anon_sym_out_GT] = ACTIONS(1050), + [anon_sym_e_GT] = ACTIONS(1050), + [anon_sym_o_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT] = ACTIONS(1050), + [anon_sym_err_GT_GT] = ACTIONS(1052), + [anon_sym_out_GT_GT] = ACTIONS(1052), + [anon_sym_e_GT_GT] = ACTIONS(1052), + [anon_sym_o_GT_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), + [aux_sym_unquoted_token1] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, [1380] = { - [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1380), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [aux_sym_unquoted_token1] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, [1381] = { + [sym_cell_path] = STATE(1548), + [sym_path] = STATE(1212), [sym_comment] = STATE(1381), - [aux_sym_cmd_identifier_token41] = ACTIONS(1639), + [aux_sym_cell_path_repeat1] = STATE(1099), [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [aux_sym_expr_binary_token1] = ACTIONS(1641), - [aux_sym_expr_binary_token2] = ACTIONS(1641), - [aux_sym_expr_binary_token3] = ACTIONS(1641), - [aux_sym_expr_binary_token4] = ACTIONS(1641), - [aux_sym_expr_binary_token5] = ACTIONS(1641), - [aux_sym_expr_binary_token6] = ACTIONS(1641), - [aux_sym_expr_binary_token7] = ACTIONS(1641), - [aux_sym_expr_binary_token8] = ACTIONS(1641), - [aux_sym_expr_binary_token9] = ACTIONS(1641), - [aux_sym_expr_binary_token10] = ACTIONS(1641), - [aux_sym_expr_binary_token11] = ACTIONS(1641), - [aux_sym_expr_binary_token12] = ACTIONS(1641), - [aux_sym_expr_binary_token13] = ACTIONS(1641), - [aux_sym_expr_binary_token14] = ACTIONS(1641), - [aux_sym_expr_binary_token15] = ACTIONS(1641), - [aux_sym_expr_binary_token16] = ACTIONS(1641), - [aux_sym_expr_binary_token17] = ACTIONS(1641), - [aux_sym_expr_binary_token18] = ACTIONS(1641), - [aux_sym_expr_binary_token19] = ACTIONS(1641), - [aux_sym_expr_binary_token20] = ACTIONS(1641), - [aux_sym_expr_binary_token21] = ACTIONS(1641), - [aux_sym_expr_binary_token22] = ACTIONS(1641), - [aux_sym_expr_binary_token23] = ACTIONS(1641), - [aux_sym_expr_binary_token24] = ACTIONS(1641), - [aux_sym_expr_binary_token25] = ACTIONS(1641), - [aux_sym_expr_binary_token26] = ACTIONS(1641), - [aux_sym_expr_binary_token27] = ACTIONS(1641), - [aux_sym_expr_binary_token28] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1645), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(247), }, [1382] = { [sym_comment] = STATE(1382), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [aux_sym_ctrl_match_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ_GT] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [aux_sym_record_entry_token1] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), [anon_sym_POUND] = ACTIONS(247), }, [1383] = { + [sym_path] = STATE(1551), [sym_comment] = STATE(1383), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [aux_sym_cell_path_repeat1] = STATE(1408), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [1384] = { [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [anon_sym_null] = ACTIONS(2139), - [aux_sym_cmd_identifier_token38] = ACTIONS(2139), - [aux_sym_cmd_identifier_token39] = ACTIONS(2139), - [aux_sym_cmd_identifier_token40] = ACTIONS(2139), - [sym__newline] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_err_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_GT_PIPE] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2137), - [aux_sym_ctrl_match_token1] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2137), - [anon_sym_DOT_DOT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2137), - [anon_sym_DOT_DOT_LT] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2137), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [anon_sym_0b] = ACTIONS(2137), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), - [anon_sym_err_GT] = ACTIONS(2137), - [anon_sym_out_GT] = ACTIONS(2137), - [anon_sym_e_GT] = ACTIONS(2137), - [anon_sym_o_GT] = ACTIONS(2137), - [anon_sym_err_PLUSout_GT] = ACTIONS(2137), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2137), - [anon_sym_o_PLUSe_GT] = ACTIONS(2137), - [anon_sym_e_PLUSo_GT] = ACTIONS(2137), - [anon_sym_err_GT_GT] = ACTIONS(2139), - [anon_sym_out_GT_GT] = ACTIONS(2139), - [anon_sym_e_GT_GT] = ACTIONS(2139), - [anon_sym_o_GT_GT] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), - [aux_sym_unquoted_token1] = ACTIONS(2137), + [ts_builtin_sym_end] = 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_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4652), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1385] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1558), + [sym_path] = STATE(1212), [sym_comment] = STATE(1385), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1099), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1677), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(247), }, [1386] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym__expr_parenthesized_immediate] = STATE(7229), [sym_comment] = STATE(1386), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [ts_builtin_sym_end] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(1572), + [aux_sym_expr_binary_token2] = ACTIONS(1572), + [aux_sym_expr_binary_token3] = ACTIONS(1572), + [aux_sym_expr_binary_token4] = ACTIONS(1572), + [aux_sym_expr_binary_token5] = ACTIONS(1572), + [aux_sym_expr_binary_token6] = ACTIONS(1572), + [aux_sym_expr_binary_token7] = ACTIONS(1572), + [aux_sym_expr_binary_token8] = ACTIONS(1572), + [aux_sym_expr_binary_token9] = ACTIONS(1572), + [aux_sym_expr_binary_token10] = ACTIONS(1572), + [aux_sym_expr_binary_token11] = ACTIONS(1572), + [aux_sym_expr_binary_token12] = ACTIONS(1572), + [aux_sym_expr_binary_token13] = ACTIONS(1572), + [aux_sym_expr_binary_token14] = ACTIONS(1572), + [aux_sym_expr_binary_token15] = ACTIONS(1572), + [aux_sym_expr_binary_token16] = ACTIONS(1572), + [aux_sym_expr_binary_token17] = ACTIONS(1572), + [aux_sym_expr_binary_token18] = ACTIONS(1572), + [aux_sym_expr_binary_token19] = ACTIONS(1572), + [aux_sym_expr_binary_token20] = ACTIONS(1572), + [aux_sym_expr_binary_token21] = ACTIONS(1572), + [aux_sym_expr_binary_token22] = ACTIONS(1572), + [aux_sym_expr_binary_token23] = ACTIONS(1572), + [aux_sym_expr_binary_token24] = ACTIONS(1572), + [aux_sym_expr_binary_token25] = ACTIONS(1572), + [aux_sym_expr_binary_token26] = ACTIONS(1572), + [aux_sym_expr_binary_token27] = ACTIONS(1572), + [aux_sym_expr_binary_token28] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4608), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4608), + [sym_filesize_unit] = ACTIONS(4722), + [sym_duration_unit] = ACTIONS(4724), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token2] = ACTIONS(4726), [anon_sym_POUND] = ACTIONS(247), }, [1387] = { - [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1387), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [aux_sym_cmd_identifier_token38] = ACTIONS(2031), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [sym__newline] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_err_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_GT_PIPE] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_DOT_DOT2] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), + [anon_sym_DOT_DOT_LT] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [anon_sym_0b] = ACTIONS(2029), + [anon_sym_0o] = ACTIONS(2029), + [anon_sym_0x] = ACTIONS(2029), + [sym_val_date] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), + [anon_sym_err_GT] = ACTIONS(2029), + [anon_sym_out_GT] = ACTIONS(2029), + [anon_sym_e_GT] = ACTIONS(2029), + [anon_sym_o_GT] = ACTIONS(2029), + [anon_sym_err_PLUSout_GT] = ACTIONS(2029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), + [anon_sym_o_PLUSe_GT] = ACTIONS(2029), + [anon_sym_e_PLUSo_GT] = ACTIONS(2029), + [anon_sym_err_GT_GT] = ACTIONS(2031), + [anon_sym_out_GT_GT] = ACTIONS(2031), + [anon_sym_e_GT_GT] = ACTIONS(2031), + [anon_sym_o_GT_GT] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), + [aux_sym_unquoted_token1] = ACTIONS(2029), [anon_sym_POUND] = ACTIONS(247), }, [1388] = { - [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1388), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [ts_builtin_sym_end] = 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_LPAREN2] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4728), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(247), }, [1389] = { [sym_comment] = STATE(1389), - [sym__newline] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [aux_sym_ctrl_match_token1] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_EQ_GT] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), - [aux_sym_expr_binary_token1] = ACTIONS(1042), - [aux_sym_expr_binary_token2] = ACTIONS(1042), - [aux_sym_expr_binary_token3] = ACTIONS(1042), - [aux_sym_expr_binary_token4] = ACTIONS(1042), - [aux_sym_expr_binary_token5] = ACTIONS(1042), - [aux_sym_expr_binary_token6] = ACTIONS(1042), - [aux_sym_expr_binary_token7] = ACTIONS(1042), - [aux_sym_expr_binary_token8] = ACTIONS(1042), - [aux_sym_expr_binary_token9] = ACTIONS(1042), - [aux_sym_expr_binary_token10] = ACTIONS(1042), - [aux_sym_expr_binary_token11] = ACTIONS(1042), - [aux_sym_expr_binary_token12] = ACTIONS(1042), - [aux_sym_expr_binary_token13] = ACTIONS(1042), - [aux_sym_expr_binary_token14] = ACTIONS(1042), - [aux_sym_expr_binary_token15] = ACTIONS(1042), - [aux_sym_expr_binary_token16] = ACTIONS(1042), - [aux_sym_expr_binary_token17] = ACTIONS(1042), - [aux_sym_expr_binary_token18] = ACTIONS(1042), - [aux_sym_expr_binary_token19] = ACTIONS(1042), - [aux_sym_expr_binary_token20] = ACTIONS(1042), - [aux_sym_expr_binary_token21] = ACTIONS(1042), - [aux_sym_expr_binary_token22] = ACTIONS(1042), - [aux_sym_expr_binary_token23] = ACTIONS(1042), - [aux_sym_expr_binary_token24] = ACTIONS(1042), - [aux_sym_expr_binary_token25] = ACTIONS(1042), - [aux_sym_expr_binary_token26] = ACTIONS(1042), - [aux_sym_expr_binary_token27] = ACTIONS(1042), - [aux_sym_expr_binary_token28] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [aux_sym_record_entry_token1] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [sym__newline] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_err_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_GT_PIPE] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_DOT_DOT2] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), + [anon_sym_DOT_DOT_LT] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [anon_sym_0b] = ACTIONS(2033), + [anon_sym_0o] = ACTIONS(2033), + [anon_sym_0x] = ACTIONS(2033), + [sym_val_date] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_err_GT] = ACTIONS(2033), + [anon_sym_out_GT] = ACTIONS(2033), + [anon_sym_e_GT] = ACTIONS(2033), + [anon_sym_o_GT] = ACTIONS(2033), + [anon_sym_err_PLUSout_GT] = ACTIONS(2033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), + [anon_sym_o_PLUSe_GT] = ACTIONS(2033), + [anon_sym_e_PLUSo_GT] = ACTIONS(2033), + [anon_sym_err_GT_GT] = ACTIONS(2035), + [anon_sym_out_GT_GT] = ACTIONS(2035), + [anon_sym_e_GT_GT] = ACTIONS(2035), + [anon_sym_o_GT_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), + [aux_sym_unquoted_token1] = ACTIONS(2033), [anon_sym_POUND] = ACTIONS(247), }, [1390] = { [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(1499), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [aux_sym__immediate_decimal_token2] = ACTIONS(4668), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4732), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1391] = { - [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1391), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [anon_sym_0b] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [sym_val_date] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [aux_sym_unquoted_token1] = ACTIONS(1675), [anon_sym_POUND] = ACTIONS(247), }, [1392] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1840), + [sym_path] = STATE(1603), [sym_comment] = STATE(1392), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), + [aux_sym_cmd_identifier_token38] = ACTIONS(1842), + [aux_sym_cmd_identifier_token39] = ACTIONS(1842), + [aux_sym_cmd_identifier_token40] = ACTIONS(1842), + [sym__newline] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_err_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_GT_PIPE] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), + [anon_sym_DOT_DOT_LT] = ACTIONS(1842), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1842), + [aux_sym__val_number_decimal_token3] = ACTIONS(1842), + [aux_sym__val_number_decimal_token4] = ACTIONS(1842), + [aux_sym__val_number_token1] = ACTIONS(1842), + [aux_sym__val_number_token2] = ACTIONS(1842), + [aux_sym__val_number_token3] = ACTIONS(1842), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1840), + [anon_sym_0x] = ACTIONS(1840), + [sym_val_date] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym__str_single_quotes] = ACTIONS(1842), + [sym__str_back_ticks] = ACTIONS(1842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1842), + [anon_sym_out_GT_GT] = ACTIONS(1842), + [anon_sym_e_GT_GT] = ACTIONS(1842), + [anon_sym_o_GT_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), + [aux_sym_unquoted_token1] = ACTIONS(1840), [anon_sym_POUND] = ACTIONS(247), }, [1393] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1848), + [sym_path] = STATE(1603), [sym_comment] = STATE(1393), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [anon_sym_null] = ACTIONS(1846), + [aux_sym_cmd_identifier_token38] = ACTIONS(1846), + [aux_sym_cmd_identifier_token39] = ACTIONS(1846), + [aux_sym_cmd_identifier_token40] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT] = ACTIONS(1846), + [aux_sym__val_number_decimal_token1] = ACTIONS(1844), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1846), + [aux_sym__val_number_token2] = ACTIONS(1846), + [aux_sym__val_number_token3] = ACTIONS(1846), + [anon_sym_0b] = ACTIONS(1844), + [anon_sym_0o] = ACTIONS(1844), + [anon_sym_0x] = ACTIONS(1844), + [sym_val_date] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym__str_single_quotes] = ACTIONS(1846), + [sym__str_back_ticks] = ACTIONS(1846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1846), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1844), + [anon_sym_out_GT] = ACTIONS(1844), + [anon_sym_e_GT] = ACTIONS(1844), + [anon_sym_o_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT] = ACTIONS(1844), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [aux_sym_unquoted_token1] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(247), }, [1394] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1851), + [sym_path] = STATE(1603), [sym_comment] = STATE(1394), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), + [anon_sym_DOT_DOT_LT] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_0b] = ACTIONS(1848), + [anon_sym_0o] = ACTIONS(1848), + [anon_sym_0x] = ACTIONS(1848), + [sym_val_date] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(247), }, [1395] = { [sym_comment] = STATE(1395), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token2] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_null] = ACTIONS(2143), + [aux_sym_cmd_identifier_token38] = ACTIONS(2143), + [aux_sym_cmd_identifier_token39] = ACTIONS(2143), + [aux_sym_cmd_identifier_token40] = ACTIONS(2143), + [sym__newline] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_err_GT_PIPE] = ACTIONS(2143), + [anon_sym_out_GT_PIPE] = ACTIONS(2143), + [anon_sym_e_GT_PIPE] = ACTIONS(2143), + [anon_sym_o_GT_PIPE] = ACTIONS(2143), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2143), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2143), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2143), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2141), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_DOT_DOT2] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2141), + [anon_sym_DOT_DOT_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), + [aux_sym__val_number_decimal_token1] = ACTIONS(2141), + [aux_sym__val_number_decimal_token2] = ACTIONS(2143), + [aux_sym__val_number_decimal_token3] = ACTIONS(2143), + [aux_sym__val_number_decimal_token4] = ACTIONS(2143), + [aux_sym__val_number_token1] = ACTIONS(2143), + [aux_sym__val_number_token2] = ACTIONS(2143), + [aux_sym__val_number_token3] = ACTIONS(2143), + [anon_sym_0b] = ACTIONS(2141), + [anon_sym_0o] = ACTIONS(2141), + [anon_sym_0x] = ACTIONS(2141), + [sym_val_date] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [sym__str_single_quotes] = ACTIONS(2143), + [sym__str_back_ticks] = ACTIONS(2143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), + [anon_sym_err_GT] = ACTIONS(2141), + [anon_sym_out_GT] = ACTIONS(2141), + [anon_sym_e_GT] = ACTIONS(2141), + [anon_sym_o_GT] = ACTIONS(2141), + [anon_sym_err_PLUSout_GT] = ACTIONS(2141), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2141), + [anon_sym_o_PLUSe_GT] = ACTIONS(2141), + [anon_sym_e_PLUSo_GT] = ACTIONS(2141), + [anon_sym_err_GT_GT] = ACTIONS(2143), + [anon_sym_out_GT_GT] = ACTIONS(2143), + [anon_sym_e_GT_GT] = ACTIONS(2143), + [anon_sym_o_GT_GT] = ACTIONS(2143), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2143), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2143), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2143), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2143), + [aux_sym_unquoted_token1] = ACTIONS(2141), [anon_sym_POUND] = ACTIONS(247), }, [1396] = { + [sym_cell_path] = STATE(1853), + [sym_path] = STATE(1603), [sym_comment] = STATE(1396), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1854), + [aux_sym_cmd_identifier_token38] = ACTIONS(1854), + [aux_sym_cmd_identifier_token39] = ACTIONS(1854), + [aux_sym_cmd_identifier_token40] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT] = ACTIONS(1854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1852), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1854), + [aux_sym__val_number_token2] = ACTIONS(1854), + [aux_sym__val_number_token3] = ACTIONS(1854), + [anon_sym_0b] = ACTIONS(1852), + [anon_sym_0o] = ACTIONS(1852), + [anon_sym_0x] = ACTIONS(1852), + [sym_val_date] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym__str_single_quotes] = ACTIONS(1854), + [sym__str_back_ticks] = ACTIONS(1854), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1852), + [anon_sym_out_GT] = ACTIONS(1852), + [anon_sym_e_GT] = ACTIONS(1852), + [anon_sym_o_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT] = ACTIONS(1852), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [aux_sym_unquoted_token1] = ACTIONS(1852), [anon_sym_POUND] = ACTIONS(247), }, [1397] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1859), + [sym_path] = STATE(1603), [sym_comment] = STATE(1397), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1858), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_null] = ACTIONS(1858), + [aux_sym_cmd_identifier_token38] = ACTIONS(1858), + [aux_sym_cmd_identifier_token39] = ACTIONS(1858), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT] = ACTIONS(1858), + [aux_sym__val_number_decimal_token1] = ACTIONS(1856), + [aux_sym__val_number_decimal_token2] = ACTIONS(1858), + [aux_sym__val_number_decimal_token3] = ACTIONS(1858), + [aux_sym__val_number_decimal_token4] = ACTIONS(1858), + [aux_sym__val_number_token1] = ACTIONS(1858), + [aux_sym__val_number_token2] = ACTIONS(1858), + [aux_sym__val_number_token3] = ACTIONS(1858), + [anon_sym_0b] = ACTIONS(1856), + [anon_sym_0o] = ACTIONS(1856), + [anon_sym_0x] = ACTIONS(1856), + [sym_val_date] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym__str_single_quotes] = ACTIONS(1858), + [sym__str_back_ticks] = ACTIONS(1858), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(247), }, [1398] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1862), + [sym_path] = STATE(1603), [sym_comment] = STATE(1398), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1862), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_null] = ACTIONS(1862), + [aux_sym_cmd_identifier_token38] = ACTIONS(1862), + [aux_sym_cmd_identifier_token39] = ACTIONS(1862), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), + [anon_sym_DOT_DOT_LT] = ACTIONS(1862), + [aux_sym__val_number_decimal_token1] = ACTIONS(1860), + [aux_sym__val_number_decimal_token2] = ACTIONS(1862), + [aux_sym__val_number_decimal_token3] = ACTIONS(1862), + [aux_sym__val_number_decimal_token4] = ACTIONS(1862), + [aux_sym__val_number_token1] = ACTIONS(1862), + [aux_sym__val_number_token2] = ACTIONS(1862), + [aux_sym__val_number_token3] = ACTIONS(1862), + [anon_sym_0b] = ACTIONS(1860), + [anon_sym_0o] = ACTIONS(1860), + [anon_sym_0x] = ACTIONS(1860), + [sym_val_date] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym__str_single_quotes] = ACTIONS(1862), + [sym__str_back_ticks] = ACTIONS(1862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), + [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(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_unquoted_token1] = ACTIONS(1860), [anon_sym_POUND] = ACTIONS(247), }, [1399] = { - [sym__expr_parenthesized_immediate] = STATE(7413), + [sym_cell_path] = STATE(1878), + [sym_path] = STATE(1603), [sym_comment] = STATE(1399), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1866), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1864), + [aux_sym__val_number_decimal_token2] = ACTIONS(1866), + [aux_sym__val_number_decimal_token3] = ACTIONS(1866), + [aux_sym__val_number_decimal_token4] = ACTIONS(1866), + [aux_sym__val_number_token1] = ACTIONS(1866), + [aux_sym__val_number_token2] = ACTIONS(1866), + [aux_sym__val_number_token3] = ACTIONS(1866), + [anon_sym_0b] = ACTIONS(1864), + [anon_sym_0o] = ACTIONS(1864), + [anon_sym_0x] = ACTIONS(1864), + [sym_val_date] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym__str_single_quotes] = ACTIONS(1866), + [sym__str_back_ticks] = ACTIONS(1866), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1866), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1864), [anon_sym_POUND] = ACTIONS(247), }, [1400] = { + [sym_cell_path] = STATE(1879), + [sym_path] = STATE(1603), [sym_comment] = STATE(1400), - [anon_sym_true] = ACTIONS(4747), - [anon_sym_false] = ACTIONS(4747), - [anon_sym_null] = ACTIONS(4747), - [aux_sym_cmd_identifier_token38] = ACTIONS(4747), - [aux_sym_cmd_identifier_token39] = ACTIONS(4747), - [aux_sym_cmd_identifier_token40] = ACTIONS(4747), - [sym__newline] = ACTIONS(4749), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_err_GT_PIPE] = ACTIONS(4749), - [anon_sym_out_GT_PIPE] = ACTIONS(4749), - [anon_sym_e_GT_PIPE] = ACTIONS(4749), - [anon_sym_o_GT_PIPE] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_RPAREN] = ACTIONS(4749), - [anon_sym_DOLLAR] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4747), - [aux_sym_ctrl_match_token1] = ACTIONS(4749), - [anon_sym_RBRACE] = ACTIONS(4749), - [anon_sym_DOT_DOT] = ACTIONS(4747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4749), - [anon_sym_DOT_DOT_LT] = ACTIONS(4749), - [aux_sym__val_number_decimal_token1] = ACTIONS(4747), - [aux_sym__val_number_decimal_token2] = ACTIONS(4747), - [aux_sym__val_number_decimal_token3] = ACTIONS(4749), - [aux_sym__val_number_decimal_token4] = ACTIONS(4749), - [aux_sym__val_number_token1] = ACTIONS(4747), - [aux_sym__val_number_token2] = ACTIONS(4747), - [aux_sym__val_number_token3] = ACTIONS(4747), - [anon_sym_0b] = ACTIONS(4747), - [anon_sym_0o] = ACTIONS(4747), - [anon_sym_0x] = ACTIONS(4747), - [sym_val_date] = ACTIONS(4747), - [anon_sym_DQUOTE] = ACTIONS(4749), - [sym__str_single_quotes] = ACTIONS(4749), - [sym__str_back_ticks] = ACTIONS(4749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4749), - [anon_sym_err_GT] = ACTIONS(4747), - [anon_sym_out_GT] = ACTIONS(4747), - [anon_sym_e_GT] = ACTIONS(4747), - [anon_sym_o_GT] = ACTIONS(4747), - [anon_sym_err_PLUSout_GT] = ACTIONS(4747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4747), - [anon_sym_o_PLUSe_GT] = ACTIONS(4747), - [anon_sym_e_PLUSo_GT] = ACTIONS(4747), - [anon_sym_err_GT_GT] = ACTIONS(4749), - [anon_sym_out_GT_GT] = ACTIONS(4749), - [anon_sym_e_GT_GT] = ACTIONS(4749), - [anon_sym_o_GT_GT] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4749), - [anon_sym_EQ2] = ACTIONS(4751), - [sym_short_flag_identifier] = ACTIONS(4753), - [aux_sym_unquoted_token1] = ACTIONS(4747), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1870), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [anon_sym_null] = ACTIONS(1870), + [aux_sym_cmd_identifier_token38] = ACTIONS(1870), + [aux_sym_cmd_identifier_token39] = ACTIONS(1870), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1870), + [anon_sym_DOT_DOT_LT] = ACTIONS(1870), + [aux_sym__val_number_decimal_token1] = ACTIONS(1868), + [aux_sym__val_number_decimal_token2] = ACTIONS(1870), + [aux_sym__val_number_decimal_token3] = ACTIONS(1870), + [aux_sym__val_number_decimal_token4] = ACTIONS(1870), + [aux_sym__val_number_token1] = ACTIONS(1870), + [aux_sym__val_number_token2] = ACTIONS(1870), + [aux_sym__val_number_token3] = ACTIONS(1870), + [anon_sym_0b] = ACTIONS(1868), + [anon_sym_0o] = ACTIONS(1868), + [anon_sym_0x] = ACTIONS(1868), + [sym_val_date] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym__str_single_quotes] = ACTIONS(1870), + [sym__str_back_ticks] = ACTIONS(1870), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1870), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1870), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(247), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4696), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [aux_sym_cmd_identifier_token38] = ACTIONS(4734), + [aux_sym_cmd_identifier_token39] = ACTIONS(4734), + [aux_sym_cmd_identifier_token40] = ACTIONS(4734), + [sym__newline] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_err_GT_PIPE] = ACTIONS(4734), + [anon_sym_out_GT_PIPE] = ACTIONS(4734), + [anon_sym_e_GT_PIPE] = ACTIONS(4734), + [anon_sym_o_GT_PIPE] = ACTIONS(4734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT2] = ACTIONS(4716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4736), + [anon_sym_DOT_DOT_LT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), + [aux_sym__val_number_decimal_token1] = ACTIONS(4736), + [aux_sym__val_number_decimal_token2] = ACTIONS(4734), + [aux_sym__val_number_decimal_token3] = ACTIONS(4734), + [aux_sym__val_number_decimal_token4] = ACTIONS(4734), + [aux_sym__val_number_token1] = ACTIONS(4734), + [aux_sym__val_number_token2] = ACTIONS(4734), + [aux_sym__val_number_token3] = ACTIONS(4734), + [anon_sym_0b] = ACTIONS(4736), + [anon_sym_0o] = ACTIONS(4736), + [anon_sym_0x] = ACTIONS(4736), + [sym_val_date] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [sym__str_single_quotes] = ACTIONS(4734), + [sym__str_back_ticks] = ACTIONS(4734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), + [anon_sym_err_GT] = ACTIONS(4736), + [anon_sym_out_GT] = ACTIONS(4736), + [anon_sym_e_GT] = ACTIONS(4736), + [anon_sym_o_GT] = ACTIONS(4736), + [anon_sym_err_PLUSout_GT] = ACTIONS(4736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4736), + [anon_sym_o_PLUSe_GT] = ACTIONS(4736), + [anon_sym_e_PLUSo_GT] = ACTIONS(4736), + [anon_sym_err_GT_GT] = ACTIONS(4734), + [anon_sym_out_GT_GT] = ACTIONS(4734), + [anon_sym_e_GT_GT] = ACTIONS(4734), + [anon_sym_o_GT_GT] = ACTIONS(4734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4734), + [aux_sym_unquoted_token1] = ACTIONS(4736), [anon_sym_POUND] = ACTIONS(247), }, [1402] = { + [sym__expr_parenthesized_immediate] = STATE(7224), [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [aux_sym_cmd_identifier_token38] = ACTIONS(2021), - [aux_sym_cmd_identifier_token39] = ACTIONS(2021), - [aux_sym_cmd_identifier_token40] = ACTIONS(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2019), - [aux_sym_ctrl_match_token1] = ACTIONS(2021), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token3] = ACTIONS(2021), - [aux_sym__val_number_decimal_token4] = ACTIONS(2021), - [aux_sym__val_number_token1] = ACTIONS(2021), - [aux_sym__val_number_token2] = ACTIONS(2021), - [aux_sym__val_number_token3] = ACTIONS(2021), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2019), - [anon_sym_out_GT] = ACTIONS(2019), - [anon_sym_e_GT] = ACTIONS(2019), - [anon_sym_o_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT] = ACTIONS(2019), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [aux_sym_unquoted_token1] = ACTIONS(2019), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1572), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4608), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4608), + [sym_filesize_unit] = ACTIONS(4738), + [sym_duration_unit] = ACTIONS(4740), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [aux_sym_unquoted_token2] = ACTIONS(4742), [anon_sym_POUND] = ACTIONS(247), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(4704), - [anon_sym_true] = ACTIONS(4704), - [anon_sym_false] = ACTIONS(4704), - [anon_sym_null] = ACTIONS(4704), - [aux_sym_cmd_identifier_token38] = ACTIONS(4704), - [aux_sym_cmd_identifier_token39] = ACTIONS(4704), - [aux_sym_cmd_identifier_token40] = ACTIONS(4704), - [sym__newline] = ACTIONS(4704), - [anon_sym_SEMI] = ACTIONS(4704), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_err_GT_PIPE] = ACTIONS(4704), - [anon_sym_out_GT_PIPE] = ACTIONS(4704), - [anon_sym_e_GT_PIPE] = ACTIONS(4704), - [anon_sym_o_GT_PIPE] = ACTIONS(4704), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4704), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4704), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4704), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4704), - [anon_sym_LPAREN] = ACTIONS(4704), - [anon_sym_DOLLAR] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4706), - [aux_sym_ctrl_match_token1] = ACTIONS(4704), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_DOT_DOT2] = ACTIONS(4755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4706), - [anon_sym_DOT_DOT_LT] = ACTIONS(4706), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), - [aux_sym__val_number_decimal_token1] = ACTIONS(4706), - [aux_sym__val_number_decimal_token2] = ACTIONS(4704), - [aux_sym__val_number_decimal_token3] = ACTIONS(4704), - [aux_sym__val_number_decimal_token4] = ACTIONS(4704), - [aux_sym__val_number_token1] = ACTIONS(4704), - [aux_sym__val_number_token2] = ACTIONS(4704), - [aux_sym__val_number_token3] = ACTIONS(4704), - [anon_sym_0b] = ACTIONS(4706), - [anon_sym_0o] = ACTIONS(4706), - [anon_sym_0x] = ACTIONS(4706), - [sym_val_date] = ACTIONS(4704), - [anon_sym_DQUOTE] = ACTIONS(4704), - [sym__str_single_quotes] = ACTIONS(4704), - [sym__str_back_ticks] = ACTIONS(4704), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4704), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4704), - [anon_sym_err_GT] = ACTIONS(4706), - [anon_sym_out_GT] = ACTIONS(4706), - [anon_sym_e_GT] = ACTIONS(4706), - [anon_sym_o_GT] = ACTIONS(4706), - [anon_sym_err_PLUSout_GT] = ACTIONS(4706), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4706), - [anon_sym_o_PLUSe_GT] = ACTIONS(4706), - [anon_sym_e_PLUSo_GT] = ACTIONS(4706), - [anon_sym_err_GT_GT] = ACTIONS(4704), - [anon_sym_out_GT_GT] = ACTIONS(4704), - [anon_sym_e_GT_GT] = ACTIONS(4704), - [anon_sym_o_GT_GT] = ACTIONS(4704), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4704), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4704), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4704), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4704), - [aux_sym_unquoted_token1] = ACTIONS(4706), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4600), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1404] = { + [sym_cell_path] = STATE(1881), + [sym_path] = STATE(1603), [sym_comment] = STATE(1404), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1874), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(247), }, [1405] = { + [sym_cell_path] = STATE(1882), + [sym_path] = STATE(1603), [sym_comment] = STATE(1405), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1076), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [aux_sym_ctrl_match_token1] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token3] = ACTIONS(1076), - [aux_sym__val_number_decimal_token4] = ACTIONS(1076), - [aux_sym__val_number_token1] = ACTIONS(1076), - [aux_sym__val_number_token2] = ACTIONS(1076), - [aux_sym__val_number_token3] = ACTIONS(1076), - [anon_sym_0b] = ACTIONS(1076), - [anon_sym_0o] = ACTIONS(1076), - [anon_sym_0x] = ACTIONS(1076), - [sym_val_date] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym__str_single_quotes] = ACTIONS(1078), - [sym__str_back_ticks] = ACTIONS(1078), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1078), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1078), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1076), - [anon_sym_out_GT_GT] = ACTIONS(1076), - [anon_sym_e_GT_GT] = ACTIONS(1076), - [anon_sym_o_GT_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), - [aux_sym_unquoted_token1] = ACTIONS(1076), - [aux_sym_unquoted_token4] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1878), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), + [aux_sym_cmd_identifier_token38] = ACTIONS(1878), + [aux_sym_cmd_identifier_token39] = ACTIONS(1878), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1876), + [aux_sym__val_number_decimal_token2] = ACTIONS(1878), + [aux_sym__val_number_decimal_token3] = ACTIONS(1878), + [aux_sym__val_number_decimal_token4] = ACTIONS(1878), + [aux_sym__val_number_token1] = ACTIONS(1878), + [aux_sym__val_number_token2] = ACTIONS(1878), + [aux_sym__val_number_token3] = ACTIONS(1878), + [anon_sym_0b] = ACTIONS(1876), + [anon_sym_0o] = ACTIONS(1876), + [anon_sym_0x] = ACTIONS(1876), + [sym_val_date] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym__str_single_quotes] = ACTIONS(1878), + [sym__str_back_ticks] = ACTIONS(1878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1878), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(247), }, [1406] = { + [sym_cell_path] = STATE(1890), + [sym_path] = STATE(1603), [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(1078), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [anon_sym_null] = ACTIONS(1078), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1078), - [aux_sym_cmd_identifier_token40] = ACTIONS(1078), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [aux_sym_ctrl_match_token1] = ACTIONS(1078), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(4755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT] = ACTIONS(1076), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1076), - [aux_sym__val_number_decimal_token2] = ACTIONS(1078), - [aux_sym__val_number_decimal_token3] = ACTIONS(1078), - [aux_sym__val_number_decimal_token4] = ACTIONS(1078), - [aux_sym__val_number_token1] = ACTIONS(1078), - [aux_sym__val_number_token2] = ACTIONS(1078), - [aux_sym__val_number_token3] = ACTIONS(1078), - [anon_sym_0b] = ACTIONS(1076), - [anon_sym_0o] = ACTIONS(1076), - [anon_sym_0x] = ACTIONS(1076), - [sym_val_date] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym__str_single_quotes] = ACTIONS(1078), - [sym__str_back_ticks] = ACTIONS(1078), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1078), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1078), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), - [aux_sym_unquoted_token1] = ACTIONS(1076), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_null] = ACTIONS(1882), + [aux_sym_cmd_identifier_token38] = ACTIONS(1882), + [aux_sym_cmd_identifier_token39] = ACTIONS(1882), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT] = ACTIONS(1882), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1882), + [aux_sym__val_number_decimal_token3] = ACTIONS(1882), + [aux_sym__val_number_decimal_token4] = ACTIONS(1882), + [aux_sym__val_number_token1] = ACTIONS(1882), + [aux_sym__val_number_token2] = ACTIONS(1882), + [aux_sym__val_number_token3] = ACTIONS(1882), + [anon_sym_0b] = ACTIONS(1880), + [anon_sym_0o] = ACTIONS(1880), + [anon_sym_0x] = ACTIONS(1880), + [sym_val_date] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym__str_single_quotes] = ACTIONS(1882), + [sym__str_back_ticks] = ACTIONS(1882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(247), }, [1407] = { + [sym_cell_path] = STATE(1903), + [sym_path] = STATE(1603), [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1886), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = 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_LBRACK] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1884), + [aux_sym__val_number_decimal_token2] = ACTIONS(1886), + [aux_sym__val_number_decimal_token3] = ACTIONS(1886), + [aux_sym__val_number_decimal_token4] = ACTIONS(1886), + [aux_sym__val_number_token1] = ACTIONS(1886), + [aux_sym__val_number_token2] = ACTIONS(1886), + [aux_sym__val_number_token3] = ACTIONS(1886), + [anon_sym_0b] = ACTIONS(1884), + [anon_sym_0o] = ACTIONS(1884), + [anon_sym_0x] = ACTIONS(1884), + [sym_val_date] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym__str_single_quotes] = ACTIONS(1886), + [sym__str_back_ticks] = ACTIONS(1886), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(247), }, [1408] = { + [sym_path] = STATE(1551), [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [anon_sym_null] = ACTIONS(2135), - [aux_sym_cmd_identifier_token38] = ACTIONS(2135), - [aux_sym_cmd_identifier_token39] = ACTIONS(2135), - [aux_sym_cmd_identifier_token40] = ACTIONS(2135), - [sym__newline] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(2135), - [anon_sym_err_GT_PIPE] = ACTIONS(2135), - [anon_sym_out_GT_PIPE] = ACTIONS(2135), - [anon_sym_e_GT_PIPE] = ACTIONS(2135), - [anon_sym_o_GT_PIPE] = ACTIONS(2135), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2135), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2135), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2135), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2133), - [aux_sym_ctrl_match_token1] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2133), - [anon_sym_DOT_DOT2] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_LT] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token3] = ACTIONS(2135), - [aux_sym__val_number_decimal_token4] = ACTIONS(2135), - [aux_sym__val_number_token1] = ACTIONS(2135), - [aux_sym__val_number_token2] = ACTIONS(2135), - [aux_sym__val_number_token3] = ACTIONS(2135), - [anon_sym_0b] = ACTIONS(2133), - [anon_sym_0o] = ACTIONS(2133), - [anon_sym_0x] = ACTIONS(2133), - [sym_val_date] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [sym__str_single_quotes] = ACTIONS(2135), - [sym__str_back_ticks] = ACTIONS(2135), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), - [anon_sym_err_GT] = ACTIONS(2133), - [anon_sym_out_GT] = ACTIONS(2133), - [anon_sym_e_GT] = ACTIONS(2133), - [anon_sym_o_GT] = ACTIONS(2133), - [anon_sym_err_PLUSout_GT] = ACTIONS(2133), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2133), - [anon_sym_o_PLUSe_GT] = ACTIONS(2133), - [anon_sym_e_PLUSo_GT] = ACTIONS(2133), - [anon_sym_err_GT_GT] = ACTIONS(2135), - [anon_sym_out_GT_GT] = ACTIONS(2135), - [anon_sym_e_GT_GT] = ACTIONS(2135), - [anon_sym_o_GT_GT] = ACTIONS(2135), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2135), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2135), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2135), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2135), - [aux_sym_unquoted_token1] = ACTIONS(2133), + [aux_sym_cell_path_repeat1] = STATE(1408), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_0b] = ACTIONS(1015), + [anon_sym_0o] = ACTIONS(1015), + [anon_sym_0x] = ACTIONS(1015), + [sym_val_date] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), + [aux_sym_unquoted_token1] = ACTIONS(1015), [anon_sym_POUND] = ACTIONS(247), }, [1409] = { - [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_cell_path] = STATE(1908), + [sym_path] = STATE(1603), [sym_comment] = STATE(1409), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [anon_sym_null] = ACTIONS(4759), - [aux_sym_cmd_identifier_token38] = ACTIONS(4759), - [aux_sym_cmd_identifier_token39] = ACTIONS(4759), - [aux_sym_cmd_identifier_token40] = ACTIONS(4759), - [sym__newline] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4759), - [anon_sym_PIPE] = ACTIONS(4759), - [anon_sym_err_GT_PIPE] = ACTIONS(4759), - [anon_sym_out_GT_PIPE] = ACTIONS(4759), - [anon_sym_e_GT_PIPE] = ACTIONS(4759), - [anon_sym_o_GT_PIPE] = ACTIONS(4759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4759), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym_RPAREN] = ACTIONS(4759), - [anon_sym_DOLLAR] = ACTIONS(4761), - [anon_sym_DASH_DASH] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4761), - [aux_sym_ctrl_match_token1] = ACTIONS(4759), - [anon_sym_RBRACE] = ACTIONS(4759), - [anon_sym_DOT_DOT] = ACTIONS(4761), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4759), - [anon_sym_DOT_DOT_LT] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4759), - [aux_sym__val_number_decimal_token3] = ACTIONS(4759), - [aux_sym__val_number_decimal_token4] = ACTIONS(4759), - [aux_sym__val_number_token1] = ACTIONS(4759), - [aux_sym__val_number_token2] = ACTIONS(4759), - [aux_sym__val_number_token3] = ACTIONS(4759), - [anon_sym_0b] = ACTIONS(4761), - [anon_sym_0o] = ACTIONS(4761), - [anon_sym_0x] = ACTIONS(4761), - [sym_val_date] = ACTIONS(4759), - [anon_sym_DQUOTE] = ACTIONS(4759), - [sym__str_single_quotes] = ACTIONS(4759), - [sym__str_back_ticks] = ACTIONS(4759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4759), - [anon_sym_err_GT] = ACTIONS(4761), - [anon_sym_out_GT] = ACTIONS(4761), - [anon_sym_e_GT] = ACTIONS(4761), - [anon_sym_o_GT] = ACTIONS(4761), - [anon_sym_err_PLUSout_GT] = ACTIONS(4761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4761), - [anon_sym_o_PLUSe_GT] = ACTIONS(4761), - [anon_sym_e_PLUSo_GT] = ACTIONS(4761), - [anon_sym_err_GT_GT] = ACTIONS(4759), - [anon_sym_out_GT_GT] = ACTIONS(4759), - [anon_sym_e_GT_GT] = ACTIONS(4759), - [anon_sym_o_GT_GT] = ACTIONS(4759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), - [aux_sym_unquoted_token1] = ACTIONS(4761), + [aux_sym_cell_path_repeat1] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [sym__newline] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_err_GT_PIPE] = ACTIONS(1890), + [anon_sym_out_GT_PIPE] = ACTIONS(1890), + [anon_sym_e_GT_PIPE] = ACTIONS(1890), + [anon_sym_o_GT_PIPE] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1888), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [anon_sym_0b] = ACTIONS(1888), + [anon_sym_0o] = ACTIONS(1888), + [anon_sym_0x] = ACTIONS(1888), + [sym_val_date] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1890), + [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(1890), + [anon_sym_out_GT_GT] = ACTIONS(1890), + [anon_sym_e_GT_GT] = ACTIONS(1890), + [anon_sym_o_GT_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1890), + [aux_sym_unquoted_token1] = ACTIONS(1888), [anon_sym_POUND] = ACTIONS(247), }, [1410] = { [sym_comment] = STATE(1410), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [aux_sym_ctrl_match_token1] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(1050), - [aux_sym_expr_binary_token1] = ACTIONS(1050), - [aux_sym_expr_binary_token2] = ACTIONS(1050), - [aux_sym_expr_binary_token3] = ACTIONS(1050), - [aux_sym_expr_binary_token4] = ACTIONS(1050), - [aux_sym_expr_binary_token5] = ACTIONS(1050), - [aux_sym_expr_binary_token6] = ACTIONS(1050), - [aux_sym_expr_binary_token7] = ACTIONS(1050), - [aux_sym_expr_binary_token8] = ACTIONS(1050), - [aux_sym_expr_binary_token9] = ACTIONS(1050), - [aux_sym_expr_binary_token10] = ACTIONS(1050), - [aux_sym_expr_binary_token11] = ACTIONS(1050), - [aux_sym_expr_binary_token12] = ACTIONS(1050), - [aux_sym_expr_binary_token13] = ACTIONS(1050), - [aux_sym_expr_binary_token14] = ACTIONS(1050), - [aux_sym_expr_binary_token15] = ACTIONS(1050), - [aux_sym_expr_binary_token16] = ACTIONS(1050), - [aux_sym_expr_binary_token17] = ACTIONS(1050), - [aux_sym_expr_binary_token18] = ACTIONS(1050), - [aux_sym_expr_binary_token19] = ACTIONS(1050), - [aux_sym_expr_binary_token20] = ACTIONS(1050), - [aux_sym_expr_binary_token21] = ACTIONS(1050), - [aux_sym_expr_binary_token22] = ACTIONS(1050), - [aux_sym_expr_binary_token23] = ACTIONS(1050), - [aux_sym_expr_binary_token24] = ACTIONS(1050), - [aux_sym_expr_binary_token25] = ACTIONS(1050), - [aux_sym_expr_binary_token26] = ACTIONS(1050), - [aux_sym_expr_binary_token27] = ACTIONS(1050), - [aux_sym_expr_binary_token28] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [aux_sym_record_entry_token1] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_0b] = ACTIONS(1058), + [anon_sym_0o] = ACTIONS(1058), + [anon_sym_0x] = ACTIONS(1058), + [sym_val_date] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [aux_sym_unquoted_token1] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, [1411] = { [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(1567), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [aux_sym__immediate_decimal_token2] = ACTIONS(4763), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, [1412] = { + [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1412), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(4747), + [anon_sym_false] = ACTIONS(4747), + [anon_sym_null] = ACTIONS(4747), + [aux_sym_cmd_identifier_token38] = ACTIONS(4747), + [aux_sym_cmd_identifier_token39] = ACTIONS(4747), + [aux_sym_cmd_identifier_token40] = ACTIONS(4747), + [sym__newline] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_err_GT_PIPE] = ACTIONS(4747), + [anon_sym_out_GT_PIPE] = ACTIONS(4747), + [anon_sym_e_GT_PIPE] = ACTIONS(4747), + [anon_sym_o_GT_PIPE] = ACTIONS(4747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4747), + [anon_sym_LBRACK] = ACTIONS(4747), + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4749), + [anon_sym_DASH_DASH] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_LBRACE] = ACTIONS(4747), + [anon_sym_RBRACE] = ACTIONS(4747), + [anon_sym_DOT_DOT] = ACTIONS(4749), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4747), + [anon_sym_DOT_DOT_LT] = ACTIONS(4747), + [aux_sym__val_number_decimal_token1] = ACTIONS(4749), + [aux_sym__val_number_decimal_token2] = ACTIONS(4747), + [aux_sym__val_number_decimal_token3] = ACTIONS(4747), + [aux_sym__val_number_decimal_token4] = ACTIONS(4747), + [aux_sym__val_number_token1] = ACTIONS(4747), + [aux_sym__val_number_token2] = ACTIONS(4747), + [aux_sym__val_number_token3] = ACTIONS(4747), + [anon_sym_0b] = ACTIONS(4749), + [anon_sym_0o] = ACTIONS(4749), + [anon_sym_0x] = ACTIONS(4749), + [sym_val_date] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [sym__str_single_quotes] = ACTIONS(4747), + [sym__str_back_ticks] = ACTIONS(4747), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4747), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4747), + [anon_sym_err_GT] = ACTIONS(4749), + [anon_sym_out_GT] = ACTIONS(4749), + [anon_sym_e_GT] = ACTIONS(4749), + [anon_sym_o_GT] = ACTIONS(4749), + [anon_sym_err_PLUSout_GT] = ACTIONS(4749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4749), + [anon_sym_o_PLUSe_GT] = ACTIONS(4749), + [anon_sym_e_PLUSo_GT] = ACTIONS(4749), + [anon_sym_err_GT_GT] = ACTIONS(4747), + [anon_sym_out_GT_GT] = ACTIONS(4747), + [anon_sym_e_GT_GT] = ACTIONS(4747), + [anon_sym_o_GT_GT] = ACTIONS(4747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4747), + [aux_sym_unquoted_token1] = ACTIONS(4749), [anon_sym_POUND] = ACTIONS(247), }, [1413] = { + [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1413), - [aux_sym_cmd_identifier_token41] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [aux_sym_ctrl_match_token1] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1641), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(4751), + [anon_sym_false] = ACTIONS(4751), + [anon_sym_null] = ACTIONS(4751), + [aux_sym_cmd_identifier_token38] = ACTIONS(4751), + [aux_sym_cmd_identifier_token39] = ACTIONS(4751), + [aux_sym_cmd_identifier_token40] = ACTIONS(4751), + [sym__newline] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_err_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_GT_PIPE] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4753), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4751), + [anon_sym_DOT_DOT_LT] = ACTIONS(4751), + [aux_sym__val_number_decimal_token1] = ACTIONS(4753), + [aux_sym__val_number_decimal_token2] = ACTIONS(4751), + [aux_sym__val_number_decimal_token3] = ACTIONS(4751), + [aux_sym__val_number_decimal_token4] = ACTIONS(4751), + [aux_sym__val_number_token1] = ACTIONS(4751), + [aux_sym__val_number_token2] = ACTIONS(4751), + [aux_sym__val_number_token3] = ACTIONS(4751), + [anon_sym_0b] = ACTIONS(4753), + [anon_sym_0o] = ACTIONS(4753), + [anon_sym_0x] = ACTIONS(4753), + [sym_val_date] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [sym__str_single_quotes] = ACTIONS(4751), + [sym__str_back_ticks] = ACTIONS(4751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4751), + [anon_sym_err_GT] = ACTIONS(4753), + [anon_sym_out_GT] = ACTIONS(4753), + [anon_sym_e_GT] = ACTIONS(4753), + [anon_sym_o_GT] = ACTIONS(4753), + [anon_sym_err_PLUSout_GT] = ACTIONS(4753), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4753), + [anon_sym_o_PLUSe_GT] = ACTIONS(4753), + [anon_sym_e_PLUSo_GT] = ACTIONS(4753), + [anon_sym_err_GT_GT] = ACTIONS(4751), + [anon_sym_out_GT_GT] = ACTIONS(4751), + [anon_sym_e_GT_GT] = ACTIONS(4751), + [anon_sym_o_GT_GT] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4751), + [aux_sym_unquoted_token1] = ACTIONS(4753), [anon_sym_POUND] = ACTIONS(247), }, [1414] = { [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), }, [1415] = { [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token38] = ACTIONS(2067), - [aux_sym_cmd_identifier_token39] = ACTIONS(2067), - [aux_sym_cmd_identifier_token40] = ACTIONS(2067), - [sym__newline] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_err_GT_PIPE] = ACTIONS(2067), - [anon_sym_out_GT_PIPE] = ACTIONS(2067), - [anon_sym_e_GT_PIPE] = ACTIONS(2067), - [anon_sym_o_GT_PIPE] = ACTIONS(2067), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2067), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2067), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2067), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2061), - [aux_sym_ctrl_match_token1] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_DOT_DOT2] = ACTIONS(4765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), - [anon_sym_DOT_DOT_LT] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4767), - [aux_sym__val_number_decimal_token1] = ACTIONS(2061), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [aux_sym__val_number_decimal_token3] = ACTIONS(2067), - [aux_sym__val_number_decimal_token4] = ACTIONS(2067), - [aux_sym__val_number_token1] = ACTIONS(2067), - [aux_sym__val_number_token2] = ACTIONS(2067), - [aux_sym__val_number_token3] = ACTIONS(2067), - [anon_sym_0b] = ACTIONS(2061), - [anon_sym_0o] = ACTIONS(2061), - [anon_sym_0x] = ACTIONS(2061), - [sym_val_date] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [sym__str_single_quotes] = ACTIONS(2067), - [sym__str_back_ticks] = ACTIONS(2067), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2067), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2067), - [anon_sym_err_GT] = ACTIONS(2061), - [anon_sym_out_GT] = ACTIONS(2061), - [anon_sym_e_GT] = ACTIONS(2061), - [anon_sym_o_GT] = ACTIONS(2061), - [anon_sym_err_PLUSout_GT] = ACTIONS(2061), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2061), - [anon_sym_o_PLUSe_GT] = ACTIONS(2061), - [anon_sym_e_PLUSo_GT] = ACTIONS(2061), - [anon_sym_err_GT_GT] = ACTIONS(2067), - [anon_sym_out_GT_GT] = ACTIONS(2067), - [anon_sym_e_GT_GT] = ACTIONS(2067), - [anon_sym_o_GT_GT] = ACTIONS(2067), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2067), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2067), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2067), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2067), - [aux_sym_unquoted_token1] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(247), - }, - [1416] = { - [sym_comment] = STATE(1416), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_err_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_GT_PIPE] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [aux_sym_ctrl_match_token1] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_DOT_DOT] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1040), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_0b] = ACTIONS(1040), - [anon_sym_0o] = ACTIONS(1040), - [anon_sym_0x] = ACTIONS(1040), - [sym_val_date] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1042), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1040), - [anon_sym_out_GT] = ACTIONS(1040), - [anon_sym_e_GT] = ACTIONS(1040), - [anon_sym_o_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT] = ACTIONS(1040), - [anon_sym_err_GT_GT] = ACTIONS(1042), - [anon_sym_out_GT_GT] = ACTIONS(1042), - [anon_sym_e_GT_GT] = ACTIONS(1042), - [anon_sym_o_GT_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), - [aux_sym_unquoted_token1] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1417] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(1417), - [anon_sym_true] = ACTIONS(4769), - [anon_sym_false] = ACTIONS(4769), - [anon_sym_null] = ACTIONS(4769), - [aux_sym_cmd_identifier_token38] = ACTIONS(4769), - [aux_sym_cmd_identifier_token39] = ACTIONS(4769), - [aux_sym_cmd_identifier_token40] = ACTIONS(4769), - [sym__newline] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_err_GT_PIPE] = ACTIONS(4769), - [anon_sym_out_GT_PIPE] = ACTIONS(4769), - [anon_sym_e_GT_PIPE] = ACTIONS(4769), - [anon_sym_o_GT_PIPE] = ACTIONS(4769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_DOLLAR] = ACTIONS(4771), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4771), - [aux_sym_ctrl_match_token1] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_DOT_DOT] = ACTIONS(4771), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4769), - [anon_sym_DOT_DOT_LT] = ACTIONS(4769), - [aux_sym__val_number_decimal_token1] = ACTIONS(4771), - [aux_sym__val_number_decimal_token2] = ACTIONS(4769), - [aux_sym__val_number_decimal_token3] = ACTIONS(4769), - [aux_sym__val_number_decimal_token4] = ACTIONS(4769), - [aux_sym__val_number_token1] = ACTIONS(4769), - [aux_sym__val_number_token2] = ACTIONS(4769), - [aux_sym__val_number_token3] = ACTIONS(4769), - [anon_sym_0b] = ACTIONS(4771), - [anon_sym_0o] = ACTIONS(4771), - [anon_sym_0x] = ACTIONS(4771), - [sym_val_date] = ACTIONS(4769), - [anon_sym_DQUOTE] = ACTIONS(4769), - [sym__str_single_quotes] = ACTIONS(4769), - [sym__str_back_ticks] = ACTIONS(4769), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4769), - [anon_sym_err_GT] = ACTIONS(4771), - [anon_sym_out_GT] = ACTIONS(4771), - [anon_sym_e_GT] = ACTIONS(4771), - [anon_sym_o_GT] = ACTIONS(4771), - [anon_sym_err_PLUSout_GT] = ACTIONS(4771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4771), - [anon_sym_o_PLUSe_GT] = ACTIONS(4771), - [anon_sym_e_PLUSo_GT] = ACTIONS(4771), - [anon_sym_err_GT_GT] = ACTIONS(4769), - [anon_sym_out_GT_GT] = ACTIONS(4769), - [anon_sym_e_GT_GT] = ACTIONS(4769), - [anon_sym_o_GT_GT] = ACTIONS(4769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4769), - [aux_sym_unquoted_token1] = ACTIONS(4771), - [anon_sym_POUND] = ACTIONS(247), - }, - [1418] = { - [sym_comment] = STATE(1418), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [anon_sym_null] = ACTIONS(2259), - [aux_sym_cmd_identifier_token38] = ACTIONS(2259), - [aux_sym_cmd_identifier_token39] = ACTIONS(2259), - [aux_sym_cmd_identifier_token40] = ACTIONS(2259), - [sym__newline] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_err_GT_PIPE] = ACTIONS(2261), - [anon_sym_out_GT_PIPE] = ACTIONS(2261), - [anon_sym_e_GT_PIPE] = ACTIONS(2261), - [anon_sym_o_GT_PIPE] = ACTIONS(2261), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2261), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2261), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2261), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [aux_sym_ctrl_match_token1] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2259), - [anon_sym_DOT_DOT_LT] = ACTIONS(2259), - [aux_sym__val_number_decimal_token1] = ACTIONS(2259), - [aux_sym__val_number_decimal_token2] = ACTIONS(2259), - [aux_sym__val_number_decimal_token3] = ACTIONS(2259), - [aux_sym__val_number_decimal_token4] = ACTIONS(2259), - [aux_sym__val_number_token1] = ACTIONS(2259), - [aux_sym__val_number_token2] = ACTIONS(2259), - [aux_sym__val_number_token3] = ACTIONS(2259), - [anon_sym_0b] = ACTIONS(2259), - [anon_sym_0o] = ACTIONS(2259), - [anon_sym_0x] = ACTIONS(2259), - [sym_val_date] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2261), - [sym__str_single_quotes] = ACTIONS(2261), - [sym__str_back_ticks] = ACTIONS(2261), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2261), - [anon_sym_err_GT] = ACTIONS(2259), - [anon_sym_out_GT] = ACTIONS(2259), - [anon_sym_e_GT] = ACTIONS(2259), - [anon_sym_o_GT] = ACTIONS(2259), - [anon_sym_err_PLUSout_GT] = ACTIONS(2259), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), - [anon_sym_o_PLUSe_GT] = ACTIONS(2259), - [anon_sym_e_PLUSo_GT] = ACTIONS(2259), - [anon_sym_err_GT_GT] = ACTIONS(2259), - [anon_sym_out_GT_GT] = ACTIONS(2259), - [anon_sym_e_GT_GT] = ACTIONS(2259), - [anon_sym_o_GT_GT] = ACTIONS(2259), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2259), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2259), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2259), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2259), - [aux_sym_unquoted_token1] = ACTIONS(2259), - [aux_sym_unquoted_token4] = ACTIONS(2259), - [anon_sym_POUND] = ACTIONS(3), - }, - [1419] = { - [sym_comment] = STATE(1419), - [anon_sym_true] = ACTIONS(2162), - [anon_sym_false] = ACTIONS(2162), - [anon_sym_null] = ACTIONS(2162), - [aux_sym_cmd_identifier_token38] = ACTIONS(2162), - [aux_sym_cmd_identifier_token39] = ACTIONS(2162), - [aux_sym_cmd_identifier_token40] = ACTIONS(2162), - [sym__newline] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_err_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_GT_PIPE] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2160), - [aux_sym_ctrl_match_token1] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2160), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT] = ACTIONS(2162), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2162), - [aux_sym__val_number_decimal_token3] = ACTIONS(2162), - [aux_sym__val_number_decimal_token4] = ACTIONS(2162), - [aux_sym__val_number_token1] = ACTIONS(2162), - [aux_sym__val_number_token2] = ACTIONS(2162), - [aux_sym__val_number_token3] = ACTIONS(2162), - [anon_sym_0b] = ACTIONS(2160), - [anon_sym_0o] = ACTIONS(2160), - [anon_sym_0x] = ACTIONS(2160), - [sym_val_date] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(2162), - [sym__str_single_quotes] = ACTIONS(2162), - [sym__str_back_ticks] = ACTIONS(2162), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(2160), - [anon_sym_out_GT] = ACTIONS(2160), - [anon_sym_e_GT] = ACTIONS(2160), - [anon_sym_o_GT] = ACTIONS(2160), - [anon_sym_err_PLUSout_GT] = ACTIONS(2160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), - [anon_sym_o_PLUSe_GT] = ACTIONS(2160), - [anon_sym_e_PLUSo_GT] = ACTIONS(2160), - [anon_sym_err_GT_GT] = ACTIONS(2162), - [anon_sym_out_GT_GT] = ACTIONS(2162), - [anon_sym_e_GT_GT] = ACTIONS(2162), - [anon_sym_o_GT_GT] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), - [aux_sym_unquoted_token1] = ACTIONS(2160), - [aux_sym_unquoted_token2] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(247), - }, - [1420] = { - [sym_comment] = STATE(1420), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [sym__newline] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_err_GT_PIPE] = ACTIONS(1804), - [anon_sym_out_GT_PIPE] = ACTIONS(1804), - [anon_sym_e_GT_PIPE] = ACTIONS(1804), - [anon_sym_o_GT_PIPE] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1796), - [aux_sym_ctrl_match_token1] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_LPAREN2] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1804), - [anon_sym_DOT_DOT_LT] = ACTIONS(1804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_decimal_token4] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1804), - [anon_sym_out_GT_GT] = ACTIONS(1804), - [anon_sym_e_GT_GT] = ACTIONS(1804), - [anon_sym_o_GT_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1796), - [aux_sym_unquoted_token2] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(247), - }, - [1421] = { - [sym_comment] = STATE(1421), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [aux_sym_ctrl_match_token1] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_0b] = ACTIONS(1044), - [anon_sym_0o] = ACTIONS(1044), - [anon_sym_0x] = ACTIONS(1044), - [sym_val_date] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [aux_sym_unquoted_token1] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [1422] = { - [sym_comment] = STATE(1422), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1423] = { - [sym_comment] = STATE(1423), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_err_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_GT_PIPE] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [aux_sym_ctrl_match_token1] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_0b] = ACTIONS(1048), - [anon_sym_0o] = ACTIONS(1048), - [anon_sym_0x] = ACTIONS(1048), - [sym_val_date] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [aux_sym_unquoted_token1] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [1424] = { - [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1641), - [aux_sym_expr_binary_token1] = ACTIONS(1641), - [aux_sym_expr_binary_token2] = ACTIONS(1641), - [aux_sym_expr_binary_token3] = ACTIONS(1641), - [aux_sym_expr_binary_token4] = ACTIONS(1641), - [aux_sym_expr_binary_token5] = ACTIONS(1641), - [aux_sym_expr_binary_token6] = ACTIONS(1641), - [aux_sym_expr_binary_token7] = ACTIONS(1641), - [aux_sym_expr_binary_token8] = ACTIONS(1641), - [aux_sym_expr_binary_token9] = ACTIONS(1641), - [aux_sym_expr_binary_token10] = ACTIONS(1641), - [aux_sym_expr_binary_token11] = ACTIONS(1641), - [aux_sym_expr_binary_token12] = ACTIONS(1641), - [aux_sym_expr_binary_token13] = ACTIONS(1641), - [aux_sym_expr_binary_token14] = ACTIONS(1641), - [aux_sym_expr_binary_token15] = ACTIONS(1641), - [aux_sym_expr_binary_token16] = ACTIONS(1641), - [aux_sym_expr_binary_token17] = ACTIONS(1641), - [aux_sym_expr_binary_token18] = ACTIONS(1641), - [aux_sym_expr_binary_token19] = ACTIONS(1641), - [aux_sym_expr_binary_token20] = ACTIONS(1641), - [aux_sym_expr_binary_token21] = ACTIONS(1641), - [aux_sym_expr_binary_token22] = ACTIONS(1641), - [aux_sym_expr_binary_token23] = ACTIONS(1641), - [aux_sym_expr_binary_token24] = ACTIONS(1641), - [aux_sym_expr_binary_token25] = ACTIONS(1641), - [aux_sym_expr_binary_token26] = ACTIONS(1641), - [aux_sym_expr_binary_token27] = ACTIONS(1641), - [aux_sym_expr_binary_token28] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [sym_filesize_unit] = ACTIONS(1641), - [sym_duration_unit] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1639), - [anon_sym_out_GT] = ACTIONS(1639), - [anon_sym_e_GT] = ACTIONS(1639), - [anon_sym_o_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT] = ACTIONS(1639), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [aux_sym_unquoted_token2] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(247), - }, - [1425] = { - [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(4773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [aux_sym_unquoted_token2] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - }, - [1426] = { - [sym_comment] = STATE(1426), - [aux_sym_cmd_identifier_token41] = ACTIONS(1565), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [aux_sym_ctrl_match_token1] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(247), - }, - [1427] = { - [sym_comment] = STATE(1427), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [aux_sym_cmd_identifier_token38] = ACTIONS(2293), - [aux_sym_cmd_identifier_token39] = ACTIONS(2293), - [aux_sym_cmd_identifier_token40] = ACTIONS(2293), - [sym__newline] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_err_GT_PIPE] = ACTIONS(2297), - [anon_sym_out_GT_PIPE] = ACTIONS(2297), - [anon_sym_e_GT_PIPE] = ACTIONS(2297), - [anon_sym_o_GT_PIPE] = ACTIONS(2297), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2297), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2297), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2297), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [aux_sym_ctrl_match_token1] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2293), - [anon_sym_DOT_DOT_LT] = ACTIONS(2293), - [aux_sym__val_number_decimal_token1] = ACTIONS(2293), - [aux_sym__val_number_decimal_token2] = ACTIONS(2293), - [aux_sym__val_number_decimal_token3] = ACTIONS(2293), - [aux_sym__val_number_decimal_token4] = ACTIONS(2293), - [aux_sym__val_number_token1] = ACTIONS(2293), - [aux_sym__val_number_token2] = ACTIONS(2293), - [aux_sym__val_number_token3] = ACTIONS(2293), - [anon_sym_0b] = ACTIONS(2293), - [anon_sym_0o] = ACTIONS(2293), - [anon_sym_0x] = ACTIONS(2293), - [sym_val_date] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2297), - [sym__str_back_ticks] = ACTIONS(2297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2297), - [anon_sym_err_GT] = ACTIONS(2293), - [anon_sym_out_GT] = ACTIONS(2293), - [anon_sym_e_GT] = ACTIONS(2293), - [anon_sym_o_GT] = ACTIONS(2293), - [anon_sym_err_PLUSout_GT] = ACTIONS(2293), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2293), - [anon_sym_o_PLUSe_GT] = ACTIONS(2293), - [anon_sym_e_PLUSo_GT] = ACTIONS(2293), - [anon_sym_err_GT_GT] = ACTIONS(2293), - [anon_sym_out_GT_GT] = ACTIONS(2293), - [anon_sym_e_GT_GT] = ACTIONS(2293), - [anon_sym_o_GT_GT] = ACTIONS(2293), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2293), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2293), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2293), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2293), - [aux_sym_unquoted_token1] = ACTIONS(2293), - [aux_sym_unquoted_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - }, - [1428] = { - [sym_comment] = STATE(1428), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), - [aux_sym_cmd_identifier_token38] = ACTIONS(2222), - [aux_sym_cmd_identifier_token39] = ACTIONS(2222), - [aux_sym_cmd_identifier_token40] = ACTIONS(2222), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2218), - [aux_sym_ctrl_match_token1] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [anon_sym_0b] = ACTIONS(2218), - [anon_sym_0o] = ACTIONS(2218), - [anon_sym_0x] = ACTIONS(2218), - [sym_val_date] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [sym__str_single_quotes] = ACTIONS(2222), - [sym__str_back_ticks] = ACTIONS(2222), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2218), - [anon_sym_out_GT] = ACTIONS(2218), - [anon_sym_e_GT] = ACTIONS(2218), - [anon_sym_o_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT] = ACTIONS(2218), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [aux_sym_unquoted_token1] = ACTIONS(2218), - [aux_sym_unquoted_token2] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(247), - }, - [1429] = { - [sym_comment] = STATE(1429), - [aux_sym_cmd_identifier_token41] = ACTIONS(1517), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1519), - [aux_sym_expr_binary_token2] = ACTIONS(1519), - [aux_sym_expr_binary_token3] = ACTIONS(1519), - [aux_sym_expr_binary_token4] = ACTIONS(1519), - [aux_sym_expr_binary_token5] = ACTIONS(1519), - [aux_sym_expr_binary_token6] = ACTIONS(1519), - [aux_sym_expr_binary_token7] = ACTIONS(1519), - [aux_sym_expr_binary_token8] = ACTIONS(1519), - [aux_sym_expr_binary_token9] = ACTIONS(1519), - [aux_sym_expr_binary_token10] = ACTIONS(1519), - [aux_sym_expr_binary_token11] = ACTIONS(1519), - [aux_sym_expr_binary_token12] = ACTIONS(1519), - [aux_sym_expr_binary_token13] = ACTIONS(1519), - [aux_sym_expr_binary_token14] = ACTIONS(1519), - [aux_sym_expr_binary_token15] = ACTIONS(1519), - [aux_sym_expr_binary_token16] = ACTIONS(1519), - [aux_sym_expr_binary_token17] = ACTIONS(1519), - [aux_sym_expr_binary_token18] = ACTIONS(1519), - [aux_sym_expr_binary_token19] = ACTIONS(1519), - [aux_sym_expr_binary_token20] = ACTIONS(1519), - [aux_sym_expr_binary_token21] = ACTIONS(1519), - [aux_sym_expr_binary_token22] = ACTIONS(1519), - [aux_sym_expr_binary_token23] = ACTIONS(1519), - [aux_sym_expr_binary_token24] = ACTIONS(1519), - [aux_sym_expr_binary_token25] = ACTIONS(1519), - [aux_sym_expr_binary_token26] = ACTIONS(1519), - [aux_sym_expr_binary_token27] = ACTIONS(1519), - [aux_sym_expr_binary_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1430] = { - [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(247), - }, - [1431] = { - [sym_comment] = STATE(1431), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1036), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), + [sym__newline] = ACTIONS(1034), [anon_sym_SEMI] = ACTIONS(1036), [anon_sym_PIPE] = ACTIONS(1036), [anon_sym_err_GT_PIPE] = ACTIONS(1036), @@ -204868,35 +206639,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), [anon_sym_DASH_DASH] = ACTIONS(1036), [anon_sym_DASH] = ACTIONS(1034), - [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(4775), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(1036), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [aux_sym_record_entry_token1] = ACTIONS(1036), [anon_sym_err_GT] = ACTIONS(1034), [anon_sym_out_GT] = ACTIONS(1034), [anon_sym_e_GT] = ACTIONS(1034), @@ -204913,146 +206691,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [1432] = { - [sym_comment] = STATE(1432), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [aux_sym__immediate_decimal_token2] = ACTIONS(4779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), + [1416] = { + [sym_comment] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4732), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [aux_sym_unquoted_token2] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(247), }, - [1433] = { - [sym__expr_parenthesized_immediate] = STATE(7413), - [sym_comment] = STATE(1433), - [sym__newline] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_err_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_GT_PIPE] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [aux_sym_ctrl_match_token1] = ACTIONS(4743), - [anon_sym_RBRACE] = ACTIONS(4743), - [anon_sym_EQ_GT] = ACTIONS(4743), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4743), - [aux_sym_expr_binary_token2] = ACTIONS(4743), - [aux_sym_expr_binary_token3] = ACTIONS(4743), - [aux_sym_expr_binary_token4] = ACTIONS(4743), - [aux_sym_expr_binary_token5] = ACTIONS(4743), - [aux_sym_expr_binary_token6] = ACTIONS(4743), - [aux_sym_expr_binary_token7] = ACTIONS(4743), - [aux_sym_expr_binary_token8] = ACTIONS(4743), - [aux_sym_expr_binary_token9] = ACTIONS(4743), - [aux_sym_expr_binary_token10] = ACTIONS(4743), - [aux_sym_expr_binary_token11] = ACTIONS(4743), - [aux_sym_expr_binary_token12] = ACTIONS(4743), - [aux_sym_expr_binary_token13] = ACTIONS(4743), - [aux_sym_expr_binary_token14] = ACTIONS(4743), - [aux_sym_expr_binary_token15] = ACTIONS(4743), - [aux_sym_expr_binary_token16] = ACTIONS(4743), - [aux_sym_expr_binary_token17] = ACTIONS(4743), - [aux_sym_expr_binary_token18] = ACTIONS(4743), - [aux_sym_expr_binary_token19] = ACTIONS(4743), - [aux_sym_expr_binary_token20] = ACTIONS(4743), - [aux_sym_expr_binary_token21] = ACTIONS(4743), - [aux_sym_expr_binary_token22] = ACTIONS(4743), - [aux_sym_expr_binary_token23] = ACTIONS(4743), - [aux_sym_expr_binary_token24] = ACTIONS(4743), - [aux_sym_expr_binary_token25] = ACTIONS(4743), - [aux_sym_expr_binary_token26] = ACTIONS(4743), - [aux_sym_expr_binary_token27] = ACTIONS(4743), - [aux_sym_expr_binary_token28] = ACTIONS(4743), - [anon_sym_err_GT] = ACTIONS(4745), - [anon_sym_out_GT] = ACTIONS(4745), - [anon_sym_e_GT] = ACTIONS(4745), - [anon_sym_o_GT] = ACTIONS(4745), - [anon_sym_err_PLUSout_GT] = ACTIONS(4745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), - [anon_sym_o_PLUSe_GT] = ACTIONS(4745), - [anon_sym_e_PLUSo_GT] = ACTIONS(4745), - [anon_sym_err_GT_GT] = ACTIONS(4743), - [anon_sym_out_GT_GT] = ACTIONS(4743), - [anon_sym_e_GT_GT] = ACTIONS(4743), - [anon_sym_o_GT_GT] = ACTIONS(4743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), + [1417] = { + [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_comment] = STATE(1417), + [sym__newline] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_err_GT_PIPE] = ACTIONS(4755), + [anon_sym_out_GT_PIPE] = ACTIONS(4755), + [anon_sym_e_GT_PIPE] = ACTIONS(4755), + [anon_sym_o_GT_PIPE] = ACTIONS(4755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_DASH_DASH] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_EQ_GT] = ACTIONS(4755), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4755), + [aux_sym_expr_binary_token2] = ACTIONS(4755), + [aux_sym_expr_binary_token3] = ACTIONS(4755), + [aux_sym_expr_binary_token4] = ACTIONS(4755), + [aux_sym_expr_binary_token5] = ACTIONS(4755), + [aux_sym_expr_binary_token6] = ACTIONS(4755), + [aux_sym_expr_binary_token7] = ACTIONS(4755), + [aux_sym_expr_binary_token8] = ACTIONS(4755), + [aux_sym_expr_binary_token9] = ACTIONS(4755), + [aux_sym_expr_binary_token10] = ACTIONS(4755), + [aux_sym_expr_binary_token11] = ACTIONS(4755), + [aux_sym_expr_binary_token12] = ACTIONS(4755), + [aux_sym_expr_binary_token13] = ACTIONS(4755), + [aux_sym_expr_binary_token14] = ACTIONS(4755), + [aux_sym_expr_binary_token15] = ACTIONS(4755), + [aux_sym_expr_binary_token16] = ACTIONS(4755), + [aux_sym_expr_binary_token17] = ACTIONS(4755), + [aux_sym_expr_binary_token18] = ACTIONS(4755), + [aux_sym_expr_binary_token19] = ACTIONS(4755), + [aux_sym_expr_binary_token20] = ACTIONS(4755), + [aux_sym_expr_binary_token21] = ACTIONS(4755), + [aux_sym_expr_binary_token22] = ACTIONS(4755), + [aux_sym_expr_binary_token23] = ACTIONS(4755), + [aux_sym_expr_binary_token24] = ACTIONS(4755), + [aux_sym_expr_binary_token25] = ACTIONS(4755), + [aux_sym_expr_binary_token26] = ACTIONS(4755), + [aux_sym_expr_binary_token27] = ACTIONS(4755), + [aux_sym_expr_binary_token28] = ACTIONS(4755), + [anon_sym_err_GT] = ACTIONS(4757), + [anon_sym_out_GT] = ACTIONS(4757), + [anon_sym_e_GT] = ACTIONS(4757), + [anon_sym_o_GT] = ACTIONS(4757), + [anon_sym_err_PLUSout_GT] = ACTIONS(4757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4757), + [anon_sym_o_PLUSe_GT] = ACTIONS(4757), + [anon_sym_e_PLUSo_GT] = ACTIONS(4757), + [anon_sym_err_GT_GT] = ACTIONS(4755), + [anon_sym_out_GT_GT] = ACTIONS(4755), + [anon_sym_e_GT_GT] = ACTIONS(4755), + [anon_sym_o_GT_GT] = ACTIONS(4755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4755), [anon_sym_POUND] = ACTIONS(247), }, - [1434] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(1434), + [1418] = { + [sym_comment] = STATE(1418), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_EQ_GT] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), + }, + [1419] = { + [sym_comment] = STATE(1419), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(247), + }, + [1420] = { + [sym_comment] = STATE(1420), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), + }, + [1421] = { + [sym_comment] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(1520), + [aux_sym_cmd_identifier_token41] = ACTIONS(1518), + [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), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym__immediate_decimal_token2] = ACTIONS(4702), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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(247), + }, + [1422] = { + [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_comment] = STATE(1422), [sym__newline] = ACTIONS(4759), [anon_sym_SEMI] = ACTIONS(4759), [anon_sym_PIPE] = ACTIONS(4759), @@ -205067,10 +207112,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4759), [anon_sym_DASH_DASH] = ACTIONS(4759), [anon_sym_DASH] = ACTIONS(4761), - [aux_sym_ctrl_match_token1] = ACTIONS(4759), + [anon_sym_LBRACE] = ACTIONS(4759), [anon_sym_RBRACE] = ACTIONS(4759), [anon_sym_EQ_GT] = ACTIONS(4759), - [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3978), [aux_sym_expr_binary_token1] = ACTIONS(4759), [aux_sym_expr_binary_token2] = ACTIONS(4759), [aux_sym_expr_binary_token3] = ACTIONS(4759), @@ -205117,1884 +207162,3224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), [anon_sym_POUND] = ACTIONS(247), }, + [1423] = { + [sym_comment] = STATE(1423), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [aux_sym_cmd_identifier_token38] = ACTIONS(2301), + [aux_sym_cmd_identifier_token39] = ACTIONS(2301), + [aux_sym_cmd_identifier_token40] = ACTIONS(2301), + [sym__newline] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_err_GT_PIPE] = ACTIONS(2301), + [anon_sym_out_GT_PIPE] = ACTIONS(2301), + [anon_sym_e_GT_PIPE] = ACTIONS(2301), + [anon_sym_o_GT_PIPE] = ACTIONS(2301), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2301), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2301), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2301), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_RPAREN] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_DASH_DASH] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(2299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2297), + [aux_sym__val_number_decimal_token2] = ACTIONS(2301), + [aux_sym__val_number_decimal_token3] = ACTIONS(2301), + [aux_sym__val_number_decimal_token4] = ACTIONS(2301), + [aux_sym__val_number_token1] = ACTIONS(2301), + [aux_sym__val_number_token2] = ACTIONS(2301), + [aux_sym__val_number_token3] = ACTIONS(2301), + [anon_sym_0b] = ACTIONS(2297), + [anon_sym_0o] = ACTIONS(2297), + [anon_sym_0x] = ACTIONS(2297), + [sym_val_date] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(2301), + [sym__str_single_quotes] = ACTIONS(2301), + [sym__str_back_ticks] = ACTIONS(2301), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2301), + [anon_sym_err_GT] = ACTIONS(2297), + [anon_sym_out_GT] = ACTIONS(2297), + [anon_sym_e_GT] = ACTIONS(2297), + [anon_sym_o_GT] = ACTIONS(2297), + [anon_sym_err_PLUSout_GT] = ACTIONS(2297), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2297), + [anon_sym_o_PLUSe_GT] = ACTIONS(2297), + [anon_sym_e_PLUSo_GT] = ACTIONS(2297), + [anon_sym_err_GT_GT] = ACTIONS(2301), + [anon_sym_out_GT_GT] = ACTIONS(2301), + [anon_sym_e_GT_GT] = ACTIONS(2301), + [anon_sym_o_GT_GT] = ACTIONS(2301), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2301), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2301), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2301), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2301), + [aux_sym_unquoted_token1] = ACTIONS(2297), + [aux_sym_unquoted_token2] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(247), + }, + [1424] = { + [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_comment] = STATE(1424), + [sym__newline] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_err_GT_PIPE] = ACTIONS(4747), + [anon_sym_out_GT_PIPE] = ACTIONS(4747), + [anon_sym_e_GT_PIPE] = ACTIONS(4747), + [anon_sym_o_GT_PIPE] = ACTIONS(4747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [anon_sym_DASH_DASH] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_LBRACE] = ACTIONS(4747), + [anon_sym_RBRACE] = ACTIONS(4747), + [anon_sym_EQ_GT] = ACTIONS(4747), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4747), + [aux_sym_expr_binary_token2] = ACTIONS(4747), + [aux_sym_expr_binary_token3] = ACTIONS(4747), + [aux_sym_expr_binary_token4] = ACTIONS(4747), + [aux_sym_expr_binary_token5] = ACTIONS(4747), + [aux_sym_expr_binary_token6] = ACTIONS(4747), + [aux_sym_expr_binary_token7] = ACTIONS(4747), + [aux_sym_expr_binary_token8] = ACTIONS(4747), + [aux_sym_expr_binary_token9] = ACTIONS(4747), + [aux_sym_expr_binary_token10] = ACTIONS(4747), + [aux_sym_expr_binary_token11] = ACTIONS(4747), + [aux_sym_expr_binary_token12] = ACTIONS(4747), + [aux_sym_expr_binary_token13] = ACTIONS(4747), + [aux_sym_expr_binary_token14] = ACTIONS(4747), + [aux_sym_expr_binary_token15] = ACTIONS(4747), + [aux_sym_expr_binary_token16] = ACTIONS(4747), + [aux_sym_expr_binary_token17] = ACTIONS(4747), + [aux_sym_expr_binary_token18] = ACTIONS(4747), + [aux_sym_expr_binary_token19] = ACTIONS(4747), + [aux_sym_expr_binary_token20] = ACTIONS(4747), + [aux_sym_expr_binary_token21] = ACTIONS(4747), + [aux_sym_expr_binary_token22] = ACTIONS(4747), + [aux_sym_expr_binary_token23] = ACTIONS(4747), + [aux_sym_expr_binary_token24] = ACTIONS(4747), + [aux_sym_expr_binary_token25] = ACTIONS(4747), + [aux_sym_expr_binary_token26] = ACTIONS(4747), + [aux_sym_expr_binary_token27] = ACTIONS(4747), + [aux_sym_expr_binary_token28] = ACTIONS(4747), + [anon_sym_err_GT] = ACTIONS(4749), + [anon_sym_out_GT] = ACTIONS(4749), + [anon_sym_e_GT] = ACTIONS(4749), + [anon_sym_o_GT] = ACTIONS(4749), + [anon_sym_err_PLUSout_GT] = ACTIONS(4749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4749), + [anon_sym_o_PLUSe_GT] = ACTIONS(4749), + [anon_sym_e_PLUSo_GT] = ACTIONS(4749), + [anon_sym_err_GT_GT] = ACTIONS(4747), + [anon_sym_out_GT_GT] = ACTIONS(4747), + [anon_sym_e_GT_GT] = ACTIONS(4747), + [anon_sym_o_GT_GT] = ACTIONS(4747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(247), + }, + [1425] = { + [sym_comment] = STATE(1425), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), + }, + [1426] = { + [sym_comment] = STATE(1426), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [1427] = { + [sym_comment] = STATE(1427), + [aux_sym_cmd_identifier_token41] = ACTIONS(1653), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [aux_sym_expr_binary_token1] = ACTIONS(1655), + [aux_sym_expr_binary_token2] = ACTIONS(1655), + [aux_sym_expr_binary_token3] = ACTIONS(1655), + [aux_sym_expr_binary_token4] = ACTIONS(1655), + [aux_sym_expr_binary_token5] = ACTIONS(1655), + [aux_sym_expr_binary_token6] = ACTIONS(1655), + [aux_sym_expr_binary_token7] = ACTIONS(1655), + [aux_sym_expr_binary_token8] = ACTIONS(1655), + [aux_sym_expr_binary_token9] = ACTIONS(1655), + [aux_sym_expr_binary_token10] = ACTIONS(1655), + [aux_sym_expr_binary_token11] = ACTIONS(1655), + [aux_sym_expr_binary_token12] = ACTIONS(1655), + [aux_sym_expr_binary_token13] = ACTIONS(1655), + [aux_sym_expr_binary_token14] = ACTIONS(1655), + [aux_sym_expr_binary_token15] = ACTIONS(1655), + [aux_sym_expr_binary_token16] = ACTIONS(1655), + [aux_sym_expr_binary_token17] = ACTIONS(1655), + [aux_sym_expr_binary_token18] = ACTIONS(1655), + [aux_sym_expr_binary_token19] = ACTIONS(1655), + [aux_sym_expr_binary_token20] = ACTIONS(1655), + [aux_sym_expr_binary_token21] = ACTIONS(1655), + [aux_sym_expr_binary_token22] = ACTIONS(1655), + [aux_sym_expr_binary_token23] = ACTIONS(1655), + [aux_sym_expr_binary_token24] = ACTIONS(1655), + [aux_sym_expr_binary_token25] = ACTIONS(1655), + [aux_sym_expr_binary_token26] = ACTIONS(1655), + [aux_sym_expr_binary_token27] = ACTIONS(1655), + [aux_sym_expr_binary_token28] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(247), + }, + [1428] = { + [sym_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [1429] = { + [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_comment] = STATE(1429), + [sym__newline] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_err_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_GT_PIPE] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_EQ_GT] = ACTIONS(4751), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4751), + [aux_sym_expr_binary_token2] = ACTIONS(4751), + [aux_sym_expr_binary_token3] = ACTIONS(4751), + [aux_sym_expr_binary_token4] = ACTIONS(4751), + [aux_sym_expr_binary_token5] = ACTIONS(4751), + [aux_sym_expr_binary_token6] = ACTIONS(4751), + [aux_sym_expr_binary_token7] = ACTIONS(4751), + [aux_sym_expr_binary_token8] = ACTIONS(4751), + [aux_sym_expr_binary_token9] = ACTIONS(4751), + [aux_sym_expr_binary_token10] = ACTIONS(4751), + [aux_sym_expr_binary_token11] = ACTIONS(4751), + [aux_sym_expr_binary_token12] = ACTIONS(4751), + [aux_sym_expr_binary_token13] = ACTIONS(4751), + [aux_sym_expr_binary_token14] = ACTIONS(4751), + [aux_sym_expr_binary_token15] = ACTIONS(4751), + [aux_sym_expr_binary_token16] = ACTIONS(4751), + [aux_sym_expr_binary_token17] = ACTIONS(4751), + [aux_sym_expr_binary_token18] = ACTIONS(4751), + [aux_sym_expr_binary_token19] = ACTIONS(4751), + [aux_sym_expr_binary_token20] = ACTIONS(4751), + [aux_sym_expr_binary_token21] = ACTIONS(4751), + [aux_sym_expr_binary_token22] = ACTIONS(4751), + [aux_sym_expr_binary_token23] = ACTIONS(4751), + [aux_sym_expr_binary_token24] = ACTIONS(4751), + [aux_sym_expr_binary_token25] = ACTIONS(4751), + [aux_sym_expr_binary_token26] = ACTIONS(4751), + [aux_sym_expr_binary_token27] = ACTIONS(4751), + [aux_sym_expr_binary_token28] = ACTIONS(4751), + [anon_sym_err_GT] = ACTIONS(4753), + [anon_sym_out_GT] = ACTIONS(4753), + [anon_sym_e_GT] = ACTIONS(4753), + [anon_sym_o_GT] = ACTIONS(4753), + [anon_sym_err_PLUSout_GT] = ACTIONS(4753), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4753), + [anon_sym_o_PLUSe_GT] = ACTIONS(4753), + [anon_sym_e_PLUSo_GT] = ACTIONS(4753), + [anon_sym_err_GT_GT] = ACTIONS(4751), + [anon_sym_out_GT_GT] = ACTIONS(4751), + [anon_sym_e_GT_GT] = ACTIONS(4751), + [anon_sym_o_GT_GT] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(247), + }, + [1430] = { + [sym_comment] = STATE(1430), + [ts_builtin_sym_end] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2025), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [sym__newline] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_err_GT_PIPE] = ACTIONS(2025), + [anon_sym_out_GT_PIPE] = ACTIONS(2025), + [anon_sym_e_GT_PIPE] = ACTIONS(2025), + [anon_sym_o_GT_PIPE] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_DASH_DASH] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_DOT_DOT2] = ACTIONS(4765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4767), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_0b] = ACTIONS(2019), + [anon_sym_0o] = ACTIONS(2019), + [anon_sym_0x] = ACTIONS(2019), + [sym_val_date] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), + [anon_sym_err_GT] = ACTIONS(2019), + [anon_sym_out_GT] = ACTIONS(2019), + [anon_sym_e_GT] = ACTIONS(2019), + [anon_sym_o_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT] = ACTIONS(2019), + [anon_sym_err_GT_GT] = ACTIONS(2025), + [anon_sym_out_GT_GT] = ACTIONS(2025), + [anon_sym_e_GT_GT] = ACTIONS(2025), + [anon_sym_o_GT_GT] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2025), + [aux_sym_unquoted_token1] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(247), + }, + [1431] = { + [sym_comment] = STATE(1431), + [anon_sym_true] = ACTIONS(2753), + [anon_sym_false] = ACTIONS(2753), + [anon_sym_null] = ACTIONS(2753), + [aux_sym_cmd_identifier_token38] = ACTIONS(2753), + [aux_sym_cmd_identifier_token39] = ACTIONS(2753), + [aux_sym_cmd_identifier_token40] = ACTIONS(2753), + [sym__newline] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_PIPE] = ACTIONS(2753), + [anon_sym_err_GT_PIPE] = ACTIONS(2753), + [anon_sym_out_GT_PIPE] = ACTIONS(2753), + [anon_sym_e_GT_PIPE] = ACTIONS(2753), + [anon_sym_o_GT_PIPE] = ACTIONS(2753), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2753), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2753), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2753), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2753), + [anon_sym_RPAREN] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(4769), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_DOT_DOT] = ACTIONS(4769), + [anon_sym_DOT_DOT2] = ACTIONS(4716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4769), + [anon_sym_DOT_DOT_LT] = ACTIONS(4769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), + [aux_sym__val_number_decimal_token1] = ACTIONS(4769), + [aux_sym__val_number_decimal_token2] = ACTIONS(2753), + [aux_sym__val_number_decimal_token3] = ACTIONS(2753), + [aux_sym__val_number_decimal_token4] = ACTIONS(2753), + [aux_sym__val_number_token1] = ACTIONS(2753), + [aux_sym__val_number_token2] = ACTIONS(2753), + [aux_sym__val_number_token3] = ACTIONS(2753), + [anon_sym_0b] = ACTIONS(4769), + [anon_sym_0o] = ACTIONS(4769), + [anon_sym_0x] = ACTIONS(4769), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [sym__str_single_quotes] = ACTIONS(2753), + [sym__str_back_ticks] = ACTIONS(2753), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2753), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2753), + [anon_sym_err_GT] = ACTIONS(4769), + [anon_sym_out_GT] = ACTIONS(4769), + [anon_sym_e_GT] = ACTIONS(4769), + [anon_sym_o_GT] = ACTIONS(4769), + [anon_sym_err_PLUSout_GT] = ACTIONS(4769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4769), + [anon_sym_o_PLUSe_GT] = ACTIONS(4769), + [anon_sym_e_PLUSo_GT] = ACTIONS(4769), + [anon_sym_err_GT_GT] = ACTIONS(2753), + [anon_sym_out_GT_GT] = ACTIONS(2753), + [anon_sym_e_GT_GT] = ACTIONS(2753), + [anon_sym_o_GT_GT] = ACTIONS(2753), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2753), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2753), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2753), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2753), + [aux_sym_unquoted_token1] = ACTIONS(4769), + [anon_sym_POUND] = ACTIONS(247), + }, + [1432] = { + [sym_comment] = STATE(1432), + [sym__newline] = ACTIONS(1554), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [1433] = { + [sym_cell_path] = STATE(2010), + [sym_path] = STATE(1246), + [sym_comment] = STATE(1433), + [aux_sym_cell_path_repeat1] = STATE(1189), + [ts_builtin_sym_end] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [aux_sym_expr_binary_token1] = ACTIONS(1677), + [aux_sym_expr_binary_token2] = ACTIONS(1677), + [aux_sym_expr_binary_token3] = ACTIONS(1677), + [aux_sym_expr_binary_token4] = ACTIONS(1677), + [aux_sym_expr_binary_token5] = ACTIONS(1677), + [aux_sym_expr_binary_token6] = ACTIONS(1677), + [aux_sym_expr_binary_token7] = ACTIONS(1677), + [aux_sym_expr_binary_token8] = ACTIONS(1677), + [aux_sym_expr_binary_token9] = ACTIONS(1677), + [aux_sym_expr_binary_token10] = ACTIONS(1677), + [aux_sym_expr_binary_token11] = ACTIONS(1677), + [aux_sym_expr_binary_token12] = ACTIONS(1677), + [aux_sym_expr_binary_token13] = ACTIONS(1677), + [aux_sym_expr_binary_token14] = ACTIONS(1677), + [aux_sym_expr_binary_token15] = ACTIONS(1677), + [aux_sym_expr_binary_token16] = ACTIONS(1677), + [aux_sym_expr_binary_token17] = ACTIONS(1677), + [aux_sym_expr_binary_token18] = ACTIONS(1677), + [aux_sym_expr_binary_token19] = ACTIONS(1677), + [aux_sym_expr_binary_token20] = ACTIONS(1677), + [aux_sym_expr_binary_token21] = ACTIONS(1677), + [aux_sym_expr_binary_token22] = ACTIONS(1677), + [aux_sym_expr_binary_token23] = ACTIONS(1677), + [aux_sym_expr_binary_token24] = ACTIONS(1677), + [aux_sym_expr_binary_token25] = ACTIONS(1677), + [aux_sym_expr_binary_token26] = ACTIONS(1677), + [aux_sym_expr_binary_token27] = ACTIONS(1677), + [aux_sym_expr_binary_token28] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(3990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(247), + }, + [1434] = { + [sym_comment] = STATE(1434), + [aux_sym_cmd_identifier_token41] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(247), + }, [1435] = { [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1629), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1625), - [aux_sym_ctrl_match_token1] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT] = ACTIONS(1625), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1625), - [aux_sym__val_number_decimal_token2] = ACTIONS(1629), - [aux_sym__val_number_decimal_token3] = ACTIONS(1629), - [aux_sym__val_number_decimal_token4] = ACTIONS(1629), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1625), - [anon_sym_0o] = ACTIONS(1625), - [anon_sym_0x] = ACTIONS(1625), - [sym_val_date] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), - [aux_sym_unquoted_token1] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2289), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), + [anon_sym_DOT_DOT_LT] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2287), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_0b] = ACTIONS(2287), + [anon_sym_0o] = ACTIONS(2287), + [anon_sym_0x] = ACTIONS(2287), + [sym_val_date] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym__str_single_quotes] = ACTIONS(2289), + [sym__str_back_ticks] = ACTIONS(2289), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2287), + [anon_sym_out_GT] = ACTIONS(2287), + [anon_sym_e_GT] = ACTIONS(2287), + [anon_sym_o_GT] = ACTIONS(2287), + [anon_sym_err_PLUSout_GT] = ACTIONS(2287), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2287), + [anon_sym_o_PLUSe_GT] = ACTIONS(2287), + [anon_sym_e_PLUSo_GT] = ACTIONS(2287), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [aux_sym_unquoted_token1] = ACTIONS(2287), + [aux_sym_unquoted_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(247), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1066), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1066), - [aux_sym_cmd_identifier_token40] = ACTIONS(1066), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_err_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_GT_PIPE] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [aux_sym_ctrl_match_token1] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT] = ACTIONS(1064), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1064), - [aux_sym__val_number_decimal_token2] = ACTIONS(1066), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1066), - [aux_sym__val_number_token1] = ACTIONS(1066), - [aux_sym__val_number_token2] = ACTIONS(1066), - [aux_sym__val_number_token3] = ACTIONS(1066), - [anon_sym_0b] = ACTIONS(1064), - [anon_sym_0o] = ACTIONS(1064), - [anon_sym_0x] = ACTIONS(1064), - [sym_val_date] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym__str_single_quotes] = ACTIONS(1066), - [sym__str_back_ticks] = ACTIONS(1066), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1066), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1064), - [anon_sym_out_GT] = ACTIONS(1064), - [anon_sym_e_GT] = ACTIONS(1064), - [anon_sym_o_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT] = ACTIONS(1064), - [anon_sym_err_GT_GT] = ACTIONS(1066), - [anon_sym_out_GT_GT] = ACTIONS(1066), - [anon_sym_e_GT_GT] = ACTIONS(1066), - [anon_sym_o_GT_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), - [aux_sym_unquoted_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token41] = ACTIONS(4771), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [aux_sym_expr_binary_token1] = ACTIONS(1572), + [aux_sym_expr_binary_token2] = ACTIONS(1572), + [aux_sym_expr_binary_token3] = ACTIONS(1572), + [aux_sym_expr_binary_token4] = ACTIONS(1572), + [aux_sym_expr_binary_token5] = ACTIONS(1572), + [aux_sym_expr_binary_token6] = ACTIONS(1572), + [aux_sym_expr_binary_token7] = ACTIONS(1572), + [aux_sym_expr_binary_token8] = ACTIONS(1572), + [aux_sym_expr_binary_token9] = ACTIONS(1572), + [aux_sym_expr_binary_token10] = ACTIONS(1572), + [aux_sym_expr_binary_token11] = ACTIONS(1572), + [aux_sym_expr_binary_token12] = ACTIONS(1572), + [aux_sym_expr_binary_token13] = ACTIONS(1572), + [aux_sym_expr_binary_token14] = ACTIONS(1572), + [aux_sym_expr_binary_token15] = ACTIONS(1572), + [aux_sym_expr_binary_token16] = ACTIONS(1572), + [aux_sym_expr_binary_token17] = ACTIONS(1572), + [aux_sym_expr_binary_token18] = ACTIONS(1572), + [aux_sym_expr_binary_token19] = ACTIONS(1572), + [aux_sym_expr_binary_token20] = ACTIONS(1572), + [aux_sym_expr_binary_token21] = ACTIONS(1572), + [aux_sym_expr_binary_token22] = ACTIONS(1572), + [aux_sym_expr_binary_token23] = ACTIONS(1572), + [aux_sym_expr_binary_token24] = ACTIONS(1572), + [aux_sym_expr_binary_token25] = ACTIONS(1572), + [aux_sym_expr_binary_token26] = ACTIONS(1572), + [aux_sym_expr_binary_token27] = ACTIONS(1572), + [aux_sym_expr_binary_token28] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(4773), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4775), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4775), + [sym_filesize_unit] = ACTIONS(4777), + [sym_duration_unit] = ACTIONS(4779), + [aux_sym_record_entry_token1] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(247), }, [1437] = { - [sym_path] = STATE(1599), [sym_comment] = STATE(1437), - [aux_sym_cell_path_repeat1] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(1019), - [anon_sym_true] = ACTIONS(1019), - [anon_sym_false] = ACTIONS(1019), - [anon_sym_null] = ACTIONS(1019), - [aux_sym_cmd_identifier_token38] = ACTIONS(1019), - [aux_sym_cmd_identifier_token39] = ACTIONS(1019), - [aux_sym_cmd_identifier_token40] = ACTIONS(1019), - [sym__newline] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_err_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_GT_PIPE] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1017), - [aux_sym_ctrl_match_token1] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), - [anon_sym_DOT_DOT_LT] = ACTIONS(1019), - [aux_sym__val_number_decimal_token1] = ACTIONS(1017), - [aux_sym__val_number_decimal_token2] = ACTIONS(1019), - [aux_sym__val_number_decimal_token3] = ACTIONS(1019), - [aux_sym__val_number_decimal_token4] = ACTIONS(1019), - [aux_sym__val_number_token1] = ACTIONS(1019), - [aux_sym__val_number_token2] = ACTIONS(1019), - [aux_sym__val_number_token3] = ACTIONS(1019), - [anon_sym_0b] = ACTIONS(1017), - [anon_sym_0o] = ACTIONS(1017), - [anon_sym_0x] = ACTIONS(1017), - [sym_val_date] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [sym__str_single_quotes] = ACTIONS(1019), - [sym__str_back_ticks] = ACTIONS(1019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), - [anon_sym_err_GT] = ACTIONS(1017), - [anon_sym_out_GT] = ACTIONS(1017), - [anon_sym_e_GT] = ACTIONS(1017), - [anon_sym_o_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT] = ACTIONS(1017), - [anon_sym_err_GT_GT] = ACTIONS(1019), - [anon_sym_out_GT_GT] = ACTIONS(1019), - [anon_sym_e_GT_GT] = ACTIONS(1019), - [anon_sym_o_GT_GT] = ACTIONS(1019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), - [aux_sym_unquoted_token1] = ACTIONS(1017), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token2] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [1438] = { [sym_comment] = STATE(1438), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [aux_sym_cmd_identifier_token38] = ACTIONS(2243), - [aux_sym_cmd_identifier_token39] = ACTIONS(2243), - [aux_sym_cmd_identifier_token40] = ACTIONS(2243), - [sym__newline] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_err_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_GT_PIPE] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [aux_sym_ctrl_match_token1] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2243), - [anon_sym_LPAREN2] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), - [anon_sym_DOT_DOT_LT] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2243), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [anon_sym_0b] = ACTIONS(2243), - [anon_sym_0o] = ACTIONS(2243), - [anon_sym_0x] = ACTIONS(2243), - [sym_val_date] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), - [anon_sym_err_GT] = ACTIONS(2243), - [anon_sym_out_GT] = ACTIONS(2243), - [anon_sym_e_GT] = ACTIONS(2243), - [anon_sym_o_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT] = ACTIONS(2243), - [anon_sym_err_GT_GT] = ACTIONS(2243), - [anon_sym_out_GT_GT] = ACTIONS(2243), - [anon_sym_e_GT_GT] = ACTIONS(2243), - [anon_sym_o_GT_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2243), - [aux_sym_unquoted_token1] = ACTIONS(2243), - [aux_sym_unquoted_token4] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4781), + [anon_sym_false] = ACTIONS(4781), + [anon_sym_null] = ACTIONS(4781), + [aux_sym_cmd_identifier_token38] = ACTIONS(4781), + [aux_sym_cmd_identifier_token39] = ACTIONS(4781), + [aux_sym_cmd_identifier_token40] = ACTIONS(4781), + [sym__newline] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4783), + [anon_sym_PIPE] = ACTIONS(4783), + [anon_sym_err_GT_PIPE] = ACTIONS(4783), + [anon_sym_out_GT_PIPE] = ACTIONS(4783), + [anon_sym_e_GT_PIPE] = ACTIONS(4783), + [anon_sym_o_GT_PIPE] = ACTIONS(4783), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4783), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4783), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4783), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4783), + [anon_sym_LBRACK] = ACTIONS(4783), + [anon_sym_LPAREN] = ACTIONS(4783), + [anon_sym_RPAREN] = ACTIONS(4783), + [anon_sym_DOLLAR] = ACTIONS(4781), + [anon_sym_DASH_DASH] = ACTIONS(4781), + [anon_sym_DASH] = ACTIONS(4781), + [anon_sym_LBRACE] = ACTIONS(4783), + [anon_sym_RBRACE] = ACTIONS(4783), + [anon_sym_DOT_DOT] = ACTIONS(4781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4783), + [anon_sym_DOT_DOT_LT] = ACTIONS(4783), + [aux_sym__val_number_decimal_token1] = ACTIONS(4781), + [aux_sym__val_number_decimal_token2] = ACTIONS(4781), + [aux_sym__val_number_decimal_token3] = ACTIONS(4783), + [aux_sym__val_number_decimal_token4] = ACTIONS(4783), + [aux_sym__val_number_token1] = ACTIONS(4781), + [aux_sym__val_number_token2] = ACTIONS(4781), + [aux_sym__val_number_token3] = ACTIONS(4781), + [anon_sym_0b] = ACTIONS(4781), + [anon_sym_0o] = ACTIONS(4781), + [anon_sym_0x] = ACTIONS(4781), + [sym_val_date] = ACTIONS(4781), + [anon_sym_DQUOTE] = ACTIONS(4783), + [sym__str_single_quotes] = ACTIONS(4783), + [sym__str_back_ticks] = ACTIONS(4783), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4783), + [anon_sym_err_GT] = ACTIONS(4781), + [anon_sym_out_GT] = ACTIONS(4781), + [anon_sym_e_GT] = ACTIONS(4781), + [anon_sym_o_GT] = ACTIONS(4781), + [anon_sym_err_PLUSout_GT] = ACTIONS(4781), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4781), + [anon_sym_o_PLUSe_GT] = ACTIONS(4781), + [anon_sym_e_PLUSo_GT] = ACTIONS(4781), + [anon_sym_err_GT_GT] = ACTIONS(4783), + [anon_sym_out_GT_GT] = ACTIONS(4783), + [anon_sym_e_GT_GT] = ACTIONS(4783), + [anon_sym_o_GT_GT] = ACTIONS(4783), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4783), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4783), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4783), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4783), + [anon_sym_EQ2] = ACTIONS(4785), + [sym_short_flag_identifier] = ACTIONS(4787), + [aux_sym_unquoted_token1] = ACTIONS(4781), + [anon_sym_POUND] = ACTIONS(247), }, [1439] = { [sym_comment] = STATE(1439), - [anon_sym_true] = ACTIONS(2251), - [anon_sym_false] = ACTIONS(2251), - [anon_sym_null] = ACTIONS(2251), - [aux_sym_cmd_identifier_token38] = ACTIONS(2251), - [aux_sym_cmd_identifier_token39] = ACTIONS(2251), - [aux_sym_cmd_identifier_token40] = ACTIONS(2251), - [sym__newline] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_err_GT_PIPE] = ACTIONS(2253), - [anon_sym_out_GT_PIPE] = ACTIONS(2253), - [anon_sym_e_GT_PIPE] = ACTIONS(2253), - [anon_sym_o_GT_PIPE] = ACTIONS(2253), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2253), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2253), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2253), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [aux_sym_ctrl_match_token1] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_DOT_DOT] = ACTIONS(2251), - [anon_sym_LPAREN2] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2251), - [anon_sym_DOT_DOT_LT] = ACTIONS(2251), - [aux_sym__val_number_decimal_token1] = ACTIONS(2251), - [aux_sym__val_number_decimal_token2] = ACTIONS(2251), - [aux_sym__val_number_decimal_token3] = ACTIONS(2251), - [aux_sym__val_number_decimal_token4] = ACTIONS(2251), - [aux_sym__val_number_token1] = ACTIONS(2251), - [aux_sym__val_number_token2] = ACTIONS(2251), - [aux_sym__val_number_token3] = ACTIONS(2251), - [anon_sym_0b] = ACTIONS(2251), - [anon_sym_0o] = ACTIONS(2251), - [anon_sym_0x] = ACTIONS(2251), - [sym_val_date] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), - [anon_sym_err_GT] = ACTIONS(2251), - [anon_sym_out_GT] = ACTIONS(2251), - [anon_sym_e_GT] = ACTIONS(2251), - [anon_sym_o_GT] = ACTIONS(2251), - [anon_sym_err_PLUSout_GT] = ACTIONS(2251), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), - [anon_sym_o_PLUSe_GT] = ACTIONS(2251), - [anon_sym_e_PLUSo_GT] = ACTIONS(2251), - [anon_sym_err_GT_GT] = ACTIONS(2251), - [anon_sym_out_GT_GT] = ACTIONS(2251), - [anon_sym_e_GT_GT] = ACTIONS(2251), - [anon_sym_o_GT_GT] = ACTIONS(2251), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2251), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2251), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2251), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2251), - [aux_sym_unquoted_token1] = ACTIONS(2251), - [aux_sym_unquoted_token4] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1740), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [sym__newline] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_err_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_GT_PIPE] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), + [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(1740), + [anon_sym_out_GT_GT] = ACTIONS(1740), + [anon_sym_e_GT_GT] = ACTIONS(1740), + [anon_sym_o_GT_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), + [aux_sym_unquoted_token1] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(247), }, [1440] = { [sym_comment] = STATE(1440), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [aux_sym_cmd_identifier_token38] = ACTIONS(2228), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), - [sym__newline] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_err_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_GT_PIPE] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2224), - [aux_sym_ctrl_match_token1] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), - [anon_sym_DOT_DOT_LT] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2224), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_decimal_token4] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [anon_sym_0b] = ACTIONS(2224), - [anon_sym_0o] = ACTIONS(2224), - [anon_sym_0x] = ACTIONS(2224), - [sym_val_date] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [anon_sym_err_GT_GT] = ACTIONS(2228), - [anon_sym_out_GT_GT] = ACTIONS(2228), - [anon_sym_e_GT_GT] = ACTIONS(2228), - [anon_sym_o_GT_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), - [aux_sym_unquoted_token1] = ACTIONS(2224), - [aux_sym_unquoted_token2] = ACTIONS(2230), + [ts_builtin_sym_end] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [aux_sym_cmd_identifier_token38] = ACTIONS(2031), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [sym__newline] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_err_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_GT_PIPE] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_DOT_DOT2] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), + [anon_sym_DOT_DOT_LT] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [anon_sym_0b] = ACTIONS(2029), + [anon_sym_0o] = ACTIONS(2029), + [anon_sym_0x] = ACTIONS(2029), + [sym_val_date] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), + [anon_sym_err_GT] = ACTIONS(2029), + [anon_sym_out_GT] = ACTIONS(2029), + [anon_sym_e_GT] = ACTIONS(2029), + [anon_sym_o_GT] = ACTIONS(2029), + [anon_sym_err_PLUSout_GT] = ACTIONS(2029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), + [anon_sym_o_PLUSe_GT] = ACTIONS(2029), + [anon_sym_e_PLUSo_GT] = ACTIONS(2029), + [anon_sym_err_GT_GT] = ACTIONS(2031), + [anon_sym_out_GT_GT] = ACTIONS(2031), + [anon_sym_e_GT_GT] = ACTIONS(2031), + [anon_sym_o_GT_GT] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), + [aux_sym_unquoted_token1] = ACTIONS(2029), [anon_sym_POUND] = ACTIONS(247), }, [1441] = { - [sym__expr_parenthesized_immediate] = STATE(7570), [sym_comment] = STATE(1441), - [sym__newline] = ACTIONS(4781), - [anon_sym_SEMI] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_err_GT_PIPE] = ACTIONS(4781), - [anon_sym_out_GT_PIPE] = ACTIONS(4781), - [anon_sym_e_GT_PIPE] = ACTIONS(4781), - [anon_sym_o_GT_PIPE] = ACTIONS(4781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4781), - [anon_sym_RPAREN] = ACTIONS(4781), - [anon_sym_DASH_DASH] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4783), - [aux_sym_ctrl_match_token1] = ACTIONS(4781), - [anon_sym_RBRACE] = ACTIONS(4781), - [anon_sym_EQ_GT] = ACTIONS(4781), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4781), - [aux_sym_expr_binary_token2] = ACTIONS(4781), - [aux_sym_expr_binary_token3] = ACTIONS(4781), - [aux_sym_expr_binary_token4] = ACTIONS(4781), - [aux_sym_expr_binary_token5] = ACTIONS(4781), - [aux_sym_expr_binary_token6] = ACTIONS(4781), - [aux_sym_expr_binary_token7] = ACTIONS(4781), - [aux_sym_expr_binary_token8] = ACTIONS(4781), - [aux_sym_expr_binary_token9] = ACTIONS(4781), - [aux_sym_expr_binary_token10] = ACTIONS(4781), - [aux_sym_expr_binary_token11] = ACTIONS(4781), - [aux_sym_expr_binary_token12] = ACTIONS(4781), - [aux_sym_expr_binary_token13] = ACTIONS(4781), - [aux_sym_expr_binary_token14] = ACTIONS(4781), - [aux_sym_expr_binary_token15] = ACTIONS(4781), - [aux_sym_expr_binary_token16] = ACTIONS(4781), - [aux_sym_expr_binary_token17] = ACTIONS(4781), - [aux_sym_expr_binary_token18] = ACTIONS(4781), - [aux_sym_expr_binary_token19] = ACTIONS(4781), - [aux_sym_expr_binary_token20] = ACTIONS(4781), - [aux_sym_expr_binary_token21] = ACTIONS(4781), - [aux_sym_expr_binary_token22] = ACTIONS(4781), - [aux_sym_expr_binary_token23] = ACTIONS(4781), - [aux_sym_expr_binary_token24] = ACTIONS(4781), - [aux_sym_expr_binary_token25] = ACTIONS(4781), - [aux_sym_expr_binary_token26] = ACTIONS(4781), - [aux_sym_expr_binary_token27] = ACTIONS(4781), - [aux_sym_expr_binary_token28] = ACTIONS(4781), - [anon_sym_err_GT] = ACTIONS(4783), - [anon_sym_out_GT] = ACTIONS(4783), - [anon_sym_e_GT] = ACTIONS(4783), - [anon_sym_o_GT] = ACTIONS(4783), - [anon_sym_err_PLUSout_GT] = ACTIONS(4783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4783), - [anon_sym_o_PLUSe_GT] = ACTIONS(4783), - [anon_sym_e_PLUSo_GT] = ACTIONS(4783), - [anon_sym_err_GT_GT] = ACTIONS(4781), - [anon_sym_out_GT_GT] = ACTIONS(4781), - [anon_sym_e_GT_GT] = ACTIONS(4781), - [anon_sym_o_GT_GT] = ACTIONS(4781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4781), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [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_RPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), }, [1442] = { [sym_comment] = STATE(1442), - [aux_sym_cmd_identifier_token41] = ACTIONS(4785), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(4787), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4789), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4789), - [sym_filesize_unit] = ACTIONS(4791), - [sym_duration_unit] = ACTIONS(4793), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, [1443] = { [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DOT_DOT2] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4734), + [anon_sym_false] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4734), + [aux_sym_cmd_identifier_token38] = ACTIONS(4734), + [aux_sym_cmd_identifier_token39] = ACTIONS(4734), + [aux_sym_cmd_identifier_token40] = ACTIONS(4734), + [sym__newline] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_err_GT_PIPE] = ACTIONS(4734), + [anon_sym_out_GT_PIPE] = ACTIONS(4734), + [anon_sym_e_GT_PIPE] = ACTIONS(4734), + [anon_sym_o_GT_PIPE] = ACTIONS(4734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4736), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT2] = ACTIONS(4789), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4736), + [anon_sym_DOT_DOT_LT] = ACTIONS(4736), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4791), + [aux_sym__val_number_decimal_token1] = ACTIONS(4736), + [aux_sym__val_number_decimal_token2] = ACTIONS(4734), + [aux_sym__val_number_decimal_token3] = ACTIONS(4734), + [aux_sym__val_number_decimal_token4] = ACTIONS(4734), + [aux_sym__val_number_token1] = ACTIONS(4734), + [aux_sym__val_number_token2] = ACTIONS(4734), + [aux_sym__val_number_token3] = ACTIONS(4734), + [anon_sym_0b] = ACTIONS(4736), + [anon_sym_0o] = ACTIONS(4736), + [anon_sym_0x] = ACTIONS(4736), + [sym_val_date] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [sym__str_single_quotes] = ACTIONS(4734), + [sym__str_back_ticks] = ACTIONS(4734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), + [anon_sym_err_GT] = ACTIONS(4736), + [anon_sym_out_GT] = ACTIONS(4736), + [anon_sym_e_GT] = ACTIONS(4736), + [anon_sym_o_GT] = ACTIONS(4736), + [anon_sym_err_PLUSout_GT] = ACTIONS(4736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4736), + [anon_sym_o_PLUSe_GT] = ACTIONS(4736), + [anon_sym_e_PLUSo_GT] = ACTIONS(4736), + [anon_sym_err_GT_GT] = ACTIONS(4734), + [anon_sym_out_GT_GT] = ACTIONS(4734), + [anon_sym_e_GT_GT] = ACTIONS(4734), + [anon_sym_o_GT_GT] = ACTIONS(4734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4734), + [aux_sym_unquoted_token1] = ACTIONS(4736), [anon_sym_POUND] = ACTIONS(247), }, [1444] = { - [sym__expr_parenthesized_immediate] = STATE(7390), + [sym_path] = STATE(1603), [sym_comment] = STATE(1444), - [anon_sym_true] = ACTIONS(4795), - [anon_sym_false] = ACTIONS(4795), - [anon_sym_null] = ACTIONS(4795), - [aux_sym_cmd_identifier_token38] = ACTIONS(4795), - [aux_sym_cmd_identifier_token39] = ACTIONS(4795), - [aux_sym_cmd_identifier_token40] = ACTIONS(4795), - [sym__newline] = ACTIONS(4795), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_err_GT_PIPE] = ACTIONS(4795), - [anon_sym_out_GT_PIPE] = ACTIONS(4795), - [anon_sym_e_GT_PIPE] = ACTIONS(4795), - [anon_sym_o_GT_PIPE] = ACTIONS(4795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(4795), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4797), - [aux_sym_ctrl_match_token1] = ACTIONS(4795), - [anon_sym_RBRACE] = ACTIONS(4795), - [anon_sym_DOT_DOT] = ACTIONS(4797), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4795), - [anon_sym_DOT_DOT_LT] = ACTIONS(4795), - [aux_sym__val_number_decimal_token1] = ACTIONS(4797), - [aux_sym__val_number_decimal_token2] = ACTIONS(4795), - [aux_sym__val_number_decimal_token3] = ACTIONS(4795), - [aux_sym__val_number_decimal_token4] = ACTIONS(4795), - [aux_sym__val_number_token1] = ACTIONS(4795), - [aux_sym__val_number_token2] = ACTIONS(4795), - [aux_sym__val_number_token3] = ACTIONS(4795), - [anon_sym_0b] = ACTIONS(4797), - [anon_sym_0o] = ACTIONS(4797), - [anon_sym_0x] = ACTIONS(4797), - [sym_val_date] = ACTIONS(4795), - [anon_sym_DQUOTE] = ACTIONS(4795), - [sym__str_single_quotes] = ACTIONS(4795), - [sym__str_back_ticks] = ACTIONS(4795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4795), - [anon_sym_err_GT] = ACTIONS(4797), - [anon_sym_out_GT] = ACTIONS(4797), - [anon_sym_e_GT] = ACTIONS(4797), - [anon_sym_o_GT] = ACTIONS(4797), - [anon_sym_err_PLUSout_GT] = ACTIONS(4797), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4797), - [anon_sym_o_PLUSe_GT] = ACTIONS(4797), - [anon_sym_e_PLUSo_GT] = ACTIONS(4797), - [anon_sym_err_GT_GT] = ACTIONS(4795), - [anon_sym_out_GT_GT] = ACTIONS(4795), - [anon_sym_e_GT_GT] = ACTIONS(4795), - [anon_sym_o_GT_GT] = ACTIONS(4795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4795), - [aux_sym_unquoted_token1] = ACTIONS(4797), + [aux_sym_cell_path_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_err_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_GT_PIPE] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(4793), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1015), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_0b] = ACTIONS(1015), + [anon_sym_0o] = ACTIONS(1015), + [anon_sym_0x] = ACTIONS(1015), + [sym_val_date] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1015), + [anon_sym_out_GT] = ACTIONS(1015), + [anon_sym_e_GT] = ACTIONS(1015), + [anon_sym_o_GT] = ACTIONS(1015), + [anon_sym_err_PLUSout_GT] = ACTIONS(1015), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), + [anon_sym_o_PLUSe_GT] = ACTIONS(1015), + [anon_sym_e_PLUSo_GT] = ACTIONS(1015), + [anon_sym_err_GT_GT] = ACTIONS(1017), + [anon_sym_out_GT_GT] = ACTIONS(1017), + [anon_sym_e_GT_GT] = ACTIONS(1017), + [anon_sym_o_GT_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), + [aux_sym_unquoted_token1] = ACTIONS(1015), [anon_sym_POUND] = ACTIONS(247), }, [1445] = { [sym_comment] = STATE(1445), - [aux_sym_cmd_identifier_token41] = ACTIONS(4799), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(4787), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4789), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4789), - [sym_filesize_unit] = ACTIONS(4801), - [sym_duration_unit] = ACTIONS(4803), - [aux_sym_record_entry_token1] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [sym__newline] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_PIPE] = ACTIONS(4796), + [anon_sym_err_GT_PIPE] = ACTIONS(4796), + [anon_sym_out_GT_PIPE] = ACTIONS(4796), + [anon_sym_e_GT_PIPE] = ACTIONS(4796), + [anon_sym_o_GT_PIPE] = ACTIONS(4796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4798), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [aux_sym_expr_binary_token1] = ACTIONS(4800), + [aux_sym_expr_binary_token2] = ACTIONS(4800), + [aux_sym_expr_binary_token3] = ACTIONS(4800), + [aux_sym_expr_binary_token4] = ACTIONS(4800), + [aux_sym_expr_binary_token5] = ACTIONS(4800), + [aux_sym_expr_binary_token6] = ACTIONS(4800), + [aux_sym_expr_binary_token7] = ACTIONS(4800), + [aux_sym_expr_binary_token8] = ACTIONS(4800), + [aux_sym_expr_binary_token9] = ACTIONS(4800), + [aux_sym_expr_binary_token10] = ACTIONS(4800), + [aux_sym_expr_binary_token11] = ACTIONS(4800), + [aux_sym_expr_binary_token12] = ACTIONS(4800), + [aux_sym_expr_binary_token13] = ACTIONS(4800), + [aux_sym_expr_binary_token14] = ACTIONS(4800), + [aux_sym_expr_binary_token15] = ACTIONS(4800), + [aux_sym_expr_binary_token16] = ACTIONS(4800), + [aux_sym_expr_binary_token17] = ACTIONS(4800), + [aux_sym_expr_binary_token18] = ACTIONS(4800), + [aux_sym_expr_binary_token19] = ACTIONS(4800), + [aux_sym_expr_binary_token20] = ACTIONS(4800), + [aux_sym_expr_binary_token21] = ACTIONS(4800), + [aux_sym_expr_binary_token22] = ACTIONS(4800), + [aux_sym_expr_binary_token23] = ACTIONS(4800), + [aux_sym_expr_binary_token24] = ACTIONS(4800), + [aux_sym_expr_binary_token25] = ACTIONS(4800), + [aux_sym_expr_binary_token26] = ACTIONS(4800), + [aux_sym_expr_binary_token27] = ACTIONS(4800), + [aux_sym_expr_binary_token28] = ACTIONS(4800), + [anon_sym_DOT_DOT2] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_err_GT] = ACTIONS(4798), + [anon_sym_out_GT] = ACTIONS(4798), + [anon_sym_e_GT] = ACTIONS(4798), + [anon_sym_o_GT] = ACTIONS(4798), + [anon_sym_err_PLUSout_GT] = ACTIONS(4798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4798), + [anon_sym_o_PLUSe_GT] = ACTIONS(4798), + [anon_sym_e_PLUSo_GT] = ACTIONS(4798), + [anon_sym_err_GT_GT] = ACTIONS(4796), + [anon_sym_out_GT_GT] = ACTIONS(4796), + [anon_sym_e_GT_GT] = ACTIONS(4796), + [anon_sym_o_GT_GT] = ACTIONS(4796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4796), [anon_sym_POUND] = ACTIONS(247), }, [1446] = { - [sym_path] = STATE(1599), [sym_comment] = STATE(1446), - [aux_sym_cell_path_repeat1] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1021), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_expr_binary_token1] = ACTIONS(1072), + [aux_sym_expr_binary_token2] = ACTIONS(1072), + [aux_sym_expr_binary_token3] = ACTIONS(1072), + [aux_sym_expr_binary_token4] = ACTIONS(1072), + [aux_sym_expr_binary_token5] = ACTIONS(1072), + [aux_sym_expr_binary_token6] = ACTIONS(1072), + [aux_sym_expr_binary_token7] = ACTIONS(1072), + [aux_sym_expr_binary_token8] = ACTIONS(1072), + [aux_sym_expr_binary_token9] = ACTIONS(1072), + [aux_sym_expr_binary_token10] = ACTIONS(1072), + [aux_sym_expr_binary_token11] = ACTIONS(1072), + [aux_sym_expr_binary_token12] = ACTIONS(1072), + [aux_sym_expr_binary_token13] = ACTIONS(1072), + [aux_sym_expr_binary_token14] = ACTIONS(1072), + [aux_sym_expr_binary_token15] = ACTIONS(1072), + [aux_sym_expr_binary_token16] = ACTIONS(1072), + [aux_sym_expr_binary_token17] = ACTIONS(1072), + [aux_sym_expr_binary_token18] = ACTIONS(1072), + [aux_sym_expr_binary_token19] = ACTIONS(1072), + [aux_sym_expr_binary_token20] = ACTIONS(1072), + [aux_sym_expr_binary_token21] = ACTIONS(1072), + [aux_sym_expr_binary_token22] = ACTIONS(1072), + [aux_sym_expr_binary_token23] = ACTIONS(1072), + [aux_sym_expr_binary_token24] = ACTIONS(1072), + [aux_sym_expr_binary_token25] = ACTIONS(1072), + [aux_sym_expr_binary_token26] = ACTIONS(1072), + [aux_sym_expr_binary_token27] = ACTIONS(1072), + [aux_sym_expr_binary_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), [anon_sym_POUND] = ACTIONS(247), }, [1447] = { - [sym__expr_parenthesized_immediate] = STATE(7570), [sym_comment] = STATE(1447), - [sym__newline] = ACTIONS(4769), - [anon_sym_SEMI] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_err_GT_PIPE] = ACTIONS(4769), - [anon_sym_out_GT_PIPE] = ACTIONS(4769), - [anon_sym_e_GT_PIPE] = ACTIONS(4769), - [anon_sym_o_GT_PIPE] = ACTIONS(4769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4769), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4771), - [aux_sym_ctrl_match_token1] = ACTIONS(4769), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_EQ_GT] = ACTIONS(4769), - [anon_sym_LPAREN2] = ACTIONS(3914), - [aux_sym_expr_binary_token1] = ACTIONS(4769), - [aux_sym_expr_binary_token2] = ACTIONS(4769), - [aux_sym_expr_binary_token3] = ACTIONS(4769), - [aux_sym_expr_binary_token4] = ACTIONS(4769), - [aux_sym_expr_binary_token5] = ACTIONS(4769), - [aux_sym_expr_binary_token6] = ACTIONS(4769), - [aux_sym_expr_binary_token7] = ACTIONS(4769), - [aux_sym_expr_binary_token8] = ACTIONS(4769), - [aux_sym_expr_binary_token9] = ACTIONS(4769), - [aux_sym_expr_binary_token10] = ACTIONS(4769), - [aux_sym_expr_binary_token11] = ACTIONS(4769), - [aux_sym_expr_binary_token12] = ACTIONS(4769), - [aux_sym_expr_binary_token13] = ACTIONS(4769), - [aux_sym_expr_binary_token14] = ACTIONS(4769), - [aux_sym_expr_binary_token15] = ACTIONS(4769), - [aux_sym_expr_binary_token16] = ACTIONS(4769), - [aux_sym_expr_binary_token17] = ACTIONS(4769), - [aux_sym_expr_binary_token18] = ACTIONS(4769), - [aux_sym_expr_binary_token19] = ACTIONS(4769), - [aux_sym_expr_binary_token20] = ACTIONS(4769), - [aux_sym_expr_binary_token21] = ACTIONS(4769), - [aux_sym_expr_binary_token22] = ACTIONS(4769), - [aux_sym_expr_binary_token23] = ACTIONS(4769), - [aux_sym_expr_binary_token24] = ACTIONS(4769), - [aux_sym_expr_binary_token25] = ACTIONS(4769), - [aux_sym_expr_binary_token26] = ACTIONS(4769), - [aux_sym_expr_binary_token27] = ACTIONS(4769), - [aux_sym_expr_binary_token28] = ACTIONS(4769), - [anon_sym_err_GT] = ACTIONS(4771), - [anon_sym_out_GT] = ACTIONS(4771), - [anon_sym_e_GT] = ACTIONS(4771), - [anon_sym_o_GT] = ACTIONS(4771), - [anon_sym_err_PLUSout_GT] = ACTIONS(4771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4771), - [anon_sym_o_PLUSe_GT] = ACTIONS(4771), - [anon_sym_e_PLUSo_GT] = ACTIONS(4771), - [anon_sym_err_GT_GT] = ACTIONS(4769), - [anon_sym_out_GT_GT] = ACTIONS(4769), - [anon_sym_e_GT_GT] = ACTIONS(4769), - [anon_sym_o_GT_GT] = ACTIONS(4769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4769), + [ts_builtin_sym_end] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [sym__newline] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_err_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_GT_PIPE] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_DOT_DOT2] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), + [anon_sym_DOT_DOT_LT] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [anon_sym_0b] = ACTIONS(2033), + [anon_sym_0o] = ACTIONS(2033), + [anon_sym_0x] = ACTIONS(2033), + [sym_val_date] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_err_GT] = ACTIONS(2033), + [anon_sym_out_GT] = ACTIONS(2033), + [anon_sym_e_GT] = ACTIONS(2033), + [anon_sym_o_GT] = ACTIONS(2033), + [anon_sym_err_PLUSout_GT] = ACTIONS(2033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), + [anon_sym_o_PLUSe_GT] = ACTIONS(2033), + [anon_sym_e_PLUSo_GT] = ACTIONS(2033), + [anon_sym_err_GT_GT] = ACTIONS(2035), + [anon_sym_out_GT_GT] = ACTIONS(2035), + [anon_sym_e_GT_GT] = ACTIONS(2035), + [anon_sym_o_GT_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), + [aux_sym_unquoted_token1] = ACTIONS(2033), [anon_sym_POUND] = ACTIONS(247), }, [1448] = { [sym_comment] = STATE(1448), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [anon_sym_null] = ACTIONS(2671), - [aux_sym_cmd_identifier_token38] = ACTIONS(2671), - [aux_sym_cmd_identifier_token39] = ACTIONS(2671), - [aux_sym_cmd_identifier_token40] = ACTIONS(2671), - [sym__newline] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_err_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_GT_PIPE] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_DOLLAR] = ACTIONS(4808), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(4808), - [aux_sym_ctrl_match_token1] = ACTIONS(2671), - [anon_sym_DOT_DOT] = ACTIONS(4808), - [anon_sym_DOT_DOT2] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4808), - [anon_sym_DOT_DOT_LT] = ACTIONS(4808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), - [aux_sym__val_number_decimal_token1] = ACTIONS(4808), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2671), - [aux_sym__val_number_decimal_token4] = ACTIONS(2671), - [aux_sym__val_number_token1] = ACTIONS(2671), - [aux_sym__val_number_token2] = ACTIONS(2671), - [aux_sym__val_number_token3] = ACTIONS(2671), - [anon_sym_0b] = ACTIONS(4808), - [anon_sym_0o] = ACTIONS(4808), - [anon_sym_0x] = ACTIONS(4808), - [sym_val_date] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2671), - [sym__str_back_ticks] = ACTIONS(2671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2671), - [anon_sym_err_GT] = ACTIONS(4808), - [anon_sym_out_GT] = ACTIONS(4808), - [anon_sym_e_GT] = ACTIONS(4808), - [anon_sym_o_GT] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT] = ACTIONS(4808), - [anon_sym_err_GT_GT] = ACTIONS(2671), - [anon_sym_out_GT_GT] = ACTIONS(2671), - [anon_sym_e_GT_GT] = ACTIONS(2671), - [anon_sym_o_GT_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2671), - [aux_sym_unquoted_token1] = ACTIONS(4808), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_0b] = ACTIONS(1042), + [anon_sym_0o] = ACTIONS(1042), + [anon_sym_0x] = ACTIONS(1042), + [sym_val_date] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [aux_sym_unquoted_token1] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, [1449] = { [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [sym__newline] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_err_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_GT_PIPE] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2035), - [aux_sym_ctrl_match_token1] = ACTIONS(2041), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(4810), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4812), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4812), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [anon_sym_0b] = ACTIONS(2035), - [anon_sym_0o] = ACTIONS(2035), - [anon_sym_0x] = ACTIONS(2035), - [sym_val_date] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_err_GT] = ACTIONS(2035), - [anon_sym_out_GT] = ACTIONS(2035), - [anon_sym_e_GT] = ACTIONS(2035), - [anon_sym_o_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT] = ACTIONS(2035), - [anon_sym_err_GT_GT] = ACTIONS(2041), - [anon_sym_out_GT_GT] = ACTIONS(2041), - [anon_sym_e_GT_GT] = ACTIONS(2041), - [anon_sym_o_GT_GT] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), - [aux_sym_unquoted_token1] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [aux_sym_cmd_identifier_token38] = ACTIONS(2253), + [aux_sym_cmd_identifier_token39] = ACTIONS(2253), + [aux_sym_cmd_identifier_token40] = ACTIONS(2253), + [sym__newline] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_err_GT_PIPE] = ACTIONS(2255), + [anon_sym_out_GT_PIPE] = ACTIONS(2255), + [anon_sym_e_GT_PIPE] = ACTIONS(2255), + [anon_sym_o_GT_PIPE] = ACTIONS(2255), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2255), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2255), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2255), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_LPAREN2] = ACTIONS(2255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), + [anon_sym_DOT_DOT_LT] = ACTIONS(2253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2253), + [aux_sym__val_number_decimal_token2] = ACTIONS(2253), + [aux_sym__val_number_decimal_token3] = ACTIONS(2253), + [aux_sym__val_number_decimal_token4] = ACTIONS(2253), + [aux_sym__val_number_token1] = ACTIONS(2253), + [aux_sym__val_number_token2] = ACTIONS(2253), + [aux_sym__val_number_token3] = ACTIONS(2253), + [anon_sym_0b] = ACTIONS(2253), + [anon_sym_0o] = ACTIONS(2253), + [anon_sym_0x] = ACTIONS(2253), + [sym_val_date] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2255), + [sym__str_single_quotes] = ACTIONS(2255), + [sym__str_back_ticks] = ACTIONS(2255), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2255), + [anon_sym_err_GT] = ACTIONS(2253), + [anon_sym_out_GT] = ACTIONS(2253), + [anon_sym_e_GT] = ACTIONS(2253), + [anon_sym_o_GT] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT] = ACTIONS(2253), + [anon_sym_err_GT_GT] = ACTIONS(2253), + [anon_sym_out_GT_GT] = ACTIONS(2253), + [anon_sym_e_GT_GT] = ACTIONS(2253), + [anon_sym_o_GT_GT] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2253), + [aux_sym_unquoted_token1] = ACTIONS(2253), + [aux_sym_unquoted_token4] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(3), }, [1450] = { [sym_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1705), - [aux_sym_ctrl_match_token1] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_0b] = ACTIONS(1038), + [anon_sym_0o] = ACTIONS(1038), + [anon_sym_0x] = ACTIONS(1038), + [sym_val_date] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [aux_sym_unquoted_token1] = ACTIONS(1038), [anon_sym_POUND] = ACTIONS(247), }, [1451] = { [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1567), - [aux_sym_expr_binary_token1] = ACTIONS(1567), - [aux_sym_expr_binary_token2] = ACTIONS(1567), - [aux_sym_expr_binary_token3] = ACTIONS(1567), - [aux_sym_expr_binary_token4] = ACTIONS(1567), - [aux_sym_expr_binary_token5] = ACTIONS(1567), - [aux_sym_expr_binary_token6] = ACTIONS(1567), - [aux_sym_expr_binary_token7] = ACTIONS(1567), - [aux_sym_expr_binary_token8] = ACTIONS(1567), - [aux_sym_expr_binary_token9] = ACTIONS(1567), - [aux_sym_expr_binary_token10] = ACTIONS(1567), - [aux_sym_expr_binary_token11] = ACTIONS(1567), - [aux_sym_expr_binary_token12] = ACTIONS(1567), - [aux_sym_expr_binary_token13] = ACTIONS(1567), - [aux_sym_expr_binary_token14] = ACTIONS(1567), - [aux_sym_expr_binary_token15] = ACTIONS(1567), - [aux_sym_expr_binary_token16] = ACTIONS(1567), - [aux_sym_expr_binary_token17] = ACTIONS(1567), - [aux_sym_expr_binary_token18] = ACTIONS(1567), - [aux_sym_expr_binary_token19] = ACTIONS(1567), - [aux_sym_expr_binary_token20] = ACTIONS(1567), - [aux_sym_expr_binary_token21] = ACTIONS(1567), - [aux_sym_expr_binary_token22] = ACTIONS(1567), - [aux_sym_expr_binary_token23] = ACTIONS(1567), - [aux_sym_expr_binary_token24] = ACTIONS(1567), - [aux_sym_expr_binary_token25] = ACTIONS(1567), - [aux_sym_expr_binary_token26] = ACTIONS(1567), - [aux_sym_expr_binary_token27] = ACTIONS(1567), - [aux_sym_expr_binary_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1036), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, [1452] = { [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), + [sym__newline] = ACTIONS(1518), + [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_RPAREN] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1453] = { [sym_comment] = STATE(1453), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1643), - [aux_sym_ctrl_match_token1] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1643), - [aux_sym_unquoted_token2] = ACTIONS(1643), + [ts_builtin_sym_end] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_null] = ACTIONS(2005), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2005), + [aux_sym_cmd_identifier_token40] = ACTIONS(2005), + [sym__newline] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_err_GT_PIPE] = ACTIONS(2005), + [anon_sym_out_GT_PIPE] = ACTIONS(2005), + [anon_sym_e_GT_PIPE] = ACTIONS(2005), + [anon_sym_o_GT_PIPE] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_DASH_DASH] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_DOT_DOT2] = ACTIONS(4802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4804), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4804), + [aux_sym__val_number_decimal_token1] = ACTIONS(1999), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2005), + [aux_sym__val_number_decimal_token4] = ACTIONS(2005), + [aux_sym__val_number_token1] = ACTIONS(2005), + [aux_sym__val_number_token2] = ACTIONS(2005), + [aux_sym__val_number_token3] = ACTIONS(2005), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), + [anon_sym_err_GT] = ACTIONS(1999), + [anon_sym_out_GT] = ACTIONS(1999), + [anon_sym_e_GT] = ACTIONS(1999), + [anon_sym_o_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT] = ACTIONS(1999), + [anon_sym_err_GT_GT] = ACTIONS(2005), + [anon_sym_out_GT_GT] = ACTIONS(2005), + [anon_sym_e_GT_GT] = ACTIONS(2005), + [anon_sym_o_GT_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2005), + [aux_sym_unquoted_token1] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(247), }, [1454] = { [sym_comment] = STATE(1454), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [aux_sym_ctrl_match_token1] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(4814), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1028), - [anon_sym_0o] = ACTIONS(1028), - [anon_sym_0x] = ACTIONS(1028), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1556), + [aux_sym_cmd_identifier_token41] = ACTIONS(1554), + [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), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4806), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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_POUND] = ACTIONS(247), }, [1455] = { [sym_comment] = STATE(1455), - [sym__newline] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), - [aux_sym_unquoted_token2] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1072), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT2] = ACTIONS(4789), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4791), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), + [aux_sym_unquoted_token1] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(247), }, [1456] = { [sym_comment] = STATE(1456), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [aux_sym_ctrl_match_token1] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1046), - [anon_sym_QMARK2] = ACTIONS(1046), - [aux_sym_expr_binary_token1] = ACTIONS(1046), - [aux_sym_expr_binary_token2] = ACTIONS(1046), - [aux_sym_expr_binary_token3] = ACTIONS(1046), - [aux_sym_expr_binary_token4] = ACTIONS(1046), - [aux_sym_expr_binary_token5] = ACTIONS(1046), - [aux_sym_expr_binary_token6] = ACTIONS(1046), - [aux_sym_expr_binary_token7] = ACTIONS(1046), - [aux_sym_expr_binary_token8] = ACTIONS(1046), - [aux_sym_expr_binary_token9] = ACTIONS(1046), - [aux_sym_expr_binary_token10] = ACTIONS(1046), - [aux_sym_expr_binary_token11] = ACTIONS(1046), - [aux_sym_expr_binary_token12] = ACTIONS(1046), - [aux_sym_expr_binary_token13] = ACTIONS(1046), - [aux_sym_expr_binary_token14] = ACTIONS(1046), - [aux_sym_expr_binary_token15] = ACTIONS(1046), - [aux_sym_expr_binary_token16] = ACTIONS(1046), - [aux_sym_expr_binary_token17] = ACTIONS(1046), - [aux_sym_expr_binary_token18] = ACTIONS(1046), - [aux_sym_expr_binary_token19] = ACTIONS(1046), - [aux_sym_expr_binary_token20] = ACTIONS(1046), - [aux_sym_expr_binary_token21] = ACTIONS(1046), - [aux_sym_expr_binary_token22] = ACTIONS(1046), - [aux_sym_expr_binary_token23] = ACTIONS(1046), - [aux_sym_expr_binary_token24] = ACTIONS(1046), - [aux_sym_expr_binary_token25] = ACTIONS(1046), - [aux_sym_expr_binary_token26] = ACTIONS(1046), - [aux_sym_expr_binary_token27] = ACTIONS(1046), - [aux_sym_expr_binary_token28] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [sym__newline] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_err_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_GT_PIPE] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), + [anon_sym_DOT_DOT_LT] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1796), + [anon_sym_out_GT_GT] = ACTIONS(1796), + [anon_sym_e_GT_GT] = ACTIONS(1796), + [anon_sym_o_GT_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(1798), [anon_sym_POUND] = ACTIONS(247), }, [1457] = { - [sym_cell_path] = STATE(1953), - [sym_path] = STATE(1238), [sym_comment] = STATE(1457), - [aux_sym_cell_path_repeat1] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(1688), - [sym__newline] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_err_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_GT_PIPE] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), - [aux_sym_expr_binary_token1] = ACTIONS(1688), - [aux_sym_expr_binary_token2] = ACTIONS(1688), - [aux_sym_expr_binary_token3] = ACTIONS(1688), - [aux_sym_expr_binary_token4] = ACTIONS(1688), - [aux_sym_expr_binary_token5] = ACTIONS(1688), - [aux_sym_expr_binary_token6] = ACTIONS(1688), - [aux_sym_expr_binary_token7] = ACTIONS(1688), - [aux_sym_expr_binary_token8] = ACTIONS(1688), - [aux_sym_expr_binary_token9] = ACTIONS(1688), - [aux_sym_expr_binary_token10] = ACTIONS(1688), - [aux_sym_expr_binary_token11] = ACTIONS(1688), - [aux_sym_expr_binary_token12] = ACTIONS(1688), - [aux_sym_expr_binary_token13] = ACTIONS(1688), - [aux_sym_expr_binary_token14] = ACTIONS(1688), - [aux_sym_expr_binary_token15] = ACTIONS(1688), - [aux_sym_expr_binary_token16] = ACTIONS(1688), - [aux_sym_expr_binary_token17] = ACTIONS(1688), - [aux_sym_expr_binary_token18] = ACTIONS(1688), - [aux_sym_expr_binary_token19] = ACTIONS(1688), - [aux_sym_expr_binary_token20] = ACTIONS(1688), - [aux_sym_expr_binary_token21] = ACTIONS(1688), - [aux_sym_expr_binary_token22] = ACTIONS(1688), - [aux_sym_expr_binary_token23] = ACTIONS(1688), - [aux_sym_expr_binary_token24] = ACTIONS(1688), - [aux_sym_expr_binary_token25] = ACTIONS(1688), - [aux_sym_expr_binary_token26] = ACTIONS(1688), - [aux_sym_expr_binary_token27] = ACTIONS(1688), - [aux_sym_expr_binary_token28] = ACTIONS(1688), - [anon_sym_DOT_DOT2] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), - [anon_sym_err_GT] = ACTIONS(1686), - [anon_sym_out_GT] = ACTIONS(1686), - [anon_sym_e_GT] = ACTIONS(1686), - [anon_sym_o_GT] = ACTIONS(1686), - [anon_sym_err_PLUSout_GT] = ACTIONS(1686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), - [anon_sym_o_PLUSe_GT] = ACTIONS(1686), - [anon_sym_e_PLUSo_GT] = ACTIONS(1686), - [anon_sym_err_GT_GT] = ACTIONS(1688), - [anon_sym_out_GT_GT] = ACTIONS(1688), - [anon_sym_e_GT_GT] = ACTIONS(1688), - [anon_sym_o_GT_GT] = ACTIONS(1688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(247), }, [1458] = { [sym_comment] = STATE(1458), - [sym__newline] = ACTIONS(4816), - [anon_sym_SEMI] = ACTIONS(4816), - [anon_sym_PIPE] = ACTIONS(4816), - [anon_sym_err_GT_PIPE] = ACTIONS(4816), - [anon_sym_out_GT_PIPE] = ACTIONS(4816), - [anon_sym_e_GT_PIPE] = ACTIONS(4816), - [anon_sym_o_GT_PIPE] = ACTIONS(4816), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4816), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4816), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4816), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4816), - [anon_sym_RPAREN] = ACTIONS(4816), - [anon_sym_DASH_DASH] = ACTIONS(4816), - [anon_sym_DASH] = ACTIONS(4818), - [aux_sym_ctrl_match_token1] = ACTIONS(4816), - [anon_sym_RBRACE] = ACTIONS(4816), - [aux_sym_expr_binary_token1] = ACTIONS(4820), - [aux_sym_expr_binary_token2] = ACTIONS(4820), - [aux_sym_expr_binary_token3] = ACTIONS(4820), - [aux_sym_expr_binary_token4] = ACTIONS(4820), - [aux_sym_expr_binary_token5] = ACTIONS(4820), - [aux_sym_expr_binary_token6] = ACTIONS(4820), - [aux_sym_expr_binary_token7] = ACTIONS(4820), - [aux_sym_expr_binary_token8] = ACTIONS(4820), - [aux_sym_expr_binary_token9] = ACTIONS(4820), - [aux_sym_expr_binary_token10] = ACTIONS(4820), - [aux_sym_expr_binary_token11] = ACTIONS(4820), - [aux_sym_expr_binary_token12] = ACTIONS(4820), - [aux_sym_expr_binary_token13] = ACTIONS(4820), - [aux_sym_expr_binary_token14] = ACTIONS(4820), - [aux_sym_expr_binary_token15] = ACTIONS(4820), - [aux_sym_expr_binary_token16] = ACTIONS(4820), - [aux_sym_expr_binary_token17] = ACTIONS(4820), - [aux_sym_expr_binary_token18] = ACTIONS(4820), - [aux_sym_expr_binary_token19] = ACTIONS(4820), - [aux_sym_expr_binary_token20] = ACTIONS(4820), - [aux_sym_expr_binary_token21] = ACTIONS(4820), - [aux_sym_expr_binary_token22] = ACTIONS(4820), - [aux_sym_expr_binary_token23] = ACTIONS(4820), - [aux_sym_expr_binary_token24] = ACTIONS(4820), - [aux_sym_expr_binary_token25] = ACTIONS(4820), - [aux_sym_expr_binary_token26] = ACTIONS(4820), - [aux_sym_expr_binary_token27] = ACTIONS(4820), - [aux_sym_expr_binary_token28] = ACTIONS(4820), - [anon_sym_DOT_DOT2] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), - [anon_sym_err_GT] = ACTIONS(4818), - [anon_sym_out_GT] = ACTIONS(4818), - [anon_sym_e_GT] = ACTIONS(4818), - [anon_sym_o_GT] = ACTIONS(4818), - [anon_sym_err_PLUSout_GT] = ACTIONS(4818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4818), - [anon_sym_o_PLUSe_GT] = ACTIONS(4818), - [anon_sym_e_PLUSo_GT] = ACTIONS(4818), - [anon_sym_err_GT_GT] = ACTIONS(4816), - [anon_sym_out_GT_GT] = ACTIONS(4816), - [anon_sym_e_GT_GT] = ACTIONS(4816), - [anon_sym_o_GT_GT] = ACTIONS(4816), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4816), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4816), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4816), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4816), + [ts_builtin_sym_end] = 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_LPAREN2] = ACTIONS(1520), + [aux_sym_expr_binary_token1] = ACTIONS(1520), + [aux_sym_expr_binary_token2] = ACTIONS(1520), + [aux_sym_expr_binary_token3] = ACTIONS(1520), + [aux_sym_expr_binary_token4] = ACTIONS(1520), + [aux_sym_expr_binary_token5] = ACTIONS(1520), + [aux_sym_expr_binary_token6] = ACTIONS(1520), + [aux_sym_expr_binary_token7] = ACTIONS(1520), + [aux_sym_expr_binary_token8] = ACTIONS(1520), + [aux_sym_expr_binary_token9] = ACTIONS(1520), + [aux_sym_expr_binary_token10] = ACTIONS(1520), + [aux_sym_expr_binary_token11] = ACTIONS(1520), + [aux_sym_expr_binary_token12] = ACTIONS(1520), + [aux_sym_expr_binary_token13] = ACTIONS(1520), + [aux_sym_expr_binary_token14] = ACTIONS(1520), + [aux_sym_expr_binary_token15] = ACTIONS(1520), + [aux_sym_expr_binary_token16] = ACTIONS(1520), + [aux_sym_expr_binary_token17] = ACTIONS(1520), + [aux_sym_expr_binary_token18] = ACTIONS(1520), + [aux_sym_expr_binary_token19] = ACTIONS(1520), + [aux_sym_expr_binary_token20] = ACTIONS(1520), + [aux_sym_expr_binary_token21] = ACTIONS(1520), + [aux_sym_expr_binary_token22] = ACTIONS(1520), + [aux_sym_expr_binary_token23] = ACTIONS(1520), + [aux_sym_expr_binary_token24] = ACTIONS(1520), + [aux_sym_expr_binary_token25] = ACTIONS(1520), + [aux_sym_expr_binary_token26] = ACTIONS(1520), + [aux_sym_expr_binary_token27] = ACTIONS(1520), + [aux_sym_expr_binary_token28] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(1520), + [sym_duration_unit] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(247), }, [1459] = { - [sym_cell_path] = STATE(1982), - [sym_path] = STATE(1238), [sym_comment] = STATE(1459), - [aux_sym_cell_path_repeat1] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(1629), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [aux_sym_expr_binary_token1] = ACTIONS(1629), - [aux_sym_expr_binary_token2] = ACTIONS(1629), - [aux_sym_expr_binary_token3] = ACTIONS(1629), - [aux_sym_expr_binary_token4] = ACTIONS(1629), - [aux_sym_expr_binary_token5] = ACTIONS(1629), - [aux_sym_expr_binary_token6] = ACTIONS(1629), - [aux_sym_expr_binary_token7] = ACTIONS(1629), - [aux_sym_expr_binary_token8] = ACTIONS(1629), - [aux_sym_expr_binary_token9] = ACTIONS(1629), - [aux_sym_expr_binary_token10] = ACTIONS(1629), - [aux_sym_expr_binary_token11] = ACTIONS(1629), - [aux_sym_expr_binary_token12] = ACTIONS(1629), - [aux_sym_expr_binary_token13] = ACTIONS(1629), - [aux_sym_expr_binary_token14] = ACTIONS(1629), - [aux_sym_expr_binary_token15] = ACTIONS(1629), - [aux_sym_expr_binary_token16] = ACTIONS(1629), - [aux_sym_expr_binary_token17] = ACTIONS(1629), - [aux_sym_expr_binary_token18] = ACTIONS(1629), - [aux_sym_expr_binary_token19] = ACTIONS(1629), - [aux_sym_expr_binary_token20] = ACTIONS(1629), - [aux_sym_expr_binary_token21] = ACTIONS(1629), - [aux_sym_expr_binary_token22] = ACTIONS(1629), - [aux_sym_expr_binary_token23] = ACTIONS(1629), - [aux_sym_expr_binary_token24] = ACTIONS(1629), - [aux_sym_expr_binary_token25] = ACTIONS(1629), - [aux_sym_expr_binary_token26] = ACTIONS(1629), - [aux_sym_expr_binary_token27] = ACTIONS(1629), - [aux_sym_expr_binary_token28] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1625), - [anon_sym_out_GT] = ACTIONS(1625), - [anon_sym_e_GT] = ACTIONS(1625), - [anon_sym_o_GT] = ACTIONS(1625), - [anon_sym_err_PLUSout_GT] = ACTIONS(1625), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), - [anon_sym_o_PLUSe_GT] = ACTIONS(1625), - [anon_sym_e_PLUSo_GT] = ACTIONS(1625), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token2] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(247), }, [1460] = { [sym_comment] = STATE(1460), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1786), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [aux_sym_cmd_identifier_token38] = ACTIONS(4808), + [aux_sym_cmd_identifier_token39] = ACTIONS(4810), + [aux_sym_cmd_identifier_token40] = ACTIONS(4808), + [sym_long_flag_identifier] = ACTIONS(4812), + [sym__newline] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_err_GT_PIPE] = ACTIONS(4810), + [anon_sym_out_GT_PIPE] = ACTIONS(4810), + [anon_sym_e_GT_PIPE] = ACTIONS(4810), + [anon_sym_o_GT_PIPE] = ACTIONS(4810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_LBRACE] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4810), + [anon_sym_DOT_DOT_LT] = ACTIONS(4810), + [aux_sym__val_number_decimal_token1] = ACTIONS(4808), + [aux_sym__val_number_decimal_token2] = ACTIONS(4810), + [aux_sym__val_number_decimal_token3] = ACTIONS(4810), + [aux_sym__val_number_decimal_token4] = ACTIONS(4810), + [aux_sym__val_number_token1] = ACTIONS(4808), + [aux_sym__val_number_token2] = ACTIONS(4808), + [aux_sym__val_number_token3] = ACTIONS(4808), + [anon_sym_0b] = ACTIONS(4808), + [anon_sym_0o] = ACTIONS(4808), + [anon_sym_0x] = ACTIONS(4808), + [sym_val_date] = ACTIONS(4808), + [anon_sym_DQUOTE] = ACTIONS(4810), + [sym__str_single_quotes] = ACTIONS(4810), + [sym__str_back_ticks] = ACTIONS(4810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4810), + [anon_sym_err_GT] = ACTIONS(4808), + [anon_sym_out_GT] = ACTIONS(4808), + [anon_sym_e_GT] = ACTIONS(4808), + [anon_sym_o_GT] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT] = ACTIONS(4808), + [anon_sym_err_GT_GT] = ACTIONS(4810), + [anon_sym_out_GT_GT] = ACTIONS(4810), + [anon_sym_e_GT_GT] = ACTIONS(4810), + [anon_sym_o_GT_GT] = ACTIONS(4810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4810), + [anon_sym_EQ2] = ACTIONS(4814), + [aux_sym_unquoted_token1] = ACTIONS(4808), [anon_sym_POUND] = ACTIONS(247), }, [1461] = { [sym_comment] = STATE(1461), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_err_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_GT_PIPE] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [aux_sym_ctrl_match_token1] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [aux_sym_expr_binary_token1] = ACTIONS(1078), - [aux_sym_expr_binary_token2] = ACTIONS(1078), - [aux_sym_expr_binary_token3] = ACTIONS(1078), - [aux_sym_expr_binary_token4] = ACTIONS(1078), - [aux_sym_expr_binary_token5] = ACTIONS(1078), - [aux_sym_expr_binary_token6] = ACTIONS(1078), - [aux_sym_expr_binary_token7] = ACTIONS(1078), - [aux_sym_expr_binary_token8] = ACTIONS(1078), - [aux_sym_expr_binary_token9] = ACTIONS(1078), - [aux_sym_expr_binary_token10] = ACTIONS(1078), - [aux_sym_expr_binary_token11] = ACTIONS(1078), - [aux_sym_expr_binary_token12] = ACTIONS(1078), - [aux_sym_expr_binary_token13] = ACTIONS(1078), - [aux_sym_expr_binary_token14] = ACTIONS(1078), - [aux_sym_expr_binary_token15] = ACTIONS(1078), - [aux_sym_expr_binary_token16] = ACTIONS(1078), - [aux_sym_expr_binary_token17] = ACTIONS(1078), - [aux_sym_expr_binary_token18] = ACTIONS(1078), - [aux_sym_expr_binary_token19] = ACTIONS(1078), - [aux_sym_expr_binary_token20] = ACTIONS(1078), - [aux_sym_expr_binary_token21] = ACTIONS(1078), - [aux_sym_expr_binary_token22] = ACTIONS(1078), - [aux_sym_expr_binary_token23] = ACTIONS(1078), - [aux_sym_expr_binary_token24] = ACTIONS(1078), - [aux_sym_expr_binary_token25] = ACTIONS(1078), - [aux_sym_expr_binary_token26] = ACTIONS(1078), - [aux_sym_expr_binary_token27] = ACTIONS(1078), - [aux_sym_expr_binary_token28] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), - [anon_sym_err_GT] = ACTIONS(1076), - [anon_sym_out_GT] = ACTIONS(1076), - [anon_sym_e_GT] = ACTIONS(1076), - [anon_sym_o_GT] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT] = ACTIONS(1076), - [anon_sym_err_GT_GT] = ACTIONS(1078), - [anon_sym_out_GT_GT] = ACTIONS(1078), - [anon_sym_e_GT_GT] = ACTIONS(1078), - [anon_sym_o_GT_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [sym__newline] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [1462] = { [sym_comment] = STATE(1462), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [aux_sym_ctrl_match_token1] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_EQ_GT] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(4822), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_cmd_identifier_token41] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1655), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), [anon_sym_POUND] = ACTIONS(247), }, [1463] = { [sym_comment] = STATE(1463), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [aux_sym_unquoted_token2] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(247), + }, + [1464] = { + [sym_comment] = STATE(1464), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1542), + [aux_sym_expr_binary_token1] = ACTIONS(1542), + [aux_sym_expr_binary_token2] = ACTIONS(1542), + [aux_sym_expr_binary_token3] = ACTIONS(1542), + [aux_sym_expr_binary_token4] = ACTIONS(1542), + [aux_sym_expr_binary_token5] = ACTIONS(1542), + [aux_sym_expr_binary_token6] = ACTIONS(1542), + [aux_sym_expr_binary_token7] = ACTIONS(1542), + [aux_sym_expr_binary_token8] = ACTIONS(1542), + [aux_sym_expr_binary_token9] = ACTIONS(1542), + [aux_sym_expr_binary_token10] = ACTIONS(1542), + [aux_sym_expr_binary_token11] = ACTIONS(1542), + [aux_sym_expr_binary_token12] = ACTIONS(1542), + [aux_sym_expr_binary_token13] = ACTIONS(1542), + [aux_sym_expr_binary_token14] = ACTIONS(1542), + [aux_sym_expr_binary_token15] = ACTIONS(1542), + [aux_sym_expr_binary_token16] = ACTIONS(1542), + [aux_sym_expr_binary_token17] = ACTIONS(1542), + [aux_sym_expr_binary_token18] = ACTIONS(1542), + [aux_sym_expr_binary_token19] = ACTIONS(1542), + [aux_sym_expr_binary_token20] = ACTIONS(1542), + [aux_sym_expr_binary_token21] = ACTIONS(1542), + [aux_sym_expr_binary_token22] = ACTIONS(1542), + [aux_sym_expr_binary_token23] = ACTIONS(1542), + [aux_sym_expr_binary_token24] = ACTIONS(1542), + [aux_sym_expr_binary_token25] = ACTIONS(1542), + [aux_sym_expr_binary_token26] = ACTIONS(1542), + [aux_sym_expr_binary_token27] = ACTIONS(1542), + [aux_sym_expr_binary_token28] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym_filesize_unit] = ACTIONS(1542), + [sym_duration_unit] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [aux_sym_unquoted_token2] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(247), + }, + [1465] = { + [sym_comment] = STATE(1465), + [aux_sym_cmd_identifier_token41] = ACTIONS(4816), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [aux_sym_expr_binary_token1] = ACTIONS(1572), + [aux_sym_expr_binary_token2] = ACTIONS(1572), + [aux_sym_expr_binary_token3] = ACTIONS(1572), + [aux_sym_expr_binary_token4] = ACTIONS(1572), + [aux_sym_expr_binary_token5] = ACTIONS(1572), + [aux_sym_expr_binary_token6] = ACTIONS(1572), + [aux_sym_expr_binary_token7] = ACTIONS(1572), + [aux_sym_expr_binary_token8] = ACTIONS(1572), + [aux_sym_expr_binary_token9] = ACTIONS(1572), + [aux_sym_expr_binary_token10] = ACTIONS(1572), + [aux_sym_expr_binary_token11] = ACTIONS(1572), + [aux_sym_expr_binary_token12] = ACTIONS(1572), + [aux_sym_expr_binary_token13] = ACTIONS(1572), + [aux_sym_expr_binary_token14] = ACTIONS(1572), + [aux_sym_expr_binary_token15] = ACTIONS(1572), + [aux_sym_expr_binary_token16] = ACTIONS(1572), + [aux_sym_expr_binary_token17] = ACTIONS(1572), + [aux_sym_expr_binary_token18] = ACTIONS(1572), + [aux_sym_expr_binary_token19] = ACTIONS(1572), + [aux_sym_expr_binary_token20] = ACTIONS(1572), + [aux_sym_expr_binary_token21] = ACTIONS(1572), + [aux_sym_expr_binary_token22] = ACTIONS(1572), + [aux_sym_expr_binary_token23] = ACTIONS(1572), + [aux_sym_expr_binary_token24] = ACTIONS(1572), + [aux_sym_expr_binary_token25] = ACTIONS(1572), + [aux_sym_expr_binary_token26] = ACTIONS(1572), + [aux_sym_expr_binary_token27] = ACTIONS(1572), + [aux_sym_expr_binary_token28] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(4773), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4775), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4775), + [sym_filesize_unit] = ACTIONS(4818), + [sym_duration_unit] = ACTIONS(4820), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(247), + }, + [1466] = { + [sym_comment] = STATE(1466), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1024), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [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_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_QMARK2] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(247), + }, + [1467] = { + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1675), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [anon_sym_0b] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1675), + [anon_sym_0x] = ACTIONS(1675), + [sym_val_date] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [aux_sym_unquoted_token1] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(247), + }, + [1468] = { + [sym_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_0b] = ACTIONS(1058), + [anon_sym_0o] = ACTIONS(1058), + [anon_sym_0x] = ACTIONS(1058), + [sym_val_date] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [aux_sym_unquoted_token1] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(247), + }, + [1469] = { + [sym_comment] = STATE(1469), + [ts_builtin_sym_end] = 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_LPAREN2] = ACTIONS(1556), + [aux_sym_expr_binary_token1] = ACTIONS(1556), + [aux_sym_expr_binary_token2] = ACTIONS(1556), + [aux_sym_expr_binary_token3] = ACTIONS(1556), + [aux_sym_expr_binary_token4] = ACTIONS(1556), + [aux_sym_expr_binary_token5] = ACTIONS(1556), + [aux_sym_expr_binary_token6] = ACTIONS(1556), + [aux_sym_expr_binary_token7] = ACTIONS(1556), + [aux_sym_expr_binary_token8] = ACTIONS(1556), + [aux_sym_expr_binary_token9] = ACTIONS(1556), + [aux_sym_expr_binary_token10] = ACTIONS(1556), + [aux_sym_expr_binary_token11] = ACTIONS(1556), + [aux_sym_expr_binary_token12] = ACTIONS(1556), + [aux_sym_expr_binary_token13] = ACTIONS(1556), + [aux_sym_expr_binary_token14] = ACTIONS(1556), + [aux_sym_expr_binary_token15] = ACTIONS(1556), + [aux_sym_expr_binary_token16] = ACTIONS(1556), + [aux_sym_expr_binary_token17] = ACTIONS(1556), + [aux_sym_expr_binary_token18] = ACTIONS(1556), + [aux_sym_expr_binary_token19] = ACTIONS(1556), + [aux_sym_expr_binary_token20] = ACTIONS(1556), + [aux_sym_expr_binary_token21] = ACTIONS(1556), + [aux_sym_expr_binary_token22] = ACTIONS(1556), + [aux_sym_expr_binary_token23] = ACTIONS(1556), + [aux_sym_expr_binary_token24] = ACTIONS(1556), + [aux_sym_expr_binary_token25] = ACTIONS(1556), + [aux_sym_expr_binary_token26] = ACTIONS(1556), + [aux_sym_expr_binary_token27] = ACTIONS(1556), + [aux_sym_expr_binary_token28] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), + [sym_filesize_unit] = ACTIONS(1556), + [sym_duration_unit] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1554), + [anon_sym_out_GT] = ACTIONS(1554), + [anon_sym_e_GT] = ACTIONS(1554), + [anon_sym_o_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + }, + [1470] = { + [sym_comment] = STATE(1470), + [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_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_EQ_GT] = ACTIONS(1024), + [anon_sym_QMARK2] = ACTIONS(4824), + [aux_sym_expr_binary_token1] = ACTIONS(1024), + [aux_sym_expr_binary_token2] = ACTIONS(1024), + [aux_sym_expr_binary_token3] = ACTIONS(1024), + [aux_sym_expr_binary_token4] = ACTIONS(1024), + [aux_sym_expr_binary_token5] = ACTIONS(1024), + [aux_sym_expr_binary_token6] = ACTIONS(1024), + [aux_sym_expr_binary_token7] = ACTIONS(1024), + [aux_sym_expr_binary_token8] = ACTIONS(1024), + [aux_sym_expr_binary_token9] = ACTIONS(1024), + [aux_sym_expr_binary_token10] = ACTIONS(1024), + [aux_sym_expr_binary_token11] = ACTIONS(1024), + [aux_sym_expr_binary_token12] = ACTIONS(1024), + [aux_sym_expr_binary_token13] = ACTIONS(1024), + [aux_sym_expr_binary_token14] = ACTIONS(1024), + [aux_sym_expr_binary_token15] = ACTIONS(1024), + [aux_sym_expr_binary_token16] = ACTIONS(1024), + [aux_sym_expr_binary_token17] = ACTIONS(1024), + [aux_sym_expr_binary_token18] = ACTIONS(1024), + [aux_sym_expr_binary_token19] = ACTIONS(1024), + [aux_sym_expr_binary_token20] = ACTIONS(1024), + [aux_sym_expr_binary_token21] = ACTIONS(1024), + [aux_sym_expr_binary_token22] = ACTIONS(1024), + [aux_sym_expr_binary_token23] = ACTIONS(1024), + [aux_sym_expr_binary_token24] = ACTIONS(1024), + [aux_sym_expr_binary_token25] = ACTIONS(1024), + [aux_sym_expr_binary_token26] = ACTIONS(1024), + [aux_sym_expr_binary_token27] = ACTIONS(1024), + [aux_sym_expr_binary_token28] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [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(247), + }, + [1471] = { + [sym_comment] = STATE(1471), [sym__newline] = ACTIONS(1030), [anon_sym_SEMI] = ACTIONS(1030), [anon_sym_PIPE] = ACTIONS(1030), @@ -207009,10 +210394,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1030), [anon_sym_DASH_DASH] = ACTIONS(1030), [anon_sym_DASH] = ACTIONS(1028), - [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), [anon_sym_RBRACE] = ACTIONS(1030), [anon_sym_EQ_GT] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4824), + [anon_sym_QMARK2] = ACTIONS(4826), [aux_sym_expr_binary_token1] = ACTIONS(1030), [aux_sym_expr_binary_token2] = ACTIONS(1030), [aux_sym_expr_binary_token3] = ACTIONS(1030), @@ -207060,551 +210445,1952 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, - [1464] = { - [sym_comment] = STATE(1464), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [sym__newline] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_err_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_GT_PIPE] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1631), - [aux_sym_ctrl_match_token1] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), - [anon_sym_DOT_DOT_LT] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(4826), - [aux_sym__immediate_decimal_token2] = ACTIONS(4828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [anon_sym_0b] = ACTIONS(1631), - [anon_sym_0o] = ACTIONS(1631), - [anon_sym_0x] = ACTIONS(1631), - [sym_val_date] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), - [anon_sym_err_GT] = ACTIONS(1631), - [anon_sym_out_GT] = ACTIONS(1631), - [anon_sym_e_GT] = ACTIONS(1631), - [anon_sym_o_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT] = ACTIONS(1631), - [anon_sym_err_GT_GT] = ACTIONS(1633), - [anon_sym_out_GT_GT] = ACTIONS(1633), - [anon_sym_e_GT_GT] = ACTIONS(1633), - [anon_sym_o_GT_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), - [aux_sym_unquoted_token1] = ACTIONS(1631), + [1472] = { + [sym_comment] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_null] = ACTIONS(2143), + [aux_sym_cmd_identifier_token38] = ACTIONS(2143), + [aux_sym_cmd_identifier_token39] = ACTIONS(2143), + [aux_sym_cmd_identifier_token40] = ACTIONS(2143), + [sym__newline] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_err_GT_PIPE] = ACTIONS(2143), + [anon_sym_out_GT_PIPE] = ACTIONS(2143), + [anon_sym_e_GT_PIPE] = ACTIONS(2143), + [anon_sym_o_GT_PIPE] = ACTIONS(2143), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2143), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2143), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2143), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2141), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_DOT_DOT2] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2141), + [anon_sym_DOT_DOT_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), + [aux_sym__val_number_decimal_token1] = ACTIONS(2141), + [aux_sym__val_number_decimal_token2] = ACTIONS(2143), + [aux_sym__val_number_decimal_token3] = ACTIONS(2143), + [aux_sym__val_number_decimal_token4] = ACTIONS(2143), + [aux_sym__val_number_token1] = ACTIONS(2143), + [aux_sym__val_number_token2] = ACTIONS(2143), + [aux_sym__val_number_token3] = ACTIONS(2143), + [anon_sym_0b] = ACTIONS(2141), + [anon_sym_0o] = ACTIONS(2141), + [anon_sym_0x] = ACTIONS(2141), + [sym_val_date] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [sym__str_single_quotes] = ACTIONS(2143), + [sym__str_back_ticks] = ACTIONS(2143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), + [anon_sym_err_GT] = ACTIONS(2141), + [anon_sym_out_GT] = ACTIONS(2141), + [anon_sym_e_GT] = ACTIONS(2141), + [anon_sym_o_GT] = ACTIONS(2141), + [anon_sym_err_PLUSout_GT] = ACTIONS(2141), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2141), + [anon_sym_o_PLUSe_GT] = ACTIONS(2141), + [anon_sym_e_PLUSo_GT] = ACTIONS(2141), + [anon_sym_err_GT_GT] = ACTIONS(2143), + [anon_sym_out_GT_GT] = ACTIONS(2143), + [anon_sym_e_GT_GT] = ACTIONS(2143), + [anon_sym_o_GT_GT] = ACTIONS(2143), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2143), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2143), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2143), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2143), + [aux_sym_unquoted_token1] = ACTIONS(2141), [anon_sym_POUND] = ACTIONS(247), }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2049), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [sym__newline] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_err_GT_PIPE] = ACTIONS(2049), - [anon_sym_out_GT_PIPE] = ACTIONS(2049), - [anon_sym_e_GT_PIPE] = ACTIONS(2049), - [anon_sym_o_GT_PIPE] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2043), - [aux_sym_ctrl_match_token1] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT_DOT2] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [sym_val_date] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), - [anon_sym_err_GT] = ACTIONS(2043), - [anon_sym_out_GT] = ACTIONS(2043), - [anon_sym_e_GT] = ACTIONS(2043), - [anon_sym_o_GT] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT] = ACTIONS(2043), - [anon_sym_err_GT_GT] = ACTIONS(2049), - [anon_sym_out_GT_GT] = ACTIONS(2049), - [anon_sym_e_GT_GT] = ACTIONS(2049), - [anon_sym_o_GT_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), - [aux_sym_unquoted_token1] = ACTIONS(2043), + [1473] = { + [sym_comment] = STATE(1473), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1740), + [aux_sym_cmd_identifier_token38] = ACTIONS(1740), + [aux_sym_cmd_identifier_token39] = ACTIONS(1740), + [aux_sym_cmd_identifier_token40] = ACTIONS(1740), + [sym__newline] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_err_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_GT_PIPE] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT] = ACTIONS(1740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1740), + [aux_sym__val_number_decimal_token3] = ACTIONS(1740), + [aux_sym__val_number_decimal_token4] = ACTIONS(1740), + [aux_sym__val_number_token1] = ACTIONS(1740), + [aux_sym__val_number_token2] = ACTIONS(1740), + [aux_sym__val_number_token3] = ACTIONS(1740), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [sym__str_single_quotes] = ACTIONS(1740), + [sym__str_back_ticks] = ACTIONS(1740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), + [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(1740), + [anon_sym_out_GT_GT] = ACTIONS(1740), + [anon_sym_e_GT_GT] = ACTIONS(1740), + [anon_sym_o_GT_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), + [aux_sym_unquoted_token1] = ACTIONS(1738), + [aux_sym_unquoted_token2] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(247), + }, + [1474] = { + [sym_comment] = STATE(1474), + [ts_builtin_sym_end] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1655), + [aux_sym_expr_binary_token1] = ACTIONS(1655), + [aux_sym_expr_binary_token2] = ACTIONS(1655), + [aux_sym_expr_binary_token3] = ACTIONS(1655), + [aux_sym_expr_binary_token4] = ACTIONS(1655), + [aux_sym_expr_binary_token5] = ACTIONS(1655), + [aux_sym_expr_binary_token6] = ACTIONS(1655), + [aux_sym_expr_binary_token7] = ACTIONS(1655), + [aux_sym_expr_binary_token8] = ACTIONS(1655), + [aux_sym_expr_binary_token9] = ACTIONS(1655), + [aux_sym_expr_binary_token10] = ACTIONS(1655), + [aux_sym_expr_binary_token11] = ACTIONS(1655), + [aux_sym_expr_binary_token12] = ACTIONS(1655), + [aux_sym_expr_binary_token13] = ACTIONS(1655), + [aux_sym_expr_binary_token14] = ACTIONS(1655), + [aux_sym_expr_binary_token15] = ACTIONS(1655), + [aux_sym_expr_binary_token16] = ACTIONS(1655), + [aux_sym_expr_binary_token17] = ACTIONS(1655), + [aux_sym_expr_binary_token18] = ACTIONS(1655), + [aux_sym_expr_binary_token19] = ACTIONS(1655), + [aux_sym_expr_binary_token20] = ACTIONS(1655), + [aux_sym_expr_binary_token21] = ACTIONS(1655), + [aux_sym_expr_binary_token22] = ACTIONS(1655), + [aux_sym_expr_binary_token23] = ACTIONS(1655), + [aux_sym_expr_binary_token24] = ACTIONS(1655), + [aux_sym_expr_binary_token25] = ACTIONS(1655), + [aux_sym_expr_binary_token26] = ACTIONS(1655), + [aux_sym_expr_binary_token27] = ACTIONS(1655), + [aux_sym_expr_binary_token28] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [sym_filesize_unit] = ACTIONS(1655), + [sym_duration_unit] = ACTIONS(1655), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [aux_sym_unquoted_token2] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(247), + }, + [1475] = { + [sym_comment] = STATE(1475), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1070), + [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_LPAREN2] = ACTIONS(2225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token4] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1070), + [anon_sym_out_GT_GT] = ACTIONS(1070), + [anon_sym_e_GT_GT] = ACTIONS(1070), + [anon_sym_o_GT_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1070), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [aux_sym_unquoted_token4] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(3), + }, + [1476] = { + [sym_comment] = STATE(1476), + [anon_sym_true] = ACTIONS(4828), + [anon_sym_false] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4828), + [aux_sym_cmd_identifier_token38] = ACTIONS(4828), + [aux_sym_cmd_identifier_token39] = ACTIONS(4828), + [aux_sym_cmd_identifier_token40] = ACTIONS(4828), + [sym__newline] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_err_GT_PIPE] = ACTIONS(4828), + [anon_sym_out_GT_PIPE] = ACTIONS(4828), + [anon_sym_e_GT_PIPE] = ACTIONS(4828), + [anon_sym_o_GT_PIPE] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4828), + [anon_sym_RPAREN] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_DOT_DOT2] = ACTIONS(4716), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4830), + [anon_sym_DOT_DOT_LT] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), + [aux_sym__val_number_decimal_token1] = ACTIONS(4830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4828), + [aux_sym__val_number_decimal_token3] = ACTIONS(4828), + [aux_sym__val_number_decimal_token4] = ACTIONS(4828), + [aux_sym__val_number_token1] = ACTIONS(4828), + [aux_sym__val_number_token2] = ACTIONS(4828), + [aux_sym__val_number_token3] = ACTIONS(4828), + [anon_sym_0b] = ACTIONS(4830), + [anon_sym_0o] = ACTIONS(4830), + [anon_sym_0x] = ACTIONS(4830), + [sym_val_date] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym__str_single_quotes] = ACTIONS(4828), + [sym__str_back_ticks] = ACTIONS(4828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4828), + [anon_sym_err_GT] = ACTIONS(4830), + [anon_sym_out_GT] = ACTIONS(4830), + [anon_sym_e_GT] = ACTIONS(4830), + [anon_sym_o_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT] = ACTIONS(4830), + [anon_sym_err_GT_GT] = ACTIONS(4828), + [anon_sym_out_GT_GT] = ACTIONS(4828), + [anon_sym_e_GT_GT] = ACTIONS(4828), + [anon_sym_o_GT_GT] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4828), + [aux_sym_unquoted_token1] = ACTIONS(4830), + [anon_sym_POUND] = ACTIONS(247), + }, + [1477] = { + [sym_comment] = STATE(1477), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(4832), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1028), + [anon_sym_0o] = ACTIONS(1028), + [anon_sym_0x] = ACTIONS(1028), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [aux_sym_unquoted_token1] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, - [1466] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(1466), - [anon_sym_true] = ACTIONS(4781), - [anon_sym_false] = ACTIONS(4781), - [anon_sym_null] = ACTIONS(4781), - [aux_sym_cmd_identifier_token38] = ACTIONS(4781), - [aux_sym_cmd_identifier_token39] = ACTIONS(4781), - [aux_sym_cmd_identifier_token40] = ACTIONS(4781), - [sym__newline] = ACTIONS(4781), - [anon_sym_SEMI] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_err_GT_PIPE] = ACTIONS(4781), - [anon_sym_out_GT_PIPE] = ACTIONS(4781), - [anon_sym_e_GT_PIPE] = ACTIONS(4781), - [anon_sym_o_GT_PIPE] = ACTIONS(4781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4781), - [anon_sym_LBRACK] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4781), - [anon_sym_DOLLAR] = ACTIONS(4783), - [anon_sym_DASH_DASH] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4783), - [aux_sym_ctrl_match_token1] = ACTIONS(4781), - [anon_sym_RBRACE] = ACTIONS(4781), - [anon_sym_DOT_DOT] = ACTIONS(4783), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4781), - [anon_sym_DOT_DOT_LT] = ACTIONS(4781), - [aux_sym__val_number_decimal_token1] = ACTIONS(4783), - [aux_sym__val_number_decimal_token2] = ACTIONS(4781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4781), - [aux_sym__val_number_decimal_token4] = ACTIONS(4781), - [aux_sym__val_number_token1] = ACTIONS(4781), - [aux_sym__val_number_token2] = ACTIONS(4781), - [aux_sym__val_number_token3] = ACTIONS(4781), - [anon_sym_0b] = ACTIONS(4783), - [anon_sym_0o] = ACTIONS(4783), - [anon_sym_0x] = ACTIONS(4783), - [sym_val_date] = ACTIONS(4781), - [anon_sym_DQUOTE] = ACTIONS(4781), - [sym__str_single_quotes] = ACTIONS(4781), - [sym__str_back_ticks] = ACTIONS(4781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4781), - [anon_sym_err_GT] = ACTIONS(4783), - [anon_sym_out_GT] = ACTIONS(4783), - [anon_sym_e_GT] = ACTIONS(4783), - [anon_sym_o_GT] = ACTIONS(4783), - [anon_sym_err_PLUSout_GT] = ACTIONS(4783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4783), - [anon_sym_o_PLUSe_GT] = ACTIONS(4783), - [anon_sym_e_PLUSo_GT] = ACTIONS(4783), - [anon_sym_err_GT_GT] = ACTIONS(4781), - [anon_sym_out_GT_GT] = ACTIONS(4781), - [anon_sym_e_GT_GT] = ACTIONS(4781), - [anon_sym_o_GT_GT] = ACTIONS(4781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4781), - [aux_sym_unquoted_token1] = ACTIONS(4783), + [1478] = { + [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_comment] = STATE(1478), + [anon_sym_true] = ACTIONS(4755), + [anon_sym_false] = ACTIONS(4755), + [anon_sym_null] = ACTIONS(4755), + [aux_sym_cmd_identifier_token38] = ACTIONS(4755), + [aux_sym_cmd_identifier_token39] = ACTIONS(4755), + [aux_sym_cmd_identifier_token40] = ACTIONS(4755), + [sym__newline] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_err_GT_PIPE] = ACTIONS(4755), + [anon_sym_out_GT_PIPE] = ACTIONS(4755), + [anon_sym_e_GT_PIPE] = ACTIONS(4755), + [anon_sym_o_GT_PIPE] = ACTIONS(4755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4755), + [anon_sym_LBRACK] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [anon_sym_DASH_DASH] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_DOT_DOT] = ACTIONS(4757), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), + [anon_sym_DOT_DOT_LT] = ACTIONS(4755), + [aux_sym__val_number_decimal_token1] = ACTIONS(4757), + [aux_sym__val_number_decimal_token2] = ACTIONS(4755), + [aux_sym__val_number_decimal_token3] = ACTIONS(4755), + [aux_sym__val_number_decimal_token4] = ACTIONS(4755), + [aux_sym__val_number_token1] = ACTIONS(4755), + [aux_sym__val_number_token2] = ACTIONS(4755), + [aux_sym__val_number_token3] = ACTIONS(4755), + [anon_sym_0b] = ACTIONS(4757), + [anon_sym_0o] = ACTIONS(4757), + [anon_sym_0x] = ACTIONS(4757), + [sym_val_date] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [sym__str_single_quotes] = ACTIONS(4755), + [sym__str_back_ticks] = ACTIONS(4755), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4755), + [anon_sym_err_GT] = ACTIONS(4757), + [anon_sym_out_GT] = ACTIONS(4757), + [anon_sym_e_GT] = ACTIONS(4757), + [anon_sym_o_GT] = ACTIONS(4757), + [anon_sym_err_PLUSout_GT] = ACTIONS(4757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4757), + [anon_sym_o_PLUSe_GT] = ACTIONS(4757), + [anon_sym_e_PLUSo_GT] = ACTIONS(4757), + [anon_sym_err_GT_GT] = ACTIONS(4755), + [anon_sym_out_GT_GT] = ACTIONS(4755), + [anon_sym_e_GT_GT] = ACTIONS(4755), + [anon_sym_o_GT_GT] = ACTIONS(4755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4755), + [aux_sym_unquoted_token1] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(247), + }, + [1479] = { + [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_comment] = STATE(1479), + [anon_sym_true] = ACTIONS(4759), + [anon_sym_false] = ACTIONS(4759), + [anon_sym_null] = ACTIONS(4759), + [aux_sym_cmd_identifier_token38] = ACTIONS(4759), + [aux_sym_cmd_identifier_token39] = ACTIONS(4759), + [aux_sym_cmd_identifier_token40] = ACTIONS(4759), + [sym__newline] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4759), + [anon_sym_err_GT_PIPE] = ACTIONS(4759), + [anon_sym_out_GT_PIPE] = ACTIONS(4759), + [anon_sym_e_GT_PIPE] = ACTIONS(4759), + [anon_sym_o_GT_PIPE] = ACTIONS(4759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DASH] = ACTIONS(4761), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_DOT_DOT] = ACTIONS(4761), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4759), + [anon_sym_DOT_DOT_LT] = ACTIONS(4759), + [aux_sym__val_number_decimal_token1] = ACTIONS(4761), + [aux_sym__val_number_decimal_token2] = ACTIONS(4759), + [aux_sym__val_number_decimal_token3] = ACTIONS(4759), + [aux_sym__val_number_decimal_token4] = ACTIONS(4759), + [aux_sym__val_number_token1] = ACTIONS(4759), + [aux_sym__val_number_token2] = ACTIONS(4759), + [aux_sym__val_number_token3] = ACTIONS(4759), + [anon_sym_0b] = ACTIONS(4761), + [anon_sym_0o] = ACTIONS(4761), + [anon_sym_0x] = ACTIONS(4761), + [sym_val_date] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [sym__str_single_quotes] = ACTIONS(4759), + [sym__str_back_ticks] = ACTIONS(4759), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4759), + [anon_sym_err_GT] = ACTIONS(4761), + [anon_sym_out_GT] = ACTIONS(4761), + [anon_sym_e_GT] = ACTIONS(4761), + [anon_sym_o_GT] = ACTIONS(4761), + [anon_sym_err_PLUSout_GT] = ACTIONS(4761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4761), + [anon_sym_o_PLUSe_GT] = ACTIONS(4761), + [anon_sym_e_PLUSo_GT] = ACTIONS(4761), + [anon_sym_err_GT_GT] = ACTIONS(4759), + [anon_sym_out_GT_GT] = ACTIONS(4759), + [anon_sym_e_GT_GT] = ACTIONS(4759), + [anon_sym_o_GT_GT] = ACTIONS(4759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), + [aux_sym_unquoted_token1] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(247), + }, + [1480] = { + [sym_comment] = STATE(1480), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token38] = ACTIONS(2295), + [aux_sym_cmd_identifier_token39] = ACTIONS(2295), + [aux_sym_cmd_identifier_token40] = ACTIONS(2295), + [sym__newline] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2295), + [anon_sym_err_GT_PIPE] = ACTIONS(2295), + [anon_sym_out_GT_PIPE] = ACTIONS(2295), + [anon_sym_e_GT_PIPE] = ACTIONS(2295), + [anon_sym_o_GT_PIPE] = ACTIONS(2295), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2295), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2295), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2295), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_LPAREN2] = ACTIONS(2293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2295), + [anon_sym_DOT_DOT_LT] = ACTIONS(2295), + [aux_sym__val_number_decimal_token1] = ACTIONS(2291), + [aux_sym__val_number_decimal_token2] = ACTIONS(2295), + [aux_sym__val_number_decimal_token3] = ACTIONS(2295), + [aux_sym__val_number_decimal_token4] = ACTIONS(2295), + [aux_sym__val_number_token1] = ACTIONS(2295), + [aux_sym__val_number_token2] = ACTIONS(2295), + [aux_sym__val_number_token3] = ACTIONS(2295), + [anon_sym_0b] = ACTIONS(2291), + [anon_sym_0o] = ACTIONS(2291), + [anon_sym_0x] = ACTIONS(2291), + [sym_val_date] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(2295), + [sym__str_single_quotes] = ACTIONS(2295), + [sym__str_back_ticks] = ACTIONS(2295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2295), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2295), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2295), + [anon_sym_out_GT_GT] = ACTIONS(2295), + [anon_sym_e_GT_GT] = ACTIONS(2295), + [anon_sym_o_GT_GT] = ACTIONS(2295), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2295), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2295), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2295), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2295), + [aux_sym_unquoted_token1] = ACTIONS(2291), + [aux_sym_unquoted_token2] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(247), + }, + [1481] = { + [sym_comment] = STATE(1481), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [aux_sym_cmd_identifier_token38] = ACTIONS(2229), + [aux_sym_cmd_identifier_token39] = ACTIONS(2229), + [aux_sym_cmd_identifier_token40] = ACTIONS(2229), + [sym__newline] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_err_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_GT_PIPE] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_LPAREN2] = ACTIONS(2231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT] = ACTIONS(2229), + [aux_sym__val_number_decimal_token1] = ACTIONS(2229), + [aux_sym__val_number_decimal_token2] = ACTIONS(2229), + [aux_sym__val_number_decimal_token3] = ACTIONS(2229), + [aux_sym__val_number_decimal_token4] = ACTIONS(2229), + [aux_sym__val_number_token1] = ACTIONS(2229), + [aux_sym__val_number_token2] = ACTIONS(2229), + [aux_sym__val_number_token3] = ACTIONS(2229), + [anon_sym_0b] = ACTIONS(2229), + [anon_sym_0o] = ACTIONS(2229), + [anon_sym_0x] = ACTIONS(2229), + [sym_val_date] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2233), + [sym__str_single_quotes] = ACTIONS(2233), + [sym__str_back_ticks] = ACTIONS(2233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2229), + [anon_sym_out_GT] = ACTIONS(2229), + [anon_sym_e_GT] = ACTIONS(2229), + [anon_sym_o_GT] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT] = ACTIONS(2229), + [anon_sym_err_GT_GT] = ACTIONS(2229), + [anon_sym_out_GT_GT] = ACTIONS(2229), + [anon_sym_e_GT_GT] = ACTIONS(2229), + [anon_sym_o_GT_GT] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2229), + [aux_sym_unquoted_token1] = ACTIONS(2229), + [aux_sym_unquoted_token4] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), + }, + [1482] = { + [sym_comment] = STATE(1482), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(4834), + [aux_sym__immediate_decimal_token2] = ACTIONS(4836), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [1483] = { + [sym__expr_parenthesized_immediate] = STATE(7352), + [sym_comment] = STATE(1483), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [aux_sym_cmd_identifier_token38] = ACTIONS(4838), + [aux_sym_cmd_identifier_token39] = ACTIONS(4838), + [aux_sym_cmd_identifier_token40] = ACTIONS(4838), + [sym__newline] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_err_GT_PIPE] = ACTIONS(4838), + [anon_sym_out_GT_PIPE] = ACTIONS(4838), + [anon_sym_e_GT_PIPE] = ACTIONS(4838), + [anon_sym_o_GT_PIPE] = ACTIONS(4838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_LPAREN2] = ACTIONS(3978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4838), + [anon_sym_DOT_DOT_LT] = ACTIONS(4838), + [aux_sym__val_number_decimal_token1] = ACTIONS(4840), + [aux_sym__val_number_decimal_token2] = ACTIONS(4838), + [aux_sym__val_number_decimal_token3] = ACTIONS(4838), + [aux_sym__val_number_decimal_token4] = ACTIONS(4838), + [aux_sym__val_number_token1] = ACTIONS(4838), + [aux_sym__val_number_token2] = ACTIONS(4838), + [aux_sym__val_number_token3] = ACTIONS(4838), + [anon_sym_0b] = ACTIONS(4840), + [anon_sym_0o] = ACTIONS(4840), + [anon_sym_0x] = ACTIONS(4840), + [sym_val_date] = ACTIONS(4838), + [anon_sym_DQUOTE] = ACTIONS(4838), + [sym__str_single_quotes] = ACTIONS(4838), + [sym__str_back_ticks] = ACTIONS(4838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4838), + [anon_sym_err_GT] = ACTIONS(4840), + [anon_sym_out_GT] = ACTIONS(4840), + [anon_sym_e_GT] = ACTIONS(4840), + [anon_sym_o_GT] = ACTIONS(4840), + [anon_sym_err_PLUSout_GT] = ACTIONS(4840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4840), + [anon_sym_o_PLUSe_GT] = ACTIONS(4840), + [anon_sym_e_PLUSo_GT] = ACTIONS(4840), + [anon_sym_err_GT_GT] = ACTIONS(4838), + [anon_sym_out_GT_GT] = ACTIONS(4838), + [anon_sym_e_GT_GT] = ACTIONS(4838), + [anon_sym_o_GT_GT] = ACTIONS(4838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4838), + [aux_sym_unquoted_token1] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(247), + }, + [1484] = { + [sym_cell_path] = STATE(2018), + [sym_path] = STATE(1246), + [sym_comment] = STATE(1484), + [aux_sym_cell_path_repeat1] = STATE(1189), + [ts_builtin_sym_end] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [aux_sym_expr_binary_token1] = ACTIONS(1645), + [aux_sym_expr_binary_token2] = ACTIONS(1645), + [aux_sym_expr_binary_token3] = ACTIONS(1645), + [aux_sym_expr_binary_token4] = ACTIONS(1645), + [aux_sym_expr_binary_token5] = ACTIONS(1645), + [aux_sym_expr_binary_token6] = ACTIONS(1645), + [aux_sym_expr_binary_token7] = ACTIONS(1645), + [aux_sym_expr_binary_token8] = ACTIONS(1645), + [aux_sym_expr_binary_token9] = ACTIONS(1645), + [aux_sym_expr_binary_token10] = ACTIONS(1645), + [aux_sym_expr_binary_token11] = ACTIONS(1645), + [aux_sym_expr_binary_token12] = ACTIONS(1645), + [aux_sym_expr_binary_token13] = ACTIONS(1645), + [aux_sym_expr_binary_token14] = ACTIONS(1645), + [aux_sym_expr_binary_token15] = ACTIONS(1645), + [aux_sym_expr_binary_token16] = ACTIONS(1645), + [aux_sym_expr_binary_token17] = ACTIONS(1645), + [aux_sym_expr_binary_token18] = ACTIONS(1645), + [aux_sym_expr_binary_token19] = ACTIONS(1645), + [aux_sym_expr_binary_token20] = ACTIONS(1645), + [aux_sym_expr_binary_token21] = ACTIONS(1645), + [aux_sym_expr_binary_token22] = ACTIONS(1645), + [aux_sym_expr_binary_token23] = ACTIONS(1645), + [aux_sym_expr_binary_token24] = ACTIONS(1645), + [aux_sym_expr_binary_token25] = ACTIONS(1645), + [aux_sym_expr_binary_token26] = ACTIONS(1645), + [aux_sym_expr_binary_token27] = ACTIONS(1645), + [aux_sym_expr_binary_token28] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1641), + [anon_sym_DOT] = ACTIONS(3990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(247), + }, + [1485] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1485), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, + [1486] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1486), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, + [1487] = { + [sym_comment] = STATE(1487), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1488] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1488), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, + [1489] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1489), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, + [1490] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1490), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, + [1491] = { + [sym_comment] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_null] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [sym__newline] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_err_GT_PIPE] = ACTIONS(2013), + [anon_sym_out_GT_PIPE] = ACTIONS(2013), + [anon_sym_e_GT_PIPE] = ACTIONS(2013), + [anon_sym_o_GT_PIPE] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_DASH_DASH] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_DOT_DOT2] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), + [anon_sym_DOT_DOT_LT] = ACTIONS(2007), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4848), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4848), + [aux_sym__val_number_decimal_token1] = ACTIONS(2007), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2007), + [anon_sym_0x] = ACTIONS(2007), + [sym_val_date] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), + [anon_sym_err_GT] = ACTIONS(2007), + [anon_sym_out_GT] = ACTIONS(2007), + [anon_sym_e_GT] = ACTIONS(2007), + [anon_sym_o_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT] = ACTIONS(2007), + [anon_sym_err_GT_GT] = ACTIONS(2013), + [anon_sym_out_GT_GT] = ACTIONS(2013), + [anon_sym_e_GT_GT] = ACTIONS(2013), + [anon_sym_o_GT_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2013), + [aux_sym_unquoted_token1] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(247), + }, + [1492] = { + [sym_comment] = STATE(1492), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4852), + [aux_sym__val_number_decimal_token1] = ACTIONS(1667), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [anon_sym_0b] = ACTIONS(1667), + [anon_sym_0o] = ACTIONS(1667), + [anon_sym_0x] = ACTIONS(1667), + [sym_val_date] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1667), + [anon_sym_out_GT] = ACTIONS(1667), + [anon_sym_e_GT] = ACTIONS(1667), + [anon_sym_o_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT] = ACTIONS(1667), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [aux_sym_unquoted_token1] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(247), + }, + [1493] = { + [sym_path] = STATE(1603), + [sym_comment] = STATE(1493), + [aux_sym_cell_path_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, - [1467] = { - [sym_comment] = STATE(1467), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_err_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_GT_PIPE] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1517), - [anon_sym_out_GT] = ACTIONS(1517), - [anon_sym_e_GT] = ACTIONS(1517), - [anon_sym_o_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT] = ACTIONS(1517), - [anon_sym_err_GT_GT] = ACTIONS(1519), - [anon_sym_out_GT_GT] = ACTIONS(1519), - [anon_sym_e_GT_GT] = ACTIONS(1519), - [anon_sym_o_GT_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1517), + [1494] = { + [sym_comment] = STATE(1494), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [aux_sym_cmd_identifier_token38] = ACTIONS(2237), + [aux_sym_cmd_identifier_token39] = ACTIONS(2237), + [aux_sym_cmd_identifier_token40] = ACTIONS(2237), + [sym__newline] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_err_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_GT_PIPE] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_DOT_DOT] = ACTIONS(2237), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), + [anon_sym_DOT_DOT_LT] = ACTIONS(2237), + [aux_sym__val_number_decimal_token1] = ACTIONS(2237), + [aux_sym__val_number_decimal_token2] = ACTIONS(2237), + [aux_sym__val_number_decimal_token3] = ACTIONS(2237), + [aux_sym__val_number_decimal_token4] = ACTIONS(2237), + [aux_sym__val_number_token1] = ACTIONS(2237), + [aux_sym__val_number_token2] = ACTIONS(2237), + [aux_sym__val_number_token3] = ACTIONS(2237), + [anon_sym_0b] = ACTIONS(2237), + [anon_sym_0o] = ACTIONS(2237), + [anon_sym_0x] = ACTIONS(2237), + [sym_val_date] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2241), + [sym__str_single_quotes] = ACTIONS(2241), + [sym__str_back_ticks] = ACTIONS(2241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), + [anon_sym_err_GT] = ACTIONS(2237), + [anon_sym_out_GT] = ACTIONS(2237), + [anon_sym_e_GT] = ACTIONS(2237), + [anon_sym_o_GT] = ACTIONS(2237), + [anon_sym_err_PLUSout_GT] = ACTIONS(2237), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), + [anon_sym_o_PLUSe_GT] = ACTIONS(2237), + [anon_sym_e_PLUSo_GT] = ACTIONS(2237), + [anon_sym_err_GT_GT] = ACTIONS(2237), + [anon_sym_out_GT_GT] = ACTIONS(2237), + [anon_sym_e_GT_GT] = ACTIONS(2237), + [anon_sym_o_GT_GT] = ACTIONS(2237), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), + [aux_sym_unquoted_token1] = ACTIONS(2237), + [aux_sym_unquoted_token4] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(3), + }, + [1495] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1495), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), [anon_sym_POUND] = ACTIONS(247), }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [sym__newline] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_err_GT_PIPE] = ACTIONS(2057), - [anon_sym_out_GT_PIPE] = ACTIONS(2057), - [anon_sym_e_GT_PIPE] = ACTIONS(2057), - [anon_sym_o_GT_PIPE] = ACTIONS(2057), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2051), - [aux_sym_ctrl_match_token1] = ACTIONS(2057), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT_DOT2] = ACTIONS(4834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), - [anon_sym_DOT_DOT_LT] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4836), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4836), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [anon_sym_0b] = ACTIONS(2051), - [anon_sym_0o] = ACTIONS(2051), - [anon_sym_0x] = ACTIONS(2051), - [sym_val_date] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), - [anon_sym_err_GT] = ACTIONS(2051), - [anon_sym_out_GT] = ACTIONS(2051), - [anon_sym_e_GT] = ACTIONS(2051), - [anon_sym_o_GT] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT] = ACTIONS(2051), - [anon_sym_err_GT_GT] = ACTIONS(2057), - [anon_sym_out_GT_GT] = ACTIONS(2057), - [anon_sym_e_GT_GT] = ACTIONS(2057), - [anon_sym_o_GT_GT] = ACTIONS(2057), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), - [aux_sym_unquoted_token1] = ACTIONS(2051), + [1496] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1496), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), [anon_sym_POUND] = ACTIONS(247), }, - [1469] = { - [sym_comment] = STATE(1469), - [aux_sym_cmd_identifier_token41] = ACTIONS(1497), - [sym__newline] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_err_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_GT_PIPE] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [aux_sym_expr_binary_token1] = ACTIONS(1499), - [aux_sym_expr_binary_token2] = ACTIONS(1499), - [aux_sym_expr_binary_token3] = ACTIONS(1499), - [aux_sym_expr_binary_token4] = ACTIONS(1499), - [aux_sym_expr_binary_token5] = ACTIONS(1499), - [aux_sym_expr_binary_token6] = ACTIONS(1499), - [aux_sym_expr_binary_token7] = ACTIONS(1499), - [aux_sym_expr_binary_token8] = ACTIONS(1499), - [aux_sym_expr_binary_token9] = ACTIONS(1499), - [aux_sym_expr_binary_token10] = ACTIONS(1499), - [aux_sym_expr_binary_token11] = ACTIONS(1499), - [aux_sym_expr_binary_token12] = ACTIONS(1499), - [aux_sym_expr_binary_token13] = ACTIONS(1499), - [aux_sym_expr_binary_token14] = ACTIONS(1499), - [aux_sym_expr_binary_token15] = ACTIONS(1499), - [aux_sym_expr_binary_token16] = ACTIONS(1499), - [aux_sym_expr_binary_token17] = ACTIONS(1499), - [aux_sym_expr_binary_token18] = ACTIONS(1499), - [aux_sym_expr_binary_token19] = ACTIONS(1499), - [aux_sym_expr_binary_token20] = ACTIONS(1499), - [aux_sym_expr_binary_token21] = ACTIONS(1499), - [aux_sym_expr_binary_token22] = ACTIONS(1499), - [aux_sym_expr_binary_token23] = ACTIONS(1499), - [aux_sym_expr_binary_token24] = ACTIONS(1499), - [aux_sym_expr_binary_token25] = ACTIONS(1499), - [aux_sym_expr_binary_token26] = ACTIONS(1499), - [aux_sym_expr_binary_token27] = ACTIONS(1499), - [aux_sym_expr_binary_token28] = ACTIONS(1499), - [anon_sym_DOT_DOT2] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), - [sym_filesize_unit] = ACTIONS(1499), - [sym_duration_unit] = ACTIONS(1499), - [anon_sym_err_GT] = ACTIONS(1497), - [anon_sym_out_GT] = ACTIONS(1497), - [anon_sym_e_GT] = ACTIONS(1497), - [anon_sym_o_GT] = ACTIONS(1497), - [anon_sym_err_PLUSout_GT] = ACTIONS(1497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), - [anon_sym_o_PLUSe_GT] = ACTIONS(1497), - [anon_sym_e_PLUSo_GT] = ACTIONS(1497), - [anon_sym_err_GT_GT] = ACTIONS(1499), - [anon_sym_out_GT_GT] = ACTIONS(1499), - [anon_sym_e_GT_GT] = ACTIONS(1499), - [anon_sym_o_GT_GT] = ACTIONS(1499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [1497] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1497), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), [anon_sym_POUND] = ACTIONS(247), }, - [1470] = { - [sym_comment] = STATE(1470), - [anon_sym_true] = ACTIONS(4838), - [anon_sym_false] = ACTIONS(4838), - [anon_sym_null] = ACTIONS(4838), - [aux_sym_cmd_identifier_token38] = ACTIONS(4838), - [aux_sym_cmd_identifier_token39] = ACTIONS(4838), - [aux_sym_cmd_identifier_token40] = ACTIONS(4838), - [sym__newline] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_PIPE] = ACTIONS(4838), - [anon_sym_err_GT_PIPE] = ACTIONS(4838), - [anon_sym_out_GT_PIPE] = ACTIONS(4838), - [anon_sym_e_GT_PIPE] = ACTIONS(4838), - [anon_sym_o_GT_PIPE] = ACTIONS(4838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_LPAREN] = ACTIONS(4838), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_DOLLAR] = ACTIONS(4840), - [anon_sym_DASH_DASH] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4840), - [aux_sym_ctrl_match_token1] = ACTIONS(4838), - [anon_sym_DOT_DOT] = ACTIONS(4840), - [anon_sym_DOT_DOT2] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), - [anon_sym_DOT_DOT_LT] = ACTIONS(4840), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), - [aux_sym__val_number_decimal_token1] = ACTIONS(4840), - [aux_sym__val_number_decimal_token2] = ACTIONS(4838), - [aux_sym__val_number_decimal_token3] = ACTIONS(4838), - [aux_sym__val_number_decimal_token4] = ACTIONS(4838), - [aux_sym__val_number_token1] = ACTIONS(4838), - [aux_sym__val_number_token2] = ACTIONS(4838), - [aux_sym__val_number_token3] = ACTIONS(4838), - [anon_sym_0b] = ACTIONS(4840), - [anon_sym_0o] = ACTIONS(4840), - [anon_sym_0x] = ACTIONS(4840), - [sym_val_date] = ACTIONS(4838), - [anon_sym_DQUOTE] = ACTIONS(4838), - [sym__str_single_quotes] = ACTIONS(4838), - [sym__str_back_ticks] = ACTIONS(4838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4838), - [anon_sym_err_GT] = ACTIONS(4840), - [anon_sym_out_GT] = ACTIONS(4840), - [anon_sym_e_GT] = ACTIONS(4840), - [anon_sym_o_GT] = ACTIONS(4840), - [anon_sym_err_PLUSout_GT] = ACTIONS(4840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4840), - [anon_sym_o_PLUSe_GT] = ACTIONS(4840), - [anon_sym_e_PLUSo_GT] = ACTIONS(4840), - [anon_sym_err_GT_GT] = ACTIONS(4838), - [anon_sym_out_GT_GT] = ACTIONS(4838), - [anon_sym_e_GT_GT] = ACTIONS(4838), - [anon_sym_o_GT_GT] = ACTIONS(4838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4838), - [aux_sym_unquoted_token1] = ACTIONS(4840), + [1498] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1498), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), [anon_sym_POUND] = ACTIONS(247), }, - [1471] = { - [sym_comment] = STATE(1471), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym_filesize_unit] = ACTIONS(1567), - [sym_duration_unit] = ACTIONS(1567), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [aux_sym_unquoted_token2] = ACTIONS(1565), + [1499] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1499), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), [anon_sym_POUND] = ACTIONS(247), }, - [1472] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(1472), - [anon_sym_true] = ACTIONS(4842), - [anon_sym_false] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4842), - [aux_sym_cmd_identifier_token38] = ACTIONS(4842), - [aux_sym_cmd_identifier_token39] = ACTIONS(4842), - [aux_sym_cmd_identifier_token40] = ACTIONS(4842), + [1500] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1500), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, + [1501] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1501), [sym__newline] = ACTIONS(4842), [anon_sym_SEMI] = ACTIONS(4842), [anon_sym_PIPE] = ACTIONS(4842), @@ -207616,34 +212402,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_LBRACK] = ACTIONS(4842), - [anon_sym_LPAREN] = ACTIONS(4844), [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DOLLAR] = ACTIONS(4844), [anon_sym_DASH_DASH] = ACTIONS(4842), [anon_sym_DASH] = ACTIONS(4844), - [aux_sym_ctrl_match_token1] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4842), [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_DOT_DOT] = ACTIONS(4844), - [anon_sym_LPAREN2] = ACTIONS(3914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4842), - [anon_sym_DOT_DOT_LT] = ACTIONS(4842), - [aux_sym__val_number_decimal_token1] = ACTIONS(4844), - [aux_sym__val_number_decimal_token2] = ACTIONS(4842), - [aux_sym__val_number_decimal_token3] = ACTIONS(4842), - [aux_sym__val_number_decimal_token4] = ACTIONS(4842), - [aux_sym__val_number_token1] = ACTIONS(4842), - [aux_sym__val_number_token2] = ACTIONS(4842), - [aux_sym__val_number_token3] = ACTIONS(4842), - [anon_sym_0b] = ACTIONS(4844), - [anon_sym_0o] = ACTIONS(4844), - [anon_sym_0x] = ACTIONS(4844), - [sym_val_date] = ACTIONS(4842), - [anon_sym_DQUOTE] = ACTIONS(4842), - [sym__str_single_quotes] = ACTIONS(4842), - [sym__str_back_ticks] = ACTIONS(4842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3978), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), [anon_sym_err_GT] = ACTIONS(4844), [anon_sym_out_GT] = ACTIONS(4844), [anon_sym_e_GT] = ACTIONS(4844), @@ -207660,12 +212453,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [aux_sym_unquoted_token1] = ACTIONS(4844), [anon_sym_POUND] = ACTIONS(247), }, - [1473] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(1473), + [1502] = { + [sym__expr_parenthesized_immediate] = STATE(7283), + [sym_comment] = STATE(1502), [sym__newline] = ACTIONS(4842), [anon_sym_SEMI] = ACTIONS(4842), [anon_sym_PIPE] = ACTIONS(4842), @@ -207680,10 +212472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4842), [anon_sym_DASH_DASH] = ACTIONS(4842), [anon_sym_DASH] = ACTIONS(4844), - [aux_sym_ctrl_match_token1] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4842), [anon_sym_RBRACE] = ACTIONS(4842), [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3978), [aux_sym_expr_binary_token1] = ACTIONS(4842), [aux_sym_expr_binary_token2] = ACTIONS(4842), [aux_sym_expr_binary_token3] = ACTIONS(4842), @@ -207730,17 +212522,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), [anon_sym_POUND] = ACTIONS(247), }, + [1503] = { + [sym_comment] = STATE(1503), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [aux_sym_cmd_identifier_token38] = ACTIONS(2245), + [aux_sym_cmd_identifier_token39] = ACTIONS(2245), + [aux_sym_cmd_identifier_token40] = ACTIONS(2245), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), + [anon_sym_DOT_DOT_LT] = ACTIONS(2245), + [aux_sym__val_number_decimal_token1] = ACTIONS(2245), + [aux_sym__val_number_decimal_token2] = ACTIONS(2245), + [aux_sym__val_number_decimal_token3] = ACTIONS(2245), + [aux_sym__val_number_decimal_token4] = ACTIONS(2245), + [aux_sym__val_number_token1] = ACTIONS(2245), + [aux_sym__val_number_token2] = ACTIONS(2245), + [aux_sym__val_number_token3] = ACTIONS(2245), + [anon_sym_0b] = ACTIONS(2245), + [anon_sym_0o] = ACTIONS(2245), + [anon_sym_0x] = ACTIONS(2245), + [sym_val_date] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2247), + [sym__str_single_quotes] = ACTIONS(2247), + [sym__str_back_ticks] = ACTIONS(2247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2245), + [anon_sym_out_GT] = ACTIONS(2245), + [anon_sym_e_GT] = ACTIONS(2245), + [anon_sym_o_GT] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT] = ACTIONS(2245), + [anon_sym_err_GT_GT] = ACTIONS(2245), + [anon_sym_out_GT_GT] = ACTIONS(2245), + [anon_sym_e_GT_GT] = ACTIONS(2245), + [anon_sym_o_GT_GT] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), + [aux_sym_unquoted_token1] = ACTIONS(2245), + [aux_sym_unquoted_token4] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(3), + }, + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1659), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [anon_sym_0b] = ACTIONS(1659), + [anon_sym_0o] = ACTIONS(1659), + [anon_sym_0x] = ACTIONS(1659), + [sym_val_date] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1659), + [anon_sym_out_GT] = ACTIONS(1659), + [anon_sym_e_GT] = ACTIONS(1659), + [anon_sym_o_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT] = ACTIONS(1659), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [aux_sym_unquoted_token1] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), + }, + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [sym__newline] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1997), + [anon_sym_err_GT_PIPE] = ACTIONS(1997), + [anon_sym_out_GT_PIPE] = ACTIONS(1997), + [anon_sym_e_GT_PIPE] = ACTIONS(1997), + [anon_sym_o_GT_PIPE] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_DOT_DOT2] = ACTIONS(4854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), + [anon_sym_DOT_DOT_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4856), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4856), + [aux_sym__val_number_decimal_token1] = ACTIONS(1991), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0o] = ACTIONS(1991), + [anon_sym_0x] = ACTIONS(1991), + [sym_val_date] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), + [anon_sym_err_GT] = ACTIONS(1991), + [anon_sym_out_GT] = ACTIONS(1991), + [anon_sym_e_GT] = ACTIONS(1991), + [anon_sym_o_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT] = ACTIONS(1991), + [anon_sym_err_GT_GT] = ACTIONS(1997), + [anon_sym_out_GT_GT] = ACTIONS(1997), + [anon_sym_e_GT_GT] = ACTIONS(1997), + [anon_sym_o_GT_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1997), + [aux_sym_unquoted_token1] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(247), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3924), 1, - aux_sym_unquoted_token2, - STATE(1474), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1506), 1, sym_comment, - ACTIONS(1575), 16, + STATE(7352), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4860), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -207757,7 +212753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1587), 45, + ACTIONS(4858), 43, anon_sym_true, anon_sym_false, anon_sym_null, @@ -207776,11 +212772,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -207803,12 +212797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75] = 4, + [77] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1475), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1507), 1, sym_comment, - ACTIONS(1631), 18, + STATE(7308), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4840), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -207826,8 +212824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1633), 44, + ACTIONS(4838), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -207848,8 +212845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -207872,106 +212868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [148] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4856), 1, - anon_sym_LBRACK, - ACTIONS(4858), 1, - sym_wild_card, - STATE(1476), 1, - sym_comment, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(6348), 1, - sym__command_name, - STATE(6352), 1, - sym_command_list, - STATE(6554), 1, - sym_scope_pattern, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4854), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [255] = 6, + [154] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, - STATE(1477), 1, + STATE(1508), 1, sym_comment, - ACTIONS(2224), 17, - anon_sym_LPAREN, + ACTIONS(1034), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -207985,7 +212891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2228), 43, + ACTIONS(1036), 45, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -208005,8 +212911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -208029,41 +212937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [332] = 6, - ACTIONS(247), 1, + [227] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1478), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(1509), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4759), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2233), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208076,47 +212957,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [409] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4860), 1, - anon_sym_DOT, - ACTIONS(4862), 1, - aux_sym__immediate_decimal_token2, - STATE(1479), 1, - sym_comment, - ACTIONS(1643), 16, + ACTIONS(2229), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -208125,15 +212998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(1645), 44, + [302] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(1510), 1, + sym_comment, + ACTIONS(1072), 19, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208146,23 +213030,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1070), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -208171,16 +213077,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, - [486] = 6, + aux_sym_unquoted_token1, + [379] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(2293), 1, anon_sym_LPAREN2, - STATE(1480), 1, + STATE(1511), 1, sym_comment, - STATE(7405), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4797), 17, + ACTIONS(2291), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -208198,7 +213105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4795), 43, + ACTIONS(2295), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -208219,7 +213126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -208242,17 +213149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [563] = 6, + [456] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1481), 1, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + aux_sym__immediate_decimal_token2, + STATE(1512), 1, sym_comment, - STATE(7390), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4866), 17, - anon_sym_LPAREN, + ACTIONS(1667), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -208269,7 +213175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4864), 43, + ACTIONS(1669), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -208288,9 +213195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -208313,14 +213220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [640] = 5, + [533] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4868), 1, + ACTIONS(4866), 1, anon_sym_LBRACK2, - STATE(1482), 1, + STATE(1513), 1, sym_comment, - ACTIONS(2303), 17, + ACTIONS(2313), 17, anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, @@ -208338,7 +213245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2307), 44, + ACTIONS(2317), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -208359,7 +213266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -208383,14 +213290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [715] = 5, + [608] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4870), 1, - anon_sym_QMARK2, - STATE(1483), 1, + STATE(1514), 1, sym_comment, - ACTIONS(1034), 17, + ACTIONS(1042), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -208408,7 +213313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1036), 44, + ACTIONS(1044), 45, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -208430,7 +213335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -208453,86 +213359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [790] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1484), 1, - sym_comment, - ACTIONS(1625), 10, - sym__newline, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1629), 52, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [863] = 6, + [681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(1485), 1, + STATE(1515), 1, sym_comment, - ACTIONS(2297), 19, - ts_builtin_sym_end, + ACTIONS(1072), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208545,20 +213379,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2293), 41, + ACTIONS(1070), 40, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -208593,60 +213429,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [940] = 6, - ACTIONS(3), 1, + [756] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(1486), 1, - sym_comment, - ACTIONS(1078), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4878), 1, + anon_sym_LBRACK, + ACTIONS(4880), 1, + sym_wild_card, + STATE(1516), 1, + sym_comment, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(6083), 1, + sym_scope_pattern, + STATE(6521), 1, + sym__command_name, + STATE(6530), 1, + sym_command_list, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1076), 41, + ACTIONS(4876), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [863] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1517), 1, + sym_comment, + ACTIONS(1050), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -208655,6 +213530,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1052), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -208663,23 +213584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1017] = 5, + [936] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4872), 1, - anon_sym_QMARK2, - STATE(1487), 1, + STATE(1518), 1, sym_comment, - ACTIONS(1028), 17, - anon_sym_DOLLAR, + ACTIONS(1054), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -208688,15 +213599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1030), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1056), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208708,24 +213611,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -208734,20 +213653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1092] = 4, + [1009] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1488), 1, + STATE(1519), 1, sym_comment, - ACTIONS(1052), 17, - anon_sym_DOLLAR, + ACTIONS(4884), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -208756,14 +213668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1054), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4882), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208775,26 +213680,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -208803,60 +213722,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1165] = 20, + [1082] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4263), 1, + ACTIONS(4247), 1, anon_sym_DOLLAR, - ACTIONS(4283), 1, + ACTIONS(4265), 1, anon_sym_DQUOTE, - ACTIONS(4287), 1, + ACTIONS(4269), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4289), 1, + ACTIONS(4271), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4876), 1, + ACTIONS(4888), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4878), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - STATE(1489), 1, + STATE(1520), 1, sym_comment, - STATE(4321), 1, + STATE(4626), 1, sym__str_double_quotes, - STATE(4619), 1, + STATE(4866), 1, sym__inter_single_quotes, - STATE(4620), 1, + STATE(4872), 1, sym__inter_double_quotes, - STATE(6962), 1, + STATE(7001), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4285), 2, + ACTIONS(4267), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(367), 5, + ACTIONS(19), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4874), 5, + ACTIONS(4886), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(4593), 5, + STATE(4766), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(369), 31, + ACTIONS(21), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -208888,12 +213807,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [1270] = 4, - ACTIONS(3), 1, + [1187] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1490), 1, + STATE(1521), 1, sym_comment, - ACTIONS(2261), 21, + ACTIONS(1050), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1052), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208908,45 +213851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2259), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -208955,101 +213876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [1343] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(4245), 1, - anon_sym_DQUOTE, - ACTIONS(4249), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4251), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4882), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4884), 1, - anon_sym_LPAREN, - STATE(1491), 1, - sym_comment, - STATE(4462), 1, - sym__str_double_quotes, - STATE(4775), 1, - sym__inter_single_quotes, - STATE(4778), 1, - sym__inter_double_quotes, - STATE(7035), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4247), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(19), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4880), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4709), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(21), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [1448] = 5, + [1260] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(1492), 1, + STATE(1522), 1, sym_comment, - ACTIONS(2297), 21, + ACTIONS(2241), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209062,22 +213899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2293), 40, + ACTIONS(2237), 41, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -209112,12 +213947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [1523] = 4, + [1337] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1493), 1, + STATE(1523), 1, sym_comment, - ACTIONS(4888), 9, + ACTIONS(4894), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -209127,7 +213962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4886), 53, + ACTIONS(4892), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209141,7 +213976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LPAREN2, @@ -209181,40 +214016,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, - [1596] = 6, - ACTIONS(247), 1, + [1410] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - STATE(1494), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(1524), 1, sym_comment, - STATE(7390), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4892), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4890), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2247), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209227,23 +214039,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2245), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -209252,12 +214086,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, - [1673] = 4, + aux_sym_unquoted_token1, + [1487] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1495), 1, + ACTIONS(4896), 1, + anon_sym_LBRACK2, + STATE(1525), 1, sym_comment, - ACTIONS(1052), 9, + ACTIONS(2313), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -209267,7 +214104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1054), 53, + ACTIONS(2317), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209281,7 +214118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -209312,7 +214149,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -209321,20 +214157,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1746] = 4, - ACTIONS(247), 1, + [1562] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1496), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(1526), 1, sym_comment, - ACTIONS(4888), 17, + ACTIONS(2241), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2237), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -209343,14 +214218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(4886), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [1637] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(1527), 1, + sym_comment, + ACTIONS(2247), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209363,50 +214247,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2245), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1819] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4896), 1, - anon_sym_DOT_DOT2, - ACTIONS(4900), 1, - sym_filesize_unit, - ACTIONS(4902), 1, - sym_duration_unit, - STATE(1497), 1, - sym_comment, - ACTIONS(4898), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -209415,47 +214288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -209464,14 +214296,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, - [1902] = 5, + aux_sym_unquoted_token1, + [1712] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4908), 1, + ACTIONS(4902), 1, anon_sym_EQ2, - STATE(1498), 1, + STATE(1528), 1, sym_comment, - ACTIONS(4906), 16, + ACTIONS(4900), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -209488,7 +214321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4904), 45, + ACTIONS(4898), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -209510,7 +214343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -209534,16 +214367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1977] = 6, + [1787] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - STATE(1499), 1, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + STATE(1529), 1, sym_comment, - ACTIONS(2160), 17, + ACTIONS(1778), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -209561,7 +214394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2162), 43, + ACTIONS(1786), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -209582,7 +214415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -209605,85 +214438,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2054] = 4, + [1864] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(1500), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(4303), 1, + anon_sym_DQUOTE, + ACTIONS(4307), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4309), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4906), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4908), 1, + anon_sym_LPAREN, + STATE(1530), 1, sym_comment, - ACTIONS(1060), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1062), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2127] = 6, + STATE(4501), 1, + sym__str_double_quotes, + STATE(4767), 1, + sym__inter_single_quotes, + STATE(4768), 1, + sym__inter_double_quotes, + STATE(6858), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4305), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(367), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4904), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4564), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(369), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [1969] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1501), 1, + STATE(1531), 1, sym_comment, - STATE(7570), 1, + STATE(7682), 1, sym__expr_parenthesized_immediate, - ACTIONS(4783), 17, + ACTIONS(4749), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -209701,7 +214550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4781), 43, + ACTIONS(4747), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -209722,7 +214571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -209745,14 +214594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2204] = 4, + [2046] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(1502), 1, - sym_comment, - ACTIONS(1565), 10, - aux_sym_cmd_identifier_token41, + ACTIONS(4773), 1, anon_sym_DOT_DOT2, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4910), 1, + sym_filesize_unit, + ACTIONS(4912), 1, + sym_duration_unit, + STATE(1532), 1, + sym_comment, + ACTIONS(4775), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -209761,9 +214620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1567), 52, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1572), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209774,38 +214631,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -209814,16 +214668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2277] = 4, + [2129] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1503), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1533), 1, sym_comment, - ACTIONS(1048), 17, + STATE(7352), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4916), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -209837,8 +214695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1050), 45, - ts_builtin_sym_end, + ACTIONS(4914), 43, anon_sym_true, anon_sym_false, anon_sym_null, @@ -209857,10 +214714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -209883,89 +214739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2350] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1504), 1, - sym_comment, - ACTIONS(1517), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1519), 52, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2423] = 6, + [2206] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1505), 1, + STATE(1534), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4771), 17, - anon_sym_LPAREN, + ACTIONS(1054), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -209979,8 +214762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4769), 43, - ts_builtin_sym_end, + ACTIONS(1056), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -209999,8 +214781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -210023,35 +214808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2500] = 6, + [2279] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4910), 1, - anon_sym_EQ2, - ACTIONS(4912), 1, - sym_short_flag_identifier, - STATE(1506), 1, + ACTIONS(4918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4920), 1, + aux_sym__immediate_decimal_token2, + STATE(1535), 1, sym_comment, - ACTIONS(4747), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1659), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -210061,8 +214834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4749), 32, + ACTIONS(1661), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210076,11 +214855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_DASH_DASH, + 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, sym__str_single_quotes, sym__str_back_ticks, @@ -210094,14 +214879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2577] = 5, + [2356] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4441), 1, - aux_sym_unquoted_token2, - STATE(1507), 1, + STATE(1536), 1, sym_comment, - ACTIONS(1575), 16, + ACTIONS(4884), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -210118,7 +214902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1587), 45, + ACTIONS(4882), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -210137,11 +214921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -210164,12 +214948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2652] = 4, + [2429] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1508), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1537), 1, sym_comment, - ACTIONS(1755), 18, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4753), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -210187,8 +214975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1757), 44, + ACTIONS(4751), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -210209,8 +214996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -210233,14 +215019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2725] = 5, + [2506] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4918), 1, - anon_sym_EQ2, - STATE(1509), 1, + ACTIONS(4852), 1, + aux_sym__immediate_decimal_token2, + STATE(1538), 1, sym_comment, - ACTIONS(4916), 16, + ACTIONS(1667), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -210257,7 +215043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4914), 45, + ACTIONS(1669), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -210279,7 +215065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -210303,16 +215089,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, - [2800] = 4, + [2581] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1510), 1, + ACTIONS(4922), 1, + anon_sym_QMARK2, + STATE(1539), 1, sym_comment, - ACTIONS(1643), 18, - anon_sym_LPAREN, + ACTIONS(1028), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -210326,8 +215114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1645), 44, + ACTIONS(1030), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -210347,9 +215134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -210372,60 +215159,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2873] = 6, - ACTIONS(3), 1, + [2656] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1511), 1, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token2, + STATE(1540), 1, sym_comment, - ACTIONS(2253), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2251), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, + ACTIONS(1721), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -210434,42 +215182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [2950] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4787), 1, - anon_sym_DOT_DOT2, - ACTIONS(4920), 1, - sym_filesize_unit, - ACTIONS(4922), 1, - sym_duration_unit, - STATE(1512), 1, - sym_comment, - ACTIONS(4789), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 9, + ACTIONS(1723), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1587), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210480,35 +215201,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -210517,12 +215229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3033] = 4, + [2731] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1513), 1, + STATE(1541), 1, sym_comment, - ACTIONS(1639), 10, + ACTIONS(1518), 10, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -210533,7 +215245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1641), 52, + ACTIONS(1520), 52, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210543,82 +215255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3106] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1514), 1, - sym_comment, - ACTIONS(4926), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4924), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -210647,6 +215286,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -210655,12 +215298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3179] = 4, + [2804] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1515), 1, + STATE(1542), 1, sym_comment, - ACTIONS(1705), 18, + ACTIONS(1738), 18, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -210679,7 +215322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token2, - ACTIONS(1707), 44, + ACTIONS(1740), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -210700,7 +215343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -210724,12 +215367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3252] = 4, + [2877] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1516), 1, + STATE(1543), 1, sym_comment, - ACTIONS(1040), 17, + ACTIONS(1038), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -210747,7 +215390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1042), 45, + ACTIONS(1040), 45, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -210769,7 +215412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -210793,61 +215436,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3325] = 21, + [2950] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4856), 1, + ACTIONS(4878), 1, anon_sym_LBRACK, - ACTIONS(4858), 1, + ACTIONS(4880), 1, sym_wild_card, - STATE(1517), 1, + STATE(1544), 1, sym_comment, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(6331), 1, - sym_scope_pattern, - STATE(6348), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(6521), 1, sym__command_name, - STATE(6352), 1, + STATE(6523), 1, + sym_scope_pattern, + STATE(6530), 1, sym_command_list, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4928), 4, + ACTIONS(4926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -210879,61 +215522,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [3432] = 21, + [3057] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1545), 1, + sym_comment, + ACTIONS(1554), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1556), 52, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3130] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4856), 1, + ACTIONS(4878), 1, anon_sym_LBRACK, - ACTIONS(4858), 1, + ACTIONS(4880), 1, sym_wild_card, - STATE(1518), 1, + STATE(1546), 1, sym_comment, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(6348), 1, - sym__command_name, - STATE(6351), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(6492), 1, sym_scope_pattern, - STATE(6352), 1, + STATE(6521), 1, + sym__command_name, + STATE(6530), 1, sym_command_list, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4930), 4, + ACTIONS(4928), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -210965,36 +215677,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [3539] = 5, - ACTIONS(3), 1, + [3237] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1519), 1, + ACTIONS(4930), 1, + anon_sym_EQ2, + ACTIONS(4932), 1, + sym_short_flag_identifier, + STATE(1547), 1, sym_comment, - ACTIONS(2247), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2243), 40, + ACTIONS(4781), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -211005,12 +215697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -211026,6 +215714,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4783), 32, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -211034,16 +215748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [3614] = 5, + [3314] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4932), 1, - anon_sym_LBRACK2, - STATE(1520), 1, + STATE(1548), 1, sym_comment, - ACTIONS(2303), 9, - anon_sym_DASH, + ACTIONS(1675), 10, + sym__newline, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -211052,8 +215764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 52, - sym__newline, + ACTIONS(1677), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211065,38 +215776,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_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -211105,14 +215817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3689] = 5, + [3387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1521), 1, + STATE(1549), 1, sym_comment, - ACTIONS(2253), 21, + ACTIONS(2255), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211127,14 +215837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2251), 40, + ACTIONS(2253), 41, anon_sym_true, anon_sym_false, anon_sym_null, @@ -211175,13 +215885,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [3764] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [3460] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1522), 1, + ACTIONS(4934), 1, + anon_sym_QMARK2, + STATE(1550), 1, sym_comment, - ACTIONS(2261), 20, + ACTIONS(1022), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1024), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211194,46 +215931,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2259), 42, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -211242,19 +215956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [3837] = 5, + [3535] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4779), 1, - aux_sym__immediate_decimal_token2, - STATE(1523), 1, + STATE(1551), 1, sym_comment, - ACTIONS(1643), 16, + ACTIONS(1046), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -211268,7 +215979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1645), 45, + ACTIONS(1048), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -211290,7 +216001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -211314,99 +216025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3912] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - ACTIONS(4283), 1, - anon_sym_DQUOTE, - ACTIONS(4287), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4289), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4876), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4878), 1, - anon_sym_LPAREN, - STATE(1524), 1, - sym_comment, - STATE(4321), 1, - sym__str_double_quotes, - STATE(4619), 1, - sym__inter_single_quotes, - STATE(4620), 1, - sym__inter_double_quotes, - STATE(6962), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4285), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(367), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4874), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4517), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(369), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [4017] = 5, + [3608] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4934), 1, - aux_sym__immediate_decimal_token2, - STATE(1525), 1, + STATE(1552), 1, sym_comment, - ACTIONS(1705), 16, + ACTIONS(4894), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -211423,7 +216048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1707), 45, + ACTIONS(4892), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -211442,11 +216067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -211469,20 +216094,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4092] = 4, + [3681] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1526), 1, + ACTIONS(4936), 1, + sym_long_flag_identifier, + ACTIONS(4938), 1, + anon_sym_EQ2, + STATE(1553), 1, sym_comment, - ACTIONS(1044), 17, + ACTIONS(4808), 25, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_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, @@ -211492,14 +216129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1046), 45, + ACTIONS(4810), 35, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211514,17 +216146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + 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, sym__str_single_quotes, sym__str_back_ticks, @@ -211538,17 +216165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4165] = 6, + [3758] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(1527), 1, + ACTIONS(4944), 1, + anon_sym_EQ2, + STATE(1554), 1, sym_comment, - ACTIONS(1796), 17, - anon_sym_LPAREN, + ACTIONS(4942), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -211565,8 +216189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1804), 43, - ts_builtin_sym_end, + ACTIONS(4940), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -211585,8 +216208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -211609,32 +216235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4242] = 6, + [3833] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4936), 1, - sym_long_flag_identifier, - ACTIONS(4938), 1, - anon_sym_EQ2, - STATE(1528), 1, + STATE(1555), 1, sym_comment, - ACTIONS(4735), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(1721), 18, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -211644,9 +216258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4737), 35, + aux_sym_unquoted_token2, + ACTIONS(1723), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211659,14 +216279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -211680,16 +216304,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4319] = 6, - ACTIONS(247), 1, + [3906] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, + STATE(1556), 1, + sym_comment, + ACTIONS(2255), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN2, - STATE(1529), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2253), 42, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [3979] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1557), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 17, + ACTIONS(1659), 18, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -211707,7 +216396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4842), 43, + aux_sym_unquoted_token2, + ACTIONS(1661), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -211728,7 +216418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -211751,13 +216442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4396] = 4, + [4052] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1530), 1, + STATE(1558), 1, sym_comment, - ACTIONS(1056), 9, - anon_sym_DASH, + ACTIONS(2141), 10, + sym__newline, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -211766,8 +216458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1058), 53, - sym__newline, + ACTIONS(2143), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211779,39 +216470,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_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -211820,14 +216511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4469] = 4, + [4125] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1531), 1, + ACTIONS(3988), 1, + aux_sym_unquoted_token2, + STATE(1559), 1, sym_comment, - ACTIONS(1497), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, + ACTIONS(1560), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -211836,8 +216534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1499), 52, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(1572), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211849,38 +216553,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -211889,16 +216581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4542] = 4, + [4200] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1532), 1, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, + STATE(1560), 1, sym_comment, - ACTIONS(1056), 17, + ACTIONS(2297), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -211912,7 +216608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1058), 45, + ACTIONS(2301), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -211931,11 +216628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -211958,14 +216652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4615] = 4, + [4277] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1533), 1, + STATE(1561), 1, sym_comment, - ACTIONS(2137), 10, - sym__newline, - anon_sym_DOT_DOT2, + ACTIONS(1667), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -211974,7 +216674,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(2139), 52, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1669), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211985,40 +216695,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -212027,14 +216721,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, - [4688] = 5, + [4350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, aux_sym_unquoted_token4, - STATE(1534), 1, + STATE(1562), 1, sym_comment, - ACTIONS(1078), 21, + ACTIONS(2233), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212047,22 +216744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1076), 40, + ACTIONS(2229), 41, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -212097,16 +216792,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [4763] = 6, + [4427] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + STATE(1563), 1, + sym_comment, + ACTIONS(1653), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1655), 52, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4500] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(4303), 1, + anon_sym_DQUOTE, + ACTIONS(4307), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4309), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4906), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4908), 1, + anon_sym_LPAREN, + STATE(1564), 1, + sym_comment, + STATE(4501), 1, + sym__str_double_quotes, + STATE(4767), 1, + sym__inter_single_quotes, + STATE(4768), 1, + sym__inter_double_quotes, + STATE(6858), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4305), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(367), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4904), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4709), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(369), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [4605] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1535), 1, + STATE(1565), 1, sym_comment, - ACTIONS(1786), 17, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4757), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -212124,7 +216973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1794), 43, + ACTIONS(4755), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -212145,7 +216994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -212168,16 +217017,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, - [4840] = 6, + [4682] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, - aux_sym__immediate_decimal_token2, - STATE(1536), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1566), 1, sym_comment, - ACTIONS(1631), 16, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -212194,7 +217044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1633), 44, + ACTIONS(4759), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -212214,9 +217064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -212239,12 +217088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4917] = 4, + [4759] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1537), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(1567), 1, sym_comment, - ACTIONS(4926), 17, + ACTIONS(2287), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -212262,7 +217115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4924), 45, + ACTIONS(2289), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -212281,11 +217135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -212308,20 +217159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4990] = 4, + [4836] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(1538), 1, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4948), 1, + anon_sym_DOT_DOT2, + ACTIONS(4952), 1, + sym_filesize_unit, + ACTIONS(4954), 1, + sym_duration_unit, + STATE(1568), 1, sym_comment, - ACTIONS(1060), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4950), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -212330,14 +217184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1062), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1572), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212349,26 +217197,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -212377,16 +217233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5063] = 6, + [4919] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(2220), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - STATE(1539), 1, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(1569), 1, sym_comment, - ACTIONS(2218), 17, + ACTIONS(1788), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -212404,7 +217260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2222), 43, + ACTIONS(1796), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -212425,7 +217281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -212448,17 +217304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5140] = 6, - ACTIONS(3), 1, + [4996] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1540), 1, + STATE(1570), 1, sym_comment, - ACTIONS(2247), 19, - ts_builtin_sym_end, + ACTIONS(1046), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1048), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212470,46 +217331,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2243), 41, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5069] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4520), 1, + aux_sym_unquoted_token2, + STATE(1571), 1, + sym_comment, + ACTIONS(1560), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1572), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -212518,21 +217443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [5217] = 8, + [5144] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1541), 1, + STATE(1572), 1, sym_comment, - STATE(1698), 1, - sym_cell_path, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1871), 8, + ACTIONS(1540), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -212541,7 +217459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 49, + ACTIONS(1542), 52, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212553,8 +217472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -212583,6 +217500,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -212591,35 +217512,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, - [5297] = 4, - ACTIONS(247), 1, + [5217] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1542), 1, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(1573), 1, sym_comment, - ACTIONS(2368), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2370), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1072), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212633,24 +217534,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1070), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -212659,12 +217580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5369] = 4, + aux_sym_unquoted_token1, + [5291] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1543), 1, + STATE(1574), 1, sym_comment, - ACTIONS(1044), 16, + ACTIONS(2481), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -212681,7 +217603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1046), 45, + ACTIONS(2483), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -212703,7 +217625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -212727,12 +217649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5441] = 4, + [5363] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1544), 1, + STATE(1575), 1, sym_comment, - ACTIONS(1961), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -212749,7 +217671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1963), 45, + ACTIONS(2487), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -212771,7 +217693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -212795,12 +217717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5513] = 4, + [5435] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1545), 1, + STATE(1576), 1, sym_comment, - ACTIONS(2355), 16, + ACTIONS(2489), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -212817,7 +217739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2357), 45, + ACTIONS(2491), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -212839,7 +217761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -212863,12 +217785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5585] = 4, + [5507] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1546), 1, + STATE(1577), 1, sym_comment, - ACTIONS(2380), 16, + ACTIONS(2493), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -212885,7 +217807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2382), 45, + ACTIONS(2495), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -212907,7 +217829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -212931,12 +217853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5657] = 4, + [5579] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1547), 1, + STATE(1578), 1, sym_comment, - ACTIONS(1048), 16, + ACTIONS(2497), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -212953,7 +217875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1050), 45, + ACTIONS(2499), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -212975,7 +217897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -212999,12 +217921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5729] = 4, + [5651] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1548), 1, + STATE(1579), 1, sym_comment, - ACTIONS(2457), 16, + ACTIONS(2501), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213021,7 +217943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2459), 45, + ACTIONS(2503), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213043,7 +217965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213067,12 +217989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5801] = 4, + [5723] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1549), 1, + STATE(1580), 1, sym_comment, - ACTIONS(2392), 16, + ACTIONS(2505), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213089,7 +218011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2394), 45, + ACTIONS(2507), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213111,7 +218033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213135,12 +218057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5873] = 4, + [5795] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1550), 1, + STATE(1581), 1, sym_comment, - ACTIONS(2396), 16, + ACTIONS(2509), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213157,7 +218079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2398), 45, + ACTIONS(2511), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213179,7 +218101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213203,12 +218125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5945] = 4, + [5867] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1551), 1, + STATE(1582), 1, sym_comment, - ACTIONS(1843), 16, + ACTIONS(2513), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213225,7 +218147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1845), 45, + ACTIONS(2515), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213247,7 +218169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213271,12 +218193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6017] = 4, + [5939] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1552), 1, + STATE(1583), 1, sym_comment, - ACTIONS(2400), 16, + ACTIONS(2305), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213293,7 +218215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2402), 45, + ACTIONS(2307), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213315,7 +218237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213339,12 +218261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6089] = 4, + [6011] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1553), 1, + STATE(1584), 1, sym_comment, - ACTIONS(2404), 16, + ACTIONS(2305), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213361,7 +218283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2406), 45, + ACTIONS(2307), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213383,7 +218305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213407,12 +218329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6161] = 4, + [6083] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1554), 1, + STATE(1585), 1, sym_comment, - ACTIONS(1859), 16, + ACTIONS(2362), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213429,7 +218351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1861), 45, + ACTIONS(2364), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213451,7 +218373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213475,12 +218397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6233] = 4, + [6155] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1555), 1, + STATE(1586), 1, sym_comment, - ACTIONS(1867), 16, + ACTIONS(2366), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213497,7 +218419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1869), 45, + ACTIONS(2368), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213519,7 +218441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213543,12 +218465,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6305] = 4, + [6227] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1587), 1, + sym_comment, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + STATE(2223), 1, + sym_cell_path, + ACTIONS(1832), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1834), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6307] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1556), 1, + ACTIONS(4958), 1, + anon_sym_EQ2, + STATE(1588), 1, sym_comment, - ACTIONS(1871), 16, + ACTIONS(4942), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213565,7 +218561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1873), 45, + ACTIONS(4940), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213585,10 +218582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -213611,12 +218606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6377] = 4, + [6381] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1557), 1, + STATE(1589), 1, sym_comment, - ACTIONS(2408), 16, + ACTIONS(1058), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213633,7 +218628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2410), 45, + ACTIONS(1060), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213655,7 +218650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213679,12 +218674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6449] = 4, + [6453] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1558), 1, + STATE(1590), 1, sym_comment, - ACTIONS(1890), 16, + ACTIONS(2029), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213701,7 +218696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1892), 45, + ACTIONS(2031), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213723,7 +218718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213747,12 +218742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6521] = 4, + [6525] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1559), 1, + STATE(1591), 1, sym_comment, - ACTIONS(2412), 16, + ACTIONS(2380), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213769,7 +218764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2414), 45, + ACTIONS(2382), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213791,7 +218786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213815,12 +218810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6593] = 4, + [6597] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1560), 1, + STATE(1592), 1, sym_comment, - ACTIONS(2416), 16, + ACTIONS(2384), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213837,7 +218832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2418), 45, + ACTIONS(2386), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213859,7 +218854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213883,12 +218878,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6665] = 4, + [6669] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1561), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4968), 1, + anon_sym_LBRACK, + ACTIONS(4970), 1, + sym_wild_card, + STATE(1593), 1, + sym_comment, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, + sym_cmd_identifier, + STATE(2501), 1, + sym_val_string, + STATE(6653), 1, + sym_command_list, + STATE(6971), 1, + sym__val_number_decimal, + STATE(6973), 1, + sym__command_name, + STATE(7129), 1, + sym_scope_pattern, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4926), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4960), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4964), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4962), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [6775] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4968), 1, + anon_sym_LBRACK, + ACTIONS(4970), 1, + sym_wild_card, + STATE(1594), 1, + sym_comment, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, + sym_cmd_identifier, + STATE(2501), 1, + sym_val_string, + STATE(6653), 1, + sym_command_list, + STATE(6814), 1, + sym_scope_pattern, + STATE(6971), 1, + sym__val_number_decimal, + STATE(6973), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4928), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4960), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4964), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4962), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [6881] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1595), 1, sym_comment, - ACTIONS(1894), 16, + ACTIONS(2033), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -213905,7 +219070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1896), 45, + ACTIONS(2035), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -213927,7 +219092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -213951,19 +219116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6737] = 4, + [6953] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1562), 1, + STATE(1596), 1, sym_comment, - ACTIONS(1945), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1034), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -213972,15 +219131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1947), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1036), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213991,26 +219142,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214019,19 +219184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6809] = 4, + [7025] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1563), 1, + STATE(1597), 1, sym_comment, - ACTIONS(2420), 16, - anon_sym_DOLLAR, + ACTIONS(2380), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -214040,14 +219199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2422), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2382), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214059,26 +219211,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214087,19 +219252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6881] = 4, + [7097] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1564), 1, + STATE(1598), 1, sym_comment, - ACTIONS(2424), 16, - anon_sym_DOLLAR, + ACTIONS(2384), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -214108,14 +219267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2426), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2386), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214127,26 +219279,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7169] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, + anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1599), 1, + sym_comment, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2339), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5620), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7313] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, + anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1600), 1, + sym_comment, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2340), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5621), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7457] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1601), 1, + sym_comment, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + STATE(2337), 1, + sym_cell_path, + ACTIONS(1822), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1826), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214155,19 +219600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6953] = 4, + [7537] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1565), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1254), 1, + sym_cell_path, + STATE(1602), 1, sym_comment, - ACTIONS(1949), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + ACTIONS(1005), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -214176,15 +219623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1951), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1007), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214195,26 +219634,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214223,15 +219672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7025] = 4, + [7617] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1566), 1, + STATE(1603), 1, sym_comment, - ACTIONS(2428), 16, + ACTIONS(1046), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -214245,7 +219695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2430), 45, + ACTIONS(1048), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214265,10 +219716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -214291,15 +219740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7097] = 4, + [7689] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1567), 1, + STATE(1604), 1, sym_comment, - ACTIONS(2432), 16, + ACTIONS(1050), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -214313,7 +219763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2434), 45, + ACTIONS(1052), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214333,10 +219784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -214359,15 +219808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7169] = 4, + [7761] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1568), 1, + STATE(1605), 1, sym_comment, - ACTIONS(1575), 16, + ACTIONS(1054), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -214381,7 +219831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1587), 45, + ACTIONS(1056), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214401,10 +219852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -214427,12 +219876,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7241] = 4, + [7833] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1569), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4968), 1, + anon_sym_LBRACK, + ACTIONS(4970), 1, + sym_wild_card, + STATE(1606), 1, + sym_comment, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, + sym_cmd_identifier, + STATE(2501), 1, + sym_val_string, + STATE(6653), 1, + sym_command_list, + STATE(6686), 1, + sym_scope_pattern, + STATE(6971), 1, + sym__val_number_decimal, + STATE(6973), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4876), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4960), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4964), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4962), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [7939] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + aux_sym__immediate_decimal_token2, + STATE(1607), 1, sym_comment, - ACTIONS(2436), 16, + ACTIONS(1667), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -214449,7 +219985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2438), 45, + ACTIONS(1669), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214469,10 +220006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -214495,20 +220030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7313] = 8, + [8013] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, + ACTIONS(4956), 1, anon_sym_DOT, - STATE(1484), 1, - sym_cell_path, - STATE(1570), 1, + STATE(1608), 1, sym_comment, - STATE(1917), 1, + STATE(1794), 1, aux_sym_cell_path_repeat1, - STATE(2141), 1, + STATE(2022), 1, + sym_cell_path, + STATE(2042), 1, sym_path, - ACTIONS(1686), 9, + ACTIONS(1836), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -214518,7 +220053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1688), 48, + ACTIONS(1838), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214530,7 +220065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -214567,12 +220102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7393] = 4, + [8093] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1571), 1, + ACTIONS(4980), 1, + aux_sym__immediate_decimal_token2, + STATE(1609), 1, sym_comment, - ACTIONS(1879), 16, + ACTIONS(1721), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -214589,7 +220126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1881), 45, + ACTIONS(1723), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214609,10 +220147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -214635,21 +220171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7465] = 8, + [8167] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1533), 1, - sym_cell_path, - STATE(1572), 1, + STATE(1610), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(2141), 1, - sym_path, - ACTIONS(1625), 9, - sym__newline, + ACTIONS(4984), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -214658,7 +220186,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(1629), 48, + ACTIONS(4982), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214670,35 +220199,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214707,12 +220239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7545] = 4, + [8239] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1573), 1, + STATE(1611), 1, sym_comment, - ACTIONS(2443), 16, + ACTIONS(4884), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -214729,7 +220261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2445), 45, + ACTIONS(4882), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214751,7 +220283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -214775,12 +220307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7617] = 4, + [8311] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1574), 1, + STATE(1612), 1, sym_comment, - ACTIONS(2364), 16, + ACTIONS(4894), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -214797,7 +220329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2366), 45, + ACTIONS(4892), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -214819,7 +220351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -214843,19 +220375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7689] = 4, + [8383] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1575), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1613), 1, sym_comment, - ACTIONS(2364), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1976), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1840), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -214864,15 +220398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2366), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1842), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214883,26 +220409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214911,19 +220447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7761] = 4, + [8463] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1576), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1614), 1, sym_comment, - ACTIONS(2061), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1981), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1844), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -214932,15 +220470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2067), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1846), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214951,26 +220481,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -214979,19 +220519,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7833] = 4, + [8543] = 8, ACTIONS(247), 1, - anon_sym_POUND, - STATE(1577), 1, - sym_comment, - ACTIONS(2372), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_POUND, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_comment, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1982), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1848), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215000,15 +220542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2374), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1850), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215019,26 +220553,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215047,19 +220591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7905] = 4, + [8623] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1578), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1616), 1, sym_comment, - ACTIONS(2376), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1984), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1852), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215068,15 +220614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2378), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1854), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215087,26 +220625,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215115,19 +220663,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7977] = 4, + [8703] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1579), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1617), 1, sym_comment, - ACTIONS(1064), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1986), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1856), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215136,15 +220686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1066), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1858), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215155,26 +220697,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215183,19 +220735,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8049] = 4, + [8783] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1580), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1618), 1, sym_comment, - ACTIONS(2019), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1989), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1860), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215204,15 +220758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2021), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1862), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215223,26 +220769,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215251,19 +220807,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8121] = 4, + [8863] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1581), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1619), 1, sym_comment, - ACTIONS(2384), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1991), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1864), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215272,15 +220830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2386), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1866), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215291,26 +220841,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215319,19 +220879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8193] = 4, + [8943] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1582), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1620), 1, sym_comment, - ACTIONS(2388), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1992), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1868), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215340,15 +220902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2390), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1870), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215359,26 +220913,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215387,19 +220951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8265] = 4, + [9023] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1583), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1621), 1, sym_comment, - ACTIONS(2449), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1993), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1872), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215408,15 +220974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2451), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1874), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215427,26 +220985,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215455,19 +221023,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8337] = 4, + [9103] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1584), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1622), 1, sym_comment, - ACTIONS(2035), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2026), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1876), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215476,15 +221046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2041), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1878), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215495,26 +221057,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215523,35 +221095,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, - [8409] = 4, - ACTIONS(247), 1, + [9183] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1585), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(1623), 1, sym_comment, - ACTIONS(2043), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2049), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2233), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215565,24 +221117,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2229), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215591,12 +221163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8481] = 4, + aux_sym_unquoted_token1, + [9257] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1586), 1, + STATE(1624), 1, sym_comment, - ACTIONS(2051), 16, + ACTIONS(2328), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -215613,7 +221186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2057), 45, + ACTIONS(2330), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -215635,7 +221208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -215659,12 +221232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8553] = 4, + [9329] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1587), 1, + STATE(1625), 1, sym_comment, - ACTIONS(2133), 16, + ACTIONS(2342), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -215681,7 +221254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2135), 45, + ACTIONS(2344), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -215703,7 +221276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -215727,35 +221300,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, - [8625] = 4, - ACTIONS(247), 1, + [9401] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1588), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(1626), 1, sym_comment, - ACTIONS(2465), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2467), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2241), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215769,45 +221322,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8697] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1589), 1, - sym_comment, - ACTIONS(2469), 16, + ACTIONS(2237), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215816,14 +221360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [9475] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(1627), 1, + sym_comment, + ACTIONS(2247), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215837,24 +221391,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2245), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215863,19 +221437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8769] = 4, + aux_sym_unquoted_token1, + [9549] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1590), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1628), 1, sym_comment, - ACTIONS(2473), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1995), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1880), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215884,15 +221461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2475), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1882), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215903,26 +221472,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215931,19 +221510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8841] = 4, + [9629] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1591), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1629), 1, sym_comment, - ACTIONS(2477), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1997), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1884), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -215952,15 +221533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2479), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1886), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215971,26 +221544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -215999,19 +221582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8913] = 4, + [9709] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1592), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1630), 1, sym_comment, - ACTIONS(2481), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(1999), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1888), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -216020,15 +221605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2483), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1890), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216039,26 +221616,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216067,12 +221654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8985] = 4, + [9789] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1593), 1, + STATE(1631), 1, sym_comment, - ACTIONS(2485), 16, + ACTIONS(2348), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -216089,7 +221676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2487), 45, + ACTIONS(2350), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -216111,7 +221698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -216135,36 +221722,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, - [9057] = 4, + [9861] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1594), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1632), 1, sym_comment, - ACTIONS(2489), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2000), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1892), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, anon_sym_o_GT, anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2491), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1894), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216175,26 +221756,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216203,12 +221794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9129] = 4, + [9941] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1595), 1, + STATE(1633), 1, sym_comment, - ACTIONS(2493), 16, + ACTIONS(4988), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -216225,7 +221816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2495), 45, + ACTIONS(4986), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -216247,7 +221838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -216271,19 +221862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9201] = 4, + [10013] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1596), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1634), 1, sym_comment, - ACTIONS(2497), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2003), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1896), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -216292,15 +221885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2499), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1898), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216311,26 +221896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216339,19 +221934,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9273] = 4, + [10093] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1597), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1635), 1, sym_comment, - ACTIONS(2501), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2006), 1, + sym_cell_path, + STATE(2042), 1, + sym_path, + ACTIONS(1900), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -216360,15 +221957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2503), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1902), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216379,26 +221968,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216407,20 +222006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9345] = 8, + [10173] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, + ACTIONS(4956), 1, anon_sym_DOT, - STATE(1224), 1, - sym_cell_path, - STATE(1598), 1, + STATE(1636), 1, sym_comment, - STATE(1917), 1, + STATE(1794), 1, aux_sym_cell_path_repeat1, - STATE(2141), 1, + STATE(2007), 1, + sym_cell_path, + STATE(2042), 1, sym_path, - ACTIONS(1011), 9, + ACTIONS(1904), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -216430,7 +222029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 48, + ACTIONS(1906), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216442,7 +222041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -216479,16 +222078,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, - [9425] = 4, + [10253] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1599), 1, + STATE(1637), 1, sym_comment, - ACTIONS(1056), 17, + ACTIONS(4992), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -216502,8 +222100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1058), 44, - ts_builtin_sym_end, + ACTIONS(4990), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -216523,8 +222120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -216547,16 +222146,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, - [9497] = 4, + [10325] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1600), 1, + STATE(1638), 1, sym_comment, - ACTIONS(1060), 17, + ACTIONS(4996), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -216570,8 +222168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1062), 44, - ts_builtin_sym_end, + ACTIONS(4994), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -216591,8 +222188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -216615,20 +222214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9569] = 4, + [10397] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1601), 1, + STATE(1639), 1, sym_comment, - ACTIONS(1052), 17, - anon_sym_DOLLAR, + ACTIONS(1560), 10, + sym__newline, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -216637,16 +222230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1054), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1572), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216657,24 +222241,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216683,14 +222282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9641] = 5, + [10469] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4862), 1, - aux_sym__immediate_decimal_token2, - STATE(1602), 1, + STATE(1640), 1, sym_comment, - ACTIONS(1643), 16, + ACTIONS(5000), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -216707,8 +222304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1645), 44, - ts_builtin_sym_end, + ACTIONS(4998), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -216728,8 +222324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -216752,38 +222350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9715] = 5, - ACTIONS(247), 1, + [10541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4948), 1, - aux_sym__immediate_decimal_token2, - STATE(1603), 1, + STATE(1641), 1, sym_comment, - ACTIONS(1705), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1707), 44, + ACTIONS(2255), 20, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216797,22 +222370,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2253), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216821,12 +222416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9789] = 4, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [10613] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1604), 1, + STATE(1642), 1, sym_comment, - ACTIONS(4888), 16, + ACTIONS(5004), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -216843,7 +222440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4886), 45, + ACTIONS(5002), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -216865,7 +222462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -216889,19 +222486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9861] = 4, + [10685] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1605), 1, + STATE(1643), 1, sym_comment, - ACTIONS(4926), 16, - anon_sym_DOLLAR, + ACTIONS(1070), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -216910,14 +222501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4924), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1072), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216929,26 +222513,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216957,13 +222554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9933] = 5, + [10757] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1606), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1644), 1, sym_comment, - ACTIONS(4818), 9, - anon_sym_DASH, + STATE(1804), 1, + sym_cell_path, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1641), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -216972,7 +222576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4816), 24, + ACTIONS(1645), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216985,10 +222589,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -216997,7 +222626,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4820), 28, + [10837] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1645), 1, + sym_comment, + STATE(1812), 1, + sym_cell_path, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1675), 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(1677), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -217026,104 +222690,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [10007] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4958), 1, - anon_sym_LBRACK, - ACTIONS(4960), 1, - sym_wild_card, - STATE(1607), 1, - sym_comment, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2445), 1, - sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(6720), 1, - sym_scope_pattern, - STATE(7005), 1, - sym__command_name, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7118), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4928), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4950), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [10113] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10917] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1608), 1, + STATE(1646), 1, sym_comment, - ACTIONS(4964), 16, - anon_sym_DOLLAR, + ACTIONS(5010), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217132,14 +222713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4962), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5008), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217151,26 +222725,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217179,19 +222766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10185] = 4, + [10989] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1609), 1, + STATE(1647), 1, sym_comment, - ACTIONS(4968), 16, - anon_sym_DOLLAR, + ACTIONS(2458), 10, + sym__newline, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217200,15 +222782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4966), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2460), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217219,26 +222793,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217247,21 +222834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10257] = 5, + [11061] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4299), 1, - aux_sym_unquoted_token2, - STATE(1610), 1, + STATE(1648), 1, sym_comment, - ACTIONS(1575), 16, - anon_sym_DOLLAR, + ACTIONS(2462), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217270,15 +222849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1587), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2464), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217290,24 +222861,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217316,19 +222902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10331] = 4, + [11133] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1611), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1256), 1, + sym_cell_path, + STATE(1649), 1, sym_comment, - ACTIONS(4706), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + ACTIONS(1005), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217337,14 +222924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4704), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1007), 49, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217356,26 +222937,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217384,12 +222974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10403] = 4, + [11213] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1612), 1, + ACTIONS(5014), 1, + anon_sym_EQ2, + STATE(1650), 1, sym_comment, - ACTIONS(4797), 16, + ACTIONS(4900), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -217406,7 +222998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4795), 45, + ACTIONS(4898), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -217426,10 +223019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -217452,58 +223043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10475] = 5, - ACTIONS(3), 1, + [11287] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(1613), 1, + STATE(1651), 1, sym_comment, - ACTIONS(1078), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1076), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5018), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217512,31 +223064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [10549] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1614), 1, - sym_comment, - ACTIONS(4970), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4820), 52, + ACTIONS(5016), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217548,39 +223083,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217589,12 +223111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10621] = 4, + [11359] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1615), 1, + STATE(1652), 1, sym_comment, - ACTIONS(4974), 9, + ACTIONS(1832), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -217604,7 +223126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 52, + ACTIONS(1834), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217618,7 +223140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -217657,13 +223179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10693] = 4, + [11431] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1616), 1, + STATE(1653), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(1667), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217672,7 +223200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + aux_sym_unquoted_token1, + ACTIONS(1669), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217684,39 +223219,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217725,12 +223247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10765] = 4, + [11503] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1617), 1, + STATE(1654), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(2253), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -217740,7 +223262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + ACTIONS(2255), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217754,7 +223276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -217793,13 +223315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10837] = 4, + [11575] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1618), 1, + STATE(1655), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(1659), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217808,7 +223336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + aux_sym_unquoted_token1, + ACTIONS(1661), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217820,39 +223355,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217861,13 +223383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10909] = 4, + [11647] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1619), 1, + STATE(1656), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(1721), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217876,7 +223404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + aux_sym_unquoted_token1, + ACTIONS(1723), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217888,39 +223423,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217929,13 +223451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10981] = 4, + [11719] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1620), 1, + STATE(1657), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(1738), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -217944,7 +223472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + aux_sym_unquoted_token1, + ACTIONS(1740), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217956,39 +223491,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -217997,15 +223519,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11053] = 5, - ACTIONS(3), 1, + [11791] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(1621), 1, + STATE(1658), 1, sym_comment, - ACTIONS(2297), 20, + ACTIONS(4884), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4882), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218018,45 +223562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2293), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -218065,13 +223587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [11127] = 4, + [11863] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1622), 1, + STATE(1659), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(1822), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -218081,7 +223602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + ACTIONS(1826), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218095,7 +223616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -218134,12 +223655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11199] = 4, + [11935] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1623), 1, + STATE(1660), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(2309), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -218149,7 +223670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + ACTIONS(2311), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218163,7 +223684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -218202,15 +223723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11271] = 5, - ACTIONS(3), 1, + [12007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1624), 1, + STATE(1661), 1, sym_comment, - ACTIONS(2247), 20, - ts_builtin_sym_end, + ACTIONS(2466), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2468), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218222,38 +223750,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12079] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, + anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1662), 1, + sym_comment, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2310), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5561), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2243), 40, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [12223] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1663), 1, + sym_comment, + ACTIONS(5022), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -218262,24 +223916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [11345] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1625), 1, - sym_comment, - ACTIONS(2253), 20, - ts_builtin_sym_end, + ACTIONS(5020), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218293,44 +223937,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2251), 40, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12295] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1664), 1, + sym_comment, + ACTIONS(5026), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5024), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -218339,14 +224031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [11419] = 4, + [12367] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1626), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1665), 1, sym_comment, - ACTIONS(4745), 9, - anon_sym_DASH, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + STATE(2364), 1, + sym_cell_path, + ACTIONS(1828), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -218355,8 +224054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, - sym__newline, + ACTIONS(1830), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218368,38 +224066,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -218408,13 +224103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11491] = 4, + [12447] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1627), 1, + STATE(1666), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(5030), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -218423,7 +224124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + aux_sym_unquoted_token1, + ACTIONS(5028), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218435,39 +224143,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -218476,13 +224171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11563] = 4, + [12519] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1628), 1, + STATE(1667), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(5034), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -218491,7 +224192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + aux_sym_unquoted_token1, + ACTIONS(5032), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218503,39 +224211,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -218544,12 +224239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11635] = 4, + [12591] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1629), 1, + STATE(1668), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(2388), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -218559,7 +224254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + ACTIONS(2390), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218573,7 +224268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -218612,12 +224307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11707] = 4, + [12663] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1630), 1, + STATE(1669), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(2328), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -218627,7 +224322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + ACTIONS(2330), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218641,7 +224336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -218680,12 +224375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11779] = 4, + [12735] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1631), 1, + STATE(1670), 1, sym_comment, - ACTIONS(4745), 9, + ACTIONS(2338), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -218695,7 +224390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 52, + ACTIONS(2340), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218709,7 +224404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -218748,19 +224443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11851] = 4, + [12807] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1632), 1, + STATE(1671), 1, sym_comment, - ACTIONS(4979), 16, - anon_sym_DOLLAR, + ACTIONS(2342), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -218769,14 +224458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4976), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2344), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218788,346 +224470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [11923] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1633), 1, - sym_comment, - ACTIONS(2261), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2259), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [11995] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1634), 1, - sym_comment, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2320), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5532), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [12139] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1635), 1, - sym_comment, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2321), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5538), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [12283] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1636), 1, - sym_comment, - STATE(1904), 1, - sym_cell_path, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1686), 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(1688), 49, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -219164,20 +224511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12363] = 8, + [12879] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1637), 1, + STATE(1672), 1, sym_comment, - STATE(1906), 1, - sym_cell_path, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1625), 8, + ACTIONS(2517), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -219186,7 +224526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1629), 49, + ACTIONS(2519), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219199,7 +224539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -219236,92 +224579,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12443] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [12951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4958), 1, - anon_sym_LBRACK, - ACTIONS(4960), 1, - sym_wild_card, - STATE(1638), 1, + STATE(1673), 1, sym_comment, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2445), 1, - sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(7005), 1, - sym__command_name, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7037), 1, - sym_scope_pattern, - STATE(7118), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, + ACTIONS(1070), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4854), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4950), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1072), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [12549] = 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13023] = 40, ACTIONS(191), 1, anon_sym_DOT_DOT, ACTIONS(227), 1, @@ -219336,55 +224662,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3199), 1, + ACTIONS(3215), 1, anon_sym_null, - ACTIONS(3249), 1, + ACTIONS(3265), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, aux_sym_expr_unary_token1, - ACTIONS(3301), 1, + ACTIONS(3317), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, + ACTIONS(3319), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, + ACTIONS(3321), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, + ACTIONS(3323), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, + ACTIONS(4972), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4974), 1, anon_sym_DOLLAR, - ACTIONS(4986), 1, + ACTIONS(4976), 1, anon_sym_DASH_DASH, - ACTIONS(4988), 1, + ACTIONS(4978), 1, anon_sym_DASH, - STATE(1389), 1, + STATE(1418), 1, sym__str_double_quotes, - STATE(1458), 1, + STATE(1445), 1, sym_expr_parenthesized, - STATE(1461), 1, + STATE(1446), 1, sym_val_variable, - STATE(1639), 1, - sym_comment, - STATE(1644), 1, + STATE(1646), 1, sym__expr_unary_minus, - STATE(1676), 1, + STATE(1647), 1, sym__val_number, - STATE(1708), 1, + STATE(1674), 1, + sym_comment, + STATE(1729), 1, sym__inter_single_quotes, - STATE(1709), 1, + STATE(1732), 1, sym__inter_double_quotes, - STATE(2336), 1, + STATE(2338), 1, sym__flag, - STATE(2837), 1, + STATE(2846), 1, sym__val_number_decimal, - STATE(3484), 1, + STATE(3520), 1, sym_val_range, - STATE(3785), 1, + STATE(3822), 1, sym__expr_binary_expression, - STATE(5585), 1, + STATE(5537), 1, sym__expression, ACTIONS(213), 2, anon_sym_DOT_DOT_EQ, @@ -219395,13 +224721,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3197), 2, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - STATE(3689), 2, + STATE(3671), 2, sym_short_flag, sym_long_flag, - STATE(1606), 3, + STATE(1687), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -219412,7 +224738,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(1675), 12, + STATE(1643), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -219425,12 +224751,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12693] = 4, + [13167] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1640), 1, + STATE(1675), 1, sym_comment, - ACTIONS(1643), 16, + ACTIONS(1042), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219447,7 +224773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1645), 45, + ACTIONS(1044), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219469,7 +224795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -219493,12 +224819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12765] = 4, + [13239] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1641), 1, + STATE(1676), 1, sym_comment, - ACTIONS(1631), 16, + ACTIONS(2462), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219515,7 +224841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1633), 45, + ACTIONS(2464), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219537,7 +224863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -219561,12 +224887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12837] = 4, + [13311] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1642), 1, + ACTIONS(4539), 1, + aux_sym_unquoted_token2, + STATE(1677), 1, sym_comment, - ACTIONS(1705), 16, + ACTIONS(1560), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219583,7 +224911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1707), 45, + ACTIONS(1572), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219603,10 +224932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -219629,12 +224956,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, - [12909] = 4, + [13385] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1643), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1257), 1, + sym_cell_path, + STATE(1570), 1, + sym_path, + STATE(1678), 1, + sym_comment, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1005), 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(1007), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13465] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1679), 1, sym_comment, - ACTIONS(1755), 16, + ACTIONS(1038), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219651,7 +225050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1757), 45, + ACTIONS(1040), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219673,7 +225072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -219697,12 +225096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12981] = 4, + [13537] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1644), 1, + STATE(1680), 1, sym_comment, - ACTIONS(4992), 9, + ACTIONS(2521), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -219712,7 +225111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4990), 52, + ACTIONS(2523), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219726,7 +225125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -219765,12 +225164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13053] = 4, + [13609] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1645), 1, + STATE(1681), 1, sym_comment, - ACTIONS(2259), 9, + ACTIONS(2348), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -219780,7 +225179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2261), 52, + ACTIONS(2350), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219794,7 +225193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -219833,13 +225232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13125] = 4, + [13681] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1646), 1, + STATE(1682), 1, sym_comment, - ACTIONS(4888), 17, - anon_sym_LPAREN, + ACTIONS(1822), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219856,8 +225254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4886), 44, - ts_builtin_sym_end, + ACTIONS(1826), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219876,9 +225273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -219901,21 +225300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13197] = 8, + [13753] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1647), 1, + STATE(1683), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(2141), 1, - sym_path, - STATE(2182), 1, - sym_cell_path, - ACTIONS(1965), 9, - sym__newline, + ACTIONS(2309), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -219924,79 +225321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13277] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1648), 1, - sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(2141), 1, - sym_path, - STATE(2184), 1, - sym_cell_path, - ACTIONS(1957), 9, + aux_sym_unquoted_token1, + ACTIONS(2311), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1959), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220007,36 +225340,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220045,12 +225368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13357] = 4, + [13825] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1649), 1, + STATE(1684), 1, sym_comment, - ACTIONS(4996), 9, + ACTIONS(1848), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -220060,7 +225383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4994), 52, + ACTIONS(1850), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220074,7 +225397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -220113,98 +225436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13429] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4958), 1, - anon_sym_LBRACK, - ACTIONS(4960), 1, - sym_wild_card, - STATE(1650), 1, - sym_comment, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2445), 1, - sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(7005), 1, - sym__command_name, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7021), 1, - sym_scope_pattern, - STATE(7118), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4930), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4950), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [13535] = 4, + [13897] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1651), 1, + STATE(1685), 1, sym_comment, - ACTIONS(4926), 17, - anon_sym_LPAREN, + ACTIONS(2466), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -220221,8 +225458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4924), 44, - ts_builtin_sym_end, + ACTIONS(2468), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -220241,9 +225477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -220266,86 +225504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13607] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1652), 1, - sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(2141), 1, - sym_path, - STATE(2201), 1, - sym_cell_path, - ACTIONS(1879), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13687] = 5, + [13969] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_EQ2, - STATE(1653), 1, + STATE(1686), 1, sym_comment, - ACTIONS(4906), 16, + ACTIONS(1034), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -220362,8 +225526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4904), 44, - ts_builtin_sym_end, + ACTIONS(1036), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -220383,8 +225546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -220407,21 +225572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13761] = 8, + [14041] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1654), 1, + STATE(1687), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(2141), 1, - sym_path, - STATE(2207), 1, - sym_cell_path, - ACTIONS(1961), 9, - sym__newline, + ACTIONS(4798), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220430,7 +225587,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(1963), 48, + ACTIONS(4796), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220442,35 +225600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220479,21 +225612,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13841] = 8, + ACTIONS(4800), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [14115] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1655), 1, + STATE(1688), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1951), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1829), 9, - sym__newline, + ACTIONS(2412), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220502,7 +225656,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(1833), 48, + ACTIONS(2414), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220514,35 +225669,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220551,12 +225709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13921] = 4, + [14187] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1656), 1, + STATE(1689), 1, sym_comment, - ACTIONS(5002), 9, + ACTIONS(2416), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -220566,7 +225724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5000), 52, + ACTIONS(2418), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220580,7 +225738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -220619,19 +225777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13993] = 4, + [14259] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1657), 1, + STATE(1690), 1, sym_comment, - ACTIONS(1040), 16, - anon_sym_DOLLAR, + ACTIONS(1864), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220640,14 +225792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1042), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1866), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220659,26 +225804,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220687,21 +225845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14065] = 8, + [14331] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1658), 1, + STATE(1691), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1954), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1839), 9, - sym__newline, + ACTIONS(1872), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220710,7 +225860,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(1841), 48, + ACTIONS(1874), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220722,35 +225873,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220759,21 +225913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14145] = 8, + [14403] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1659), 1, + STATE(1692), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1955), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1843), 9, - sym__newline, + ACTIONS(2338), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220782,7 +225934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1845), 48, + aux_sym_unquoted_token1, + ACTIONS(2340), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220793,36 +225953,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220831,21 +225981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14225] = 8, + [14475] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1660), 1, + STATE(1693), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1988), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1847), 9, - sym__newline, + ACTIONS(5038), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220854,7 +226002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 48, + aux_sym_unquoted_token1, + ACTIONS(5036), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220865,36 +226021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220903,21 +226049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14305] = 8, + [14547] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1661), 1, + STATE(1694), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1958), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1851), 9, - sym__newline, + ACTIONS(5042), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220926,7 +226070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1853), 48, + aux_sym_unquoted_token1, + ACTIONS(5040), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220937,36 +226089,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220975,21 +226117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14385] = 8, + [14619] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1662), 1, + ACTIONS(4169), 1, + aux_sym_unquoted_token2, + STATE(1695), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1959), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1855), 9, - sym__newline, + ACTIONS(1560), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220998,7 +226140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 48, + aux_sym_unquoted_token1, + ACTIONS(1572), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221009,36 +226160,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221047,21 +226186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14465] = 8, + [14693] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1663), 1, + STATE(1696), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1963), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1859), 9, - sym__newline, + ACTIONS(2517), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221070,7 +226207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 48, + aux_sym_unquoted_token1, + ACTIONS(2519), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221081,36 +226226,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221119,21 +226254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14545] = 8, + [14765] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1664), 1, + STATE(1697), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1964), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1863), 9, - sym__newline, + ACTIONS(1876), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221142,7 +226269,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(1865), 48, + ACTIONS(1878), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221154,35 +226282,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221191,21 +226322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14625] = 8, + [14837] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1665), 1, + STATE(1698), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1966), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1867), 9, - sym__newline, + ACTIONS(2420), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221214,7 +226337,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(1869), 48, + ACTIONS(2422), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221226,35 +226350,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221263,21 +226390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14705] = 8, + [14909] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1666), 1, + STATE(1699), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1968), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1871), 9, - sym__newline, + ACTIONS(2521), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221286,7 +226411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 48, + aux_sym_unquoted_token1, + ACTIONS(2523), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221297,36 +226430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221335,21 +226458,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14785] = 8, + [14981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1667), 1, + STATE(1700), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1969), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1875), 9, - sym__newline, + ACTIONS(1888), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221358,7 +226473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 48, + ACTIONS(1890), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221370,35 +226486,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221407,21 +226526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14865] = 8, + [15053] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1668), 1, + STATE(1701), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1973), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1969), 9, - sym__newline, + ACTIONS(2434), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221430,7 +226541,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(1971), 48, + ACTIONS(2436), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221442,35 +226554,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221479,21 +226594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14945] = 8, + [15125] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1669), 1, + STATE(1702), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1975), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1890), 9, - sym__newline, + ACTIONS(1848), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221502,7 +226615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1892), 48, + aux_sym_unquoted_token1, + ACTIONS(1850), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221513,36 +226634,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221551,21 +226662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15025] = 8, + [15197] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1670), 1, + STATE(1703), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1976), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1894), 9, - sym__newline, + ACTIONS(2438), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221574,7 +226677,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(1896), 48, + ACTIONS(2440), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221586,35 +226690,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221623,21 +226730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15105] = 8, + [15269] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1671), 1, + STATE(1704), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1977), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1937), 9, - sym__newline, + ACTIONS(1892), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221646,7 +226745,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(1939), 48, + ACTIONS(1894), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221658,35 +226758,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221695,21 +226798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15185] = 8, + [15341] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1672), 1, + STATE(1705), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1978), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1945), 9, - sym__newline, + ACTIONS(1900), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221718,7 +226813,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(1947), 48, + ACTIONS(1902), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221730,35 +226826,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221767,21 +226866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15265] = 8, + [15413] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1673), 1, + STATE(1706), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1980), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1949), 9, - sym__newline, + ACTIONS(2412), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221790,7 +226887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 48, + aux_sym_unquoted_token1, + ACTIONS(2414), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221801,36 +226906,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221839,13 +226934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15345] = 4, + [15485] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1674), 1, + STATE(1707), 1, sym_comment, - ACTIONS(1575), 10, - sym__newline, + ACTIONS(2442), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -221855,7 +226949,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(1587), 51, + ACTIONS(2444), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221866,8 +226961,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_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -221898,7 +226994,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221907,13 +227002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15417] = 4, + [15557] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1675), 1, + STATE(1708), 1, sym_comment, - ACTIONS(1076), 9, + ACTIONS(2416), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221922,7 +227023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 52, + aux_sym_unquoted_token1, + ACTIONS(2418), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221934,39 +227042,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221975,13 +227070,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15489] = 4, + [15629] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1676), 1, + STATE(1709), 1, sym_comment, - ACTIONS(2436), 10, + ACTIONS(1864), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1866), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15701] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1710), 1, + sym_comment, + ACTIONS(2446), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -221991,7 +227153,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(2438), 51, + ACTIONS(2448), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222002,8 +227165,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_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -222034,7 +227198,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222043,12 +227206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15561] = 4, + [15773] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1677), 1, + STATE(1711), 1, sym_comment, - ACTIONS(2368), 9, + ACTIONS(1904), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -222058,7 +227221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2370), 52, + ACTIONS(1906), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222072,7 +227235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -222111,14 +227274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15633] = 5, + [15845] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_EQ2, - STATE(1678), 1, + STATE(1712), 1, sym_comment, - ACTIONS(4916), 16, + ACTIONS(1872), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222135,8 +227296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4914), 44, - ts_builtin_sym_end, + ACTIONS(1874), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -222156,8 +227316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -222180,12 +227342,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15707] = 4, + [15917] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1679), 1, + STATE(1713), 1, sym_comment, - ACTIONS(5008), 16, + ACTIONS(2450), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2452), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15989] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1714), 1, + sym_comment, + ACTIONS(1876), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222202,7 +227432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5006), 45, + ACTIONS(1878), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -222224,7 +227454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -222248,12 +227478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15779] = 4, + [16061] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1680), 1, + STATE(1715), 1, sym_comment, - ACTIONS(1879), 9, + ACTIONS(2454), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -222263,7 +227493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 52, + ACTIONS(2456), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222277,7 +227507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -222316,13 +227546,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15851] = 4, + [16133] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1681), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1716), 1, sym_comment, - ACTIONS(1961), 9, - anon_sym_DASH, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + STATE(2379), 1, + sym_cell_path, + ACTIONS(1912), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222331,8 +227569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 52, - sym__newline, + ACTIONS(1914), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222344,38 +227581,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222384,12 +227618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15923] = 4, + [16213] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1682), 1, + STATE(1717), 1, sym_comment, - ACTIONS(2355), 9, + ACTIONS(5046), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -222399,7 +227633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2357), 52, + ACTIONS(5044), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222413,7 +227647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -222452,13 +227686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15995] = 4, + [16285] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1718), 1, sym_comment, - ACTIONS(2380), 9, + ACTIONS(2420), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222467,7 +227707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2382), 52, + aux_sym_unquoted_token1, + ACTIONS(2422), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222479,39 +227726,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222520,13 +227754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16067] = 4, + [16357] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1719), 1, sym_comment, - ACTIONS(2443), 9, + ACTIONS(1888), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222535,51 +227775,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2445), 52, + aux_sym_unquoted_token1, + ACTIONS(1890), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222588,13 +227822,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16139] = 4, + [16429] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1685), 1, + STATE(1720), 1, sym_comment, - ACTIONS(2453), 9, + ACTIONS(2434), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222603,7 +227843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2455), 52, + aux_sym_unquoted_token1, + ACTIONS(2436), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222615,39 +227862,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222656,13 +227890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16211] = 4, + [16501] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1686), 1, + STATE(1721), 1, sym_comment, - ACTIONS(2457), 9, + ACTIONS(2438), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222671,7 +227911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2459), 52, + aux_sym_unquoted_token1, + ACTIONS(2440), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222683,39 +227930,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222724,13 +227958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16283] = 4, + [16573] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1687), 1, + STATE(1722), 1, sym_comment, - ACTIONS(2392), 9, + ACTIONS(1892), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222739,7 +227979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2394), 52, + aux_sym_unquoted_token1, + ACTIONS(1894), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222751,39 +227998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222792,13 +228026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16355] = 4, + [16645] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1688), 1, + ACTIONS(5048), 1, + anon_sym_LBRACK2, + STATE(1723), 1, sym_comment, - ACTIONS(2396), 9, + ACTIONS(2313), 17, + anon_sym_LBRACK, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222807,7 +228050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2398), 52, + aux_sym_unquoted_token1, + ACTIONS(2317), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222819,39 +228070,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_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222860,13 +228095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16427] = 4, + [16719] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1689), 1, + STATE(1724), 1, sym_comment, - ACTIONS(1843), 9, + ACTIONS(1900), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222875,7 +228116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1845), 52, + aux_sym_unquoted_token1, + ACTIONS(1902), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222887,39 +228135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222928,13 +228163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16499] = 4, + [16791] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1690), 1, + STATE(1725), 1, sym_comment, - ACTIONS(2400), 9, - anon_sym_DASH, + ACTIONS(1042), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222943,8 +228178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2402), 52, - sym__newline, + ACTIONS(1044), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222956,38 +228190,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_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222996,13 +228231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16571] = 4, + [16863] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1691), 1, + STATE(1726), 1, sym_comment, - ACTIONS(2404), 9, + ACTIONS(2442), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223011,7 +228252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2406), 52, + aux_sym_unquoted_token1, + ACTIONS(2444), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223023,39 +228271,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223064,13 +228299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16643] = 4, + [16935] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1692), 1, + STATE(1727), 1, sym_comment, - ACTIONS(1859), 9, + ACTIONS(2446), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223079,7 +228320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 52, + aux_sym_unquoted_token1, + ACTIONS(2448), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223091,39 +228339,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223132,13 +228367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16715] = 4, + [17007] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1693), 1, + STATE(1728), 1, sym_comment, - ACTIONS(1867), 9, + ACTIONS(1904), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223147,7 +228388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 52, + aux_sym_unquoted_token1, + ACTIONS(1906), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223159,39 +228407,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223200,12 +228435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16787] = 4, + [17079] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1694), 1, + STATE(1729), 1, sym_comment, - ACTIONS(1871), 9, + ACTIONS(2305), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -223215,7 +228450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 52, + ACTIONS(2307), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223229,7 +228464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -223268,13 +228503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16859] = 4, + [17151] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1695), 1, + STATE(1730), 1, sym_comment, - ACTIONS(2408), 9, + ACTIONS(2450), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223283,7 +228524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2410), 52, + aux_sym_unquoted_token1, + ACTIONS(2452), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223295,39 +228543,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223336,13 +228571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16931] = 4, + [17223] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1696), 1, + STATE(1731), 1, sym_comment, - ACTIONS(1890), 9, + ACTIONS(2454), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223351,7 +228592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1892), 52, + aux_sym_unquoted_token1, + ACTIONS(2456), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223363,39 +228611,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223404,12 +228639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17003] = 4, + [17295] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1697), 1, + STATE(1732), 1, sym_comment, - ACTIONS(2412), 9, + ACTIONS(2305), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -223419,7 +228654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2414), 52, + ACTIONS(2307), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223433,7 +228668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -223472,13 +228707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17075] = 4, + [17367] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1698), 1, + STATE(1733), 1, sym_comment, - ACTIONS(2416), 9, + ACTIONS(1560), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223487,7 +228728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2418), 52, + aux_sym_unquoted_token1, + ACTIONS(1572), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223499,39 +228747,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223540,13 +228775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17147] = 4, + [17439] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1699), 1, + STATE(1734), 1, sym_comment, - ACTIONS(1894), 9, + ACTIONS(2458), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223555,7 +228796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1896), 52, + aux_sym_unquoted_token1, + ACTIONS(2460), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223567,39 +228815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223608,13 +228843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17219] = 4, + [17511] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1700), 1, + STATE(1735), 1, sym_comment, - ACTIONS(1945), 9, + ACTIONS(4736), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223623,7 +228864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 52, + aux_sym_unquoted_token1, + ACTIONS(4734), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223635,39 +228883,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223676,13 +228911,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17291] = 4, + [17583] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1701), 1, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1548), 1, + sym_cell_path, + STATE(1736), 1, sym_comment, - ACTIONS(2420), 9, - anon_sym_DASH, + STATE(1794), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + ACTIONS(1641), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223691,8 +228934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2422), 52, - sym__newline, + ACTIONS(1645), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223704,38 +228946,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223744,13 +228983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17363] = 4, + [17663] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1702), 1, + STATE(1737), 1, sym_comment, - ACTIONS(2424), 9, + ACTIONS(4840), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223759,7 +229004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2426), 52, + aux_sym_unquoted_token1, + ACTIONS(4838), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223771,39 +229023,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223812,12 +229051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17435] = 4, + [17735] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1703), 1, + STATE(1738), 1, sym_comment, - ACTIONS(1949), 9, + ACTIONS(5050), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -223827,7 +229066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 52, + ACTIONS(4800), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223841,7 +229080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -223880,12 +229119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17507] = 4, + [17807] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1704), 1, + STATE(1739), 1, sym_comment, - ACTIONS(2428), 9, + ACTIONS(5054), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -223895,7 +229134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2430), 52, + ACTIONS(5052), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223909,7 +229148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -223948,12 +229187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17579] = 4, + [17879] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1705), 1, + STATE(1740), 1, sym_comment, - ACTIONS(2432), 9, + ACTIONS(4844), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -223963,7 +229202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2434), 52, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223977,7 +229216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -224016,15 +229255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17651] = 5, + [17951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5010), 1, - anon_sym_LBRACK2, - STATE(1706), 1, + STATE(1741), 1, sym_comment, - ACTIONS(2303), 17, - anon_sym_LBRACK, + ACTIONS(2019), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -224041,8 +229277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2307), 43, - ts_builtin_sym_end, + ACTIONS(2025), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224060,9 +229295,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_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -224085,13 +229323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17725] = 4, + [18023] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1707), 1, + STATE(1742), 1, sym_comment, - ACTIONS(1040), 9, - sym__newline, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224100,7 +229338,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(1042), 52, + ACTIONS(4842), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224112,39 +229351,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224153,12 +229391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17797] = 4, + [18095] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1708), 1, + STATE(1743), 1, sym_comment, - ACTIONS(2364), 9, + ACTIONS(4844), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -224168,7 +229406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2366), 52, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224182,7 +229420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -224221,12 +229459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17869] = 4, + [18167] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1709), 1, + STATE(1744), 1, sym_comment, - ACTIONS(2364), 9, + ACTIONS(4844), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -224236,7 +229474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2366), 52, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224250,7 +229488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -224289,13 +229527,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17941] = 4, + [18239] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1710), 1, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, + anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(1745), 1, sym_comment, - ACTIONS(1044), 9, - sym__newline, + STATE(2304), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5574), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18383] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1746), 1, + sym_comment, + ACTIONS(1832), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224304,7 +229652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1046), 52, + aux_sym_unquoted_token1, + ACTIONS(1834), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224315,40 +229671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224357,12 +229699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18013] = 4, + [18455] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1711), 1, + STATE(1747), 1, sym_comment, - ACTIONS(2372), 9, + ACTIONS(4844), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -224372,7 +229714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2374), 52, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224386,7 +229728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -224425,13 +229767,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18085] = 4, + [18527] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1712), 1, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, + anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(1748), 1, + sym_comment, + STATE(2311), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5588), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18671] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, + anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(1749), 1, sym_comment, - ACTIONS(2376), 9, + STATE(2312), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5589), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18815] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + anon_sym_DASH_DASH, + ACTIONS(4978), 1, anon_sym_DASH, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(1750), 1, + sym_comment, + STATE(2316), 1, + sym__flag, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5554), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(3671), 2, + sym_short_flag, + sym_long_flag, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18959] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1652), 1, + sym_cell_path, + STATE(1751), 1, + sym_comment, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1828), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224440,7 +230101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2378), 52, + ACTIONS(1830), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224453,10 +230114,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_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -224493,81 +230151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18157] = 4, + [19039] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1713), 1, - sym_comment, - ACTIONS(1048), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1050), 52, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5006), 1, anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18229] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1714), 1, + STATE(1570), 1, + sym_path, + STATE(1659), 1, + sym_cell_path, + STATE(1752), 1, sym_comment, - ACTIONS(2384), 9, - anon_sym_DASH, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1912), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224576,7 +230173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2386), 52, + ACTIONS(1914), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224589,10 +230186,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_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -224629,13 +230223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18301] = 4, + [19119] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1715), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1668), 1, + sym_cell_path, + STATE(1753), 1, sym_comment, - ACTIONS(2388), 9, - anon_sym_DASH, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1832), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224644,7 +230245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2390), 52, + ACTIONS(1834), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224657,10 +230258,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_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -224697,21 +230295,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18373] = 5, + [19199] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4568), 1, - aux_sym_unquoted_token2, - STATE(1716), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1670), 1, + sym_cell_path, + STATE(1754), 1, sym_comment, - ACTIONS(1575), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1822), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224720,15 +230317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1587), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1826), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224740,24 +230329,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224766,20 +230367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18447] = 8, + [19279] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1225), 1, - sym_cell_path, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1717), 1, + STATE(1680), 1, + sym_cell_path, + STATE(1755), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1011), 8, + ACTIONS(1836), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224788,7 +230389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 49, + ACTIONS(1838), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224838,19 +230439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18527] = 4, + [19359] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1718), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1684), 1, + sym_cell_path, + STATE(1756), 1, sym_comment, - ACTIONS(2453), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1840), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224859,14 +230461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2455), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1842), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224878,26 +230473,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224906,19 +230511,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18599] = 4, + [19439] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1719), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1688), 1, + sym_cell_path, + STATE(1757), 1, sym_comment, - ACTIONS(5014), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224927,14 +230533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5012), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1846), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224946,26 +230545,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224974,19 +230583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18671] = 4, + [19519] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1720), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1689), 1, + sym_cell_path, + STATE(1758), 1, sym_comment, - ACTIONS(5018), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1848), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224995,14 +230605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5016), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1850), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225014,26 +230617,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225042,19 +230655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18743] = 4, + [19599] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1721), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1690), 1, + sym_cell_path, + STATE(1759), 1, sym_comment, - ACTIONS(5022), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1852), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225063,14 +230677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5020), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1854), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225082,26 +230689,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225110,19 +230727,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18815] = 4, + [19679] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1722), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1691), 1, + sym_cell_path, + STATE(1760), 1, sym_comment, - ACTIONS(5026), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1856), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225131,45 +230749,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5024), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(1858), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225178,19 +230799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18887] = 4, + [19759] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1723), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1697), 1, + sym_cell_path, + STATE(1761), 1, sym_comment, - ACTIONS(5030), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1860), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225199,14 +230821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5028), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1862), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225218,26 +230833,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225246,20 +230871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18959] = 8, + [19839] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1240), 1, + STATE(1570), 1, + sym_path, + STATE(1698), 1, sym_cell_path, - STATE(1724), 1, + STATE(1762), 1, sym_comment, - STATE(1926), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - ACTIONS(1011), 8, + ACTIONS(1864), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225268,8 +230893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 49, - ts_builtin_sym_end, + ACTIONS(1866), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225281,7 +230905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -225318,123 +230943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19039] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(1725), 1, - sym_comment, - STATE(2277), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5607), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19183] = 4, + [19919] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1726), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1700), 1, + sym_cell_path, + STATE(1763), 1, sym_comment, - ACTIONS(5036), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1868), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225443,14 +230965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5034), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1870), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225462,26 +230977,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225490,19 +231015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19255] = 4, + [19999] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1727), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1701), 1, + sym_cell_path, + STATE(1764), 1, sym_comment, - ACTIONS(5040), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1872), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225511,14 +231037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5038), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1874), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225530,26 +231049,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225558,19 +231087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19327] = 4, + [20079] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1728), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1703), 1, + sym_cell_path, + STATE(1765), 1, sym_comment, - ACTIONS(5044), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1876), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225579,14 +231109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5042), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1878), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225598,26 +231121,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225626,19 +231159,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19399] = 4, + [20159] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1729), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1704), 1, + sym_cell_path, + STATE(1766), 1, sym_comment, - ACTIONS(5048), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1880), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225647,14 +231181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5046), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1882), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225666,26 +231193,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225694,436 +231231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19471] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(1730), 1, - sym_comment, - STATE(2329), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5569), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19615] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(1731), 1, - sym_comment, - STATE(2330), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5610), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19759] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(1732), 1, - sym_comment, - STATE(2331), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5611), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19903] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(4986), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(1733), 1, - sym_comment, - STATE(2332), 1, - sym__flag, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5523), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(3689), 2, - sym_short_flag, - sym_long_flag, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [20047] = 8, + [20239] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1680), 1, + STATE(1705), 1, sym_cell_path, - STATE(1734), 1, + STATE(1767), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1965), 8, + ACTIONS(1884), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226132,7 +231253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 49, + ACTIONS(1886), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226182,20 +231303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20127] = 8, + [20319] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1681), 1, + STATE(1707), 1, sym_cell_path, - STATE(1735), 1, + STATE(1768), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1957), 8, + ACTIONS(1888), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226204,7 +231325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 49, + ACTIONS(1890), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226254,20 +231375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20207] = 8, + [20399] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1684), 1, + STATE(1710), 1, sym_cell_path, - STATE(1736), 1, + STATE(1769), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1879), 8, + ACTIONS(1892), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226276,7 +231397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 49, + ACTIONS(1894), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226326,20 +231447,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20287] = 8, + [20479] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1686), 1, + STATE(1711), 1, sym_cell_path, - STATE(1737), 1, + STATE(1770), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1961), 8, + ACTIONS(1896), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226348,7 +231469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 49, + ACTIONS(1898), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226398,20 +231519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20367] = 8, + [20559] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1688), 1, + STATE(1713), 1, sym_cell_path, - STATE(1738), 1, + STATE(1771), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1829), 8, + ACTIONS(1900), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226420,7 +231541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1833), 49, + ACTIONS(1902), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226470,20 +231591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20447] = 8, + [20639] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1689), 1, + STATE(1715), 1, sym_cell_path, - STATE(1739), 1, + STATE(1772), 1, sym_comment, - STATE(1908), 1, + STATE(1942), 1, aux_sym_cell_path_repeat1, - ACTIONS(1835), 8, + ACTIONS(1904), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226492,7 +231613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 49, + ACTIONS(1906), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226542,20 +231663,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20527] = 8, + [20719] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(4956), 1, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1690), 1, + STATE(1558), 1, sym_cell_path, - STATE(1740), 1, + STATE(1773), 1, sym_comment, - STATE(1908), 1, + STATE(1794), 1, aux_sym_cell_path_repeat1, - ACTIONS(1839), 8, + STATE(2042), 1, + sym_path, + ACTIONS(1675), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1677), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20799] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1774), 1, + sym_comment, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226564,7 +231750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226577,7 +231763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -226614,20 +231803,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20607] = 8, + [20871] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, + STATE(1775), 1, + sym_comment, + ACTIONS(1038), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1040), 52, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1691), 1, - sym_cell_path, - STATE(1741), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20943] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1776), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1843), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226636,7 +231886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1845), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226649,7 +231899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -226686,20 +231939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20687] = 8, + [21015] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1692), 1, - sym_cell_path, - STATE(1742), 1, + STATE(1777), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1847), 8, + ACTIONS(2362), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226708,7 +231954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 49, + ACTIONS(2364), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226721,7 +231967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -226758,20 +232007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20767] = 8, + [21087] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1693), 1, - sym_cell_path, - STATE(1743), 1, + STATE(1778), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1851), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226780,7 +232022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1853), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226793,7 +232035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -226830,20 +232075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20847] = 8, + [21159] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1694), 1, - sym_cell_path, - STATE(1744), 1, + STATE(1779), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1855), 8, + ACTIONS(2366), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226852,7 +232090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 49, + ACTIONS(2368), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226865,7 +232103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -226902,20 +232143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20927] = 8, + [21231] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1695), 1, - sym_cell_path, - STATE(1745), 1, + STATE(1780), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1859), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226924,7 +232158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226937,7 +232171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -226974,20 +232211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21007] = 8, + [21303] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1696), 1, - sym_cell_path, - STATE(1746), 1, + STATE(1781), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1863), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226996,7 +232226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1865), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227009,7 +232239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -227046,20 +232279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21087] = 8, + [21375] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1697), 1, - sym_cell_path, - STATE(1747), 1, + STATE(1782), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1867), 8, + ACTIONS(2473), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227068,7 +232300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 49, + aux_sym_unquoted_token1, + ACTIONS(2475), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227080,36 +232319,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227118,20 +232347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21167] = 8, + [21447] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1699), 1, - sym_cell_path, - STATE(1748), 1, + STATE(1783), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1875), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227140,7 +232362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227153,7 +232375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -227190,20 +232415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21247] = 8, + [21519] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1700), 1, - sym_cell_path, - STATE(1749), 1, + STATE(1784), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1969), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227212,7 +232430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227225,7 +232443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -227262,20 +232483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21327] = 8, + [21591] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1701), 1, - sym_cell_path, - STATE(1750), 1, + STATE(1785), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1890), 8, + ACTIONS(1991), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227284,7 +232504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1892), 49, + aux_sym_unquoted_token1, + ACTIONS(1997), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227296,36 +232523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227334,20 +232551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21407] = 8, + [21663] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1702), 1, - sym_cell_path, - STATE(1751), 1, + STATE(1786), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1894), 8, + ACTIONS(4844), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227356,7 +232566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1896), 49, + ACTIONS(4842), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227369,7 +232579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -227406,20 +232619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21487] = 8, + [21735] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1703), 1, - sym_cell_path, - STATE(1752), 1, + STATE(1787), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1937), 8, + ACTIONS(1999), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227428,7 +232640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 49, + aux_sym_unquoted_token1, + ACTIONS(2005), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227440,36 +232659,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227478,20 +232687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21567] = 8, + [21807] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1704), 1, - sym_cell_path, - STATE(1753), 1, + STATE(1788), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1945), 8, + ACTIONS(2007), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227500,7 +232708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 49, + aux_sym_unquoted_token1, + ACTIONS(2013), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227512,36 +232727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227550,20 +232755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21647] = 8, + [21879] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1705), 1, - sym_cell_path, - STATE(1754), 1, + STATE(1789), 1, sym_comment, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1949), 8, + ACTIONS(4894), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227572,7 +232777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 49, + aux_sym_unquoted_token1, + ACTIONS(4892), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227584,36 +232797,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227622,12 +232823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21727] = 4, + [21951] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1755), 1, + STATE(1790), 1, sym_comment, - ACTIONS(1076), 16, + ACTIONS(2388), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -227644,7 +232845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1078), 45, + ACTIONS(2390), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -227666,7 +232867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -227690,21 +232891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21799] = 8, + [22023] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1756), 1, + STATE(1791), 1, sym_comment, - STATE(1917), 1, - aux_sym_cell_path_repeat1, - STATE(1952), 1, - sym_cell_path, - STATE(2141), 1, - sym_path, - ACTIONS(1835), 9, - sym__newline, + ACTIONS(5059), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227713,7 +232912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 48, + aux_sym_unquoted_token1, + ACTIONS(5056), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227724,36 +232931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227762,12 +232959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21879] = 4, + [22095] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1792), 1, sym_comment, - ACTIONS(2501), 16, + ACTIONS(2477), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -227784,8 +232981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2503), 44, - ts_builtin_sym_end, + ACTIONS(2479), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -227805,8 +233001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -227829,18 +233027,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, - [21950] = 7, + [22167] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1758), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1793), 1, sym_comment, - STATE(1991), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2402), 1, + sym_cell_path, + ACTIONS(1840), 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(1842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22246] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1794), 1, + sym_comment, + STATE(1809), 1, + aux_sym_cell_path_repeat1, + STATE(2042), 1, + sym_path, + ACTIONS(1011), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -227850,7 +233119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(1013), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227862,7 +233131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -227899,20 +233168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22027] = 8, + [22323] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1759), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1795), 1, sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2372), 1, - sym_cell_path, - ACTIONS(1879), 8, + STATE(2092), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5062), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227921,9 +233189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227934,34 +233200,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227970,18 +233238,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, - [22106] = 7, + [22400] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1760), 1, + STATE(1796), 1, sym_comment, - STATE(1999), 1, + STATE(2093), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -227991,7 +233259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228003,7 +233271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228040,18 +233308,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, - [22183] = 7, + [22477] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1761), 1, + STATE(1797), 1, sym_comment, - STATE(1992), 1, + STATE(2097), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228061,7 +233329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228073,7 +233341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228110,18 +233378,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, - [22260] = 7, + [22554] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1762), 1, + STATE(1798), 1, sym_comment, - STATE(2006), 1, + STATE(2098), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228131,7 +233399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228143,7 +233411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228180,18 +233448,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, - [22337] = 7, + [22631] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1763), 1, + STATE(1799), 1, sym_comment, - STATE(2001), 1, + STATE(2099), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228201,7 +233469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228213,7 +233481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228250,18 +233518,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22414] = 7, + [22708] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1800), 1, + sym_comment, + ACTIONS(2458), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2460), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22779] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1764), 1, + STATE(1801), 1, sym_comment, - STATE(2015), 1, + STATE(2100), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228271,7 +233606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228283,7 +233618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228320,18 +233655,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, - [22491] = 7, + [22856] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1765), 1, + STATE(1802), 1, sym_comment, - STATE(2007), 1, + STATE(2101), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228341,7 +233676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228353,7 +233688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228390,18 +233725,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, - [22568] = 7, + [22933] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1766), 1, + STATE(1803), 1, sym_comment, - STATE(2024), 1, + STATE(2102), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228411,7 +233746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228423,7 +233758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228460,18 +233795,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22645] = 7, + [23010] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1804), 1, + sym_comment, + ACTIONS(1675), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1677), 51, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23081] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1805), 1, + sym_comment, + ACTIONS(1034), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1036), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1806), 1, + sym_comment, + ACTIONS(2380), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_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), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23223] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1767), 1, + STATE(1807), 1, sym_comment, - STATE(2008), 1, + STATE(2103), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228481,7 +234017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228493,7 +234029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228530,12 +234066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22722] = 4, + [23300] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1808), 1, sym_comment, - ACTIONS(4808), 16, + ACTIONS(2384), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228552,7 +234088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2671), 44, + ACTIONS(2386), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228572,9 +234109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228597,18 +234133,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, - [22793] = 7, + [23371] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1769), 1, + ACTIONS(5066), 1, + anon_sym_DOT, + STATE(2042), 1, + sym_path, + STATE(1809), 2, sym_comment, - STATE(2033), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228618,7 +234153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(1017), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228630,7 +234165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228667,12 +234202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22870] = 4, + [23446] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1770), 1, + STATE(1810), 1, sym_comment, - ACTIONS(4892), 16, + ACTIONS(5004), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228689,7 +234224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4890), 44, + ACTIONS(5002), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228709,9 +234245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228734,18 +234269,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, - [22941] = 7, + [23517] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1771), 1, + STATE(1811), 1, sym_comment, - STATE(2038), 1, + STATE(2174), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -228755,7 +234290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228767,7 +234302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -228804,13 +234339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23018] = 4, + [23594] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1812), 1, sym_comment, - ACTIONS(4888), 9, - sym__newline, + ACTIONS(2141), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228819,7 +234354,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(4886), 51, + ACTIONS(2143), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228831,38 +234367,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228871,20 +234406,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23089] = 8, + [23665] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1773), 1, + STATE(1813), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2355), 1, + STATE(2416), 1, sym_cell_path, - ACTIONS(1957), 8, + ACTIONS(1864), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228893,7 +234428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 48, + ACTIONS(1866), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -228942,20 +234477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23168] = 8, + [23744] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1085), 1, - anon_sym_DOT_DOT2, - ACTIONS(4552), 1, - aux_sym_record_entry_token1, - STATE(1774), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1814), 1, sym_comment, - ACTIONS(1087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4818), 9, - sym__newline, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2417), 1, + sym_cell_path, + ACTIONS(1868), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228964,7 +234499,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(4816), 19, + ACTIONS(1870), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228975,16 +234512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4820), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -229013,68 +234540,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [23247] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1775), 1, - sym_comment, - STATE(2017), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229083,19 +234548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23324] = 4, + [23823] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1776), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1815), 1, sym_comment, - ACTIONS(4979), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2418), 1, + sym_cell_path, + ACTIONS(1872), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229104,74 +234570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4976), 44, + ACTIONS(1874), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23395] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1777), 1, - sym_comment, - STATE(2025), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229182,36 +234583,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229220,19 +234619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23472] = 4, + [23902] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1778), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1816), 1, sym_comment, - ACTIONS(2061), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2419), 1, + sym_cell_path, + ACTIONS(1876), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229241,15 +234641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2067), 44, + ACTIONS(1878), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229261,24 +234654,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229287,20 +234690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23543] = 8, + [23981] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1779), 1, + STATE(1817), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2376), 1, + STATE(2420), 1, sym_cell_path, - ACTIONS(1847), 8, + ACTIONS(1880), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229309,7 +234712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 48, + ACTIONS(1882), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -229358,20 +234761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23622] = 8, + [24060] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1780), 1, + STATE(1818), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2343), 1, + STATE(2421), 1, sym_cell_path, - ACTIONS(1851), 8, + ACTIONS(1884), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229380,7 +234783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1853), 48, + ACTIONS(1886), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -229429,20 +234832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23701] = 8, + [24139] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1781), 1, + STATE(1819), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2388), 1, + STATE(2018), 1, sym_cell_path, - ACTIONS(1855), 8, + STATE(2107), 1, + sym_path, + ACTIONS(1641), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229451,7 +234854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 48, + ACTIONS(1645), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -229500,86 +234903,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, - [23780] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_LBRACK2, - STATE(1782), 1, - sym_comment, - ACTIONS(2303), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2307), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23853] = 7, + [24218] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1783), 1, + STATE(1820), 1, sym_comment, - STATE(2026), 1, + STATE(2177), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -229589,7 +234924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229601,7 +234936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -229638,12 +234973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23930] = 4, + [24295] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1784), 1, + STATE(1821), 1, sym_comment, - ACTIONS(4706), 16, + ACTIONS(4736), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -229660,7 +234995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4704), 44, + ACTIONS(4734), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -229682,7 +235017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -229705,19 +235040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24001] = 4, + [24366] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1822), 1, sym_comment, - ACTIONS(2497), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4884), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229726,16 +235055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2499), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(4882), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229746,24 +235066,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229772,19 +235107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24072] = 4, + [24437] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1786), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1823), 1, sym_comment, - ACTIONS(5014), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2182), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5069), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229793,16 +235128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5012), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229813,24 +235139,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229839,19 +235177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24143] = 4, + [24514] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1824), 1, sym_comment, - ACTIONS(2465), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2186), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5069), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229860,16 +235198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2467), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229880,24 +235209,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229906,12 +235247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24214] = 4, + [24591] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1825), 1, sym_comment, - ACTIONS(2469), 16, + ACTIONS(5030), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -229928,7 +235269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 44, + ACTIONS(5028), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -229950,7 +235291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -229973,12 +235314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24285] = 4, + [24662] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1826), 1, sym_comment, - ACTIONS(2473), 16, + ACTIONS(5034), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -229995,7 +235336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2475), 44, + ACTIONS(5032), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230017,7 +235358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230040,12 +235381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24356] = 4, + [24733] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1790), 1, + STATE(1827), 1, sym_comment, - ACTIONS(4797), 16, + ACTIONS(1991), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -230062,7 +235403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4795), 44, + ACTIONS(1997), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230084,7 +235425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230107,153 +235448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24427] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1791), 1, - sym_comment, - STATE(2042), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24504] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1792), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2375), 1, - sym_cell_path, - ACTIONS(1843), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1845), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24583] = 4, + [24804] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1828), 1, sym_comment, - ACTIONS(5018), 16, + ACTIONS(2517), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -230270,7 +235470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5016), 44, + ACTIONS(2519), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230292,7 +235492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230315,12 +235515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24654] = 4, + [24875] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1794), 1, + STATE(1829), 1, sym_comment, - ACTIONS(5022), 16, + ACTIONS(4840), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -230337,7 +235537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5020), 44, + ACTIONS(4838), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230359,7 +235559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230382,160 +235582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24725] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1795), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2371), 1, - sym_cell_path, - ACTIONS(1835), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1837), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24804] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1796), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2399), 1, - sym_cell_path, - ACTIONS(1839), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1841), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24883] = 7, + [24946] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1797), 1, + STATE(1830), 1, sym_comment, - STATE(2051), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(4894), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -230545,7 +235597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(4892), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230557,7 +235609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -230594,12 +235649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24960] = 4, + [25017] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1798), 1, + STATE(1831), 1, sym_comment, - ACTIONS(5026), 16, + ACTIONS(2521), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -230616,7 +235671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5024), 44, + ACTIONS(2523), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230638,7 +235693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230661,12 +235716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25031] = 4, + [25088] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1832), 1, sym_comment, - ACTIONS(5030), 16, + ACTIONS(2348), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -230683,7 +235738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5028), 44, + ACTIONS(2350), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230705,7 +235760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230728,90 +235783,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25102] = 7, + [25159] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1800), 1, - sym_comment, - STATE(2052), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [25179] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1801), 1, + STATE(1833), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2428), 1, + STATE(2425), 1, sym_cell_path, - ACTIONS(1965), 8, + ACTIONS(1888), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230820,7 +235805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 48, + ACTIONS(1890), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -230869,20 +235854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25258] = 8, + [25238] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1802), 1, + STATE(1834), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2383), 1, + STATE(2426), 1, sym_cell_path, - ACTIONS(1859), 8, + ACTIONS(1892), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230891,7 +235876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 48, + ACTIONS(1894), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -230940,20 +235925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25337] = 8, + [25317] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1803), 1, + STATE(1835), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2385), 1, + STATE(2427), 1, sym_cell_path, - ACTIONS(1863), 8, + ACTIONS(1896), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230962,7 +235947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1865), 48, + ACTIONS(1898), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231011,20 +235996,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25416] = 8, + [25396] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1804), 1, + STATE(1836), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2390), 1, + STATE(2428), 1, sym_cell_path, - ACTIONS(1867), 8, + ACTIONS(1900), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231033,7 +236018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 48, + ACTIONS(1902), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231082,20 +236067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25495] = 8, + [25475] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1805), 1, + STATE(1837), 1, sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2429), 1, - sym_cell_path, - ACTIONS(1871), 8, + ACTIONS(1832), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231104,8 +236088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 48, + aux_sym_unquoted_token1, + ACTIONS(1834), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231117,34 +236108,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231153,20 +236134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25574] = 8, + [25546] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1806), 1, + STATE(1838), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2393), 1, + STATE(2423), 1, sym_cell_path, - ACTIONS(1875), 8, + ACTIONS(1912), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231175,7 +236156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 48, + ACTIONS(1914), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231224,19 +236205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25653] = 4, + [25625] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1807), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1839), 1, sym_comment, - ACTIONS(4840), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2028), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5069), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231245,15 +236226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4838), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231264,25 +236237,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231291,12 +236275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25724] = 4, + [25702] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1840), 1, sym_comment, - ACTIONS(4866), 16, + ACTIONS(1848), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231313,7 +236297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4864), 44, + ACTIONS(1850), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231333,9 +236318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -231358,20 +236342,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25795] = 8, + [25773] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1841), 1, + sym_comment, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2429), 1, + sym_cell_path, + ACTIONS(1904), 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(1906), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25852] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1809), 1, + STATE(1842), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2397), 1, + STATE(2010), 1, sym_cell_path, - ACTIONS(1969), 8, + STATE(2107), 1, + sym_path, + ACTIONS(1675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231380,7 +236435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 48, + ACTIONS(1677), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231429,20 +236484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25874] = 8, + [25931] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1810), 1, + STATE(1843), 1, sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(2107), 1, sym_path, - STATE(2380), 1, + STATE(2408), 1, sym_cell_path, - ACTIONS(1961), 8, + ACTIONS(1822), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231451,7 +236506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 48, + ACTIONS(1826), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231500,12 +236555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25953] = 4, + [26010] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1844), 1, sym_comment, - ACTIONS(5036), 16, + ACTIONS(2029), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231522,7 +236577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5034), 44, + ACTIONS(2031), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -231544,7 +236599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -231567,19 +236622,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26024] = 4, + [26081] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1812), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1845), 1, sym_comment, - ACTIONS(5040), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2433), 1, + sym_cell_path, + ACTIONS(1828), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231588,15 +236644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5038), 44, + ACTIONS(1830), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231608,24 +236657,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231634,18 +236693,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, - [26095] = 7, + [26160] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1813), 1, + STATE(1846), 1, sym_comment, - STATE(2019), 1, + STATE(2179), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -231655,7 +236714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231667,7 +236726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -231704,86 +236763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26172] = 4, + [26237] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1814), 1, + ACTIONS(1079), 1, + anon_sym_DOT_DOT2, + ACTIONS(4572), 1, + aux_sym_record_entry_token1, + STATE(1847), 1, sym_comment, - ACTIONS(5044), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5042), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4798), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26243] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1815), 1, - sym_comment, - ACTIONS(5048), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231792,16 +236785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5046), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(4796), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231812,24 +236796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231838,12 +236805,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, - [26314] = 4, + ACTIONS(4800), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [26316] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1848), 1, sym_comment, - ACTIONS(1643), 16, + ACTIONS(2412), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231860,7 +236856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1645), 44, + ACTIONS(2414), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -231882,7 +236878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -231905,18 +236901,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, - [26385] = 7, + [26387] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1817), 1, + STATE(1849), 1, sym_comment, - STATE(2000), 1, + STATE(2109), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -231926,7 +236922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231938,7 +236934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -231975,219 +236971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26462] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1818), 1, - sym_comment, - ACTIONS(1631), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1633), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26533] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1819), 1, - sym_comment, - ACTIONS(1705), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1707), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26604] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1820), 1, - sym_comment, - ACTIONS(1755), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1757), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26675] = 7, + [26464] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1821), 1, + ACTIONS(5077), 1, + anon_sym_LBRACK2, + STATE(1850), 1, sym_comment, - STATE(2054), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(2313), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -232197,7 +236988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(2317), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -232209,7 +237000,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -232246,79 +237039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26752] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1822), 1, - sym_comment, - ACTIONS(1076), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1078), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26823] = 4, + [26537] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1823), 1, + STATE(1851), 1, sym_comment, - ACTIONS(2449), 16, + ACTIONS(2416), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232335,7 +237061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2451), 44, + ACTIONS(2418), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232357,7 +237083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232380,12 +237106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26894] = 4, + [26608] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1852), 1, sym_comment, - ACTIONS(2368), 16, + ACTIONS(2388), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232402,7 +237128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2370), 44, + ACTIONS(2390), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232424,7 +237150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232447,82 +237173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26965] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1825), 1, - sym_comment, - STATE(2028), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27042] = 4, + [26679] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1853), 1, sym_comment, - ACTIONS(2035), 16, + ACTIONS(1864), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232539,7 +237195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2041), 44, + ACTIONS(1866), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232561,7 +237217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232584,12 +237240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27113] = 4, + [26750] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1854), 1, sym_comment, - ACTIONS(2043), 16, + ACTIONS(2466), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232606,7 +237262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2049), 44, + ACTIONS(2468), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232628,7 +237284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232651,12 +237307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27184] = 4, + [26821] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1828), 1, + STATE(1855), 1, sym_comment, - ACTIONS(2051), 16, + ACTIONS(2033), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232673,7 +237329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2057), 44, + ACTIONS(2035), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232695,7 +237351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232718,88 +237374,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, - [27255] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1829), 1, - sym_comment, - STATE(2014), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27332] = 7, + [26892] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1830), 1, + STATE(1856), 1, sym_comment, - STATE(2109), 1, + STATE(2045), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -232809,7 +237395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -232821,7 +237407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -232858,12 +237444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27409] = 4, + [26969] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1857), 1, sym_comment, - ACTIONS(1961), 16, + ACTIONS(1667), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232880,7 +237466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1963), 44, + ACTIONS(1669), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232902,7 +237488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232925,12 +237511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27480] = 4, + [27040] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1832), 1, + STATE(1858), 1, sym_comment, - ACTIONS(2355), 16, + ACTIONS(5059), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232947,7 +237533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2357), 44, + ACTIONS(5056), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232969,7 +237555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232992,12 +237578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27551] = 4, + [27111] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1859), 1, sym_comment, - ACTIONS(2380), 16, + ACTIONS(1872), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233014,7 +237600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2382), 44, + ACTIONS(1874), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233036,7 +237622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -233059,302 +237645,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, - [27622] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1834), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2408), 1, - sym_cell_path, - ACTIONS(1890), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1892), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27701] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1835), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2410), 1, - sym_cell_path, - ACTIONS(1894), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1896), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27780] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1836), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2415), 1, - sym_cell_path, - ACTIONS(1937), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1939), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27859] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1837), 1, - sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2419), 1, - sym_cell_path, - ACTIONS(1945), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1947), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27938] = 7, + [27182] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1838), 1, + STATE(1860), 1, sym_comment, - STATE(2136), 1, + STATE(2115), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -233364,7 +237666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233376,7 +237678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -233413,79 +237715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28015] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1839), 1, - sym_comment, - ACTIONS(2453), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2455), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28086] = 4, + [27259] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1861), 1, sym_comment, - ACTIONS(2457), 16, + ACTIONS(1659), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233502,7 +237737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2459), 44, + ACTIONS(1661), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233524,7 +237759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -233547,12 +237782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28157] = 4, + [27330] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1862), 1, sym_comment, - ACTIONS(2392), 16, + ACTIONS(1876), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233569,7 +237804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2394), 44, + ACTIONS(1878), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233591,7 +237826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -233614,18 +237849,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, - [28228] = 7, + [27401] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1842), 1, + STATE(1863), 1, sym_comment, - STATE(2016), 1, + STATE(2078), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -233635,7 +237870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233647,7 +237882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -233684,152 +237919,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, - [28305] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1843), 1, - sym_comment, - ACTIONS(2396), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_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), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28376] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1844), 1, - sym_comment, - ACTIONS(1843), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1845), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28447] = 7, + [27478] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1845), 1, + STATE(1864), 1, sym_comment, - STATE(2046), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -233839,7 +237940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233851,7 +237952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -233888,12 +237989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28524] = 4, + [27555] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1846), 1, + STATE(1865), 1, sym_comment, - ACTIONS(2400), 16, + ACTIONS(1822), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233910,7 +238011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2402), 44, + ACTIONS(1826), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233932,7 +238033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -233955,12 +238056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28595] = 4, + [27626] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1866), 1, sym_comment, - ACTIONS(2404), 16, + ACTIONS(1721), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233977,7 +238078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2406), 44, + ACTIONS(1723), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233999,7 +238100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234022,12 +238123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28666] = 4, + [27697] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1848), 1, + STATE(1867), 1, sym_comment, - ACTIONS(1859), 16, + ACTIONS(2328), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234044,7 +238145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1861), 44, + ACTIONS(2330), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234066,7 +238167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234089,18 +238190,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, - [28737] = 7, + [27768] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1849), 1, + STATE(1868), 1, sym_comment, - STATE(2113), 1, + STATE(2029), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -234110,7 +238211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234122,7 +238223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -234159,86 +238260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28814] = 4, + [27845] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1850), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1869), 1, sym_comment, - ACTIONS(1867), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1869), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2126), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5073), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28885] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1851), 1, - sym_comment, - ACTIONS(1871), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234247,16 +238281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1873), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234267,24 +238292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234293,12 +238330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28956] = 4, + [27922] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1870), 1, sym_comment, - ACTIONS(2408), 16, + ACTIONS(1058), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234315,7 +238352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2410), 44, + ACTIONS(1060), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234337,7 +238374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234360,12 +238397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29027] = 4, + [27993] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1853), 1, + STATE(1871), 1, sym_comment, - ACTIONS(1890), 16, + ACTIONS(1738), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234382,7 +238419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1892), 44, + ACTIONS(1740), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234404,7 +238441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234427,18 +238464,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, - [29098] = 7, + [28064] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1854), 1, + STATE(1872), 1, sym_comment, - STATE(2059), 1, + STATE(2030), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -234448,7 +238485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234460,7 +238497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -234497,12 +238534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29175] = 4, + [28141] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1855), 1, + STATE(1873), 1, sym_comment, - ACTIONS(2412), 16, + ACTIONS(4992), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234519,7 +238556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2414), 44, + ACTIONS(4990), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234541,7 +238578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234564,12 +238601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29246] = 4, + [28212] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1874), 1, sym_comment, - ACTIONS(2416), 16, + ACTIONS(2477), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234586,7 +238623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2418), 44, + ACTIONS(2479), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234608,7 +238645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234631,12 +238668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29317] = 4, + [28283] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1875), 1, sym_comment, - ACTIONS(1894), 16, + ACTIONS(2481), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234653,7 +238690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1896), 44, + ACTIONS(2483), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234675,7 +238712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234698,12 +238735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29388] = 4, + [28354] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1876), 1, sym_comment, - ACTIONS(1945), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234720,7 +238757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1947), 44, + ACTIONS(2487), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234742,7 +238779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -234765,86 +238802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29459] = 4, + [28425] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1859), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1877), 1, sym_comment, - ACTIONS(2420), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_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), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2032), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5079), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29530] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1860), 1, - sym_comment, - ACTIONS(2424), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234853,16 +238823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2426), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234873,91 +238834,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29601] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1861), 1, - sym_comment, - ACTIONS(1949), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1951), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234966,12 +238872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29672] = 4, + [28502] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1878), 1, sym_comment, - ACTIONS(2428), 16, + ACTIONS(2420), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234988,7 +238894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2430), 44, + ACTIONS(2422), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235010,7 +238916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235033,12 +238939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29743] = 4, + [28573] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1863), 1, + STATE(1879), 1, sym_comment, - ACTIONS(2432), 16, + ACTIONS(1888), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235055,7 +238961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2434), 44, + ACTIONS(1890), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235077,7 +238983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235100,82 +239006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29814] = 7, + [28644] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1864), 1, - sym_comment, - STATE(2063), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29891] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1865), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1575), 16, + ACTIONS(4996), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235192,7 +239028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1587), 44, + ACTIONS(4994), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235214,7 +239050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235237,12 +239073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29962] = 4, + [28715] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1881), 1, sym_comment, - ACTIONS(2436), 16, + ACTIONS(2434), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235259,7 +239095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2438), 44, + ACTIONS(2436), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235281,7 +239117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235304,19 +239140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30033] = 7, + [28786] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1867), 1, + STATE(1882), 1, sym_comment, - STATE(2064), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, - sym__newline, + ACTIONS(2438), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235325,7 +239161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + aux_sym_unquoted_token1, + ACTIONS(2440), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235336,36 +239181,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235374,20 +239207,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, - [30110] = 8, + [28857] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1868), 1, + STATE(1883), 1, sym_comment, - STATE(1926), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(1953), 1, - sym_cell_path, - STATE(2126), 1, + STATE(2107), 1, sym_path, - ACTIONS(1686), 8, + ACTIONS(1011), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235396,7 +239227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1688), 48, + ACTIONS(1013), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -235409,6 +239240,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_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235445,18 +239277,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, - [30189] = 7, + [28934] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1869), 1, + STATE(1884), 1, sym_comment, - STATE(2066), 1, + STATE(2090), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -235466,7 +239298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235478,7 +239310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -235515,12 +239347,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, - [30266] = 4, + [29011] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1870), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1885), 1, + sym_comment, + STATE(2091), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5062), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5064), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29088] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1886), 1, sym_comment, - ACTIONS(1879), 16, + ACTIONS(5018), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235537,7 +239439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1881), 44, + ACTIONS(5016), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235559,7 +239461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235582,19 +239484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30337] = 7, + [29159] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1871), 1, + STATE(1887), 1, sym_comment, - STATE(2137), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, - sym__newline, + ACTIONS(1070), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235603,7 +239505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + aux_sym_unquoted_token1, + ACTIONS(1072), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235614,36 +239525,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235652,18 +239551,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, - [30414] = 7, + [29230] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1872), 1, + STATE(1888), 1, sym_comment, - STATE(1997), 1, + STATE(2035), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -235673,7 +239572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235685,7 +239584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -235722,20 +239621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30491] = 8, + [29307] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1873), 1, + STATE(1889), 1, sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(1982), 1, - sym_cell_path, - STATE(2126), 1, - sym_path, - ACTIONS(1625), 8, + ACTIONS(2007), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235744,8 +239642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1629), 48, + aux_sym_unquoted_token1, + ACTIONS(2013), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235757,34 +239662,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235793,12 +239688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30570] = 4, + [29378] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2019), 16, + ACTIONS(1892), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235815,7 +239710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2021), 44, + ACTIONS(1894), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235837,7 +239732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235860,18 +239755,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, - [30641] = 7, + [29449] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1875), 1, + STATE(1891), 1, sym_comment, - STATE(2100), 1, + STATE(2038), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -235881,7 +239776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235893,7 +239788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -235930,87 +239825,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30718] = 4, + [29526] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1876), 1, - sym_comment, - ACTIONS(2443), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2445), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30789] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5012), 1, anon_sym_DOT, - STATE(1877), 1, - sym_comment, - STATE(1926), 1, + STATE(1883), 1, aux_sym_cell_path_repeat1, - STATE(2126), 1, + STATE(1892), 1, + sym_comment, + STATE(2107), 1, sym_path, - STATE(2426), 1, + STATE(2411), 1, sym_cell_path, - ACTIONS(1949), 8, + ACTIONS(1832), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236019,7 +239847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 48, + ACTIONS(1834), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -236068,12 +239896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30868] = 4, + [29605] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2133), 16, + ACTIONS(4884), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -236090,7 +239918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2135), 44, + ACTIONS(4882), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -236112,7 +239940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -236135,18 +239963,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, - [30939] = 7, + [29676] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1879), 1, + STATE(1894), 1, sym_comment, - STATE(2018), 1, + STATE(2041), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236156,7 +239984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236168,7 +239996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -236205,19 +240033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31016] = 7, + [29753] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1880), 1, + STATE(1895), 1, sym_comment, - STATE(2030), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, - sym__newline, + ACTIONS(4830), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236226,7 +240054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + aux_sym_unquoted_token1, + ACTIONS(4828), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236237,36 +240073,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236275,18 +240100,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, - [31093] = 7, + [29824] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1881), 1, + STATE(1896), 1, sym_comment, - STATE(2147), 1, + STATE(2047), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236296,7 +240121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236308,7 +240133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -236345,19 +240170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31170] = 7, + [29901] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1882), 1, + STATE(1897), 1, sym_comment, - STATE(2083), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, - sym__newline, + ACTIONS(4916), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236366,7 +240191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + aux_sym_unquoted_token1, + ACTIONS(4914), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236377,36 +240210,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236415,12 +240237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31247] = 4, + [29972] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1898), 1, sym_comment, - ACTIONS(1064), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -236437,7 +240259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1066), 44, + ACTIONS(2340), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -236459,7 +240281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -236482,18 +240304,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, - [31318] = 7, + [30043] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1884), 1, + STATE(1899), 1, sym_comment, - STATE(2077), 1, + STATE(2049), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236503,7 +240325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236515,7 +240337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -236552,18 +240374,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, - [31395] = 7, + [30120] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1885), 1, + STATE(1900), 1, sym_comment, - STATE(2020), 1, + STATE(2027), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236573,7 +240395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236585,7 +240407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -236622,19 +240444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31472] = 7, + [30197] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1886), 1, + STATE(1901), 1, sym_comment, - STATE(2140), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, - sym__newline, + ACTIONS(2019), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236643,7 +240465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + aux_sym_unquoted_token1, + ACTIONS(2025), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236654,36 +240485,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236692,19 +240511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31549] = 7, + [30268] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1887), 1, + STATE(1902), 1, sym_comment, - STATE(2069), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, - sym__newline, + ACTIONS(1999), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236713,7 +240532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + aux_sym_unquoted_token1, + ACTIONS(2005), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236724,36 +240552,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30339] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1903), 1, + sym_comment, + ACTIONS(1900), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1902), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236762,19 +240645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31626] = 7, + [30410] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1888), 1, + STATE(1904), 1, sym_comment, - STATE(2149), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, - sym__newline, + ACTIONS(2342), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236783,7 +240666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + aux_sym_unquoted_token1, + ACTIONS(2344), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236794,36 +240686,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236832,12 +240712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31703] = 4, + [30481] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1905), 1, sym_comment, - ACTIONS(4888), 16, + ACTIONS(2462), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -236854,7 +240734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4886), 44, + ACTIONS(2464), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -236876,7 +240756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -236899,19 +240779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31774] = 7, + [30552] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1890), 1, + STATE(1906), 1, sym_comment, - STATE(2005), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, - sym__newline, + ACTIONS(4894), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236920,7 +240800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + aux_sym_unquoted_token1, + ACTIONS(4892), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236931,36 +240820,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236969,18 +240846,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, - [31851] = 7, + [30623] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1891), 1, + STATE(1907), 1, sym_comment, - STATE(2039), 1, + STATE(2127), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5064), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236990,7 +240867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237002,7 +240879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237039,12 +240916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31928] = 4, + [30700] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1908), 1, sym_comment, - ACTIONS(4926), 16, + ACTIONS(2442), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -237061,7 +240938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4924), 44, + ACTIONS(2444), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -237083,7 +240960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -237106,17 +240983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31999] = 6, + [30771] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5068), 1, - anon_sym_DOT, - STATE(2126), 1, - sym_path, - STATE(1893), 2, + STATE(1909), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 8, + ACTIONS(2446), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237125,8 +241004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1023), 49, + aux_sym_unquoted_token1, + ACTIONS(2448), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237138,35 +241024,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237175,20 +241050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32074] = 8, + [30842] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1894), 1, + ACTIONS(1079), 1, + anon_sym_DOT_DOT2, + ACTIONS(1083), 1, + aux_sym_record_entry_token1, + STATE(1910), 1, sym_comment, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2368), 1, - sym_cell_path, - ACTIONS(1829), 8, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4798), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237197,9 +241072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1833), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(4796), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237210,6 +241083,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(4800), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -237238,27 +241121,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32153] = 8, + [30921] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1085), 1, - anon_sym_DOT_DOT2, - ACTIONS(1089), 1, - aux_sym_record_entry_token1, - STATE(1895), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1911), 1, sym_comment, - ACTIONS(1087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4818), 9, + STATE(2051), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237268,7 +241142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4816), 19, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237279,7 +241153,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237288,48 +241191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4820), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [32232] = 4, + [30998] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1912), 1, sym_comment, - ACTIONS(4964), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2054), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5079), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237338,16 +241212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4962), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237358,24 +241223,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237384,18 +241261,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, - [32303] = 7, + [31075] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1897), 1, + STATE(1913), 1, sym_comment, - STATE(2116), 1, + STATE(2057), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5054), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237405,7 +241282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237417,7 +241294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237454,12 +241331,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, - [32380] = 4, + [31152] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1914), 1, sym_comment, - ACTIONS(4926), 9, + STATE(2060), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237469,7 +241352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4924), 51, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237481,10 +241364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237521,12 +241401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32451] = 4, + [31229] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1915), 1, sym_comment, - ACTIONS(4968), 16, + ACTIONS(1904), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -237543,7 +241423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4966), 44, + ACTIONS(1906), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -237565,7 +241445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -237588,12 +241468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32522] = 4, + [31300] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1900), 1, + STATE(1916), 1, sym_comment, - ACTIONS(5008), 16, + ACTIONS(2450), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -237610,7 +241490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5006), 44, + ACTIONS(2452), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -237632,7 +241512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -237655,18 +241535,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32593] = 7, + [31371] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5083), 1, + anon_sym_DOT, + STATE(2107), 1, + sym_path, + STATE(1917), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 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(1017), 49, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31446] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1901), 1, + STATE(1918), 1, sym_comment, - STATE(2145), 1, + STATE(2114), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237676,7 +241625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237688,7 +241637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237725,18 +241674,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, - [32670] = 7, + [31523] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1902), 1, + STATE(1919), 1, sym_comment, - STATE(2114), 1, + STATE(2064), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237746,7 +241695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237758,7 +241707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237795,18 +241744,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, - [32747] = 7, + [31600] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1903), 1, + STATE(1920), 1, sym_comment, - STATE(2071), 1, + STATE(2067), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237816,7 +241765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237828,7 +241777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237865,13 +241814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32824] = 4, + [31677] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1625), 9, - anon_sym_DOT_DOT2, + ACTIONS(2454), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237880,7 +241835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1629), 51, + aux_sym_unquoted_token1, + ACTIONS(2456), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237892,38 +241855,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237932,18 +241881,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, - [32895] = 7, + [31748] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1905), 1, + STATE(1922), 1, sym_comment, - STATE(2084), 1, + STATE(2070), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237953,7 +241902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237965,7 +241914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -238002,13 +241951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32972] = 4, + [31825] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1923), 1, sym_comment, - ACTIONS(2137), 9, - anon_sym_DOT_DOT2, + STATE(2140), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5069), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238017,8 +241972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2139), 51, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238030,37 +241984,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238069,18 +242021,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, - [33043] = 7, + [31902] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1907), 1, + STATE(1924), 1, sym_comment, - STATE(2101), 1, + STATE(2150), 1, aux_sym_shebang_repeat1, - STATE(7338), 1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(5050), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -238090,7 +242042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238102,7 +242054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -238139,18 +242091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33120] = 7, + [31979] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1908), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1925), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 8, + STATE(2141), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5073), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238159,8 +242112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1019), 49, - sym__newline, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238172,35 +242124,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238209,17 +242161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33197] = 6, + [32056] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1909), 2, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1926), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 8, + STATE(2161), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5069), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238228,8 +242182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1023), 49, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238241,35 +242194,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238278,86 +242231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33272] = 4, + [32133] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1910), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1927), 1, sym_comment, - ACTIONS(1040), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1042), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2165), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5069), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33343] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1911), 1, - sym_comment, - ACTIONS(2364), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238366,16 +242252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2366), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238386,24 +242263,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238412,19 +242301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33414] = 4, + [32210] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1912), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1928), 1, sym_comment, - ACTIONS(2364), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2155), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5073), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238433,16 +242322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2366), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238453,24 +242333,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238479,19 +242371,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33485] = 4, + [32287] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1913), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(1929), 1, sym_comment, - ACTIONS(2477), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2107), 1, + sym_path, + STATE(2422), 1, + sym_cell_path, + ACTIONS(1836), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238500,15 +242393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2479), 44, + ACTIONS(1838), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238520,24 +242406,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238546,12 +242442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33556] = 4, + [32366] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1930), 1, sym_comment, - ACTIONS(1044), 16, + ACTIONS(2309), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238568,7 +242464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1046), 44, + ACTIONS(2311), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238590,7 +242486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238613,12 +242509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33627] = 4, + [32437] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1931), 1, sym_comment, - ACTIONS(2372), 16, + ACTIONS(1560), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238635,7 +242531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2374), 44, + ACTIONS(1572), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238657,7 +242553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238680,12 +242576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33698] = 4, + [32508] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1932), 1, sym_comment, - ACTIONS(2376), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238702,7 +242598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2378), 44, + ACTIONS(5020), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238724,7 +242620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238747,18 +242643,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, - [33769] = 7, + [32579] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(1917), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1933), 1, sym_comment, - STATE(1923), 1, - aux_sym_cell_path_repeat1, - STATE(2141), 1, - sym_path, - ACTIONS(1017), 9, + STATE(2164), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -238768,7 +242664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1019), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238780,7 +242676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -238817,12 +242713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33846] = 4, + [32656] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2481), 16, + ACTIONS(2489), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238839,7 +242735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2483), 44, + ACTIONS(2491), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238861,7 +242757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238884,12 +242780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33917] = 4, + [32727] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1919), 1, + STATE(1935), 1, sym_comment, - ACTIONS(2485), 16, + ACTIONS(2493), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238906,7 +242802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2487), 44, + ACTIONS(2495), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238928,7 +242824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238951,12 +242847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33988] = 4, + [32798] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1936), 1, sym_comment, - ACTIONS(1048), 16, + ACTIONS(2497), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238973,7 +242869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1050), 44, + ACTIONS(2499), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238995,7 +242891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239018,12 +242914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34059] = 4, + [32869] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1921), 1, + STATE(1937), 1, sym_comment, - ACTIONS(2384), 16, + ACTIONS(2501), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239040,7 +242936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2386), 44, + ACTIONS(2503), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -239062,7 +242958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239085,12 +242981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34130] = 4, + [32940] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1938), 1, sym_comment, - ACTIONS(2388), 16, + ACTIONS(2505), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239107,7 +243003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2390), 44, + ACTIONS(2507), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -239129,7 +243025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239152,18 +243048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34201] = 6, + [33011] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5074), 1, - anon_sym_DOT, - STATE(2141), 1, - sym_path, - STATE(1923), 2, + STATE(1939), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 9, - sym__newline, + ACTIONS(5026), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239172,7 +243069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1023), 48, + aux_sym_unquoted_token1, + ACTIONS(5024), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239183,36 +243089,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239221,12 +243115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34276] = 4, + [33082] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1924), 1, + STATE(1940), 1, sym_comment, - ACTIONS(2489), 16, + ACTIONS(2509), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239243,7 +243137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2491), 44, + ACTIONS(2511), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -239265,7 +243159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239288,12 +243182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34347] = 4, + [33153] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1941), 1, sym_comment, - ACTIONS(2493), 16, + ACTIONS(2513), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239310,7 +243204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2495), 44, + ACTIONS(2515), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -239332,7 +243226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239355,18 +243249,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, - [34418] = 7, + [33224] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5006), 1, anon_sym_DOT, - STATE(1893), 1, - aux_sym_cell_path_repeat1, - STATE(1926), 1, - sym_comment, - STATE(2126), 1, + STATE(1570), 1, sym_path, - ACTIONS(1017), 8, + STATE(1942), 1, + sym_comment, + STATE(1943), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1011), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239375,8 +243269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1019), 49, - ts_builtin_sym_end, + ACTIONS(1013), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239388,7 +243281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -239425,19 +243319,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, - [34495] = 7, + [33301] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1927), 1, + ACTIONS(5086), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1943), 2, sym_comment, - STATE(2053), 1, - aux_sym_shebang_repeat1, - STATE(7338), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5060), 9, - sym__newline, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239446,7 +243338,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(5062), 48, + ACTIONS(1017), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239458,35 +243351,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239495,214 +243388,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34572] = 4, + [33376] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1944), 1, sym_comment, - ACTIONS(5079), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5077), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1042), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1044), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, + 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, sym__str_single_quotes, sym__str_back_ticks, - [34642] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33447] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1945), 1, sym_comment, - ACTIONS(5083), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5081), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(2305), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2307), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, + 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, sym__str_single_quotes, sym__str_back_ticks, - [34712] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33518] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1946), 1, sym_comment, - ACTIONS(5087), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5085), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(2305), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2307), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, + 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, sym__str_single_quotes, sym__str_back_ticks, - [34782] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33589] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1931), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(1947), 1, sym_comment, - ACTIONS(2243), 16, + STATE(2107), 1, + sym_path, + STATE(2409), 1, + sym_cell_path, + ACTIONS(1848), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239711,15 +243611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2247), 41, + ACTIONS(1850), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239731,8 +243624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -239761,16 +243652,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [34856] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33668] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(1932), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(1948), 1, sym_comment, - ACTIONS(2251), 16, + STATE(2107), 1, + sym_path, + STATE(2410), 1, + sym_cell_path, + ACTIONS(1852), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239779,6 +243682,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1854), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239787,7 +243731,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, - ACTIONS(2253), 41, + [33747] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(1949), 1, + sym_comment, + STATE(2107), 1, + sym_path, + STATE(2413), 1, + sym_cell_path, + ACTIONS(1856), 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(1858), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239799,8 +243766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -239829,12 +243794,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [34930] = 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, + [33826] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1933), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(1950), 1, sym_comment, - ACTIONS(1044), 8, + STATE(2107), 1, + sym_path, + STATE(2414), 1, + sym_cell_path, + ACTIONS(1860), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239843,7 +243824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1046), 51, + ACTIONS(1862), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -239856,8 +243837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -239886,7 +243865,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239895,18 +243873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35000] = 6, + [33905] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1085), 1, - anon_sym_DOT_DOT2, - STATE(1934), 1, + STATE(1951), 1, sym_comment, - ACTIONS(1087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1076), 9, - sym__newline, + ACTIONS(5000), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239915,7 +243894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 47, + aux_sym_unquoted_token1, + ACTIONS(4998), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239926,35 +243914,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, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239963,13 +243940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35074] = 4, + [33976] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1952), 1, sym_comment, - ACTIONS(1575), 9, - sym__newline, + ACTIONS(5038), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239978,7 +243961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 50, + aux_sym_unquoted_token1, + ACTIONS(5036), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239989,38 +243981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240029,12 +244007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35144] = 4, - ACTIONS(3), 1, + [34047] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1953), 1, sym_comment, - ACTIONS(2259), 17, + ACTIONS(4988), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240043,6 +244028,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4986), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240051,8 +244074,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2261), 42, + [34118] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1954), 1, + sym_comment, + ACTIONS(4769), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2753), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240064,44 +244114,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [35214] = 4, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34189] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1955), 1, + sym_comment, + ACTIONS(1038), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1040), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34260] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1956), 1, sym_comment, - ACTIONS(2436), 9, - sym__newline, + ACTIONS(2362), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240110,7 +244229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2438), 50, + aux_sym_unquoted_token1, + ACTIONS(2364), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240121,38 +244249,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240161,17 +244275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35284] = 6, + [34331] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4624), 1, - anon_sym_DOT_DOT2, - STATE(1938), 1, + STATE(1957), 1, sym_comment, - ACTIONS(4626), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1076), 8, + ACTIONS(4860), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240180,8 +244296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 48, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(4858), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240193,34 +244315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240229,13 +244342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35358] = 4, + [34402] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1939), 1, + STATE(1958), 1, sym_comment, - ACTIONS(2368), 9, - sym__newline, + ACTIONS(2366), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240244,7 +244363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2370), 50, + aux_sym_unquoted_token1, + ACTIONS(2368), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240255,38 +244383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240295,86 +244409,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, - [35428] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT, - STATE(1940), 1, - sym_comment, - STATE(2068), 1, - aux_sym_cell_path_repeat1, - STATE(2425), 1, - sym_path, - STATE(2460), 1, - sym_cell_path, - ACTIONS(1011), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1013), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [35506] = 6, + [34473] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1941), 1, + STATE(1959), 1, sym_comment, - STATE(7570), 1, + STATE(2084), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240384,7 +244430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240396,7 +244442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -240433,17 +244479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35580] = 6, + [34550] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(1942), 1, + STATE(1960), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 9, - sym__newline, + ACTIONS(5042), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240452,7 +244500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4759), 48, + aux_sym_unquoted_token1, + ACTIONS(5040), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240463,36 +244520,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, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240501,16 +244546,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, - [35654] = 6, + [34621] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1943), 1, + STATE(1961), 1, sym_comment, - STATE(7570), 1, + STATE(2172), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(4783), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240520,7 +244567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4781), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240532,7 +244579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -240569,16 +244616,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, - [35728] = 6, + [34698] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(1944), 1, + STATE(1962), 1, sym_comment, - STATE(7570), 1, + STATE(2088), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, sym__expr_parenthesized_immediate, - ACTIONS(4771), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240588,7 +244637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4769), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240600,7 +244649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -240637,12 +244686,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, - [35802] = 4, + [34775] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1945), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1963), 1, sym_comment, - ACTIONS(2380), 9, + STATE(2089), 1, + aux_sym_shebang_repeat1, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240652,7 +244707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2382), 50, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240664,9 +244719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -240703,12 +244756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35872] = 4, + [34852] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1964), 1, sym_comment, - ACTIONS(1040), 8, + ACTIONS(2473), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240717,7 +244777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1042), 51, + aux_sym_unquoted_token1, + ACTIONS(2475), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240729,38 +244797,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_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240769,78 +244823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35942] = 4, + [34923] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1947), 1, - sym_comment, - ACTIONS(1044), 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(1046), 51, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + ACTIONS(5012), 1, anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36012] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1948), 1, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(1965), 1, sym_comment, - ACTIONS(1048), 8, + STATE(2107), 1, + sym_path, + STATE(2403), 1, + sym_cell_path, + ACTIONS(1844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240849,7 +244845,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(1050), 51, + ACTIONS(1846), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240861,9 +244858,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_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -240892,7 +244886,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240901,19 +244894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36082] = 4, + [35002] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1949), 1, + STATE(1966), 1, sym_comment, - ACTIONS(1048), 6, + ACTIONS(1034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1050), 53, + ACTIONS(1036), 53, anon_sym_EQ, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -240957,7 +244950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, @@ -240967,79 +244960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [36152] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1950), 1, - sym_comment, - ACTIONS(2392), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2394), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36222] = 4, - ACTIONS(247), 1, + [35072] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(1967), 1, sym_comment, - ACTIONS(2396), 9, - sym__newline, + ACTIONS(2237), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241048,49 +244978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2398), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241099,22 +244986,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, - [36292] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1952), 1, - sym_comment, - ACTIONS(1843), 9, + ACTIONS(2241), 41, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1845), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241126,73 +244999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36362] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1953), 1, - sym_comment, - ACTIONS(1625), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1629), 50, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -241221,158 +245028,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36432] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1954), 1, - sym_comment, - ACTIONS(2400), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2402), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36502] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1955), 1, - sym_comment, - ACTIONS(2404), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2406), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36572] = 6, + [35146] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(1956), 1, + STATE(1968), 1, sym_comment, - ACTIONS(2293), 16, + ACTIONS(2245), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241389,165 +245054,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(2297), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [36646] = 39, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_DOLLAR, - ACTIONS(471), 1, - anon_sym_DASH, - ACTIONS(481), 1, - aux_sym_ctrl_match_token1, - ACTIONS(487), 1, - aux_sym_expr_unary_token1, - ACTIONS(491), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(493), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(495), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(497), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(501), 1, - anon_sym_0b, - ACTIONS(505), 1, - sym_val_date, - ACTIONS(507), 1, - anon_sym_DQUOTE, - ACTIONS(511), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(513), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5093), 1, - anon_sym_null, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(5097), 1, - anon_sym_DOT_DOT, - STATE(1707), 1, - sym__str_double_quotes, - STATE(1937), 1, - sym__val_number, - STATE(1957), 1, - sym_comment, - STATE(1981), 1, - aux_sym_shebang_repeat1, - STATE(2218), 1, - sym__inter_single_quotes, - STATE(2219), 1, - sym__inter_double_quotes, - STATE(2236), 1, - sym__expr_unary_minus, - STATE(3422), 1, - sym__val_number_decimal, - STATE(3465), 1, - sym_val_variable, - STATE(3481), 1, - sym_expr_parenthesized, - STATE(3728), 1, - sym__expr_binary_expression_parenthesized, - STATE(3744), 1, - sym_val_range, - STATE(6271), 1, - sym__expression_parenthesized, - ACTIONS(503), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(509), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5091), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5099), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2310), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(499), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2168), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [36786] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1958), 1, - sym_comment, - ACTIONS(1867), 9, + ACTIONS(2247), 41, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1869), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241556,54 +245064,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36856] = 4, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [35220] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1959), 1, + STATE(1969), 1, sym_comment, - ACTIONS(1871), 9, + ACTIONS(2462), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241613,7 +245111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 50, + ACTIONS(2464), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241626,7 +245124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -241664,14 +245162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36926] = 5, + [35290] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5101), 1, - anon_sym_QMARK2, - STATE(1960), 1, + STATE(1970), 1, sym_comment, - ACTIONS(1034), 8, + ACTIONS(1038), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241680,7 +245176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 50, + ACTIONS(1040), 51, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241693,7 +245189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -241731,90 +245228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36998] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1085), 1, - anon_sym_DOT_DOT2, - ACTIONS(5103), 1, - sym__newline, - STATE(1961), 1, - sym_comment, - ACTIONS(1087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5110), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5106), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5108), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [37076] = 4, + [35360] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1962), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(1971), 1, sym_comment, - ACTIONS(5114), 6, + STATE(2125), 1, + aux_sym_cell_path_repeat1, + STATE(2436), 1, + sym_path, + STATE(2506), 1, + sym_cell_path, + ACTIONS(1641), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5112), 53, - anon_sym_EQ, + ACTIONS(1645), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -241854,10 +245288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, @@ -241867,13 +245298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [37146] = 4, + [35438] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1963), 1, + STATE(1972), 1, sym_comment, - ACTIONS(2408), 9, - sym__newline, + ACTIONS(1042), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241882,73 +245312,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(2410), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [37216] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1964), 1, - sym_comment, - ACTIONS(1890), 9, + ACTIONS(1044), 51, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1892), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241960,37 +245325,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241999,12 +245364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37286] = 4, + [35508] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1965), 1, + STATE(1973), 1, sym_comment, - ACTIONS(1048), 8, + ACTIONS(1038), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242013,8 +245378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1050), 51, - ts_builtin_sym_end, + ACTIONS(1040), 51, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242026,7 +245390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -242065,13 +245430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37356] = 4, + [35578] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1966), 1, + STATE(1974), 1, sym_comment, - ACTIONS(2412), 9, - sym__newline, + ACTIONS(1034), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242080,7 +245444,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(2414), 50, + ACTIONS(1036), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242092,37 +245457,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242131,14 +245496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37426] = 5, + [35648] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5116), 1, - anon_sym_QMARK2, - STATE(1967), 1, + STATE(1975), 1, sym_comment, - ACTIONS(1028), 8, + ACTIONS(1042), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242147,7 +245510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1030), 50, + ACTIONS(1044), 51, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242160,7 +245523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -242198,78 +245562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37498] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1968), 1, - sym_comment, - ACTIONS(2416), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2418), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [37568] = 4, + [35718] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1969), 1, + STATE(1976), 1, sym_comment, - ACTIONS(1894), 9, + ACTIONS(1848), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242279,7 +245577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1896), 50, + ACTIONS(1850), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242292,7 +245590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -242330,16 +245628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37638] = 6, + [35788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(1970), 1, + STATE(1977), 1, sym_comment, - ACTIONS(1076), 16, + ACTIONS(2253), 17, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242356,7 +245650,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(1078), 41, + aux_sym_unquoted_token4, + ACTIONS(2255), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242370,6 +245665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -242398,17 +245694,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [37712] = 7, - ACTIONS(247), 1, + [35858] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4624), 1, - anon_sym_DOT_DOT2, - STATE(1971), 1, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(1978), 1, sym_comment, - ACTIONS(4626), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4818), 8, + ACTIONS(1070), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242417,8 +245712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4816), 20, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1072), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242430,15 +245732,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4820), 28, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -242467,152 +245762,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [37788] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1972), 1, - sym_comment, - ACTIONS(1040), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1042), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [37858] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1973), 1, - sym_comment, - ACTIONS(1945), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1947), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [37928] = 4, + [35932] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1974), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(1979), 1, sym_comment, - ACTIONS(5120), 6, + STATE(2125), 1, + aux_sym_cell_path_repeat1, + STATE(2436), 1, + sym_path, + STATE(2504), 1, + sym_cell_path, + ACTIONS(1675), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5118), 53, - anon_sym_EQ, + ACTIONS(1677), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -242652,10 +245822,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, @@ -242665,78 +245832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [37998] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1975), 1, - sym_comment, - ACTIONS(2420), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2422), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38068] = 4, + [36010] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1976), 1, + STATE(1980), 1, sym_comment, - ACTIONS(2424), 9, + ACTIONS(2466), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242746,7 +245847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2426), 50, + ACTIONS(2468), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242759,7 +245860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -242797,12 +245898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38138] = 4, + [36080] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1977), 1, + STATE(1981), 1, sym_comment, - ACTIONS(1949), 9, + ACTIONS(2412), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242812,7 +245913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 50, + ACTIONS(2414), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242825,7 +245926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -242863,12 +245964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38208] = 4, + [36150] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1978), 1, + STATE(1982), 1, sym_comment, - ACTIONS(2428), 9, + ACTIONS(2416), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242878,7 +245979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2430), 50, + ACTIONS(2418), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242891,7 +245992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -242929,20 +246030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38278] = 4, + [36220] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1979), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(1983), 1, sym_comment, - ACTIONS(1044), 6, + STATE(2125), 1, + aux_sym_cell_path_repeat1, + STATE(2436), 1, + sym_path, + STATE(2511), 1, + sym_cell_path, + ACTIONS(1005), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1046), 53, - anon_sym_EQ, + ACTIONS(1007), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -242982,10 +246090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, @@ -242995,12 +246100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [38348] = 4, + [36298] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(1984), 1, sym_comment, - ACTIONS(2432), 9, + ACTIONS(1864), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243010,7 +246115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2434), 50, + ACTIONS(1866), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243023,7 +246128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -243061,387 +246166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38418] = 39, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(463), 1, - anon_sym_LBRACK, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_DOLLAR, - ACTIONS(471), 1, - anon_sym_DASH, - ACTIONS(481), 1, - aux_sym_ctrl_match_token1, - ACTIONS(487), 1, - aux_sym_expr_unary_token1, - ACTIONS(491), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(493), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(495), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(497), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(501), 1, - anon_sym_0b, - ACTIONS(505), 1, - sym_val_date, - ACTIONS(507), 1, - anon_sym_DQUOTE, - ACTIONS(511), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(513), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5093), 1, - anon_sym_null, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(5097), 1, - anon_sym_DOT_DOT, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(1707), 1, - sym__str_double_quotes, - STATE(1937), 1, - sym__val_number, - STATE(1981), 1, - sym_comment, - STATE(2218), 1, - sym__inter_single_quotes, - STATE(2219), 1, - sym__inter_double_quotes, - STATE(2236), 1, - sym__expr_unary_minus, - STATE(3422), 1, - sym__val_number_decimal, - STATE(3465), 1, - sym_val_variable, - STATE(3481), 1, - sym_expr_parenthesized, - STATE(3728), 1, - sym__expr_binary_expression_parenthesized, - STATE(3744), 1, - sym_val_range, - STATE(6186), 1, - sym__expression_parenthesized, - ACTIONS(503), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(509), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5091), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5099), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2310), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(499), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2168), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38558] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1982), 1, - sym_comment, - ACTIONS(2137), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2139), 50, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38628] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT, - STATE(1983), 1, - sym_comment, - STATE(2068), 1, - aux_sym_cell_path_repeat1, - STATE(2425), 1, - sym_path, - STATE(2466), 1, - sym_cell_path, - ACTIONS(1686), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1688), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [38706] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1984), 1, - sym_comment, - ACTIONS(1040), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1042), 51, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38776] = 8, + [36368] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT, STATE(1985), 1, sym_comment, - STATE(2068), 1, - aux_sym_cell_path_repeat1, - STATE(2425), 1, - sym_path, - STATE(2432), 1, - sym_cell_path, - ACTIONS(1625), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1629), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [38854] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5122), 1, - anon_sym_QMARK2, - STATE(1986), 1, - sym_comment, - ACTIONS(1034), 9, + ACTIONS(1560), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243451,7 +246181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 49, + ACTIONS(1572), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243463,7 +246193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243492,7 +246224,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243501,14 +246232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38926] = 5, + [36438] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_QMARK2, - STATE(1987), 1, + STATE(1986), 1, sym_comment, - ACTIONS(1028), 9, + ACTIONS(1872), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243518,7 +246247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1030), 49, + ACTIONS(1874), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243530,7 +246259,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243559,7 +246290,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243568,12 +246298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38998] = 4, + [36508] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1988), 1, + ACTIONS(5091), 1, + anon_sym_QMARK2, + STATE(1987), 1, sym_comment, - ACTIONS(1859), 9, + ACTIONS(1022), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243583,7 +246315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 50, + ACTIONS(1024), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243595,9 +246327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243626,6 +246356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243634,14 +246365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39068] = 5, + [36580] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1989), 1, + ACTIONS(5093), 1, + anon_sym_QMARK2, + STATE(1988), 1, sym_comment, - STATE(2147), 1, - aux_sym_shebang_repeat1, - ACTIONS(5064), 9, + ACTIONS(1028), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243651,7 +246382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(1030), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243663,7 +246394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243692,6 +246423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243700,14 +246432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39139] = 5, + [36652] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1990), 1, + STATE(1989), 1, sym_comment, - STATE(2008), 1, - aux_sym_shebang_repeat1, - ACTIONS(5054), 9, + ACTIONS(1876), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243717,7 +246447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(1878), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243729,7 +246459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243766,14 +246498,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39210] = 5, + [36722] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1990), 1, + sym_comment, + ACTIONS(5097), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5095), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [36792] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(1991), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5126), 9, + ACTIONS(2420), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243783,7 +246579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(2422), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243795,7 +246591,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243832,14 +246630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39281] = 5, + [36862] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(1992), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(1888), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243849,7 +246645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(1890), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243861,7 +246657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -243898,83 +246696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39352] = 8, + [36932] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT, STATE(1993), 1, sym_comment, - STATE(2251), 1, - aux_sym_cell_path_repeat1, - STATE(2455), 1, - sym_path, - STATE(2541), 1, - sym_cell_path, - ACTIONS(1625), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1629), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [39429] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1994), 1, - sym_comment, - STATE(2016), 1, - aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + ACTIONS(2434), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243984,7 +246711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(2436), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243996,7 +246723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244033,14 +246762,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, - [39500] = 5, + [37002] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(1995), 1, + ACTIONS(4658), 1, + anon_sym_DOT_DOT2, + STATE(1994), 1, sym_comment, - ACTIONS(2243), 8, + ACTIONS(4660), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1070), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244049,7 +246781,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(2247), 49, + ACTIONS(1072), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244061,8 +246794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -244099,14 +246830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39571] = 5, + [37076] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(1996), 1, + STATE(1995), 1, sym_comment, - ACTIONS(2251), 8, + ACTIONS(1892), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244115,8 +246845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2253), 49, - sym__newline, + ACTIONS(1894), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244128,35 +246857,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244165,14 +246896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39642] = 5, + [37146] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1997), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1996), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5138), 9, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4757), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244182,7 +246915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(4755), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244194,7 +246927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244231,14 +246964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39713] = 5, + [37220] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_unquoted_token2, - STATE(1998), 1, + STATE(1997), 1, sym_comment, - ACTIONS(1575), 8, + ACTIONS(1900), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244247,8 +246979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 49, - sym__newline, + ACTIONS(1902), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244260,35 +246991,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244297,14 +247030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39784] = 5, + [37290] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1999), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(1998), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5126), 9, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244314,7 +247049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(4759), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244326,7 +247061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244363,14 +247098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39855] = 5, + [37364] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2000), 1, + STATE(1999), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(2442), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244380,7 +247113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(2444), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244392,7 +247125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244429,14 +247164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39926] = 5, + [37434] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2001), 1, + STATE(2000), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(2446), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244446,7 +247179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(2448), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244458,7 +247191,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244495,14 +247230,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39997] = 5, + [37504] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2001), 1, + sym_comment, + ACTIONS(5101), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5099), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37574] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(2002), 1, sym_comment, - STATE(2042), 1, - aux_sym_shebang_repeat1, - ACTIONS(5054), 9, + ACTIONS(1042), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1044), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37644] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2003), 1, + sym_comment, + ACTIONS(1904), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244512,7 +247377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(1906), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244524,7 +247389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244561,12 +247428,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, - [40068] = 4, + [37714] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2003), 1, + ACTIONS(4658), 1, + anon_sym_DOT_DOT2, + STATE(2004), 1, sym_comment, - ACTIONS(1060), 8, + ACTIONS(4660), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4798), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244575,7 +247447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1062), 50, + ACTIONS(4796), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -244588,7 +247460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4800), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -244617,23 +247497,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40137] = 5, + [37790] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2004), 1, + STATE(2005), 1, sym_comment, - STATE(2046), 1, - aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + ACTIONS(5105), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5103), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37860] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2006), 1, + sym_comment, + ACTIONS(2450), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244643,7 +247578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(2452), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244655,7 +247590,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244692,14 +247629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40208] = 5, + [37930] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2005), 1, + STATE(2007), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5138), 9, + ACTIONS(2454), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244709,7 +247644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(2456), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244721,7 +247656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244758,15 +247695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40279] = 5, + [38000] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2006), 1, + STATE(2008), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5126), 9, - sym__newline, + ACTIONS(1034), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244775,7 +247709,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(5128), 48, + ACTIONS(1036), 51, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244786,36 +247722,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38070] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2009), 1, + sym_comment, + ACTIONS(1038), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1040), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38140] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2010), 1, + sym_comment, + ACTIONS(2141), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2143), 50, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244824,14 +247893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40350] = 5, + [38210] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2007), 1, + STATE(2011), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(2517), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244841,7 +247908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(2519), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244853,7 +247920,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244890,14 +247959,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40421] = 5, + [38280] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2008), 1, + STATE(2012), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(5109), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5107), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38350] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1079), 1, + anon_sym_DOT_DOT2, + STATE(2013), 1, + sym_comment, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1070), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244907,7 +248045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(1072), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244919,7 +248057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -244956,14 +248093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40492] = 5, + [38424] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2009), 1, + STATE(2014), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5142), 9, + ACTIONS(2458), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244973,7 +248108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 48, + ACTIONS(2460), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244985,7 +248120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245022,12 +248159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40563] = 4, + [38494] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2010), 1, + ACTIONS(5111), 1, + anon_sym_QMARK2, + STATE(2015), 1, sym_comment, - ACTIONS(1052), 8, + ACTIONS(1022), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245036,7 +248175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1054), 50, + ACTIONS(1024), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -245049,7 +248188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245087,15 +248226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40632] = 5, + [38566] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2011), 1, + ACTIONS(5113), 1, + anon_sym_QMARK2, + STATE(2016), 1, sym_comment, - STATE(2033), 1, - aux_sym_shebang_repeat1, - ACTIONS(5050), 9, - sym__newline, + ACTIONS(1028), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245104,7 +248242,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(5052), 48, + ACTIONS(1030), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245115,36 +248255,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245153,14 +248293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40703] = 5, + [38638] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2000), 1, - aux_sym_shebang_repeat1, - STATE(2012), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2017), 1, sym_comment, - ACTIONS(5054), 9, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4749), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245170,7 +248312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(4747), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245182,7 +248324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245219,15 +248361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40774] = 5, + [38712] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2013), 1, + STATE(2018), 1, sym_comment, - STATE(2053), 1, - aux_sym_shebang_repeat1, - ACTIONS(5060), 9, - sym__newline, + ACTIONS(1675), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245236,7 +248376,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(5062), 48, + ACTIONS(1677), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245247,36 +248389,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245285,14 +248427,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40845] = 5, + [38782] = 39, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(473), 1, + anon_sym_DOLLAR, + ACTIONS(475), 1, + anon_sym_DASH, + ACTIONS(485), 1, + anon_sym_LBRACE, + ACTIONS(491), 1, + aux_sym_expr_unary_token1, + ACTIONS(495), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(497), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(499), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(501), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(505), 1, + anon_sym_0b, + ACTIONS(509), 1, + sym_val_date, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(515), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(517), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(5117), 1, + anon_sym_null, + ACTIONS(5119), 1, + anon_sym_DOT_DOT, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1725), 1, + sym__str_double_quotes, STATE(2014), 1, + sym__val_number, + STATE(2019), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + STATE(2239), 1, + sym__inter_single_quotes, + STATE(2243), 1, + sym__inter_double_quotes, + STATE(2377), 1, + sym__expr_unary_minus, + STATE(3493), 1, + sym__val_number_decimal, + STATE(3518), 1, + sym_expr_parenthesized, + STATE(3526), 1, + sym_val_variable, + STATE(3774), 1, + sym__expr_binary_expression_parenthesized, + STATE(3793), 1, + sym_val_range, + STATE(6176), 1, + sym__expression_parenthesized, + ACTIONS(507), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(513), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5121), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2344), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(503), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2221), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [38922] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2020), 1, + sym_comment, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4753), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245302,7 +248547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(4751), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245314,7 +248559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245351,14 +248596,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40916] = 5, + [38996] = 39, ACTIONS(247), 1, anon_sym_POUND, - STATE(2015), 1, - sym_comment, - STATE(2062), 1, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(473), 1, + anon_sym_DOLLAR, + ACTIONS(475), 1, + anon_sym_DASH, + ACTIONS(485), 1, + anon_sym_LBRACE, + ACTIONS(491), 1, + aux_sym_expr_unary_token1, + ACTIONS(495), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(497), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(499), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(501), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(505), 1, + anon_sym_0b, + ACTIONS(509), 1, + sym_val_date, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(515), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(517), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(5117), 1, + anon_sym_null, + ACTIONS(5119), 1, + anon_sym_DOT_DOT, + STATE(1725), 1, + sym__str_double_quotes, + STATE(2014), 1, + sym__val_number, + STATE(2019), 1, aux_sym_shebang_repeat1, - ACTIONS(5126), 9, + STATE(2021), 1, + sym_comment, + STATE(2239), 1, + sym__inter_single_quotes, + STATE(2243), 1, + sym__inter_double_quotes, + STATE(2377), 1, + sym__expr_unary_minus, + STATE(3493), 1, + sym__val_number_decimal, + STATE(3518), 1, + sym_expr_parenthesized, + STATE(3526), 1, + sym_val_variable, + STATE(3774), 1, + sym__expr_binary_expression_parenthesized, + STATE(3793), 1, + sym_val_range, + STATE(6386), 1, + sym__expression_parenthesized, + ACTIONS(507), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(513), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5121), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2344), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(503), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2221), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [39136] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2022), 1, + sym_comment, + ACTIONS(2521), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245368,7 +248712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(2523), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245380,7 +248724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245417,15 +248763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40987] = 5, + [39206] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2016), 1, - sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + ACTIONS(1079), 1, + anon_sym_DOT_DOT2, + ACTIONS(5123), 1, sym__newline, + STATE(2023), 1, + sym_comment, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5130), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245434,7 +248784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5126), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245446,7 +248796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5128), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245475,6 +248833,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + [39284] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(2024), 1, + sym_comment, + ACTIONS(2229), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245483,14 +248859,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41058] = 5, + ACTIONS(2233), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [39358] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2017), 1, + STATE(2025), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(5134), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5132), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39428] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2026), 1, + sym_comment, + ACTIONS(2438), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245500,7 +248982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(2440), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245512,7 +248994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245549,14 +249033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41129] = 5, + [39498] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2018), 1, + STATE(2027), 1, sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5138), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245566,7 +249050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245578,7 +249062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245615,14 +249099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41200] = 5, + [39569] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2019), 1, + STATE(2028), 1, sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245632,7 +249116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245644,7 +249128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245681,14 +249165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41271] = 5, + [39640] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2020), 1, + STATE(2029), 1, sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5138), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245698,7 +249182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245710,7 +249194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245747,14 +249231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41342] = 5, + [39711] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2006), 1, - aux_sym_shebang_repeat1, - STATE(2021), 1, + STATE(2030), 1, sym_comment, - ACTIONS(5050), 9, + STATE(2043), 1, + aux_sym_shebang_repeat1, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245764,7 +249248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245776,7 +249260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245813,14 +249297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41413] = 5, + [39782] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2022), 1, + STATE(2031), 1, sym_comment, - STATE(2059), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + ACTIONS(5140), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245830,7 +249314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5142), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245842,7 +249326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245879,81 +249363,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41484] = 6, + [39853] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5150), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5152), 1, - aux_sym__immediate_decimal_token2, - STATE(2023), 1, + STATE(2032), 1, sym_comment, - ACTIONS(1517), 11, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1519), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [41557] = 5, + STATE(2043), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5146), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [39924] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(2033), 1, sym_comment, - STATE(2062), 1, + STATE(2087), 1, aux_sym_shebang_repeat1, - ACTIONS(5126), 9, + ACTIONS(5148), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245963,7 +249446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5150), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245975,7 +249458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246012,14 +249495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41628] = 5, + [39995] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2025), 1, + STATE(2034), 1, sym_comment, - STATE(2062), 1, + STATE(2088), 1, aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246029,7 +249512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246041,7 +249524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246078,14 +249561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41699] = 5, + [40066] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2026), 1, + STATE(2035), 1, sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246095,7 +249578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246107,7 +249590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246144,14 +249627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41770] = 5, + [40137] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2007), 1, - aux_sym_shebang_repeat1, - STATE(2027), 1, + STATE(2036), 1, sym_comment, - ACTIONS(5054), 9, + STATE(2109), 1, + aux_sym_shebang_repeat1, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246161,7 +249644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246173,7 +249656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246210,14 +249693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41841] = 5, + [40208] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2028), 1, + STATE(2037), 1, sym_comment, - STATE(2062), 1, + STATE(2089), 1, aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246227,7 +249710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246239,7 +249722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246276,14 +249759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41912] = 5, + [40279] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(2038), 1, sym_comment, - STATE(2051), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5054), 9, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246293,7 +249776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246305,7 +249788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246342,14 +249825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41983] = 5, + [40350] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2039), 1, sym_comment, - STATE(2062), 1, + STATE(2164), 1, aux_sym_shebang_repeat1, - ACTIONS(5138), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246359,7 +249842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246371,7 +249854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246408,14 +249891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42054] = 5, + [40421] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2031), 1, + STATE(2040), 1, sym_comment, - STATE(2063), 1, + STATE(2090), 1, aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246425,7 +249908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246437,7 +249920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246474,14 +249957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42125] = 5, + [40492] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(2041), 1, sym_comment, - STATE(2038), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5050), 9, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246491,7 +249974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246503,7 +249986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246540,14 +250023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42196] = 5, + [40563] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2033), 1, + STATE(2042), 1, sym_comment, - STATE(2062), 1, - aux_sym_shebang_repeat1, - ACTIONS(5126), 9, + ACTIONS(1046), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246557,7 +250038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(1048), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246569,7 +250050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246598,6 +250079,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246606,16 +250088,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, - [42267] = 6, + [40632] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(5152), 1, + sym__newline, + STATE(2043), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1313), 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(1315), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [40703] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, anon_sym_LPAREN2, - STATE(2034), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(2044), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(2237), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246624,7 +250172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2241), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -246665,6 +250221,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + [40776] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2045), 1, + sym_comment, + ACTIONS(5155), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5157), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246673,16 +250287,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, - [42340] = 6, + [40847] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2035), 1, + STATE(2046), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 8, + STATE(2091), 1, + aux_sym_shebang_repeat1, + ACTIONS(5062), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246691,9 +250304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4759), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246704,34 +250315,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246740,14 +250353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42413] = 5, + [40918] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2036), 1, - sym_comment, - STATE(2064), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + STATE(2047), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246757,7 +250370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246769,7 +250382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246806,14 +250419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42484] = 5, + [40989] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2037), 1, + STATE(2048), 1, sym_comment, - STATE(2054), 1, + STATE(2092), 1, aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246823,7 +250436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246835,7 +250448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246872,14 +250485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42555] = 5, + [41060] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2038), 1, - sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5126), 9, + STATE(2049), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246889,7 +250502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246901,7 +250514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246938,14 +250551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42626] = 5, + [41131] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(2050), 1, sym_comment, - STATE(2062), 1, + STATE(2093), 1, aux_sym_shebang_repeat1, - ACTIONS(5138), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246955,7 +250568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246967,7 +250580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247004,14 +250617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42697] = 5, + [41202] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2040), 1, - sym_comment, - STATE(2066), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5060), 9, + STATE(2051), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247021,7 +250634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247033,7 +250646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247070,14 +250683,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42768] = 5, + [41273] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2041), 1, + ACTIONS(5159), 1, + anon_sym_DOT, + STATE(2052), 1, sym_comment, - STATE(2112), 1, + STATE(2254), 1, + aux_sym_cell_path_repeat1, + STATE(2478), 1, + sym_path, + STATE(2530), 1, + sym_cell_path, + ACTIONS(1005), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1007), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [41350] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2053), 1, + sym_comment, + STATE(2097), 1, aux_sym_shebang_repeat1, - ACTIONS(5154), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247087,7 +250769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247099,7 +250781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247136,14 +250818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42839] = 5, + [41421] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2042), 1, - sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + STATE(2054), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247153,7 +250835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247165,7 +250847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247202,14 +250884,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42910] = 5, + [41492] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(2055), 1, + sym_comment, + ACTIONS(2245), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2247), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [41565] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2056), 1, sym_comment, - STATE(2052), 1, + STATE(2098), 1, aux_sym_shebang_repeat1, - ACTIONS(5054), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247219,7 +250968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247231,7 +250980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247268,14 +251017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42981] = 5, + [41636] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2044), 1, - sym_comment, - STATE(2137), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5064), 9, + STATE(2057), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247285,7 +251034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247297,7 +251046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247334,15 +251083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43052] = 5, + [41707] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2045), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2058), 1, sym_comment, - STATE(2113), 1, - aux_sym_shebang_repeat1, - ACTIONS(5050), 9, - sym__newline, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4749), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247351,7 +251101,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(5052), 48, + ACTIONS(4747), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247362,36 +251114,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247400,14 +251150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43123] = 5, + [41780] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2046), 1, + STATE(2059), 1, sym_comment, - STATE(2062), 1, + STATE(2099), 1, aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247417,7 +251167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247429,7 +251179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247466,14 +251216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43194] = 5, + [41851] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1997), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2047), 1, + STATE(2060), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247483,7 +251233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247495,7 +251245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247532,16 +251282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43265] = 6, + [41922] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(2048), 1, + STATE(2061), 1, sym_comment, - STATE(7570), 1, + STATE(7682), 1, sym__expr_parenthesized_immediate, - ACTIONS(4783), 8, + ACTIONS(4753), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247550,7 +251300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4781), 48, + ACTIONS(4751), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247599,81 +251349,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43338] = 6, + [41995] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2049), 1, - sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4771), 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(4769), 48, - ts_builtin_sym_end, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3015), 1, + anon_sym_DQUOTE, + ACTIONS(5167), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5169), 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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43411] = 5, + ACTIONS(5171), 1, + anon_sym_RBRACK, + STATE(2062), 1, + sym_comment, + STATE(2303), 1, + aux_sym_shebang_repeat1, + STATE(2494), 1, + aux_sym_command_list_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6904), 1, + sym__command_name, + STATE(6913), 1, + sym__val_number_decimal, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3017), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5161), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5165), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5163), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [42096] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2050), 1, + STATE(2063), 1, sym_comment, STATE(2100), 1, aux_sym_shebang_repeat1, - ACTIONS(5064), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247683,7 +251447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247695,7 +251459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247732,14 +251496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43482] = 5, + [42167] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2051), 1, - sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + STATE(2064), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247749,7 +251513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247761,7 +251525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247798,14 +251562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43553] = 5, + [42238] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2052), 1, + STATE(2065), 1, sym_comment, - STATE(2062), 1, + STATE(2177), 1, aux_sym_shebang_repeat1, - ACTIONS(5130), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247815,7 +251579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247827,7 +251591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247864,14 +251628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43624] = 5, + [42309] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(2066), 1, sym_comment, - STATE(2062), 1, + STATE(2101), 1, aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247881,7 +251645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247893,7 +251657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247930,14 +251694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43695] = 5, + [42380] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2054), 1, - sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + STATE(2067), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247947,7 +251711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247959,7 +251723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247996,14 +251760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43766] = 5, + [42451] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2018), 1, + STATE(2028), 1, aux_sym_shebang_repeat1, - STATE(2055), 1, + STATE(2068), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248013,7 +251777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248025,7 +251789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248062,148 +251826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43837] = 6, + [42522] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2056), 1, - sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43910] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2057), 1, + STATE(2069), 1, sym_comment, - ACTIONS(2293), 16, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2297), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [43983] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2030), 1, + STATE(2102), 1, aux_sym_shebang_repeat1, - STATE(2058), 1, - sym_comment, - ACTIONS(5064), 9, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248213,7 +251843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248225,7 +251855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248262,14 +251892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44054] = 5, + [42593] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2059), 1, - sym_comment, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5146), 9, + STATE(2070), 1, + sym_comment, + ACTIONS(5144), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248279,7 +251909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5146), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248291,7 +251921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248328,16 +251958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44125] = 6, - ACTIONS(3), 1, + [42664] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(2060), 1, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + STATE(2071), 1, sym_comment, - ACTIONS(1076), 16, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248346,16 +251974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(1078), 40, - ts_builtin_sym_end, + ACTIONS(1572), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248367,6 +251986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -248395,145 +252016,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [44198] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5164), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5166), 1, - sym__newline, - ACTIONS(5168), 1, - anon_sym_RBRACK, - STATE(2061), 1, - sym_comment, - STATE(2328), 1, - aux_sym_shebang_repeat1, - STATE(2447), 1, - aux_sym_command_list_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(6922), 1, - sym__command_name, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5158), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [44299] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5170), 1, - sym__newline, - STATE(2062), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1898), 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(1900), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248542,14 +252024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44370] = 5, + [42735] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2063), 1, + STATE(2072), 1, sym_comment, - ACTIONS(5146), 9, + STATE(2103), 1, + aux_sym_shebang_repeat1, + ACTIONS(5062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248559,7 +252041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248571,7 +252053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248608,15 +252090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44441] = 5, + [42806] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2064), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2073), 1, sym_comment, - ACTIONS(5146), 9, - sym__newline, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248625,7 +252108,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(5148), 48, + ACTIONS(4759), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248636,36 +252121,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248674,14 +252157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44512] = 5, + [42879] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2065), 1, + STATE(2074), 1, sym_comment, - STATE(2077), 1, + STATE(2174), 1, aux_sym_shebang_repeat1, - ACTIONS(5064), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248691,7 +252174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248703,7 +252186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248740,14 +252223,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, - [44583] = 5, + [42950] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2066), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2075), 1, + sym_comment, + STATE(2375), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6446), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [43051] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2076), 1, sym_comment, - ACTIONS(5146), 9, + ACTIONS(1050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248757,7 +252319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(1052), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248769,7 +252331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248798,6 +252360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248806,14 +252369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44654] = 5, + [43120] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2020), 1, - aux_sym_shebang_repeat1, - STATE(2067), 1, + STATE(2077), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(1054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248823,7 +252384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(1056), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248835,7 +252396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248864,6 +252425,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248872,82 +252434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44725] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT, - STATE(2068), 1, - sym_comment, - STATE(2072), 1, - aux_sym_cell_path_repeat1, - STATE(2425), 1, - sym_path, - ACTIONS(1017), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1019), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [44800] = 5, + [43189] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2069), 1, + STATE(2078), 1, sym_comment, - ACTIONS(5138), 9, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248957,7 +252451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248969,7 +252463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249006,15 +252500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44871] = 5, - ACTIONS(3), 1, + [43260] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4799), 1, - aux_sym_cmd_identifier_token37, - STATE(2070), 1, + STATE(2079), 1, sym_comment, - ACTIONS(1575), 9, - sym__newline, + ACTIONS(1050), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249023,7 +252514,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(1587), 48, + ACTIONS(1052), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249034,7 +252527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -249063,7 +252556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249072,15 +252565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44942] = 5, + [43329] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2071), 1, + STATE(2080), 1, sym_comment, - ACTIONS(5126), 9, - sym__newline, + ACTIONS(1054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249089,7 +252579,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(5128), 48, + ACTIONS(1056), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249100,36 +252592,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249138,24 +252630,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45013] = 6, + [43398] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_DOT, - STATE(2425), 1, - sym_path, - STATE(2072), 2, + ACTIONS(5175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5177), 1, + aux_sym__immediate_decimal_token2, + STATE(2081), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 6, + ACTIONS(1540), 11, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1023), 49, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1542), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -249192,69 +252688,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - 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, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [45086] = 20, + [43471] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, + ACTIONS(3015), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(5167), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2073), 1, + ACTIONS(5169), 1, + sym__newline, + ACTIONS(5179), 1, + anon_sym_RBRACK, + STATE(2082), 1, sym_comment, - STATE(2339), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6523), 1, + STATE(2283), 1, + aux_sym_shebang_repeat1, + STATE(2500), 1, + aux_sym_command_list_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6860), 1, sym__command_name, - STATE(6953), 1, + STATE(6913), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(5161), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(5165), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(5163), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -249286,14 +252778,277 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [45187] = 5, + [43572] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2083), 1, + sym_comment, + ACTIONS(2253), 17, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2255), 41, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [43641] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2074), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2084), 1, + sym_comment, + ACTIONS(5155), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5157), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [43712] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(2085), 1, + sym_comment, + ACTIONS(2253), 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(2255), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [43783] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(2086), 1, sym_comment, - STATE(2140), 1, + ACTIONS(2229), 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(2233), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [43854] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5064), 9, + STATE(2087), 1, + sym_comment, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249303,7 +253058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249315,7 +253070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249352,14 +253107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45258] = 5, + [43925] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2028), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2075), 1, + STATE(2088), 1, sym_comment, - ACTIONS(5060), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249369,7 +253124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249381,7 +253136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249418,14 +253173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45329] = 5, + [43996] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2069), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2076), 1, + STATE(2089), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249435,7 +253190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249447,7 +253202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249484,14 +253239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45400] = 5, + [44067] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2077), 1, + STATE(2090), 1, sym_comment, - ACTIONS(5138), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249501,7 +253256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249513,7 +253268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249550,12 +253305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45471] = 4, - ACTIONS(3), 1, + [44138] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2091), 1, sym_comment, - ACTIONS(2259), 18, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249565,16 +253322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2261), 40, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249586,7 +253334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249615,14 +253363,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [45540] = 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44209] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2079), 1, + STATE(2092), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249632,7 +253388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249644,7 +253400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249681,16 +253437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45611] = 6, - ACTIONS(3), 1, + [44280] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2080), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2093), 1, sym_comment, - ACTIONS(2293), 17, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249700,15 +253454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2297), 39, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249720,6 +253466,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_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249748,12 +253495,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [45684] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44351] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2081), 1, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(2094), 1, sym_comment, - ACTIONS(2259), 17, + ACTIONS(2237), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249762,6 +253519,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2241), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249770,9 +253569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2261), 41, - ts_builtin_sym_end, + [44422] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(2095), 1, + sym_comment, + ACTIONS(2245), 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(2247), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249784,7 +253597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -249813,16 +253627,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [45753] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44493] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(2082), 1, + STATE(2096), 1, sym_comment, - ACTIONS(1076), 17, + STATE(2182), 1, + aux_sym_shebang_repeat1, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249832,15 +253652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(1078), 39, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249852,6 +253664,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_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249880,14 +253693,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [45826] = 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44564] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2083), 1, + STATE(2097), 1, sym_comment, - ACTIONS(5130), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249897,7 +253718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249909,7 +253730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -249946,14 +253767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45897] = 5, + [44635] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2084), 1, + STATE(2098), 1, sym_comment, - ACTIONS(5126), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249963,7 +253784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249975,7 +253796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250012,14 +253833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45968] = 5, + [44706] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2005), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2085), 1, + STATE(2099), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250029,7 +253850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250041,7 +253862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250078,14 +253899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46039] = 5, + [44777] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2086), 1, + STATE(2100), 1, sym_comment, - ACTIONS(5178), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250095,7 +253916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250107,7 +253928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250144,14 +253965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46110] = 5, + [44848] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2087), 1, + STATE(2101), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250161,7 +253982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250173,7 +253994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250210,14 +254031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46181] = 5, + [44919] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2088), 1, + STATE(2102), 1, sym_comment, - ACTIONS(5060), 9, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250227,7 +254048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250239,7 +254060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250276,16 +254097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46252] = 6, - ACTIONS(3), 1, + [44990] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(2089), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2103), 1, sym_comment, - ACTIONS(2243), 17, + ACTIONS(5185), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250295,15 +254114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2247), 39, + ACTIONS(5187), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250315,6 +254126,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_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250343,16 +254155,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [46325] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [45061] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(2090), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2104), 1, sym_comment, - ACTIONS(2251), 17, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250362,15 +254180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2253), 39, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250382,6 +254192,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_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250410,65 +254221,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [46398] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2091), 1, - sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250477,16 +254229,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46471] = 6, - ACTIONS(3), 1, + [45132] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(2092), 1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2105), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7263), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [45269] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2106), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7267), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [45406] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2107), 1, sym_comment, - ACTIONS(2243), 16, + ACTIONS(1046), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250495,15 +254441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2247), 40, + ACTIONS(1048), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250516,6 +254454,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_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -250544,24 +254483,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [46544] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(2093), 1, - sym_comment, - ACTIONS(2251), 16, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250570,55 +254492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2253), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [46617] = 5, + [45475] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2094), 1, + STATE(2108), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5195), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250628,7 +254509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5197), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250640,7 +254521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250677,16 +254558,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, - [46688] = 6, + [45546] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2095), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2109), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(5155), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250695,9 +254575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250708,34 +254586,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250744,16 +254624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46761] = 6, - ACTIONS(247), 1, + [45617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2096), 1, + STATE(2110), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(2253), 18, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250762,9 +254639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2255), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250775,329 +254659,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [46834] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2097), 1, - sym_comment, - STATE(2339), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6523), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [46935] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2098), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7373), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [47072] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2099), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7387), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [47209] = 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [45686] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2029), 1, aux_sym_shebang_repeat1, - STATE(2100), 1, + STATE(2111), 1, sym_comment, - ACTIONS(5138), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251107,7 +254706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251119,7 +254718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251156,14 +254755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47280] = 5, + [45757] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2101), 1, + STATE(2112), 1, sym_comment, - ACTIONS(5126), 9, + STATE(2186), 1, + aux_sym_shebang_repeat1, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251173,7 +254772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251185,7 +254784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251222,16 +254821,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, - [47351] = 6, + [45828] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2102), 1, + STATE(2113), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + STATE(2120), 1, + aux_sym_shebang_repeat1, + ACTIONS(5199), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251240,9 +254838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5201), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251253,34 +254849,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251289,14 +254887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47424] = 5, + [45899] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2026), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2103), 1, + STATE(2114), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251306,7 +254904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251318,7 +254916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251355,148 +254953,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47495] = 4, + [45970] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2115), 1, sym_comment, - ACTIONS(4888), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4886), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5155), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_LBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [47564] = 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [46041] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5186), 1, - anon_sym_DOT, - ACTIONS(5188), 1, - aux_sym__immediate_decimal_token2, - STATE(2105), 1, + STATE(2116), 1, sym_comment, - ACTIONS(1497), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1499), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [47637] = 6, + STATE(2179), 1, + aux_sym_shebang_repeat1, + ACTIONS(5073), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5075), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [46112] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2106), 1, + STATE(2117), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + STATE(2172), 1, + aux_sym_shebang_repeat1, + ACTIONS(5073), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251505,9 +255102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251518,34 +255113,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251554,28 +255151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47710] = 8, + [46183] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT, - STATE(2107), 1, + STATE(2118), 1, sym_comment, - STATE(2251), 1, - aux_sym_cell_path_repeat1, - STATE(2455), 1, - sym_path, - STATE(2498), 1, - sym_cell_path, - ACTIONS(1686), 6, + ACTIONS(4884), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1688), 48, - ts_builtin_sym_end, + ACTIONS(4882), 52, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -251614,7 +255202,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -251623,81 +255216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [47787] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2108), 1, - sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47860] = 5, + [46252] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2027), 1, aux_sym_shebang_repeat1, - STATE(2109), 1, + STATE(2119), 1, sym_comment, - ACTIONS(5146), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251707,7 +255233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251719,7 +255245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251756,14 +255282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47931] = 5, + [46323] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2110), 1, - sym_comment, - STATE(2116), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5054), 9, + STATE(2120), 1, + sym_comment, + ACTIONS(5203), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251773,7 +255299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5205), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251785,7 +255311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251822,14 +255348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48002] = 5, + [46394] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2109), 1, + STATE(2030), 1, aux_sym_shebang_repeat1, - STATE(2111), 1, + STATE(2121), 1, sym_comment, - ACTIONS(5060), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251839,7 +255365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251851,7 +255377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251888,15 +255414,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48073] = 5, + [46465] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2112), 1, + ACTIONS(5159), 1, + anon_sym_DOT, + STATE(2122), 1, sym_comment, - ACTIONS(5190), 9, + STATE(2254), 1, + aux_sym_cell_path_repeat1, + STATE(2478), 1, + sym_path, + STATE(2552), 1, + sym_cell_path, + ACTIONS(1641), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1645), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [46542] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(2123), 1, + sym_comment, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251905,7 +255499,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(5192), 48, + ACTIONS(1572), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251917,35 +255512,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251954,14 +255549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48144] = 5, + [46613] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2045), 1, aux_sym_shebang_repeat1, - STATE(2113), 1, + STATE(2124), 1, sym_comment, - ACTIONS(5126), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251971,7 +255566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251983,7 +255578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252020,14 +255615,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, - [48215] = 5, + [46684] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(2125), 1, + sym_comment, + STATE(2131), 1, + aux_sym_cell_path_repeat1, + STATE(2436), 1, + sym_path, + ACTIONS(1011), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1013), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [46759] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2114), 1, + STATE(2126), 1, sym_comment, - ACTIONS(5126), 9, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252037,7 +255700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252049,7 +255712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252086,14 +255749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48286] = 5, + [46830] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2115), 1, - sym_comment, - STATE(2144), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 9, + STATE(2127), 1, + sym_comment, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252103,7 +255766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252115,7 +255778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252152,14 +255815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48357] = 5, + [46901] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2032), 1, aux_sym_shebang_repeat1, - STATE(2116), 1, + STATE(2128), 1, sym_comment, - ACTIONS(5130), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252169,7 +255832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5132), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252181,7 +255844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252218,14 +255881,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48428] = 5, + [46972] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2117), 1, - sym_comment, - STATE(2145), 1, + STATE(2078), 1, aux_sym_shebang_repeat1, - ACTIONS(5050), 9, + STATE(2129), 1, + sym_comment, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252235,7 +255898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252247,7 +255910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252284,95 +255947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48499] = 20, + [47043] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5164), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5166), 1, - sym__newline, - ACTIONS(5198), 1, - anon_sym_RBRACK, - STATE(2118), 1, - sym_comment, - STATE(2215), 1, - aux_sym_shebang_repeat1, - STATE(2467), 1, - aux_sym_command_list_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(6752), 1, - sym__command_name, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5158), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [48600] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(2119), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2130), 1, sym_comment, - ACTIONS(1575), 8, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252381,7 +255965,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(1587), 49, + ACTIONS(4842), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252393,8 +255978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -252431,14 +256014,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48671] = 5, + [47116] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2114), 1, + ACTIONS(5207), 1, + anon_sym_DOT, + STATE(2436), 1, + sym_path, + STATE(2131), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1017), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [47189] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2127), 1, aux_sym_shebang_repeat1, - STATE(2120), 1, + STATE(2132), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252448,7 +256098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252460,7 +256110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252497,16 +256147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48742] = 6, + [47260] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(2121), 1, + STATE(2133), 1, sym_comment, - STATE(7428), 1, + STATE(7230), 1, sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252515,7 +256165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252564,14 +256214,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48815] = 5, + [47333] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2071), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2134), 1, + sym_comment, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47406] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2035), 1, aux_sym_shebang_repeat1, - STATE(2122), 1, + STATE(2135), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252581,7 +256298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252593,7 +256310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252630,16 +256347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48886] = 6, + [47477] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(2123), 1, + STATE(2136), 1, sym_comment, - STATE(7428), 1, + STATE(7230), 1, sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252648,7 +256365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252697,28 +256414,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48959] = 8, + [47550] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4771), 1, + aux_sym_cmd_identifier_token37, + STATE(2137), 1, + sym_comment, + ACTIONS(1560), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1572), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47621] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2038), 1, + aux_sym_shebang_repeat1, + STATE(2138), 1, + sym_comment, + ACTIONS(5079), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5081), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47692] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT, - STATE(2124), 1, + STATE(2139), 1, sym_comment, - STATE(2251), 1, - aux_sym_cell_path_repeat1, - STATE(2455), 1, - sym_path, - STATE(2503), 1, - sym_cell_path, - ACTIONS(1011), 6, + ACTIONS(4894), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1013), 48, - ts_builtin_sym_end, + ACTIONS(4892), 52, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -252757,7 +256597,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -252766,14 +256611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49036] = 5, + [47761] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2084), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2125), 1, + STATE(2140), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252783,7 +256628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252795,7 +256640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252832,12 +256677,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, - [49107] = 4, + [47832] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2126), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2141), 1, sym_comment, - ACTIONS(1056), 8, + ACTIONS(5155), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252846,9 +256694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1058), 50, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252859,36 +256705,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252897,212 +256743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49176] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2127), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7373), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49313] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2128), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7387), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49450] = 5, + [47903] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2101), 1, + STATE(2041), 1, aux_sym_shebang_repeat1, - STATE(2129), 1, + STATE(2142), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253112,7 +256760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253124,7 +256772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253161,14 +256809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49521] = 5, - ACTIONS(247), 1, + [47974] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1991), 1, - aux_sym_shebang_repeat1, - STATE(2130), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(2143), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(2229), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253178,7 +256828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2233), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253190,7 +256848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253219,6 +256876,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + [48047] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(2144), 1, + sym_comment, + ACTIONS(1070), 17, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253227,16 +256903,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49592] = 6, + ACTIONS(1072), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [48120] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(2131), 1, + STATE(2145), 1, sym_comment, - STATE(7428), 1, + STATE(7230), 1, sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253245,7 +256961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253294,16 +257010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49665] = 6, - ACTIONS(247), 1, + [48193] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(2231), 1, anon_sym_LPAREN2, - STATE(2132), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(2146), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(2229), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253312,7 +257028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2233), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253353,22 +257077,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [49738] = 5, + [48266] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1999), 1, + ACTIONS(5159), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_comment, + STATE(2254), 1, + aux_sym_cell_path_repeat1, + STATE(2478), 1, + sym_path, + STATE(2587), 1, + sym_cell_path, + ACTIONS(1675), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1677), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [48343] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2126), 1, aux_sym_shebang_repeat1, - STATE(2133), 1, + STATE(2148), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253378,7 +257163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253390,7 +257175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253427,14 +257212,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49809] = 5, + [48414] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(2149), 1, + sym_comment, + ACTIONS(1070), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1072), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [48487] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2134), 1, + STATE(2150), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253444,7 +257296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253456,7 +257308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253493,14 +257345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49880] = 5, + [48558] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2001), 1, + STATE(2047), 1, aux_sym_shebang_repeat1, - STATE(2135), 1, + STATE(2151), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253510,7 +257362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253522,7 +257374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253559,14 +257411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49951] = 5, + [48629] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2140), 1, aux_sym_shebang_repeat1, - STATE(2136), 1, + STATE(2152), 1, sym_comment, - ACTIONS(5146), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253576,7 +257428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5148), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253588,7 +257440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253625,15 +257477,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50022] = 5, + [48700] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2137), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2153), 1, sym_comment, - ACTIONS(5138), 9, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48773] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2154), 1, + sym_comment, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253642,7 +257562,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(5140), 48, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253653,36 +257575,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253691,14 +257611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50093] = 5, + [48846] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2086), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2138), 1, + STATE(2155), 1, sym_comment, - ACTIONS(5200), 9, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253708,7 +257628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 48, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253720,7 +257640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253757,14 +257677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50164] = 5, + [48917] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2017), 1, + STATE(2049), 1, aux_sym_shebang_repeat1, - STATE(2139), 1, + STATE(2156), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253774,7 +257694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253786,7 +257706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253823,14 +257743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50235] = 5, + [48988] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2150), 1, aux_sym_shebang_repeat1, - STATE(2140), 1, + STATE(2157), 1, sym_comment, - ACTIONS(5138), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253840,7 +257760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253852,7 +257772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253889,12 +257809,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50306] = 4, + [49059] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(2141), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym_comment, + STATE(2375), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6446), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [49160] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2159), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7263), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49297] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2160), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7267), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49434] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2161), 1, sym_comment, - ACTIONS(1056), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253904,7 +258105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1058), 49, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253916,7 +258117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253945,7 +258146,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253954,14 +258154,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, - [50375] = 5, + [49505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(2142), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(2162), 1, sym_comment, - ACTIONS(2259), 8, + ACTIONS(2237), 17, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253970,48 +258173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2261), 49, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254020,24 +258181,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, - [50446] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(2143), 1, - sym_comment, - ACTIONS(2293), 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(2297), 49, - sym__newline, + ACTIONS(2241), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254048,52 +258192,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [50517] = 5, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [49578] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2144), 1, + STATE(2163), 1, sym_comment, - ACTIONS(5204), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254103,7 +258238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254115,7 +258250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254152,14 +258287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50588] = 5, + [49649] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2145), 1, + STATE(2164), 1, sym_comment, - ACTIONS(5126), 9, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254169,7 +258304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254181,7 +258316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254218,14 +258353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50659] = 5, + [49720] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2015), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2146), 1, + STATE(2165), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254235,7 +258370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254247,7 +258382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254284,14 +258419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50730] = 5, + [49791] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2051), 1, aux_sym_shebang_repeat1, - STATE(2147), 1, + STATE(2166), 1, sym_comment, - ACTIONS(5138), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254301,7 +258436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254313,7 +258448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254350,14 +258485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50801] = 5, - ACTIONS(247), 1, + [49862] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2009), 1, - aux_sym_shebang_repeat1, - STATE(2148), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(2167), 1, sym_comment, - ACTIONS(5208), 9, + ACTIONS(2245), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254367,7 +258504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2247), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254379,7 +258524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254408,22 +258552,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [50872] = 5, + [49935] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2161), 1, aux_sym_shebang_repeat1, - STATE(2149), 1, + STATE(2168), 1, sym_comment, - ACTIONS(5138), 9, + ACTIONS(5069), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254433,7 +258569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5140), 48, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254445,7 +258581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254482,14 +258618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50943] = 5, + [50006] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2114), 1, aux_sym_shebang_repeat1, - STATE(2150), 1, + STATE(2169), 1, sym_comment, - ACTIONS(5060), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254499,7 +258635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254511,7 +258647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254548,14 +258684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51014] = 5, + [50077] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2025), 1, + STATE(2054), 1, aux_sym_shebang_repeat1, - STATE(2151), 1, + STATE(2170), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254565,7 +258701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5056), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254577,7 +258713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254614,14 +258750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51085] = 5, + [50148] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2019), 1, + STATE(2057), 1, aux_sym_shebang_repeat1, - STATE(2152), 1, + STATE(2171), 1, sym_comment, - ACTIONS(5060), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254631,7 +258767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254643,7 +258779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254680,12 +258816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51156] = 4, + [50219] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2153), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2172), 1, sym_comment, - ACTIONS(1060), 9, + ACTIONS(5155), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254695,7 +258833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1062), 49, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254707,7 +258845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254736,7 +258874,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254745,12 +258882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51225] = 4, + [50290] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2060), 1, + aux_sym_shebang_repeat1, + STATE(2173), 1, sym_comment, - ACTIONS(1052), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254760,7 +258899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1054), 49, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254772,7 +258911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -254801,7 +258940,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254810,16 +258948,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, - [51294] = 6, + [50361] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2155), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2174), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(5136), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254828,9 +258965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254841,34 +258976,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254877,16 +259014,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, - [51367] = 6, + [50432] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(2156), 1, + STATE(2165), 1, + aux_sym_shebang_repeat1, + STATE(2175), 1, sym_comment, - STATE(7428), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4745), 8, + ACTIONS(5069), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254895,9 +259031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5071), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254908,34 +259042,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254944,79 +259080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51440] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2157), 1, - sym_comment, - ACTIONS(4926), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4924), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [51509] = 5, + [50503] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2149), 1, + STATE(2064), 1, aux_sym_shebang_repeat1, - STATE(2158), 1, + STATE(2176), 1, sym_comment, - ACTIONS(5064), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255026,7 +259097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5066), 48, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255038,7 +259109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -255075,14 +259146,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, - [51580] = 5, + [50574] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5212), 1, - aux_sym_cmd_identifier_token41, - STATE(2159), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2177), 1, sym_comment, - ACTIONS(2243), 8, + ACTIONS(5136), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255091,8 +259163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2247), 48, - sym__newline, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255103,35 +259174,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255140,78 +259212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51650] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2160), 1, - sym_comment, - ACTIONS(1048), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1050), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [51718] = 5, + [50645] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4552), 1, - aux_sym_record_entry_token1, - STATE(2161), 1, + STATE(2067), 1, + aux_sym_shebang_repeat1, + STATE(2178), 1, sym_comment, - ACTIONS(1076), 9, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255221,7 +259229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 47, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255232,35 +259240,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255269,93 +259278,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, - [51788] = 19, + [50716] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2162), 1, - sym_comment, - STATE(2572), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6412), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [51886] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, - STATE(2163), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2179), 1, sym_comment, - ACTIONS(1575), 8, + ACTIONS(5155), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255364,9 +259295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5157), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255377,81 +259306,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51956] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2164), 1, - sym_comment, - ACTIONS(5214), 2, + anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [50787] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2070), 1, + aux_sym_shebang_repeat1, + STATE(2180), 1, + sym_comment, + ACTIONS(5079), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255461,7 +259361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 24, + ACTIONS(5081), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255473,11 +259373,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255486,14 +259410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52042] = 5, + [50858] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5188), 1, + ACTIONS(5210), 1, + anon_sym_DOT, + ACTIONS(5212), 1, aux_sym__immediate_decimal_token2, - STATE(2165), 1, + STATE(2181), 1, sym_comment, - ACTIONS(1497), 10, + ACTIONS(1518), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -255504,7 +259430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1499), 46, + ACTIONS(1520), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -255551,142 +259477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [52112] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4799), 1, - aux_sym_cmd_identifier_token37, - STATE(2166), 1, - sym_comment, - ACTIONS(2259), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2261), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52182] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4799), 1, - aux_sym_cmd_identifier_token37, - STATE(2167), 1, - sym_comment, - ACTIONS(2293), 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(2297), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52252] = 4, + [50931] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2182), 1, sym_comment, - ACTIONS(1076), 9, + ACTIONS(5136), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255696,7 +259494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 48, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255708,7 +259506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -255745,17 +259543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52320] = 6, + [51002] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2141), 1, aux_sym_shebang_repeat1, - STATE(2169), 1, + STATE(2183), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5178), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255765,7 +259560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 45, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255777,6 +259572,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_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -255811,47 +259609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52392] = 14, + [51073] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(2108), 1, aux_sym_shebang_repeat1, - STATE(2170), 1, + STATE(2184), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, + ACTIONS(5214), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255861,7 +259626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 23, + ACTIONS(5216), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255873,55 +259638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52480] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2171), 1, - sym_comment, - ACTIONS(5214), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5178), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5180), 41, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -255952,47 +259675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52554] = 14, + [51144] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(2115), 1, aux_sym_shebang_repeat1, - STATE(2172), 1, + STATE(2185), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256002,7 +259692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 23, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256014,58 +259704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52642] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2173), 1, - sym_comment, - ACTIONS(5214), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5178), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5180), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -256094,49 +259741,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, - [52718] = 15, + [51215] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2174), 1, - sym_comment, - STATE(2183), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + STATE(2186), 1, + sym_comment, + ACTIONS(5136), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256145,7 +259758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 23, + ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256157,62 +259770,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52808] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2175), 1, - sym_comment, - ACTIONS(5214), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, - sym__newline, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51286] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2187), 1, + sym_comment, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256221,7 +259825,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(5144), 22, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256232,10 +259838,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256244,41 +259874,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, - [52898] = 11, + [51359] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2084), 1, aux_sym_shebang_repeat1, - STATE(2176), 1, + STATE(2188), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5073), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5075), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, - sym__newline, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51430] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2189), 1, + sym_comment, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4757), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256287,7 +259958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 27, + ACTIONS(4755), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256298,15 +259971,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256315,44 +260007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52980] = 12, + [51503] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2177), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2190), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, - sym__newline, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256361,7 +260025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 25, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256372,13 +260038,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256387,46 +260074,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53064] = 13, + [51576] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2178), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2191), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, - sym__newline, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256435,7 +260092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 24, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256446,12 +260105,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256460,14 +260141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53150] = 5, - ACTIONS(3), 1, + [51649] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, - STATE(2179), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2192), 1, sym_comment, - ACTIONS(2259), 8, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256476,7 +260159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2261), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -256525,14 +260208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53220] = 5, + [51722] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5212), 1, - aux_sym_cmd_identifier_token41, - STATE(2180), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2193), 1, sym_comment, - ACTIONS(2251), 8, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256541,7 +260226,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(2253), 48, + ACTIONS(4842), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256553,7 +260239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -256590,52 +260275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53290] = 16, + [51795] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2181), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(2194), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, - sym__newline, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256644,7 +260293,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(5144), 21, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256655,9 +260306,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256666,12 +260342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53382] = 4, + [51868] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2155), 1, + aux_sym_shebang_repeat1, + STATE(2195), 1, sym_comment, - ACTIONS(1879), 9, + ACTIONS(5073), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256681,7 +260359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, + ACTIONS(5075), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256693,7 +260371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -256730,86 +260408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53450] = 14, + [51939] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(2031), 1, aux_sym_shebang_repeat1, - STATE(2183), 1, - sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5180), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [53538] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2184), 1, + STATE(2196), 1, sym_comment, - ACTIONS(1961), 9, + ACTIONS(5218), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256819,7 +260425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 48, + ACTIONS(5220), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256831,7 +260437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -256868,12 +260474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53606] = 4, + [52010] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2197), 1, sym_comment, - ACTIONS(2355), 9, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256883,7 +260505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2357), 48, + ACTIONS(5183), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256895,17 +260517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -256932,50 +260543,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53674] = 15, + [52088] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2186), 1, + sym__newline, + STATE(2198), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2257), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, - sym__newline, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256984,7 +260587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 22, + ACTIONS(5150), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256996,6 +260599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -257007,15 +260615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53764] = 5, + [52172] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2187), 1, + STATE(2199), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(4974), 8, + ACTIONS(2309), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257024,8 +260630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 47, - sym__newline, + ACTIONS(2311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257037,33 +260642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257072,20 +260679,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53834] = 6, + [52240] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2188), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5257), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2200), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4974), 8, + STATE(2362), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257094,8 +260736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 43, - sym__newline, + ACTIONS(5201), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257107,29 +260748,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, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257138,23 +260757,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53906] = 7, + [52336] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2201), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(5259), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5261), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5259), 4, + ACTIONS(5261), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4974), 8, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257163,7 +260782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 41, + ACTIONS(5052), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257205,38 +260824,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53980] = 10, + [52410] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(5259), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5261), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5263), 2, + ACTIONS(5265), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5259), 4, + ACTIONS(5261), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5265), 4, + ACTIONS(5267), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5267), 6, + ACTIONS(5269), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257245,7 +260864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 29, + ACTIONS(5052), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257275,41 +260894,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54060] = 11, + [52490] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2191), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(2203), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5263), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5269), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5265), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5267), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + STATE(2295), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257318,8 +260938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 27, - sym__newline, + ACTIONS(5216), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257331,13 +260950,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, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257346,43 +260966,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54142] = 12, + [52574] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5271), 1, - aux_sym_expr_binary_token13, - STATE(2192), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2204), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5263), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5269), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5265), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5267), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5140), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257391,8 +261020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 26, - sym__newline, + ACTIONS(5142), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257404,12 +261032,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, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257418,45 +261042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54226] = 13, - ACTIONS(247), 1, + [52666] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, - aux_sym_expr_binary_token13, - ACTIONS(5273), 1, - aux_sym_expr_binary_token14, - STATE(2193), 1, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, + STATE(2205), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5263), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5269), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5265), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5267), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(2229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257465,7 +261058,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(4972), 25, + ACTIONS(2233), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257477,161 +261071,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54312] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - aux_sym_expr_binary_token13, - ACTIONS(5273), 1, - aux_sym_expr_binary_token14, - ACTIONS(5275), 1, - aux_sym_expr_binary_token15, - STATE(2194), 1, - sym_comment, - ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5261), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5263), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5269), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5265), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5267), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4972), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54400] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - aux_sym_expr_binary_token13, - ACTIONS(5273), 1, - aux_sym_expr_binary_token14, - ACTIONS(5275), 1, - aux_sym_expr_binary_token15, - ACTIONS(5277), 1, - aux_sym_expr_binary_token16, - STATE(2195), 1, - sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5265), 4, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4974), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4972), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257640,51 +261107,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, - [54490] = 16, + [52736] = 15, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, ACTIONS(5271), 1, - aux_sym_expr_binary_token13, - ACTIONS(5273), 1, - aux_sym_expr_binary_token14, - ACTIONS(5275), 1, - aux_sym_expr_binary_token15, - ACTIONS(5277), 1, - aux_sym_expr_binary_token16, - ACTIONS(5279), 1, - aux_sym_expr_binary_token17, - STATE(2196), 1, + sym__newline, + STATE(2206), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5263), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5269), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5265), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5267), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + STATE(2380), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257693,8 +261158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 22, - sym__newline, + ACTIONS(5216), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257706,8 +261170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token18, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257716,33 +261182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54582] = 9, + [52826] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2197), 1, + ACTIONS(5288), 1, + aux_sym_cmd_identifier_token41, + STATE(2207), 1, sym_comment, - ACTIONS(5257), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5263), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5259), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(2237), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257751,7 +261198,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(4972), 33, + ACTIONS(2241), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257763,8 +261211,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, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -257777,6 +261233,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257785,26 +261247,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54660] = 8, + [52896] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2198), 1, + ACTIONS(5292), 1, + aux_sym_expr_binary_token13, + ACTIONS(5294), 1, + aux_sym_expr_binary_token14, + STATE(2208), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(5259), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5261), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5263), 2, + ACTIONS(5265), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5259), 4, + ACTIONS(5290), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5261), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4974), 8, + ACTIONS(5267), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257813,7 +261294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 39, + ACTIONS(5052), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257827,24 +261308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257853,49 +261320,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, - [54736] = 15, + [52982] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2199), 1, + STATE(2209), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, + ACTIONS(5203), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257905,7 +261340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 22, + ACTIONS(5205), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257917,9 +261352,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257928,51 +261386,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54826] = 16, + [53054] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2200), 1, + STATE(2210), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, + ACTIONS(5195), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257982,7 +261424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 21, + ACTIONS(5197), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257994,8 +261436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258004,12 +261456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54918] = 4, + [53134] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2201), 1, + STATE(2211), 1, sym_comment, - ACTIONS(2443), 9, + ACTIONS(5046), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258019,7 +261471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2445), 48, + ACTIONS(5044), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258031,7 +261483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -258068,53 +261520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54986] = 17, + [53202] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5281), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2202), 1, + STATE(2212), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, + ACTIONS(5140), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258124,7 +261548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 20, + ACTIONS(5142), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258136,7 +261560,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258145,51 +261588,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55080] = 16, + [53278] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2186), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2203), 1, + STATE(2213), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(5140), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258198,7 +261634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 22, + ACTIONS(5142), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258210,6 +261646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -258221,35 +261660,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, - [55172] = 10, + [53362] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2204), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5178), 9, + ACTIONS(5195), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258259,7 +261680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 31, + ACTIONS(5197), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258271,6 +261692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -258283,6 +261712,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258291,29 +261726,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, - [55252] = 9, + [53434] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2205), 1, + STATE(2215), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5178), 9, - sym__newline, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5290), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5267), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258322,7 +261769,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(5180), 37, + ACTIONS(5052), 27, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258334,24 +261782,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + anon_sym_RBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53516] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5296), 1, + sym__newline, + STATE(2216), 1, + sym_comment, + STATE(2336), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5199), 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(5201), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258360,13 +261873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55330] = 4, + [53608] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2206), 1, + ACTIONS(5288), 1, + aux_sym_cmd_identifier_token41, + STATE(2217), 1, sym_comment, - ACTIONS(2453), 9, - sym__newline, + ACTIONS(2245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258375,7 +261889,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(2455), 48, + ACTIONS(2247), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258386,10 +261902,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53678] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(2218), 1, + sym_comment, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5199), 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(5201), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -258424,13 +262005,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, - [55398] = 4, + [53752] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2207), 1, + ACTIONS(5292), 1, + aux_sym_expr_binary_token13, + ACTIONS(5294), 1, + aux_sym_expr_binary_token14, + ACTIONS(5299), 1, + aux_sym_expr_binary_token15, + STATE(2219), 1, sym_comment, - ACTIONS(2457), 9, - sym__newline, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5290), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5267), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258439,7 +262054,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(2459), 48, + ACTIONS(5052), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258451,35 +262067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258488,52 +262079,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55466] = 16, + [53840] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2208), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(2220), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2277), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258542,7 +262132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 21, + ACTIONS(5216), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258554,6 +262144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -258564,53 +262155,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55558] = 17, + [53932] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5281), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(2221), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(1070), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1072), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54000] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4572), 1, + aux_sym_record_entry_token1, + STATE(2222), 1, + sym_comment, + ACTIONS(1070), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258620,7 +262236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 20, + ACTIONS(1072), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258631,8 +262247,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258641,53 +262284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55652] = 17, + [54070] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2200), 1, - aux_sym_shebang_repeat1, - STATE(2210), 1, + STATE(2223), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(2388), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258696,7 +262299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 21, + ACTIONS(2390), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258708,8 +262311,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258718,36 +262348,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55746] = 10, + [54138] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2211), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2224), 1, + sym_comment, + STATE(2286), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6596), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [54236] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5271), 1, + sym__newline, + STATE(2225), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2299), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5228), 6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, - sym__newline, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258756,7 +262482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 31, + ACTIONS(5216), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258768,18 +262494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258788,25 +262504,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55826] = 5, + [54330] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5287), 1, - aux_sym__immediate_decimal_token2, - STATE(2212), 1, + ACTIONS(5301), 1, + anon_sym_QMARK2, + STATE(2226), 1, sym_comment, - ACTIONS(1565), 10, + ACTIONS(1022), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1567), 46, + anon_sym_DOT, + ACTIONS(1024), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -258843,9 +262556,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [54400] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2227), 1, + sym_comment, + ACTIONS(1042), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1044), 50, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -258853,54 +262633,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55896] = 19, + [54468] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(5303), 1, + anon_sym_QMARK2, + STATE(2228), 1, + sym_comment, + ACTIONS(1028), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1030), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [54538] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5230), 1, + sym__newline, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2229), 1, + sym_comment, + STATE(2281), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5148), 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(5150), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54632] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, + ACTIONS(5173), 1, anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2162), 1, - aux_sym_decl_def_repeat1, - STATE(2213), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2230), 1, sym_comment, - STATE(2743), 1, + STATE(2272), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, sym_long_flag, - STATE(6564), 1, + STATE(6533), 1, sym__command_name, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [54730] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2231), 1, + sym_comment, + ACTIONS(1038), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1040), 50, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -258932,29 +262899,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [55994] = 9, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [54798] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2214), 1, + ACTIONS(5292), 1, + aux_sym_expr_binary_token13, + STATE(2232), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 9, - sym__newline, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5290), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5267), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258963,7 +262963,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(5144), 37, + ACTIONS(5052), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258975,24 +262976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259001,54 +262990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56072] = 19, + [54882] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5164), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5166), 1, - sym__newline, - STATE(2215), 1, + STATE(2233), 1, sym_comment, - STATE(2450), 1, - aux_sym_command_list_repeat1, - STATE(2680), 1, - aux_sym_shebang_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7033), 1, - sym__command_name, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5158), 5, + ACTIONS(1034), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1036), 50, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -259080,18 +263035,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [56170] = 6, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [54950] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2216), 1, + ACTIONS(5230), 1, + sym__newline, + STATE(2234), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2259), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5142), 9, - sym__newline, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259100,7 +263101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 45, + ACTIONS(5150), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259112,32 +263113,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55036] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5305), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2235), 1, + sym_comment, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5140), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5142), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259146,15 +263204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56242] = 5, - ACTIONS(3), 1, + [55130] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(2217), 1, - sym_comment, - ACTIONS(2259), 9, + ACTIONS(5307), 1, sym__newline, + STATE(2236), 1, + sym_comment, + STATE(2282), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259163,7 +263225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2261), 47, + ACTIONS(5220), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259175,8 +263237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -259211,12 +263271,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56312] = 4, + [55204] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2218), 1, + STATE(2237), 1, + sym_comment, + ACTIONS(1560), 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(1572), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55272] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2238), 1, sym_comment, - ACTIONS(2364), 9, + ACTIONS(2342), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259226,7 +263350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2366), 48, + ACTIONS(2344), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259238,7 +263362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -259275,12 +263399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56380] = 4, + [55340] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2239), 1, sym_comment, - ACTIONS(2364), 9, + ACTIONS(2305), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259290,7 +263414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2366), 48, + ACTIONS(2307), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259302,7 +263426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -259339,14 +263463,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, - [56448] = 5, + [55408] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_LBRACK2, - STATE(2220), 1, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(2240), 1, sym_comment, - ACTIONS(2303), 8, + ACTIONS(2237), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259355,9 +263480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2241), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259368,34 +263491,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259404,14 +263528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56518] = 5, - ACTIONS(3), 1, + [55478] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(2221), 1, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(2241), 1, sym_comment, - ACTIONS(2293), 9, + ACTIONS(2245), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259421,7 +263545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2297), 47, + ACTIONS(2247), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259469,14 +263593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56588] = 5, + [55548] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4712), 1, - aux_sym_unquoted_token2, - STATE(2222), 1, + STATE(2242), 1, sym_comment, - ACTIONS(1575), 8, + ACTIONS(2458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259485,8 +263607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 48, - ts_builtin_sym_end, + ACTIONS(2460), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259498,6 +263619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -259534,12 +263657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56658] = 4, + [55616] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2223), 1, + STATE(2243), 1, sym_comment, - ACTIONS(2372), 9, + ACTIONS(2305), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259549,7 +263672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2374), 48, + ACTIONS(2307), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259561,7 +263684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -259598,12 +263721,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56726] = 4, + [55684] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2224), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2244), 1, sym_comment, - ACTIONS(2376), 9, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5195), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259613,7 +263746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2378), 48, + ACTIONS(5197), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259625,13 +263758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -259662,14 +263788,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, - [56794] = 5, - ACTIONS(3), 1, + [55758] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(2225), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2245), 1, sym_comment, - ACTIONS(1575), 9, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259679,7 +263808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 47, + ACTIONS(5183), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259691,8 +263820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -259727,184 +263854,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, - [56864] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5291), 1, - anon_sym_QMARK2, - STATE(2226), 1, - sym_comment, - ACTIONS(1034), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1036), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [56934] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5293), 1, - anon_sym_QMARK2, - STATE(2227), 1, - sym_comment, - ACTIONS(1028), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1030), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [57004] = 17, + [55830] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5281), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2228), 1, + ACTIONS(5296), 1, + sym__newline, + STATE(2246), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2326), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259913,7 +263905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 20, + ACTIONS(5201), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259925,6 +263917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -259934,23 +263929,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57098] = 7, + [55920] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2229), 1, + ACTIONS(5307), 1, + sym__newline, + STATE(2247), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2274), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 9, - sym__newline, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259959,7 +263955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 41, + ACTIONS(5220), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260001,12 +263997,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57172] = 4, + [55996] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2230), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2248), 1, sym_comment, - ACTIONS(2384), 9, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5203), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260016,7 +264022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2386), 48, + ACTIONS(5205), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260028,13 +264034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -260065,13 +264064,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, - [57240] = 4, + [56070] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2231), 1, + ACTIONS(4726), 1, + aux_sym_unquoted_token2, + STATE(2249), 1, sym_comment, - ACTIONS(2388), 9, + ACTIONS(1560), 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(1572), 48, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56140] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5292), 1, + aux_sym_expr_binary_token13, + ACTIONS(5294), 1, + aux_sym_expr_binary_token14, + ACTIONS(5299), 1, + aux_sym_expr_binary_token15, + ACTIONS(5310), 1, + aux_sym_expr_binary_token16, + STATE(2250), 1, + sym_comment, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5290), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5267), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260080,7 +264180,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(2390), 48, + ACTIONS(5052), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260092,35 +264193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260129,17 +264204,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57308] = 6, + [56230] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(2251), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5204), 9, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260149,7 +264229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 45, + ACTIONS(5183), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260161,10 +264241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -260195,55 +264271,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57380] = 18, + [56304] = 18, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5245), 1, + sym__newline, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, + ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, + ACTIONS(5255), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(5297), 1, + ACTIONS(5257), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2202), 1, - aux_sym_shebang_repeat1, - STATE(2233), 1, + STATE(2252), 1, sym_comment, - ACTIONS(5235), 2, + STATE(2289), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260252,7 +264328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 20, + ACTIONS(5150), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260273,233 +264349,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57476] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2234), 1, - sym_comment, - STATE(2572), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6604), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [57574] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2816), 1, - anon_sym_DOLLAR, - ACTIONS(5299), 1, - anon_sym_LPAREN2, - ACTIONS(5301), 1, - anon_sym_DOT, - ACTIONS(5305), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5307), 1, - aux_sym__immediate_decimal_token5, - STATE(2235), 1, - sym_comment, - STATE(2584), 1, - sym__immediate_decimal, - ACTIONS(5303), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2739), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [57660] = 4, + [56400] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2236), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2253), 1, sym_comment, - ACTIONS(4992), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4990), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [57728] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2237), 1, - sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5190), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260509,7 +264377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 45, + ACTIONS(5183), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260521,12 +264389,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -260555,36 +264417,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57800] = 10, + [56476] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5159), 1, + anon_sym_DOT, + STATE(2254), 1, + sym_comment, + STATE(2381), 1, + aux_sym_cell_path_repeat1, + STATE(2478), 1, + sym_path, + ACTIONS(1011), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1013), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [56550] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5230), 1, + sym__newline, + STATE(2253), 1, aux_sym_shebang_repeat1, - STATE(2238), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260593,7 +264513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 31, + ACTIONS(5150), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260605,6 +264525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -260617,6 +264539,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260625,19 +264553,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57880] = 7, + [56628] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2216), 1, + STATE(2212), 1, aux_sym_shebang_repeat1, - STATE(2239), 1, + STATE(2256), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5208), 8, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260646,7 +264582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 45, + ACTIONS(5220), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260658,12 +264594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -260692,37 +264622,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, - [57954] = 11, + [56706] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(2204), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2240), 1, + STATE(2257), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5251), 6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260731,7 +264665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 31, + ACTIONS(5183), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260751,10 +264685,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260763,19 +264693,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58036] = 7, + [56788] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(2169), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2241), 1, + STATE(2258), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5200), 8, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5140), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260784,7 +264741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 45, + ACTIONS(5142), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260796,32 +264753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260830,12 +264766,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58110] = 4, + [56874] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2242), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2259), 1, sym_comment, - ACTIONS(4888), 8, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260844,9 +264812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4886), 49, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5183), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260857,35 +264823,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_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260894,12 +264838,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58178] = 4, + [56958] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2260), 1, sym_comment, - ACTIONS(1345), 9, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5140), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260909,7 +264876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1349), 48, + ACTIONS(5142), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260921,17 +264888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -260944,12 +264900,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260958,23 +264908,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58246] = 7, + [57038] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5296), 1, + sym__newline, + STATE(2248), 1, aux_sym_shebang_repeat1, - STATE(2244), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5204), 9, - sym__newline, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260983,7 +264934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 41, + ACTIONS(5201), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261025,24 +264976,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58320] = 8, + [57114] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2229), 1, - aux_sym_shebang_repeat1, - STATE(2245), 1, + STATE(2262), 1, sym_comment, - ACTIONS(5235), 2, + STATE(2328), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 4, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5208), 8, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261051,7 +265020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 41, + ACTIONS(5220), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261063,10 +265032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -261075,16 +265040,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261093,23 +265048,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58396] = 7, + [57198] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2246), 1, + ACTIONS(5292), 1, + aux_sym_expr_binary_token13, + ACTIONS(5294), 1, + aux_sym_expr_binary_token14, + ACTIONS(5299), 1, + aux_sym_expr_binary_token15, + ACTIONS(5310), 1, + aux_sym_expr_binary_token16, + ACTIONS(5312), 1, + aux_sym_expr_binary_token17, + STATE(2263), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5290), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5267), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261118,7 +265101,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(5192), 41, + ACTIONS(5052), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261130,28 +265114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261160,25 +265124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58470] = 8, + [57290] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2247), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5204), 9, + ACTIONS(2362), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261188,7 +265139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 39, + ACTIONS(2364), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261200,6 +265151,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_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -261228,25 +265188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58546] = 8, + [57358] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2248), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 9, + ACTIONS(2366), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261256,7 +265203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 39, + ACTIONS(2368), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261268,6 +265215,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_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -261296,27 +265252,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, - [58622] = 9, + [57426] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, - sym__newline, - STATE(2248), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2249), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5208), 8, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261325,7 +265280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 39, + ACTIONS(5205), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261365,12 +265320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58700] = 4, + [57502] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2250), 1, + STATE(2267), 1, sym_comment, - ACTIONS(4926), 8, + ACTIONS(4884), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261379,7 +265334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4924), 49, + ACTIONS(4882), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261429,91 +265384,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58768] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT, - STATE(2251), 1, - sym_comment, - STATE(2263), 1, - aux_sym_cell_path_repeat1, - STATE(2455), 1, - sym_path, - ACTIONS(1017), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1019), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [58842] = 8, + [57570] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(2171), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2252), 1, + STATE(2268), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 4, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5200), 8, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261522,7 +265422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 41, + ACTIONS(5205), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261534,10 +265434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -261550,12 +265446,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261564,41 +265454,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58918] = 11, + [57650] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2253), 1, + ACTIONS(5230), 1, + sym__newline, + STATE(2269), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2292), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, - sym__newline, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261607,7 +265493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 27, + ACTIONS(5150), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261627,6 +265513,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261635,12 +265525,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59000] = 4, + [57732] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2270), 1, sym_comment, - ACTIONS(4996), 9, + ACTIONS(2328), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261650,7 +265540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4994), 48, + ACTIONS(2330), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261662,7 +265552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -261699,42 +265589,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, - [59068] = 12, + [57800] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(2255), 1, - sym_comment, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, STATE(2271), 1, + sym_comment, + STATE(2273), 1, aux_sym_shebang_repeat1, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261743,7 +265638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 27, + ACTIONS(5150), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261755,9 +265650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, @@ -261771,28 +265663,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59152] = 9, + [57888] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2272), 1, + sym_comment, + STATE(2626), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6315), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [57986] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2256), 1, + STATE(2273), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5181), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5183), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58072] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2274), 1, + sym_comment, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5190), 9, + ACTIONS(5140), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261802,7 +265840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 37, + ACTIONS(5142), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261814,6 +265852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -261840,43 +265882,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, - [59230] = 12, + [58146] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2257), 1, + STATE(2275), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261886,7 +265932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 25, + ACTIONS(5183), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261898,8 +265944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -261912,45 +265956,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59314] = 13, + [58234] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2258), 1, - sym_comment, - STATE(2307), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - ACTIONS(5235), 2, + STATE(2276), 1, + sym_comment, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261959,7 +266003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 25, + ACTIONS(5220), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261985,12 +266029,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, - [59400] = 4, + [58320] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2259), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2277), 1, sym_comment, - ACTIONS(5312), 9, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5195), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262000,7 +266081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 48, + ACTIONS(5197), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262012,35 +266093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262049,30 +266104,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59468] = 10, + [58410] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(2205), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2260), 1, + STATE(2278), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5200), 8, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262081,7 +266156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 37, + ACTIONS(5183), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262093,24 +266168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262119,25 +266179,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59548] = 8, + [58500] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2261), 1, + STATE(2279), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5216), 4, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5190), 9, + ACTIONS(5140), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262147,7 +266210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 39, + ACTIONS(5142), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262159,8 +266222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -262187,19 +266248,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, - [59624] = 7, + [58578] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2232), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2262), 1, + STATE(2280), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5194), 8, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262208,7 +266276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 45, + ACTIONS(5197), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262220,12 +266288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -262254,175 +266316,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59698] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DOT, - STATE(2455), 1, - sym_path, - STATE(2263), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1023), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [59770] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2264), 1, - sym_comment, - ACTIONS(1575), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1587), 49, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59838] = 13, + [58654] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2265), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262432,7 +266370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 24, + ACTIONS(5183), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262444,9 +266382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -262457,12 +266392,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, - [59924] = 4, + [58746] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2266), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2282), 1, sym_comment, - ACTIONS(2436), 8, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5140), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262471,8 +266412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2438), 49, - sym__newline, + ACTIONS(5142), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262484,81 +266424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59992] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2244), 1, - aux_sym_shebang_repeat1, - STATE(2267), 1, - sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5194), 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(5196), 41, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -262589,47 +266458,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60068] = 14, + [58818] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3015), 1, + anon_sym_DQUOTE, + ACTIONS(5167), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5169), 1, + sym__newline, + STATE(2283), 1, + sym_comment, + STATE(2507), 1, + aux_sym_command_list_repeat1, + STATE(2716), 1, + aux_sym_shebang_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6913), 1, + sym__val_number_decimal, + STATE(7023), 1, + sym__command_name, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3017), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5161), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5165), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5163), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [58916] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5309), 1, - sym__newline, - STATE(2164), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2284), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262638,7 +266580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 24, + ACTIONS(5205), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262650,6 +266592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, @@ -262663,27 +266608,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60156] = 9, + [58998] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2173), 1, + STATE(2266), 1, aux_sym_shebang_repeat1, - STATE(2269), 1, + STATE(2285), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5200), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262692,7 +266637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 39, + ACTIONS(5201), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262732,109 +266677,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60234] = 9, + [59076] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2247), 1, - aux_sym_shebang_repeat1, - STATE(2270), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2286), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5194), 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(5196), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + STATE(2626), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6406), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [59174] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2287), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7263), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [59308] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2288), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7267), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [59442] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5282), 1, aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5305), 1, aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60312] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2271), 1, + STATE(2289), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262844,7 +267006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5144), 27, + ACTIONS(5183), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262856,13 +267018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -262872,47 +267027,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60394] = 14, + [59536] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + ACTIONS(5314), 1, + aux_sym__immediate_decimal_token2, + STATE(2290), 1, + sym_comment, + ACTIONS(1554), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1556), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [59606] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2291), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, + sym__expr_binary_expression, + STATE(7290), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [59740] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2272), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262922,7 +267227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 23, + ACTIONS(5183), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262934,10 +267239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262946,40 +267259,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, - [60482] = 11, + [59820] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2293), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, + ACTIONS(5140), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262989,7 +267309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 27, + ACTIONS(5142), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263001,10 +267321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -263017,79 +267333,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, - [60564] = 5, + [59908] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(2274), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2294), 1, sym_comment, - ACTIONS(2243), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2247), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60634] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(2275), 1, - sym_comment, - ACTIONS(2251), 9, + ACTIONS(5203), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263099,7 +267379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2253), 47, + ACTIONS(5205), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263111,34 +267391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263147,49 +267405,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, - [60704] = 15, + [59992] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5309), 1, - sym__newline, - STATE(2172), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263198,7 +267448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 23, + ACTIONS(5197), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263210,6 +267460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -263222,9 +267476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60794] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, + [60074] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, ACTIONS(227), 1, anon_sym_0b, ACTIONS(231), 1, @@ -263237,65 +267491,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(395), 1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, anon_sym_DASH, - ACTIONS(3199), 1, + ACTIONS(3215), 1, anon_sym_null, - ACTIONS(3249), 1, + ACTIONS(3265), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, aux_sym_expr_unary_token1, - ACTIONS(3301), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, + ACTIONS(5191), 1, + anon_sym_DOT_DOT, + STATE(1418), 1, sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, + STATE(1646), 1, sym__expr_unary_minus, - STATE(1676), 1, + STATE(1647), 1, sym__val_number, - STATE(1708), 1, + STATE(1729), 1, sym__inter_single_quotes, - STATE(1709), 1, + STATE(1732), 1, sym__inter_double_quotes, - STATE(2277), 1, + STATE(2296), 1, sym_comment, - STATE(2837), 1, + STATE(3507), 1, sym__val_number_decimal, - STATE(3484), 1, + STATE(3520), 1, sym_val_range, - STATE(3785), 1, + STATE(3556), 1, + sym_expr_parenthesized, + STATE(3559), 1, + sym_val_variable, + STATE(3820), 1, sym__expr_binary_expression, - STATE(5579), 1, + STATE(7231), 1, sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3197), 2, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - STATE(1606), 3, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1687), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -263306,7 +267560,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(1675), 12, + STATE(1643), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -263319,42 +267573,96 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60928] = 12, + [60208] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + STATE(2297), 1, + sym_comment, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5054), 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(5052), 43, sym__newline, - STATE(2253), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60280] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5230), 1, + sym__newline, + STATE(2197), 1, aux_sym_shebang_repeat1, - STATE(2278), 1, + STATE(2298), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263363,7 +267671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 27, + ACTIONS(5150), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263383,6 +267691,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263391,49 +267709,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61012] = 15, + [60360] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, + ACTIONS(5278), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, + ACTIONS(5280), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2279), 1, + STATE(2299), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, + ACTIONS(5195), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263443,7 +267763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 22, + ACTIONS(5197), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263455,7 +267775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -263466,45 +267785,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61102] = 13, + [60452] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2257), 1, + STATE(2284), 1, aux_sym_shebang_repeat1, - STATE(2280), 1, + STATE(2300), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263513,7 +267829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 25, + ACTIONS(5201), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263525,6 +267841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, @@ -263539,51 +267857,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, - [61188] = 16, + [60536] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2175), 1, + STATE(2258), 1, aux_sym_shebang_repeat1, - STATE(2281), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263592,7 +267906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 22, + ACTIONS(5220), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263604,6 +267918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -263615,47 +267931,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61280] = 14, + [60624] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5314), 1, + STATE(2302), 1, + sym_comment, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5054), 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(5052), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60700] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3015), 1, + anon_sym_DQUOTE, + ACTIONS(5167), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5169), 1, + sym__newline, + STATE(2303), 1, + sym_comment, + STATE(2495), 1, + aux_sym_command_list_repeat1, + STATE(2716), 1, + aux_sym_shebang_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6861), 1, + sym__command_name, + STATE(6913), 1, + sym__val_number_decimal, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3017), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5161), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5165), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5163), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [60798] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2304), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5572), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [60932] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5230), 1, sym__newline, - STATE(2265), 1, + STATE(2251), 1, aux_sym_shebang_repeat1, - STATE(2282), 1, + STATE(2305), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263664,7 +268201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 24, + ACTIONS(5150), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263676,164 +268213,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [61368] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2283), 1, - sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5206), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [61460] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5309), 1, - sym__newline, - STATE(2181), 1, - aux_sym_shebang_repeat1, - STATE(2284), 1, - sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5210), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263842,42 +268243,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, - [61554] = 12, + [61008] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5230), 1, sym__newline, - STATE(2176), 1, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2275), 1, aux_sym_shebang_repeat1, - STATE(2285), 1, + STATE(2306), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263886,7 +268294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 27, + ACTIONS(5150), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263898,10 +268306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -263914,49 +268318,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, - [61638] = 15, + [61098] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5314), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2272), 1, + STATE(2293), 1, aux_sym_shebang_repeat1, - STATE(2286), 1, + STATE(2307), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263965,7 +268369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 23, + ACTIONS(5220), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263989,54 +268393,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61728] = 17, + [61188] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, ACTIONS(5255), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5281), 1, + ACTIONS(5257), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2287), 1, + STATE(2308), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2341), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, - sym__newline, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264045,7 +268450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 20, + ACTIONS(5216), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264066,51 +268471,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61822] = 16, + [61284] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5249), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, + ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, + ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5314), 1, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5296), 1, sym__newline, - STATE(2279), 1, - aux_sym_shebang_repeat1, - STATE(2288), 1, + STATE(2309), 1, sym_comment, - ACTIONS(5235), 2, + STATE(2347), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264119,7 +268526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 22, + ACTIONS(5201), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264131,7 +268538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -264142,55 +268548,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61914] = 18, + [61378] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(5297), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2209), 1, - aux_sym_shebang_repeat1, - STATE(2289), 1, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2310), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5607), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [61512] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2311), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5547), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [61646] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2312), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5548), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [61780] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, + STATE(2313), 1, + sym_comment, + ACTIONS(1560), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264199,7 +268856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 20, + ACTIONS(1572), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264211,65 +268868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62010] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2290), 1, - sym_comment, - ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5204), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5206), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -264282,6 +268890,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264290,37 +268904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62090] = 11, + [61850] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, - sym__newline, - STATE(2211), 1, - aux_sym_shebang_repeat1, - STATE(2291), 1, + ACTIONS(5316), 1, + aux_sym_cmd_identifier_token41, + STATE(2314), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5208), 8, + ACTIONS(2237), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264329,7 +268920,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(5210), 31, + ACTIONS(2241), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264340,19 +268932,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264361,13 +268969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62172] = 4, + [61920] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2292), 1, + ACTIONS(5316), 1, + aux_sym_cmd_identifier_token41, + STATE(2315), 1, sym_comment, - ACTIONS(2259), 9, - sym__newline, + ACTIONS(2245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264376,7 +268985,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(2261), 48, + ACTIONS(2247), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264387,36 +268997,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264425,29 +269034,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62240] = 9, + [61990] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2293), 1, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2316), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5566), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [62124] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5307), 1, + sym__newline, + STATE(2317), 1, sym_comment, - ACTIONS(5214), 2, + STATE(2335), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5216), 4, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5204), 9, - sym__newline, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264456,7 +269184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 37, + ACTIONS(5220), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264468,24 +269196,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264494,53 +269207,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62318] = 17, + [62216] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5314), 1, - sym__newline, - STATE(2283), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2294), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264549,7 +269253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 21, + ACTIONS(5197), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264561,6 +269265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -264571,30 +269279,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62412] = 10, - ACTIONS(247), 1, + [62300] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5309), 1, - sym__newline, - STATE(2214), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2553), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + anon_sym_LPAREN2, + ACTIONS(5320), 1, + anon_sym_DOT, + ACTIONS(5324), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token5, + STATE(2319), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5208), 8, + STATE(2653), 1, + sym__immediate_decimal, + ACTIONS(5322), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264603,36 +269343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 37, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264641,194 +269351,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, - [62492] = 18, + aux_sym__unquoted_in_list_token1, + [62386] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(5297), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2287), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2296), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5196), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62588] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2297), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7467), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [62722] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(2237), 1, - aux_sym_shebang_repeat1, - STATE(2298), 1, - sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5154), 8, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264837,7 +269400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 45, + ACTIONS(5205), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264849,32 +269412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264883,44 +269425,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62796] = 12, + [62472] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5307), 1, + sym__newline, + STATE(2204), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, + ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264929,7 +269480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 25, + ACTIONS(5220), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264941,10 +269492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -264955,24 +269502,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62880] = 8, + [62566] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, + STATE(2322), 1, + sym_comment, + ACTIONS(1560), 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(1572), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62636] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2246), 1, + STATE(2268), 1, aux_sym_shebang_repeat1, - STATE(2300), 1, + STATE(2323), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 4, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5154), 8, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264981,7 +269606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 41, + ACTIONS(5201), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264993,10 +269618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -265009,12 +269630,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62718] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + STATE(2294), 1, + aux_sym_shebang_repeat1, + STATE(2324), 1, + sym_comment, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5199), 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(5201), 25, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265023,124 +269711,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62956] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2301), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7444), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63090] = 9, + [62804] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(2261), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2302), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5237), 4, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5154), 8, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265149,7 +269742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 39, + ACTIONS(5205), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265161,8 +269754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -265189,37 +269780,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63168] = 11, + [62882] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2290), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2303), 1, + STATE(2326), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5251), 6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5194), 8, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265228,7 +269830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 31, + ACTIONS(5205), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265240,18 +269842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265260,42 +269854,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63250] = 12, + [62970] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5245), 1, sym__newline, - STATE(2273), 1, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5257), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2235), 1, aux_sym_shebang_repeat1, - STATE(2304), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5241), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265304,7 +269911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 27, + ACTIONS(5220), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265316,13 +269923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -265332,45 +269932,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, - [63334] = 13, + [63066] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(2299), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2305), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5140), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265379,7 +269975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 25, + ACTIONS(5142), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265391,6 +269987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, @@ -265405,15 +270003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63420] = 5, + [63148] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token2, - STATE(2306), 1, - sym_comment, - ACTIONS(1575), 9, + ACTIONS(5271), 1, sym__newline, + STATE(2214), 1, + aux_sym_shebang_repeat1, + STATE(2329), 1, + sym_comment, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265422,7 +270024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 47, + ACTIONS(5216), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265434,8 +270036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -265470,44 +270070,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, - [63490] = 12, + [63222] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, - sym__newline, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265516,7 +270087,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(5144), 25, + ACTIONS(5052), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265528,12 +270100,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_RBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265542,45 +270135,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63574] = 13, + [63292] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2177), 1, + STATE(2260), 1, aux_sym_shebang_repeat1, - STATE(2308), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265589,7 +270174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 25, + ACTIONS(5220), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265601,12 +270186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265615,47 +270206,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63660] = 14, + [63374] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5320), 1, - sym__newline, - STATE(2309), 1, - sym_comment, - STATE(2314), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5235), 2, + STATE(2332), 1, + sym_comment, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265664,7 +270254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 24, + ACTIONS(5197), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265689,14 +270279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63748] = 6, + [63460] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5103), 1, - sym__newline, - STATE(2310), 1, + ACTIONS(5328), 1, + anon_sym_LBRACK2, + STATE(2333), 1, sym_comment, - ACTIONS(5110), 8, + ACTIONS(2313), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265705,7 +270295,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(5106), 20, + ACTIONS(2317), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265716,8 +270308,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265726,17 +270344,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5108), 28, + [63530] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + sym__newline, + STATE(2279), 1, + aux_sym_shebang_repeat1, + STATE(2334), 1, + sym_comment, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5237), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5218), 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(5220), 37, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -265755,49 +270406,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [63820] = 15, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63610] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, + ACTIONS(5278), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5320), 1, - sym__newline, - STATE(2170), 1, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2311), 1, + STATE(2335), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5140), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265806,7 +270466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 23, + ACTIONS(5142), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265818,7 +270478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -265830,30 +270489,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, - [63910] = 10, + [63700] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2293), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2312), 1, + STATE(2336), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5194), 8, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5203), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5205), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63790] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2337), 1, + sym_comment, + ACTIONS(2338), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265862,7 +270579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 37, + ACTIONS(2340), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265874,6 +270591,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_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -265900,51 +270628,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63990] = 16, + [63858] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2338), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5615), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [63992] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2339), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5551), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [64126] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_null, + ACTIONS(3265), 1, + anon_sym_LBRACK, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + aux_sym_expr_unary_token1, + ACTIONS(3317), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4972), 1, + anon_sym_LPAREN, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym__str_double_quotes, + STATE(1445), 1, + sym_expr_parenthesized, + STATE(1446), 1, + sym_val_variable, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(1647), 1, + sym__val_number, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2340), 1, + sym_comment, + STATE(2846), 1, + sym__val_number_decimal, + STATE(3520), 1, + sym_val_range, + STATE(3822), 1, + sym__expr_binary_expression, + STATE(5559), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1687), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1643), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [64260] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, + ACTIONS(5278), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, + ACTIONS(5280), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5320), 1, - sym__newline, - STATE(2199), 1, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5305), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2313), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265953,7 +270975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 22, + ACTIONS(5197), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265965,8 +270987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -265976,46 +270996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64082] = 13, + [64354] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(2244), 1, aux_sym_shebang_repeat1, - STATE(2314), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, + ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266024,7 +271022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 24, + ACTIONS(5216), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266036,11 +271034,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266049,53 +271064,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64168] = 17, + [64430] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5320), 1, + ACTIONS(5212), 1, + aux_sym__immediate_decimal_token2, + STATE(2343), 1, + sym_comment, + ACTIONS(1518), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1520), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64500] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5123), 1, sym__newline, - STATE(2208), 1, - aux_sym_shebang_repeat1, - STATE(2315), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5130), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266104,7 +271145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 21, + ACTIONS(5126), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266116,8 +271157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266126,55 +271166,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64262] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(5297), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2228), 1, - aux_sym_shebang_repeat1, - STATE(2316), 1, - sym_comment, - ACTIONS(5235), 2, + ACTIONS(5128), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + [64572] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2345), 1, + sym_comment, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266183,7 +271226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 20, + ACTIONS(5197), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266195,7 +271238,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266204,37 +271264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64358] = 11, + [64650] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - STATE(2238), 1, + STATE(2245), 1, aux_sym_shebang_repeat1, - STATE(2317), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5233), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5251), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5154), 8, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266243,7 +271285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 31, + ACTIONS(5150), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266255,6 +271297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -266267,6 +271317,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266275,47 +271331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64440] = 14, + [64724] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(5245), 1, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2178), 1, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2347), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5200), 8, + ACTIONS(5203), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266324,7 +271385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 24, + ACTIONS(5205), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266336,9 +271397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -266349,30 +271407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64528] = 10, + [64816] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(2256), 1, - aux_sym_shebang_repeat1, - STATE(2319), 1, + STATE(2348), 1, sym_comment, - ACTIONS(5235), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5237), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5154), 8, + ACTIONS(2348), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266381,7 +271422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 37, + ACTIONS(2350), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266393,6 +271434,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_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -266419,208 +271471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64608] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2320), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5597), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [64742] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2321), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5599), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [64876] = 5, + [64884] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5323), 1, - aux_sym_cmd_identifier_token41, - STATE(2322), 1, + STATE(2349), 1, sym_comment, - ACTIONS(2243), 8, + ACTIONS(1311), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266629,9 +271486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2247), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1307), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266642,34 +271497,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266678,14 +271535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64946] = 5, + [64952] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5323), 1, - aux_sym_cmd_identifier_token41, - STATE(2323), 1, + STATE(2350), 1, sym_comment, - ACTIONS(2251), 8, + ACTIONS(2380), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266694,9 +271550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2253), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2382), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266707,34 +271561,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266743,7 +271599,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, - [65016] = 37, + [65020] = 37, ACTIONS(217), 1, aux_sym__val_number_decimal_token1, ACTIONS(219), 1, @@ -266764,239 +271620,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(395), 1, + ACTIONS(397), 1, anon_sym_DASH, - ACTIONS(3199), 1, + ACTIONS(3215), 1, anon_sym_null, - ACTIONS(3249), 1, + ACTIONS(3265), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, aux_sym_expr_unary_token1, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - ACTIONS(5325), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2324), 1, - sym_comment, - STATE(3454), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3518), 1, - sym_expr_parenthesized, - STATE(3519), 1, - sym_val_variable, - STATE(3786), 1, - sym__expr_binary_expression, - STATE(7808), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5327), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [65150] = 37, - ACTIONS(161), 1, + ACTIONS(4972), 1, anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, + ACTIONS(4974), 1, anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, + ACTIONS(5330), 1, anon_sym_DOT_DOT, - STATE(1389), 1, + STATE(1418), 1, sym__str_double_quotes, - STATE(1644), 1, + STATE(1646), 1, sym__expr_unary_minus, - STATE(1676), 1, + STATE(1647), 1, sym__val_number, - STATE(1708), 1, + STATE(1729), 1, sym__inter_single_quotes, - STATE(1709), 1, + STATE(1732), 1, sym__inter_double_quotes, - STATE(2325), 1, + STATE(2351), 1, sym_comment, - STATE(3464), 1, + STATE(3504), 1, sym__val_number_decimal, - STATE(3484), 1, + STATE(3520), 1, sym_val_range, - STATE(3505), 1, - sym_val_variable, - STATE(3512), 1, + STATE(3564), 1, sym_expr_parenthesized, - STATE(3776), 1, - sym__expr_binary_expression, - STATE(7373), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [65284] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2326), 1, - sym_comment, - STATE(3464), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3505), 1, + STATE(3565), 1, sym_val_variable, - STATE(3512), 1, - sym_expr_parenthesized, - STATE(3776), 1, + STATE(3823), 1, sym__expr_binary_expression, - STATE(7387), 1, + STATE(7583), 1, sym__expression, ACTIONS(229), 2, anon_sym_0o, @@ -267004,13 +271666,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3197), 2, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5332), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1606), 3, + STATE(1687), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -267021,7 +271683,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(1675), 12, + STATE(1643), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -267034,14 +271696,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65418] = 5, + [65154] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1089), 1, - aux_sym_record_entry_token1, - STATE(2327), 1, + STATE(2352), 1, sym_comment, - ACTIONS(1076), 9, + ACTIONS(2384), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267051,7 +271711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 47, + ACTIONS(2386), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267062,518 +271722,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65488] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5164), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5166), 1, - sym__newline, - STATE(2328), 1, - sym_comment, - STATE(2451), 1, - aux_sym_command_list_repeat1, - STATE(2680), 1, - aux_sym_shebang_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7072), 1, - sym__command_name, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5158), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [65586] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2329), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5609), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [65720] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2330), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5574), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [65854] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2331), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5504), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [65988] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2332), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5510), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [66122] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65222] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, - STATE(2333), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(2210), 1, + aux_sym_shebang_repeat1, + STATE(2353), 1, sym_comment, - ACTIONS(2293), 8, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267582,9 +271799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2297), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5216), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267595,34 +271810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267631,12 +271831,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66192] = 4, + [65304] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2334), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(2280), 1, + aux_sym_shebang_repeat1, + STATE(2354), 1, + sym_comment, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5214), 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(5216), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65382] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(2355), 1, sym_comment, - ACTIONS(5002), 9, + ACTIONS(2253), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267646,7 +271917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5000), 48, + ACTIONS(2255), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267658,7 +271929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -267695,632 +271965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66260] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2234), 1, - aux_sym_decl_def_repeat1, - STATE(2335), 1, - sym_comment, - STATE(2743), 1, - sym_long_flag, - STATE(6132), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66358] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DASH, - ACTIONS(3199), 1, - anon_sym_null, - ACTIONS(3249), 1, - anon_sym_LBRACK, - ACTIONS(3255), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3299), 1, - aux_sym_expr_unary_token1, - ACTIONS(3301), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3303), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_DOLLAR, - STATE(1389), 1, - sym__str_double_quotes, - STATE(1458), 1, - sym_expr_parenthesized, - STATE(1461), 1, - sym_val_variable, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(1676), 1, - sym__val_number, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(2336), 1, - sym_comment, - STATE(2837), 1, - sym__val_number_decimal, - STATE(3484), 1, - sym_val_range, - STATE(3785), 1, - sym__expr_binary_expression, - STATE(5531), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1606), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1675), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [66492] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2337), 1, - sym_comment, - STATE(2339), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6523), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66590] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2338), 1, - sym_comment, - STATE(2340), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6532), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66688] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2339), 1, - sym_comment, - STATE(2572), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6533), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66786] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5176), 1, - anon_sym_DASH_DASH, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2340), 1, - sym_comment, - STATE(2572), 1, - aux_sym_decl_def_repeat1, - STATE(2743), 1, - sym_long_flag, - STATE(6535), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66884] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2341), 1, - sym_comment, - ACTIONS(1040), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1042), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [66952] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2342), 1, - sym_comment, - ACTIONS(1044), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1046), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67020] = 4, - ACTIONS(247), 1, + [65452] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2343), 1, + ACTIONS(4771), 1, + aux_sym_cmd_identifier_token37, + STATE(2356), 1, sym_comment, - ACTIONS(1867), 8, + ACTIONS(2253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268329,8 +271981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 48, - ts_builtin_sym_end, + ACTIONS(2255), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268342,6 +271993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -268378,53 +272030,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, - [67087] = 6, + [65522] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5331), 1, - aux_sym__immediate_decimal_token2, - STATE(2344), 1, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(2357), 1, sym_comment, - ACTIONS(1519), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1517), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2229), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268433,6 +272047,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2233), 47, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268441,14 +272095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [67158] = 4, - ACTIONS(247), 1, + [65592] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2345), 1, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, + STATE(2358), 1, sym_comment, - ACTIONS(2259), 8, + ACTIONS(2253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268457,7 +272111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2261), 48, + ACTIONS(2255), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -268506,33 +272160,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, - [67225] = 9, - ACTIONS(247), 1, + [65662] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2346), 1, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(2359), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(1560), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268541,9 +272177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 32, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1572), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268554,18 +272188,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268574,12 +272225,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, - [67302] = 4, + [65732] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2347), 1, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5296), 1, + sym__newline, + STATE(2320), 1, + aux_sym_shebang_repeat1, + STATE(2360), 1, + sym_comment, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5199), 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(5201), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65820] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4771), 1, + aux_sym_cmd_identifier_token37, + STATE(2361), 1, sym_comment, - ACTIONS(4996), 8, + ACTIONS(2229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268588,8 +272315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4994), 48, - ts_builtin_sym_end, + ACTIONS(2233), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268601,6 +272327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -268637,12 +272364,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67369] = 4, + [65890] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2348), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5280), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5282), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5305), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2362), 1, + sym_comment, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5203), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5205), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65984] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2363), 1, sym_comment, - ACTIONS(1076), 8, + ACTIONS(5259), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5263), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5265), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5261), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5269), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268651,8 +272476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1078), 48, - ts_builtin_sym_end, + ACTIONS(5052), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268664,16 +272488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -268686,12 +272502,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268700,12 +272510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67436] = 4, + [66062] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2349), 1, + STATE(2364), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(1832), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268714,9 +272525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1834), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268727,34 +272536,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268763,110 +272574,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67503] = 4, + [66130] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2350), 1, - sym_comment, - ACTIONS(1040), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1042), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5271), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67570] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5345), 1, - aux_sym_expr_binary_token13, - ACTIONS(5347), 1, - aux_sym_expr_binary_token14, - ACTIONS(5349), 1, - aux_sym_expr_binary_token15, - STATE(2351), 1, + STATE(2318), 1, + aux_sym_shebang_repeat1, + STATE(2365), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268875,9 +272621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 23, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5216), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268888,9 +272632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268899,12 +272647,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, - [67657] = 4, + [66216] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2352), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(2345), 1, + aux_sym_shebang_repeat1, + STATE(2366), 1, sym_comment, - ACTIONS(2376), 8, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268913,9 +272679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2378), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5216), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268926,34 +272690,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268962,12 +272717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67724] = 4, + [66296] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2353), 1, + STATE(2367), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(2253), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268976,9 +272732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2255), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268989,34 +272743,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269025,45 +272781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67791] = 13, + [66364] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5345), 1, - aux_sym_expr_binary_token13, - ACTIONS(5347), 1, - aux_sym_expr_binary_token14, - STATE(2354), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(4984), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269072,9 +272796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 24, - ts_builtin_sym_end, - sym__newline, + ACTIONS(4982), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269085,10 +272807,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269097,12 +272845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67876] = 4, + [66432] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2355), 1, + STATE(2369), 1, sym_comment, - ACTIONS(1961), 8, + ACTIONS(4894), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269111,7 +272859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 48, + ACTIONS(4892), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269124,6 +272872,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_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -269160,12 +272909,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, - [67943] = 4, + [66500] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2356), 1, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5271), 1, + sym__newline, + STATE(2332), 1, + aux_sym_shebang_repeat1, + STATE(2370), 1, sym_comment, - ACTIONS(1575), 8, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5214), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269174,9 +272958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1587), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5216), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269187,34 +272969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269223,12 +272983,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68010] = 4, + [66588] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2357), 1, + ACTIONS(5230), 1, + sym__newline, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2278), 1, + aux_sym_shebang_repeat1, + STATE(2371), 1, sym_comment, - ACTIONS(2355), 8, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5148), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269237,9 +273036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2357), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5150), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269250,34 +273047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269286,23 +273059,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68077] = 4, + [66680] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2358), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2372), 1, sym_comment, - ACTIONS(1517), 10, + STATE(2375), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6446), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1519), 46, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269334,36 +273138,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [66778] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2373), 1, + sym_comment, + ACTIONS(5334), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5128), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [66846] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2374), 1, + sym_comment, + STATE(2376), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6460), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - [68144] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2359), 1, - sym_comment, - ACTIONS(1044), 7, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1046), 49, - ts_builtin_sym_end, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269395,100 +273281,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [66944] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2375), 1, + sym_comment, + STATE(2626), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6461), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - [68211] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2360), 1, - sym_comment, - ACTIONS(2392), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2394), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68278] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2361), 1, - sym_comment, - ACTIONS(1060), 7, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1062), 49, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269520,30 +273360,325 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [67042] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5173), 1, + anon_sym_DASH_DASH, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2376), 1, + sym_comment, + STATE(2626), 1, + aux_sym_decl_def_repeat1, + STATE(2797), 1, + sym_long_flag, + STATE(6466), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [67140] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2377), 1, + sym_comment, + ACTIONS(5010), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5008), 48, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68345] = 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [67208] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + STATE(2325), 1, + aux_sym_shebang_repeat1, + STATE(2378), 1, + sym_comment, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5199), 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(5201), 37, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [67288] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2379), 1, + sym_comment, + ACTIONS(1822), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1826), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [67356] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2362), 1, + ACTIONS(5276), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5278), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(2380), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5226), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5228), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5274), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5224), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5195), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269552,9 +273687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5197), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269565,34 +273698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269601,20 +273711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68412] = 4, + [67444] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2363), 1, + ACTIONS(5336), 1, + anon_sym_DOT, + STATE(2478), 1, + sym_path, + STATE(2381), 2, sym_comment, - ACTIONS(1052), 7, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1054), 49, + ACTIONS(1017), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269654,8 +273769,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -269664,12 +273777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68479] = 4, + [67516] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2364), 1, + ACTIONS(1083), 1, + aux_sym_record_entry_token1, + STATE(2382), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(1070), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269678,9 +273794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1072), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269691,6 +273805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -269727,86 +273842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68546] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5345), 1, - aux_sym_expr_binary_token13, - ACTIONS(5347), 1, - aux_sym_expr_binary_token14, - ACTIONS(5349), 1, - aux_sym_expr_binary_token15, - ACTIONS(5353), 1, - aux_sym_expr_binary_token16, - STATE(2365), 1, - sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4972), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68635] = 4, + [67586] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2366), 1, + STATE(2383), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269815,7 +273856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269864,12 +273905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68702] = 4, + [67653] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2367), 1, + STATE(2384), 1, sym_comment, - ACTIONS(2453), 8, + ACTIONS(2305), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269878,7 +273919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2455), 48, + ACTIONS(2307), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269927,12 +273968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68769] = 4, + [67720] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2368), 1, + STATE(2385), 1, sym_comment, - ACTIONS(2396), 8, + ACTIONS(2458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269941,7 +273982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2398), 48, + ACTIONS(2460), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269990,12 +274031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68836] = 4, + [67787] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2369), 1, + STATE(2386), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(5046), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270004,7 +274045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(5044), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270053,87 +274094,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68903] = 16, + [67854] = 14, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3713), 1, + anon_sym_DOLLAR, + ACTIONS(5339), 1, + anon_sym_LPAREN2, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + aux_sym__immediate_decimal_token1, ACTIONS(5345), 1, - aux_sym_expr_binary_token13, + aux_sym__immediate_decimal_token3, ACTIONS(5347), 1, - aux_sym_expr_binary_token14, + aux_sym__immediate_decimal_token4, ACTIONS(5349), 1, - aux_sym_expr_binary_token15, - ACTIONS(5353), 1, - aux_sym_expr_binary_token16, - ACTIONS(5355), 1, - aux_sym_expr_binary_token17, - STATE(2370), 1, - sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4972), 21, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68994] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2371), 1, + aux_sym__immediate_decimal_token5, + STATE(2387), 1, sym_comment, - ACTIONS(1843), 8, + STATE(2783), 1, + sym__immediate_decimal, + STATE(2868), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270142,47 +274138,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1845), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym__unquoted_in_list_token1, + ACTIONS(1492), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270191,12 +274167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69061] = 4, + [67941] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2372), 1, + STATE(2388), 1, sym_comment, - ACTIONS(2443), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270205,7 +274181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2445), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270254,95 +274230,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69128] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2373), 1, - sym_comment, - ACTIONS(1048), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1050), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69195] = 12, + [68008] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1493), 1, + ACTIONS(1506), 1, sym__entry_separator, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5357), 1, + ACTIONS(2553), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5318), 1, anon_sym_LPAREN2, - ACTIONS(5363), 1, + ACTIONS(5351), 1, + anon_sym_DOT, + ACTIONS(5355), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5365), 1, + ACTIONS(5357), 1, aux_sym__immediate_decimal_token5, - STATE(2374), 1, + STATE(2389), 1, sym_comment, - STATE(2790), 1, + STATE(2803), 1, sym__immediate_decimal, - ACTIONS(5361), 2, + ACTIONS(5353), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2901), 2, + STATE(2802), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1479), 45, + ACTIONS(1496), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -270353,7 +274266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -270388,75 +274301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [69278] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2375), 1, - sym_comment, - ACTIONS(2404), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2406), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69345] = 4, + [68091] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2376), 1, + STATE(2390), 1, sym_comment, - ACTIONS(1859), 8, + ACTIONS(2305), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270465,7 +274315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 48, + ACTIONS(2307), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270514,26 +274364,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69412] = 8, - ACTIONS(247), 1, + [68158] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2377), 1, + ACTIONS(5359), 1, + anon_sym_DOT, + ACTIONS(5361), 1, + aux_sym__immediate_decimal_token2, + STATE(2391), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4974), 8, + ACTIONS(1520), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1518), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270542,37 +274419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270581,12 +274427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69487] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [68229] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2378), 1, + STATE(2392), 1, sym_comment, - ACTIONS(2368), 8, + ACTIONS(2462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270595,7 +274443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2370), 48, + ACTIONS(2464), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270644,32 +274492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69554] = 12, + [68296] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1515), 1, - sym__entry_separator, - ACTIONS(2816), 1, - anon_sym_DOLLAR, - ACTIONS(5299), 1, - anon_sym_LPAREN2, - ACTIONS(5367), 1, - anon_sym_DOT, - ACTIONS(5371), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5373), 1, - aux_sym__immediate_decimal_token5, - STATE(2379), 1, - sym_comment, - STATE(2751), 1, - sym__immediate_decimal, - ACTIONS(5369), 2, + ACTIONS(5363), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2730), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1505), 45, + ACTIONS(5365), 1, + aux_sym__immediate_decimal_token2, + STATE(2393), 1, + sym_comment, + ACTIONS(1542), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1540), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -270680,8 +274519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -270715,12 +274556,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [69637] = 4, + aux_sym__unquoted_in_list_token2, + [68367] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2380), 1, + STATE(2394), 1, + sym_comment, + ACTIONS(1518), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1520), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68434] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2395), 1, + sym_comment, + ACTIONS(1540), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1542), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68501] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2396), 1, sym_comment, - ACTIONS(2457), 8, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270729,7 +274697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2459), 48, + ACTIONS(1572), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270778,12 +274746,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69704] = 5, + [68568] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2381), 1, + STATE(2397), 1, + sym_comment, + ACTIONS(1554), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1556), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68635] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2398), 1, sym_comment, - ACTIONS(4818), 8, + ACTIONS(2348), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270792,7 +274823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4816), 20, + ACTIONS(2350), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270805,15 +274836,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(4820), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -270842,68 +274864,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [69773] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2382), 1, - sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4972), 26, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270912,12 +274872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69854] = 4, + [68702] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2383), 1, + STATE(2399), 1, sym_comment, - ACTIONS(2408), 8, + ACTIONS(1070), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270926,7 +274886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2410), 48, + ACTIONS(1072), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270975,12 +274935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69921] = 4, + [68769] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2384), 1, + STATE(2400), 1, sym_comment, - ACTIONS(2372), 8, + ACTIONS(4984), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270989,7 +274949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2374), 48, + ACTIONS(4982), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271038,12 +274998,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69988] = 4, + [68836] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2385), 1, + STATE(2401), 1, + sym_comment, + ACTIONS(1653), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1655), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68903] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2402), 1, sym_comment, - ACTIONS(1890), 8, + ACTIONS(1848), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271052,7 +275075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1892), 48, + ACTIONS(1850), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271101,156 +275124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70055] = 14, + [68970] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3730), 1, - anon_sym_DOLLAR, - ACTIONS(5375), 1, - anon_sym_LPAREN2, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5383), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5385), 1, - aux_sym__immediate_decimal_token5, - STATE(2386), 1, - sym_comment, - STATE(2742), 1, - sym__immediate_decimal, - STATE(2827), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1493), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70142] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5345), 1, - aux_sym_expr_binary_token13, - STATE(2387), 1, - sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4972), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70225] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2388), 1, + STATE(2403), 1, sym_comment, - ACTIONS(1871), 8, + ACTIONS(2412), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271259,7 +275138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 48, + ACTIONS(2414), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271308,23 +275187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70292] = 4, + [69037] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2389), 1, + STATE(2404), 1, sym_comment, - ACTIONS(1639), 10, + ACTIONS(1042), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1641), 46, + anon_sym_DOT, + ACTIONS(1044), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -271361,9 +275238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -271371,12 +275250,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70359] = 4, + [69104] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2390), 1, + STATE(2405), 1, sym_comment, - ACTIONS(2412), 8, + ACTIONS(1038), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1040), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69171] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2406), 1, + sym_comment, + ACTIONS(1034), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1036), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69238] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2407), 1, + sym_comment, + ACTIONS(2328), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271385,7 +275390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2414), 48, + ACTIONS(2330), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271434,12 +275439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70426] = 4, + [69305] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2391), 1, + STATE(2408), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(2338), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271448,7 +275453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(2340), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271497,12 +275502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70493] = 4, + [69372] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2392), 1, + STATE(2409), 1, sym_comment, - ACTIONS(2380), 8, + ACTIONS(2416), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271511,7 +275516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2382), 48, + ACTIONS(2418), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271560,12 +275565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70560] = 4, + [69439] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2393), 1, + STATE(2410), 1, sym_comment, - ACTIONS(1894), 8, + ACTIONS(1864), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271574,7 +275579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1896), 48, + ACTIONS(1866), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271623,12 +275628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70627] = 4, + [69506] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2394), 1, + STATE(2411), 1, sym_comment, - ACTIONS(2384), 8, + ACTIONS(2388), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271637,7 +275642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2386), 48, + ACTIONS(2390), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271686,75 +275691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70694] = 4, + [69573] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2395), 1, - sym_comment, - ACTIONS(1565), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1567), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70761] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2396), 1, + STATE(2412), 1, sym_comment, - ACTIONS(2388), 8, + ACTIONS(2342), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271763,7 +275705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2390), 48, + ACTIONS(2344), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271812,12 +275754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70828] = 4, + [69640] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2397), 1, + STATE(2413), 1, sym_comment, - ACTIONS(1945), 8, + ACTIONS(1872), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271826,7 +275768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 48, + ACTIONS(1874), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271875,12 +275817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70895] = 4, + [69707] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2398), 1, + STATE(2414), 1, sym_comment, - ACTIONS(4992), 8, + ACTIONS(1876), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271889,7 +275831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4990), 48, + ACTIONS(1878), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271938,12 +275880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70962] = 4, + [69774] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2399), 1, + STATE(2415), 1, sym_comment, - ACTIONS(2400), 8, + ACTIONS(2517), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271952,7 +275894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2402), 48, + ACTIONS(2519), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272001,53 +275943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71029] = 6, - ACTIONS(3), 1, + [69841] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DOT, - ACTIONS(5389), 1, - aux_sym__immediate_decimal_token2, - STATE(2400), 1, + STATE(2416), 1, sym_comment, - ACTIONS(1499), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1497), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2420), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272056,6 +275957,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2422), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272064,14 +276006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [71100] = 4, + [69908] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2401), 1, + STATE(2417), 1, sym_comment, - ACTIONS(2436), 8, + ACTIONS(1888), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272080,7 +276020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2438), 48, + ACTIONS(1890), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272129,12 +276069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71167] = 4, + [69975] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2402), 1, + STATE(2418), 1, sym_comment, - ACTIONS(4970), 8, + ACTIONS(2434), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272143,7 +276083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4820), 48, + ACTIONS(2436), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272192,12 +276132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71234] = 4, + [70042] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2403), 1, + STATE(2419), 1, sym_comment, - ACTIONS(4974), 8, + ACTIONS(2438), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272206,7 +276146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 48, + ACTIONS(2440), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272255,12 +276195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71301] = 4, + [70109] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2404), 1, + STATE(2420), 1, sym_comment, - ACTIONS(2364), 8, + ACTIONS(1892), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272269,7 +276209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2366), 48, + ACTIONS(1894), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272318,12 +276258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71368] = 4, + [70176] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2405), 1, + STATE(2421), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(1900), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272332,7 +276272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(1902), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272381,15 +276321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71435] = 5, + [70243] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2406), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(4974), 8, + ACTIONS(2521), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272398,7 +276335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 46, + ACTIONS(2523), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272411,6 +276348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -272445,12 +276384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71504] = 4, + [70310] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2407), 1, + STATE(2423), 1, sym_comment, - ACTIONS(2364), 8, + ACTIONS(1822), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272459,7 +276398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2366), 48, + ACTIONS(1826), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272508,12 +276447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71571] = 4, + [70377] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2408), 1, + STATE(2424), 1, sym_comment, - ACTIONS(2420), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272522,7 +276461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2422), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272571,12 +276510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71638] = 4, + [70444] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2409), 1, + STATE(2425), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(2442), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272585,7 +276524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(2444), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272634,12 +276573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71705] = 4, + [70511] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2410), 1, + STATE(2426), 1, sym_comment, - ACTIONS(2424), 8, + ACTIONS(2446), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272648,7 +276587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2426), 48, + ACTIONS(2448), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272697,20 +276636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71772] = 6, + [70578] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2411), 1, + STATE(2427), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4974), 8, + ACTIONS(1904), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272719,7 +276650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 42, + ACTIONS(1906), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272732,6 +276663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -272762,83 +276699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71843] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1551), 1, - sym__entry_separator, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5357), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN2, - ACTIONS(5363), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5365), 1, - aux_sym__immediate_decimal_token5, - STATE(2412), 1, - sym_comment, - STATE(2832), 1, - sym__immediate_decimal, - ACTIONS(5361), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2898), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1549), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [71926] = 4, + [70645] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2413), 1, + STATE(2428), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(2450), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272847,7 +276713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(2452), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272896,23 +276762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71993] = 7, + [70712] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2414), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4974), 8, + ACTIONS(2454), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272921,7 +276776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 40, + ACTIONS(2456), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272934,6 +276789,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, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -272962,12 +276825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72066] = 4, + [70779] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2415), 1, + STATE(2430), 1, sym_comment, - ACTIONS(1949), 8, + ACTIONS(4798), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272976,7 +276839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 48, + ACTIONS(4796), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272989,6 +276852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4800), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -273017,84 +276889,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72133] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5391), 1, - anon_sym_QMARK2, - STATE(2416), 1, - sym_comment, - ACTIONS(1034), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1036), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72202] = 4, + [70848] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2417), 1, + STATE(2431), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(2366), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273103,7 +276903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(2368), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273152,76 +276952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72269] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5393), 1, - anon_sym_QMARK2, - STATE(2418), 1, - sym_comment, - ACTIONS(1028), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1030), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72338] = 4, + [70915] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2419), 1, + STATE(2432), 1, sym_comment, - ACTIONS(2428), 8, + ACTIONS(5010), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273230,7 +276966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2430), 48, + ACTIONS(5008), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273279,80 +277015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72405] = 9, + [70982] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(5395), 1, - sym_filesize_unit, - ACTIONS(5397), 1, - sym_duration_unit, - ACTIONS(5399), 1, - aux_sym_unquoted_token2, - STATE(2420), 1, - sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1587), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72482] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2421), 1, + STATE(2433), 1, sym_comment, - ACTIONS(5002), 8, + ACTIONS(1832), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273361,7 +277029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5000), 48, + ACTIONS(1834), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273410,101 +277078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72549] = 4, + [71049] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(1497), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1499), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72616] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2423), 1, + STATE(2434), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4974), 8, + ACTIONS(2466), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273513,7 +277092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4972), 28, + ACTIONS(2468), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273526,6 +277105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -273534,6 +277123,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273542,12 +277141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72695] = 4, + [71116] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2424), 1, + STATE(2435), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(2380), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273556,7 +277155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(2382), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273605,12 +277204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72762] = 4, + [71183] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2425), 1, + STATE(2436), 1, sym_comment, - ACTIONS(1056), 7, + ACTIONS(1046), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -273618,7 +277217,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1058), 49, + ACTIONS(1048), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -273668,12 +277267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72829] = 4, + [71250] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2426), 1, + STATE(2437), 1, sym_comment, - ACTIONS(2432), 8, + ACTIONS(2384), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273682,7 +277281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2434), 48, + ACTIONS(2386), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273731,12 +277330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72896] = 4, + [71317] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2427), 1, + STATE(2438), 1, sym_comment, - ACTIONS(4745), 8, + ACTIONS(5050), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273745,7 +277344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4743), 48, + ACTIONS(4800), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273794,12 +277393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72963] = 4, + [71384] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2428), 1, + STATE(2439), 1, sym_comment, - ACTIONS(1879), 8, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273808,7 +277407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, + ACTIONS(5052), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273857,12 +277456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73030] = 4, + [71451] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2429), 1, + STATE(2440), 1, sym_comment, - ACTIONS(2416), 8, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273871,7 +277470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2418), 48, + ACTIONS(4842), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273920,239 +277519,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73097] = 4, + [71518] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2430), 1, + STATE(2441), 1, sym_comment, - ACTIONS(4888), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4886), 49, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5054), 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(5052), 46, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73163] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2431), 1, - sym_comment, - STATE(5681), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73255] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2432), 1, - sym_comment, - ACTIONS(2137), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2139), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73321] = 13, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71587] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5401), 1, - anon_sym_DOLLAR, - ACTIONS(5403), 1, - anon_sym_LPAREN2, - ACTIONS(5405), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5407), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5409), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5411), 1, - aux_sym__immediate_decimal_token5, - STATE(2433), 1, + STATE(2442), 1, sym_comment, - STATE(2956), 1, - sym__immediate_decimal, - STATE(3027), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1549), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274161,27 +277597,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1551), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274190,51 +277646,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73405] = 5, - ACTIONS(3), 1, + [71654] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token2, - STATE(2434), 1, + STATE(2443), 1, sym_comment, - ACTIONS(1567), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1565), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274243,6 +277668,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(5052), 42, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274251,60 +277711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [73473] = 11, - ACTIONS(3), 1, + [71725] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(5357), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN2, - ACTIONS(5417), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5419), 1, - aux_sym__immediate_decimal_token5, - STATE(2435), 1, + STATE(2444), 1, sym_comment, - STATE(2884), 1, - sym__immediate_decimal, - ACTIONS(5415), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2876), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1621), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(4844), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274313,6 +277725,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274321,21 +277774,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [73553] = 4, + [71792] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2436), 1, + STATE(2445), 1, sym_comment, - ACTIONS(4926), 6, + ACTIONS(1050), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(4924), 49, - ts_builtin_sym_end, + anon_sym_DOT, + ACTIONS(1052), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -274375,7 +277827,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -274384,19 +277837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73619] = 4, + [71859] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2437), 1, + STATE(2446), 1, sym_comment, - ACTIONS(2384), 6, + ACTIONS(1054), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2386), 49, + anon_sym_DOT, + ACTIONS(1056), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -274446,505 +277900,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73685] = 4, + [71926] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2438), 1, + STATE(2447), 1, sym_comment, - ACTIONS(2388), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2390), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5054), 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(5052), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73751] = 17, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2439), 1, + STATE(2448), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - STATE(7635), 1, - sym__command_name, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73843] = 17, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72066] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2440), 1, + STATE(2449), 1, sym_comment, - STATE(6127), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73935] = 17, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72145] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2441), 1, + STATE(2450), 1, sym_comment, - STATE(5681), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [74027] = 17, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72212] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1476), 1, - sym__command_name, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2442), 1, + STATE(2451), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [74119] = 4, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5379), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72293] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2443), 1, + STATE(2452), 1, sym_comment, - ACTIONS(5120), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5118), 49, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74185] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72360] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2444), 1, + ACTIONS(5381), 1, + aux_sym_expr_binary_token13, + STATE(2453), 1, sym_comment, - ACTIONS(5114), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5112), 49, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5379), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 25, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74251] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72443] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2445), 1, + ACTIONS(5383), 1, + anon_sym_QMARK2, + STATE(2454), 1, sym_comment, - ACTIONS(5083), 6, + ACTIONS(1022), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5081), 49, + anon_sym_DOT, + ACTIONS(1024), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -274985,7 +278421,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -274994,19 +278429,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74317] = 4, + [72512] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2446), 1, + ACTIONS(5385), 1, + anon_sym_QMARK2, + STATE(2455), 1, sym_comment, - ACTIONS(5087), 6, + ACTIONS(1028), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5085), 49, + anon_sym_DOT, + ACTIONS(1030), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -275047,7 +278485,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -275056,50 +278493,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74383] = 17, + [72581] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5164), 1, - aux_sym_cmd_identifier_token38, - STATE(2447), 1, - sym_comment, STATE(2456), 1, - aux_sym_command_list_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7073), 1, - sym__command_name, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5158), 5, + sym_comment, + ACTIONS(2362), 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(2364), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72648] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(5387), 1, + sym_filesize_unit, + ACTIONS(5389), 1, + sym_duration_unit, + ACTIONS(5391), 1, + aux_sym_unquoted_token2, + STATE(2457), 1, + sym_comment, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1572), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275131,30 +278611,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74475] = 11, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [72725] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1515), 1, + ACTIONS(1492), 1, sym__entry_separator, - ACTIONS(5357), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5393), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5395), 1, anon_sym_LPAREN2, - ACTIONS(5417), 1, + ACTIONS(5399), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5419), 1, + ACTIONS(5401), 1, aux_sym__immediate_decimal_token5, - STATE(2448), 1, + STATE(2458), 1, sym_comment, - STATE(2900), 1, + STATE(2882), 1, sym__immediate_decimal, - ACTIONS(5415), 2, + ACTIONS(5397), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2875), 2, + STATE(2962), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 45, + ACTIONS(1478), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -275165,7 +278660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -275200,112 +278695,928 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [74555] = 4, + [72808] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2449), 1, + ACTIONS(5381), 1, + aux_sym_expr_binary_token13, + ACTIONS(5403), 1, + aux_sym_expr_binary_token14, + STATE(2459), 1, sym_comment, - ACTIONS(2376), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2378), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5379), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72893] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2460), 1, + sym_comment, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72960] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2461), 1, + sym_comment, + ACTIONS(2253), 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(2255), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73027] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5381), 1, + aux_sym_expr_binary_token13, + ACTIONS(5403), 1, + aux_sym_expr_binary_token14, + ACTIONS(5405), 1, + aux_sym_expr_binary_token15, + STATE(2462), 1, + sym_comment, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5379), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73114] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1550), 1, + sym__entry_separator, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5393), 1, + anon_sym_DOLLAR, + ACTIONS(5395), 1, + anon_sym_LPAREN2, + ACTIONS(5399), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5401), 1, + aux_sym__immediate_decimal_token5, + STATE(2463), 1, + sym_comment, + STATE(2833), 1, + sym__immediate_decimal, + ACTIONS(5397), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2949), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1548), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74621] = 17, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [73197] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2464), 1, + sym_comment, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73264] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2465), 1, + sym_comment, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5054), 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(5052), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73339] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5381), 1, + aux_sym_expr_binary_token13, + ACTIONS(5403), 1, + aux_sym_expr_binary_token14, + ACTIONS(5405), 1, + aux_sym_expr_binary_token15, + ACTIONS(5407), 1, + aux_sym_expr_binary_token16, + STATE(2466), 1, + sym_comment, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5379), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73428] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2467), 1, + sym_comment, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73495] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5381), 1, + aux_sym_expr_binary_token13, + ACTIONS(5403), 1, + aux_sym_expr_binary_token14, + ACTIONS(5405), 1, + aux_sym_expr_binary_token15, + ACTIONS(5407), 1, + aux_sym_expr_binary_token16, + ACTIONS(5409), 1, + aux_sym_expr_binary_token17, + STATE(2468), 1, + sym_comment, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5379), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5375), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73586] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2469), 1, + sym_comment, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73653] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2470), 1, + sym_comment, + ACTIONS(5367), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5371), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5373), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5369), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5377), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5054), 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(5052), 32, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73730] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2471), 1, + sym_comment, + ACTIONS(2309), 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(2311), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73797] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(5164), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(2450), 1, - sym_comment, - STATE(2456), 1, - aux_sym_command_list_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(6724), 1, + STATE(1546), 1, sym__command_name, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, + STATE(1990), 1, sym_val_string, - ACTIONS(1323), 2, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2472), 1, + sym_comment, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5158), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275337,50 +279648,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74713] = 17, + [73889] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5164), 1, - aux_sym_cmd_identifier_token38, - STATE(2451), 1, + STATE(2473), 1, sym_comment, - STATE(2456), 1, - aux_sym_command_list_repeat1, - STATE(5345), 1, - sym__str_double_quotes, - STATE(6977), 1, - sym__command_name, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5158), 5, + ACTIONS(2362), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2364), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275412,50 +279692,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74805] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2452), 1, - sym_comment, - STATE(6127), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + [73955] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2474), 1, + sym_comment, + ACTIONS(2366), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2368), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275487,30 +279754,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74897] = 11, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74021] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(1588), 1, sym__entry_separator, - ACTIONS(5357), 1, + ACTIONS(5393), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, + ACTIONS(5395), 1, anon_sym_LPAREN2, - ACTIONS(5417), 1, + ACTIONS(5413), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5419), 1, + ACTIONS(5415), 1, aux_sym__immediate_decimal_token5, - STATE(2453), 1, + STATE(2475), 1, sym_comment, - STATE(2863), 1, + STATE(2945), 1, sym__immediate_decimal, - ACTIONS(5415), 2, + ACTIONS(5411), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2918), 2, + STATE(2944), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1617), 45, + ACTIONS(1586), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -275521,7 +279806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -275556,20 +279841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [74977] = 4, + [74101] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2476), 1, sym_comment, - ACTIONS(1060), 7, + ACTIONS(5101), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1062), 48, + ACTIONS(5099), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -275610,6 +279894,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -275618,111 +279903,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75043] = 4, + [74167] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2455), 1, - sym_comment, - ACTIONS(1056), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1058), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75109] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5436), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5439), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5442), 1, - anon_sym_DQUOTE, - STATE(5345), 1, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, sym__str_double_quotes, - STATE(7022), 1, - sym__val_number_decimal, - STATE(7334), 1, + STATE(2012), 1, sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - STATE(7350), 1, + STATE(2477), 1, + sym_comment, + STATE(6477), 1, sym__command_name, - ACTIONS(5433), 2, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5445), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2456), 2, - sym_comment, - aux_sym_command_list_repeat1, - ACTIONS(5421), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5427), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5424), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275754,50 +279978,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75199] = 17, + [74259] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1476), 1, - sym__command_name, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2457), 1, + STATE(2478), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(1046), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1048), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275829,31 +280024,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75291] = 13, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74325] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1552), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5401), 1, + ACTIONS(5417), 1, anon_sym_DOLLAR, - ACTIONS(5403), 1, + ACTIONS(5419), 1, anon_sym_LPAREN2, - ACTIONS(5405), 1, + ACTIONS(5421), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5407), 1, + ACTIONS(5423), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5409), 1, + ACTIONS(5425), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5411), 1, + ACTIONS(5427), 1, aux_sym__immediate_decimal_token5, - STATE(2458), 1, + STATE(2479), 1, sym_comment, - STATE(2951), 1, + STATE(2985), 1, sym__immediate_decimal, - STATE(3017), 2, + STATE(3042), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1479), 18, + ACTIONS(1548), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -275872,49 +280083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1493), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75375] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5389), 1, - aux_sym__immediate_decimal_token2, - STATE(2459), 1, - sym_comment, - ACTIONS(1499), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1497), 48, + ACTIONS(1550), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -275923,36 +280092,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275961,21 +280111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [75443] = 4, + [74409] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2460), 1, + STATE(2480), 1, sym_comment, - ACTIONS(1064), 6, + ACTIONS(4884), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1066), 49, + ACTIONS(4882), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276015,8 +280164,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -276025,20 +280173,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75509] = 4, + [74475] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2461), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2481), 1, sym_comment, - ACTIONS(5079), 6, + STATE(5674), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5077), 49, - ts_builtin_sym_end, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276070,38 +280248,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [74567] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1546), 1, + sym__command_name, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2482), 1, + sym_comment, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - [75575] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2462), 1, - sym_comment, - ACTIONS(1052), 7, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1054), 48, - ts_builtin_sym_end, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276133,35 +280323,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75641] = 4, + [74659] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2483), 1, sym_comment, - ACTIONS(2364), 6, + ACTIONS(2380), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2366), 49, + ACTIONS(2382), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276211,19 +280385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75707] = 4, + [74725] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2464), 1, + STATE(2484), 1, sym_comment, - ACTIONS(2364), 6, + ACTIONS(5105), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2366), 49, + ACTIONS(5103), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276263,8 +280438,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -276273,31 +280447,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75773] = 13, + [74791] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3730), 1, + ACTIONS(3713), 1, anon_sym_DOLLAR, - ACTIONS(5375), 1, + ACTIONS(5339), 1, anon_sym_LPAREN2, - ACTIONS(5448), 1, + ACTIONS(5429), 1, anon_sym_DOT, - ACTIONS(5450), 1, + ACTIONS(5431), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5452), 1, + ACTIONS(5433), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5454), 1, + ACTIONS(5435), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5456), 1, + ACTIONS(5437), 1, aux_sym__immediate_decimal_token5, - STATE(2465), 1, + STATE(2485), 1, sym_comment, - STATE(2823), 1, + STATE(2866), 1, sym__immediate_decimal, - STATE(2822), 2, + STATE(2865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 18, + ACTIONS(1496), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -276316,7 +280490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1515), 27, + ACTIONS(1506), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -276326,7 +280500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, @@ -276344,19 +280518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75857] = 4, + [74875] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2466), 1, + STATE(2486), 1, sym_comment, - ACTIONS(1625), 6, + ACTIONS(2384), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1629), 49, + ACTIONS(2386), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276406,50 +280580,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75923] = 17, + [74941] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(5164), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(2456), 1, - aux_sym_command_list_repeat1, - STATE(2467), 1, - sym_comment, - STATE(5345), 1, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, sym__str_double_quotes, - STATE(7022), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2487), 1, + sym_comment, + STATE(7094), 1, sym__val_number_decimal, - STATE(7047), 1, + STATE(7646), 1, sym__command_name, - STATE(7334), 1, - sym_cmd_identifier, - STATE(7335), 1, - sym_val_string, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3006), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5158), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5162), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5160), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276481,119 +280655,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76015] = 11, - ACTIONS(3), 1, + [75033] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - sym__entry_separator, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(5460), 1, - anon_sym_DOT_DOT2, - ACTIONS(5464), 1, - sym_filesize_unit, - ACTIONS(5466), 1, - sym_duration_unit, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token2, - STATE(2468), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2488), 1, sym_comment, - STATE(7357), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5462), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 46, + STATE(6477), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76095] = 17, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [75125] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3213), 1, + ACTIONS(3231), 1, aux_sym_record_entry_token1, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2469), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2489), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - STATE(7635), 1, + STATE(5674), 1, sym__command_name, - ACTIONS(1323), 2, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276625,19 +280805,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76187] = 4, + [75217] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2470), 1, + STATE(2490), 1, sym_comment, - ACTIONS(2372), 6, + ACTIONS(4894), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2374), 49, + ACTIONS(4892), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276677,8 +280858,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -276687,30 +280867,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76253] = 11, + [75283] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1563), 1, - sym__entry_separator, - ACTIONS(5357), 1, - anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN2, - ACTIONS(5417), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5419), 1, - aux_sym__immediate_decimal_token5, - STATE(2471), 1, + ACTIONS(5439), 1, + aux_sym__immediate_decimal_token2, + STATE(2491), 1, sym_comment, - STATE(2890), 1, - sym__immediate_decimal, - ACTIONS(5415), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2887), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1561), 45, + ACTIONS(1556), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1554), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -276721,8 +280892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -276756,48 +280929,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76333] = 16, + aux_sym__unquoted_in_list_token2, + [75351] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2472), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2492), 1, sym_comment, - STATE(5678), 1, - sym__command_name, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + STATE(7646), 1, + sym__command_name, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276829,48 +281005,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76422] = 16, + [75443] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1572), 1, + sym__entry_separator, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(5443), 1, + anon_sym_DOT_DOT2, + ACTIONS(5447), 1, + sym_filesize_unit, + ACTIONS(5449), 1, + sym_duration_unit, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token2, + STATE(2493), 1, + sym_comment, + STATE(7216), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5445), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [75523] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3015), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(5167), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2473), 1, + STATE(2494), 1, sym_comment, - STATE(6573), 1, + STATE(2508), 1, + aux_sym_command_list_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6863), 1, sym__command_name, - STATE(6953), 1, + STATE(6913), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(5161), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(5165), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(5163), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276902,48 +281149,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76511] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [75615] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(3015), 1, + anon_sym_DQUOTE, + ACTIONS(5167), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2445), 1, - sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(2474), 1, + STATE(2495), 1, sym_comment, - STATE(6094), 1, + STATE(2508), 1, + aux_sym_command_list_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6658), 1, sym__command_name, - STATE(7016), 1, + STATE(6913), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(3017), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5161), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(5165), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(5163), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276975,48 +281224,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76600] = 16, + [75707] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2475), 1, + STATE(2496), 1, sym_comment, - STATE(5681), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(1050), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1052), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277048,48 +281270,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76689] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1476), 1, - sym__command_name, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2476), 1, - sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + [75773] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2497), 1, + sym_comment, + ACTIONS(1054), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1056), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277121,20 +281332,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76778] = 4, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75839] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2477), 1, + STATE(2498), 1, sym_comment, - ACTIONS(2364), 6, + ACTIONS(2305), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2366), 48, - ts_builtin_sym_end, + ACTIONS(2307), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277174,6 +281400,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -277182,19 +281410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76843] = 4, + [75905] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2478), 1, + STATE(2499), 1, sym_comment, - ACTIONS(2364), 6, + ACTIONS(5109), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2366), 48, + ACTIONS(5107), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -277235,6 +281463,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -277243,48 +281472,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76908] = 16, + [75971] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5470), 1, + ACTIONS(3015), 1, anon_sym_DQUOTE, - STATE(1638), 1, - sym__command_name, - STATE(2445), 1, - sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(2479), 1, + ACTIONS(5167), 1, + aux_sym_cmd_identifier_token38, + STATE(2500), 1, sym_comment, - STATE(2480), 1, + STATE(2508), 1, + aux_sym_command_list_repeat1, + STATE(5413), 1, sym__str_double_quotes, - STATE(7016), 1, + STATE(6913), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + STATE(7027), 1, + sym__command_name, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5472), 2, + ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4950), 5, + ACTIONS(5161), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(5165), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(5163), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277316,19 +281547,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76997] = 4, + [76063] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2480), 1, + STATE(2501), 1, sym_comment, - ACTIONS(1040), 6, + ACTIONS(5097), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1042), 48, + ACTIONS(5095), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -277369,6 +281600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -277377,48 +281609,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77062] = 16, + [76129] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + STATE(2502), 1, + sym_comment, + ACTIONS(2305), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2307), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3547), 1, anon_sym_DQUOTE, - ACTIONS(5480), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [76195] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5417), 1, + anon_sym_DOLLAR, + ACTIONS(5419), 1, + anon_sym_LPAREN2, + ACTIONS(5421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5423), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5425), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5427), 1, + aux_sym__immediate_decimal_token5, + STATE(2503), 1, + sym_comment, + STATE(3022), 1, + sym__immediate_decimal, + STATE(3075), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1492), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, - STATE(2481), 1, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [76279] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2504), 1, sym_comment, - STATE(4401), 1, - sym_cmd_identifier, - STATE(4402), 1, - sym_val_string, - STATE(4403), 1, - sym__command_name, - STATE(4690), 1, - sym__str_double_quotes, - STATE(7104), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(2141), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2143), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76345] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5361), 1, + aux_sym__immediate_decimal_token2, + STATE(2505), 1, + sym_comment, + ACTIONS(1520), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1518), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + 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(3549), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5474), 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [76413] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2506), 1, + sym_comment, + ACTIONS(1675), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5478), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5476), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1677), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277450,48 +281911,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77151] = 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76479] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3015), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(5167), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2482), 1, + STATE(2507), 1, sym_comment, - STATE(6557), 1, - sym__command_name, - STATE(6953), 1, + STATE(2508), 1, + aux_sym_command_list_repeat1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6913), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + STATE(7183), 1, + sym__command_name, + STATE(7208), 1, + sym_cmd_identifier, + STATE(7209), 1, + sym_val_string, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(5161), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(5165), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(5163), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277523,48 +282004,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77240] = 16, + [76571] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(5462), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5468), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(5471), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(5474), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, + STATE(5413), 1, + sym__str_double_quotes, + STATE(6913), 1, + sym__val_number_decimal, + STATE(7208), 1, sym_cmd_identifier, - STATE(1930), 1, + STATE(7209), 1, sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2483), 1, - sym_comment, - STATE(6558), 1, + STATE(7345), 1, sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(5465), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(5477), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + STATE(2508), 2, + sym_comment, + aux_sym_command_list_repeat1, + ACTIONS(5453), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(5459), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(5456), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277596,19 +282078,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77329] = 4, + [76661] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2484), 1, + STATE(2509), 1, sym_comment, - ACTIONS(2372), 6, + ACTIONS(5134), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2374), 48, + ACTIONS(5132), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -277649,6 +282131,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -277657,20 +282140,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77394] = 4, + [76727] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1506), 1, + sym__entry_separator, + ACTIONS(5393), 1, + anon_sym_DOLLAR, + ACTIONS(5395), 1, + anon_sym_LPAREN2, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token5, + STATE(2510), 1, + sym_comment, + STATE(2961), 1, + sym__immediate_decimal, + ACTIONS(5411), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2960), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1496), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [76807] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2485), 1, + STATE(2511), 1, sym_comment, - ACTIONS(2376), 6, + ACTIONS(1058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2378), 48, - ts_builtin_sym_end, + ACTIONS(1060), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277710,6 +282261,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -277718,19 +282271,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77459] = 4, + [76873] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2486), 1, - sym_comment, - ACTIONS(1499), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1604), 1, sym__entry_separator, - ACTIONS(1497), 48, + ACTIONS(5393), 1, + anon_sym_DOLLAR, + ACTIONS(5395), 1, + anon_sym_LPAREN2, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token5, + STATE(2512), 1, + sym_comment, + STATE(2942), 1, + sym__immediate_decimal, + ACTIONS(5411), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2940), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -277741,10 +282305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -277778,20 +282340,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [77524] = 4, + [76953] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2487), 1, - sym_comment, - ACTIONS(1519), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1584), 1, sym__entry_separator, - ACTIONS(1517), 48, + ACTIONS(5393), 1, + anon_sym_DOLLAR, + ACTIONS(5395), 1, + anon_sym_LPAREN2, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token5, + STATE(2513), 1, + sym_comment, + STATE(2948), 1, + sym__immediate_decimal, + ACTIONS(5411), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2947), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1576), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -277802,10 +282374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -277839,49 +282409,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [77589] = 16, + [77033] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2488), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2514), 1, sym_comment, - STATE(6113), 1, - sym__command_name, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + STATE(7670), 1, + sym__command_name, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277913,81 +282482,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77678] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2489), 1, - sym_comment, - ACTIONS(1567), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1565), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [77743] = 4, + [77122] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2515), 1, sym_comment, - ACTIONS(1044), 6, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2749), 1, + sym_cell_path, + ACTIONS(1840), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1046), 48, - ts_builtin_sym_end, + ACTIONS(1842), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278024,120 +282539,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77808] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2491), 1, - sym_comment, - ACTIONS(1641), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1639), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [77873] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [77195] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(4131), 1, + anon_sym_DQUOTE, + ACTIONS(5484), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2445), 1, + STATE(2516), 1, + sym_comment, + STATE(4447), 1, sym_cmd_identifier, - STATE(2446), 1, + STATE(4452), 1, sym_val_string, - STATE(2492), 1, - sym_comment, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7042), 1, + STATE(4477), 1, sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, + STATE(4744), 1, + sym__str_double_quotes, + STATE(7054), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(4133), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1320), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(1322), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(5482), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278169,48 +282620,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77962] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [77284] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token38, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2445), 1, - sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(2493), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2517), 1, sym_comment, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7043), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2756), 1, + sym_cell_path, + ACTIONS(1844), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1846), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278242,111 +282672,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78051] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_DOT, - ACTIONS(5484), 1, - aux_sym__immediate_decimal_token2, - STATE(2494), 1, - sym_comment, - ACTIONS(1645), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 48, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [78120] = 16, + [77357] = 16, ACTIONS(111), 1, anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, + STATE(1975), 1, sym__str_double_quotes, - STATE(2445), 1, + STATE(2499), 1, sym_cmd_identifier, - STATE(2446), 1, + STATE(2501), 1, sym_val_string, - STATE(2495), 1, + STATE(2518), 1, sym_comment, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7110), 1, + STATE(5886), 1, sym__command_name, + STATE(6971), 1, + sym__val_number_decimal, ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278378,48 +282758,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78209] = 16, + [77446] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2496), 1, + STATE(2519), 1, sym_comment, - STATE(4403), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(1034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1036), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278451,48 +282803,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78298] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1325), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2497), 1, - sym_comment, - STATE(6243), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + [77511] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2520), 1, + sym_comment, + ACTIONS(2305), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2307), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278524,19 +282864,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78387] = 4, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77576] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1625), 6, + ACTIONS(2305), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1629), 48, + ACTIONS(2307), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -278585,48 +282941,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78452] = 16, + [77641] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, sym_cmd_identifier, - STATE(1930), 1, + STATE(2501), 1, sym_val_string, - STATE(1972), 1, + STATE(2522), 1, + sym_comment, + STATE(6825), 1, + sym__command_name, + STATE(6971), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4960), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4964), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4962), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [77730] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, sym__str_double_quotes, - STATE(2499), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2523), 1, sym_comment, - STATE(6252), 1, + STATE(5704), 1, sym__command_name, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278658,20 +283087,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78541] = 4, + [77819] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2500), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2524), 1, sym_comment, - ACTIONS(2384), 6, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2759), 1, + sym_cell_path, + ACTIONS(1848), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2386), 48, - ts_builtin_sym_end, + ACTIONS(1850), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278708,10 +283144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -278719,20 +283152,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78606] = 4, + [77892] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2501), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2525), 1, sym_comment, - ACTIONS(2388), 6, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2760), 1, + sym_cell_path, + ACTIONS(1852), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2390), 48, - ts_builtin_sym_end, + ACTIONS(1854), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278769,10 +283209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -278780,85 +283217,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78671] = 8, - ACTIONS(3), 1, + [77965] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5486), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2502), 1, + STATE(2526), 1, sym_comment, - STATE(2561), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2639), 1, + STATE(2658), 1, sym_path, - STATE(2747), 1, + STATE(2765), 1, sym_cell_path, - ACTIONS(1013), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1011), 47, + ACTIONS(1856), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1858), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [78744] = 4, + [78038] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2503), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2527), 1, sym_comment, - ACTIONS(1064), 6, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2767), 1, + sym_cell_path, + ACTIONS(1860), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1066), 48, - ts_builtin_sym_end, + ACTIONS(1862), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278895,10 +283339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -278906,48 +283347,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78809] = 16, + [78111] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4051), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(5490), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(2504), 1, - sym_comment, - STATE(4401), 1, - sym_cmd_identifier, - STATE(4402), 1, + STATE(1990), 1, sym_val_string, - STATE(4403), 1, - sym__command_name, - STATE(4704), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(7249), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2528), 1, + sym_comment, + STATE(6505), 1, + sym__command_name, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4053), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1307), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(1309), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5488), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278979,48 +283420,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78898] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [78200] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, sym__str_double_quotes, - STATE(2445), 1, + STATE(2012), 1, sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(2505), 1, + STATE(2529), 1, sym_comment, - STATE(6812), 1, + STATE(6506), 1, sym__command_name, - STATE(7016), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [78289] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2530), 1, + sym_comment, + ACTIONS(1058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + aux_sym_cmd_identifier_token38, + ACTIONS(1060), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78354] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2531), 1, + sym_comment, + ACTIONS(2362), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2364), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279052,48 +283599,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78987] = 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78419] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + STATE(2532), 1, + sym_comment, + ACTIONS(2366), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2368), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [78484] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, + ACTIONS(5486), 1, + anon_sym_DQUOTE, + STATE(1594), 1, + sym__command_name, + STATE(2499), 1, sym_cmd_identifier, - STATE(1930), 1, + STATE(2501), 1, sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2506), 1, + STATE(2533), 1, sym_comment, - STATE(6953), 1, + STATE(2550), 1, + sym__str_double_quotes, + STATE(6971), 1, sym__val_number_decimal, - STATE(7740), 1, - sym__command_name, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(5488), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279125,27 +283749,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79076] = 8, + [78573] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2507), 1, + STATE(2534), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2765), 1, + STATE(2775), 1, sym_cell_path, - ACTIONS(1011), 6, + ACTIONS(1864), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1013), 44, + ACTIONS(1866), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279190,27 +283814,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79149] = 8, + [78646] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2508), 1, + STATE(2535), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2690), 1, + STATE(2776), 1, sym_cell_path, - ACTIONS(1957), 6, + ACTIONS(1868), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1959), 44, + ACTIONS(1870), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279255,20 +283879,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79222] = 4, + [78719] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2509), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2536), 1, sym_comment, - ACTIONS(1048), 6, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2780), 1, + sym_cell_path, + ACTIONS(1872), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1050), 48, - ts_builtin_sym_end, + ACTIONS(1874), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279305,10 +283936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -279316,27 +283944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79287] = 8, + [78792] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2510), 1, + STATE(2537), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2697), 1, + STATE(2781), 1, sym_cell_path, - ACTIONS(1961), 6, + ACTIONS(1876), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1963), 44, + ACTIONS(1878), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279381,27 +284009,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79360] = 8, + [78865] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2511), 1, + STATE(2538), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2700), 1, + STATE(2782), 1, sym_cell_path, - ACTIONS(1829), 6, + ACTIONS(1880), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1833), 44, + ACTIONS(1882), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279446,48 +284074,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79433] = 16, + [78938] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2512), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2539), 1, sym_comment, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - STATE(7617), 1, + STATE(7413), 1, sym__command_name, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279519,48 +284147,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79522] = 16, + [79027] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2513), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2540), 1, sym_comment, - STATE(6377), 1, + STATE(6110), 1, sym__command_name, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279592,48 +284220,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79611] = 12, + [79116] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5401), 1, - anon_sym_DOLLAR, - ACTIONS(5403), 1, - anon_sym_LPAREN2, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5500), 1, - aux_sym__immediate_decimal_token5, - STATE(2514), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2541), 1, sym_comment, - STATE(3026), 1, - sym__immediate_decimal, - STATE(3025), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1561), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2786), 1, + sym_cell_path, + ACTIONS(1884), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1886), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1563), 27, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79189] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2542), 1, + sym_comment, + ACTIONS(1520), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1518), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -279642,17 +284306,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279661,27 +284344,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79692] = 8, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [79254] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2515), 1, + STATE(2543), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2706), 1, + STATE(2790), 1, sym_cell_path, - ACTIONS(1839), 6, + ACTIONS(1888), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1841), 44, + ACTIONS(1890), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279726,27 +284411,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79765] = 8, + [79327] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2516), 1, + STATE(2544), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2707), 1, + STATE(2804), 1, sym_cell_path, - ACTIONS(1843), 6, + ACTIONS(1892), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1845), 44, + ACTIONS(1894), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279791,27 +284476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79838] = 8, + [79400] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2517), 1, + STATE(2545), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2708), 1, + STATE(2808), 1, sym_cell_path, - ACTIONS(1847), 6, + ACTIONS(1896), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1849), 44, + ACTIONS(1898), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279856,27 +284541,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79911] = 8, + [79473] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2518), 1, + STATE(2546), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2711), 1, + STATE(2814), 1, sym_cell_path, - ACTIONS(1851), 6, + ACTIONS(1900), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1853), 44, + ACTIONS(1902), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279921,27 +284606,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79984] = 8, + [79546] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2519), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2547), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2712), 1, - sym_cell_path, - ACTIONS(1855), 6, + STATE(6218), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1857), 44, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279973,40 +284679,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80057] = 8, + [79635] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2520), 1, + STATE(2548), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2714), 1, + STATE(2815), 1, sym_cell_path, - ACTIONS(1859), 6, + ACTIONS(1904), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1861), 44, + ACTIONS(1906), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280051,27 +284744,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80130] = 8, + [79708] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2521), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2549), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2715), 1, - sym_cell_path, - ACTIONS(1863), 6, + STATE(5674), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [79797] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2550), 1, + sym_comment, + ACTIONS(1042), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1865), 44, + ACTIONS(1044), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280108,7 +284867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280116,27 +284878,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80203] = 8, + [79862] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2522), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1546), 1, + sym__command_name, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2551), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2717), 1, - sym_cell_path, - ACTIONS(1867), 6, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [79951] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2552), 1, + sym_comment, + ACTIONS(1675), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1869), 44, + ACTIONS(1677), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280173,7 +285001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280181,27 +285012,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80276] = 8, + [80016] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2523), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2553), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2718), 1, - sym_cell_path, - ACTIONS(1871), 6, + STATE(6390), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1873), 44, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280233,40 +285085,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [80105] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5490), 1, + anon_sym_DOT, + STATE(2554), 1, + sym_comment, + STATE(2605), 1, + aux_sym_cell_path_repeat1, + STATE(2711), 1, + sym_path, + STATE(2828), 1, + sym_cell_path, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1641), 47, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80349] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80178] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2524), 1, + STATE(2555), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2719), 1, + STATE(2714), 1, sym_cell_path, - ACTIONS(1875), 6, + ACTIONS(1828), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1877), 44, + ACTIONS(1830), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280311,27 +285215,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80422] = 8, - ACTIONS(247), 1, + [80251] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5490), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2556), 1, sym_comment, - STATE(2564), 1, + STATE(2605), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2711), 1, sym_path, - STATE(2720), 1, + STATE(2753), 1, sym_cell_path, - ACTIONS(1969), 6, + ACTIONS(1007), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1005), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80324] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2557), 1, + sym_comment, + ACTIONS(2380), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1971), 44, + ACTIONS(2382), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280368,7 +285330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280376,27 +285341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80495] = 8, + [80389] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2526), 1, + STATE(2558), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2721), 1, - sym_cell_path, - ACTIONS(1890), 6, + ACTIONS(2384), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1892), 44, + ACTIONS(2386), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280433,7 +285391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280441,27 +285402,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80568] = 8, + [80454] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2527), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2559), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2722), 1, - sym_cell_path, - ACTIONS(1894), 6, + STATE(7094), 1, + sym__val_number_decimal, + STATE(7646), 1, + sym__command_name, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1896), 44, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280493,40 +285475,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [80543] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2560), 1, + sym_comment, + STATE(6477), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [80632] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2561), 1, + sym_comment, + STATE(6153), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - [80641] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2528), 1, - sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2723), 1, - sym_cell_path, - ACTIONS(1937), 6, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1939), 44, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280558,40 +285621,190 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [80721] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5417), 1, + anon_sym_DOLLAR, + ACTIONS(5419), 1, + anon_sym_LPAREN2, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token5, + STATE(2562), 1, + sym_comment, + STATE(3074), 1, + sym__immediate_decimal, + STATE(3069), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1496), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1506), 27, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80802] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2563), 1, + sym_comment, + STATE(7094), 1, + sym__val_number_decimal, + STATE(7513), 1, + sym__command_name, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - [80714] = 8, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [80891] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2529), 1, - sym_comment, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2724), 1, - sym_cell_path, - ACTIONS(1945), 6, + sym_comment, + STATE(6541), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1947), 44, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280623,40 +285836,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [80980] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, + aux_sym_cmd_identifier_token38, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, + sym_cmd_identifier, + STATE(2501), 1, + sym_val_string, + STATE(2565), 1, + sym_comment, + STATE(6965), 1, + sym__command_name, + STATE(6971), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4960), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(4962), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81069] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3523), 1, + anon_sym_DQUOTE, + ACTIONS(5506), 1, + aux_sym_cmd_identifier_token38, + STATE(2566), 1, + sym_comment, + STATE(4447), 1, + sym_cmd_identifier, + STATE(4452), 1, + sym_val_string, + STATE(4477), 1, + sym__command_name, + STATE(4680), 1, + sym__str_double_quotes, + STATE(6974), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(3525), 2, sym__str_single_quotes, sym__str_back_ticks, - [80787] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2530), 1, - sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2725), 1, - sym_cell_path, - ACTIONS(1949), 6, + ACTIONS(5500), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1951), 44, + ACTIONS(5504), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5502), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280688,40 +285982,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [81158] = 16, + ACTIONS(111), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80860] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2531), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, + aux_sym_cmd_identifier_token38, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, + sym_cmd_identifier, + STATE(2501), 1, + sym_val_string, + STATE(2567), 1, sym_comment, - STATE(2564), 1, - aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2654), 1, - sym_cell_path, - ACTIONS(1965), 6, + STATE(5923), 1, + sym__command_name, + STATE(6971), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1967), 44, + ACTIONS(4964), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280753,48 +286055,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80933] = 6, - ACTIONS(247), 1, + [81247] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5502), 1, - anon_sym_DOT, - ACTIONS(5504), 1, - aux_sym__immediate_decimal_token2, - STATE(2532), 1, + STATE(2568), 1, sym_comment, - ACTIONS(1497), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 34, + ACTIONS(1556), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1554), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -280806,21 +286079,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280829,27 +286114,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81002] = 8, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [81312] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5480), 1, anon_sym_DOT, - STATE(2533), 1, + STATE(2569), 1, sym_comment, - STATE(2564), 1, + STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, + STATE(2658), 1, sym_path, - STATE(2660), 1, + STATE(2809), 1, sym_cell_path, - ACTIONS(1879), 6, + ACTIONS(1912), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1881), 44, + ACTIONS(1914), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280894,48 +286181,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81075] = 16, + [81385] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2534), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2570), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - STATE(7635), 1, + STATE(6237), 1, sym__command_name, - ACTIONS(1323), 2, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280967,48 +286254,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81164] = 16, + [81474] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2535), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2571), 1, sym_comment, - STATE(6127), 1, + STATE(6238), 1, sym__command_name, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281040,35 +286327,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81253] = 6, - ACTIONS(247), 1, + [81563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5508), 1, - aux_sym__immediate_decimal_token2, - STATE(2536), 1, + STATE(2572), 1, sym_comment, - ACTIONS(1517), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1519), 34, + ACTIONS(1655), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1653), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -281080,21 +286351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281103,48 +286386,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81322] = 16, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [81628] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, + STATE(1990), 1, sym_val_string, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2537), 1, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2573), 1, sym_comment, - STATE(6953), 1, + STATE(7094), 1, sym__val_number_decimal, - STATE(7561), 1, + STATE(7624), 1, sym__command_name, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281176,48 +286461,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81411] = 16, + [81717] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(5508), 1, + anon_sym_DOT, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token2, + STATE(2574), 1, + sym_comment, + ACTIONS(1518), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1520), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + 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, - ACTIONS(4852), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81786] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, sym_cmd_identifier, - STATE(1930), 1, + STATE(2501), 1, sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2538), 1, + STATE(2575), 1, sym_comment, - STATE(6201), 1, - sym__command_name, - STATE(6953), 1, + STATE(6971), 1, sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + STATE(7072), 1, + sym__command_name, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281249,24 +286597,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81500] = 8, - ACTIONS(3), 1, + [81875] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5486), 1, - anon_sym_DOT, - STATE(2539), 1, + ACTIONS(5417), 1, + anon_sym_DOLLAR, + ACTIONS(5419), 1, + anon_sym_LPAREN2, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token5, + STATE(2576), 1, sym_comment, - STATE(2561), 1, - aux_sym_cell_path_repeat1, - STATE(2639), 1, - sym_path, - STATE(2775), 1, - sym_cell_path, - ACTIONS(1688), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1686), 47, + STATE(3085), 1, + sym__immediate_decimal, + STATE(3082), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1604), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -281275,28 +286647,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81956] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5417), 1, + anon_sym_DOLLAR, + ACTIONS(5419), 1, + anon_sym_LPAREN2, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token5, + STATE(2577), 1, + sym_comment, + STATE(3032), 1, + sym__immediate_decimal, + STATE(3031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1588), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82037] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5417), 1, + anon_sym_DOLLAR, + ACTIONS(5419), 1, + anon_sym_LPAREN2, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token5, + STATE(2578), 1, + sym_comment, + STATE(3099), 1, + sym__immediate_decimal, + STATE(3038), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1576), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281305,6 +286775,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1584), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281313,25 +286804,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81573] = 8, + [82118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5486), 1, + ACTIONS(5512), 1, anon_sym_DOT, - STATE(2540), 1, + ACTIONS(5514), 1, + aux_sym__immediate_decimal_token2, + STATE(2579), 1, sym_comment, - STATE(2561), 1, - aux_sym_cell_path_repeat1, - STATE(2639), 1, - sym_path, - STATE(2727), 1, - sym_cell_path, - ACTIONS(1629), 3, + ACTIONS(1669), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1625), 47, + ACTIONS(1667), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -281343,7 +286830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -281379,19 +286866,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81646] = 4, + aux_sym__unquoted_in_list_token2, + [82187] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2541), 1, + ACTIONS(1338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, + aux_sym_cmd_identifier_token38, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2012), 1, + sym_cmd_identifier, + STATE(2580), 1, + sym_comment, + STATE(4477), 1, + sym__command_name, + STATE(7094), 1, + sym__val_number_decimal, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4872), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4870), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [82276] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2581), 1, + sym_comment, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2677), 1, + sym_cell_path, + ACTIONS(1832), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1834), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82349] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2582), 1, sym_comment, - ACTIONS(2137), 6, + ACTIONS(1038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2139), 48, + ACTIONS(1040), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -281440,48 +287066,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81711] = 16, + [82414] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2583), 1, + sym_comment, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2764), 1, + sym_cell_path, + ACTIONS(1822), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1826), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2542), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [82487] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token2, + STATE(2584), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - STATE(7644), 1, - sym__command_name, - ACTIONS(1323), 2, + ACTIONS(1540), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1542), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - ACTIONS(3702), 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_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82556] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2585), 1, + sym_comment, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2742), 1, + sym_cell_path, + ACTIONS(1005), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1007), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281513,48 +287246,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81800] = 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82629] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1929), 1, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2499), 1, sym_cmd_identifier, - STATE(1930), 1, + STATE(2501), 1, sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2543), 1, + STATE(2586), 1, sym_comment, - STATE(6953), 1, - sym__val_number_decimal, - STATE(7612), 1, + STATE(6828), 1, sym__command_name, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, + STATE(6971), 1, + sym__val_number_decimal, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(1336), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281586,48 +287332,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81889] = 16, + [82718] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(4852), 1, - aux_sym_cmd_identifier_token38, - STATE(1929), 1, - sym_cmd_identifier, - STATE(1930), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2544), 1, + STATE(2587), 1, sym_comment, - STATE(6228), 1, - sym__command_name, - STATE(6953), 1, - sym__val_number_decimal, - ACTIONS(1323), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4846), 5, + ACTIONS(2141), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4850), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4848), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2143), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281659,48 +287377,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81978] = 16, - ACTIONS(111), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82783] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5522), 1, + aux_sym__immediate_decimal_token2, + STATE(2588), 1, + sym_comment, + ACTIONS(1661), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1659), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [82852] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(4874), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, + STATE(1990), 1, + sym_val_string, + STATE(2002), 1, sym__str_double_quotes, - STATE(2445), 1, + STATE(2012), 1, sym_cmd_identifier, - STATE(2446), 1, - sym_val_string, - STATE(2545), 1, + STATE(2589), 1, sym_comment, - STATE(5992), 1, - sym__command_name, - STATE(7016), 1, + STATE(7094), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1323), 2, + STATE(7451), 1, + sym__command_name, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4868), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(4870), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281732,48 +287529,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82067] = 16, + [82941] = 16, ACTIONS(111), 1, anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, + STATE(1975), 1, sym__str_double_quotes, - STATE(2445), 1, + STATE(2499), 1, sym_cmd_identifier, - STATE(2446), 1, + STATE(2501), 1, sym_val_string, - STATE(2546), 1, + STATE(2590), 1, sym_comment, - STATE(7016), 1, - sym__val_number_decimal, - STATE(7260), 1, + STATE(6791), 1, sym__command_name, + STATE(6971), 1, + sym__val_number_decimal, ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281805,48 +287602,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82156] = 16, + [83030] = 16, ACTIONS(111), 1, anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1325), 1, + ACTIONS(1338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1327), 1, + ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4956), 1, + ACTIONS(4966), 1, aux_sym_cmd_identifier_token38, - STATE(1984), 1, + STATE(1975), 1, sym__str_double_quotes, - STATE(2445), 1, + STATE(2499), 1, sym_cmd_identifier, - STATE(2446), 1, + STATE(2501), 1, sym_val_string, - STATE(2547), 1, + STATE(2591), 1, sym_comment, - STATE(6751), 1, + STATE(6794), 1, sym__command_name, - STATE(7016), 1, + STATE(6971), 1, sym__val_number_decimal, ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1323), 2, + ACTIONS(1336), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4950), 5, + ACTIONS(4960), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4954), 5, + ACTIONS(4964), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4952), 31, + ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281878,90 +287675,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82245] = 12, + [83119] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5401), 1, - anon_sym_DOLLAR, - ACTIONS(5403), 1, - anon_sym_LPAREN2, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5500), 1, - aux_sym__immediate_decimal_token5, - STATE(2548), 1, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2592), 1, sym_comment, - STATE(3016), 1, - sym__immediate_decimal, - STATE(3015), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1505), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1515), 27, + STATE(2604), 1, + aux_sym_cell_path_repeat1, + STATE(2658), 1, + sym_path, + STATE(2794), 1, + sym_cell_path, + ACTIONS(1836), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1838), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82326] = 6, + [83192] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5510), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5512), 1, - aux_sym__immediate_decimal_token2, - STATE(2549), 1, + ACTIONS(5490), 1, + anon_sym_DOT, + STATE(2593), 1, sym_comment, - ACTIONS(1633), 4, - anon_sym_LPAREN2, + STATE(2605), 1, + aux_sym_cell_path_repeat1, + STATE(2711), 1, + sym_path, + STATE(2733), 1, + sym_cell_path, + ACTIONS(1677), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1631), 48, + ACTIONS(1675), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -281973,7 +287769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -282009,49 +287805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [82395] = 12, - ACTIONS(247), 1, + [83265] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5401), 1, - anon_sym_DOLLAR, - ACTIONS(5403), 1, - anon_sym_LPAREN2, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5500), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, + STATE(2594), 1, sym_comment, - STATE(3022), 1, - sym__immediate_decimal, - STATE(3021), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1619), 27, + ACTIONS(1542), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1540), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282060,17 +287826,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282079,35 +287864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82476] = 12, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [83330] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5401), 1, - anon_sym_DOLLAR, - ACTIONS(5403), 1, - anon_sym_LPAREN2, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5500), 1, - aux_sym__immediate_decimal_token5, - STATE(2551), 1, + ACTIONS(5524), 1, + aux_sym__immediate_decimal_token2, + STATE(2595), 1, sym_comment, - STATE(3024), 1, - sym__immediate_decimal, - STATE(3055), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1621), 18, - anon_sym_LPAREN, + ACTIONS(1554), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -282120,7 +287891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1623), 27, + aux_sym__unquoted_in_list_token2, + ACTIONS(1556), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282129,13 +287901,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -282148,27 +287927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82557] = 8, + [83396] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5526), 1, anon_sym_DOT, - STATE(2552), 1, + STATE(2658), 1, + sym_path, + STATE(2596), 2, sym_comment, - STATE(2564), 1, aux_sym_cell_path_repeat1, - STATE(2649), 1, - sym_path, - STATE(2703), 1, - sym_cell_path, - ACTIONS(1835), 6, + ACTIONS(1015), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1837), 44, + ACTIONS(1017), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282213,17 +287989,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82630] = 5, + [83464] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5514), 1, - anon_sym_QMARK2, - STATE(2553), 1, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token2, + STATE(2597), 1, sym_comment, - ACTIONS(1028), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(1518), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282232,61 +288013,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(1030), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82696] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5516), 1, - aux_sym__immediate_decimal_token2, - STATE(2554), 1, - sym_comment, - ACTIONS(1707), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1705), 48, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1520), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282298,33 +288027,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282333,23 +288050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [82762] = 6, + [83530] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_DOT, - STATE(2639), 1, - sym_path, - STATE(2555), 2, + ACTIONS(5514), 1, + aux_sym__immediate_decimal_token2, + STATE(2598), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 3, + ACTIONS(1669), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1021), 47, + ACTIONS(1667), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282361,7 +288074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -282397,76 +288110,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82830] = 6, + aux_sym__unquoted_in_list_token2, + [83596] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, + ACTIONS(5529), 1, anon_sym_DOT, - STATE(2649), 1, - sym_path, - STATE(2556), 2, + STATE(2599), 1, sym_comment, + STATE(2610), 1, aux_sym_cell_path_repeat1, - ACTIONS(1021), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1023), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82898] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5504), 1, - aux_sym__immediate_decimal_token2, - STATE(2557), 1, - sym_comment, - ACTIONS(1497), 18, + STATE(2754), 1, + sym_path, + STATE(2858), 1, + sym_cell_path, + ACTIONS(1005), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -282484,8 +288142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 34, + ACTIONS(1007), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282497,7 +288154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -282506,8 +288163,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -282520,15 +288175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82964] = 4, + [83668] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5524), 1, - sym__entry_separator, - STATE(2558), 2, + ACTIONS(5531), 1, + aux_sym__immediate_decimal_token2, + STATE(2600), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2359), 51, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1721), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282538,14 +288197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282560,9 +288218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282580,49 +288235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83028] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [83734] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5484), 1, - aux_sym__immediate_decimal_token2, - STATE(2559), 1, + ACTIONS(5533), 1, + anon_sym_QMARK2, + STATE(2601), 1, sym_comment, - ACTIONS(1645), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1028), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282631,6 +288255,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1030), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282639,22 +288297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83094] = 8, + [83800] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5529), 1, anon_sym_DOT, - STATE(2560), 1, + STATE(2602), 1, sym_comment, - STATE(2571), 1, + STATE(2610), 1, aux_sym_cell_path_repeat1, - STATE(2696), 1, + STATE(2754), 1, sym_path, - STATE(2853), 1, + STATE(2836), 1, sym_cell_path, - ACTIONS(1686), 17, + ACTIONS(1641), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -282672,7 +288328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1688), 32, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282684,7 +288340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -282705,22 +288361,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83166] = 7, - ACTIONS(3), 1, + [83872] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5486), 1, + ACTIONS(5535), 1, + anon_sym_QMARK2, + STATE(2603), 1, + sym_comment, + ACTIONS(1022), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1024), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - STATE(2555), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83938] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_DOT, + STATE(2596), 1, aux_sym_cell_path_repeat1, - STATE(2561), 1, + STATE(2604), 1, sym_comment, - STATE(2639), 1, + STATE(2658), 1, + sym_path, + ACTIONS(1011), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1013), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84008] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5490), 1, + anon_sym_DOT, + STATE(2605), 1, + sym_comment, + STATE(2606), 1, + aux_sym_cell_path_repeat1, + STATE(2711), 1, sym_path, - ACTIONS(1019), 3, + ACTIONS(1013), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1017), 47, + ACTIONS(1011), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282732,7 +288512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -282768,38 +288548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83236] = 8, - ACTIONS(247), 1, + [84078] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5537), 1, anon_sym_DOT, - STATE(2562), 1, + STATE(2711), 1, + sym_path, + STATE(2606), 2, sym_comment, - STATE(2571), 1, aux_sym_cell_path_repeat1, - STATE(2696), 1, - sym_path, - STATE(2831), 1, - sym_cell_path, - ACTIONS(1011), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1013), 32, + ACTIONS(1017), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1015), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282811,19 +288574,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282832,20 +288609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83308] = 8, + aux_sym__unquoted_in_list_token1, + [84146] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5529), 1, anon_sym_DOT, - STATE(2563), 1, + STATE(2607), 1, sym_comment, - STATE(2571), 1, + STATE(2610), 1, aux_sym_cell_path_repeat1, - STATE(2696), 1, + STATE(2754), 1, sym_path, - STATE(2792), 1, + STATE(2840), 1, sym_cell_path, - ACTIONS(1625), 17, + ACTIONS(1675), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -282863,7 +288641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1629), 32, + ACTIONS(1677), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -282875,7 +288653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -282896,25 +288674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83380] = 7, + [84218] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - anon_sym_DOT, - STATE(2556), 1, - aux_sym_cell_path_repeat1, - STATE(2564), 1, + STATE(2608), 1, sym_comment, - STATE(2649), 1, - sym_path, - ACTIONS(1017), 6, + ACTIONS(1042), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1019), 44, + anon_sym_DOT, + ACTIONS(1044), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282952,6 +288725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282959,75 +288733,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83450] = 5, - ACTIONS(247), 1, + [84281] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5529), 1, - anon_sym_QMARK2, - STATE(2565), 1, + ACTIONS(5540), 1, + sym__entry_separator, + STATE(2609), 2, sym_comment, - ACTIONS(1034), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1036), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83516] = 5, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 50, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84344] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5531), 1, - aux_sym__immediate_decimal_token2, - STATE(2566), 1, + ACTIONS(5529), 1, + anon_sym_DOT, + STATE(2610), 1, sym_comment, - ACTIONS(1565), 18, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(2754), 1, + sym_path, + ACTIONS(1011), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -283045,8 +288821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1567), 34, + ACTIONS(1013), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283058,7 +288833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -283067,8 +288842,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -283081,17 +288854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83582] = 4, + [84413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2567), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1633), 4, - anon_sym_LPAREN2, + ACTIONS(1044), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1631), 48, + ACTIONS(1042), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283103,9 +288875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -283139,80 +288913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83645] = 6, + [84476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5535), 1, - anon_sym_RBRACK, - ACTIONS(5537), 1, - sym__entry_separator, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(2568), 1, + STATE(2612), 1, sym_comment, - ACTIONS(5533), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83712] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1040), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5539), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(2569), 1, - sym_comment, - ACTIONS(5533), 49, + ACTIONS(1038), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283220,14 +288930,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283242,9 +288955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283262,16 +288972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83779] = 4, + [84539] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2613), 1, sym_comment, - ACTIONS(1042), 3, + ACTIONS(1036), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1040), 49, + ACTIONS(1034), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283283,7 +288993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_QMARK2, anon_sym_DOT_DOT2, @@ -283321,86 +289031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83842] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DOT, - STATE(2571), 1, - sym_comment, - STATE(2605), 1, - aux_sym_cell_path_repeat1, - STATE(2696), 1, - sym_path, - ACTIONS(1017), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1019), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83911] = 6, - ACTIONS(247), 1, + [84602] = 6, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5545), 1, - anon_sym_DASH_DASH, - STATE(2743), 1, - sym_long_flag, - STATE(2572), 2, + anon_sym_RBRACK, + ACTIONS(5547), 1, + sym__entry_separator, + STATE(2609), 1, + aux_sym__multiple_types_repeat1, + STATE(2614), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5541), 6, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5543), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283408,10 +289051,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -283432,89 +289078,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83978] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2573), 1, - sym_comment, - ACTIONS(1046), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1044), 49, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84041] = 6, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_RBRACK, - ACTIONS(5552), 1, + ACTIONS(5547), 1, sym__entry_separator, - STATE(2574), 1, - sym_comment, - STATE(2603), 1, + ACTIONS(5549), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, + STATE(2615), 1, + sym_comment, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -283564,16 +289153,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84108] = 4, - ACTIONS(3), 1, + [84736] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2575), 1, + ACTIONS(5551), 1, + anon_sym_DOT, + STATE(2754), 1, + sym_path, + STATE(2616), 2, sym_comment, - ACTIONS(1050), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1048), 49, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1017), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283585,35 +289193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283622,21 +289214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84171] = 6, + [84803] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token2, - STATE(2576), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 47, + STATE(2617), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 50, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283646,13 +289232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283667,6 +289253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283684,18 +289273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84238] = 6, + [84866] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5547), 1, sym__entry_separator, - ACTIONS(5558), 1, + ACTIONS(5557), 1, anon_sym_RBRACK, - STATE(2577), 1, - sym_comment, - STATE(2603), 1, + STATE(2609), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, + STATE(2618), 1, + sym_comment, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -283745,18 +289334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84305] = 6, + [84933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5547), 1, sym__entry_separator, - ACTIONS(5560), 1, + ACTIONS(5559), 1, anon_sym_RBRACK, - STATE(2578), 1, - sym_comment, - STATE(2603), 1, + STATE(2609), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, + STATE(2619), 1, + sym_comment, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -283806,18 +289395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84372] = 6, + [85000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5547), 1, sym__entry_separator, - ACTIONS(5562), 1, + ACTIONS(5561), 1, anon_sym_RBRACK, - STATE(2579), 1, - sym_comment, - STATE(2603), 1, + STATE(2609), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, + STATE(2620), 1, + sym_comment, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -283867,77 +289456,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84439] = 4, - ACTIONS(247), 1, + [85067] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2580), 1, + ACTIONS(5565), 1, + anon_sym_RBRACK, + ACTIONS(5567), 1, + sym__entry_separator, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(2621), 1, sym_comment, - ACTIONS(1040), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1042), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(5563), 49, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + 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, sym__str_single_quotes, sym__str_back_ticks, - [84502] = 6, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [85134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(5564), 1, + ACTIONS(5569), 1, anon_sym_RBRACK, - STATE(2581), 1, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(2622), 1, sym_comment, - STATE(2603), 1, + ACTIONS(5563), 49, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [85201] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(5571), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, + STATE(2623), 1, + sym_comment, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -283987,12 +289639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84569] = 4, + [85268] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2582), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1044), 7, + ACTIONS(1038), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -284000,7 +289652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1046), 45, + ACTIONS(1040), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284046,26 +289698,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84632] = 6, + [85331] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5566), 1, - sym_long_flag_identifier, - ACTIONS(5568), 1, - anon_sym_EQ2, - STATE(2583), 1, + STATE(2625), 1, sym_comment, - ACTIONS(4737), 8, - aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4735), 42, + ACTIONS(1034), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1036), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284073,13 +289719,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -284100,90 +289743,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - [84699] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5570), 1, - anon_sym_DOT_DOT2, - STATE(2584), 1, - sym_comment, - ACTIONS(5572), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 46, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84770] = 4, + [85394] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2585), 1, + ACTIONS(5577), 1, + anon_sym_DASH_DASH, + STATE(2797), 1, + sym_long_flag, + STATE(2626), 2, sym_comment, - ACTIONS(1048), 7, + aux_sym_decl_def_repeat1, + ACTIONS(5573), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1050), 45, + ACTIONS(5575), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284220,8 +289811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -284229,17 +289818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84833] = 5, + [85461] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5574), 1, - sym__newline, - STATE(2586), 2, + ACTIONS(5580), 1, + anon_sym_DOT_DOT2, + ACTIONS(5584), 1, + sym_filesize_unit, + ACTIONS(5586), 1, + sym_duration_unit, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token2, + STATE(2627), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1898), 15, - anon_sym_DOLLAR, + ACTIONS(5582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -284253,21 +289851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1900), 35, + ACTIONS(1572), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -284278,9 +289874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284289,81 +289882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84898] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(5577), 1, - anon_sym_RBRACK, - STATE(2587), 1, - sym_comment, - STATE(2603), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84965] = 6, + [85534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5579), 1, + ACTIONS(5590), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5581), 1, + ACTIONS(5592), 1, aux_sym__immediate_decimal_token2, - STATE(2588), 1, + STATE(2628), 1, sym_comment, - ACTIONS(1633), 3, + ACTIONS(1661), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1631), 47, + ACTIONS(1659), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -284375,7 +289907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -284411,197 +289943,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85032] = 4, - ACTIONS(3), 1, + [85601] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2513), 1, - sym__entry_separator, - STATE(2589), 1, + ACTIONS(5594), 1, + sym_long_flag_identifier, + ACTIONS(5596), 1, + anon_sym_EQ2, + STATE(2629), 1, sym_comment, - ACTIONS(2511), 51, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + ACTIONS(4810), 8, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85095] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2590), 1, - sym_comment, - ACTIONS(1056), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1058), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85158] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5583), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5585), 1, - aux_sym__immediate_decimal_token2, - STATE(2591), 1, - sym_comment, - ACTIONS(1631), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 32, + ACTIONS(4808), 42, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85225] = 6, + aux_sym__val_number_decimal_token1, + [85668] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(5587), 1, + ACTIONS(5598), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(2592), 1, + STATE(2630), 1, sym_comment, - ACTIONS(5533), 49, + ACTIONS(5563), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -284611,7 +290025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, @@ -284651,80 +290065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85292] = 6, - ACTIONS(3), 1, + [85735] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(5589), 1, - anon_sym_RBRACK, - STATE(2593), 1, + ACTIONS(5600), 1, + anon_sym_QMARK2, + STATE(2631), 1, sym_comment, - STATE(2603), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, + ACTIONS(1028), 7, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85359] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(5591), 1, - anon_sym_RBRACK, - STATE(2594), 1, - sym_comment, - STATE(2603), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5548), 49, - aux_sym_cmd_identifier_token1, + anon_sym_DOT, + ACTIONS(1030), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284732,13 +290088,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -284759,13 +290112,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -284773,53 +290125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85426] = 9, - ACTIONS(3), 1, + [85800] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5595), 1, - anon_sym_RBRACK, - ACTIONS(5598), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2595), 1, + STATE(2632), 1, sym_comment, - STATE(5815), 1, + STATE(2642), 1, aux_sym_cell_path_repeat1, - STATE(6548), 1, + STATE(2655), 1, sym_path, - STATE(6938), 1, - sym_cell_path, - ACTIONS(1965), 2, - sym__entry_separator, - sym__table_head_separator, - ACTIONS(5593), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1011), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284828,66 +290148,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85499] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5600), 1, - anon_sym_QMARK2, - STATE(2596), 1, - sym_comment, - ACTIONS(1036), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1034), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1013), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284896,50 +290187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85564] = 5, - ACTIONS(3), 1, + [85869] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_QMARK2, - STATE(2597), 1, + STATE(2633), 1, sym_comment, - ACTIONS(1030), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1028), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1518), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284948,26 +290209,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85629] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2598), 1, - sym_comment, - ACTIONS(1707), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1705), 48, + aux_sym__unquoted_in_list_token2, + ACTIONS(1520), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -284979,92 +290223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85692] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2599), 1, - sym_comment, - ACTIONS(1757), 4, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285073,19 +290246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85755] = 6, + [85932] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2600), 2, + STATE(2634), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 11, + ACTIONS(1050), 11, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, @@ -285097,7 +290263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1023), 38, + ACTIONS(1052), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285113,8 +290279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_as, anon_sym_and, anon_sym_xor, @@ -285128,6 +290296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285136,72 +290305,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85822] = 5, + [85995] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_QMARK2, - STATE(2601), 1, + STATE(2635), 1, sym_comment, - ACTIONS(1034), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1036), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1054), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1056), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86058] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2636), 1, + sym_comment, + ACTIONS(1540), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1542), 34, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85887] = 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, + [86121] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2602), 1, + STATE(2637), 1, sym_comment, - ACTIONS(1497), 18, + ACTIONS(1554), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -285220,7 +290447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 34, + ACTIONS(1556), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285232,7 +290459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -285255,15 +290482,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, - [85950] = 4, + [86184] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5609), 1, + ACTIONS(5547), 1, sym__entry_separator, - STATE(2603), 2, - sym_comment, + ACTIONS(5604), 1, + anon_sym_RBRACK, + STATE(2609), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2359), 50, + STATE(2638), 1, + sym_comment, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -285306,7 +290536,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -285314,22 +290543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86013] = 5, - ACTIONS(247), 1, + [86251] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5612), 1, - anon_sym_QMARK2, - STATE(2604), 1, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(5606), 1, + anon_sym_RBRACK, + STATE(2609), 1, + aux_sym__multiple_types_repeat1, + STATE(2639), 1, sym_comment, - ACTIONS(1028), 7, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1030), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285337,10 +290563,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -285361,12 +290590,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -285374,17 +290604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86078] = 6, + [86318] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5614), 1, - anon_sym_DOT, - STATE(2696), 1, - sym_path, - STATE(2605), 2, + STATE(2640), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 17, + ACTIONS(1653), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -285402,7 +290627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1023), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1655), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285414,7 +290640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -285423,6 +290649,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -285435,24 +290663,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, - [86145] = 9, + [86381] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5617), 1, - anon_sym_DOT_DOT2, - ACTIONS(5621), 1, - sym_filesize_unit, - ACTIONS(5623), 1, - sym_duration_unit, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token2, - STATE(2606), 1, + ACTIONS(5608), 1, + anon_sym_DOT, + ACTIONS(5610), 1, + aux_sym__immediate_decimal_token2, + STATE(2641), 1, sym_comment, - ACTIONS(5619), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 16, + ACTIONS(1667), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -285468,7 +290690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1587), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285480,7 +290703,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + 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, @@ -285499,12 +290724,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86218] = 4, + [86448] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2607), 1, + ACTIONS(5612), 1, + anon_sym_DOT, + STATE(2655), 1, + sym_path, + STATE(2642), 2, sym_comment, - ACTIONS(1517), 18, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1017), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86515] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2643), 1, + sym_comment, + ACTIONS(1669), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1667), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [86578] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5615), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5617), 1, + aux_sym__immediate_decimal_token2, + STATE(2644), 1, + sym_comment, + ACTIONS(1659), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -285523,7 +290872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1519), 34, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285535,7 +290884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -285544,8 +290893,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -285558,18 +290905,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, - [86281] = 6, + [86645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(5627), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(2608), 1, + STATE(2645), 1, sym_comment, - ACTIONS(5533), 49, + ACTIONS(1661), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1659), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285577,14 +290923,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -285599,9 +290946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285619,15 +290963,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86348] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [86708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2646), 1, sym_comment, - ACTIONS(1060), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1721), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285636,40 +291013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1062), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285678,15 +291021,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, - [86411] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [86771] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + STATE(2647), 1, sym_comment, - ACTIONS(1052), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(1740), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1738), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285695,40 +291072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1054), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285737,16 +291080,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86474] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [86834] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2611), 1, + ACTIONS(5619), 1, + sym__newline, + STATE(2648), 1, sym_comment, - ACTIONS(1565), 18, + ACTIONS(5622), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1311), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -285760,8 +291108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1567), 34, + ACTIONS(1307), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285769,25 +291116,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285796,23 +291143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86537] = 8, + [86901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(5629), 1, - anon_sym_DOT_DOT2, - STATE(2612), 1, + ACTIONS(5624), 1, + anon_sym_DOT, + ACTIONS(5626), 1, + aux_sym__immediate_decimal_token2, + STATE(2649), 1, sym_comment, - ACTIONS(5631), 2, + ACTIONS(1669), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 46, + sym__entry_separator, + ACTIONS(1667), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285824,8 +291168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -285859,20 +291204,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86608] = 4, - ACTIONS(247), 1, + [86968] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2613), 1, + ACTIONS(5628), 1, + anon_sym_QMARK2, + STATE(2650), 1, sym_comment, - ACTIONS(1639), 18, + ACTIONS(1024), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1022), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285881,9 +291255,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1641), 34, + [87033] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5630), 1, + anon_sym_QMARK2, + STATE(2651), 1, + sym_comment, + ACTIONS(1030), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1028), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285895,21 +291287,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285918,24 +291323,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86671] = 6, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87098] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5633), 1, - anon_sym_DOT, - ACTIONS(5635), 1, - aux_sym__immediate_decimal_token2, - STATE(2614), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, + sym__entry_separator, + ACTIONS(5632), 1, + anon_sym_DOT_DOT2, + STATE(2652), 1, sym_comment, - ACTIONS(1643), 18, + ACTIONS(5634), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1778), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285944,9 +291378,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, + [87169] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__entry_separator, + ACTIONS(1798), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 32, + ACTIONS(5636), 1, + anon_sym_DOT_DOT2, + STATE(2653), 1, + sym_comment, + ACTIONS(5638), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285958,19 +291415,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285979,17 +291449,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, - [86738] = 4, + aux_sym__unquoted_in_list_token1, + [87240] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2615), 1, + ACTIONS(5642), 1, + anon_sym_RBRACK, + ACTIONS(5645), 1, + anon_sym_DOT, + STATE(2654), 1, sym_comment, - ACTIONS(1645), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(5635), 1, + aux_sym_cell_path_repeat1, + STATE(6603), 1, + sym_path, + STATE(6924), 1, + sym_cell_path, + ACTIONS(1828), 2, sym__entry_separator, - ACTIONS(1643), 48, + sym__table_head_separator, + ACTIONS(5640), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285997,13 +291476,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -286037,19 +291514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86801] = 7, + [87313] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2600), 1, - aux_sym_cell_path_repeat1, - STATE(2616), 1, + STATE(2655), 1, sym_comment, - ACTIONS(1017), 11, + ACTIONS(1046), 11, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, @@ -286061,7 +291531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1019), 38, + ACTIONS(1048), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286077,8 +291547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_as, anon_sym_and, anon_sym_xor, @@ -286092,6 +291564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286100,22 +291573,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86870] = 8, + [87376] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5647), 1, + anon_sym_QMARK2, + STATE(2656), 1, + sym_comment, + ACTIONS(1022), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1024), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87441] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, + ACTIONS(5649), 1, + anon_sym_RBRACK, STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(2657), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2882), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1945), 46, + ACTIONS(5563), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286123,14 +291652,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_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, @@ -286145,6 +291674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286162,17 +291694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86940] = 4, - ACTIONS(3), 1, + [87508] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2618), 1, + STATE(2658), 1, sym_comment, - ACTIONS(2261), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2259), 48, + ACTIONS(1046), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1048), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286180,13 +291715,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -286207,11 +291739,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -286219,20 +291749,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [87002] = 6, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87570] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5643), 1, - aux_sym__immediate_decimal_token2, - STATE(2619), 1, + ACTIONS(1830), 1, + sym__table_head_separator, + ACTIONS(5653), 1, + anon_sym_DOT, + STATE(2659), 1, sym_comment, - ACTIONS(1633), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1631), 47, + STATE(2714), 1, + sym_cell_path, + STATE(6495), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + ACTIONS(5640), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5651), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286244,32 +291794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286278,21 +291815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [87068] = 4, - ACTIONS(247), 1, + [87642] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2660), 1, sym_comment, - ACTIONS(5044), 6, + ACTIONS(2255), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2253), 48, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5042), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286300,10 +291833,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -286324,33 +291860,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym_unquoted_token4, + [87704] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1914), 1, + sym__entry_separator, + ACTIONS(5657), 1, + anon_sym_RBRACK, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2661), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2993), 1, + sym_cell_path, + ACTIONS(5655), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [87130] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [87776] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2621), 1, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(2662), 1, sym_comment, - ACTIONS(5048), 6, + ACTIONS(1072), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1070), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5046), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286358,10 +291956,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -286382,33 +291983,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87192] = 6, - ACTIONS(3), 1, + [87840] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5645), 1, + STATE(2663), 1, + sym_comment, + ACTIONS(1038), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1040), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - ACTIONS(5647), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [87902] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5626), 1, aux_sym__immediate_decimal_token2, - STATE(2622), 1, + STATE(2664), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_LPAREN2, + ACTIONS(1669), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 47, + ACTIONS(1667), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286420,8 +292076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -286455,28 +292112,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [87258] = 9, + [87966] = 30, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1967), 1, - sym__table_head_separator, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2623), 1, - sym_comment, - STATE(2654), 1, - sym_cell_path, - STATE(6566), 1, - aux_sym_cell_path_repeat1, - STATE(6721), 1, - sym_path, - ACTIONS(5593), 14, - anon_sym_DOT_DOT, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(3864), 1, + aux_sym_unquoted_token1, + ACTIONS(4003), 1, + anon_sym_DOLLAR, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5664), 1, + anon_sym_LPAREN, + ACTIONS(5666), 1, + sym_val_date, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2665), 1, + sym_comment, + STATE(5858), 1, + sym__val_number_decimal, + STATE(6124), 1, + sym_unquoted, + STATE(7538), 1, + sym_val_bool, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4399), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6112), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286485,52 +292186,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5649), 32, + ACTIONS(2645), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88080] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2410), 1, + sym__entry_separator, + STATE(2666), 1, + sym_comment, + ACTIONS(2408), 50, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [87330] = 5, + [88142] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, + ACTIONS(5668), 1, aux_sym__immediate_decimal_token2, - STATE(2624), 1, + STATE(2667), 1, sym_comment, - ACTIONS(1645), 3, + ACTIONS(1723), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 47, + ACTIONS(1721), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286542,7 +292277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -286578,16 +292313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87394] = 5, + [88206] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(2625), 1, + STATE(2668), 1, sym_comment, - ACTIONS(5533), 49, + ACTIONS(5563), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286597,7 +292332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, @@ -286637,18 +292372,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87458] = 5, + [88270] = 32, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2571), 1, + anon_sym_0b, + ACTIONS(2581), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2583), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2995), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + anon_sym_DOLLAR, + ACTIONS(3005), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3007), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3009), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3011), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3015), 1, + anon_sym_DQUOTE, + ACTIONS(3023), 1, + anon_sym_LBRACK, + ACTIONS(5672), 1, + anon_sym_null, + ACTIONS(5674), 1, + anon_sym_LBRACE, + ACTIONS(5676), 1, + anon_sym_DOT_DOT, + ACTIONS(5680), 1, + sym_val_date, + STATE(495), 1, + sym__inter_single_quotes, + STATE(556), 1, + sym__inter_double_quotes, + STATE(2669), 1, + sym_comment, + STATE(2915), 1, + sym__val_number, + STATE(5413), 1, + sym__str_double_quotes, + STATE(5586), 1, + sym__val_number_decimal, + STATE(5719), 1, + sym_val_variable, + STATE(5974), 1, + sym_expr_parenthesized, + STATE(7343), 1, + sym_block, + ACTIONS(2573), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3017), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5670), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5678), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(7372), 2, + sym_val_range, + sym__value, + ACTIONS(2569), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(521), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [88388] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5653), 1, + ACTIONS(5682), 1, + anon_sym_DOT, + ACTIONS(5684), 1, aux_sym__immediate_decimal_token2, - STATE(2626), 1, + STATE(2670), 1, sym_comment, - ACTIONS(1707), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1705), 47, + ACTIONS(1667), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286660,9 +292482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -286696,77 +292517,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87522] = 4, + aux_sym__unquoted_in_list_token2, + [88454] = 32, ACTIONS(247), 1, anon_sym_POUND, - STATE(2627), 1, - sym_comment, - ACTIONS(1044), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1046), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2571), 1, + anon_sym_0b, + ACTIONS(2581), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2583), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2995), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [87584] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2628), 1, - sym_comment, - ACTIONS(2297), 3, + ACTIONS(3005), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3007), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3009), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3011), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3015), 1, anon_sym_DQUOTE, + ACTIONS(3023), 1, + anon_sym_LBRACK, + ACTIONS(5672), 1, + anon_sym_null, + ACTIONS(5674), 1, + anon_sym_LBRACE, + ACTIONS(5676), 1, + anon_sym_DOT_DOT, + ACTIONS(5680), 1, + sym_val_date, + STATE(495), 1, + sym__inter_single_quotes, + STATE(556), 1, + sym__inter_double_quotes, + STATE(2671), 1, + sym_comment, + STATE(2915), 1, + sym__val_number, + STATE(5413), 1, + sym__str_double_quotes, + STATE(5586), 1, + sym__val_number_decimal, + STATE(5719), 1, + sym_val_variable, + STATE(5978), 1, + sym_expr_parenthesized, + STATE(7198), 1, + sym_block, + ACTIONS(2573), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2293), 47, + ACTIONS(5670), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5678), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(7233), 2, + sym_val_range, + sym__value, + ACTIONS(2569), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(521), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [88572] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2672), 1, + sym_comment, + ACTIONS(1050), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1052), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286774,13 +292625,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -286801,11 +292649,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -286813,19 +292659,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87648] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88634] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(2629), 1, + ACTIONS(2410), 1, + sym__entry_separator, + STATE(2673), 1, sym_comment, - ACTIONS(1078), 3, + ACTIONS(2408), 50, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1076), 47, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [88696] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5391), 1, + aux_sym_unquoted_token2, + STATE(2674), 1, + sym_comment, + ACTIONS(1560), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1572), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286833,13 +292742,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -286860,11 +292766,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -286872,14 +292776,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87712] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88760] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2513), 1, + ACTIONS(5547), 1, sym__entry_separator, - STATE(2630), 1, + STATE(2609), 1, + aux_sym__multiple_types_repeat1, + STATE(2675), 1, sym_comment, - ACTIONS(2511), 50, + ACTIONS(5543), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -286922,7 +292831,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -286930,24 +292838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87774] = 6, + [88824] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5655), 1, - anon_sym_DOT, - ACTIONS(5657), 1, - aux_sym__immediate_decimal_token2, - STATE(2631), 1, + STATE(2676), 1, sym_comment, - ACTIONS(1643), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1034), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286956,32 +292855,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1036), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286990,78 +292896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87840] = 5, - ACTIONS(3), 1, + [88886] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(2632), 1, + STATE(2677), 1, sym_comment, - ACTIONS(2247), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 47, + ACTIONS(2388), 6, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [87904] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(2633), 1, - sym_comment, - ACTIONS(2253), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2251), 47, - aux_sym_cmd_identifier_token1, + ACTIONS(2390), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287069,13 +292916,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287096,11 +292940,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -287108,77 +292950,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87968] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1013), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2634), 1, - sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2924), 1, - sym_path, - STATE(2955), 1, - sym_cell_path, - ACTIONS(1011), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88038] = 4, + sym__table_head_separator, + [88948] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2635), 1, + ACTIONS(5686), 1, + anon_sym_DOT, + ACTIONS(5688), 1, + aux_sym__immediate_decimal_token2, + STATE(2678), 1, sym_comment, - ACTIONS(1040), 18, + ACTIONS(1667), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -287194,7 +292981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1042), 33, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287206,8 +292993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -287228,17 +293014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88100] = 5, - ACTIONS(3), 1, + [89014] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - STATE(2603), 1, - aux_sym__multiple_types_repeat1, - STATE(2636), 1, + ACTIONS(5690), 1, + anon_sym_LBRACK2, + STATE(2679), 1, sym_comment, - ACTIONS(5548), 49, + ACTIONS(2313), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2317), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287246,13 +293036,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287273,13 +293060,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287287,79 +293073,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88164] = 4, + [89078] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2637), 1, + STATE(2680), 1, sym_comment, - ACTIONS(1044), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(1054), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1046), 33, + ACTIONS(1056), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88226] = 5, - ACTIONS(247), 1, + [89140] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5659), 1, - anon_sym_LBRACK2, - STATE(2638), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(2681), 1, sym_comment, - ACTIONS(2303), 6, + ACTIONS(2241), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2237), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2307), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287367,10 +293151,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287391,9 +293178,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -287401,19 +293190,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88290] = 4, + [89204] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2639), 1, - sym_comment, - ACTIONS(1058), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1838), 1, sym__entry_separator, - ACTIONS(1056), 48, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2682), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2930), 1, + sym_cell_path, + ACTIONS(1836), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287425,10 +293217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -287462,132 +293252,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88352] = 6, - ACTIONS(247), 1, + [89274] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5661), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5663), 1, - aux_sym__immediate_decimal_token2, - STATE(2640), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(2683), 1, sym_comment, - ACTIONS(1631), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1633), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(2247), 3, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88418] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2641), 1, - sym_comment, - ACTIONS(1048), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1050), 33, + ACTIONS(2245), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88480] = 5, + [89338] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5665), 1, + ACTIONS(5692), 1, anon_sym_QMARK2, - STATE(2642), 1, + STATE(2684), 1, sym_comment, - ACTIONS(1034), 18, + ACTIONS(1022), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -287606,7 +293337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1036), 32, + ACTIONS(1024), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287618,7 +293349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -287639,195 +293370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88544] = 4, + [89402] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2643), 1, - sym_comment, - ACTIONS(1040), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1042), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, + ACTIONS(5694), 1, anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88606] = 32, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - anon_sym_0b, - ACTIONS(2844), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2846), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2984), 1, - anon_sym_LPAREN, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(2994), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3000), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_LBRACK, - ACTIONS(5669), 1, - anon_sym_null, - ACTIONS(5671), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5673), 1, - anon_sym_DOT_DOT, - ACTIONS(5677), 1, - sym_val_date, - STATE(2644), 1, - sym_comment, - STATE(2907), 1, - sym__val_number, - STATE(5345), 1, - sym__str_double_quotes, - STATE(5628), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_val_variable, - STATE(6539), 1, - sym__inter_single_quotes, - STATE(6540), 1, - sym__inter_double_quotes, - STATE(6545), 1, - sym_expr_parenthesized, - STATE(6838), 1, - sym_block, - ACTIONS(2836), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5667), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5675), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(6923), 2, - sym_val_range, - sym__value, - ACTIONS(2832), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(6275), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [88724] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1833), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2645), 1, + STATE(2685), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2924), 1, - sym_path, - STATE(2925), 1, - sym_cell_path, - ACTIONS(1829), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1028), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287836,83 +293395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88794] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2646), 1, - sym_comment, - ACTIONS(1048), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1050), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88856] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2647), 1, - sym_comment, - ACTIONS(1062), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1060), 48, + ACTIONS(1030), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287924,34 +293408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287960,17 +293429,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88918] = 4, - ACTIONS(3), 1, + [89466] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2648), 1, + ACTIONS(5610), 1, + aux_sym__immediate_decimal_token2, + STATE(2686), 1, sym_comment, - ACTIONS(1054), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1052), 48, + ACTIONS(1667), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287982,34 +293467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288018,21 +293488,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88980] = 4, + [89530] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2649), 1, + ACTIONS(5696), 1, + anon_sym_EQ2, + STATE(2687), 1, sym_comment, - ACTIONS(1056), 7, + ACTIONS(4900), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1058), 44, + ACTIONS(4898), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288077,22 +293547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89042] = 8, + [89594] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(1842), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2650), 1, + STATE(2688), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2915), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1835), 46, + STATE(2954), 1, + sym_cell_path, + ACTIONS(1840), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288104,7 +293574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -288139,22 +293609,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89112] = 8, + [89664] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1846), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2651), 1, + STATE(2689), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2923), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1839), 46, + STATE(2955), 1, + sym_cell_path, + ACTIONS(1844), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288166,7 +293636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -288201,20 +293671,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89182] = 5, - ACTIONS(247), 1, + [89734] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_QMARK2, - STATE(2652), 1, + ACTIONS(1850), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2690), 1, sym_comment, - ACTIONS(1028), 18, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2924), 1, + sym_cell_path, + ACTIONS(1848), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [89804] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5698), 1, + sym__newline, + STATE(2691), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1313), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -288227,7 +293757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1030), 32, + ACTIONS(1315), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288235,13 +293765,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, @@ -288252,6 +293781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288260,22 +293792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89246] = 8, + [89868] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1854), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2653), 1, + STATE(2692), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2921), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1937), 46, + STATE(2927), 1, + sym_cell_path, + ACTIONS(1852), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288287,7 +293819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -288322,80 +293854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89316] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2654), 1, - sym_comment, - ACTIONS(1879), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1881), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - sym__table_head_separator, - [89378] = 8, + [89938] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, + ACTIONS(1858), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2655), 1, + STATE(2693), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2869), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1847), 46, + STATE(2967), 1, + sym_cell_path, + ACTIONS(1856), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288407,7 +293881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -288442,21 +293916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89448] = 5, - ACTIONS(247), 1, + [90008] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5681), 1, - anon_sym_EQ2, - STATE(2656), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(2694), 1, sym_comment, - ACTIONS(4916), 6, + ACTIONS(2233), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2229), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4914), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288464,10 +293936,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -288488,9 +293963,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -288498,25 +293975,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89512] = 8, + [90072] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1866), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2657), 1, + STATE(2695), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2874), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1851), 46, + STATE(2951), 1, + sym_cell_path, + ACTIONS(1864), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288528,7 +294002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -288563,130 +294037,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89582] = 5, - ACTIONS(247), 1, + [90142] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym_unquoted_token2, - STATE(2658), 1, + ACTIONS(1870), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2696), 1, sym_comment, - ACTIONS(1575), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1587), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2952), 1, + sym_cell_path, + ACTIONS(1868), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89646] = 29, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3263), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5685), 1, - anon_sym_LPAREN, - ACTIONS(5687), 1, - anon_sym_DOLLAR, - ACTIONS(5689), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5691), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2463), 1, - sym__inter_single_quotes, - STATE(2464), 1, - sym__inter_double_quotes, - STATE(2659), 1, - sym_comment, - STATE(5847), 1, - sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, - sym__val_range, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3702), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1518), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288695,8 +294090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288705,134 +294098,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, - [89758] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [90212] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2660), 1, + ACTIONS(1874), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2697), 1, sym_comment, - ACTIONS(2443), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2445), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2957), 1, + sym_cell_path, + ACTIONS(1872), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - sym__table_head_separator, - [89820] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [90282] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2661), 1, - sym_comment, - ACTIONS(1060), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, + ACTIONS(1878), 1, + sym__entry_separator, + ACTIONS(5660), 1, anon_sym_DOT, - ACTIONS(1062), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2698), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2964), 1, + sym_cell_path, + ACTIONS(1876), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89882] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2662), 1, - sym_comment, - ACTIONS(1345), 15, - anon_sym_DOLLAR, - 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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288841,36 +294214,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1349), 36, + [90352] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2699), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2902), 1, + sym_cell_path, + ACTIONS(1880), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288879,194 +294284,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89944] = 32, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [90422] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - anon_sym_0b, - ACTIONS(2844), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2846), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2984), 1, + ACTIONS(1886), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2700), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2911), 1, + sym_cell_path, + ACTIONS(1884), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2986), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(2994), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(2996), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2998), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3000), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_LBRACK, - ACTIONS(5669), 1, - anon_sym_null, - ACTIONS(5671), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5673), 1, - anon_sym_DOT_DOT, - ACTIONS(5677), 1, - sym_val_date, - STATE(2663), 1, - sym_comment, - STATE(2907), 1, - sym__val_number, - STATE(5345), 1, - sym__str_double_quotes, - STATE(5628), 1, - sym__val_number_decimal, - STATE(5808), 1, - sym_val_variable, - STATE(5894), 1, - sym_expr_parenthesized, - STATE(6539), 1, - sym__inter_single_quotes, - STATE(6540), 1, - sym__inter_double_quotes, - STATE(7291), 1, - sym_block, - ACTIONS(2836), 2, + 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(3006), 2, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5667), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [90492] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2701), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + ACTIONS(1888), 46, anon_sym_true, anon_sym_false, - ACTIONS(5675), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(7292), 2, - sym_val_range, - sym__value, - ACTIONS(2832), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(6275), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [90062] = 32, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2844), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2846), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(5669), 1, - anon_sym_null, - ACTIONS(5671), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5677), 1, - sym_val_date, - ACTIONS(5697), 1, anon_sym_LBRACK, - ACTIONS(5699), 1, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5701), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5705), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(5707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5709), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5711), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5713), 1, - anon_sym_0b, - STATE(2664), 1, - sym_comment, - STATE(5345), 1, - sym__str_double_quotes, - STATE(5358), 1, - sym__val_number_decimal, - STATE(5794), 1, - sym_val_variable, - STATE(5863), 1, - sym_expr_parenthesized, - STATE(6539), 1, - sym__inter_single_quotes, - STATE(6540), 1, - sym__inter_double_quotes, - STATE(6838), 1, - sym_block, - STATE(6882), 1, - sym__val_number, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5667), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5703), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5715), 2, - anon_sym_0o, - anon_sym_0x, - STATE(6923), 2, - sym_val_range, - sym__value, - ACTIONS(5695), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(6275), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [90180] = 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [90562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, + ACTIONS(1894), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2665), 1, + STATE(2702), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, STATE(2906), 1, sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1855), 46, + ACTIONS(1892), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289078,7 +294436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -289113,129 +294471,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90250] = 4, - ACTIONS(247), 1, + [90632] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2666), 1, - sym_comment, - ACTIONS(1052), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, + ACTIONS(1898), 1, + sym__entry_separator, + ACTIONS(5660), 1, anon_sym_DOT, - ACTIONS(1054), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2703), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2907), 1, + sym_cell_path, + ACTIONS(1896), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [90312] = 29, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [90702] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3263), 1, + ACTIONS(1902), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2704), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2969), 1, + sym_cell_path, + ACTIONS(1900), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5685), 1, - anon_sym_LPAREN, - ACTIONS(5687), 1, - anon_sym_DOLLAR, - ACTIONS(5689), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5691), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2463), 1, - sym__inter_single_quotes, - STATE(2464), 1, - sym__inter_double_quotes, - STATE(2667), 1, - sym_comment, - STATE(5847), 1, - sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, - sym__val_range, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3702), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1518), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289244,8 +294586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289254,22 +294594,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90424] = 8, + aux_sym__unquoted_in_list_token1, + [90772] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1906), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2668), 1, + STATE(2705), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2867), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1859), 46, + STATE(2916), 1, + sym_cell_path, + ACTIONS(1904), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289281,7 +294622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -289316,72 +294657,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90494] = 30, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [90842] = 29, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, + ACTIONS(3229), 1, aux_sym_record_entry_token1, - ACTIONS(3263), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(3704), 1, + ACTIONS(3864), 1, aux_sym_unquoted_token1, - ACTIONS(3991), 1, - anon_sym_DOLLAR, - ACTIONS(4091), 1, + ACTIONS(4397), 1, anon_sym_DOT_DOT, - ACTIONS(5689), 1, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(5717), 1, + ACTIONS(5701), 1, anon_sym_LPAREN, - STATE(1708), 1, + ACTIONS(5703), 1, + anon_sym_DOLLAR, + ACTIONS(5705), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5707), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2498), 1, sym__inter_single_quotes, - STATE(1709), 1, + STATE(2502), 1, sym__inter_double_quotes, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2669), 1, + STATE(2706), 1, sym_comment, - STATE(5847), 1, + STATE(5858), 1, sym__val_number_decimal, - STATE(6108), 1, - sym_unquoted, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, + STATE(7538), 1, sym_val_bool, - STATE(7774), 1, + STATE(7681), 1, sym__val_range, - ACTIONS(3243), 2, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, anon_sym_true, anon_sym_false, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4093), 2, + ACTIONS(4399), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1544), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2643), 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(2645), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [90954] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5709), 1, + aux_sym__immediate_decimal_token2, + STATE(2707), 1, + sym_comment, + ACTIONS(1721), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6100), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2573), 8, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289390,8 +294764,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 32, + anon_sym_true, + anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289400,24 +294799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90608] = 9, + [91018] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - ACTIONS(5721), 1, - anon_sym_RBRACK, - STATE(2670), 1, + ACTIONS(5711), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5713), 1, + aux_sym__immediate_decimal_token2, + STATE(2708), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2924), 1, - sym_path, - STATE(2953), 1, - sym_cell_path, - ACTIONS(5719), 45, + ACTIONS(1661), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1659), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289425,10 +294819,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -289463,22 +294858,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90680] = 8, + aux_sym__unquoted_in_list_token2, + [91084] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(1007), 1, sym__entry_separator, - ACTIONS(5639), 1, + ACTIONS(5660), 1, anon_sym_DOT, - STATE(2671), 1, + STATE(2709), 1, sym_comment, - STATE(2788), 1, + STATE(2761), 1, aux_sym_cell_path_repeat1, - STATE(2881), 1, - sym_cell_path, - STATE(2924), 1, + STATE(2890), 1, sym_path, - ACTIONS(1863), 46, + STATE(3010), 1, + sym_cell_path, + ACTIONS(1005), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289490,7 +294886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -289525,22 +294921,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90750] = 8, + [91154] = 29, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(3864), 1, + aux_sym_unquoted_token1, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5701), 1, + anon_sym_LPAREN, + ACTIONS(5703), 1, + anon_sym_DOLLAR, + ACTIONS(5705), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5707), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2502), 1, + sym__inter_double_quotes, + STATE(2710), 1, + sym_comment, + STATE(5858), 1, + sym__val_number_decimal, + STATE(7538), 1, + sym_val_bool, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3862), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4399), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1544), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2643), 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(2645), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [91266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2672), 1, + STATE(2711), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2891), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1949), 46, + ACTIONS(1048), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1046), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289552,8 +295025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -289587,72 +295062,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90820] = 30, + [91328] = 30, ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, + ACTIONS(3231), 1, aux_sym_record_entry_token1, - ACTIONS(3263), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(3704), 1, + ACTIONS(3864), 1, aux_sym_unquoted_token1, - ACTIONS(3991), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR, - ACTIONS(4091), 1, + ACTIONS(4397), 1, anon_sym_DOT_DOT, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(5717), 1, + ACTIONS(5664), 1, anon_sym_LPAREN, - STATE(1708), 1, + ACTIONS(5666), 1, + sym_val_date, + STATE(1729), 1, sym__inter_single_quotes, - STATE(1709), 1, + STATE(1732), 1, sym__inter_double_quotes, - STATE(1972), 1, + STATE(2002), 1, sym__str_double_quotes, - STATE(2673), 1, + STATE(2712), 1, sym_comment, - STATE(5847), 1, + STATE(5858), 1, sym__val_number_decimal, - STATE(6108), 1, + STATE(6124), 1, sym_unquoted, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, + STATE(7538), 1, sym_val_bool, - STATE(7774), 1, + STATE(7681), 1, sym__val_range, - ACTIONS(3243), 2, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, anon_sym_true, anon_sym_false, - ACTIONS(3702), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4093), 2, + ACTIONS(4399), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, + ACTIONS(5662), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(6100), 4, + STATE(6112), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2573), 8, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289661,7 +295136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + ACTIONS(2645), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -289671,22 +295146,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90934] = 8, - ACTIONS(3), 1, + [91442] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2674), 1, + ACTIONS(5715), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5717), 1, + aux_sym__immediate_decimal_token2, + STATE(2713), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2886), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1867), 46, + ACTIONS(1659), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289698,32 +295185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289732,20 +295206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91004] = 4, + [91508] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2675), 1, + STATE(2714), 1, sym_comment, - ACTIONS(5040), 6, + ACTIONS(1832), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 45, + ACTIONS(1834), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289783,7 +295256,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289791,113 +295263,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91066] = 8, - ACTIONS(3), 1, + sym__table_head_separator, + [91570] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2676), 1, + STATE(2715), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2924), 1, - sym_path, - STATE(2927), 1, - sym_cell_path, - ACTIONS(1871), 46, + ACTIONS(5022), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5020), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91136] = 8, - ACTIONS(3), 1, + [91632] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2677), 1, + ACTIONS(5719), 1, + sym__newline, + STATE(2716), 2, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2897), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1875), 46, + aux_sym_shebang_repeat1, + ACTIONS(1313), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1315), 43, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91696] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2717), 1, + sym_comment, + ACTIONS(5026), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(5024), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [91758] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2718), 1, + sym_comment, + ACTIONS(1042), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289906,31 +295462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91206] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1971), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2678), 1, - sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2916), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1969), 46, + ACTIONS(1044), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289942,32 +295475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289976,23 +295497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91276] = 8, + [91820] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2679), 1, + STATE(2719), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2878), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1890), 46, + ACTIONS(1052), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1050), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290004,8 +295518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -290039,78 +295555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91346] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5724), 1, - sym__newline, - STATE(2680), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1898), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1900), 43, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91410] = 4, + [91882] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2681), 1, + STATE(2720), 1, sym_comment, - ACTIONS(5036), 6, + ACTIONS(5030), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5034), 45, + ACTIONS(5028), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290148,7 +295605,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290156,16 +295613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91472] = 5, + [91944] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5635), 1, - aux_sym__immediate_decimal_token2, - STATE(2682), 1, + STATE(2721), 1, sym_comment, - ACTIONS(1643), 18, + ACTIONS(1038), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -290181,8 +295637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 32, + ACTIONS(1040), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290194,7 +295649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -290215,16 +295671,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, - [91536] = 5, + [92006] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5727), 1, - aux_sym__immediate_decimal_token2, - STATE(2683), 1, + STATE(2722), 1, sym_comment, - ACTIONS(1705), 18, + ACTIONS(1034), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -290240,8 +295695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 32, + ACTIONS(1036), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290253,7 +295707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -290274,84 +295729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91600] = 8, + [92068] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2684), 1, + STATE(2723), 1, sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2919), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1894), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91670] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1845), 1, + ACTIONS(1056), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2685), 1, - sym_comment, - STATE(2788), 1, - aux_sym_cell_path_repeat1, - STATE(2866), 1, - sym_cell_path, - STATE(2924), 1, - sym_path, - ACTIONS(1843), 46, + ACTIONS(1054), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290363,8 +295750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -290398,19 +295787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91740] = 4, + [92130] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2686), 1, + STATE(2724), 1, sym_comment, - ACTIONS(2436), 6, + ACTIONS(5034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2438), 44, + ACTIONS(5032), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290448,6 +295837,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290455,190 +295845,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91801] = 4, + [92192] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2687), 1, + STATE(2725), 1, sym_comment, - ACTIONS(2364), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2366), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1042), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1044), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92254] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1862), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2726), 1, + sym_comment, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + STATE(2903), 1, + sym_cell_path, + ACTIONS(1860), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [91862] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [92324] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2688), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2727), 1, sym_comment, - ACTIONS(1076), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1078), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3029), 1, + sym_cell_path, + ACTIONS(1844), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1846), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [91923] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92393] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2689), 1, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5728), 1, + anon_sym_DOT_DOT2, + ACTIONS(5732), 1, + sym__entry_separator, + STATE(2728), 1, sym_comment, - ACTIONS(2368), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2370), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(5730), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5724), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [91984] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [92460] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2690), 1, + STATE(2729), 1, sym_comment, - ACTIONS(1961), 6, + ACTIONS(2466), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1963), 44, + ACTIONS(2468), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290683,76 +296143,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92045] = 4, + [92521] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2691), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2730), 1, sym_comment, - ACTIONS(2355), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2357), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3049), 1, + sym_cell_path, + ACTIONS(1888), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1890), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [92106] = 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, + [92590] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2692), 1, + STATE(2731), 1, sym_comment, - ACTIONS(2380), 6, + ACTIONS(1042), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2382), 44, + ACTIONS(1044), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290797,20 +296261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92167] = 8, + [92651] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2693), 1, + STATE(2732), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(3001), 1, + STATE(3050), 1, sym_cell_path, - ACTIONS(1937), 14, + ACTIONS(1892), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -290825,7 +296289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1939), 32, + ACTIONS(1894), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290837,7 +296301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -290858,35 +296322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92236] = 8, - ACTIONS(247), 1, + [92720] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2694), 1, + STATE(2733), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(3050), 1, - sym_cell_path, - ACTIONS(5733), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5731), 32, + ACTIONS(2143), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2141), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290898,19 +296343,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290919,69 +296378,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92305] = 28, + aux_sym__unquoted_in_list_token1, + [92781] = 28, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, + ACTIONS(5486), 1, anon_sym_DQUOTE, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5685), 1, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(5687), 1, + ACTIONS(5738), 1, anon_sym_DOLLAR, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(5691), 1, + ACTIONS(5740), 1, + anon_sym_DOT_DOT, + ACTIONS(5744), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5693), 1, + ACTIONS(5746), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2463), 1, + ACTIONS(5748), 1, + aux_sym_unquoted_token1, + STATE(2520), 1, sym__inter_single_quotes, - STATE(2464), 1, + STATE(2521), 1, sym__inter_double_quotes, - STATE(2695), 1, + STATE(2550), 1, + sym__str_double_quotes, + STATE(2734), 1, sym_comment, - STATE(5847), 1, + STATE(5656), 1, sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, + STATE(7497), 1, sym__val_range, - ACTIONS(3243), 2, + STATE(7538), 1, + sym_val_bool, + STATE(7605), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, anon_sym_true, anon_sym_false, - ACTIONS(3702), 2, + ACTIONS(5488), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4093), 2, + ACTIONS(5742), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, + ACTIONS(5734), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(1518), 5, + STATE(1606), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2573), 8, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290990,7 +296450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + ACTIONS(2645), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -291000,18 +296460,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92414] = 4, - ACTIONS(247), 1, + [92890] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2696), 1, + STATE(2735), 1, sym_comment, - ACTIONS(1056), 18, + ACTIONS(1661), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1659), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [92951] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2025), 1, + sym__entry_separator, + ACTIONS(5750), 1, + anon_sym_DOT_DOT2, + STATE(2736), 1, + sym_comment, + ACTIONS(5752), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2019), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93016] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2737), 1, + sym_comment, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3047), 1, + sym_cell_path, + ACTIONS(1880), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -291024,7 +296604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1058), 32, + ACTIONS(1882), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291036,9 +296616,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_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, @@ -291057,19 +296637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92475] = 4, + [93085] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2738), 1, sym_comment, - ACTIONS(2457), 6, + ACTIONS(1311), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2459), 44, + ACTIONS(1307), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291106,24 +296686,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93146] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2739), 1, + sym_comment, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3051), 1, + sym_cell_path, + ACTIONS(1896), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1898), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [92536] = 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, + [93215] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(1072), 1, + sym__entry_separator, + ACTIONS(5728), 1, + anon_sym_DOT_DOT2, + ACTIONS(5756), 1, + anon_sym_RBRACK, + STATE(2740), 1, sym_comment, - ACTIONS(1633), 3, + ACTIONS(5730), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1631), 47, + ACTIONS(5754), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291131,13 +296777,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -291171,19 +296815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92597] = 4, + [93282] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2699), 1, + STATE(2741), 1, sym_comment, - ACTIONS(2392), 6, + ACTIONS(1038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2394), 44, + ACTIONS(1040), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291228,19 +296872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92658] = 4, + [93343] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2700), 1, + STATE(2742), 1, sym_comment, - ACTIONS(2396), 6, + ACTIONS(1058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2398), 44, + ACTIONS(1060), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291285,80 +296929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92719] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2701), 1, - sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(3002), 1, - sym_cell_path, - ACTIONS(1945), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1947), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92788] = 4, + [93404] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2702), 1, + STATE(2743), 1, sym_comment, - ACTIONS(2384), 6, + ACTIONS(2328), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2386), 44, + ACTIONS(2330), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291403,19 +296986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92849] = 4, + [93465] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2703), 1, + STATE(2744), 1, sym_comment, - ACTIONS(1843), 6, + ACTIONS(1034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1845), 44, + ACTIONS(1036), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291460,151 +297043,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92910] = 29, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [93526] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(3991), 1, - anon_sym_DOLLAR, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(5717), 1, - anon_sym_LPAREN, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2704), 1, + STATE(2745), 1, sym_comment, - STATE(5847), 1, - sym__val_number_decimal, - STATE(6108), 1, - sym_unquoted, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, - sym__val_range, - ACTIONS(3243), 2, + ACTIONS(1723), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1721), 47, anon_sym_true, anon_sym_false, - ACTIONS(3702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(6100), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2573), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93021] = 28, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3263), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5685), 1, - anon_sym_LPAREN, - ACTIONS(5687), 1, - anon_sym_DOLLAR, - ACTIONS(5689), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5691), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1972), 1, - sym__str_double_quotes, - STATE(2463), 1, - sym__inter_single_quotes, - STATE(2464), 1, - sym__inter_double_quotes, - STATE(2705), 1, - sym_comment, - STATE(5847), 1, - sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, - sym__val_range, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3702), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1517), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291613,8 +297091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291623,19 +297099,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93130] = 4, + aux_sym__unquoted_in_list_token1, + [93587] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2706), 1, + ACTIONS(5759), 1, + anon_sym_DOT, + ACTIONS(5761), 1, + aux_sym__immediate_decimal_token2, + STATE(2746), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [93652] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2747), 1, sym_comment, - ACTIONS(2400), 6, + ACTIONS(2348), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2402), 44, + ACTIONS(2350), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291680,19 +297216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93191] = 4, + [93713] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2707), 1, + STATE(2748), 1, sym_comment, - ACTIONS(2404), 6, + ACTIONS(2342), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2406), 44, + ACTIONS(2344), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291737,19 +297273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93252] = 4, + [93774] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2708), 1, + STATE(2749), 1, sym_comment, - ACTIONS(1859), 6, + ACTIONS(1848), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1861), 44, + ACTIONS(1850), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291794,18 +297330,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93313] = 5, + [93835] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5735), 1, - aux_sym__immediate_decimal_token2, - STATE(2709), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2750), 1, sym_comment, - ACTIONS(1705), 17, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3090), 1, + sym_cell_path, + ACTIONS(5655), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -291819,7 +297358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 32, + ACTIONS(5763), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291831,78 +297370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93376] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5739), 1, - anon_sym_RBRACK, - ACTIONS(5741), 1, - anon_sym_DOT_DOT2, - ACTIONS(5745), 1, - sym__entry_separator, - STATE(2710), 1, - sym_comment, - ACTIONS(5743), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5737), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291911,77 +297391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93443] = 4, + [93904] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2711), 1, + ACTIONS(5765), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5767), 1, + aux_sym__immediate_decimal_token2, + STATE(2751), 1, sym_comment, - ACTIONS(1867), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1869), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93504] = 4, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [93969] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2712), 1, + STATE(2752), 1, sym_comment, - ACTIONS(1871), 6, + ACTIONS(1560), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1873), 44, + ACTIONS(1572), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292026,16 +297507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93565] = 4, + [94030] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2713), 1, + STATE(2753), 1, sym_comment, - ACTIONS(2135), 3, + ACTIONS(1060), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2133), 47, + ACTIONS(1058), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292047,7 +297528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -292083,19 +297564,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [93626] = 4, + [94091] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2714), 1, + STATE(2754), 1, + sym_comment, + ACTIONS(1046), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1048), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2755), 1, sym_comment, - ACTIONS(2408), 6, + ACTIONS(4884), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2410), 44, + ACTIONS(4882), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292140,19 +297678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93687] = 4, + [94213] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2715), 1, + STATE(2756), 1, sym_comment, - ACTIONS(1890), 6, + ACTIONS(2412), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1892), 44, + ACTIONS(2414), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292197,16 +297735,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93748] = 4, - ACTIONS(3), 1, + [94274] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(2757), 1, sym_comment, - ACTIONS(2021), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2019), 47, + ACTIONS(1659), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292218,33 +297771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292253,20 +297792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93809] = 4, + [94335] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2717), 1, + STATE(2758), 1, sym_comment, - ACTIONS(2412), 6, + ACTIONS(2458), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2414), 44, + ACTIONS(2460), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292311,10 +297849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93870] = 4, + [94396] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2718), 1, + STATE(2759), 1, sym_comment, ACTIONS(2416), 6, aux_sym_cmd_identifier_token1, @@ -292368,19 +297906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93931] = 4, + [94457] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2719), 1, + STATE(2760), 1, sym_comment, - ACTIONS(1894), 6, + ACTIONS(1864), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1896), 44, + ACTIONS(1866), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292425,190 +297963,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93992] = 4, - ACTIONS(247), 1, + [94518] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2720), 1, + ACTIONS(1013), 1, + sym__entry_separator, + ACTIONS(5660), 1, + anon_sym_DOT, + STATE(2761), 1, sym_comment, - ACTIONS(1945), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1947), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2823), 1, + aux_sym_cell_path_repeat1, + STATE(2890), 1, + sym_path, + ACTIONS(1011), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [94053] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [94585] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2721), 1, + ACTIONS(5684), 1, + aux_sym__immediate_decimal_token2, + STATE(2762), 1, sym_comment, - ACTIONS(2420), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2422), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1669), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1667), 47, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94114] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [94648] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2722), 1, + ACTIONS(5769), 1, + sym__newline, + STATE(2763), 2, sym_comment, - ACTIONS(2424), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2426), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + aux_sym_shebang_repeat1, + ACTIONS(1313), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1315), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + 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, sym__str_single_quotes, sym__str_back_ticks, - [94175] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94711] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2723), 1, + STATE(2764), 1, sym_comment, - ACTIONS(1949), 6, + ACTIONS(2338), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1951), 44, + ACTIONS(2340), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292653,19 +298196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94236] = 4, + [94772] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2724), 1, + STATE(2765), 1, sym_comment, - ACTIONS(2428), 6, + ACTIONS(1872), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2430), 44, + ACTIONS(1874), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292710,76 +298253,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94297] = 4, + [94833] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2725), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2766), 1, sym_comment, - ACTIONS(2432), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2434), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3072), 1, + sym_cell_path, + ACTIONS(1005), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1007), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [94358] = 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, + [94902] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2726), 1, + STATE(2767), 1, sym_comment, - ACTIONS(1575), 6, + ACTIONS(1876), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1587), 44, + ACTIONS(1878), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292824,16 +298371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94419] = 4, + [94963] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2727), 1, + ACTIONS(5772), 1, + aux_sym__immediate_decimal_token2, + STATE(2768), 1, sym_comment, - ACTIONS(2139), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1723), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2137), 47, + ACTIONS(1721), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292845,9 +298393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -292881,21 +298428,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94480] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [95026] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1078), 1, - sym__entry_separator, - ACTIONS(5741), 1, - anon_sym_DOT_DOT2, - ACTIONS(5749), 1, - anon_sym_RBRACK, - STATE(2728), 1, + STATE(2769), 1, sym_comment, - ACTIONS(5743), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5747), 45, + ACTIONS(1050), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1052), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292903,35 +298461,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292940,71 +298486,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94547] = 29, - ACTIONS(111), 1, + [95087] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2770), 1, + sym_comment, + ACTIONS(4894), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(4892), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(117), 1, - anon_sym_DOLLAR_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95148] = 28, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3225), 1, - anon_sym_DOLLAR, - ACTIONS(3263), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5689), 1, + ACTIONS(5486), 1, + anon_sym_DQUOTE, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(5754), 1, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(5756), 1, + ACTIONS(5738), 1, + anon_sym_DOLLAR, + ACTIONS(5740), 1, anon_sym_DOT_DOT, - ACTIONS(5760), 1, + ACTIONS(5744), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5746), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5748), 1, aux_sym_unquoted_token1, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2404), 1, + STATE(2520), 1, sym__inter_single_quotes, - STATE(2407), 1, + STATE(2521), 1, sym__inter_double_quotes, - STATE(2729), 1, + STATE(2550), 1, + sym__str_double_quotes, + STATE(2771), 1, sym_comment, - STATE(5857), 1, + STATE(5656), 1, sym__val_number_decimal, - STATE(6797), 1, - sym_unquoted, - STATE(7653), 1, + STATE(7497), 1, sym__val_range, - STATE(7703), 1, + STATE(7538), 1, sym_val_bool, - STATE(7724), 1, + STATE(7605), 1, sym__unquoted_anonymous_prefix, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, + ACTIONS(3259), 2, anon_sym_true, anon_sym_false, - ACTIONS(5758), 2, + ACTIONS(5488), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5742), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5752), 3, + ACTIONS(5734), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(6795), 4, + STATE(1593), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2573), 8, + sym_unquoted, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293013,7 +298614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + ACTIONS(2645), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -293023,48 +298624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94658] = 6, - ACTIONS(3), 1, + [95257] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - sym__entry_separator, - ACTIONS(5762), 1, - anon_sym_DOT_DOT2, - STATE(2730), 1, + ACTIONS(5688), 1, + aux_sym__immediate_decimal_token2, + STATE(2772), 1, sym_comment, - ACTIONS(5764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1667), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293073,25 +298648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94723] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2731), 1, - sym_comment, - ACTIONS(1707), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1705), 47, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293103,33 +298661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293138,21 +298682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94784] = 8, + [95320] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2732), 1, + STATE(2773), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(2987), 1, + STATE(3054), 1, sym_cell_path, - ACTIONS(1835), 14, + ACTIONS(1904), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -293167,7 +298710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1837), 32, + ACTIONS(1906), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293179,7 +298722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -293200,20 +298743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94853] = 8, + [95389] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2733), 1, + STATE(2774), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(2988), 1, + STATE(3053), 1, sym_cell_path, - ACTIONS(1839), 14, + ACTIONS(1900), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -293228,7 +298771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1841), 32, + ACTIONS(1902), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293240,7 +298783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -293261,77 +298804,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94922] = 5, + [95458] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5766), 1, - sym__newline, - STATE(2734), 2, + STATE(2775), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1898), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1900), 32, + ACTIONS(2420), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2422), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94985] = 4, + [95519] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2735), 1, + STATE(2776), 1, sym_comment, - ACTIONS(2388), 6, + ACTIONS(1888), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2390), 44, + ACTIONS(1890), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293376,19 +298918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95046] = 4, + [95580] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2736), 1, + STATE(2777), 1, sym_comment, - ACTIONS(2372), 6, + ACTIONS(1070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2374), 44, + ACTIONS(1072), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293433,79 +298975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95107] = 5, + [95641] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5769), 1, - sym__newline, - STATE(2737), 2, + STATE(2778), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1898), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(1721), 18, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1900), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95170] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2738), 1, - sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(3011), 1, - sym_cell_path, - ACTIONS(1011), 14, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -293519,7 +298998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1013), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293531,9 +299011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, + 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, @@ -293552,19 +299032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95239] = 6, + [95702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, - sym__entry_separator, - ACTIONS(5772), 1, - anon_sym_DOT_DOT2, - STATE(2739), 1, + STATE(2779), 1, sym_comment, - ACTIONS(5774), 2, + ACTIONS(2031), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2051), 46, + sym__entry_separator, + ACTIONS(2029), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293576,8 +299053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -293611,16 +299089,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95304] = 4, - ACTIONS(3), 1, + [95763] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2740), 1, + STATE(2780), 1, + sym_comment, + ACTIONS(2434), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2436), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95824] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2781), 1, + sym_comment, + ACTIONS(2438), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2440), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95885] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2782), 1, + sym_comment, + ACTIONS(1892), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1894), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95946] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5774), 1, + anon_sym_DOT_DOT2, + STATE(2783), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(5776), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1788), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1796), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293632,33 +299301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293667,20 +299320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95365] = 4, + [96013] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2741), 1, + STATE(2784), 1, sym_comment, - ACTIONS(2453), 6, + ACTIONS(2517), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2455), 44, + ACTIONS(2519), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293725,20 +299377,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95426] = 7, + [96074] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5776), 1, - anon_sym_DOT_DOT2, - STATE(2742), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5778), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 16, + ACTIONS(2462), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2464), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96135] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2786), 1, + sym_comment, + ACTIONS(1900), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1902), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96196] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2787), 1, + sym_comment, + ACTIONS(2305), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2307), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96257] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2788), 1, + sym_comment, + ACTIONS(2305), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2307), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96318] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2789), 1, + sym_comment, + ACTIONS(1738), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -293754,7 +299628,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1804), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(1740), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96379] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2790), 1, + sym_comment, + ACTIONS(2442), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2444), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96440] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2791), 1, + sym_comment, + ACTIONS(1740), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1738), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293766,17 +299740,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293785,19 +299775,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95493] = 4, + aux_sym__unquoted_in_list_token1, + [96501] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2743), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5780), 6, + ACTIONS(2362), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5782), 44, + ACTIONS(2364), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293842,139 +299833,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95554] = 5, - ACTIONS(3), 1, + [96562] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5784), 1, - aux_sym__immediate_decimal_token2, - STATE(2744), 1, + STATE(2793), 1, sym_comment, - ACTIONS(1707), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1705), 47, + ACTIONS(2366), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2368), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [95617] = 8, + [96623] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2745), 1, + STATE(2794), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(3047), 1, - sym_cell_path, - ACTIONS(5719), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5786), 32, + ACTIONS(2521), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2523), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95686] = 8, + [96684] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2746), 1, + STATE(2795), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(3000), 1, - sym_cell_path, - ACTIONS(1894), 14, + ACTIONS(1311), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -293989,21 +299968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1896), 32, + ACTIONS(1307), 35, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + 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, @@ -294014,6 +299993,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294022,79 +300004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95755] = 4, - ACTIONS(3), 1, + [96745] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2747), 1, + ACTIONS(5778), 1, + aux_sym__immediate_decimal_token2, + STATE(2796), 1, sym_comment, - ACTIONS(1066), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1064), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1721), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95816] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2748), 1, - sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2989), 1, - sym_cell_path, - ACTIONS(1843), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294107,7 +300029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1845), 32, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294119,9 +300041,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, + 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, @@ -294140,19 +300062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95885] = 4, + [96808] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2797), 1, sym_comment, - ACTIONS(2376), 6, + ACTIONS(5780), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2378), 44, + ACTIONS(5782), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294197,20 +300119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95946] = 8, + [96869] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2750), 1, + STATE(2798), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(2990), 1, + STATE(3048), 1, sym_cell_path, - ACTIONS(1847), 14, + ACTIONS(1884), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -294225,7 +300147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1849), 32, + ACTIONS(1886), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294237,7 +300159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -294258,128 +300180,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96015] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2049), 1, - sym__entry_separator, - ACTIONS(5788), 1, - anon_sym_DOT_DOT2, - STATE(2751), 1, - sym_comment, - ACTIONS(5790), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + [96938] = 29, + ACTIONS(111), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96080] = 28, + ACTIONS(115), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(117), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3241), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5470), 1, - anon_sym_DQUOTE, - ACTIONS(5689), 1, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(5756), 1, + ACTIONS(5740), 1, anon_sym_DOT_DOT, - ACTIONS(5760), 1, + ACTIONS(5748), 1, aux_sym_unquoted_token1, - ACTIONS(5792), 1, + ACTIONS(5784), 1, anon_sym_LPAREN, - ACTIONS(5794), 1, - anon_sym_DOLLAR, - ACTIONS(5796), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5798), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2477), 1, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2384), 1, sym__inter_single_quotes, - STATE(2478), 1, + STATE(2390), 1, sym__inter_double_quotes, - STATE(2480), 1, - sym__str_double_quotes, - STATE(2752), 1, + STATE(2799), 1, sym_comment, - STATE(5857), 1, + STATE(5656), 1, sym__val_number_decimal, - STATE(7653), 1, + STATE(6786), 1, + sym_unquoted, + STATE(7497), 1, sym__val_range, - STATE(7703), 1, + STATE(7538), 1, sym_val_bool, - STATE(7724), 1, + STATE(7605), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5472), 2, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5758), 2, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5742), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5752), 3, + ACTIONS(5734), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(1650), 5, + STATE(6707), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - sym_unquoted, - ACTIONS(2573), 8, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294388,7 +300252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + ACTIONS(2645), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -294398,152 +300262,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96189] = 7, + [97049] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5800), 1, - anon_sym_DOT_DOT2, - STATE(2753), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1794), 30, + ACTIONS(2380), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2382), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96256] = 4, + [97110] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2754), 1, + STATE(2801), 1, sym_comment, - ACTIONS(1060), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1062), 32, + ACTIONS(2384), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2386), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96317] = 8, - ACTIONS(247), 1, + [97171] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2755), 1, + ACTIONS(1997), 1, + sym__entry_separator, + ACTIONS(5786), 1, + anon_sym_DOT_DOT2, + STATE(2802), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2991), 1, - sym_cell_path, - ACTIONS(1851), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1853), 32, + ACTIONS(5788), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1991), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294555,19 +300400,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + 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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294576,19 +300434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96386] = 6, + aux_sym__unquoted_in_list_token1, + [97236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, + ACTIONS(2005), 1, sym__entry_separator, - ACTIONS(5804), 1, + ACTIONS(5790), 1, anon_sym_DOT_DOT2, - STATE(2756), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5806), 2, + ACTIONS(5792), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2061), 46, + ACTIONS(1999), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294600,7 +300459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -294635,135 +300494,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96451] = 4, + [97301] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2804), 1, sym_comment, - ACTIONS(1052), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1054), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2446), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96512] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2758), 1, - sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2992), 1, - sym_cell_path, - ACTIONS(1855), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1857), 32, + ACTIONS(2448), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96581] = 5, + [97362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5647), 1, - aux_sym__immediate_decimal_token2, - STATE(2759), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_LPAREN2, + ACTIONS(2013), 1, sym__entry_separator, - ACTIONS(1643), 47, + ACTIONS(5794), 1, + anon_sym_DOT_DOT2, + STATE(2805), 1, + sym_comment, + ACTIONS(5796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2007), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294775,7 +300575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -294810,22 +300610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [96644] = 8, + [97427] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2760), 1, + STATE(2806), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2993), 1, - sym_cell_path, - ACTIONS(1859), 14, + ACTIONS(1667), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -294839,7 +300633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1861), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294851,9 +300646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, + 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, @@ -294872,21 +300667,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, - [96713] = 8, + [97488] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2761), 1, + STATE(2807), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2994), 1, - sym_cell_path, - ACTIONS(1863), 14, + ACTIONS(1054), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -294900,52 +300691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1865), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96782] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1023), 1, - sym__entry_separator, - ACTIONS(5808), 1, - anon_sym_DOT, - STATE(2924), 1, - sym_path, - STATE(2762), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 46, + ACTIONS(1056), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294957,32 +300703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294991,20 +300724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96847] = 4, + [97549] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2763), 1, + STATE(2808), 1, sym_comment, - ACTIONS(1040), 6, + ACTIONS(1904), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1042), 44, + ACTIONS(1906), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295049,19 +300781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96908] = 4, + [97610] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2764), 1, + STATE(2809), 1, sym_comment, - ACTIONS(1044), 6, + ACTIONS(1822), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1046), 44, + ACTIONS(1826), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295106,76 +300838,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96969] = 4, + [97671] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2765), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2810), 1, sym_comment, - ACTIONS(1064), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1066), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3092), 1, + sym_cell_path, + ACTIONS(1840), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1842), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, sym__str_single_quotes, sym__str_back_ticks, - [97030] = 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, + [97740] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2766), 1, + STATE(2811), 1, sym_comment, - ACTIONS(1048), 6, + ACTIONS(2309), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1050), 44, + ACTIONS(2311), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295220,78 +300956,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97091] = 6, - ACTIONS(247), 1, + [97801] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(5813), 1, - aux_sym__immediate_decimal_token2, - STATE(2767), 1, + STATE(2812), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + ACTIONS(2035), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [97156] = 4, + sym__entry_separator, + ACTIONS(2033), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [97862] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2813), 1, + sym_comment, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3046), 1, + sym_cell_path, + ACTIONS(1876), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1878), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97931] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2768), 1, + STATE(2814), 1, sym_comment, - ACTIONS(4888), 6, + ACTIONS(2450), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(4886), 44, + ACTIONS(2452), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295336,19 +301131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97217] = 4, + [97992] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2769), 1, + STATE(2815), 1, sym_comment, - ACTIONS(1345), 6, + ACTIONS(2454), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1349), 44, + ACTIONS(2456), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295385,7 +301180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295393,20 +301188,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97278] = 8, + [98053] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2770), 1, + STATE(2816), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(2995), 1, + STATE(3033), 1, sym_cell_path, - ACTIONS(1867), 14, + ACTIONS(1848), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -295421,7 +301216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1869), 32, + ACTIONS(1850), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295433,7 +301228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -295454,20 +301249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97347] = 8, + [98122] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2771), 1, + STATE(2817), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(2983), 1, + STATE(3034), 1, sym_cell_path, - ACTIONS(1949), 14, + ACTIONS(1852), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -295482,7 +301277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1951), 32, + ACTIONS(1854), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295494,7 +301289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -295515,20 +301310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97416] = 8, + [98191] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5722), 1, anon_sym_DOT, - STATE(2772), 1, + STATE(2818), 1, sym_comment, - STATE(2800), 1, + STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, + STATE(3000), 1, sym_path, - STATE(2996), 1, + STATE(3039), 1, sym_cell_path, - ACTIONS(1871), 14, + ACTIONS(1856), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -295543,7 +301338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 32, + ACTIONS(1858), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295555,7 +301350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -295576,21 +301371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97485] = 8, + [98260] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2773), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5798), 1, + anon_sym_DOT_DOT2, + STATE(2819), 1, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2997), 1, - sym_cell_path, - ACTIONS(1875), 14, + ACTIONS(5800), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1778), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -295604,7 +301400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1877), 32, + ACTIONS(1786), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295616,9 +301412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -295637,16 +301431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97554] = 4, + [98327] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2774), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2820), 1, sym_comment, - ACTIONS(1643), 18, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3041), 1, + sym_cell_path, + ACTIONS(1860), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -295660,50 +301459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97615] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2775), 1, - sym_comment, - ACTIONS(1629), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1625), 47, + ACTIONS(1862), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295715,33 +301471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295750,17 +301492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97676] = 4, + [98396] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2776), 1, + STATE(2821), 1, sym_comment, - ACTIONS(1645), 3, + ACTIONS(1669), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 47, + ACTIONS(1667), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295772,7 +301513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -295808,79 +301549,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97737] = 4, + [98457] = 28, ACTIONS(247), 1, anon_sym_POUND, - STATE(2777), 1, - sym_comment, - ACTIONS(4926), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4924), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(3864), 1, + aux_sym_unquoted_token1, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5701), 1, + anon_sym_LPAREN, + ACTIONS(5703), 1, + anon_sym_DOLLAR, + ACTIONS(5705), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5707), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2498), 1, + sym__inter_single_quotes, + STATE(2502), 1, + sym__inter_double_quotes, + STATE(2822), 1, + sym_comment, + STATE(5858), 1, + sym__val_number_decimal, + STATE(7538), 1, + sym_val_bool, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - [97798] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5657), 1, - aux_sym__immediate_decimal_token2, - STATE(2778), 1, - sym_comment, - ACTIONS(1643), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(4399), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1544), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295889,32 +301620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, - anon_sym_true, - anon_sym_false, + ACTIONS(2645), 9, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295923,94 +301630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97861] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5817), 1, - aux_sym__immediate_decimal_token2, - STATE(2779), 1, - sym_comment, - ACTIONS(1517), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [97926] = 8, - ACTIONS(247), 1, + [98566] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(1017), 1, + sym__entry_separator, + ACTIONS(5802), 1, anon_sym_DOT, - STATE(2780), 1, + STATE(2890), 1, + sym_path, + STATE(2823), 2, sym_comment, - STATE(2800), 1, aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2998), 1, - sym_cell_path, - ACTIONS(1969), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1971), 32, + ACTIONS(1015), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296022,41 +301654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97995] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2781), 1, - sym_comment, - ACTIONS(1631), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296065,33 +301680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296100,16 +301688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98056] = 4, + aux_sym__unquoted_in_list_token1, + [98631] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2782), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2824), 1, sym_comment, - ACTIONS(1705), 18, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3043), 1, + sym_cell_path, + ACTIONS(1864), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -296123,8 +301717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 32, + ACTIONS(1866), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296136,9 +301729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_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, @@ -296157,82 +301750,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98117] = 4, + [98700] = 29, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2783), 1, - sym_comment, - ACTIONS(1755), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(3860), 1, anon_sym_DQUOTE, + ACTIONS(3864), 1, + aux_sym_unquoted_token1, + ACTIONS(4003), 1, + anon_sym_DOLLAR, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5664), 1, + anon_sym_LPAREN, + ACTIONS(5666), 1, + sym_val_date, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2825), 1, + sym_comment, + STATE(5858), 1, + sym__val_number_decimal, + STATE(6124), 1, + sym_unquoted, + STATE(7538), 1, + sym_val_bool, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98178] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2784), 1, - sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2986), 1, - sym_cell_path, - ACTIONS(1829), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4399), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6112), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296241,32 +301822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1833), 32, - anon_sym_true, - anon_sym_false, + ACTIONS(2645), 9, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296275,20 +301832,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, - [98247] = 8, + [98811] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2785), 1, + ACTIONS(5805), 1, + sym__newline, + STATE(2826), 2, sym_comment, - STATE(2800), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - STATE(2999), 1, - sym_cell_path, - ACTIONS(1890), 14, + aux_sym_shebang_repeat1, + ACTIONS(1313), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -296302,8 +301856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1892), 32, + aux_sym_unquoted_token1, + ACTIONS(1315), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296311,11 +301865,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -296328,6 +301880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296336,69 +301890,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98316] = 28, + [98874] = 28, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5470), 1, + ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(5756), 1, - anon_sym_DOT_DOT, - ACTIONS(5760), 1, + ACTIONS(3864), 1, aux_sym_unquoted_token1, - ACTIONS(5792), 1, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5701), 1, anon_sym_LPAREN, - ACTIONS(5794), 1, + ACTIONS(5703), 1, anon_sym_DOLLAR, - ACTIONS(5796), 1, + ACTIONS(5705), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5798), 1, + ACTIONS(5707), 1, anon_sym_DOLLAR_DQUOTE, - STATE(2477), 1, + STATE(2002), 1, + sym__str_double_quotes, + STATE(2498), 1, sym__inter_single_quotes, - STATE(2478), 1, + STATE(2502), 1, sym__inter_double_quotes, - STATE(2480), 1, - sym__str_double_quotes, - STATE(2786), 1, + STATE(2827), 1, sym_comment, - STATE(5857), 1, + STATE(5858), 1, sym__val_number_decimal, - STATE(7653), 1, - sym__val_range, - STATE(7703), 1, + STATE(7538), 1, sym_val_bool, - STATE(7724), 1, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3243), 2, + ACTIONS(3259), 2, anon_sym_true, anon_sym_false, - ACTIONS(5472), 2, + ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5758), 2, + ACTIONS(4399), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5752), 3, + ACTIONS(5662), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(1607), 5, + STATE(1516), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2573), 8, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296407,7 +301961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + ACTIONS(2645), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -296417,77 +301971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98425] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2787), 1, - sym_comment, - ACTIONS(2364), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2366), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98486] = 7, + [98983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1019), 1, - sym__entry_separator, - ACTIONS(5639), 1, - anon_sym_DOT, - STATE(2762), 1, - aux_sym_cell_path_repeat1, - STATE(2788), 1, + STATE(2828), 1, sym_comment, - STATE(2924), 1, - sym_path, - ACTIONS(1017), 46, + ACTIONS(1677), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1675), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296499,8 +301992,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -296534,16 +302028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98553] = 4, + [99044] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2789), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2829), 1, sym_comment, - ACTIONS(1755), 17, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3044), 1, + sym_cell_path, + ACTIONS(1868), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -296557,7 +302056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1757), 32, + ACTIONS(1870), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296569,9 +302068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_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, @@ -296590,18 +302089,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98613] = 6, - ACTIONS(3), 1, + [99113] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - STATE(2790), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2830), 1, sym_comment, - ACTIONS(1796), 46, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3045), 1, + sym_cell_path, + ACTIONS(1872), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1874), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296613,32 +302129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296647,17 +302150,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98677] = 5, - ACTIONS(3), 1, + [99182] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(5819), 1, - anon_sym_QMARK2, - STATE(2791), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2831), 1, sym_comment, - ACTIONS(1034), 47, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3062), 1, + sym_cell_path, + ACTIONS(5810), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5808), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296669,33 +302190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296704,17 +302211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98739] = 4, + [99251] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2792), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2832), 1, sym_comment, - ACTIONS(2137), 17, + STATE(2861), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + STATE(3079), 1, + sym_cell_path, + ACTIONS(1836), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -296728,7 +302239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2139), 32, + ACTIONS(1838), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296740,9 +302251,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_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, @@ -296761,15 +302272,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, - [98799] = 4, + [99320] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2793), 1, - sym_comment, - ACTIONS(1645), 2, + ACTIONS(2299), 1, anon_sym_LPAREN2, + ACTIONS(2301), 1, sym__entry_separator, - ACTIONS(1643), 47, + ACTIONS(2303), 1, + aux_sym__unquoted_in_list_token2, + STATE(2833), 1, + sym_comment, + ACTIONS(2297), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296781,7 +302295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -296816,78 +302330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [98859] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2794), 1, - sym_comment, - ACTIONS(2019), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2021), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98919] = 6, + [99384] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5821), 1, + ACTIONS(5812), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5823), 1, + ACTIONS(5814), 1, aux_sym__immediate_decimal_token2, - STATE(2795), 1, + STATE(2834), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1540), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1542), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296898,82 +302354,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_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [98983] = 8, - ACTIONS(3), 1, + [99448] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_RBRACE, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, - sym__entry_separator, - STATE(2796), 1, + STATE(2835), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7599), 1, - sym_default_arm, - ACTIONS(5825), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1311), 16, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296982,66 +302409,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [99051] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5834), 1, - anon_sym_RBRACE, - STATE(2797), 1, - sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7537), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1307), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_DASH_DASH, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297050,49 +302444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [99119] = 7, - ACTIONS(3), 1, + [99508] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1078), 1, - sym__entry_separator, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5749), 1, - anon_sym_RBRACK, - STATE(2798), 1, + STATE(2836), 1, sym_comment, - ACTIONS(5747), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1675), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297101,31 +302466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99185] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5836), 1, - anon_sym_RBRACE, - STATE(2799), 1, - sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7602), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1677), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297133,34 +302475,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297169,20 +302500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [99253] = 7, + [99568] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2800), 1, + STATE(2837), 1, sym_comment, - STATE(2805), 1, - aux_sym_cell_path_repeat1, - STATE(2935), 1, - sym_path, - ACTIONS(1017), 14, + ACTIONS(2029), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -297196,7 +302523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1019), 32, + ACTIONS(2031), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297208,9 +302535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, + 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, @@ -297229,22 +302556,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99319] = 8, + [99628] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5816), 1, + aux_sym__immediate_decimal_token2, + STATE(2838), 1, + sym_comment, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [99690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(1669), 1, sym__entry_separator, - ACTIONS(5838), 1, - anon_sym_RBRACE, - STATE(2801), 1, + ACTIONS(5818), 1, + anon_sym_DOT, + ACTIONS(5820), 1, + aux_sym__immediate_decimal_token2, + STATE(2839), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7571), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1667), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297252,9 +302632,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -297288,18 +302670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [99387] = 6, + aux_sym__unquoted_in_list_token1, + [99754] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5840), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5842), 1, - aux_sym__immediate_decimal_token2, - STATE(2802), 1, + STATE(2840), 1, sym_comment, - ACTIONS(1631), 15, + ACTIONS(2141), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -297313,8 +302694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 32, + ACTIONS(2143), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297326,9 +302706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, + 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, @@ -297347,12 +302727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99451] = 4, + [99814] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2803), 1, + STATE(2841), 1, sym_comment, - ACTIONS(1631), 17, + ACTIONS(2033), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -297370,7 +302750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1633), 32, + ACTIONS(2035), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297382,7 +302762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -297403,54 +302783,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99511] = 4, - ACTIONS(247), 1, + [99874] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2804), 1, + STATE(2842), 1, sym_comment, - ACTIONS(1345), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1349), 33, + ACTIONS(2255), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2253), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297459,17 +302837,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, - [99571] = 6, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [99934] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5844), 1, + ACTIONS(5822), 1, anon_sym_DOT, - STATE(2935), 1, - sym_path, - STATE(2805), 2, + ACTIONS(5824), 1, + aux_sym__immediate_decimal_token2, + STATE(2843), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 14, + ACTIONS(1667), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -297484,7 +302863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1023), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297496,7 +302876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -297517,16 +302897,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, - [99635] = 5, + [99998] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - sym__entry_separator, - ACTIONS(5847), 1, - anon_sym_QMARK2, - STATE(2806), 1, + STATE(2844), 1, sym_comment, - ACTIONS(1028), 47, + ACTIONS(1669), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1667), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297538,9 +302917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -297574,14 +302952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99697] = 4, + aux_sym__unquoted_in_list_token2, + [100058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1042), 1, - sym__entry_separator, - STATE(2807), 1, + STATE(2845), 1, sym_comment, - ACTIONS(1040), 48, + ACTIONS(1661), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1659), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297593,10 +302973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -297630,18 +303008,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99757] = 6, + aux_sym__unquoted_in_list_token2, + [100118] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(4773), 1, + anon_sym_DOT_DOT2, + ACTIONS(5826), 1, + sym_filesize_unit, + ACTIONS(5828), 1, + sym_duration_unit, + STATE(2846), 1, + sym_comment, + ACTIONS(4775), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 43, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [100186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(5849), 1, - anon_sym_DOT, - ACTIONS(5851), 1, - aux_sym__immediate_decimal_token2, - STATE(2808), 1, + STATE(2847), 1, sym_comment, - ACTIONS(1643), 46, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1721), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297653,7 +303089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -297688,15 +303124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99821] = 4, + aux_sym__unquoted_in_list_token2, + [100246] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2809), 1, + STATE(2848), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1740), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1738), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297708,7 +303145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -297744,18 +303181,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [99881] = 6, - ACTIONS(3), 1, + [100306] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2162), 1, - sym__entry_separator, - STATE(2810), 1, + STATE(2849), 1, sym_comment, - ACTIONS(2160), 46, + ACTIONS(1667), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297767,32 +303216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297801,13 +303237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [99945] = 4, + [100366] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2811), 1, + STATE(2850), 1, sym_comment, - ACTIONS(2133), 17, + ACTIONS(1659), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -297825,7 +303260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2135), 32, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297837,7 +303272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -297858,73 +303293,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100005] = 6, - ACTIONS(247), 1, + [100426] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5853), 1, - anon_sym_DOT, - ACTIONS(5855), 1, - aux_sym__immediate_decimal_token2, - STATE(2812), 1, - sym_comment, - ACTIONS(1497), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1072), 1, + sym__entry_separator, + ACTIONS(2225), 1, anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100069] = 4, + ACTIONS(2227), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5756), 1, + anon_sym_RBRACK, + STATE(2851), 1, + sym_comment, + ACTIONS(5754), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100492] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2813), 1, + STATE(2852), 1, sym_comment, - ACTIONS(1345), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(1721), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -297937,21 +303374,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1349), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + 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, @@ -297962,8 +303400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297972,22 +303408,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100129] = 8, + [100552] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5732), 1, sym__entry_separator, - ACTIONS(5857), 1, - anon_sym_RBRACE, - STATE(2814), 1, + ACTIONS(5832), 1, + anon_sym_COMMA, + STATE(2853), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7610), 1, - sym_default_arm, - ACTIONS(5825), 44, + STATE(7234), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5830), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297997,7 +303433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298031,19 +303467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [100197] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [100620] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1633), 1, - sym__entry_separator, - ACTIONS(5859), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5861), 1, - aux_sym__immediate_decimal_token2, - STATE(2815), 1, + STATE(2854), 1, sym_comment, - ACTIONS(1631), 46, + ACTIONS(1738), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1740), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298055,32 +303503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298089,21 +303524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100261] = 6, + [100680] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - STATE(2816), 1, + ACTIONS(5834), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5836), 1, + aux_sym__immediate_decimal_token2, + STATE(2855), 1, sym_comment, - ACTIONS(5867), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5737), 16, + ACTIONS(1659), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -298117,7 +303548,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5863), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100744] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1024), 1, + sym__entry_separator, + ACTIONS(5838), 1, + anon_sym_QMARK2, + STATE(2856), 1, + sym_comment, + ACTIONS(1022), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298129,17 +303603,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298148,18 +303638,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100325] = 6, + aux_sym__unquoted_in_list_token1, + [100806] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - STATE(2817), 1, + ACTIONS(5840), 1, + anon_sym_DOT, + ACTIONS(5842), 1, + aux_sym__immediate_decimal_token2, + STATE(2857), 1, sym_comment, - ACTIONS(5867), 2, + ACTIONS(1518), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5747), 16, + sym_filesize_unit, + sym_duration_unit, + [100870] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2858), 1, + sym_comment, + ACTIONS(1058), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -298175,7 +303720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5869), 30, + ACTIONS(1060), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298187,7 +303732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + 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, @@ -298206,22 +303753,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100389] = 8, + [100930] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5844), 1, + anon_sym_DOT, + ACTIONS(5846), 1, + aux_sym__immediate_decimal_token2, + STATE(2859), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100994] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2233), 1, sym__entry_separator, - ACTIONS(5871), 1, - anon_sym_RBRACE, - STATE(2818), 1, + ACTIONS(2235), 1, + aux_sym__unquoted_in_list_token4, + STATE(2860), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7589), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(2229), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298229,9 +303830,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298265,16 +303868,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [100457] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [101058] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2819), 1, + ACTIONS(5722), 1, + anon_sym_DOT, + STATE(2861), 1, sym_comment, - ACTIONS(1633), 2, + STATE(2867), 1, + aux_sym_cell_path_repeat1, + STATE(3000), 1, + sym_path, + ACTIONS(1011), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1013), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101124] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, anon_sym_LPAREN2, + ACTIONS(2241), 1, sym__entry_separator, - ACTIONS(1631), 47, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + STATE(2862), 1, + sym_comment, + ACTIONS(2237), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298286,7 +303951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298321,15 +303986,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [100517] = 4, + [101188] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1046), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2247), 1, sym__entry_separator, - STATE(2820), 1, + STATE(2863), 1, sym_comment, - ACTIONS(1044), 48, + ACTIONS(2245), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298341,10 +304009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -298378,16 +304044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100577] = 5, + [101252] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, + ACTIONS(2317), 1, sym__entry_separator, - ACTIONS(5873), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - STATE(2821), 1, + STATE(2864), 1, sym_comment, - ACTIONS(2303), 47, + ACTIONS(2313), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298399,7 +304065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -298435,17 +304101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100639] = 6, + [101314] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5875), 1, + ACTIONS(5850), 1, anon_sym_DOT_DOT2, - STATE(2822), 1, + STATE(2865), 1, sym_comment, - ACTIONS(5877), 2, + ACTIONS(5852), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 16, + ACTIONS(1991), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298462,7 +304128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2041), 30, + ACTIONS(1997), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298474,7 +304140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -298493,17 +304159,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, - [100703] = 6, + [101378] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5879), 1, + ACTIONS(5854), 1, anon_sym_DOT_DOT2, - STATE(2823), 1, + STATE(2866), 1, sym_comment, - ACTIONS(5881), 2, + ACTIONS(5856), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 16, + ACTIONS(1999), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298520,7 +304186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2049), 30, + ACTIONS(2005), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298532,7 +304198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -298551,15 +304217,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100767] = 4, - ACTIONS(3), 1, + [101442] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2824), 1, + ACTIONS(5858), 1, + anon_sym_DOT, + STATE(3000), 1, + sym_path, + STATE(2867), 2, sym_comment, - ACTIONS(2261), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2259), 47, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1017), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298571,24 +304254,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101506] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5861), 1, + anon_sym_DOT_DOT2, + STATE(2868), 1, + sym_comment, + ACTIONS(5863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2007), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298597,6 +304301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2013), 30, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298605,24 +304333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [100827] = 8, + [101570] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(1044), 1, sym__entry_separator, - ACTIONS(5883), 1, - anon_sym_RBRACE, - STATE(2825), 1, + STATE(2869), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7523), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1042), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298630,10 +304348,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -298666,19 +304388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [100895] = 6, + aux_sym__unquoted_in_list_token1, + [101630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2297), 1, + ACTIONS(1040), 1, sym__entry_separator, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(2826), 1, + STATE(2870), 1, sym_comment, - ACTIONS(2293), 46, + ACTIONS(1038), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298690,8 +304408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -298725,34 +304445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100959] = 6, - ACTIONS(247), 1, + [101690] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_DOT_DOT2, - STATE(2827), 1, + ACTIONS(1036), 1, + sym__entry_separator, + STATE(2871), 1, sym_comment, - ACTIONS(5887), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2051), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2057), 30, + ACTIONS(1034), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298764,17 +304464,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298783,22 +304500,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101023] = 8, + aux_sym__unquoted_in_list_token1, + [101750] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(1661), 1, sym__entry_separator, - ACTIONS(5889), 1, - anon_sym_RBRACE, - STATE(2828), 1, + ACTIONS(5865), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5867), 1, + aux_sym__immediate_decimal_token2, + STATE(2872), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7731), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1659), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298806,9 +304520,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298842,18 +304558,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101091] = 6, + aux_sym__unquoted_in_list_token1, + [101814] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, + anon_sym_DOT_DOT2, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + ACTIONS(5869), 1, + sym_filesize_unit, + ACTIONS(5871), 1, + sym_duration_unit, + STATE(2873), 1, + sym_comment, + STATE(7282), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [101886] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5873), 1, + anon_sym_DOT, + ACTIONS(5875), 1, + aux_sym__immediate_decimal_token2, + STATE(2874), 1, + sym_comment, + ACTIONS(1518), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1520), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101950] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5891), 1, + ACTIONS(5877), 1, anon_sym_DOT_DOT2, - STATE(2829), 1, + STATE(2875), 1, sym_comment, - ACTIONS(5893), 2, + ACTIONS(5879), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2061), 16, + ACTIONS(2019), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -298870,7 +304706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2067), 30, + ACTIONS(2025), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298882,7 +304718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -298901,74 +304737,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101155] = 6, - ACTIONS(3), 1, + [102014] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - sym__entry_separator, - STATE(2830), 1, + ACTIONS(5881), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5883), 1, + aux_sym__immediate_decimal_token2, + STATE(2876), 1, sym_comment, - ACTIONS(2218), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101219] = 4, + ACTIONS(1540), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1542), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102078] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(5885), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5887), 1, + aux_sym__immediate_decimal_token2, + STATE(2877), 1, sym_comment, - ACTIONS(1064), 17, - anon_sym_DOT_DOT, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym_unquoted_token2, + ACTIONS(1542), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102142] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2878), 1, + sym_comment, + ACTIONS(1311), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -298981,22 +304874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1066), 32, + aux_sym_unquoted_token1, + ACTIONS(1307), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -299007,6 +304899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299015,18 +304909,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, - [101279] = 6, + [102202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1780), 1, anon_sym_LPAREN2, - ACTIONS(2228), 1, + ACTIONS(1786), 1, sym__entry_separator, - ACTIONS(2230), 1, - aux_sym__unquoted_in_list_token2, - STATE(2832), 1, + STATE(2879), 1, sym_comment, - ACTIONS(2224), 46, + ACTIONS(1778), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299038,7 +304932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -299073,14 +304967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101343] = 4, + [102266] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2289), 1, sym__entry_separator, - STATE(2833), 1, + STATE(2880), 1, sym_comment, - ACTIONS(1048), 48, + ACTIONS(2287), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299092,10 +304990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299129,85 +305025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101403] = 6, + [102330] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5895), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5897), 1, + ACTIONS(5761), 1, aux_sym__immediate_decimal_token2, - STATE(2834), 1, + STATE(2881), 1, sym_comment, - ACTIONS(1517), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [101467] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4610), 1, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, - ACTIONS(4618), 1, aux_sym_unquoted_token2, - ACTIONS(5899), 1, - sym_filesize_unit, - ACTIONS(5901), 1, - sym_duration_unit, - STATE(2835), 1, - sym_comment, - STATE(7411), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 41, + ACTIONS(1520), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299221,6 +305049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -299249,22 +305078,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [101539] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102392] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, sym__entry_separator, - ACTIONS(5903), 1, - anon_sym_RBRACE, - STATE(2836), 1, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + STATE(2882), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7721), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1788), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299272,9 +305101,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -299308,75 +305139,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101607] = 8, + aux_sym__unquoted_in_list_token1, + [102456] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + ACTIONS(2295), 1, + sym__entry_separator, + STATE(2883), 1, + sym_comment, + ACTIONS(2291), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [102520] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(4787), 1, + ACTIONS(5891), 1, anon_sym_DOT_DOT2, - ACTIONS(5905), 1, - sym_filesize_unit, - ACTIONS(5907), 1, - sym_duration_unit, - STATE(2837), 1, + STATE(2884), 1, sym_comment, - ACTIONS(4789), 2, + ACTIONS(5893), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 43, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [101675] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2838), 1, - sym_comment, - ACTIONS(1643), 17, + ACTIONS(5724), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299392,7 +305225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, + ACTIONS(5889), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299404,9 +305237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -299425,17 +305256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101735] = 6, + [102584] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5909), 1, - anon_sym_DOT, - ACTIONS(5911), 1, - aux_sym__immediate_decimal_token2, - STATE(2839), 1, + ACTIONS(5891), 1, + anon_sym_DOT_DOT2, + STATE(2885), 1, sym_comment, - ACTIONS(1643), 15, + ACTIONS(5893), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5754), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -299449,8 +305283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 32, + ACTIONS(5895), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299462,9 +305295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -299483,22 +305314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101799] = 8, + [102648] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(1030), 1, sym__entry_separator, - ACTIONS(5913), 1, - anon_sym_RBRACE, - STATE(2840), 1, + ACTIONS(5897), 1, + anon_sym_QMARK2, + STATE(2886), 1, sym_comment, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(7490), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(1028), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299506,10 +305331,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299542,31 +305370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101867] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [102710] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5901), 1, + anon_sym_RBRACE, + ACTIONS(5903), 1, + sym__entry_separator, + STATE(2887), 1, sym_comment, - ACTIONS(1705), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 32, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299574,23 +305390,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299599,18 +305427,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101927] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [102773] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2253), 1, - sym__entry_separator, - STATE(2842), 1, + STATE(2888), 1, sym_comment, - ACTIONS(2251), 46, + ACTIONS(1042), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1044), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299622,32 +305461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299656,77 +305483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101991] = 6, + [102832] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5915), 1, + ACTIONS(5905), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5917), 1, + ACTIONS(5907), 1, aux_sym__immediate_decimal_token2, - STATE(2843), 1, + STATE(2889), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1540), 3, aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1519), 45, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102055] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5919), 1, - aux_sym__immediate_decimal_token2, - STATE(2844), 1, - sym_comment, - ACTIONS(1565), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 46, - sym__newline, + ACTIONS(1542), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -299738,52 +305508,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_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102117] = 6, + [102895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, + ACTIONS(1048), 1, sym__entry_separator, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - STATE(2845), 1, + STATE(2890), 1, sym_comment, - ACTIONS(2243), 46, + ACTIONS(1046), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299795,8 +305559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299830,22 +305595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102181] = 8, + [102954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(5921), 1, + ACTIONS(5909), 1, anon_sym_RBRACE, - STATE(2846), 1, + STATE(2891), 1, sym_comment, - STATE(2865), 1, + STATE(2925), 1, aux_sym__multiple_types_repeat1, - STATE(7545), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299855,7 +305616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -299890,15 +305652,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [102249] = 4, + [103017] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2847), 1, - sym_comment, - ACTIONS(1707), 2, - anon_sym_LPAREN2, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(1705), 47, + ACTIONS(5911), 1, + anon_sym_RBRACE, + STATE(2892), 1, + sym_comment, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299906,11 +305671,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -299944,136 +305708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [102309] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5923), 1, - anon_sym_DOT, - ACTIONS(5925), 1, - aux_sym__immediate_decimal_token2, - STATE(2848), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102373] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5927), 1, - anon_sym_DOT, - ACTIONS(5929), 1, - aux_sym__immediate_decimal_token2, - STATE(2849), 1, - sym_comment, - ACTIONS(1497), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1499), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102437] = 6, + aux_sym_unquoted_token1, + [103080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(2850), 1, + ACTIONS(5913), 1, + anon_sym_RBRACE, + STATE(2893), 1, sym_comment, - ACTIONS(1786), 46, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300081,11 +305728,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -300119,23 +305765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102501] = 8, + aux_sym_unquoted_token1, + [103143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym__, - ACTIONS(5832), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(5931), 1, + ACTIONS(5915), 1, anon_sym_RBRACE, - STATE(2851), 1, + STATE(2894), 1, sym_comment, - STATE(2865), 1, + STATE(2925), 1, aux_sym__multiple_types_repeat1, - STATE(7805), 1, - sym_default_arm, - ACTIONS(5825), 44, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300145,7 +305787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -300180,22 +305823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [102569] = 8, + [103206] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(5739), 1, - anon_sym_RBRACK, - ACTIONS(5745), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(5935), 1, - anon_sym_COMMA, - STATE(2852), 1, + ACTIONS(5917), 1, + anon_sym_RBRACE, + STATE(2895), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5933), 44, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300205,7 +305844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -300239,31 +305879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102637] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [103269] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2853), 1, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5919), 1, + anon_sym_RBRACE, + STATE(2896), 1, sym_comment, - ACTIONS(1625), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1629), 32, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300271,23 +305899,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300296,72 +305936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102697] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5813), 1, - aux_sym__immediate_decimal_token2, - STATE(2854), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102759] = 4, + aux_sym_unquoted_token1, + [103332] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2855), 1, + STATE(2897), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1653), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 46, + ACTIONS(1655), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -300408,87 +305992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102818] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5937), 1, - aux_sym__immediate_decimal_token2, - STATE(2856), 1, - sym_comment, - ACTIONS(1565), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1567), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102879] = 6, - ACTIONS(247), 1, + [103391] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5941), 1, - aux_sym__immediate_decimal_token2, - STATE(2857), 1, + ACTIONS(1052), 1, + sym__entry_separator, + STATE(2898), 1, sym_comment, - ACTIONS(1631), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1633), 32, + ACTIONS(1050), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300500,19 +306011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300521,14 +306046,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, - [102942] = 4, + aux_sym__unquoted_in_list_token1, + [103450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(2487), 1, sym__entry_separator, - STATE(2858), 1, + STATE(2899), 1, sym_comment, - ACTIONS(2469), 47, + ACTIONS(2485), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300540,7 +306066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -300576,14 +306102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103001] = 4, + [103509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, + ACTIONS(1056), 1, sym__entry_separator, - STATE(2859), 1, + STATE(2900), 1, sym_comment, - ACTIONS(2061), 47, + ACTIONS(1054), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300595,9 +306121,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -300631,15 +306157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103060] = 5, + [103568] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5943), 1, + ACTIONS(5921), 1, sym__newline, - STATE(2860), 2, + STATE(2901), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1898), 15, + ACTIONS(1313), 15, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -300655,7 +306181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1900), 31, + ACTIONS(1315), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300664,7 +306190,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -300687,16 +306213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103121] = 5, + [103629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, + ACTIONS(1894), 1, sym__entry_separator, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token2, - STATE(2861), 1, + STATE(2902), 1, sym_comment, - ACTIONS(1575), 46, + ACTIONS(1892), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300708,7 +306232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -300743,14 +306268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103182] = 4, + [103688] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(1878), 1, sym__entry_separator, - STATE(2862), 1, + STATE(2903), 1, sym_comment, - ACTIONS(2473), 47, + ACTIONS(1876), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300762,7 +306287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -300798,14 +306323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103241] = 4, + [103747] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(2863), 1, + ACTIONS(5924), 1, + anon_sym_RBRACE, + STATE(2904), 1, sym_comment, - ACTIONS(2481), 47, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300813,12 +306342,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -300852,72 +306379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103300] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5946), 1, - aux_sym__immediate_decimal_token2, - STATE(2864), 1, - sym_comment, - ACTIONS(1705), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [103361] = 4, + aux_sym_unquoted_token1, + [103810] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5948), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(2865), 2, + ACTIONS(5926), 1, + anon_sym_RBRACE, + STATE(2905), 1, sym_comment, + STATE(2925), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2359), 46, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300927,8 +306401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -300964,14 +306437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [103420] = 4, + [103873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, + ACTIONS(2448), 1, sym__entry_separator, - STATE(2866), 1, + STATE(2906), 1, sym_comment, - ACTIONS(2404), 47, + ACTIONS(2446), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300983,7 +306456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301019,14 +306492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103479] = 4, + [103932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(1906), 1, sym__entry_separator, - STATE(2867), 1, + STATE(2907), 1, sym_comment, - ACTIONS(2408), 47, + ACTIONS(1904), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301038,7 +306511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301074,44 +306547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103538] = 4, - ACTIONS(3), 1, + [103991] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2451), 1, - sym__entry_separator, - STATE(2868), 1, + ACTIONS(5928), 1, + aux_sym__immediate_decimal_token2, + STATE(2908), 1, sym_comment, - ACTIONS(2449), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + ACTIONS(1721), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301120,23 +306568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103597] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1861), 1, - sym__entry_separator, - STATE(2869), 1, - sym_comment, - ACTIONS(1859), 47, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301148,33 +306582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301183,17 +306603,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103656] = 5, + [104052] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5846), 1, + aux_sym__immediate_decimal_token2, + STATE(2909), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104113] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5930), 1, + aux_sym__immediate_decimal_token2, + STATE(2910), 1, + sym_comment, + ACTIONS(1554), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, + ACTIONS(1902), 1, sym__entry_separator, - ACTIONS(5851), 1, - aux_sym__immediate_decimal_token2, - STATE(2870), 1, + STATE(2911), 1, sym_comment, - ACTIONS(1643), 46, + ACTIONS(1900), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301205,7 +306734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -301240,17 +306770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103717] = 5, + [104233] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5925), 1, + ACTIONS(5932), 1, aux_sym__immediate_decimal_token2, - STATE(2871), 1, + STATE(2912), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1554), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 45, + ACTIONS(1556), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -301296,15 +306826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103778] = 4, + [104294] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2872), 1, - sym_comment, - ACTIONS(5953), 2, - anon_sym_LPAREN2, + ACTIONS(1572), 1, sym__entry_separator, - ACTIONS(5951), 46, + STATE(2913), 1, + sym_comment, + ACTIONS(1560), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301316,7 +306845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -301351,14 +306881,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103837] = 4, + [104353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2370), 1, + ACTIONS(2444), 1, sym__entry_separator, - STATE(2873), 1, + STATE(2914), 1, sym_comment, - ACTIONS(2368), 47, + ACTIONS(2442), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301370,7 +306900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301406,14 +306936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103896] = 4, + [104412] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(2460), 1, sym__entry_separator, - STATE(2874), 1, + STATE(2915), 1, sym_comment, - ACTIONS(1867), 47, + ACTIONS(2458), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301425,7 +306955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301461,14 +306991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103955] = 4, + [104471] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2456), 1, sym__entry_separator, - STATE(2875), 1, + STATE(2916), 1, sym_comment, - ACTIONS(2035), 47, + ACTIONS(2454), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301480,7 +307010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301516,14 +307046,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104014] = 4, - ACTIONS(3), 1, + [104530] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2487), 1, - sym__entry_separator, - STATE(2876), 1, + ACTIONS(5934), 1, + anon_sym_QMARK2, + STATE(2917), 1, sym_comment, - ACTIONS(2485), 47, + ACTIONS(1022), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1024), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301535,25 +307081,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104591] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5936), 1, + anon_sym_QMARK2, + STATE(2918), 1, + sym_comment, + ACTIONS(1028), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301562,6 +307124,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1030), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301570,15 +307158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104073] = 4, + [104652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2394), 1, - sym__entry_separator, - STATE(2877), 1, + STATE(2919), 1, sym_comment, - ACTIONS(2392), 47, + ACTIONS(5940), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(5938), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301590,8 +307178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -301626,14 +307213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104132] = 4, + [104711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2422), 1, - sym__entry_separator, - STATE(2878), 1, + STATE(2920), 1, sym_comment, - ACTIONS(2420), 47, + ACTIONS(5944), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(5942), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301645,8 +307233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -301681,72 +307268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104191] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5955), 1, - anon_sym_DOT, - ACTIONS(5957), 1, - aux_sym__immediate_decimal_token2, - STATE(2879), 1, - sym_comment, - ACTIONS(1497), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1499), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104254] = 4, + [104770] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2880), 1, - sym_comment, - ACTIONS(5961), 2, - anon_sym_LPAREN2, + ACTIONS(2464), 1, sym__entry_separator, - ACTIONS(5959), 46, + STATE(2921), 1, + sym_comment, + ACTIONS(2462), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301758,7 +307287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -301793,14 +307323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104313] = 4, + [104829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2025), 1, sym__entry_separator, - STATE(2881), 1, + STATE(2922), 1, sym_comment, - ACTIONS(1890), 47, + ACTIONS(2019), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301812,7 +307342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301848,14 +307378,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104372] = 4, + [104888] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + aux_sym__immediate_decimal_token2, + STATE(2923), 1, + sym_comment, + ACTIONS(1667), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2430), 1, + ACTIONS(2418), 1, sym__entry_separator, - STATE(2882), 1, + STATE(2924), 1, sym_comment, - ACTIONS(2428), 47, + ACTIONS(2416), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301867,7 +307453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -301903,71 +307489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104431] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5963), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5965), 1, - aux_sym__immediate_decimal_token2, - STATE(2883), 1, - sym_comment, - ACTIONS(1517), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1519), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104494] = 4, + [105008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, + ACTIONS(5946), 1, sym__entry_separator, - STATE(2884), 1, + STATE(2925), 2, sym_comment, - ACTIONS(2489), 47, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301975,12 +307505,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -302014,71 +307543,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104553] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [105067] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5967), 1, + ACTIONS(1669), 1, + sym__entry_separator, + ACTIONS(5820), 1, aux_sym__immediate_decimal_token2, - STATE(2885), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1565), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104614] = 4, + ACTIONS(1667), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [105128] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2414), 1, + ACTIONS(1866), 1, sym__entry_separator, - STATE(2886), 1, + STATE(2927), 1, sym_comment, - ACTIONS(2412), 47, + ACTIONS(1864), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302090,7 +307619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -302126,14 +307655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104673] = 4, + [105187] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(2887), 1, + ACTIONS(5949), 1, + anon_sym_RBRACE, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + STATE(2928), 1, sym_comment, - ACTIONS(2493), 47, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302141,12 +307674,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -302180,28 +307711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104732] = 10, + aux_sym_unquoted_token1, + [105250] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4610), 1, - anon_sym_DOT_DOT2, - ACTIONS(4712), 1, - aux_sym_unquoted_token2, - ACTIONS(5969), 1, - sym_filesize_unit, - ACTIONS(5971), 1, - sym_duration_unit, - STATE(2888), 1, + ACTIONS(5951), 1, + anon_sym_DOT, + ACTIONS(5953), 1, + aux_sym__immediate_decimal_token2, + STATE(2929), 1, sym_comment, - STATE(7427), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 40, + ACTIONS(1518), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1520), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302242,16 +307765,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [104803] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105313] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(2523), 1, sym__entry_separator, - ACTIONS(5973), 1, - aux_sym__immediate_decimal_token2, - STATE(2889), 1, + STATE(2930), 1, sym_comment, - ACTIONS(1705), 46, + ACTIONS(2521), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302263,7 +307788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -302298,14 +307824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104864] = 4, + [105372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2499), 1, + ACTIONS(1723), 1, sym__entry_separator, - STATE(2890), 1, + ACTIONS(5955), 1, + aux_sym__immediate_decimal_token2, + STATE(2931), 1, sym_comment, - ACTIONS(2497), 47, + ACTIONS(1721), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302317,8 +307845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -302353,14 +307880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104923] = 4, + [105433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2434), 1, + ACTIONS(2519), 1, sym__entry_separator, - STATE(2891), 1, + STATE(2932), 1, sym_comment, - ACTIONS(2432), 47, + ACTIONS(2517), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302372,7 +307899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -302408,85 +307935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104982] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5975), 1, - anon_sym_DOT, - ACTIONS(5977), 1, - aux_sym__immediate_decimal_token2, - STATE(2892), 1, - sym_comment, - ACTIONS(1497), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1499), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105045] = 4, - ACTIONS(247), 1, + [105492] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2893), 1, + ACTIONS(2483), 1, + sym__entry_separator, + STATE(2933), 1, sym_comment, - ACTIONS(1040), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1042), 33, + ACTIONS(2481), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302498,20 +307954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302520,130 +307989,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, - [105104] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5855), 1, - aux_sym__immediate_decimal_token2, - STATE(2894), 1, - sym_comment, - ACTIONS(1497), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105165] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5981), 1, - aux_sym__immediate_decimal_token2, - STATE(2895), 1, - sym_comment, - ACTIONS(1517), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1519), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105228] = 5, + aux_sym__unquoted_in_list_token1, + [105551] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5875), 1, aux_sym__immediate_decimal_token2, - STATE(2896), 1, + STATE(2934), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1518), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1499), 45, + ACTIONS(1520), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -302689,14 +308046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105289] = 4, + [105612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(2468), 1, sym__entry_separator, - STATE(2897), 1, + STATE(2935), 1, sym_comment, - ACTIONS(1894), 47, + ACTIONS(2466), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302708,7 +308065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -302744,14 +308101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105348] = 4, + [105671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(2479), 1, sym__entry_separator, - STATE(2898), 1, + STATE(2936), 1, sym_comment, - ACTIONS(2501), 47, + ACTIONS(2477), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302763,7 +308120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -302799,15 +308156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105407] = 4, + [105730] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2899), 1, - sym_comment, - ACTIONS(1497), 2, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, anon_sym_DOT_DOT2, + ACTIONS(4726), 1, aux_sym_unquoted_token2, - ACTIONS(1499), 46, + ACTIONS(5957), 1, + sym_filesize_unit, + ACTIONS(5959), 1, + sym_duration_unit, + STATE(2937), 1, + sym_comment, + STATE(7229), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -302819,9 +308189,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_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -302850,18 +308217,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105466] = 4, - ACTIONS(3), 1, + [105801] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2049), 1, - sym__entry_separator, - STATE(2900), 1, + STATE(2938), 1, sym_comment, - ACTIONS(2043), 47, + ACTIONS(1034), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1036), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302873,33 +308250,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302908,15 +308272,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [105525] = 4, + [105860] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5961), 1, + aux_sym__immediate_decimal_token2, + STATE(2939), 1, + sym_comment, + ACTIONS(1554), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1556), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, + ACTIONS(2491), 1, sym__entry_separator, - STATE(2901), 1, + STATE(2940), 1, sym_comment, - ACTIONS(2051), 47, + ACTIONS(2489), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302928,7 +308347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -302964,69 +308383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105584] = 4, + [105980] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2902), 1, - sym_comment, - ACTIONS(1044), 15, - anon_sym_DOT_DOT, + ACTIONS(5963), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1046), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [105643] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5911), 1, + ACTIONS(5965), 1, aux_sym__immediate_decimal_token2, - STATE(2903), 1, + STATE(2941), 1, sym_comment, - ACTIONS(1643), 15, + ACTIONS(1667), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -303041,8 +308407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 32, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303054,7 +308419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -303075,14 +308440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105704] = 4, + [106043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1062), 1, + ACTIONS(2495), 1, sym__entry_separator, - STATE(2904), 1, + STATE(2942), 1, sym_comment, - ACTIONS(1060), 47, + ACTIONS(2493), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303094,9 +308459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303130,14 +308495,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105763] = 4, + [106102] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, + anon_sym_DOT_DOT2, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, + ACTIONS(5967), 1, + sym_filesize_unit, + ACTIONS(5969), 1, + sym_duration_unit, + STATE(2943), 1, + sym_comment, + STATE(7224), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [106175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1054), 1, + ACTIONS(2499), 1, sym__entry_separator, - STATE(2905), 1, + STATE(2944), 1, sym_comment, - ACTIONS(1052), 47, + ACTIONS(2497), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303149,9 +308576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303185,14 +308612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105822] = 4, + [106234] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1873), 1, + ACTIONS(2503), 1, sym__entry_separator, - STATE(2906), 1, + STATE(2945), 1, sym_comment, - ACTIONS(1871), 47, + ACTIONS(2501), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303204,7 +308631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303240,14 +308667,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105881] = 4, + [106293] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5971), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5973), 1, + aux_sym__immediate_decimal_token2, + STATE(2946), 1, + sym_comment, + ACTIONS(1540), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1542), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106356] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2438), 1, + ACTIONS(2507), 1, sym__entry_separator, - STATE(2907), 1, + STATE(2947), 1, sym_comment, - ACTIONS(2436), 47, + ACTIONS(2505), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303259,7 +308743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303295,14 +308779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105940] = 4, + [106415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, + ACTIONS(2511), 1, sym__entry_separator, - STATE(2908), 1, + STATE(2948), 1, sym_comment, - ACTIONS(1575), 47, + ACTIONS(2509), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303314,7 +308798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303350,31 +308834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105999] = 6, - ACTIONS(247), 1, + [106474] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5983), 1, - anon_sym_DOT, - ACTIONS(5985), 1, - aux_sym__immediate_decimal_token2, - STATE(2909), 1, + ACTIONS(2515), 1, + sym__entry_separator, + STATE(2949), 1, sym_comment, - ACTIONS(1643), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, + ACTIONS(2513), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303386,41 +308853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106062] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_QMARK2, - STATE(2910), 1, - sym_comment, - ACTIONS(1034), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303429,32 +308880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1036), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303463,71 +308888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106123] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5989), 1, - aux_sym__immediate_decimal_token2, - STATE(2911), 1, - sym_comment, - ACTIONS(1565), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106184] = 4, + aux_sym__unquoted_in_list_token1, + [106533] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2912), 1, + STATE(2950), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 46, + ACTIONS(1520), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -303574,14 +308944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106243] = 4, + [106592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(2422), 1, sym__entry_separator, - STATE(2913), 1, + STATE(2951), 1, sym_comment, - ACTIONS(2380), 47, + ACTIONS(2420), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303593,7 +308963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303629,28 +308999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106302] = 4, - ACTIONS(247), 1, + [106651] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2914), 1, + ACTIONS(1890), 1, + sym__entry_separator, + STATE(2952), 1, sym_comment, - ACTIONS(1048), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1050), 33, + ACTIONS(1888), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303662,20 +309018,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303684,14 +309053,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106361] = 4, + aux_sym__unquoted_in_list_token1, + [106710] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2953), 1, + sym_comment, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1845), 1, + ACTIONS(1850), 1, sym__entry_separator, - STATE(2915), 1, + STATE(2954), 1, sym_comment, - ACTIONS(1843), 47, + ACTIONS(1848), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303703,7 +309128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303739,14 +309164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106420] = 4, + [106828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(2414), 1, sym__entry_separator, - STATE(2916), 1, + STATE(2955), 1, sym_comment, - ACTIONS(1945), 47, + ACTIONS(2412), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303758,7 +309183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303794,29 +309219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106479] = 11, + [106887] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - sym__newline, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4610), 1, + STATE(2956), 1, + sym_comment, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, - ACTIONS(4680), 1, aux_sym_unquoted_token2, - ACTIONS(5991), 1, - sym_filesize_unit, - ACTIONS(5993), 1, - sym_duration_unit, - STATE(2917), 1, - sym_comment, - STATE(7332), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 39, + ACTIONS(1542), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -303828,42 +309240,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [106552] = 4, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(2436), 1, sym__entry_separator, - STATE(2918), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2477), 47, + ACTIONS(2434), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303875,7 +309293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303911,14 +309329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106611] = 4, + [107005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2426), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(2919), 1, + ACTIONS(5975), 1, + anon_sym_RBRACE, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + STATE(2958), 1, sym_comment, - ACTIONS(2424), 47, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303926,12 +309348,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -303965,70 +309385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106670] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2920), 1, - sym_comment, - ACTIONS(1639), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106729] = 4, + aux_sym_unquoted_token1, + [107068] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(2475), 1, sym__entry_separator, - STATE(2921), 1, + STATE(2959), 1, sym_comment, - ACTIONS(1949), 47, + ACTIONS(2473), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304040,7 +309405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -304076,20 +309441,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106788] = 5, - ACTIONS(247), 1, + [107127] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5995), 1, - anon_sym_QMARK2, - STATE(2922), 1, + ACTIONS(1997), 1, + sym__entry_separator, + STATE(2960), 1, sym_comment, - ACTIONS(1028), 15, + ACTIONS(1991), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304098,8 +309487,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1030), 32, + [107186] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2005), 1, + sym__entry_separator, + STATE(2961), 1, + sym_comment, + ACTIONS(1999), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304111,19 +309515,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304132,14 +309550,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, - [106849] = 4, + aux_sym__unquoted_in_list_token1, + [107245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2402), 1, + ACTIONS(2013), 1, sym__entry_separator, - STATE(2923), 1, + STATE(2962), 1, sym_comment, - ACTIONS(2400), 47, + ACTIONS(2007), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304151,7 +309570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -304187,14 +309606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106908] = 4, + [107304] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(5903), 1, sym__entry_separator, - STATE(2924), 1, + ACTIONS(5977), 1, + anon_sym_RBRACE, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + STATE(2963), 1, sym_comment, - ACTIONS(1056), 47, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304202,13 +309625,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -304241,15 +309662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106967] = 4, + aux_sym_unquoted_token1, + [107367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2398), 1, + ACTIONS(2440), 1, sym__entry_separator, - STATE(2925), 1, + STATE(2964), 1, sym_comment, - ACTIONS(2396), 47, + ACTIONS(2438), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304261,7 +309682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -304297,14 +309718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107026] = 4, + [107426] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(1572), 1, sym__entry_separator, - STATE(2926), 1, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token2, + STATE(2965), 1, sym_comment, - ACTIONS(2465), 47, + ACTIONS(1560), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304316,8 +309739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304352,14 +309774,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107085] = 4, + [107487] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5979), 1, + anon_sym_DOT, + ACTIONS(5981), 1, + aux_sym__immediate_decimal_token2, + STATE(2966), 1, + sym_comment, + ACTIONS(1518), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1520), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107550] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, + ACTIONS(1874), 1, sym__entry_separator, - STATE(2927), 1, + STATE(2967), 1, sym_comment, - ACTIONS(2416), 47, + ACTIONS(1872), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304371,7 +309850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -304407,30 +309886,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107144] = 5, - ACTIONS(3), 1, + [107609] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - STATE(2928), 1, + STATE(2968), 1, sym_comment, - ACTIONS(2253), 8, + ACTIONS(1038), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1040), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2251), 38, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [107668] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2452), 1, + sym__entry_separator, + STATE(2969), 1, + sym_comment, + ACTIONS(2450), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304445,6 +309976,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304462,74 +309996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107204] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4787), 1, - anon_sym_DOT_DOT2, - ACTIONS(5997), 1, - sym_filesize_unit, - ACTIONS(5999), 1, - sym_duration_unit, - STATE(2929), 1, - sym_comment, - ACTIONS(4789), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [107270] = 4, + [107727] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2930), 1, + ACTIONS(5842), 1, + aux_sym__immediate_decimal_token2, + STATE(2970), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1518), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 44, + ACTIONS(1520), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -304574,14 +310052,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107328] = 4, - ACTIONS(3), 1, + [107788] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1042), 1, - sym__entry_separator, - STATE(2931), 1, + ACTIONS(5983), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5985), 1, + aux_sym__immediate_decimal_token2, + STATE(2971), 1, sym_comment, - ACTIONS(1040), 46, + ACTIONS(1659), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304593,32 +310088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304627,31 +310109,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107386] = 5, + [107851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(2932), 1, - sym_comment, - ACTIONS(2297), 8, - anon_sym_LBRACK, + ACTIONS(1072), 1, + sym__entry_separator, + ACTIONS(5756), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2293), 38, + STATE(2972), 1, + sym_comment, + ACTIONS(5754), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304666,6 +310144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304683,14 +310164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107446] = 5, + [107911] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6001), 1, - aux_sym__immediate_decimal_token2, - STATE(2933), 1, + ACTIONS(5987), 1, + sym__newline, + STATE(2973), 2, sym_comment, - ACTIONS(1705), 14, + aux_sym_shebang_repeat1, + ACTIONS(1313), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -304704,8 +310187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 32, + aux_sym_unquoted_token1, + ACTIONS(1315), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304713,11 +310196,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -304738,68 +310219,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, - [107506] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2934), 1, - sym_comment, - ACTIONS(1639), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1641), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107564] = 4, + [107971] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2935), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + STATE(2974), 1, sym_comment, - ACTIONS(1056), 15, + ACTIONS(1778), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304813,7 +310241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1058), 32, + ACTIONS(1786), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304825,7 +310253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -304846,14 +310274,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, - [107622] = 4, + [108031] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2936), 1, + ACTIONS(5990), 1, + aux_sym__immediate_decimal_token2, + STATE(2975), 1, sym_comment, - ACTIONS(1060), 15, + ACTIONS(1721), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304867,7 +310296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1062), 32, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304879,7 +310308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -304900,27 +310329,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, - [107680] = 5, + [108091] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - STATE(2865), 1, - aux_sym__multiple_types_repeat1, - STATE(2937), 1, + ACTIONS(2235), 1, + aux_sym__unquoted_in_list_token4, + STATE(2976), 1, sym_comment, - ACTIONS(5825), 45, + ACTIONS(2233), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2229), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304935,9 +310367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304954,17 +310383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [107740] = 4, + aux_sym__unquoted_in_list_token1, + [108151] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2938), 1, + STATE(2977), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1540), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 45, - ts_builtin_sym_end, + ACTIONS(1542), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -304976,7 +310404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -305009,15 +310438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107798] = 4, + [108209] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(2978), 1, sym_comment, - ACTIONS(1565), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, - ACTIONS(1567), 45, + aux_sym_unquoted_token2, + ACTIONS(1520), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -305029,8 +310459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -305063,16 +310492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107856] = 4, + [108267] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2940), 1, + ACTIONS(5992), 1, + aux_sym__immediate_decimal_token2, + STATE(2979), 1, sym_comment, - ACTIONS(1639), 3, + ACTIONS(1554), 3, + aux_sym_cmd_identifier_token41, sym__newline, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 44, + ACTIONS(1556), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -305084,7 +310515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -305117,14 +310547,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107914] = 4, + [108327] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2980), 1, + sym_comment, + ACTIONS(1554), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1556), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1633), 1, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5732), 1, sym__entry_separator, - STATE(2941), 1, + STATE(2981), 1, sym_comment, - ACTIONS(1631), 46, + ACTIONS(5724), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305132,11 +310618,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -305171,18 +310656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107972] = 5, + [108445] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5957), 1, - aux_sym__immediate_decimal_token2, - STATE(2942), 1, + STATE(2982), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1653), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1499), 44, - ts_builtin_sym_end, + ACTIONS(1655), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -305194,6 +310676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -305226,43 +310710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108032] = 4, - ACTIONS(3), 1, + [108503] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1046), 1, - sym__entry_separator, - STATE(2943), 1, + STATE(2983), 1, sym_comment, - ACTIONS(1044), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1667), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305271,23 +310729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108090] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - sym__entry_separator, - STATE(2944), 1, - sym_comment, - ACTIONS(2019), 46, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305299,32 +310743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305333,13 +310764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108148] = 4, + [108561] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2945), 1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token2, + STATE(2984), 1, sym_comment, - ACTIONS(1705), 15, + ACTIONS(1560), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305354,8 +310786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 32, + ACTIONS(1572), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305367,7 +310798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -305388,14 +310819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108206] = 5, + [108621] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(2303), 1, aux_sym__unquoted_in_list_token2, - STATE(2946), 1, + STATE(2985), 1, sym_comment, - ACTIONS(2218), 14, + ACTIONS(2297), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305410,7 +310841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2222), 32, + ACTIONS(2301), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305422,7 +310853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -305443,68 +310874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108266] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - STATE(2947), 1, - sym_comment, - ACTIONS(2247), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 38, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108326] = 4, + [108681] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2948), 1, + STATE(2986), 1, sym_comment, - ACTIONS(1345), 15, - anon_sym_DOLLAR, + ACTIONS(1721), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305519,17 +310894,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1349), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -305542,8 +310920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305552,71 +310928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108384] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2949), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108442] = 5, + [108739] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6003), 1, - sym__newline, - STATE(2950), 2, + STATE(2987), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1898), 15, - anon_sym__, + ACTIONS(1050), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -305629,8 +310948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1900), 30, + aux_sym__unquoted_in_list_token1, + ACTIONS(1052), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305638,9 +310957,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -305661,15 +310982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108502] = 5, + [108797] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - STATE(2951), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1796), 14, + ACTIONS(1054), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -305683,7 +311003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1804), 32, + ACTIONS(1056), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305695,7 +311015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -305716,12 +311036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108562] = 4, + [108855] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2952), 1, + ACTIONS(5965), 1, + aux_sym__immediate_decimal_token2, + STATE(2989), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(1667), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305734,52 +311056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT, anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [108620] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - sym__entry_separator, - ACTIONS(6008), 1, - anon_sym_RBRACK, - STATE(2953), 1, - sym_comment, - ACTIONS(6006), 45, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1669), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305787,35 +311066,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305824,17 +311091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108680] = 4, + [108915] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(2990), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(1554), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 44, + ACTIONS(1556), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -305879,68 +311145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108738] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1066), 1, - sym__entry_separator, - STATE(2955), 1, - sym_comment, - ACTIONS(1064), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108796] = 5, + [108973] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2230), 1, - aux_sym__unquoted_in_list_token2, - STATE(2956), 1, + STATE(2991), 1, sym_comment, - ACTIONS(2224), 14, + ACTIONS(1311), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305955,19 +311166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2228), 32, + ACTIONS(1307), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -305980,6 +311189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305988,16 +311199,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108856] = 5, + [109031] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4773), 1, + anon_sym_DOT_DOT2, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5994), 1, + sym_filesize_unit, + ACTIONS(5996), 1, + sym_duration_unit, + STATE(2992), 1, + sym_comment, + ACTIONS(4775), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [109097] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5739), 1, - anon_sym_RBRACK, - ACTIONS(5745), 1, + ACTIONS(1826), 1, sym__entry_separator, - STATE(2957), 1, + ACTIONS(6000), 1, + anon_sym_RBRACK, + STATE(2993), 1, sym_comment, - ACTIONS(5737), 45, + ACTIONS(5998), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306008,7 +311277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306043,27 +311312,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108916] = 5, + [109157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1078), 1, - sym__entry_separator, - ACTIONS(5749), 1, - anon_sym_RBRACK, - STATE(2958), 1, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + STATE(2994), 1, sym_comment, - ACTIONS(5747), 45, + ACTIONS(2241), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2237), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306078,9 +311350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306098,28 +311367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108976] = 4, - ACTIONS(247), 1, + [109217] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2959), 1, + ACTIONS(1044), 1, + sym__entry_separator, + STATE(2995), 1, sym_comment, - ACTIONS(1631), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 32, + ACTIONS(1042), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306131,19 +311386,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + 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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306152,17 +311420,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, - [109034] = 4, + aux_sym__unquoted_in_list_token1, + [109275] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2960), 1, + STATE(2996), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1540), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1542), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -306173,47 +311441,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109092] = 4, + [109333] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1669), 1, + sym__entry_separator, + STATE(2997), 1, + sym_comment, + ACTIONS(1667), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [109391] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2998), 1, sym_comment, - ACTIONS(1052), 15, + ACTIONS(1659), 15, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306227,7 +311549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1054), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306239,7 +311562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -306260,69 +311583,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, - [109150] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2962), 1, - sym_comment, - ACTIONS(1639), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109208] = 4, + [109449] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2963), 1, + ACTIONS(6003), 1, + aux_sym__immediate_decimal_token2, + STATE(2999), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1554), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1519), 45, + ACTIONS(1556), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -306334,8 +311606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -306368,15 +311638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109266] = 5, + [109509] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - STATE(2964), 1, + STATE(3000), 1, sym_comment, - ACTIONS(1786), 14, + ACTIONS(1046), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306390,7 +311659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1794), 32, + ACTIONS(1048), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306402,7 +311671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -306423,29 +311692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109326] = 5, - ACTIONS(247), 1, + [109567] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - STATE(2965), 1, + ACTIONS(2410), 1, + sym__entry_separator, + STATE(3001), 1, sym_comment, - ACTIONS(2160), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2162), 32, + ACTIONS(2408), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306453,23 +311707,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306478,69 +311745,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, - [109386] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5977), 1, - aux_sym__immediate_decimal_token2, - STATE(2966), 1, - sym_comment, - ACTIONS(1497), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1499), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109446] = 4, + aux_sym_unquoted_token1, + [109625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(1661), 1, sym__entry_separator, - STATE(2967), 1, + STATE(3002), 1, sym_comment, - ACTIONS(1705), 46, + ACTIONS(1659), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306552,7 +311765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306587,53 +311800,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109504] = 5, - ACTIONS(247), 1, + [109683] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5985), 1, - aux_sym__immediate_decimal_token2, - STATE(2968), 1, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + STATE(3003), 1, sym_comment, - ACTIONS(1643), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, + ACTIONS(2247), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2245), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306642,26 +311854,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109564] = 4, + aux_sym__unquoted_in_list_token1, + [109743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2513), 1, - sym__entry_separator, - STATE(2969), 1, + STATE(3004), 1, sym_comment, - ACTIONS(2511), 46, + ACTIONS(2255), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2253), 39, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306676,9 +311891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306695,15 +311907,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [109622] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [109801] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3005), 1, + sym_comment, + ACTIONS(1653), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109859] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, + ACTIONS(1036), 1, sym__entry_separator, - STATE(2970), 1, + STATE(3006), 1, sym_comment, - ACTIONS(1755), 46, + ACTIONS(1034), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306715,7 +311982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306750,14 +312017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109680] = 4, + [109917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, + ACTIONS(1723), 1, sym__entry_separator, - STATE(2971), 1, + STATE(3007), 1, sym_comment, - ACTIONS(1643), 46, + ACTIONS(1721), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306769,7 +312036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306804,14 +312071,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109738] = 4, - ACTIONS(3), 1, + [109975] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2135), 1, - sym__entry_separator, - STATE(2972), 1, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + STATE(3008), 1, sym_comment, - ACTIONS(2133), 46, + ACTIONS(2291), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2295), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306823,32 +312105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + 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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306857,15 +312126,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [109796] = 4, + [110035] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5953), 1, + aux_sym__immediate_decimal_token2, + STATE(3009), 1, + sym_comment, + ACTIONS(1518), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1520), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(1060), 1, sym__entry_separator, - STATE(2973), 1, + STATE(3010), 1, sym_comment, - ACTIONS(1048), 46, + ACTIONS(1058), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306877,7 +312200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306912,30 +312235,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109854] = 5, - ACTIONS(3), 1, + [110153] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym__unquoted_in_list_token4, - STATE(2974), 1, + ACTIONS(6005), 1, + anon_sym_LBRACK2, + STATE(3011), 1, sym_comment, - ACTIONS(5869), 8, + ACTIONS(2313), 15, anon_sym_LBRACK, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2317), 31, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + 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, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5747), 38, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [110213] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3012), 1, + sym_comment, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110271] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1040), 1, + sym__entry_separator, + STATE(3013), 1, + sym_comment, + ACTIONS(1038), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306950,6 +312378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306967,16 +312398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109914] = 4, + [110329] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2975), 1, + STATE(3014), 1, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1653), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 44, + ACTIONS(1655), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -307021,21 +312452,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109972] = 4, + [110387] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2976), 1, + ACTIONS(2227), 1, + aux_sym__unquoted_in_list_token4, + STATE(3015), 1, sym_comment, - ACTIONS(2261), 8, + ACTIONS(5895), 8, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2259), 39, + ACTIONS(5754), 38, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307074,21 +312507,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [110030] = 5, - ACTIONS(247), 1, + [110447] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_LBRACK2, - STATE(2977), 1, + ACTIONS(1740), 1, + sym__entry_separator, + STATE(3016), 1, sym_comment, - ACTIONS(2303), 15, + ACTIONS(1738), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307097,31 +312552,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2307), 31, + [110505] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5981), 1, + aux_sym__immediate_decimal_token2, + STATE(3017), 1, + sym_comment, + ACTIONS(1518), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1520), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110565] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2031), 1, + sym__entry_separator, + STATE(3018), 1, + sym_comment, + ACTIONS(2029), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_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, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307130,15 +312669,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, - [110090] = 4, + aux_sym__unquoted_in_list_token1, + [110623] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2978), 1, + STATE(3019), 1, sym_comment, - ACTIONS(1497), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, - ACTIONS(1499), 45, + aux_sym_unquoted_token2, + ACTIONS(1542), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -307150,8 +312691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -307184,12 +312724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110148] = 4, + [110681] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2979), 1, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + STATE(3020), 1, sym_comment, - ACTIONS(1643), 15, + ACTIONS(2287), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307204,8 +312746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 32, + ACTIONS(2289), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307217,7 +312758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307238,69 +312779,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110206] = 5, - ACTIONS(247), 1, + [110741] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6013), 1, - aux_sym__immediate_decimal_token2, - STATE(2980), 1, + ACTIONS(2035), 1, + sym__entry_separator, + STATE(3021), 1, sym_comment, - ACTIONS(1565), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1567), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110266] = 5, + ACTIONS(2033), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [110799] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, + ACTIONS(1798), 1, aux_sym__unquoted_in_list_token2, - STATE(2981), 1, + STATE(3022), 1, sym_comment, - ACTIONS(1575), 14, + ACTIONS(1788), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307315,7 +312855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1587), 32, + ACTIONS(1796), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307327,7 +312867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307348,18 +312888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110326] = 5, + [110859] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6015), 1, - aux_sym__immediate_decimal_token2, - STATE(2982), 1, + STATE(3023), 1, sym_comment, - ACTIONS(1565), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(1518), 3, sym__newline, anon_sym_DOT_DOT2, - ACTIONS(1567), 43, + aux_sym_unquoted_token2, + ACTIONS(1520), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -307371,6 +312909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -307403,27 +312942,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110386] = 4, + [110917] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2983), 1, + STATE(3024), 1, sym_comment, - ACTIONS(2432), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2434), 32, + ACTIONS(1518), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1520), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110975] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + STATE(2925), 1, + aux_sym__multiple_types_repeat1, + STATE(3025), 1, + sym_comment, + ACTIONS(5899), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307431,42 +313013,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_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, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [110443] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2984), 1, - sym_comment, - ACTIONS(2380), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307475,32 +313042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2382), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307509,12 +313050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110500] = 4, + aux_sym_unquoted_token1, + [111035] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2985), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2392), 14, + ACTIONS(1738), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307529,7 +313071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2394), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1740), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307541,7 +313084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307562,12 +313105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110557] = 4, + [111093] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2986), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2396), 14, + ACTIONS(2477), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307582,7 +313125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2398), 32, + ACTIONS(2479), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307594,7 +313137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307615,12 +313158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110614] = 4, + [111150] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2987), 1, + STATE(3028), 1, sym_comment, - ACTIONS(1843), 14, + ACTIONS(1659), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307635,7 +313178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1845), 32, + ACTIONS(1661), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307647,7 +313190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307668,12 +313211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110671] = 4, + [111207] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2988), 1, + STATE(3029), 1, sym_comment, - ACTIONS(2400), 14, + ACTIONS(2412), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307688,7 +313231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2402), 32, + ACTIONS(2414), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307700,7 +313243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307721,12 +313264,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110728] = 4, + [111264] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2989), 1, + STATE(3030), 1, sym_comment, - ACTIONS(2404), 14, + ACTIONS(1554), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1556), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111321] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3031), 1, + sym_comment, + ACTIONS(2497), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307741,7 +313337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2406), 32, + ACTIONS(2499), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307753,7 +313349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307774,12 +313370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110785] = 4, + [111378] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2990), 1, + STATE(3032), 1, sym_comment, - ACTIONS(1859), 14, + ACTIONS(2501), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307794,7 +313390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1861), 32, + ACTIONS(2503), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307806,7 +313402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307827,12 +313423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110842] = 4, + [111435] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2991), 1, + STATE(3033), 1, sym_comment, - ACTIONS(1867), 14, + ACTIONS(2416), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307847,7 +313443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1869), 32, + ACTIONS(2418), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307859,7 +313455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307880,12 +313476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110899] = 4, + [111492] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2992), 1, + STATE(3034), 1, sym_comment, - ACTIONS(1871), 14, + ACTIONS(1864), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307900,7 +313496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 32, + ACTIONS(1866), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307912,7 +313508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307933,12 +313529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110956] = 4, + [111549] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2993), 1, + STATE(3035), 1, sym_comment, - ACTIONS(2408), 14, + ACTIONS(2481), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307953,7 +313549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2410), 32, + ACTIONS(2483), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307965,7 +313561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -307986,12 +313582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111013] = 4, + [111606] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2994), 1, + STATE(3036), 1, sym_comment, - ACTIONS(1890), 14, + ACTIONS(1721), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308006,7 +313602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1892), 32, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308018,7 +313614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308039,12 +313635,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111070] = 4, + [111663] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(3037), 1, sym_comment, - ACTIONS(2412), 14, + ACTIONS(1653), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1655), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111720] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3038), 1, + sym_comment, + ACTIONS(2505), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308059,7 +313708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2414), 32, + ACTIONS(2507), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308071,7 +313720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308092,12 +313741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111127] = 4, + [111777] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2996), 1, + STATE(3039), 1, sym_comment, - ACTIONS(2416), 14, + ACTIONS(1872), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308112,7 +313761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2418), 32, + ACTIONS(1874), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308124,7 +313773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308145,12 +313794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111184] = 4, + [111834] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(3040), 1, sym_comment, - ACTIONS(1894), 14, + ACTIONS(1738), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308165,7 +313814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1896), 32, + ACTIONS(1740), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308177,7 +313826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308198,12 +313847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111241] = 4, + [111891] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2998), 1, + STATE(3041), 1, sym_comment, - ACTIONS(1945), 14, + ACTIONS(1876), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308218,7 +313867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1947), 32, + ACTIONS(1878), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308230,7 +313879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308251,12 +313900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111298] = 4, + [111948] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2999), 1, + STATE(3042), 1, sym_comment, - ACTIONS(2420), 14, + ACTIONS(2513), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308271,7 +313920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2422), 32, + ACTIONS(2515), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308283,7 +313932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308304,12 +313953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111355] = 4, + [112005] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(3043), 1, sym_comment, - ACTIONS(2424), 14, + ACTIONS(2420), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308324,7 +313973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2426), 32, + ACTIONS(2422), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308336,7 +313985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308357,12 +314006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111412] = 4, + [112062] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3001), 1, + STATE(3044), 1, sym_comment, - ACTIONS(1949), 14, + ACTIONS(1888), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308377,7 +314026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1951), 32, + ACTIONS(1890), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308389,7 +314038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308410,12 +314059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111469] = 4, + [112119] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3002), 1, + STATE(3045), 1, sym_comment, - ACTIONS(2428), 14, + ACTIONS(2434), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308430,7 +314079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2430), 32, + ACTIONS(2436), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308442,7 +314091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308463,12 +314112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111526] = 4, + [112176] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3003), 1, + STATE(3046), 1, sym_comment, - ACTIONS(2019), 14, + ACTIONS(2438), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308483,7 +314132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2021), 32, + ACTIONS(2440), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308495,7 +314144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308516,12 +314165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111583] = 4, + [112233] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3004), 1, + STATE(3047), 1, sym_comment, - ACTIONS(2133), 14, + ACTIONS(1892), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308536,7 +314185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2135), 32, + ACTIONS(1894), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308548,7 +314197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308569,12 +314218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111640] = 4, + [112290] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3005), 1, + STATE(3048), 1, sym_comment, - ACTIONS(5959), 14, + ACTIONS(1900), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308589,7 +314238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5961), 32, + ACTIONS(1902), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308601,7 +314250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308622,69 +314271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111697] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4896), 1, - anon_sym_DOT_DOT2, - ACTIONS(6017), 1, - sym_filesize_unit, - ACTIONS(6019), 1, - sym_duration_unit, - STATE(3006), 1, - sym_comment, - ACTIONS(4898), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [111762] = 4, + [112347] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3007), 1, + STATE(3049), 1, sym_comment, - ACTIONS(1040), 14, + ACTIONS(2442), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308699,7 +314291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1042), 32, + ACTIONS(2444), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308711,7 +314303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308732,12 +314324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111819] = 4, + [112404] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3008), 1, + STATE(3050), 1, sym_comment, - ACTIONS(1044), 14, + ACTIONS(2446), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308752,7 +314344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1046), 32, + ACTIONS(2448), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308764,7 +314356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308785,12 +314377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111876] = 4, + [112461] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3009), 1, + STATE(3051), 1, sym_comment, - ACTIONS(5951), 14, + ACTIONS(1904), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308805,7 +314397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5953), 32, + ACTIONS(1906), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308817,7 +314409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308838,12 +314430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111933] = 4, + [112518] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3010), 1, + STATE(3052), 1, sym_comment, - ACTIONS(1048), 14, + ACTIONS(6009), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308858,7 +314450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1050), 32, + ACTIONS(6007), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308870,7 +314462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308891,12 +314483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111990] = 4, + [112575] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3011), 1, + STATE(3053), 1, sym_comment, - ACTIONS(1064), 14, + ACTIONS(2450), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308911,7 +314503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1066), 32, + ACTIONS(2452), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308923,7 +314515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -308944,70 +314536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112047] = 9, + [112632] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - sym__newline, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4787), 1, - anon_sym_DOT_DOT2, - ACTIONS(6021), 1, - sym_filesize_unit, - ACTIONS(6023), 1, - sym_duration_unit, - STATE(3012), 1, - sym_comment, - ACTIONS(4789), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [112114] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3013), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2061), 14, + ACTIONS(2454), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309022,7 +314556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2067), 32, + ACTIONS(2456), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309034,7 +314568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309055,12 +314589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112171] = 4, + [112689] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3014), 1, + STATE(3055), 1, sym_comment, - ACTIONS(2449), 14, + ACTIONS(5942), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309075,7 +314609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2451), 32, + ACTIONS(5944), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309087,7 +314621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309108,12 +314642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112228] = 4, + [112746] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(3056), 1, sym_comment, - ACTIONS(2035), 14, + ACTIONS(1042), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309128,7 +314662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2041), 32, + ACTIONS(1044), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309140,7 +314674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309161,12 +314695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112285] = 4, + [112803] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3016), 1, + STATE(3057), 1, sym_comment, - ACTIONS(2043), 14, + ACTIONS(1038), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309181,7 +314715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2049), 32, + ACTIONS(1040), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309193,7 +314727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309214,12 +314748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112342] = 4, + [112860] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3017), 1, + STATE(3058), 1, sym_comment, - ACTIONS(2051), 14, + ACTIONS(6009), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309234,7 +314768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2057), 32, + ACTIONS(6007), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309246,7 +314780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309267,12 +314801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112399] = 4, + [112917] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3018), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2465), 14, + ACTIONS(2019), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309287,7 +314821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2467), 32, + ACTIONS(2025), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309299,7 +314833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309320,12 +314854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112456] = 4, + [112974] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3019), 1, + ACTIONS(6013), 1, + anon_sym_COMMA, + STATE(3060), 1, sym_comment, - ACTIONS(2469), 14, + ACTIONS(5830), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309340,7 +314876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2471), 32, + ACTIONS(6011), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309350,9 +314886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309373,12 +314908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112513] = 4, + [113033] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3020), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2473), 14, + ACTIONS(1034), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309393,7 +314928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2475), 32, + ACTIONS(1036), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309405,7 +314940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309426,12 +314961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112570] = 4, + [113090] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3021), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2477), 14, + ACTIONS(6017), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309446,7 +314981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2479), 32, + ACTIONS(6015), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309458,7 +314993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309479,12 +315014,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112627] = 4, + [113147] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(3063), 1, sym_comment, - ACTIONS(2481), 14, + ACTIONS(1311), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1307), 31, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [113204] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3064), 1, + sym_comment, + ACTIONS(5938), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309499,7 +315087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2483), 32, + ACTIONS(5940), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309511,7 +315099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309532,12 +315120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112684] = 4, + [113261] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3023), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2436), 14, + ACTIONS(5640), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309552,7 +315140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2438), 32, + ACTIONS(5651), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309564,7 +315152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309585,12 +315173,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112741] = 4, + [113318] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3066), 1, + sym_comment, + ACTIONS(1518), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1520), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113375] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3024), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2489), 14, + ACTIONS(2029), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309605,7 +315246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2491), 32, + ACTIONS(2031), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309617,7 +315258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309638,12 +315279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112798] = 4, + [113432] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3025), 1, + STATE(3068), 1, sym_comment, - ACTIONS(2493), 14, + ACTIONS(2473), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309658,7 +315299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2495), 32, + ACTIONS(2475), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309670,7 +315311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309691,12 +315332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112855] = 4, + [113489] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3026), 1, + STATE(3069), 1, sym_comment, - ACTIONS(2497), 14, + ACTIONS(1991), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309711,7 +315352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2499), 32, + ACTIONS(1997), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309723,7 +315364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309744,12 +315385,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112912] = 4, + [113546] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3027), 1, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(4773), 1, + anon_sym_DOT_DOT2, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6019), 1, + sym_filesize_unit, + ACTIONS(6021), 1, + sym_duration_unit, + STATE(3070), 1, sym_comment, - ACTIONS(2501), 14, + ACTIONS(4775), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [113613] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3071), 1, + sym_comment, + ACTIONS(2517), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309764,7 +315463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2503), 32, + ACTIONS(2519), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309776,7 +315475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309797,12 +315496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112969] = 4, + [113670] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(3072), 1, sym_comment, - ACTIONS(5737), 14, + ACTIONS(1058), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309817,7 +315516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5863), 32, + ACTIONS(1060), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309829,7 +315528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309850,12 +315549,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113026] = 4, + [113727] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3029), 1, + STATE(3073), 1, + sym_comment, + ACTIONS(1540), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1542), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113784] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3074), 1, sym_comment, - ACTIONS(6027), 14, + ACTIONS(1999), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309870,7 +315622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6025), 32, + ACTIONS(2005), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309882,7 +315634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309903,12 +315655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113083] = 4, + [113841] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3030), 1, + STATE(3075), 1, sym_comment, - ACTIONS(6031), 14, + ACTIONS(2007), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309923,7 +315675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6029), 32, + ACTIONS(2013), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309935,7 +315687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309956,12 +315708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113140] = 4, + [113898] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3031), 1, + STATE(3076), 1, sym_comment, - ACTIONS(5747), 14, + ACTIONS(2033), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309976,7 +315728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5869), 32, + ACTIONS(2035), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309988,7 +315740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310009,174 +315761,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, - [113197] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3032), 1, - sym_comment, - ACTIONS(1497), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1499), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113254] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3033), 1, - sym_comment, - ACTIONS(1517), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1519), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113311] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3034), 1, - sym_comment, - ACTIONS(1565), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1567), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113368] = 4, + [113955] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3035), 1, + STATE(3077), 1, sym_comment, - ACTIONS(1639), 2, + ACTIONS(1554), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1641), 44, + ACTIONS(1556), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -310221,16 +315814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113425] = 4, + [114012] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3036), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1518), 3, aux_sym_cmd_identifier_token41, sym__newline, anon_sym_DOT_DOT2, - ACTIONS(1499), 43, + ACTIONS(1520), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -310274,12 +315867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113482] = 4, + [114069] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3037), 1, + STATE(3079), 1, sym_comment, - ACTIONS(1643), 14, + ACTIONS(2521), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310294,7 +315887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, + ACTIONS(2523), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310306,7 +315899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310327,12 +315920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113539] = 4, + [114126] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3080), 1, sym_comment, - ACTIONS(5593), 14, + ACTIONS(2466), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310347,7 +315940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5649), 32, + ACTIONS(2468), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310359,7 +315952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310380,65 +315973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113596] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3039), 1, - sym_comment, - ACTIONS(1517), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1519), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113653] = 4, + [114183] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3040), 1, + STATE(3081), 1, sym_comment, - ACTIONS(1631), 14, + ACTIONS(6025), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310453,7 +315993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1633), 32, + ACTIONS(6023), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310465,7 +316005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310486,65 +316026,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113710] = 4, + [114240] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3041), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1565), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1567), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113767] = 4, + ACTIONS(2489), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2491), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [114297] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3042), 1, + STATE(3083), 1, sym_comment, - ACTIONS(1705), 14, + ACTIONS(1560), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310559,7 +316099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 32, + ACTIONS(1572), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310571,7 +316111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310592,65 +316132,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113824] = 4, + [114354] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3043), 1, + STATE(3084), 1, sym_comment, - ACTIONS(1639), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1641), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113881] = 4, + ACTIONS(1667), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1669), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [114411] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3044), 1, + STATE(3085), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(2493), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310665,7 +316205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1757), 32, + ACTIONS(2495), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310677,7 +316217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310698,12 +316238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113938] = 4, + [114468] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3086), 1, sym_comment, - ACTIONS(6035), 14, + ACTIONS(2485), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310718,7 +316258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6033), 32, + ACTIONS(2487), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310730,7 +316270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310751,12 +316291,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113995] = 4, + [114525] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3087), 1, sym_comment, - ACTIONS(6039), 14, + ACTIONS(1540), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1542), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [114582] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3088), 1, + sym_comment, + ACTIONS(2458), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310771,7 +316364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6037), 32, + ACTIONS(2460), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310783,7 +316376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310804,12 +316397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114052] = 4, + [114639] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3047), 1, + STATE(3089), 1, sym_comment, - ACTIONS(6006), 14, + ACTIONS(6029), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310824,7 +316417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6041), 32, + ACTIONS(6027), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310836,7 +316429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310857,12 +316450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114109] = 4, + [114696] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3048), 1, + STATE(3090), 1, sym_comment, - ACTIONS(6045), 14, + ACTIONS(5998), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310877,7 +316470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6043), 32, + ACTIONS(6031), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310889,7 +316482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310910,12 +316503,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114166] = 4, + [114753] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3049), 1, + STATE(3091), 1, + sym_comment, + ACTIONS(1653), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1655), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [114810] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3092), 1, sym_comment, - ACTIONS(6045), 14, + ACTIONS(1848), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310930,7 +316576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6043), 32, + ACTIONS(1850), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310942,7 +316588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -310963,12 +316609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114223] = 4, + [114867] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3093), 1, sym_comment, - ACTIONS(6049), 14, + ACTIONS(5724), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310983,7 +316629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6047), 32, + ACTIONS(5889), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310995,7 +316641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -311016,13 +316662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114280] = 4, + [114924] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3051), 1, + STATE(3094), 1, sym_comment, - ACTIONS(1345), 15, - anon_sym__, + ACTIONS(6035), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311036,19 +316681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1349), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(6033), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -311069,14 +316715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114337] = 5, + [114981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_COMMA, - STATE(3052), 1, + STATE(3095), 1, sym_comment, - ACTIONS(5933), 14, + ACTIONS(6039), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311091,7 +316735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6051), 31, + ACTIONS(6037), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311101,8 +316745,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -311123,12 +316768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114396] = 4, + [115038] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3053), 1, + STATE(3096), 1, sym_comment, - ACTIONS(2368), 14, + ACTIONS(5754), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311143,7 +316788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2370), 32, + ACTIONS(5895), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311155,7 +316800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -311176,12 +316821,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114453] = 4, + [115095] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3054), 1, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4948), 1, + anon_sym_DOT_DOT2, + ACTIONS(6041), 1, + sym_filesize_unit, + ACTIONS(6043), 1, + sym_duration_unit, + STATE(3097), 1, + sym_comment, + ACTIONS(4950), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115160] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3098), 1, sym_comment, - ACTIONS(1575), 14, + ACTIONS(2462), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311196,7 +316898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1587), 32, + ACTIONS(2464), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311208,7 +316910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -311229,12 +316931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114510] = 4, + [115217] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3055), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2485), 14, + ACTIONS(2509), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311249,7 +316951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2487), 32, + ACTIONS(2511), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311261,7 +316963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -311282,37 +316984,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, - [114567] = 14, + [115274] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(2245), 1, + anon_sym_DASH, + STATE(3100), 1, + sym_comment, + ACTIONS(2247), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115330] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3056), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3101), 1, sym_comment, - STATE(6747), 1, + STATE(6589), 1, sym_block, - STATE(7422), 1, + STATE(7363), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -311344,37 +317098,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114643] = 14, + [115406] = 14, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6045), 1, + anon_sym_COLON, + ACTIONS(6047), 1, + anon_sym_LBRACK, + ACTIONS(6053), 1, + anon_sym_list, ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3102), 1, + sym_comment, + STATE(6590), 1, + sym_block, + STATE(7192), 1, + sym_returns, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, + sym__multiple_types, + STATE(7717), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [115482] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3057), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3103), 1, sym_comment, - STATE(6722), 1, + STATE(6269), 1, sym_block, - STATE(7355), 1, + STATE(7331), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [115558] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6045), 1, + anon_sym_COLON, + ACTIONS(6047), 1, + anon_sym_LBRACK, + ACTIONS(6053), 1, + anon_sym_list, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3104), 1, + sym_comment, + STATE(6272), 1, + sym_block, + STATE(7332), 1, + sym_returns, + STATE(7489), 1, sym__one_type, - ACTIONS(6061), 2, + STATE(7590), 1, + sym__multiple_types, + STATE(7717), 1, + sym__type_annotation, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -311406,70 +317284,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114719] = 8, + [115634] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1681), 1, - sym_cell_path, - STATE(1908), 1, - aux_sym_cell_path_repeat1, - STATE(3058), 1, + ACTIONS(6045), 1, + anon_sym_COLON, + ACTIONS(6047), 1, + anon_sym_LBRACK, + ACTIONS(6053), 1, + anon_sym_list, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3105), 1, sym_comment, - ACTIONS(6067), 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(1959), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [114783] = 4, + STATE(6739), 1, + sym_block, + STATE(7190), 1, + sym_returns, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, + sym__multiple_types, + STATE(7717), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [115710] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_DASH, - STATE(3059), 1, + ACTIONS(5006), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1659), 1, + sym_cell_path, + STATE(1942), 1, + aux_sym_cell_path_repeat1, + STATE(3106), 1, sym_comment, - ACTIONS(2247), 44, + ACTIONS(6059), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -311482,10 +317372,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_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1914), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -311514,66 +317402,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [114839] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3060), 1, - sym_comment, - ACTIONS(6072), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6070), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114895] = 4, + [115774] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2251), 1, + ACTIONS(2229), 1, anon_sym_DASH, - STATE(3061), 1, + STATE(3107), 1, sym_comment, - ACTIONS(2253), 44, + ACTIONS(2233), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -311587,7 +317423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -311618,37 +317454,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [114951] = 14, + [115830] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3062), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3108), 1, sym_comment, - STATE(6695), 1, + STATE(6504), 1, sym_block, - STATE(7377), 1, + STATE(7341), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -311680,37 +317516,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115027] = 14, + [115906] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3063), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3109), 1, sym_comment, - STATE(6719), 1, + STATE(6509), 1, sym_block, - STATE(7440), 1, + STATE(7342), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -311742,21 +317578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115103] = 7, + [115982] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4896), 1, + ACTIONS(4948), 1, anon_sym_DOT_DOT2, - ACTIONS(6074), 1, + ACTIONS(6062), 1, sym_filesize_unit, - ACTIONS(6076), 1, + ACTIONS(6064), 1, sym_duration_unit, - STATE(3064), 1, + STATE(3110), 1, sym_comment, - ACTIONS(4898), 2, + ACTIONS(4950), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 40, + ACTIONS(1572), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -311797,161 +317633,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [115165] = 14, + [116044] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_COLON, - ACTIONS(6057), 1, - anon_sym_LBRACK, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3065), 1, + STATE(3111), 1, sym_comment, - STATE(6808), 1, - sym_block, - STATE(7362), 1, - sym_returns, - STATE(7473), 1, - sym__multiple_types, - STATE(7521), 1, - sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115241] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6068), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6066), 31, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3066), 1, - sym_comment, - STATE(6807), 1, - sym_block, - STATE(7319), 1, - sym_returns, - STATE(7473), 1, - sym__multiple_types, - STATE(7521), 1, - sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115317] = 14, + anon_sym_RBRACK, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [116100] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3067), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3112), 1, sym_comment, - STATE(6117), 1, + STATE(6712), 1, sym_block, - STATE(7363), 1, + STATE(7259), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -311983,37 +317747,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115393] = 14, + [116176] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3068), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3113), 1, sym_comment, - STATE(6125), 1, + STATE(6982), 1, sym_block, - STATE(7374), 1, + STATE(7269), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312045,37 +317809,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115469] = 14, + [116252] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3069), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3114), 1, sym_comment, - STATE(6603), 1, + STATE(6983), 1, sym_block, - STATE(7328), 1, + STATE(7271), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312107,37 +317871,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115545] = 14, + [116328] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3070), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3115), 1, sym_comment, - STATE(6610), 1, + STATE(6669), 1, sym_block, - STATE(7330), 1, + STATE(7333), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312169,30 +317933,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115621] = 12, + [116404] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6080), 1, + ACTIONS(6070), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6084), 1, + ACTIONS(6074), 1, anon_sym_DOT, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - STATE(3071), 1, + STATE(3116), 1, sym_comment, - STATE(3331), 1, + STATE(3379), 1, sym__immediate_decimal, - ACTIONS(6086), 2, + ACTIONS(6076), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3319), 2, + STATE(3377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 9, + ACTIONS(1496), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -312202,7 +317966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1515), 26, + ACTIONS(1506), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312216,7 +317980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, @@ -312229,99 +317993,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115693] = 14, + [116476] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3072), 1, - sym_comment, - STATE(6625), 1, - sym_block, - STATE(7347), 1, - sym_returns, - STATE(7473), 1, - sym__multiple_types, - STATE(7521), 1, - sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115769] = 14, - ACTIONS(247), 1, - anon_sym_POUND, ACTIONS(6055), 1, - anon_sym_COLON, - ACTIONS(6057), 1, - anon_sym_LBRACK, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3073), 1, + anon_sym_LBRACE, + STATE(3117), 1, sym_comment, - STATE(6629), 1, + STATE(6147), 1, sym_block, - STATE(7348), 1, + STATE(7350), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312353,37 +318055,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115845] = 14, + [116552] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3074), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(3118), 1, sym_comment, - STATE(6135), 1, + STATE(6150), 1, sym_block, - STATE(7310), 1, + STATE(7188), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312415,37 +318117,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115921] = 14, + [116628] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(3075), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3119), 1, sym_comment, - STATE(6138), 1, + STATE(6734), 1, sym_block, - STATE(7312), 1, + STATE(7300), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312477,37 +318179,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115997] = 14, + [116704] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3076), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3120), 1, sym_comment, - STATE(6760), 1, + STATE(6701), 1, sym_block, - STATE(7309), 1, + STATE(7218), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312539,37 +318241,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116073] = 14, + [116780] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6045), 1, anon_sym_COLON, - ACTIONS(6057), 1, + ACTIONS(6047), 1, anon_sym_LBRACK, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(3077), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3121), 1, sym_comment, - STATE(6937), 1, + STATE(6661), 1, sym_block, - STATE(7354), 1, + STATE(7253), 1, sym_returns, - STATE(7473), 1, + STATE(7489), 1, + sym__one_type, + STATE(7590), 1, sym__multiple_types, - STATE(7521), 1, + STATE(7717), 1, sym__type_annotation, - STATE(7800), 1, - sym__one_type, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -312601,14 +318303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116149] = 4, + [116856] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(2237), 1, anon_sym_DASH, - STATE(3078), 1, + STATE(3122), 1, sym_comment, - ACTIONS(2297), 44, + ACTIONS(2241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312622,7 +318324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, @@ -312653,28 +318355,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [116205] = 11, + [116912] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + STATE(1883), 1, + aux_sym_cell_path_repeat1, + STATE(2107), 1, + sym_path, + STATE(2423), 1, + sym_cell_path, + STATE(3123), 1, + sym_comment, + ACTIONS(6059), 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(1914), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [116975] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - STATE(3079), 1, + STATE(3124), 1, sym_comment, - STATE(3384), 1, + STATE(3427), 1, sym__immediate_decimal, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3356), 2, + STATE(3402), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1621), 9, + ACTIONS(1496), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -312684,7 +318441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1623), 26, + ACTIONS(1506), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312698,7 +318455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, @@ -312711,22 +318468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116274] = 9, + [117044] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4946), 1, + ACTIONS(4956), 1, anon_sym_DOT, - ACTIONS(6096), 1, + ACTIONS(6086), 1, sym__newline, - STATE(1917), 1, + STATE(1794), 1, aux_sym_cell_path_repeat1, - STATE(2141), 1, + STATE(2042), 1, sym_path, - STATE(2184), 1, + STATE(2379), 1, sym_cell_path, - STATE(3080), 1, + STATE(3125), 1, sym_comment, - ACTIONS(6067), 11, + ACTIONS(6059), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -312738,7 +318495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - ACTIONS(1959), 28, + ACTIONS(1914), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -312767,83 +318524,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [116339] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(1926), 1, - aux_sym_cell_path_repeat1, - STATE(2126), 1, - sym_path, - STATE(2355), 1, - sym_cell_path, - STATE(3081), 1, - sym_comment, - ACTIONS(6067), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1959), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [116402] = 11, + [117109] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - STATE(3082), 1, + STATE(3126), 1, sym_comment, - STATE(3367), 1, + STATE(3423), 1, sym__immediate_decimal, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3366), 2, + STATE(3421), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 9, + ACTIONS(1586), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -312853,7 +318555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1515), 26, + ACTIONS(1588), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312867,7 +318569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, @@ -312880,28 +318582,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116471] = 11, + [117178] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - STATE(3083), 1, + STATE(3127), 1, sym_comment, - STATE(3355), 1, + STATE(3419), 1, sym__immediate_decimal, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3354), 2, + STATE(3381), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1617), 9, + ACTIONS(1602), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -312911,7 +318613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1619), 26, + ACTIONS(1604), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312925,7 +318627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, @@ -312938,387 +318640,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116540] = 11, + [117247] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - STATE(3084), 1, + STATE(3128), 1, sym_comment, - STATE(3359), 1, + STATE(3426), 1, sym__immediate_decimal, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3358), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1561), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1563), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116609] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2259), 1, - aux_sym_unquoted_token4, - STATE(3085), 1, - sym_comment, - ACTIONS(2261), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [116663] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_DOT, - STATE(3086), 1, - sym_comment, - STATE(3090), 1, - aux_sym_cell_path_repeat1, - STATE(3122), 1, - sym_path, - ACTIONS(1017), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1019), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116723] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6101), 1, - anon_sym_RBRACK, - STATE(3087), 1, - sym_comment, - STATE(3094), 1, - aux_sym_shebang_repeat1, - STATE(3292), 1, - aux_sym__multiple_types_repeat2, - STATE(6876), 1, - sym__one_type, - STATE(7508), 1, - sym__type_annotation, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [116793] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3088), 1, - sym_comment, - ACTIONS(2297), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [116849] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3089), 1, - sym_comment, - ACTIONS(2247), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [116905] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6103), 1, - anon_sym_DOT, - STATE(3122), 1, - sym_path, - STATE(3090), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1023), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116963] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3091), 1, - sym_comment, - ACTIONS(1064), 10, + ACTIONS(1576), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313327,8 +318671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1066), 33, - anon_sym_EQ, + ACTIONS(1584), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313340,19 +318683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313361,67 +318698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117017] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(3092), 1, - sym_comment, - ACTIONS(1078), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [117073] = 5, + [117316] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(3093), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2253), 41, + ACTIONS(1072), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313463,72 +318749,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117129] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(6063), 1, - anon_sym_list, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(3094), 1, - sym_comment, - STATE(3286), 1, - aux_sym__multiple_types_repeat2, - STATE(6926), 1, - sym__one_type, - STATE(7508), 1, - sym__type_annotation, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [117196] = 6, + [117372] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - STATE(3095), 1, + STATE(3130), 1, sym_comment, - ACTIONS(1631), 10, + ACTIONS(1058), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -313539,7 +318765,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(1633), 30, + ACTIONS(1060), 33, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313551,12 +318778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_in, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -313570,15 +318799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117253] = 4, + [117426] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(6089), 1, + anon_sym_DOT, + STATE(3242), 1, + sym_path, + STATE(3131), 2, sym_comment, - ACTIONS(1044), 11, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 10, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313587,7 +318820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1046), 31, + ACTIONS(1017), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313602,10 +318835,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -313619,15 +318851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117306] = 4, + [117484] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3097), 1, + ACTIONS(6092), 1, + anon_sym_DOT, + STATE(3131), 1, + aux_sym_cell_path_repeat1, + STATE(3132), 1, sym_comment, - ACTIONS(1048), 11, + STATE(3242), 1, + sym_path, + ACTIONS(1011), 10, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313636,7 +318873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1050), 31, + ACTIONS(1013), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313651,10 +318888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -313668,17 +318904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117359] = 5, + [117544] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(3098), 1, + STATE(3133), 1, sym_comment, - ACTIONS(2253), 40, - ts_builtin_sym_end, + ACTIONS(2241), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313690,6 +318925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -313718,14 +318955,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117414] = 4, + [117600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(3099), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(3134), 1, sym_comment, - ACTIONS(2261), 41, + ACTIONS(2247), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313767,14 +319006,124 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117467] = 4, + [117656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(3100), 1, + ACTIONS(2253), 1, + aux_sym_unquoted_token4, + STATE(3135), 1, + sym_comment, + ACTIONS(2255), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117710] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(6053), 1, + anon_sym_list, + ACTIONS(6094), 1, + anon_sym_RBRACK, + STATE(3136), 1, + sym_comment, + STATE(3148), 1, + aux_sym_shebang_repeat1, + STATE(3308), 1, + aux_sym__multiple_types_repeat2, + STATE(6968), 1, + sym__one_type, + STATE(7704), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [117780] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(3137), 1, sym_comment, - ACTIONS(2297), 41, + ACTIONS(2233), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313816,18 +319165,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117520] = 6, + [117836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(1070), 1, sym__newline, - ACTIONS(2295), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(3101), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2297), 39, + ACTIONS(1072), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -313867,18 +319216,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [117577] = 6, + [117893] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6096), 1, + anon_sym_DOT, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + STATE(3139), 1, + sym_comment, + ACTIONS(1667), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1669), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [117950] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2229), 1, sym__newline, - ACTIONS(2245), 1, + ACTIONS(2231), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2235), 1, aux_sym_unquoted_token4, - STATE(3102), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2247), 39, + ACTIONS(2233), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -313918,18 +319318,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [117634] = 6, + [118007] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - ACTIONS(2251), 1, + ACTIONS(2245), 1, sym__newline, - STATE(3103), 1, + STATE(3141), 1, sym_comment, - ACTIONS(2253), 39, + ACTIONS(2247), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -313969,14 +319369,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [117691] = 4, - ACTIONS(247), 1, + [118064] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_unquoted_token2, - STATE(3104), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(3142), 1, sym_comment, - ACTIONS(1587), 41, + ACTIONS(2241), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313988,8 +319391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -314018,73 +319419,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117744] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6080), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6110), 1, - anon_sym_DOT, - STATE(3105), 1, - sym_comment, - STATE(3438), 1, - sym__immediate_decimal, - ACTIONS(6086), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3332), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1493), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [117813] = 5, + [118119] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(3106), 1, + STATE(3143), 1, sym_comment, - ACTIONS(1078), 40, + ACTIONS(2247), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -314125,21 +319469,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117868] = 8, + [118174] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + sym__newline, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(3144), 1, + sym_comment, + ACTIONS(2241), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [118231] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3091), 1, - sym_cell_path, - STATE(3107), 1, + STATE(3145), 1, sym_comment, - ACTIONS(1011), 9, + ACTIONS(1038), 11, anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314148,7 +319537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 29, + ACTIONS(1040), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314161,15 +319550,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_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314178,22 +319569,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, - [117929] = 8, + [118284] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_DOT, - STATE(3086), 1, - aux_sym_cell_path_repeat1, - STATE(3091), 1, - sym_cell_path, - STATE(3108), 1, + STATE(3146), 1, sym_comment, - STATE(3122), 1, - sym_path, - ACTIONS(1011), 10, + ACTIONS(1034), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314202,7 +319586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 28, + ACTIONS(1036), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314216,8 +319600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -314231,17 +319618,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117990] = 5, + [118337] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, + STATE(3147), 1, + sym_comment, + ACTIONS(2253), 2, + sym__newline, aux_sym_unquoted_token4, - STATE(3109), 1, + ACTIONS(2255), 40, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [118390] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(6053), 1, + anon_sym_list, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(3148), 1, sym_comment, - ACTIONS(2247), 40, - ts_builtin_sym_end, + STATE(3311), 1, + aux_sym__multiple_types_repeat2, + STATE(6867), 1, + sym__one_type, + STATE(7704), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [118457] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(3149), 1, + sym_comment, + ACTIONS(2241), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314253,6 +319742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -314281,18 +319772,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118045] = 6, - ACTIONS(3), 1, + [118510] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, - sym__newline, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(3110), 1, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3130), 1, + sym_cell_path, + STATE(3150), 1, sym_comment, - ACTIONS(1078), 39, + ACTIONS(1005), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1007), 29, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -314304,44 +319808,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118102] = 5, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2253), 1, aux_sym_unquoted_token4, - STATE(3111), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2297), 40, + ACTIONS(2255), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -314354,6 +319845,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_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -314382,16 +319874,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118157] = 6, + [118624] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6112), 1, - anon_sym_DOT, - ACTIONS(6114), 1, + ACTIONS(6100), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6102), 1, aux_sym__immediate_decimal_token2, - STATE(3112), 1, + STATE(3152), 1, sym_comment, - ACTIONS(1643), 10, + ACTIONS(1659), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -314402,7 +319894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1645), 30, + ACTIONS(1661), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314417,7 +319909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -314433,17 +319925,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118214] = 5, + [118681] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6116), 1, - anon_sym_QMARK2, - STATE(3113), 1, + ACTIONS(6070), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6104), 1, + anon_sym_DOT, + STATE(3153), 1, sym_comment, - ACTIONS(1034), 11, + STATE(3474), 1, + sym__immediate_decimal, + ACTIONS(6076), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3366), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314452,7 +319958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 30, + ACTIONS(1492), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314466,15 +319972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314483,17 +319982,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118269] = 5, + [118750] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6118), 1, - anon_sym_QMARK2, - STATE(3114), 1, + ACTIONS(6092), 1, + anon_sym_DOT, + STATE(3130), 1, + sym_cell_path, + STATE(3132), 1, + aux_sym_cell_path_repeat1, + STATE(3154), 1, sym_comment, - ACTIONS(1028), 11, + STATE(3242), 1, + sym_path, + ACTIONS(1005), 10, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314502,7 +320006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1030), 30, + ACTIONS(1007), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314516,10 +320020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -314533,63 +320035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118324] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3115), 1, - sym_comment, - ACTIONS(2259), 2, - sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2261), 40, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118377] = 4, - ACTIONS(3), 1, + [118811] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(3116), 1, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(3155), 1, sym_comment, - ACTIONS(1587), 41, + ACTIONS(2247), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314631,14 +320084,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118430] = 4, - ACTIONS(247), 1, + [118864] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(3117), 1, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(3156), 1, sym_comment, - ACTIONS(2247), 41, + ACTIONS(1072), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314650,8 +320106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -314680,14 +320134,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118483] = 4, + [118919] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(3118), 1, + ACTIONS(6106), 1, + anon_sym_QMARK2, + STATE(3157), 1, sym_comment, - ACTIONS(2253), 41, + ACTIONS(1022), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1024), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314700,44 +320166,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [118536] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118974] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2259), 1, - aux_sym_unquoted_token4, - STATE(3119), 1, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + STATE(3158), 1, sym_comment, - ACTIONS(2261), 41, - ts_builtin_sym_end, + ACTIONS(1572), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314749,7 +320203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -314778,12 +320233,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118589] = 4, + [119027] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3120), 1, + STATE(3159), 1, sym_comment, - ACTIONS(1040), 11, + ACTIONS(1042), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -314795,7 +320250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1042), 31, + ACTIONS(1044), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314810,7 +320265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_QMARK2, @@ -314827,16 +320282,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, - [118642] = 5, + [119080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2259), 1, - sym__newline, - ACTIONS(4785), 1, + ACTIONS(4816), 1, aux_sym_cmd_identifier_token37, - STATE(3121), 1, + STATE(3160), 1, sym_comment, - ACTIONS(2261), 39, + ACTIONS(2255), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -314848,40 +320302,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118696] = 4, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [119133] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3122), 1, + ACTIONS(6108), 1, + anon_sym_QMARK2, + STATE(3161), 1, sym_comment, - ACTIONS(1056), 11, + ACTIONS(1028), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -314893,7 +320350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1058), 30, + ACTIONS(1030), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314908,7 +320365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -314924,24 +320381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118748] = 4, - ACTIONS(247), 1, + [119188] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(3162), 1, sym_comment, - ACTIONS(1060), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1062), 30, + ACTIONS(2233), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -314954,30 +320401,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [118800] = 4, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [119241] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(3163), 1, + sym_comment, + ACTIONS(2233), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [119296] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(3164), 1, + sym_comment, + ACTIONS(1572), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [119349] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3165), 1, sym_comment, - ACTIONS(1052), 11, + ACTIONS(1054), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -314989,7 +320546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1054), 30, + ACTIONS(1056), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -315004,7 +320561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -315020,16 +320577,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118852] = 5, + [119401] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(5296), 1, sym__newline, - ACTIONS(4680), 1, - aux_sym_unquoted_token2, - STATE(3125), 1, + STATE(3166), 1, sym_comment, - ACTIONS(1587), 39, + STATE(3196), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5201), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315041,16 +320619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -315063,22 +320631,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118906] = 5, - ACTIONS(3), 1, + [119465] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(3126), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3167), 1, sym_comment, - ACTIONS(1587), 39, + ACTIONS(6120), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6124), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6126), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6122), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5197), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315090,16 +320666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -315118,71 +320684,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [118960] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - STATE(3127), 1, - sym_comment, - STATE(3479), 1, - sym__immediate_decimal, - ACTIONS(6094), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3360), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1549), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1551), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119026] = 5, + [119527] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(5296), 1, sym__newline, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(3128), 1, + STATE(3168), 1, sym_comment, - ACTIONS(2247), 39, + STATE(3197), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5201), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315194,16 +320719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -315222,16 +320737,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [119080] = 5, + [119589] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2251), 1, + ACTIONS(5307), 1, sym__newline, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, - STATE(3129), 1, + STATE(3169), 1, sym_comment, - ACTIONS(2253), 39, + STATE(3198), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5220), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315243,8 +320761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -315271,15 +320787,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [119134] = 4, - ACTIONS(3), 1, + [119645] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, - STATE(3130), 1, + STATE(3170), 1, sym_comment, - ACTIONS(1587), 40, - ts_builtin_sym_end, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -315291,12 +320812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -315319,65 +320836,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [119186] = 5, + [119699] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - STATE(3131), 1, - sym_comment, - ACTIONS(1643), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1645), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119240] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(5307), 1, sym__newline, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, - STATE(3132), 1, + STATE(3171), 1, sym_comment, - ACTIONS(2297), 39, + STATE(3200), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5220), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315389,12 +320865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -315417,114 +320887,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [119294] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6120), 1, - anon_sym_GT, - ACTIONS(6122), 1, - anon_sym_AT, - STATE(3133), 1, - sym_comment, - STATE(6755), 1, - sym__all_type, - STATE(7629), 1, - sym_param_cmd, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(5573), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [119358] = 3, + [119757] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3134), 1, - sym_comment, - ACTIONS(6124), 41, + ACTIONS(5307), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [119408] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3135), 1, + STATE(3172), 1, sym_comment, - ACTIONS(4976), 13, - sym__newline, + STATE(3202), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5220), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315536,157 +320919,62 @@ static 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(2357), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [119460] = 3, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [119817] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3136), 1, - sym_comment, - ACTIONS(6126), 41, + ACTIONS(5307), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [119510] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACK, - ACTIONS(6063), 1, - anon_sym_list, - STATE(3137), 1, - sym_comment, - STATE(7521), 1, - sym__type_annotation, - STATE(7564), 1, - sym__multiple_types, - STATE(7655), 1, - sym__one_type, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - 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, - [119574] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6128), 1, - aux_sym__immediate_decimal_token2, - STATE(3138), 1, + STATE(3173), 1, sym_comment, - ACTIONS(1705), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1707), 30, - sym__newline, + STATE(3204), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315698,34 +320986,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_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119628] = 4, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [119883] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3139), 1, - sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(4972), 39, + ACTIONS(5307), 1, sym__newline, + STATE(3174), 1, + sym_comment, + STATE(3206), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315737,48 +321044,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [119680] = 5, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [119951] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(3140), 1, + ACTIONS(5307), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3175), 1, sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + STATE(3208), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 35, - sym__newline, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315790,47 +321102,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [119734] = 6, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [120021] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3141), 1, - sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 33, + ACTIONS(5195), 1, sym__newline, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3176), 1, + sym_comment, + ACTIONS(6120), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6124), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6126), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6122), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6138), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5197), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315842,60 +321149,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [119790] = 9, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [120085] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(3142), 1, + ACTIONS(5307), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3177), 1, sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + STATE(3210), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6136), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6138), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6140), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 21, - sym__newline, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315907,51 +321215,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, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [119852] = 10, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [120157] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(3143), 1, + ACTIONS(5307), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3178), 1, sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + STATE(3212), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6136), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6142), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6138), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6140), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 19, - sym__newline, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -315963,50 +321275,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_RBRACE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [119916] = 11, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [120231] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, - aux_sym_expr_binary_token13, - STATE(3144), 1, + STATE(3179), 1, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6128), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6134), 2, + ACTIONS(6144), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6136), 2, + ACTIONS(6146), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6142), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6132), 4, + ACTIONS(6130), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6138), 4, + ACTIONS(6148), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6140), 6, + ACTIONS(6150), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 18, + ACTIONS(5052), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316020,51 +321323,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [119982] = 12, + [120293] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, - aux_sym_expr_binary_token13, - ACTIONS(6146), 1, - aux_sym_expr_binary_token14, - STATE(3145), 1, + ACTIONS(5307), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6152), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3180), 1, sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + STATE(3214), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6136), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6142), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6138), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6140), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 17, - sym__newline, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316076,53 +321389,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, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [120050] = 13, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [120369] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, - aux_sym_expr_binary_token13, - ACTIONS(6146), 1, - aux_sym_expr_binary_token14, - ACTIONS(6148), 1, - aux_sym_expr_binary_token15, - STATE(3146), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6152), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6154), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3181), 1, sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + STATE(3216), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6136), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6142), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6138), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6140), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 16, - sym__newline, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316134,54 +321451,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, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [120120] = 14, + aux_sym_expr_binary_parenthesized_token18, + [120447] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, - aux_sym_expr_binary_token13, - ACTIONS(6146), 1, - aux_sym_expr_binary_token14, - ACTIONS(6148), 1, - aux_sym_expr_binary_token15, - ACTIONS(6150), 1, - aux_sym_expr_binary_token16, - STATE(3147), 1, - sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6136), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6142), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6138), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6140), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 15, + ACTIONS(5307), 1, sym__newline, + STATE(3182), 1, + sym_comment, + STATE(3218), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316193,54 +321494,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [120192] = 15, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [120511] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, - aux_sym_expr_binary_token13, - ACTIONS(6146), 1, - aux_sym_expr_binary_token14, - ACTIONS(6148), 1, - aux_sym_expr_binary_token15, - ACTIONS(6150), 1, - aux_sym_expr_binary_token16, - ACTIONS(6152), 1, - aux_sym_expr_binary_token17, - STATE(3148), 1, + STATE(3183), 1, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6128), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6134), 2, + ACTIONS(6144), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6136), 2, + ACTIONS(6146), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6142), 2, + ACTIONS(6156), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6132), 4, + ACTIONS(6130), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6138), 4, + ACTIONS(6148), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6140), 6, + ACTIONS(6150), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 14, + ACTIONS(5052), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316254,35 +321554,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [120266] = 8, + [120575] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3149), 1, - sym_comment, - ACTIONS(6130), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6134), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6136), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6132), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6140), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 25, + ACTIONS(5307), 1, sym__newline, + STATE(3184), 1, + sym_comment, + STATE(3220), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5220), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316294,39 +321595,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [120326] = 7, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [120637] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3150), 1, + ACTIONS(6158), 1, + aux_sym_expr_binary_token13, + STATE(3185), 1, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6128), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6134), 2, + ACTIONS(6144), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6136), 2, + ACTIONS(6146), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6132), 4, + ACTIONS(6156), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6130), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4972), 31, + ACTIONS(6148), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316340,37 +321663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [120384] = 6, + [120703] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3151), 1, - sym_comment, - STATE(3164), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3186), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5196), 37, + ACTIONS(5205), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316408,24 +321718,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120440] = 7, + [120759] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3152), 1, - sym_comment, - STATE(3166), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3187), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5196), 33, + ACTIONS(5205), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316459,27 +321769,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120498] = 8, + [120817] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3153), 1, - sym_comment, - STATE(3168), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3188), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5196), 31, + ACTIONS(5205), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316511,42 +321821,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120558] = 11, + [120877] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3154), 1, - sym_comment, - STATE(3170), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3189), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 19, + ACTIONS(5205), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316566,45 +321876,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120624] = 12, + [120943] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3155), 1, - sym_comment, - STATE(3172), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3190), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 17, + ACTIONS(5205), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316622,47 +321932,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120692] = 13, + [121011] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3156), 1, - sym_comment, - STATE(3174), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3191), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 16, + ACTIONS(5205), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316679,49 +321989,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120762] = 14, + [121081] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3157), 1, - sym_comment, - STATE(3176), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3192), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 15, + ACTIONS(5205), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316737,51 +322047,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120834] = 15, + [121153] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3158), 1, - sym_comment, - STATE(3178), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3193), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 14, + ACTIONS(5205), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316796,53 +322106,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120908] = 16, + [121227] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3159), 1, - sym_comment, - STATE(3180), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3194), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 13, + ACTIONS(5205), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316856,55 +322166,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120984] = 17, + [121303] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5295), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6176), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3160), 1, - sym_comment, - STATE(3182), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3195), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 12, + ACTIONS(5205), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316917,37 +322227,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [121062] = 10, + [121381] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3161), 1, - sym_comment, - STATE(3184), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3196), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6164), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 23, + ACTIONS(5205), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -316971,30 +322281,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [121126] = 9, + [121445] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3162), 1, - sym_comment, - STATE(3186), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3197), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5196), 29, + ACTIONS(5205), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317024,73 +322334,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121188] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(6178), 1, - anon_sym_GT, - STATE(3163), 1, - sym_comment, - STATE(6818), 1, - sym__all_type, - STATE(7705), 1, - sym_param_cmd, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(5573), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [121252] = 6, + [121507] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3164), 1, + STATE(3198), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5206), 37, + ACTIONS(5142), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317128,19 +322384,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121308] = 6, + [121563] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3165), 1, + STATE(3199), 1, sym_comment, - STATE(3200), 1, + STATE(3222), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5210), 37, + ACTIONS(5150), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317178,24 +322434,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121364] = 7, + [121619] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3166), 1, + STATE(3200), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5206), 33, + ACTIONS(5142), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317229,24 +322485,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121422] = 7, + [121677] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3167), 1, - sym_comment, STATE(3201), 1, + sym_comment, + STATE(3223), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5210), 33, + ACTIONS(5150), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317280,27 +322536,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121480] = 8, + [121735] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3168), 1, + STATE(3202), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5206), 31, + ACTIONS(5142), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317332,27 +322588,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121540] = 8, + [121795] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3169), 1, + STATE(3203), 1, sym_comment, - STATE(3202), 1, + STATE(3224), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5210), 31, + ACTIONS(5150), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317384,42 +322640,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121600] = 11, + [121855] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3170), 1, + STATE(3204), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 19, + ACTIONS(5142), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317439,42 +322695,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121666] = 11, + [121921] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3171), 1, + STATE(3205), 1, sym_comment, - STATE(3203), 1, + STATE(3225), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 19, + ACTIONS(5150), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317494,45 +322750,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121732] = 12, + [121987] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3172), 1, + STATE(3206), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 17, + ACTIONS(5142), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317550,45 +322806,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121800] = 12, + [122055] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3173), 1, + STATE(3207), 1, sym_comment, - STATE(3204), 1, + STATE(3226), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 17, + ACTIONS(5150), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317606,47 +322862,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121868] = 13, + [122123] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3174), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 16, + ACTIONS(5142), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317663,47 +322919,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121938] = 13, + [122193] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3175), 1, + STATE(3209), 1, sym_comment, - STATE(3205), 1, + STATE(3227), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 16, + ACTIONS(5150), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317720,49 +322976,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122008] = 14, + [122263] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3176), 1, + STATE(3210), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 15, + ACTIONS(5142), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317778,49 +323034,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122080] = 14, + [122335] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3177), 1, + STATE(3211), 1, sym_comment, - STATE(3206), 1, + STATE(3228), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 15, + ACTIONS(5150), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317836,51 +323092,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122152] = 15, + [122407] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3178), 1, + STATE(3212), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 14, + ACTIONS(5142), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317895,51 +323151,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122226] = 15, + [122481] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, + ACTIONS(6142), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3179), 1, + STATE(3213), 1, sym_comment, - STATE(3207), 1, + STATE(3229), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 14, + ACTIONS(5150), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -317954,53 +323210,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122300] = 16, + [122555] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3180), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 13, + ACTIONS(5142), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318014,53 +323270,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122376] = 16, + [122631] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, + ACTIONS(6142), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, + ACTIONS(6152), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3181), 1, + STATE(3215), 1, sym_comment, - STATE(3208), 1, + STATE(3230), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 13, + ACTIONS(5150), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318074,55 +323330,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122452] = 17, + [122707] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6202), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3182), 1, + STATE(3216), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 12, + ACTIONS(5142), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318135,152 +323391,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [122530] = 17, + [122785] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5295), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, + ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, + ACTIONS(6142), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, + ACTIONS(6152), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6176), 1, + ACTIONS(6154), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3183), 1, + STATE(3217), 1, sym_comment, - STATE(3209), 1, + STATE(3231), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [122608] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5204), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3184), 1, - sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6190), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [122672] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5309), 1, - sym__newline, - STATE(3185), 1, - sym_comment, - STATE(3210), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 23, + ACTIONS(5150), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318292,95 +323451,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [122736] = 9, + [122863] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3186), 1, + STATE(3218), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5206), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [122798] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5309), 1, - sym__newline, - STATE(3187), 1, - sym_comment, - STATE(3211), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5210), 29, + ACTIONS(5142), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318404,134 +323506,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [122860] = 6, + [122927] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3188), 1, + STATE(3219), 1, sym_comment, - STATE(3212), 1, + STATE(3232), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5156), 37, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [122916] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(3189), 1, - sym_comment, - STATE(3214), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5156), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [122974] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(3190), 1, - sym_comment, - STATE(3216), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5156), 31, + ACTIONS(5150), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318543,8 +323548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -318557,164 +323560,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [123034] = 11, + [122991] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5140), 1, sym__newline, - STATE(3191), 1, - sym_comment, - STATE(3218), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123100] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(3192), 1, - sym_comment, STATE(3220), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123168] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3193), 1, sym_comment, - STATE(3222), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 16, + ACTIONS(5142), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318726,314 +323595,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123238] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3194), 1, - sym_comment, - STATE(3224), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 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, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123310] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3195), 1, - sym_comment, - STATE(3226), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 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, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [123384] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3196), 1, - sym_comment, - STATE(3228), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 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, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123460] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4712), 1, - aux_sym_unquoted_token2, - STATE(3197), 1, - sym_comment, - ACTIONS(1587), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [123512] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(3198), 1, - sym_comment, - STATE(3232), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [123576] = 9, + [123053] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3199), 1, + STATE(3221), 1, sym_comment, - STATE(3234), 1, + STATE(3233), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5156), 29, + ACTIONS(5150), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319063,19 +323666,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123638] = 6, + [123115] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3200), 1, + STATE(3222), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5144), 37, + ACTIONS(5183), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319113,24 +323716,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123694] = 7, + [123171] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3201), 1, + STATE(3223), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5144), 33, + ACTIONS(5183), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319164,27 +323767,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123752] = 8, + [123229] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3202), 1, + STATE(3224), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5144), 31, + ACTIONS(5183), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319216,42 +323819,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123812] = 11, + [123289] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3203), 1, + STATE(3225), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 19, + ACTIONS(5183), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319271,45 +323874,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [123878] = 12, + [123355] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3204), 1, + STATE(3226), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 17, + ACTIONS(5183), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319327,47 +323930,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [123946] = 13, + [123423] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3205), 1, + STATE(3227), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 16, + ACTIONS(5183), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319384,49 +323987,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124016] = 14, + [123493] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3206), 1, + STATE(3228), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 15, + ACTIONS(5183), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319442,51 +324045,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124088] = 15, + [123565] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3207), 1, + STATE(3229), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 14, + ACTIONS(5183), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319501,53 +324104,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124162] = 16, + [123639] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3208), 1, + STATE(3230), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 13, + ACTIONS(5183), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319561,55 +324164,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124238] = 17, + [123715] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6202), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3209), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 12, + ACTIONS(5183), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319622,37 +324225,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [124316] = 10, + [123793] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3210), 1, + STATE(3232), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 23, + ACTIONS(5183), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319676,30 +324279,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [124380] = 9, + [123857] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3211), 1, + STATE(3233), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5144), 29, + ACTIONS(5183), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319729,19 +324332,349 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124442] = 6, + [123919] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(6158), 1, + aux_sym_expr_binary_token13, + ACTIONS(6174), 1, + aux_sym_expr_binary_token14, + STATE(3234), 1, + sym_comment, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6156), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6148), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 17, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3212), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123987] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6158), 1, + aux_sym_expr_binary_token13, + ACTIONS(6174), 1, + aux_sym_expr_binary_token14, + ACTIONS(6176), 1, + aux_sym_expr_binary_token15, + STATE(3235), 1, sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5192), 37, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6156), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6148), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 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, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [124057] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6158), 1, + aux_sym_expr_binary_token13, + ACTIONS(6174), 1, + aux_sym_expr_binary_token14, + ACTIONS(6176), 1, + aux_sym_expr_binary_token15, + ACTIONS(6178), 1, + aux_sym_expr_binary_token16, + STATE(3236), 1, + sym_comment, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6156), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6148), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 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, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [124129] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6158), 1, + aux_sym_expr_binary_token13, + ACTIONS(6174), 1, + aux_sym_expr_binary_token14, + ACTIONS(6176), 1, + aux_sym_expr_binary_token15, + ACTIONS(6178), 1, + aux_sym_expr_binary_token16, + ACTIONS(6180), 1, + aux_sym_expr_binary_token17, + STATE(3237), 1, + sym_comment, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6156), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6148), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token18, + [124203] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3238), 1, + sym_comment, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [124263] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3239), 1, + sym_comment, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [124321] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, + STATE(3240), 1, + sym_comment, + ACTIONS(1572), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319753,6 +324686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -319779,19 +324714,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124498] = 6, + [124375] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + STATE(3241), 1, + sym_comment, + ACTIONS(6182), 41, sym__newline, - STATE(3213), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [124425] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3242), 1, sym_comment, - STATE(3236), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5202), 37, + ACTIONS(1046), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1048), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124477] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3243), 1, + sym_comment, + ACTIONS(6184), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [124527] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + STATE(3244), 1, + sym_comment, + ACTIONS(1667), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1669), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319803,6 +324887,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_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124581] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + sym__newline, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(3245), 1, + sym_comment, + ACTIONS(2241), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -319829,24 +324954,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124554] = 7, + [124635] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(2245), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3214), 1, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, + STATE(3246), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(2247), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5192), 33, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124689] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6053), 1, + anon_sym_list, + ACTIONS(6186), 1, + anon_sym_GT, + ACTIONS(6188), 1, + anon_sym_AT, + STATE(3247), 1, + sym_comment, + STATE(6767), 1, + sym__all_type, + STATE(7474), 1, + sym_param_cmd, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(5544), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [124753] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + STATE(3248), 1, + sym_comment, + STATE(3527), 1, + sym__immediate_decimal, + ACTIONS(6084), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3393), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1492), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124819] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2253), 1, + sym__newline, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(3249), 1, + sym_comment, + ACTIONS(2255), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319858,6 +325133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -319880,24 +325161,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124612] = 7, - ACTIONS(247), 1, + [124873] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(2229), 1, sym__newline, - STATE(3215), 1, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(3250), 1, sym_comment, - STATE(3237), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(2233), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5202), 33, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124927] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + STATE(3251), 1, + sym_comment, + STATE(3280), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5216), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319909,6 +325234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -319931,27 +325260,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124670] = 8, + [124983] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5271), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3216), 1, + STATE(3252), 1, sym_comment, - ACTIONS(6180), 2, + STATE(3282), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5192), 31, + ACTIONS(5216), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319963,6 +325289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -319983,27 +325311,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124730] = 8, + [125041] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5271), 1, sym__newline, - STATE(3217), 1, + STATE(3253), 1, sym_comment, - STATE(3238), 1, + STATE(3284), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5202), 31, + ACTIONS(5216), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320035,42 +325363,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124790] = 11, + [125101] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5271), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3218), 1, + STATE(3254), 1, sym_comment, - ACTIONS(6180), 2, + STATE(3287), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 19, + ACTIONS(5216), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320090,42 +325418,184 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124856] = 11, + [125167] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + STATE(3255), 1, + sym_comment, + STATE(3524), 1, + sym__immediate_decimal, + ACTIONS(6084), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3401), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1548), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1550), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [125233] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5271), 1, sym__newline, - STATE(3219), 1, + STATE(3256), 1, sym_comment, - STATE(3239), 1, + STATE(3289), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5216), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125301] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3257), 1, + sym_comment, + STATE(3291), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 19, + ACTIONS(5216), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125371] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, + STATE(3258), 1, + sym_comment, + ACTIONS(1572), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320137,6 +325607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -320145,45 +325625,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124922] = 12, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125425] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, + STATE(3259), 1, + sym_comment, + ACTIONS(1572), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [125477] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5288), 1, + aux_sym_cmd_identifier_token41, + STATE(3260), 1, + sym_comment, + ACTIONS(2241), 40, + ts_builtin_sym_end, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3220), 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, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [125529] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3261), 1, sym_comment, - ACTIONS(6180), 2, + STATE(3293), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 17, + ACTIONS(5216), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320195,51 +325785,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124990] = 12, + [125601] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5271), 1, sym__newline, - STATE(3221), 1, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3262), 1, sym_comment, - STATE(3240), 1, + STATE(3295), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 17, + ACTIONS(5216), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320251,53 +325845,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125058] = 13, + [125675] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5271), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3222), 1, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6152), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3263), 1, sym_comment, - ACTIONS(6180), 2, + STATE(3297), 1, + aux_sym_shebang_repeat1, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 16, + ACTIONS(5216), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320309,52 +325906,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125128] = 13, + [125751] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(6168), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3223), 1, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6152), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6154), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3264), 1, sym_comment, - STATE(3241), 1, + STATE(3300), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 16, + ACTIONS(5216), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320366,54 +325968,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125198] = 14, + [125829] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5271), 1, sym__newline, - ACTIONS(6194), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(3176), 1, aux_sym_shebang_repeat1, - STATE(3224), 1, + STATE(3265), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 15, + ACTIONS(5216), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320425,53 +326011,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125270] = 14, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [125893] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + STATE(3266), 1, + sym_comment, + ACTIONS(6190), 41, sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3225), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [125943] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3267), 1, sym_comment, - STATE(3242), 1, + ACTIONS(6192), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [125993] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + STATE(3167), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3268), 1, + sym_comment, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 15, + ACTIONS(5216), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320483,55 +326152,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125342] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5190), 1, - sym__newline, - ACTIONS(6194), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3226), 1, - sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 14, + [126055] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3269), 1, + sym_comment, + ACTIONS(1050), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1052), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320543,54 +326200,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [125416] = 15, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126107] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + STATE(3270), 1, + sym_comment, + ACTIONS(6194), 41, sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3227), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [126157] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3271), 1, sym_comment, - STATE(3243), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 14, + ACTIONS(6196), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [126207] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6047), 1, + anon_sym_LBRACK, + ACTIONS(6053), 1, + anon_sym_list, + STATE(3272), 1, + sym_comment, + STATE(7578), 1, + sym__one_type, + STATE(7587), 1, + sym__multiple_types, + STATE(7717), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [126271] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3273), 1, + sym_comment, + ACTIONS(5056), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320602,56 +326384,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [125490] = 16, - ACTIONS(247), 1, + anon_sym_RBRACE, + ACTIONS(2311), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126323] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, + STATE(3274), 1, + sym_comment, + ACTIONS(2255), 40, + ts_builtin_sym_end, sym__newline, - ACTIONS(6194), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3228), 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, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126375] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, + STATE(3275), 1, sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 13, + ACTIONS(2233), 40, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320662,56 +326482,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [125566] = 16, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126427] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3229), 1, + STATE(3276), 1, sym_comment, - STATE(3244), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 13, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5052), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320723,57 +326531,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [125642] = 17, + anon_sym_RBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126479] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, - sym__newline, - ACTIONS(6194), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, - aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6053), 1, + anon_sym_list, + ACTIONS(6188), 1, + anon_sym_AT, ACTIONS(6198), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6202), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3230), 1, + anon_sym_GT, + STATE(3277), 1, sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 12, + STATE(6647), 1, + sym__all_type, + STATE(7664), 1, + sym_param_cmd, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(5544), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [126543] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + aux_sym_cmd_identifier_token41, + STATE(3278), 1, + sym_comment, + ACTIONS(2247), 40, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320784,100 +326632,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [125720] = 17, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126595] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6176), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3231), 1, + ACTIONS(6053), 1, + anon_sym_list, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(6200), 1, + anon_sym_GT, + STATE(3279), 1, sym_comment, - STATE(3245), 1, + STATE(6747), 1, + sym__all_type, + STATE(7436), 1, + sym_param_cmd, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(5544), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [126659] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5195), 1, + sym__newline, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3280), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(5197), 37, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [125798] = 10, + [126715] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2062), 1, + STATE(3186), 1, aux_sym_shebang_repeat1, - STATE(3232), 1, + STATE(3281), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6190), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 23, + ACTIONS(5201), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320889,6 +326788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -320901,37 +326808,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [125862] = 10, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126771] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5195), 1, sym__newline, - STATE(3233), 1, - sym_comment, - STATE(3246), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3282), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 23, + ACTIONS(5197), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320943,6 +326843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -320955,30 +326859,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [125926] = 9, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126829] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2062), 1, + STATE(3187), 1, aux_sym_shebang_repeat1, - STATE(3234), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5192), 29, + ACTIONS(5201), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320990,6 +326894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -321008,30 +326916,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125988] = 9, + [126887] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5195), 1, sym__newline, - STATE(3235), 1, - sym_comment, - STATE(3247), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6154), 2, + STATE(3284), 1, + sym_comment, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6156), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5202), 29, + ACTIONS(5197), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321043,6 +326948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -321061,19 +326968,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126050] = 6, + [126947] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3236), 1, + ACTIONS(6202), 1, + aux_sym__immediate_decimal_token2, + STATE(3285), 1, sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5180), 37, + ACTIONS(1721), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1723), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321085,12 +326999,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_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [127001] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + STATE(3188), 1, + aux_sym_shebang_repeat1, + STATE(3286), 1, + sym_comment, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5201), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -321111,24 +327069,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126106] = 7, + [127061] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5195), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3237), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6182), 4, + ACTIONS(6124), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6126), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5180), 33, + ACTIONS(6160), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6138), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5197), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321137,13 +327113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -321152,37 +327124,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [126164] = 8, + [127127] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2062), 1, + STATE(3189), 1, aux_sym_shebang_repeat1, - STATE(3238), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6182), 4, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5180), 31, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5201), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321194,8 +327171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -321204,52 +327179,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [126224] = 11, + [127193] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5195), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3239), 1, + STATE(3289), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6162), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 19, + ACTIONS(5197), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321261,53 +327229,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126290] = 12, + [127261] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2062), 1, + STATE(3190), 1, aux_sym_shebang_repeat1, - STATE(3240), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 17, + ACTIONS(5201), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321325,47 +327291,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126358] = 13, + [127329] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3241), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 16, + ACTIONS(5197), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321382,49 +327348,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126428] = 14, + [127399] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5296), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(3191), 1, aux_sym_shebang_repeat1, - STATE(3242), 1, + STATE(3292), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 15, + ACTIONS(5201), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321436,55 +327400,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126500] = 15, + [127469] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3243), 1, + STATE(3293), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 14, + ACTIONS(5197), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321496,56 +327459,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126574] = 16, + [127541] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5296), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + STATE(3192), 1, aux_sym_shebang_repeat1, - STATE(3244), 1, + STATE(3294), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 13, + ACTIONS(5201), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321557,57 +327517,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126650] = 17, + [127613] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6202), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3245), 1, + STATE(3295), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, + ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 12, + ACTIONS(5197), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321619,38 +327577,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126728] = 10, + [127687] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2062), 1, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3193), 1, aux_sym_shebang_repeat1, - STATE(3246), 1, + STATE(3296), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6190), 6, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 23, + ACTIONS(5201), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321662,104 +327636,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [126792] = 9, + [127761] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5195), 1, sym__newline, - STATE(2062), 1, + ACTIONS(6164), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6166), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6168), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6170), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3247), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6120), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, + ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, + ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6182), 4, + ACTIONS(6162), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6122), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5180), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126854] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - STATE(3248), 1, - sym_comment, - STATE(3486), 1, - sym__immediate_decimal, - ACTIONS(6094), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3369), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1493), 23, - sym__newline, + ACTIONS(5197), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321771,79 +327697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126920] = 10, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127837] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(6204), 1, - anon_sym_GT, - STATE(3249), 1, - sym_comment, - STATE(6802), 1, - sym__all_type, - STATE(7650), 1, - sym_param_cmd, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(5573), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [126984] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, - STATE(3250), 1, + ACTIONS(4726), 1, + aux_sym_unquoted_token2, + STATE(3298), 1, sym_comment, - ACTIONS(2261), 40, + ACTIONS(1572), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -321884,16 +327747,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [127036] = 4, - ACTIONS(3), 1, + [127889] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, - STATE(3251), 1, - sym_comment, - ACTIONS(2297), 40, - ts_builtin_sym_end, + ACTIONS(5296), 1, sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6152), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3194), 1, + aux_sym_shebang_repeat1, + STATE(3299), 1, + sym_comment, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5201), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321904,138 +327804,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [127088] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3252), 1, - sym_comment, - ACTIONS(6206), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [127138] = 3, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127965] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(3253), 1, - sym_comment, - ACTIONS(6208), 41, + ACTIONS(5195), 1, sym__newline, + ACTIONS(6164), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6166), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6168), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6170), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6172), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3300), 1, + sym_comment, + ACTIONS(6120), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6124), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6126), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6162), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6122), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6160), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6138), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5197), 12, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [127188] = 4, + aux_sym_expr_binary_parenthesized_token18, + [128043] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5323), 1, - aux_sym_cmd_identifier_token41, - STATE(3254), 1, - sym_comment, - ACTIONS(2247), 40, - ts_builtin_sym_end, + ACTIONS(5245), 1, sym__newline, + ACTIONS(6136), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6140), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6142), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6152), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6154), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3195), 1, + aux_sym_shebang_repeat1, + STATE(3301), 1, + sym_comment, + ACTIONS(6110), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6114), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6116), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6134), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6132), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6118), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5201), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322046,43 +327927,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, + aux_sym_expr_binary_parenthesized_token18, + [128121] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3302), 1, + sym_comment, + ACTIONS(6128), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6130), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [127240] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - aux_sym_cmd_identifier_token41, - STATE(3255), 1, - sym_comment, - ACTIONS(2253), 40, - ts_builtin_sym_end, + ACTIONS(5052), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -322094,14 +327957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -322122,64 +327979,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [127292] = 3, + [128177] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3256), 1, - sym_comment, - ACTIONS(6210), 41, + ACTIONS(3705), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, + ACTIONS(6053), 1, anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [127342] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3257), 1, + STATE(3303), 1, sym_comment, - ACTIONS(6212), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_shebang_repeat1, + STATE(6947), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -322209,91 +328029,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [127392] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6176), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3230), 1, - aux_sym_shebang_repeat1, - STATE(3258), 1, - sym_comment, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [127470] = 4, + [128238] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3304), 1, sym_comment, - ACTIONS(2133), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2135), 30, + ACTIONS(6204), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6208), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6210), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6206), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -322305,46 +328063,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_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127521] = 9, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [128295] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6218), 1, + ACTIONS(6053), 1, anon_sym_list, - STATE(3260), 1, - sym_comment, - STATE(3266), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4599), 1, + STATE(3305), 1, + sym_comment, + STATE(6838), 1, sym__type_annotation, - ACTIONS(6216), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(4786), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6214), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -322376,116 +328133,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [127582] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3261), 1, - sym_comment, - ACTIONS(1631), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1633), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127633] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3262), 1, - sym_comment, - ACTIONS(1705), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1707), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127684] = 6, + [128356] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOT, - ACTIONS(6222), 1, + ACTIONS(6212), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6214), 1, aux_sym__immediate_decimal_token2, - STATE(3263), 1, + STATE(3306), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1540), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 35, + ACTIONS(1542), 35, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -322519,12 +328182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [127739] = 4, + [128411] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(3307), 1, sym_comment, - ACTIONS(4976), 12, + ACTIONS(5056), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -322537,7 +328200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2357), 28, + ACTIONS(2311), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -322566,76 +328229,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [127790] = 6, + [128462] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6224), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6226), 1, - aux_sym__immediate_decimal_token2, - STATE(3265), 1, + ACTIONS(6053), 1, + anon_sym_list, + STATE(3308), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 35, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [127845] = 9, + STATE(3312), 1, + aux_sym__multiple_types_repeat2, + STATE(6877), 1, + sym__one_type, + STATE(7704), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [128523] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6218), 1, + ACTIONS(6053), 1, anon_sym_list, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(3266), 1, + STATE(3309), 1, sym_comment, - STATE(4659), 1, + STATE(3325), 1, + aux_sym_shebang_repeat1, + STATE(7011), 1, sym__type_annotation, - ACTIONS(6216), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(4786), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6214), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -322667,14 +328333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [127906] = 3, + [128584] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3267), 1, - sym_comment, - ACTIONS(2297), 40, - ts_builtin_sym_end, + ACTIONS(5059), 1, sym__newline, + STATE(3310), 1, + sym_comment, + ACTIONS(5056), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322685,101 +328351,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [127955] = 3, + anon_sym_RPAREN, + ACTIONS(2311), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128637] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3268), 1, + ACTIONS(6053), 1, + anon_sym_list, + STATE(3311), 1, sym_comment, - ACTIONS(2247), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [128004] = 9, + STATE(3312), 1, + aux_sym__multiple_types_repeat2, + STATE(6940), 1, + sym__one_type, + STATE(7704), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [128698] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(6063), 1, + ACTIONS(6222), 1, anon_sym_list, - STATE(3269), 1, - sym_comment, - STATE(3274), 1, - aux_sym_shebang_repeat1, - STATE(6940), 1, + STATE(7238), 1, + sym__one_type, + STATE(7704), 1, sym__type_annotation, - ACTIONS(6061), 2, + ACTIONS(6219), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(3312), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6216), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -322811,13 +328484,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128065] = 3, + [128757] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3270), 1, + STATE(3313), 1, sym_comment, - ACTIONS(2253), 40, - ts_builtin_sym_end, + ACTIONS(1667), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1669), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -322829,42 +328512,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [128114] = 5, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128808] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym__newline, - STATE(3271), 1, + STATE(3314), 1, sym_comment, - ACTIONS(4976), 11, + ACTIONS(1659), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1661), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322876,41 +328560,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - ACTIONS(2357), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [128167] = 4, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128859] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3315), 1, sym_comment, - ACTIONS(1755), 10, + ACTIONS(2029), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -322921,7 +328594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 30, + ACTIONS(2031), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -322936,7 +328609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -322952,12 +328625,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [128218] = 4, + [128910] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3273), 1, + ACTIONS(6225), 1, + anon_sym_DOT, + ACTIONS(6227), 1, + aux_sym__immediate_decimal_token2, + STATE(3316), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [128965] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3317), 1, sym_comment, - ACTIONS(1643), 10, + ACTIONS(1738), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -322968,7 +328690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1645), 30, + ACTIONS(1740), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -322983,7 +328705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -322999,27 +328721,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [128269] = 9, + [129016] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6063), 1, + ACTIONS(6233), 1, anon_sym_list, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(3274), 1, + STATE(3318), 1, sym_comment, - STATE(6740), 1, + STATE(4754), 1, sym__type_annotation, - ACTIONS(6061), 2, + ACTIONS(6231), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(4822), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6229), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -323051,27 +328773,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128330] = 9, + [129077] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6218), 1, + ACTIONS(6233), 1, anon_sym_list, - STATE(3275), 1, + STATE(3319), 1, sym_comment, - STATE(3276), 1, + STATE(3338), 1, aux_sym_shebang_repeat1, - STATE(4703), 1, + STATE(4755), 1, sym__type_annotation, - ACTIONS(6216), 2, + ACTIONS(6231), 2, anon_sym_table, anon_sym_record, - STATE(4786), 3, + STATE(4822), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6214), 31, + ACTIONS(6229), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -323103,67 +328825,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128391] = 9, + [129138] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(6218), 1, - anon_sym_list, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(3276), 1, + STATE(3320), 1, sym_comment, - STATE(4598), 1, - sym__type_annotation, - ACTIONS(6216), 2, - anon_sym_table, - anon_sym_record, - STATE(4786), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6214), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [128452] = 4, + ACTIONS(2033), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2035), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [129189] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(3277), 1, + STATE(3321), 1, sym_comment, - ACTIONS(6228), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(4972), 38, + ACTIONS(2233), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323176,6 +328890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -323202,20 +328918,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [128503] = 5, + [129238] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3322), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6230), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 34, + ACTIONS(5052), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323228,6 +328939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -323250,23 +328965,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [128556] = 6, + [129289] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3279), 1, + STATE(3323), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6230), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4972), 32, + ACTIONS(5052), 34, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323279,6 +328991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -323299,38 +329013,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [128611] = 9, + [129342] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3324), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6230), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6236), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6238), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 20, + ACTIONS(5052), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323343,142 +329042,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [128672] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3281), 1, - sym_comment, - ACTIONS(6228), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6232), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6230), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6236), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6238), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [128735] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6242), 1, - aux_sym_expr_binary_token13, - STATE(3282), 1, - sym_comment, - ACTIONS(6228), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6232), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6234), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6240), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6230), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 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, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [128800] = 9, + [129397] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(3283), 1, + STATE(3325), 1, sym_comment, - STATE(6894), 1, + STATE(6939), 1, sym__type_annotation, - ACTIONS(6061), 2, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(6559), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -323510,45 +329114,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128861] = 12, + [129458] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6242), 1, - aux_sym_expr_binary_token13, - ACTIONS(6244), 1, - aux_sym_expr_binary_token14, - STATE(3284), 1, + STATE(3326), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6240), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6230), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6236), 4, + ACTIONS(6235), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6238), 6, + ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 16, + ACTIONS(5052), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323561,51 +329158,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [128928] = 13, + [129519] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6242), 1, - aux_sym_expr_binary_token13, - ACTIONS(6244), 1, - aux_sym_expr_binary_token14, - ACTIONS(6246), 1, - aux_sym_expr_binary_token15, - STATE(3285), 1, + STATE(3327), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6240), 2, + ACTIONS(6239), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6230), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6236), 4, + ACTIONS(6235), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6238), 6, + ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 15, + ACTIONS(5052), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323618,104 +329213,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [128997] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - STATE(3286), 1, - sym_comment, - STATE(3289), 1, - aux_sym__multiple_types_repeat2, - STATE(7080), 1, - sym__one_type, - STATE(7508), 1, - sym__type_annotation, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [129058] = 14, + [129582] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6242), 1, + ACTIONS(6241), 1, aux_sym_expr_binary_token13, - ACTIONS(6244), 1, - aux_sym_expr_binary_token14, - ACTIONS(6246), 1, - aux_sym_expr_binary_token15, - ACTIONS(6248), 1, - aux_sym_expr_binary_token16, - STATE(3287), 1, + STATE(3328), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6240), 2, + ACTIONS(6239), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6230), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6236), 4, + ACTIONS(6235), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6238), 6, + ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 14, + ACTIONS(5052), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323728,53 +329268,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, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129129] = 15, + [129647] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6242), 1, + ACTIONS(6241), 1, aux_sym_expr_binary_token13, - ACTIONS(6244), 1, + ACTIONS(6243), 1, aux_sym_expr_binary_token14, - ACTIONS(6246), 1, - aux_sym_expr_binary_token15, - ACTIONS(6248), 1, - aux_sym_expr_binary_token16, - ACTIONS(6250), 1, - aux_sym_expr_binary_token17, - STATE(3288), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6240), 2, + ACTIONS(6239), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6230), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6236), 4, + ACTIONS(6235), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6238), 6, + ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 13, + ACTIONS(5052), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323787,85 +329324,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, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129202] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6258), 1, - anon_sym_list, - STATE(7303), 1, - sym__one_type, - STATE(7508), 1, - sym__type_annotation, - ACTIONS(6255), 2, - anon_sym_table, - anon_sym_record, - STATE(3289), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6252), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [129261] = 8, + [129714] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(3290), 1, + ACTIONS(6241), 1, + aux_sym_expr_binary_token13, + ACTIONS(6243), 1, + aux_sym_expr_binary_token14, + ACTIONS(6245), 1, + aux_sym_expr_binary_token15, + STATE(3330), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6230), 4, + ACTIONS(6239), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6238), 6, + ACTIONS(6235), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 24, + ACTIONS(5052), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323878,38 +329381,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, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [129320] = 7, + [129783] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(3291), 1, + ACTIONS(6241), 1, + aux_sym_expr_binary_token13, + ACTIONS(6243), 1, + aux_sym_expr_binary_token14, + ACTIONS(6245), 1, + aux_sym_expr_binary_token15, + ACTIONS(6247), 1, + aux_sym_expr_binary_token16, + STATE(3331), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6230), 4, + ACTIONS(6239), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4972), 30, + ACTIONS(6235), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6237), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323922,82 +329439,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, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [129377] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - STATE(3289), 1, - aux_sym__multiple_types_repeat2, - STATE(3292), 1, - sym_comment, - STATE(6941), 1, - sym__one_type, - STATE(7508), 1, - sym__type_annotation, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(6633), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [129438] = 4, + [129854] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3293), 1, + STATE(3332), 1, sym_comment, - ACTIONS(2019), 10, + ACTIONS(1721), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -324008,7 +329457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2021), 30, + ACTIONS(1723), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -324023,7 +329472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -324039,27 +329488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129489] = 9, + [129905] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6063), 1, + ACTIONS(6233), 1, anon_sym_list, - STATE(3283), 1, + STATE(3318), 1, aux_sym_shebang_repeat1, - STATE(3294), 1, + STATE(3333), 1, sym_comment, - STATE(6997), 1, + STATE(4752), 1, sym__type_annotation, - ACTIONS(6061), 2, + ACTIONS(6231), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(4822), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6229), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -324091,186 +329540,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129550] = 22, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - STATE(3295), 1, - sym_comment, - STATE(5839), 1, - sym_val_variable, - STATE(5842), 1, - sym_unquoted, - STATE(5847), 1, - sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, - sym__val_range, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2573), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129636] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6261), 1, - anon_sym_DOT, - ACTIONS(6263), 1, - aux_sym__immediate_decimal_token2, - STATE(3296), 1, - sym_comment, - ACTIONS(1497), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1499), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129690] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6265), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6267), 1, - aux_sym__immediate_decimal_token2, - STATE(3297), 1, - sym_comment, - ACTIONS(1517), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1519), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129744] = 6, + [129966] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6269), 1, - anon_sym_DOT, - STATE(3298), 1, + ACTIONS(6241), 1, + aux_sym_expr_binary_token13, + ACTIONS(6243), 1, + aux_sym_expr_binary_token14, + ACTIONS(6245), 1, + aux_sym_expr_binary_token15, + ACTIONS(6247), 1, + aux_sym_expr_binary_token16, + ACTIONS(6249), 1, + aux_sym_expr_binary_token17, + STATE(3334), 1, sym_comment, - ACTIONS(1643), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1645), 28, + ACTIONS(6204), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6208), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6210), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6239), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6206), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6235), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6237), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -324282,39 +329597,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_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129798] = 6, + aux_sym_expr_binary_token18, + [130039] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6271), 1, - anon_sym_DOT, - ACTIONS(6273), 1, - aux_sym__immediate_decimal_token2, - STATE(3299), 1, + STATE(3335), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 35, + ACTIONS(2241), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324343,35 +329644,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [129852] = 11, + [130088] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4610), 1, - anon_sym_DOT_DOT2, - ACTIONS(4618), 1, - aux_sym_unquoted_token2, - ACTIONS(6275), 1, - sym_filesize_unit, - ACTIONS(6277), 1, - sym_duration_unit, - STATE(3300), 1, + STATE(3336), 1, sym_comment, - STATE(7411), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 30, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + ACTIONS(2247), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324400,19 +329690,170 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [129916] = 6, + [130137] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3337), 1, + sym_comment, + ACTIONS(6204), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6208), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6210), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6206), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6237), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [130196] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(6233), 1, + anon_sym_list, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(3338), 1, + sym_comment, + STATE(4777), 1, + sym__type_annotation, + ACTIONS(6231), 2, + anon_sym_table, + anon_sym_record, + STATE(4822), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6229), 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, + [130257] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6251), 1, + anon_sym_DOT, + ACTIONS(6253), 1, + aux_sym__immediate_decimal_token2, + STATE(3339), 1, + sym_comment, + ACTIONS(1518), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [130311] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6279), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6281), 1, + ACTIONS(6255), 1, + anon_sym_DOT, + ACTIONS(6257), 1, aux_sym__immediate_decimal_token2, - STATE(3301), 1, + STATE(3340), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 35, + ACTIONS(1520), 35, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LPAREN2, @@ -324448,52 +329889,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [129970] = 22, + [130365] = 22, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, + ACTIONS(3229), 1, aux_sym_record_entry_token1, - ACTIONS(3263), 1, + ACTIONS(3279), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, + ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3704), 1, + ACTIONS(3864), 1, aux_sym_unquoted_token1, - ACTIONS(4091), 1, + ACTIONS(4397), 1, anon_sym_DOT_DOT, - ACTIONS(5689), 1, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - STATE(3302), 1, + STATE(3341), 1, sym_comment, - STATE(5839), 1, + STATE(5689), 1, sym_val_variable, - STATE(5842), 1, + STATE(5690), 1, sym_unquoted, - STATE(5847), 1, + STATE(5858), 1, sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, + STATE(7538), 1, sym_val_bool, - STATE(7774), 1, + STATE(7681), 1, sym__val_range, - ACTIONS(3243), 2, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, anon_sym_true, anon_sym_false, - ACTIONS(4093), 2, + ACTIONS(4399), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, + ACTIONS(5662), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(2573), 8, + ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324502,7 +329943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, + ACTIONS(2645), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -324512,26 +329953,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130056] = 8, + [130451] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6283), 1, - anon_sym_DOT, - STATE(3303), 1, + ACTIONS(6259), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6261), 1, + aux_sym__immediate_decimal_token2, + STATE(3342), 1, sym_comment, - STATE(3320), 1, - aux_sym_cell_path_repeat1, - STATE(3418), 1, - sym_path, - STATE(3440), 1, - sym_cell_path, - ACTIONS(1011), 2, - anon_sym_DASH, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, - ACTIONS(1013), 33, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + aux_sym_unquoted_token2, + ACTIONS(1542), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324562,69 +329999,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130114] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6285), 1, - anon_sym_DOT, - ACTIONS(6287), 1, - aux_sym__immediate_decimal_token2, - STATE(3304), 1, - sym_comment, - ACTIONS(1497), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130168] = 5, + [130505] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6289), 1, - aux_sym__immediate_decimal_token2, - STATE(3305), 1, + ACTIONS(6263), 1, + anon_sym_DOT, + STATE(3343), 1, sym_comment, - ACTIONS(1565), 3, + STATE(3371), 1, + aux_sym_cell_path_repeat1, + STATE(3434), 1, + sym_path, + STATE(3472), 1, + sym_cell_path, + ACTIONS(1005), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 35, + ACTIONS(1007), 33, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324655,70 +330051,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130220] = 6, + [130563] = 22, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6291), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6293), 1, - aux_sym__immediate_decimal_token2, - STATE(3306), 1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3864), 1, + aux_sym_unquoted_token1, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + STATE(3344), 1, sym_comment, - ACTIONS(1517), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130274] = 5, + STATE(5689), 1, + sym_val_variable, + STATE(5690), 1, + sym_unquoted, + STATE(5858), 1, + sym__val_number_decimal, + STATE(7538), 1, + sym_val_bool, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4399), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2643), 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(2645), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130649] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6222), 1, + ACTIONS(6227), 1, aux_sym__immediate_decimal_token2, - STATE(3307), 1, + STATE(3345), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1518), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 35, + ACTIONS(1520), 35, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -324752,26 +330162,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130326] = 8, + [130701] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6283), 1, - anon_sym_DOT, - STATE(1313), 1, - sym_cell_path, - STATE(3308), 1, - sym_comment, - STATE(3320), 1, - aux_sym_cell_path_repeat1, - STATE(3418), 1, - sym_path, - ACTIONS(1686), 2, + ACTIONS(1560), 1, anon_sym_DASH, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, anon_sym_DOT_DOT2, - ACTIONS(1688), 33, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + ACTIONS(6265), 1, + sym_filesize_unit, + ACTIONS(6267), 1, + sym_duration_unit, + STATE(3346), 1, + sym_comment, + STATE(7282), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 30, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324800,28 +330215,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130384] = 8, + [130765] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6283), 1, - anon_sym_DOT, - STATE(1308), 1, - sym_cell_path, - STATE(3309), 1, + ACTIONS(6269), 1, + aux_sym__immediate_decimal_token2, + STATE(3347), 1, sym_comment, - STATE(3320), 1, - aux_sym_cell_path_repeat1, - STATE(3418), 1, - sym_path, - ACTIONS(1625), 2, + ACTIONS(1554), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1629), 33, + aux_sym_unquoted_token2, + ACTIONS(1556), 35, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324852,160 +330260,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130442] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_DOT_DOT2, - STATE(3310), 1, - sym_comment, - ACTIONS(6297), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2061), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2067), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [130495] = 12, + sym_filesize_unit, + sym_duration_unit, + [130817] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DOLLAR, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6303), 1, - anon_sym_DOT, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - STATE(3311), 1, - sym_comment, - STATE(3539), 1, - sym__immediate_decimal, - ACTIONS(6305), 2, + ACTIONS(6271), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3538), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1493), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [130560] = 5, - ACTIONS(247), 1, - anon_sym_POUND, ACTIONS(6273), 1, aux_sym__immediate_decimal_token2, - STATE(3312), 1, + STATE(3348), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1540), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1499), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + ACTIONS(1542), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - [130611] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130871] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6263), 1, + ACTIONS(6275), 1, + anon_sym_DOT, + ACTIONS(6277), 1, aux_sym__immediate_decimal_token2, - STATE(3313), 1, + STATE(3349), 1, sym_comment, - ACTIONS(1497), 11, + ACTIONS(1518), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -325017,7 +330331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1499), 26, + ACTIONS(1520), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325026,7 +330340,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, @@ -325044,30 +330358,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130662] = 11, + [130925] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(6279), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6281), 1, + aux_sym__immediate_decimal_token2, + STATE(3350), 1, + sym_comment, + ACTIONS(1540), 3, sym__newline, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4610), 1, anon_sym_DOT_DOT2, - ACTIONS(4680), 1, aux_sym_unquoted_token2, - ACTIONS(6311), 1, - sym_filesize_unit, - ACTIONS(6313), 1, - sym_duration_unit, - STATE(3314), 1, - sym_comment, - STATE(7332), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 29, - aux_sym_ctrl_match_token1, + ACTIONS(1542), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -325096,65 +330402,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [130725] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3315), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 35, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130774] = 5, + [130979] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6315), 1, - aux_sym__immediate_decimal_token2, - STATE(3316), 1, + ACTIONS(6263), 1, + anon_sym_DOT, + STATE(1375), 1, + sym_cell_path, + STATE(3351), 1, sym_comment, - ACTIONS(1565), 2, + STATE(3371), 1, + aux_sym_cell_path_repeat1, + STATE(3434), 1, + sym_path, + ACTIONS(1675), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 35, - anon_sym_PIPE, + ACTIONS(1677), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -325185,115 +330456,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130825] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - STATE(3317), 1, - sym_comment, - STATE(5462), 1, - sym__all_type, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(5573), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [130880] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_list, - STATE(3318), 1, - sym_comment, - STATE(5464), 1, - sym__all_type, - ACTIONS(6061), 2, - anon_sym_table, - anon_sym_record, - STATE(5573), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6059), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [130935] = 6, + [131037] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6317), 1, - anon_sym_DOT_DOT2, - STATE(3319), 1, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6283), 1, + anon_sym_DOT, + STATE(3352), 1, sym_comment, - ACTIONS(6319), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 9, + ACTIONS(1667), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -325303,7 +330475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2041), 26, + ACTIONS(1669), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -325317,8 +330489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -325330,23 +330504,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130988] = 7, + [131091] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6283), 1, + ACTIONS(6263), 1, anon_sym_DOT, - STATE(3320), 1, + STATE(1371), 1, + sym_cell_path, + STATE(3353), 1, sym_comment, - STATE(3321), 1, + STATE(3371), 1, aux_sym_cell_path_repeat1, - STATE(3418), 1, + STATE(3434), 1, sym_path, - ACTIONS(1017), 2, + ACTIONS(1641), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1019), 33, + ACTIONS(1645), 33, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -325378,23 +330554,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131043] = 6, + [131149] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6321), 1, + ACTIONS(6285), 1, anon_sym_DOT, - STATE(3418), 1, - sym_path, - ACTIONS(1021), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(3321), 2, + ACTIONS(6287), 1, + aux_sym__immediate_decimal_token2, + STATE(3354), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 33, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -325425,20 +330599,229 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131096] = 6, + sym_filesize_unit, + sym_duration_unit, + [131202] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6326), 1, + ACTIONS(6253), 1, aux_sym__immediate_decimal_token2, - STATE(3322), 1, + STATE(3355), 1, + sym_comment, + ACTIONS(1518), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [131253] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6053), 1, + anon_sym_list, + STATE(3356), 1, + sym_comment, + STATE(7533), 1, + sym__type_annotation, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(6559), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 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, + [131308] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6289), 1, + anon_sym_DOLLAR, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6293), 1, + anon_sym_DOT, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + STATE(3357), 1, + sym_comment, + STATE(3572), 1, + sym__immediate_decimal, + ACTIONS(6295), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3571), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 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(1492), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131373] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5740), 1, + anon_sym_DOT_DOT, + ACTIONS(5748), 1, + aux_sym_unquoted_token1, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + STATE(3358), 1, + sym_comment, + STATE(5656), 1, + sym__val_number_decimal, + STATE(5943), 1, + sym_val_variable, + STATE(6049), 1, + sym_unquoted, + STATE(7497), 1, + sym__val_range, + STATE(7538), 1, + sym_val_bool, + STATE(7605), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5742), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5734), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2643), 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(2645), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131456] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3359), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1653), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 34, - aux_sym_ctrl_match_token1, + ACTIONS(1655), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -325472,14 +330855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131149] = 5, + [131505] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6328), 1, + ACTIONS(6303), 1, aux_sym__immediate_decimal_token2, - STATE(3323), 1, + STATE(3360), 1, sym_comment, - ACTIONS(1565), 11, + ACTIONS(1554), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -325491,7 +330874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1567), 26, + ACTIONS(1556), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325500,7 +330883,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, @@ -325518,20 +330901,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131200] = 5, + [131556] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6287), 1, - aux_sym__immediate_decimal_token2, - STATE(3324), 1, - sym_comment, - ACTIONS(1497), 3, + ACTIONS(1560), 1, sym__newline, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, anon_sym_DOT_DOT2, + ACTIONS(4742), 1, aux_sym_unquoted_token2, - ACTIONS(1499), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(6305), 1, + sym_filesize_unit, + ACTIONS(6307), 1, + sym_duration_unit, + STATE(3361), 1, + sym_comment, + STATE(7224), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -325560,68 +330953,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131251] = 4, + [131619] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3325), 1, - sym_comment, - ACTIONS(1639), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 35, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(6289), 1, + anon_sym_DOLLAR, + ACTIONS(6291), 1, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131300] = 5, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + STATE(3362), 1, + sym_comment, + STATE(3570), 1, + sym__immediate_decimal, + ACTIONS(6295), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3569), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1496), 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(1506), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131684] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6330), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token2, - STATE(3326), 1, + STATE(3363), 1, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1554), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 34, - aux_sym_ctrl_match_token1, + ACTIONS(1556), 34, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -325655,21 +331052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131351] = 6, + [131735] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6334), 1, - aux_sym__immediate_decimal_token2, - STATE(3327), 1, - sym_comment, - ACTIONS(1517), 2, + ACTIONS(6311), 1, + anon_sym_DOT, + STATE(3434), 1, + sym_path, + ACTIONS(1015), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + STATE(3364), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -325698,198 +331097,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131404] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3704), 1, - aux_sym_unquoted_token1, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - STATE(3328), 1, - sym_comment, - STATE(5839), 1, - sym_val_variable, - STATE(5842), 1, - sym_unquoted, - STATE(5847), 1, - sym__val_number_decimal, - STATE(7502), 1, - sym__unquoted_anonymous_prefix, - STATE(7703), 1, - sym_val_bool, - STATE(7774), 1, - sym__val_range, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5683), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2573), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131487] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3265), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3267), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3269), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5689), 1, - sym_val_date, - ACTIONS(5756), 1, - anon_sym_DOT_DOT, - ACTIONS(5760), 1, - aux_sym_unquoted_token1, - ACTIONS(6336), 1, - anon_sym_DOLLAR, - STATE(3329), 1, - sym_comment, - STATE(5857), 1, - sym__val_number_decimal, - STATE(5941), 1, - sym_val_variable, - STATE(5958), 1, - sym_unquoted, - STATE(7653), 1, - sym__val_range, - STATE(7703), 1, - sym_val_bool, - STATE(7724), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5758), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5752), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2573), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2575), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131570] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131788] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3967), 1, - anon_sym_DOT, - ACTIONS(6299), 1, - anon_sym_DOLLAR, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - STATE(3330), 1, + STATE(3365), 1, sym_comment, - STATE(3537), 1, - sym__immediate_decimal, - ACTIONS(6305), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3536), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1515), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131635] = 6, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [131837] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6338), 1, + ACTIONS(6314), 1, anon_sym_DOT_DOT2, - STATE(3331), 1, + STATE(3366), 1, sym_comment, - ACTIONS(6340), 2, + ACTIONS(6316), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 9, + ACTIONS(2007), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -325899,7 +331164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 26, + ACTIONS(2013), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -325913,7 +331178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, @@ -325926,17 +331191,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, - [131688] = 6, + [131890] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6342), 1, + ACTIONS(6318), 1, anon_sym_DOT_DOT2, - STATE(3332), 1, + STATE(3367), 1, sym_comment, - ACTIONS(6344), 2, + ACTIONS(6320), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2051), 9, + ACTIONS(2019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -325946,7 +331211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2057), 26, + ACTIONS(2025), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -325960,7 +331225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, @@ -325973,18 +331238,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131741] = 4, + [131943] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3333), 1, + ACTIONS(6322), 1, + aux_sym__immediate_decimal_token2, + STATE(3368), 1, + sym_comment, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [131994] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3369), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(1554), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 35, + ACTIONS(1556), 35, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -326018,18 +331329,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131790] = 4, + [132043] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3334), 1, + ACTIONS(6324), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6326), 1, + aux_sym__immediate_decimal_token2, + STATE(3370), 1, + sym_comment, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [132096] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6263), 1, + anon_sym_DOT, + STATE(3364), 1, + aux_sym_cell_path_repeat1, + STATE(3371), 1, + sym_comment, + STATE(3434), 1, + sym_path, + ACTIONS(1011), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1013), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [132151] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3279), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3285), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3864), 1, + aux_sym_unquoted_token1, + ACTIONS(4397), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + STATE(3372), 1, + sym_comment, + STATE(5689), 1, + sym_val_variable, + STATE(5690), 1, + sym_unquoted, + STATE(5858), 1, + sym__val_number_decimal, + STATE(7538), 1, + sym_val_bool, + STATE(7681), 1, + sym__val_range, + STATE(7695), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3259), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4399), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5662), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2643), 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(2645), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132234] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3373), 1, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1540), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 35, + ACTIONS(1542), 35, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -326063,23 +331531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131839] = 7, + [132283] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6350), 1, + ACTIONS(6332), 1, anon_sym_list, - STATE(3335), 1, + STATE(3374), 1, sym_comment, - STATE(7381), 1, + STATE(7279), 1, sym__type_annotation, - ACTIONS(6348), 2, + ACTIONS(6330), 2, anon_sym_table, anon_sym_record, - STATE(7349), 3, + STATE(7256), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6346), 31, + ACTIONS(6328), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326111,23 +331579,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131894] = 7, + [132338] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6063), 1, + ACTIONS(6053), 1, anon_sym_list, - STATE(3336), 1, + STATE(3375), 1, sym_comment, - STATE(7718), 1, - sym__type_annotation, - ACTIONS(6061), 2, + STATE(5477), 1, + sym__all_type, + ACTIONS(6051), 2, anon_sym_table, anon_sym_record, - STATE(6633), 3, + STATE(5544), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6059), 31, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326159,28 +331627,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131949] = 10, + [132393] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4610), 1, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token2, + STATE(3376), 1, + sym_comment, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, - ACTIONS(4618), 1, aux_sym_unquoted_token2, - ACTIONS(6352), 1, - sym_filesize_unit, - ACTIONS(6354), 1, - sym_duration_unit, - STATE(3337), 1, - sym_comment, - STATE(7411), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 29, + ACTIONS(1520), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -326209,62 +331669,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [132009] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [132444] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3338), 1, - sym_comment, - ACTIONS(1565), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(6334), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1567), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + STATE(3377), 1, + sym_comment, + ACTIONS(6336), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132057] = 6, - ACTIONS(3), 1, + ACTIONS(1991), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1997), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132497] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6356), 1, - anon_sym_RBRACK, - ACTIONS(6360), 1, - sym__entry_separator, - STATE(3339), 1, + ACTIONS(6053), 1, + anon_sym_list, + STATE(3378), 1, sym_comment, - STATE(3353), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6358), 34, + STATE(5475), 1, + sym__all_type, + ACTIONS(6051), 2, + anon_sym_table, + anon_sym_record, + STATE(5544), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6049), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326294,61 +331766,63 @@ 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, - [132109] = 4, + [132552] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3340), 1, - sym_comment, - ACTIONS(1517), 3, - sym__newline, + ACTIONS(6338), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + STATE(3379), 1, + sym_comment, + ACTIONS(6340), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132157] = 4, + ACTIONS(1999), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2005), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132605] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3341), 1, + ACTIONS(6277), 1, + aux_sym__immediate_decimal_token2, + STATE(3380), 1, sym_comment, - ACTIONS(1497), 11, + ACTIONS(1518), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -326360,7 +331834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1499), 26, + ACTIONS(1520), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326369,7 +331843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, @@ -326387,100 +331861,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132205] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3342), 1, - sym_comment, - ACTIONS(1565), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132253] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3343), 1, - sym_comment, - ACTIONS(1639), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132301] = 4, + [132656] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3344), 1, + STATE(3381), 1, sym_comment, - ACTIONS(2061), 9, + ACTIONS(2489), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -326490,7 +331876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2067), 28, + ACTIONS(2491), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326505,7 +331891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -326519,12 +331905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132349] = 4, + [132704] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3345), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1517), 11, + ACTIONS(1540), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -326536,7 +331922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1519), 26, + ACTIONS(1542), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326545,7 +331931,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, @@ -326563,108 +331949,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132397] = 4, + [132752] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3346), 1, - sym_comment, - ACTIONS(1040), 3, - anon_sym_DASH, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1042), 34, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [132445] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3347), 1, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + ACTIONS(6342), 1, + sym_filesize_unit, + ACTIONS(6344), 1, + sym_duration_unit, + STATE(3383), 1, sym_comment, - ACTIONS(1044), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1046), 34, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + STATE(7282), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132493] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3348), 1, - sym_comment, - ACTIONS(1048), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1050), 34, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, + ACTIONS(1572), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -326693,19 +331999,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [132541] = 4, + [132812] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3349), 1, + ACTIONS(6287), 1, + aux_sym__immediate_decimal_token2, + STATE(3384), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1520), 34, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -326739,21 +332044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132589] = 5, + [132862] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, - anon_sym_QMARK2, - STATE(3350), 1, + STATE(3385), 1, sym_comment, - ACTIONS(1034), 3, - anon_sym_DASH, + ACTIONS(1554), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1036), 33, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + aux_sym_unquoted_token2, + ACTIONS(1556), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -326784,57 +332086,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132639] = 5, + sym_filesize_unit, + sym_duration_unit, + [132910] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6364), 1, - anon_sym_QMARK2, - STATE(3351), 1, + STATE(3386), 1, sym_comment, - ACTIONS(1028), 3, - anon_sym_DASH, + ACTIONS(1554), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1030), 33, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_unquoted_token2, + ACTIONS(1556), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132689] = 4, + sym_filesize_unit, + sym_duration_unit, + [132958] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3387), 1, sym_comment, - ACTIONS(1639), 11, + ACTIONS(1518), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -326846,7 +332149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1641), 26, + ACTIONS(1520), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326855,7 +332158,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, @@ -326873,145 +332176,72 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132737] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6366), 1, - sym__entry_separator, - STATE(3353), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2359), 35, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [132785] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3354), 1, - sym_comment, - ACTIONS(2477), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2479), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132833] = 4, + [133006] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3355), 1, + STATE(3388), 1, sym_comment, - ACTIONS(2481), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2483), 28, + ACTIONS(1653), 3, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132881] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133054] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3356), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + STATE(3389), 1, sym_comment, - ACTIONS(2485), 9, - anon_sym_DASH, + STATE(3835), 1, + sym__immediate_decimal, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1889), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327020,7 +332250,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(2487), 28, + ACTIONS(1492), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327032,15 +332263,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_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327049,18 +332271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132929] = 6, + [133116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(6348), 1, sym__entry_separator, - ACTIONS(6369), 1, - anon_sym_RBRACK, - STATE(3353), 1, - aux_sym__multiple_types_repeat1, - STATE(3357), 1, + STATE(3390), 2, sym_comment, - ACTIONS(6358), 34, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 35, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327095,12 +332315,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [132981] = 4, + [133164] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3358), 1, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(6351), 1, + sym_filesize_unit, + ACTIONS(6353), 1, + sym_duration_unit, + ACTIONS(6355), 1, + aux_sym_unquoted_token2, + STATE(3391), 1, sym_comment, - ACTIONS(2493), 9, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1572), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133222] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3392), 1, + sym_comment, + ACTIONS(1653), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133270] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3393), 1, + sym_comment, + ACTIONS(2007), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -327110,7 +332423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2495), 28, + ACTIONS(2013), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327125,7 +332438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -327139,12 +332452,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133029] = 4, + [133318] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3359), 1, + STATE(3394), 1, sym_comment, - ACTIONS(2497), 9, + ACTIONS(1554), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1556), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133366] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3395), 1, + sym_comment, + ACTIONS(2485), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -327154,7 +332511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2499), 28, + ACTIONS(2487), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327169,7 +332526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -327183,12 +332540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133077] = 4, + [133414] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3360), 1, + STATE(3396), 1, sym_comment, - ACTIONS(2501), 9, + ACTIONS(2473), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -327198,7 +332555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2503), 28, + ACTIONS(2475), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327213,7 +332570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -327227,28 +332584,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133125] = 11, + [133462] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, + ACTIONS(6301), 1, anon_sym_DOLLAR, - STATE(1918), 1, + STATE(1935), 1, sym__immediate_decimal, - STATE(3361), 1, + STATE(3397), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(6346), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1913), 2, + STATE(1934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1617), 8, + ACTIONS(1602), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327257,7 +332614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1619), 20, + ACTIONS(1604), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -327278,28 +332635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133187] = 11, + [133524] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, - anon_sym_DOLLAR, - STATE(1924), 1, - sym__immediate_decimal, - STATE(3362), 1, + STATE(3398), 1, sym_comment, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1919), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1621), 8, + ACTIONS(2019), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327308,8 +332650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1623), 20, - ts_builtin_sym_end, + ACTIONS(2025), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327321,6 +332662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327329,28 +332679,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133249] = 11, + [133572] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6357), 1, + anon_sym_RBRACK, + ACTIONS(6361), 1, + sym__entry_separator, + STATE(3390), 1, + aux_sym__multiple_types_repeat1, + STATE(3399), 1, + sym_comment, + ACTIONS(6359), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [133624] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + STATE(3400), 1, + sym_comment, + ACTIONS(1540), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 34, + anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, - anon_sym_DOLLAR, - STATE(1785), 1, - sym__immediate_decimal, - STATE(3363), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133672] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3401), 1, sym_comment, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1561), 8, + ACTIONS(2513), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327359,8 +332784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1563), 20, - ts_builtin_sym_end, + ACTIONS(2515), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327372,6 +332796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327380,28 +332813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133311] = 11, + [133720] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, - anon_sym_DOLLAR, - STATE(3364), 1, + STATE(3402), 1, sym_comment, - STATE(3787), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1757), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1549), 8, + ACTIONS(1991), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327410,8 +332828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1551), 20, - ts_builtin_sym_end, + ACTIONS(1997), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327423,6 +332840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327431,18 +332857,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133373] = 4, + [133768] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3365), 1, - sym_comment, - ACTIONS(1517), 2, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4606), 1, anon_sym_DOT_DOT2, + ACTIONS(4614), 1, aux_sym_unquoted_token2, - ACTIONS(1519), 35, - anon_sym_PIPE, + ACTIONS(6363), 1, + sym_filesize_unit, + ACTIONS(6365), 1, + sym_duration_unit, + STATE(3403), 1, + sym_comment, + STATE(7282), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 29, anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -327471,17 +332907,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + [133828] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3404), 1, + sym_comment, + ACTIONS(1518), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133421] = 4, + [133876] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3366), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + STATE(1937), 1, + sym__immediate_decimal, + STATE(3405), 1, sym_comment, - ACTIONS(2035), 9, - anon_sym_DASH, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1936), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327490,7 +332981,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(2041), 28, + ACTIONS(1588), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327502,15 +332994,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_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327519,62 +333002,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133469] = 4, + [133938] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3367), 1, + ACTIONS(6367), 1, + anon_sym_QMARK2, + STATE(3406), 1, sym_comment, - ACTIONS(2043), 9, + ACTIONS(1022), 3, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2049), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133517] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3368), 1, - sym_comment, - ACTIONS(1497), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 35, - anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1024), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -327605,113 +333047,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [133565] = 4, + [133988] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3369), 1, + ACTIONS(6369), 1, + anon_sym_QMARK2, + STATE(3407), 1, sym_comment, - ACTIONS(2051), 9, + ACTIONS(1028), 3, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2057), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1030), 33, anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133613] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(6373), 1, - sym_filesize_unit, - ACTIONS(6375), 1, - sym_duration_unit, - ACTIONS(6377), 1, - aux_sym_unquoted_token2, - STATE(3370), 1, - sym_comment, - ACTIONS(4435), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1587), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133671] = 5, + [134038] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6379), 1, - aux_sym__immediate_decimal_token2, - STATE(3371), 1, + STATE(3408), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 34, - aux_sym_ctrl_match_token1, + ACTIONS(1520), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -327745,18 +333136,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133721] = 6, + [134086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(6361), 1, sym__entry_separator, - ACTIONS(6381), 1, + ACTIONS(6371), 1, anon_sym_RBRACK, - STATE(3353), 1, + STATE(3390), 1, aux_sym__multiple_types_repeat1, - STATE(3372), 1, + STATE(3409), 1, + sym_comment, + ACTIONS(6359), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [134138] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6361), 1, + sym__entry_separator, + ACTIONS(6373), 1, + anon_sym_RBRACK, + STATE(3390), 1, + aux_sym__multiple_types_repeat1, + STATE(3410), 1, sym_comment, - ACTIONS(6358), 34, + ACTIONS(6359), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327791,28 +333228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [133773] = 11, + [134190] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, + ACTIONS(6301), 1, anon_sym_DOLLAR, - STATE(1827), 1, + STATE(1940), 1, sym__immediate_decimal, - STATE(3373), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(6346), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1826), 2, + STATE(1938), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 8, + ACTIONS(1576), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327821,7 +333258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1515), 20, + ACTIONS(1584), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -327842,18 +333279,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, - [133835] = 6, + [134252] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(6361), 1, sym__entry_separator, - ACTIONS(6383), 1, + ACTIONS(6375), 1, anon_sym_RBRACK, - STATE(3353), 1, + STATE(3390), 1, aux_sym__multiple_types_repeat1, - STATE(3374), 1, + STATE(3412), 1, sym_comment, - ACTIONS(6358), 34, + ACTIONS(6359), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327888,69 +333325,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [133887] = 10, + [134304] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(4610), 1, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + STATE(1902), 1, + sym__immediate_decimal, + STATE(3413), 1, + sym_comment, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1827), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1496), 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(1506), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134366] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3414), 1, + sym_comment, + ACTIONS(1653), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(4618), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(6385), 1, + ACTIONS(1655), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_filesize_unit, - ACTIONS(6387), 1, sym_duration_unit, - STATE(3375), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134414] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3415), 1, sym_comment, - STATE(7411), 1, + ACTIONS(2477), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2479), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134462] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + STATE(3416), 1, + sym_comment, + STATE(3818), 1, + sym__immediate_decimal, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1941), 2, sym__expr_parenthesized_immediate, - ACTIONS(4612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [133947] = 5, + sym_val_variable, + ACTIONS(1548), 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(1550), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134524] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6326), 1, - aux_sym__immediate_decimal_token2, - STATE(3376), 1, + STATE(3417), 1, + sym_comment, + ACTIONS(2481), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2483), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134572] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3418), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1042), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(1044), 34, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -327981,30 +333603,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [133997] = 11, + [134620] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, - anon_sym_DOLLAR, - STATE(3377), 1, + STATE(3419), 1, sym_comment, - STATE(3773), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1828), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 8, + ACTIONS(2493), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328013,8 +333618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1493), 20, - ts_builtin_sym_end, + ACTIONS(2495), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328026,6 +333630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328034,18 +333647,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134059] = 4, + [134668] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3378), 1, + STATE(3420), 1, sym_comment, - ACTIONS(1639), 2, + ACTIONS(1034), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 35, - anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1036), 34, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN2, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328076,14 +333691,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [134107] = 4, + [134716] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3379), 1, + STATE(3421), 1, sym_comment, - ACTIONS(2449), 9, + ACTIONS(2497), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -328093,7 +333706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2451), 28, + ACTIONS(2499), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328108,7 +333721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -328122,12 +333735,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134155] = 4, + [134764] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3380), 1, + ACTIONS(6377), 1, + aux_sym__immediate_decimal_token2, + STATE(3422), 1, + sym_comment, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [134814] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3423), 1, sym_comment, - ACTIONS(2465), 9, + ACTIONS(2501), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -328137,7 +333795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2467), 28, + ACTIONS(2503), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328152,7 +333810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -328166,12 +333824,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134203] = 4, + [134862] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3381), 1, + STATE(3424), 1, + sym_comment, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [134910] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3425), 1, sym_comment, - ACTIONS(2469), 9, + ACTIONS(2505), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -328181,7 +333883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2471), 28, + ACTIONS(2507), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328196,7 +333898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -328210,56 +333912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134251] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3382), 1, - sym_comment, - ACTIONS(1497), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [134299] = 4, + [134958] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3383), 1, + STATE(3426), 1, sym_comment, - ACTIONS(2473), 9, + ACTIONS(2509), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -328269,7 +333927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2475), 28, + ACTIONS(2511), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328284,7 +333942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -328298,12 +333956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134347] = 4, + [135006] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3384), 1, + STATE(3427), 1, sym_comment, - ACTIONS(2489), 9, + ACTIONS(1999), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -328313,7 +333971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2491), 28, + ACTIONS(2005), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328328,7 +333986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and, @@ -328342,66 +334000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134395] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1890), 1, - anon_sym_DASH, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1701), 1, - sym_cell_path, - STATE(3385), 1, - sym_comment, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1892), 31, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [134450] = 4, + [135054] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3386), 1, + STATE(3428), 1, sym_comment, - ACTIONS(1060), 3, + ACTIONS(1038), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1062), 33, + ACTIONS(1040), 34, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328432,18 +334044,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134497] = 4, + [135102] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3387), 1, - sym_comment, - ACTIONS(1052), 3, + ACTIONS(1852), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(6379), 1, anon_sym_DOT, - ACTIONS(1054), 33, + STATE(1570), 1, + sym_path, + STATE(1690), 1, + sym_cell_path, + STATE(3429), 1, + sym_comment, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1854), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328473,27 +334091,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134544] = 8, + [135157] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1696), 1, - sym_cell_path, - STATE(3388), 1, + STATE(3430), 1, sym_comment, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1865), 31, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + ACTIONS(1653), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328522,16 +334130,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [134599] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135204] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3389), 1, + STATE(3431), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 34, - aux_sym_ctrl_match_token1, + ACTIONS(1542), 34, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328565,24 +334177,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [134646] = 8, + [135251] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1836), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1705), 1, + STATE(1680), 1, sym_cell_path, - STATE(3390), 1, + STATE(3432), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1951), 31, + ACTIONS(1838), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328612,25 +334224,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [134701] = 8, + [135306] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1829), 1, - anon_sym_DASH, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1688), 1, - sym_cell_path, - STATE(3391), 1, + STATE(3433), 1, sym_comment, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1833), 31, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328659,24 +334263,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [134756] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135353] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1867), 1, + STATE(3434), 1, + sym_comment, + ACTIONS(1046), 3, anon_sym_DASH, - ACTIONS(6389), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1697), 1, - sym_cell_path, - STATE(3392), 1, - sym_comment, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1869), 31, + ACTIONS(1048), 33, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328706,67 +334308,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [134811] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2513), 1, - sym__entry_separator, - STATE(3393), 1, - sym_comment, - ACTIONS(2511), 35, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [134858] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [135400] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1686), 1, + ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1313), 1, - sym_cell_path, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(3394), 1, + STATE(1703), 1, + sym_cell_path, + STATE(3435), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1688), 31, + ACTIONS(1878), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328796,24 +334357,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [134913] = 8, + [135455] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1625), 1, + ACTIONS(1872), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1308), 1, - sym_cell_path, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(3395), 1, + STATE(1701), 1, + sym_cell_path, + STATE(3436), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1629), 31, + ACTIONS(1874), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328843,17 +334404,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [134968] = 4, + [135510] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3396), 1, + ACTIONS(1840), 1, + anon_sym_DASH, + ACTIONS(6379), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1684), 1, + sym_cell_path, + STATE(3437), 1, sym_comment, - ACTIONS(1517), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1842), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328882,29 +334451,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135015] = 8, + [135565] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1689), 1, - sym_cell_path, - STATE(3397), 1, + STATE(3438), 1, sym_comment, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1837), 31, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328933,24 +334490,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135070] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135612] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1880), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1692), 1, + STATE(1704), 1, sym_cell_path, - STATE(3398), 1, + STATE(3439), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1849), 31, + ACTIONS(1882), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -328980,24 +334541,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135125] = 8, + [135667] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1698), 1, + STATE(1705), 1, sym_cell_path, - STATE(3399), 1, + STATE(3440), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1873), 31, + ACTIONS(1886), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329027,24 +334588,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135180] = 8, + [135722] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1904), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(3400), 1, - sym_comment, - STATE(3440), 1, + STATE(1715), 1, sym_cell_path, - STATE(3442), 1, + STATE(3441), 1, + sym_comment, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1013), 31, + ACTIONS(1906), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329074,17 +334635,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135235] = 4, + [135777] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3401), 1, + ACTIONS(1856), 1, + anon_sym_DASH, + ACTIONS(6379), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1691), 1, + sym_cell_path, + STATE(3442), 1, sym_comment, - ACTIONS(1639), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1858), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -329113,28 +334682,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135282] = 8, + [135832] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1641), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1694), 1, + STATE(1371), 1, sym_cell_path, - STATE(3402), 1, + STATE(1570), 1, + sym_path, + STATE(3443), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1857), 31, + ACTIONS(1645), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329164,24 +334729,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135337] = 8, + [135887] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1822), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1700), 1, + STATE(1670), 1, sym_cell_path, - STATE(3403), 1, + STATE(3444), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1971), 31, + ACTIONS(1826), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329211,24 +334776,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135392] = 8, + [135942] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1868), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1693), 1, + STATE(1700), 1, sym_cell_path, - STATE(3404), 1, + STATE(3445), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1853), 31, + ACTIONS(1870), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329258,16 +334823,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135447] = 6, + [135997] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6391), 1, + ACTIONS(6381), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6393), 1, + ACTIONS(6383), 1, aux_sym__immediate_decimal_token2, - STATE(3405), 1, + STATE(3446), 1, sym_comment, - ACTIONS(1631), 9, + ACTIONS(1659), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -329277,7 +334842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1633), 25, + ACTIONS(1661), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329303,24 +334868,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, - [135498] = 8, + [136048] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + STATE(3447), 1, + sym_comment, + ACTIONS(1054), 3, anon_sym_DASH, - ACTIONS(6389), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1690), 1, - sym_cell_path, - STATE(3406), 1, - sym_comment, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1841), 31, + ACTIONS(1056), 33, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329350,69 +334909,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135553] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6395), 1, - anon_sym_DOT, - ACTIONS(6397), 1, - aux_sym__immediate_decimal_token2, - STATE(3407), 1, - sym_comment, - ACTIONS(1643), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1645), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [135604] = 8, + [136095] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(1892), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1702), 1, + STATE(1710), 1, sym_cell_path, - STATE(3408), 1, + STATE(3448), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1896), 31, + ACTIONS(1894), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329442,68 +334958,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135659] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6360), 1, - sym__entry_separator, - STATE(3353), 1, - aux_sym__multiple_types_repeat1, - STATE(3409), 1, - sym_comment, - ACTIONS(6358), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [135708] = 8, + [136150] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1896), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1680), 1, + STATE(1711), 1, sym_cell_path, - STATE(3410), 1, + STATE(3449), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1967), 31, + ACTIONS(1898), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329533,24 +335005,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135763] = 8, + [136205] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1005), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1681), 1, - sym_cell_path, - STATE(3411), 1, + STATE(3450), 1, sym_comment, - STATE(3442), 1, + STATE(3472), 1, + sym_cell_path, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1959), 31, + ACTIONS(1007), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329580,24 +335052,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135818] = 8, + [136260] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1848), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1695), 1, + STATE(1689), 1, sym_cell_path, - STATE(3412), 1, + STATE(3451), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1861), 31, + ACTIONS(1850), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329627,17 +335099,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135873] = 4, + [136315] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3413), 1, + ACTIONS(1828), 1, + anon_sym_DASH, + ACTIONS(6379), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(1652), 1, + sym_cell_path, + STATE(3452), 1, sym_comment, - ACTIONS(1565), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1830), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -329666,28 +335146,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135920] = 8, + [136370] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6361), 1, + sym__entry_separator, + STATE(3390), 1, + aux_sym__multiple_types_repeat1, + STATE(3453), 1, + sym_comment, + ACTIONS(6359), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [136419] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2410), 1, + sym__entry_separator, + STATE(3454), 1, + sym_comment, + ACTIONS(2408), 35, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [136466] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1832), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1691), 1, + STATE(1668), 1, sym_cell_path, - STATE(3414), 1, + STATE(3455), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1845), 31, + ACTIONS(1834), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329717,24 +335280,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135975] = 8, + [136521] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1675), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(1703), 1, + STATE(1375), 1, sym_cell_path, - STATE(3415), 1, + STATE(1570), 1, + sym_path, + STATE(3456), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1939), 31, + ACTIONS(1677), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329764,24 +335327,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136030] = 8, + [136576] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1864), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1684), 1, + STATE(1698), 1, sym_cell_path, - STATE(3416), 1, + STATE(3457), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1881), 31, + ACTIONS(1866), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329811,24 +335374,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136085] = 8, + [136631] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1888), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1704), 1, + STATE(1707), 1, sym_cell_path, - STATE(3417), 1, + STATE(3458), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1947), 31, + ACTIONS(1890), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329858,18 +335421,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136140] = 4, + [136686] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3418), 1, - sym_comment, - ACTIONS(1056), 3, + ACTIONS(1860), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(6379), 1, anon_sym_DOT, - ACTIONS(1058), 33, + STATE(1570), 1, + sym_path, + STATE(1697), 1, + sym_cell_path, + STATE(3459), 1, + sym_comment, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1862), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329899,26 +335468,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + [136741] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6385), 1, + anon_sym_DOT, + ACTIONS(6387), 1, + aux_sym__immediate_decimal_token2, + STATE(3460), 1, + sym_comment, + ACTIONS(1667), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1669), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [136187] = 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, + [136792] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1912), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1686), 1, + STATE(1659), 1, sym_cell_path, - STATE(3419), 1, + STATE(3461), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1963), 31, + ACTIONS(1914), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329948,24 +335560,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136242] = 8, + [136847] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1900), 1, anon_sym_DASH, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1570), 1, sym_path, - STATE(1699), 1, + STATE(1713), 1, sym_cell_path, - STATE(3420), 1, + STATE(3462), 1, sym_comment, - STATE(3442), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(1877), 31, + ACTIONS(1902), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -329995,287 +335607,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136297] = 6, + [136902] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6399), 1, - anon_sym_DOT_DOT2, - STATE(3421), 1, - sym_comment, - ACTIONS(6401), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 9, + ACTIONS(1844), 1, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1794), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136347] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - sym__newline, - ACTIONS(6403), 1, - anon_sym_DOT_DOT2, - ACTIONS(6407), 1, - sym_filesize_unit, - ACTIONS(6409), 1, - sym_duration_unit, - STATE(3422), 1, - sym_comment, - ACTIONS(6405), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [136401] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6379), 1, anon_sym_DOT, - STATE(3423), 1, - sym_comment, - STATE(3455), 1, - aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(1570), 1, sym_path, - STATE(3662), 1, + STATE(1688), 1, sym_cell_path, - ACTIONS(1851), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1853), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136455] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6411), 1, - anon_sym_DOT, - STATE(3424), 1, + STATE(3463), 1, sym_comment, - STATE(3455), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, - sym_path, - STATE(3664), 1, - sym_cell_path, - ACTIONS(1859), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1861), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136509] = 8, + ACTIONS(1846), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [136957] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, - anon_sym_DOT, - STATE(3425), 1, + STATE(3464), 1, sym_comment, - STATE(3455), 1, - aux_sym_cell_path_repeat1, - STATE(3504), 1, - sym_path, - STATE(3666), 1, - sym_cell_path, - ACTIONS(1867), 7, - anon_sym_DOLLAR, + ACTIONS(1050), 3, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1869), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136563] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6413), 1, - aux_sym__immediate_decimal_token2, - STATE(3426), 1, - sym_comment, - ACTIONS(1705), 9, anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1707), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_DOT, + ACTIONS(1052), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136611] = 4, + [137004] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3427), 1, + STATE(3465), 1, sym_comment, - ACTIONS(1575), 3, + ACTIONS(2458), 3, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, - ACTIONS(1587), 32, + ACTIONS(2460), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330291,7 +335722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, anon_sym_QMARK2, @@ -330308,66 +335739,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [136657] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6411), 1, - anon_sym_DOT, - STATE(3428), 1, - sym_comment, - STATE(3455), 1, - aux_sym_cell_path_repeat1, - STATE(3504), 1, - sym_path, - STATE(3665), 1, - sym_cell_path, - ACTIONS(1863), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1865), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136711] = 8, + [137050] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3429), 1, + STATE(3466), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3663), 1, + STATE(3732), 1, sym_cell_path, - ACTIONS(1855), 7, + ACTIONS(1880), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330375,7 +335760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1857), 24, + ACTIONS(1882), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330384,7 +335769,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330400,20 +335785,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136765] = 8, + [137104] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3430), 1, + STATE(3467), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3657), 1, + STATE(3737), 1, sym_cell_path, - ACTIONS(1829), 7, + ACTIONS(1896), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330421,7 +335806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1833), 24, + ACTIONS(1898), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330430,7 +335815,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330446,20 +335831,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136819] = 8, + [137158] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3431), 1, + STATE(3468), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3671), 1, + STATE(3672), 1, sym_cell_path, - ACTIONS(1894), 7, + ACTIONS(1005), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330467,7 +335852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1896), 24, + ACTIONS(1007), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330476,7 +335861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330492,20 +335877,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136873] = 8, + [137212] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3432), 1, + STATE(3469), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3667), 1, + STATE(3692), 1, sym_cell_path, - ACTIONS(1871), 7, + ACTIONS(1828), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330513,7 +335898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1873), 24, + ACTIONS(1830), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330522,7 +335907,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330538,63 +335923,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136927] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6397), 1, - aux_sym__immediate_decimal_token2, - STATE(3433), 1, - sym_comment, - ACTIONS(1643), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1645), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136975] = 8, + [137266] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3434), 1, + STATE(3470), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3669), 1, + STATE(3740), 1, sym_cell_path, - ACTIONS(1969), 7, + ACTIONS(1904), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330602,7 +335944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1971), 24, + ACTIONS(1906), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330611,7 +335953,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330627,20 +335969,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137029] = 8, + [137320] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3435), 1, + STATE(3471), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3526), 1, + STATE(3739), 1, sym_cell_path, - ACTIONS(1957), 7, + ACTIONS(1900), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330648,7 +335990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1959), 24, + ACTIONS(1902), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330657,7 +335999,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330673,20 +336015,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137083] = 8, + [137374] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3472), 1, + sym_comment, + ACTIONS(1058), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1060), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [137420] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3436), 1, + STATE(3473), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3673), 1, + STATE(3725), 1, sym_cell_path, - ACTIONS(1945), 7, + ACTIONS(1856), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330694,7 +336078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1947), 24, + ACTIONS(1858), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330703,7 +336087,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330719,59 +336103,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137137] = 4, + [137474] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3437), 1, - sym_comment, - ACTIONS(2436), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(2438), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [137183] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6415), 1, + ACTIONS(6391), 1, anon_sym_DOT_DOT2, - STATE(3438), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6417), 2, + ACTIONS(6393), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 9, + ACTIONS(1788), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -330781,7 +336123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1804), 23, + ACTIONS(1796), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330795,7 +336137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -330805,20 +336147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [137233] = 8, + [137524] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3439), 1, + STATE(3475), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3670), 1, + STATE(3682), 1, sym_cell_path, - ACTIONS(1890), 7, + ACTIONS(1822), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330826,7 +336168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1892), 24, + ACTIONS(1826), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330835,7 +336177,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330851,17 +336193,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137287] = 4, + [137578] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3440), 1, - sym_comment, - ACTIONS(1064), 2, + ACTIONS(1011), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1066), 33, + ACTIONS(6379), 1, + anon_sym_DOT, + STATE(1570), 1, + sym_path, + STATE(3476), 1, + sym_comment, + STATE(3490), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1013), 31, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -330891,22 +336238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137333] = 8, + [137630] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3441), 1, + STATE(3477), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3674), 1, + STATE(3722), 1, sym_cell_path, - ACTIONS(1949), 7, + ACTIONS(1840), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -330914,7 +336259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1951), 24, + ACTIONS(1842), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330923,7 +336268,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330939,65 +336284,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137387] = 7, + [137684] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_DASH, ACTIONS(6389), 1, anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(3442), 1, - sym_comment, - STATE(3447), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1019), 31, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [137439] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6411), 1, - anon_sym_DOT, - STATE(3443), 1, + STATE(3478), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3658), 1, + STATE(3730), 1, sym_cell_path, - ACTIONS(1835), 7, + ACTIONS(1872), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331005,7 +336305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1837), 24, + ACTIONS(1874), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331014,7 +336314,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331030,20 +336330,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137493] = 8, + [137738] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3444), 1, + STATE(3479), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3659), 1, + STATE(3678), 1, sym_cell_path, - ACTIONS(1839), 7, + ACTIONS(1912), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331051,7 +336351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1841), 24, + ACTIONS(1914), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331060,7 +336360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331076,20 +336376,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137547] = 8, + [137792] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6387), 1, + aux_sym__immediate_decimal_token2, + STATE(3480), 1, + sym_comment, + ACTIONS(1667), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1669), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137840] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3445), 1, + STATE(3481), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3532), 1, + STATE(3567), 1, sym_cell_path, - ACTIONS(1961), 7, + ACTIONS(1844), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331097,7 +336440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1963), 24, + ACTIONS(1846), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331106,7 +336449,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331122,20 +336465,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137601] = 8, + [137894] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3446), 1, + STATE(3482), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3660), 1, + STATE(3731), 1, sym_cell_path, - ACTIONS(1843), 7, + ACTIONS(1876), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331143,7 +336486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1845), 24, + ACTIONS(1878), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331152,7 +336495,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331168,64 +336511,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137655] = 6, + [137948] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(6419), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_path, - STATE(3447), 2, + STATE(3483), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 31, + ACTIONS(1560), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1572), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [137705] = 8, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [137994] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3448), 1, + STATE(3484), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3668), 1, + STATE(3723), 1, sym_cell_path, - ACTIONS(1875), 7, + ACTIONS(1848), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331233,7 +336574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1877), 24, + ACTIONS(1850), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331242,7 +336583,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331258,20 +336599,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137759] = 8, + [138048] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3449), 1, + STATE(3485), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3661), 1, + STATE(3736), 1, sym_cell_path, - ACTIONS(1847), 7, + ACTIONS(1892), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331279,7 +336620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1849), 24, + ACTIONS(1894), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331288,7 +336629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331304,20 +336645,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137813] = 8, + [138102] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3450), 1, + STATE(3486), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3561), 1, + STATE(3734), 1, sym_cell_path, - ACTIONS(1011), 7, + ACTIONS(1884), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331325,7 +336666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1013), 24, + ACTIONS(1886), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331334,7 +336675,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331350,20 +336691,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137867] = 8, + [138156] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3451), 1, + STATE(3487), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3542), 1, + STATE(3727), 1, sym_cell_path, - ACTIONS(1965), 7, + ACTIONS(1864), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331371,7 +336712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1967), 24, + ACTIONS(1866), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331380,7 +336721,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331396,20 +336737,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137921] = 8, + [138210] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3452), 1, + STATE(3488), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3672), 1, + STATE(3728), 1, sym_cell_path, - ACTIONS(1937), 7, + ACTIONS(1868), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331417,7 +336758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1939), 24, + ACTIONS(1870), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331426,7 +336767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331442,20 +336783,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137975] = 8, + [138264] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3453), 1, + STATE(3489), 1, sym_comment, - STATE(3455), 1, + STATE(3500), 1, aux_sym_cell_path_repeat1, - STATE(3504), 1, + STATE(3543), 1, sym_path, - STATE(3545), 1, + STATE(3693), 1, sym_cell_path, - ACTIONS(1879), 7, + ACTIONS(1832), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331463,7 +336804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1881), 24, + ACTIONS(1834), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331472,7 +336813,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331488,443 +336829,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138029] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5905), 1, - sym_filesize_unit, - ACTIONS(5907), 1, - sym_duration_unit, - ACTIONS(6422), 1, - anon_sym_DOT_DOT2, - STATE(3454), 1, - sym_comment, - ACTIONS(6424), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 29, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [138080] = 7, + [138318] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6411), 1, - anon_sym_DOT, - STATE(3455), 1, - sym_comment, - STATE(3456), 1, - aux_sym_cell_path_repeat1, - STATE(3504), 1, - sym_path, - ACTIONS(1017), 7, - anon_sym_DOLLAR, + ACTIONS(1015), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1019), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138131] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6426), 1, + ACTIONS(6395), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(1570), 1, sym_path, - STATE(3456), 2, + STATE(3490), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1021), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1023), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138180] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3457), 1, - sym_comment, - ACTIONS(1643), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1645), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138225] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3458), 1, - sym_comment, - ACTIONS(1755), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1757), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138270] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3459), 1, - sym_comment, - ACTIONS(1705), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1707), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138315] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3460), 1, - sym_comment, - ACTIONS(2133), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2135), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138360] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3461), 1, - sym_comment, - ACTIONS(1631), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1633), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138405] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3462), 1, - sym_comment, - ACTIONS(2019), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2021), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138450] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6429), 1, - anon_sym_LPAREN2, - ACTIONS(6431), 1, - anon_sym_EQ2, - ACTIONS(6433), 1, - sym_short_flag_identifier, - STATE(3463), 1, - sym_comment, - ACTIONS(4749), 12, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4747), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [138501] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5905), 1, - sym_filesize_unit, - ACTIONS(5907), 1, - sym_duration_unit, - ACTIONS(6435), 1, - anon_sym_DOT_DOT2, - STATE(3464), 1, - sym_comment, - ACTIONS(6437), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 29, - aux_sym_ctrl_match_token1, + ACTIONS(1017), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -331953,54 +336873,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138552] = 6, + [138368] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, - sym__newline, - ACTIONS(6439), 1, + ACTIONS(6398), 1, anon_sym_DOT_DOT2, - STATE(3465), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6441), 2, + ACTIONS(6400), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [138600] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3466), 1, - sym_comment, - ACTIONS(1786), 9, + ACTIONS(1778), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332010,7 +336893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 24, + ACTIONS(1786), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332024,9 +336907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332035,189 +336917,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138644] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(3467), 1, - sym_comment, - ACTIONS(1076), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(1078), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [138692] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3468), 1, - sym_comment, - ACTIONS(2293), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2297), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [138740] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3469), 1, - sym_comment, - ACTIONS(2243), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2247), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [138788] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3470), 1, - sym_comment, - ACTIONS(2251), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2253), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [138836] = 4, + [138418] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3471), 1, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(3492), 1, sym_comment, - ACTIONS(1040), 8, + STATE(3500), 1, + aux_sym_cell_path_repeat1, + STATE(3543), 1, + sym_path, + STATE(3726), 1, + sym_cell_path, + ACTIONS(1860), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1042), 25, + ACTIONS(1862), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332226,8 +336947,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -332243,61 +336963,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138880] = 4, + [138472] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3472), 1, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(6402), 1, + anon_sym_DOT_DOT2, + ACTIONS(6406), 1, + sym_filesize_unit, + ACTIONS(6408), 1, + sym_duration_unit, + STATE(3493), 1, sym_comment, - ACTIONS(1044), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1046), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138924] = 4, + ACTIONS(6404), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [138526] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3473), 1, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(3494), 1, sym_comment, - ACTIONS(1048), 8, + STATE(3500), 1, + aux_sym_cell_path_repeat1, + STATE(3543), 1, + sym_path, + STATE(3720), 1, + sym_cell_path, + ACTIONS(1836), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1050), 25, + ACTIONS(1838), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332306,8 +337039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -332323,13 +337055,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138968] = 4, + [138580] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3474), 1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3495), 1, sym_comment, - ACTIONS(2218), 9, - anon_sym_DASH, + ACTIONS(1721), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332338,7 +337072,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(2222), 24, + ACTIONS(1723), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332350,11 +337085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332363,63 +337098,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139012] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3475), 1, - sym_comment, - ACTIONS(2259), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - ACTIONS(2261), 30, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139056] = 5, + [138628] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6443), 1, - anon_sym_QMARK2, - STATE(3476), 1, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(3496), 1, sym_comment, - ACTIONS(1034), 8, + STATE(3500), 1, + aux_sym_cell_path_repeat1, + STATE(3543), 1, + sym_path, + STATE(3735), 1, + sym_cell_path, + ACTIONS(1888), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1036), 24, + ACTIONS(1890), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332428,7 +337128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -332444,23 +337144,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139102] = 5, + [138682] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6445), 1, - anon_sym_QMARK2, - STATE(3477), 1, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(3497), 1, sym_comment, - ACTIONS(1028), 8, + STATE(3500), 1, + aux_sym_cell_path_repeat1, + STATE(3543), 1, + sym_path, + STATE(3724), 1, + sym_cell_path, + ACTIONS(1852), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1030), 24, + ACTIONS(1854), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332469,7 +337174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -332485,56 +337190,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139148] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(1204), 1, - sym_cell_path, - STATE(1530), 1, - sym_path, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - STATE(3478), 1, - sym_comment, - ACTIONS(1013), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139198] = 4, + [138736] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3479), 1, + STATE(3498), 1, sym_comment, - ACTIONS(2224), 9, - anon_sym_DASH, + ACTIONS(1721), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332543,7 +337205,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(2228), 24, + ACTIONS(1723), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332555,11 +337218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332568,16 +337231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139242] = 6, + [138781] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6397), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6447), 1, - anon_sym_DOT, - STATE(3480), 1, + STATE(3499), 1, sym_comment, - ACTIONS(1643), 8, + ACTIONS(1738), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332586,7 +337246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1645), 23, + ACTIONS(1740), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -332602,6 +337262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332610,67 +337272,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139290] = 7, + [138826] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5103), 1, - sym__newline, - ACTIONS(5106), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6439), 1, - anon_sym_DOT_DOT2, - STATE(3481), 1, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(3500), 1, + sym_comment, + STATE(3506), 1, + aux_sym_cell_path_repeat1, + STATE(3543), 1, + sym_path, + ACTIONS(1011), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1013), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138877] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3501), 1, sym_comment, - ACTIONS(6441), 2, + ACTIONS(1659), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1661), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5108), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [139340] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138922] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6449), 1, - sym_long_flag_identifier, - ACTIONS(6451), 1, + ACTIONS(6412), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, anon_sym_EQ2, - STATE(3482), 1, + ACTIONS(6416), 1, + sym_short_flag_identifier, + STATE(3502), 1, sym_comment, - ACTIONS(4737), 15, - aux_sym_cmd_identifier_token39, + ACTIONS(4783), 12, anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + 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, anon_sym_DQUOTE, @@ -332678,16 +337381,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4735), 16, + ACTIONS(4781), 19, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -332695,22 +337401,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [139388] = 7, + [138973] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, + STATE(3503), 1, sym_comment, - STATE(3487), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - ACTIONS(1017), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1019), 27, + ACTIONS(2029), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2031), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -332723,28 +337429,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_DASH_DASH, - anon_sym_in, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [139438] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139018] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3484), 1, + ACTIONS(5826), 1, + sym_filesize_unit, + ACTIONS(5828), 1, + sym_duration_unit, + ACTIONS(6418), 1, + anon_sym_DOT_DOT2, + STATE(3504), 1, sym_comment, - ACTIONS(4818), 9, - anon_sym_DASH, + ACTIONS(6420), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139069] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3505), 1, + sym_comment, + ACTIONS(2033), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332753,7 +337501,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(4816), 24, + ACTIONS(2035), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332765,11 +337514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332778,13 +337527,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139482] = 4, + [139114] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(6422), 1, + anon_sym_DOT, + STATE(3543), 1, + sym_path, + STATE(3506), 2, sym_comment, - ACTIONS(2160), 9, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 7, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1017), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139163] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5826), 1, + sym_filesize_unit, + ACTIONS(5828), 1, + sym_duration_unit, + ACTIONS(6425), 1, + anon_sym_DOT_DOT2, + STATE(3507), 1, + sym_comment, + ACTIONS(6427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139214] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3508), 1, + sym_comment, + ACTIONS(1667), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332793,7 +337629,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(2162), 24, + ACTIONS(1669), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332805,11 +337642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332818,12 +337655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139526] = 4, + [139259] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3486), 1, + STATE(3509), 1, sym_comment, - ACTIONS(1796), 9, + ACTIONS(2291), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332833,7 +337670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1804), 24, + ACTIONS(2295), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332847,7 +337684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_err_GT_GT, @@ -332858,174 +337695,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139570] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6455), 1, - anon_sym_DOT, - STATE(3546), 1, - sym_path, - STATE(3487), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1023), 27, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [139618] = 5, + [139303] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_QMARK2, - STATE(3488), 1, + STATE(3510), 1, sym_comment, - ACTIONS(1034), 3, - anon_sym_GT, + ACTIONS(1038), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1036), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DOT_DOT, anon_sym_DOT, - [139663] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(4618), 1, - aux_sym_unquoted_token2, - STATE(3489), 1, - sym_comment, - ACTIONS(1587), 30, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139708] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3490), 1, - sym_comment, - ACTIONS(2297), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2293), 22, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1040), 25, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + 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, - [139753] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139347] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3491), 1, + ACTIONS(6429), 1, + anon_sym_QMARK2, + STATE(3511), 1, sym_comment, - ACTIONS(1060), 8, + ACTIONS(1028), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -333034,7 +337751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1062), 24, + ACTIONS(1030), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333043,7 +337760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -333059,12 +337776,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139796] = 4, + [139393] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3512), 1, sym_comment, - ACTIONS(1052), 8, + ACTIONS(1042), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -333073,7 +337790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1054), 24, + ACTIONS(1044), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333082,7 +337799,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, + anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -333098,56 +337816,59 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139839] = 5, - ACTIONS(3), 1, + [139437] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3493), 1, + ACTIONS(6431), 1, + anon_sym_DOT, + STATE(3677), 1, + sym_path, + STATE(3513), 2, sym_comment, - ACTIONS(2247), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2243), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 3, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [139884] = 4, + anon_sym_LT2, + ACTIONS(1017), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [139485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3494), 1, + STATE(3514), 1, sym_comment, - ACTIONS(2259), 2, - anon_sym_EQ_GT, + ACTIONS(2253), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, aux_sym_unquoted_token4, - ACTIONS(2261), 30, - anon_sym_PIPE, + ACTIONS(2255), 30, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -333177,101 +337898,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139927] = 6, + [139529] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2293), 1, - sym__newline, - ACTIONS(2295), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(3495), 1, + STATE(3515), 1, sym_comment, - ACTIONS(2297), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [139974] = 6, + ACTIONS(2237), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2241), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139577] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - sym__newline, - ACTIONS(2245), 1, + ACTIONS(2231), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2235), 1, aux_sym_unquoted_token4, - STATE(3496), 1, + STATE(3516), 1, sym_comment, - ACTIONS(2247), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [140021] = 6, + ACTIONS(2229), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2233), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - ACTIONS(2251), 1, + STATE(3517), 1, + sym_comment, + ACTIONS(2245), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2247), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139673] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5123), 1, sym__newline, - STATE(3497), 1, + ACTIONS(5126), 1, + anon_sym_LBRACE, + ACTIONS(6434), 1, + anon_sym_DOT_DOT2, + STATE(3518), 1, sym_comment, - ACTIONS(2253), 29, - aux_sym_ctrl_match_token1, + ACTIONS(6436), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5128), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -333300,121 +338067,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [140068] = 5, - ACTIONS(3), 1, + [139723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3498), 1, + STATE(3519), 1, sym_comment, - ACTIONS(2253), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2251), 22, + ACTIONS(1034), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1036), 25, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + 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, - [140113] = 27, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139767] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + STATE(3520), 1, + sym_comment, + ACTIONS(4798), 9, anon_sym_DASH, - ACTIONS(3393), 1, - aux_sym_expr_unary_token1, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6466), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4796), 24, sym__newline, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_DOLLAR, - ACTIONS(6472), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6474), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, - aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3499), 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_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139811] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6387), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6438), 1, + anon_sym_DOT, + STATE(3521), 1, sym_comment, - STATE(3517), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(4209), 1, - sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4287), 1, - sym__binary_predicate_parenthesized, - STATE(4310), 1, - sym__predicate, - STATE(4898), 1, - sym_val_closure, - ACTIONS(6462), 2, - anon_sym_true, - anon_sym_false, - STATE(4408), 2, - sym_expr_unary, - sym_val_bool, - STATE(5097), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [140202] = 6, + ACTIONS(1667), 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(1669), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_EQ_GT, - ACTIONS(2295), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(3500), 1, + STATE(3522), 1, sym_comment, - ACTIONS(2297), 29, - anon_sym_PIPE, + ACTIONS(1070), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(1072), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -333443,17 +338231,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140249] = 4, - ACTIONS(3), 1, + [139907] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3523), 1, sym_comment, - ACTIONS(2259), 2, + ACTIONS(2287), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2289), 24, sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2261), 30, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139951] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3524), 1, + sym_comment, + ACTIONS(2297), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2301), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139995] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3525), 1, + sym_comment, + ACTIONS(1778), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1786), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140039] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1070), 1, + sym__newline, + ACTIONS(6434), 1, + anon_sym_DOT_DOT2, + STATE(3526), 1, + sym_comment, + ACTIONS(6436), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -333482,60 +338393,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [140292] = 6, - ACTIONS(3), 1, + [140087] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_EQ_GT, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3502), 1, + STATE(3527), 1, sym_comment, - ACTIONS(2247), 29, + ACTIONS(1788), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1796), 24, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [140339] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - ACTIONS(2251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - STATE(3503), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140131] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6379), 1, + anon_sym_DOT, + STATE(1217), 1, + sym_cell_path, + STATE(1570), 1, + sym_path, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + STATE(3528), 1, sym_comment, - ACTIONS(2253), 29, - anon_sym_PIPE, + ACTIONS(1007), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -333564,12 +338476,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140386] = 4, + [140181] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3504), 1, + ACTIONS(6440), 1, + anon_sym_QMARK2, + STATE(3529), 1, sym_comment, - ACTIONS(1056), 8, + ACTIONS(1022), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -333578,7 +338492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1058), 24, + ACTIONS(1024), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333587,7 +338501,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -333603,221 +338517,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140429] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT_DOT2, - STATE(3505), 1, - sym_comment, - ACTIONS(6484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [140474] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3506), 1, - sym_comment, - STATE(3541), 1, - sym_cell_path, - ACTIONS(1686), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1688), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [140525] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3507), 1, - sym_comment, - STATE(3543), 1, - sym_cell_path, - ACTIONS(1625), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1629), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [140576] = 5, + [140227] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_LBRACK2, - STATE(3508), 1, + ACTIONS(6442), 1, + sym_long_flag_identifier, + ACTIONS(6444), 1, + anon_sym_EQ2, + STATE(3530), 1, sym_comment, - ACTIONS(2303), 8, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2307), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + ACTIONS(4810), 15, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + 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, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140621] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3509), 1, - sym_comment, - ACTIONS(1040), 3, - anon_sym_GT, + ACTIONS(4808), 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1042), 29, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [140664] = 4, + 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, + [140275] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3510), 1, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3513), 1, + aux_sym_cell_path_repeat1, + STATE(3531), 1, sym_comment, - ACTIONS(1044), 3, + STATE(3677), 1, + sym_path, + ACTIONS(1011), 3, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, - ACTIONS(1046), 29, + ACTIONS(1013), 27, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -333833,7 +338590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_in, anon_sym_as, - anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -333846,17 +338602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT, - [140707] = 4, + [140325] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3532), 1, sym_comment, - ACTIONS(1048), 3, + ACTIONS(1038), 3, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, - ACTIONS(1050), 29, + ACTIONS(1040), 29, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -333886,63 +338641,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [140750] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6482), 1, - anon_sym_DOT_DOT2, - STATE(3512), 1, - sym_comment, - ACTIONS(6484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4820), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [140797] = 4, + [140368] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3513), 1, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(3533), 1, sym_comment, - ACTIONS(2261), 9, + ACTIONS(1072), 9, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2259), 23, + ACTIONS(1070), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333965,65 +338681,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - aux_sym_unquoted_token4, - [140840] = 5, - ACTIONS(247), 1, + [140413] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym_unquoted_token2, - STATE(3514), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(3534), 1, sym_comment, - ACTIONS(1575), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1587), 24, + ACTIONS(2233), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2229), 22, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140885] = 5, + [140458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(3515), 1, + STATE(3535), 1, sym_comment, - ACTIONS(1078), 9, + ACTIONS(2241), 9, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1076), 22, + ACTIONS(2237), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334046,121 +338761,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [140930] = 5, - ACTIONS(247), 1, + [140503] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6488), 1, - anon_sym_QMARK2, - STATE(3516), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(3536), 1, sym_comment, - ACTIONS(1028), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1030), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [140975] = 27, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3387), 1, - anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(2247), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2245), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6466), 1, - sym__newline, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, - ACTIONS(6472), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6474), 1, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3517), 1, - sym_comment, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3957), 1, - aux_sym_shebang_repeat1, - STATE(4209), 1, - sym_val_number, - STATE(4265), 1, - sym__binary_predicate_parenthesized, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4267), 1, - sym__predicate, - STATE(4930), 1, - sym_val_closure, - ACTIONS(6462), 2, - anon_sym_true, - anon_sym_false, - STATE(4408), 2, - sym_expr_unary, - sym_val_bool, - STATE(5097), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [141064] = 6, - ACTIONS(247), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [140548] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4816), 1, + ACTIONS(2229), 1, anon_sym_EQ_GT, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - STATE(3518), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(3537), 1, sym_comment, - ACTIONS(6492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4820), 28, + ACTIONS(2233), 29, + anon_sym_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334189,18 +338842,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141111] = 5, - ACTIONS(247), 1, + [140595] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - STATE(3519), 1, + ACTIONS(2237), 1, + anon_sym_EQ_GT, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(3538), 1, sym_comment, - ACTIONS(6492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 29, + ACTIONS(2241), 29, + anon_sym_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [140642] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2245), 1, anon_sym_EQ_GT, + STATE(3539), 1, + sym_comment, + ACTIONS(2247), 29, + anon_sym_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334229,19 +338924,120 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141156] = 6, + [140689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1076), 1, + STATE(3540), 1, + sym_comment, + ACTIONS(2255), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2253), 23, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + aux_sym_unquoted_token4, + [140732] = 27, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3409), 1, + aux_sym_expr_unary_token1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6454), 1, sym__newline, - ACTIONS(2239), 1, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6460), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6466), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6468), 1, + aux_sym__val_number_decimal_token4, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3541), 1, + sym_comment, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, + sym_val_number, + STATE(4358), 1, + sym__expr_unary_minus, + STATE(4499), 1, + sym__binary_predicate_parenthesized, + STATE(4500), 1, + sym__predicate, + STATE(4889), 1, + sym_val_closure, + ACTIONS(6450), 2, + anon_sym_true, + anon_sym_false, + STATE(4480), 2, + sym_expr_unary, + sym_val_bool, + STATE(5134), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [140821] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1070), 1, + sym__newline, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(3520), 1, + STATE(3542), 1, sym_comment, - ACTIONS(1078), 29, - aux_sym_ctrl_match_token1, + ACTIONS(1072), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -334270,22 +339066,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [141203] = 5, + [140868] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - anon_sym_EQ2, - STATE(3521), 1, + STATE(3543), 1, sym_comment, - ACTIONS(4906), 7, + ACTIONS(1046), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4904), 24, + ACTIONS(1048), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334294,7 +339089,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334310,22 +339105,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141248] = 5, + [140911] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6496), 1, - anon_sym_EQ2, - STATE(3522), 1, + STATE(3544), 1, sym_comment, - ACTIONS(4916), 7, + ACTIONS(1050), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4914), 24, + ACTIONS(1052), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334334,7 +339128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334350,43 +339144,227 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141293] = 11, + [140954] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + STATE(3545), 1, + sym_comment, + ACTIONS(1054), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1056), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140997] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3546), 1, + sym_comment, + ACTIONS(2253), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + ACTIONS(2255), 30, + anon_sym_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141040] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2229), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3523), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(3547), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(2233), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [141087] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + STATE(3548), 1, + sym_comment, + ACTIONS(1572), 30, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141132] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2245), 1, + sym__newline, + STATE(3549), 1, + sym_comment, + ACTIONS(2247), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 9, - aux_sym_ctrl_match_token1, + [141179] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3550), 1, + sym_comment, + ACTIONS(2253), 2, + sym__newline, + aux_sym_unquoted_token4, + ACTIONS(2255), 30, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -334395,89 +339373,188 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [141349] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [141222] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3551), 1, + sym_comment, + ACTIONS(1042), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1044), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [141265] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3552), 1, + sym_comment, + ACTIONS(1034), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1036), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [141308] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(3524), 1, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3553), 1, sym_comment, - ACTIONS(1078), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [141393] = 4, + STATE(3729), 1, + sym_cell_path, + ACTIONS(1641), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1645), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [141359] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3525), 1, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3554), 1, sym_comment, - ACTIONS(5022), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5020), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141435] = 4, + STATE(3574), 1, + sym_cell_path, + ACTIONS(1675), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1677), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [141410] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3526), 1, + ACTIONS(6470), 1, + anon_sym_EQ2, + STATE(3555), 1, sym_comment, - ACTIONS(1961), 7, + ACTIONS(4942), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -334485,7 +339562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1963), 24, + ACTIONS(4940), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334494,7 +339571,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334510,16 +339587,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141477] = 4, - ACTIONS(3), 1, + [141455] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2259), 1, - aux_sym_unquoted_token4, - STATE(3527), 1, + ACTIONS(4796), 1, + anon_sym_LBRACE, + ACTIONS(6472), 1, + anon_sym_DOT_DOT2, + STATE(3556), 1, sym_comment, - ACTIONS(2261), 30, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(6474), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4800), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334548,23 +339628,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141519] = 8, + [141502] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3528), 1, + ACTIONS(6476), 1, + anon_sym_QMARK2, + STATE(3557), 1, sym_comment, - STATE(3546), 1, - sym_path, - STATE(3726), 1, - sym_cell_path, - ACTIONS(1625), 2, + ACTIONS(1022), 3, anon_sym_GT, + anon_sym_DASH, anon_sym_LT2, - ACTIONS(1629), 25, + ACTIONS(1024), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334577,7 +339652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -334590,26 +339667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [141569] = 6, + anon_sym_DOT, + [141547] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6510), 1, - anon_sym_DOT_DOT2, - STATE(3529), 1, + ACTIONS(6478), 1, + anon_sym_QMARK2, + STATE(3558), 1, sym_comment, - ACTIONS(6512), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2061), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2067), 20, + ACTIONS(1028), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1030), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334622,60 +339692,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [141615] = 6, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [141592] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6514), 1, + ACTIONS(6472), 1, anon_sym_DOT_DOT2, - STATE(3530), 1, + STATE(3559), 1, sym_comment, - ACTIONS(6516), 2, + ACTIONS(6474), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1794), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [141661] = 4, + ACTIONS(1072), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141637] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3531), 1, + ACTIONS(6480), 1, + anon_sym_LBRACK2, + STATE(3560), 1, sym_comment, - ACTIONS(2453), 7, + ACTIONS(2313), 8, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -334683,16 +339764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2455), 24, + ACTIONS(2317), 23, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334708,12 +339788,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141703] = 4, + [141682] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3532), 1, + ACTIONS(6482), 1, + anon_sym_EQ2, + STATE(3561), 1, sym_comment, - ACTIONS(2457), 7, + ACTIONS(4900), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -334721,7 +339803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2459), 24, + ACTIONS(4898), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334730,7 +339812,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334746,12 +339828,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141745] = 4, + [141727] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3533), 1, + ACTIONS(6355), 1, + aux_sym_unquoted_token2, + STATE(3562), 1, sym_comment, - ACTIONS(1076), 7, + ACTIONS(1560), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -334759,7 +339843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1078), 24, + ACTIONS(1572), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334768,7 +339852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334784,50 +339868,196 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141787] = 4, + [141772] = 27, ACTIONS(247), 1, anon_sym_POUND, - STATE(3534), 1, - sym_comment, - ACTIONS(1575), 7, - anon_sym_DOLLAR, + ACTIONS(3403), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1587), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + ACTIONS(3409), 1, + aux_sym_expr_unary_token1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6454), 1, + sym__newline, + ACTIONS(6456), 1, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6460), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3541), 1, + aux_sym_shebang_repeat1, + STATE(3563), 1, + sym_comment, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, + sym_val_number, + STATE(4304), 1, + sym__predicate, + STATE(4358), 1, + sym__expr_unary_minus, + STATE(4490), 1, + sym__binary_predicate_parenthesized, + STATE(4878), 1, + sym_val_closure, + ACTIONS(6450), 2, + anon_sym_true, + anon_sym_false, + STATE(4480), 2, + sym_expr_unary, + sym_val_bool, + STATE(5134), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141829] = 4, + [141861] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3535), 1, + ACTIONS(4796), 1, + anon_sym_EQ_GT, + ACTIONS(6484), 1, + anon_sym_DOT_DOT2, + STATE(3564), 1, + sym_comment, + ACTIONS(6486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4800), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141908] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6484), 1, + anon_sym_DOT_DOT2, + STATE(3565), 1, + sym_comment, + ACTIONS(6486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141953] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + sym__newline, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(3566), 1, + sym_comment, + ACTIONS(2241), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142000] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3567), 1, sym_comment, - ACTIONS(2436), 7, + ACTIONS(2412), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -334835,7 +340065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2438), 24, + ACTIONS(2414), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334844,7 +340074,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334860,17 +340090,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141871] = 6, + [142042] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2253), 1, + aux_sym_unquoted_token4, + STATE(3568), 1, + sym_comment, + ACTIONS(2255), 30, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142084] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(6488), 1, anon_sym_DOT_DOT2, - STATE(3536), 1, + STATE(3569), 1, sym_comment, - ACTIONS(6520), 2, + ACTIONS(6490), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 8, + ACTIONS(1991), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334879,7 +340147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2041), 20, + ACTIONS(1997), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334900,17 +340168,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, - [141917] = 6, + [142130] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6522), 1, + ACTIONS(6492), 1, anon_sym_DOT_DOT2, - STATE(3537), 1, + STATE(3570), 1, sym_comment, - ACTIONS(6524), 2, + ACTIONS(6494), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 8, + ACTIONS(1999), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334919,7 +340187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 20, + ACTIONS(2005), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334940,17 +340208,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, - [141963] = 6, + [142176] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6526), 1, + ACTIONS(6496), 1, anon_sym_DOT_DOT2, - STATE(3538), 1, + STATE(3571), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6498), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2051), 8, + ACTIONS(2007), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334959,7 +340227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2057), 20, + ACTIONS(2013), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334980,17 +340248,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, - [142009] = 6, + [142222] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6530), 1, + ACTIONS(6500), 1, anon_sym_DOT_DOT2, - STATE(3539), 1, + STATE(3572), 1, sym_comment, - ACTIONS(6532), 2, + ACTIONS(6502), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 8, + ACTIONS(1788), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334999,7 +340267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1804), 20, + ACTIONS(1796), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335020,54 +340288,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [142055] = 4, + [142268] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3540), 1, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, + STATE(3573), 1, sym_comment, - ACTIONS(5036), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5034), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142097] = 4, + ACTIONS(1572), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142312] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3541), 1, + STATE(3574), 1, sym_comment, - ACTIONS(1625), 3, + ACTIONS(2141), 3, anon_sym_GT, anon_sym_LT2, anon_sym_DOT_DOT2, - ACTIONS(1629), 28, + ACTIONS(2143), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335096,292 +340365,651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [142139] = 4, + [142354] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(3575), 1, sym_comment, - ACTIONS(1879), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1881), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142181] = 4, + STATE(3587), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5216), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142400] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3543), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(3576), 1, sym_comment, - ACTIONS(2137), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(2139), 28, + STATE(3589), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5216), 23, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142448] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 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_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [142223] = 4, + STATE(3577), 1, + sym_comment, + STATE(3591), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5216), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142498] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + STATE(3578), 1, + sym_comment, + STATE(3593), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5216), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [142554] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + STATE(3579), 1, + sym_comment, + STATE(3595), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5216), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [142612] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3580), 1, + sym_comment, + STATE(3597), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5216), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142672] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3581), 1, + sym_comment, + STATE(3599), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5216), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142734] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3582), 1, + sym_comment, + STATE(3601), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142798] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6524), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3583), 1, + sym_comment, + STATE(3603), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142864] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6524), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6526), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3584), 1, + sym_comment, + STATE(3605), 1, + aux_sym_shebang_repeat1, + ACTIONS(5216), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142932] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3544), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(3585), 1, sym_comment, - ACTIONS(5040), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5038), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142265] = 4, + STATE(3607), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5216), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [142986] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3545), 1, + ACTIONS(5271), 1, + sym__newline, + STATE(3586), 1, sym_comment, - ACTIONS(2443), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2445), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142307] = 4, + STATE(3609), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5216), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143038] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3546), 1, - sym_comment, - ACTIONS(1056), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1058), 28, - ts_builtin_sym_end, + ACTIONS(5195), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [142349] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3547), 1, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3587), 1, sym_comment, - ACTIONS(2247), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [142393] = 5, - ACTIONS(3), 1, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5197), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143084] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(3548), 1, + ACTIONS(5296), 1, + sym__newline, + STATE(3588), 1, sym_comment, - ACTIONS(2253), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [142437] = 6, + STATE(3623), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5201), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143130] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, - STATE(3549), 1, - sym_comment, - STATE(3562), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3589), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5196), 27, - aux_sym_ctrl_match_token1, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5197), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -335404,25 +341032,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142483] = 7, + [143178] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5296), 1, sym__newline, - STATE(3550), 1, + STATE(3590), 1, sym_comment, - STATE(3564), 1, + STATE(3624), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5196), 23, - aux_sym_ctrl_match_token1, + ACTIONS(5201), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -335445,28 +341073,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142531] = 8, + [143226] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, - STATE(3551), 1, - sym_comment, - STATE(3566), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3591), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5196), 21, - aux_sym_ctrl_match_token1, + ACTIONS(5197), 21, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -335487,43 +341115,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142581] = 11, + [143276] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5296), 1, sym__newline, - STATE(3552), 1, + STATE(3592), 1, sym_comment, - STATE(3568), 1, + STATE(3625), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5201), 21, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143326] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5195), 1, + sym__newline, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3593), 1, + sym_comment, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6532), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 9, - aux_sym_ctrl_match_token1, + ACTIONS(5197), 9, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -335532,329 +341202,665 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [142637] = 12, + [143382] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5296), 1, sym__newline, - STATE(3553), 1, + STATE(3594), 1, sym_comment, - STATE(3570), 1, + STATE(3626), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5201), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [143438] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5195), 1, + sym__newline, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3595), 1, + sym_comment, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6532), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5197), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [143496] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + STATE(3596), 1, + sym_comment, + STATE(3627), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 7, - aux_sym_ctrl_match_token1, + ACTIONS(5201), 7, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [142695] = 13, + [143554] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3554), 1, - sym_comment, - STATE(3572), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3597), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5197), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143614] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3598), 1, + sym_comment, + STATE(3628), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5196), 6, - aux_sym_ctrl_match_token1, + ACTIONS(5201), 6, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142755] = 14, + [143674] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3555), 1, - sym_comment, - STATE(3574), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3599), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5197), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143736] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3600), 1, + sym_comment, + STATE(3629), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5196), 5, - aux_sym_ctrl_match_token1, + ACTIONS(5201), 5, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142817] = 15, + [143798] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3556), 1, - sym_comment, - STATE(3576), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3601), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5196), 4, - aux_sym_ctrl_match_token1, + ACTIONS(5197), 4, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143862] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3602), 1, + sym_comment, + STATE(3630), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5201), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142881] = 16, + [143926] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, + ACTIONS(6542), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6544), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6546), 1, + aux_sym_expr_binary_parenthesized_token15, ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3603), 1, + sym_comment, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6532), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5197), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143992] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5296), 1, + sym__newline, + ACTIONS(6518), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, + ACTIONS(6520), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, + ACTIONS(6522), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, + ACTIONS(6524), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3557), 1, + STATE(3604), 1, sym_comment, - STATE(3578), 1, + STATE(3631), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5196), 3, - aux_sym_ctrl_match_token1, + ACTIONS(5201), 3, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [142947] = 17, + [144058] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5295), 1, + ACTIONS(5195), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6544), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6546), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token16, ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3605), 1, + sym_comment, + ACTIONS(5197), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6532), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144126] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, + ACTIONS(6522), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, + ACTIONS(6524), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6556), 1, + ACTIONS(6526), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3558), 1, + STATE(3606), 1, sym_comment, - STATE(3580), 1, + STATE(3632), 1, aux_sym_shebang_repeat1, - ACTIONS(5196), 2, - aux_sym_ctrl_match_token1, + ACTIONS(5201), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143015] = 10, + [144194] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5195), 1, sym__newline, - STATE(3559), 1, - sym_comment, - STATE(3582), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3607), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5196), 13, - aux_sym_ctrl_match_token1, + ACTIONS(5197), 13, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -335867,31 +341873,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [143069] = 9, + [144248] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5296), 1, sym__newline, - STATE(3560), 1, + STATE(3608), 1, sym_comment, - STATE(3584), 1, + STATE(3633), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5201), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [144302] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5195), 1, + sym__newline, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3609), 1, + sym_comment, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6532), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5196), 19, - aux_sym_ctrl_match_token1, + ACTIONS(5197), 19, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -335910,66 +341960,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143121] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3561), 1, - sym_comment, - ACTIONS(1064), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1066), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143163] = 6, + [144354] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5296), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3562), 1, + STATE(3610), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3634), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5206), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5201), 19, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -335988,20 +342003,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143209] = 6, + [144406] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(3563), 1, + STATE(3611), 1, sym_comment, - STATE(3598), 1, + STATE(3635), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5210), 27, - aux_sym_ctrl_match_token1, + ACTIONS(5220), 27, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -336028,25 +342043,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143255] = 7, + [144452] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3564), 1, + STATE(3612), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3637), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6500), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5206), 23, - aux_sym_ctrl_match_token1, + ACTIONS(5220), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -336069,27 +342084,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143303] = 7, + [144500] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(3565), 1, + STATE(3613), 1, sym_comment, - STATE(3599), 1, + STATE(3639), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6536), 4, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5210), 23, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 21, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -336110,30 +342126,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143351] = 8, + [144550] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3566), 1, + STATE(3614), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3641), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6500), 4, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5206), 21, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5220), 9, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -336142,762 +342171,875 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + [144606] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + sym__newline, + STATE(3615), 1, + sym_comment, + STATE(3643), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143401] = 8, + ACTIONS(5220), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [144664] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(3567), 1, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3616), 1, sym_comment, - STATE(3600), 1, + STATE(3645), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6536), 4, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5210), 21, - aux_sym_ctrl_match_token1, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5220), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144724] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3617), 1, + sym_comment, + STATE(3647), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5220), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144786] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5307), 1, + sym__newline, + ACTIONS(6518), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, aux_sym_expr_binary_parenthesized_token15, + STATE(3618), 1, + sym_comment, + STATE(3649), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5220), 4, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143451] = 11, + [144850] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3568), 1, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6524), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3619), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3651), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5220), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + [144916] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6518), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6524), 1, aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6526), 1, aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [143507] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5309), 1, - sym__newline, - STATE(3569), 1, + STATE(3620), 1, sym_comment, - STATE(3601), 1, + STATE(3653), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(5220), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [143563] = 12, + [144984] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5307), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3570), 1, + STATE(3621), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3655), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 7, - aux_sym_ctrl_match_token1, + ACTIONS(5220), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [143621] = 12, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [145038] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5307), 1, sym__newline, - STATE(3571), 1, + STATE(3622), 1, sym_comment, - STATE(3602), 1, + STATE(3657), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(5220), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [143679] = 13, + [145090] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3572), 1, + STATE(3623), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(5205), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5206), 6, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143739] = 13, + [145136] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3573), 1, - sym_comment, - STATE(3603), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3624), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5205), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5210), 6, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143799] = 14, + [145184] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3574), 1, + STATE(3625), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5206), 5, - aux_sym_ctrl_match_token1, + ACTIONS(5205), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143861] = 14, + [145234] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3575), 1, - sym_comment, - STATE(3604), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3626), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5210), 5, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143923] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5204), 1, - sym__newline, - ACTIONS(6560), 1, + ACTIONS(5205), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145290] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5203), 1, + sym__newline, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3576), 1, + STATE(3627), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5206), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [143987] = 15, + ACTIONS(5205), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145348] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3577), 1, - sym_comment, - STATE(3605), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3628), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5210), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(5205), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144051] = 16, + [145408] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3578), 1, + STATE(3629), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5206), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(5205), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144117] = 16, + [145470] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3579), 1, - sym_comment, - STATE(3606), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3630), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5210), 3, - aux_sym_ctrl_match_token1, + ACTIONS(5205), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144183] = 17, + [145534] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6568), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3580), 1, + STATE(3631), 1, sym_comment, - ACTIONS(5206), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(5205), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144251] = 17, + [145600] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5295), 1, + ACTIONS(5203), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6556), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3581), 1, - sym_comment, - STATE(3607), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 2, - aux_sym_ctrl_match_token1, + STATE(3632), 1, + sym_comment, + ACTIONS(5205), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6534), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144319] = 10, + [145668] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5203), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3582), 1, + STATE(3633), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5206), 13, - aux_sym_ctrl_match_token1, + ACTIONS(5205), 13, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -336910,38 +343052,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [144373] = 10, + [145722] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5203), 1, sym__newline, - STATE(3583), 1, - sym_comment, - STATE(3608), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3634), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5210), 13, - aux_sym_ctrl_match_token1, + ACTIONS(5205), 19, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -336954,31 +343089,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [144427] = 9, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145774] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3584), 1, + STATE(3635), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(5142), 27, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5206), 19, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -336997,31 +343135,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144479] = 9, + [145820] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5309), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3585), 1, + STATE(3636), 1, sym_comment, - STATE(3609), 1, + STATE(3659), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(5150), 27, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5210), 19, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -337040,24 +343175,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144531] = 6, + [145866] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5140), 1, sym__newline, - STATE(3586), 1, - sym_comment, - STATE(3610), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3637), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5156), 27, - aux_sym_ctrl_match_token1, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5142), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -337080,25 +343216,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144577] = 7, + [145914] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3587), 1, + STATE(3638), 1, sym_comment, - STATE(3612), 1, + STATE(3660), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5156), 23, - aux_sym_ctrl_match_token1, + ACTIONS(5150), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -337121,28 +343257,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144625] = 8, + [145962] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5140), 1, sym__newline, - STATE(3588), 1, - sym_comment, - STATE(3614), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3639), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5156), 21, - aux_sym_ctrl_match_token1, + ACTIONS(5142), 21, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -337163,920 +343299,752 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144675] = 11, + [146012] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3523), 1, - aux_sym_shebang_repeat1, - STATE(3589), 1, + STATE(3640), 1, sym_comment, - ACTIONS(6534), 2, + STATE(3661), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(5150), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [144731] = 12, + [146062] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5140), 1, sym__newline, - STATE(3590), 1, - sym_comment, - STATE(3618), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3641), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 7, - aux_sym_ctrl_match_token1, + ACTIONS(5142), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [144789] = 13, + [146118] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3591), 1, + STATE(3642), 1, sym_comment, - STATE(3620), 1, + STATE(3662), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5156), 6, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144849] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3592), 1, - sym_comment, - STATE(3622), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(5150), 9, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5156), 5, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144911] = 15, + [146174] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3593), 1, - sym_comment, - STATE(3624), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3643), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5156), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144975] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(6548), 1, + ACTIONS(5142), 7, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3594), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [146232] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5230), 1, + sym__newline, + STATE(3644), 1, sym_comment, - STATE(3626), 1, + STATE(3744), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5156), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145041] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6548), 1, + ACTIONS(5150), 7, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6556), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3595), 1, - sym_comment, - STATE(3628), 1, - aux_sym_shebang_repeat1, - ACTIONS(5156), 2, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6534), 2, + [146290] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5140), 1, + sym__newline, + ACTIONS(6542), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3645), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(5142), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145109] = 10, + [146350] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3596), 1, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3646), 1, sym_comment, - STATE(3698), 1, + STATE(3664), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5156), 13, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [145163] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - sym__newline, - STATE(3597), 1, - sym_comment, - STATE(3632), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5156), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5150), 6, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145215] = 6, + [146410] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + ACTIONS(6542), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6544), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3598), 1, + STATE(3647), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5144), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145261] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5142), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3599), 1, - sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5144), 23, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145309] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5142), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3600), 1, - sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5144), 21, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5142), 5, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145359] = 11, + [146472] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5230), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3601), 1, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3648), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3665), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(5150), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [145415] = 12, + [146534] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + ACTIONS(6542), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6544), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6546), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3602), 1, + STATE(3649), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(5142), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [145473] = 13, + [146598] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6518), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3603), 1, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3650), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3666), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(5150), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5144), 6, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145533] = 14, + [146662] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + ACTIONS(6546), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3604), 1, + STATE(3651), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(5142), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5144), 5, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145595] = 15, + [146728] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5230), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6518), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6520), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, + ACTIONS(6522), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3605), 1, + ACTIONS(6524), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3652), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3667), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5144), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5150), 3, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145659] = 16, + [146794] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3606), 1, + STATE(3653), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(5142), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5144), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145725] = 17, + [146862] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6518), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6520), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, + ACTIONS(6522), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, + ACTIONS(6524), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6568), 1, + ACTIONS(6526), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3607), 1, + STATE(3654), 1, sym_comment, - ACTIONS(5144), 2, - aux_sym_ctrl_match_token1, + STATE(3668), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6498), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145793] = 10, + [146930] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3608), 1, + STATE(3655), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5144), 13, - aux_sym_ctrl_match_token1, + ACTIONS(5142), 13, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -338089,31 +344057,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [145847] = 9, + [146984] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5142), 1, + ACTIONS(5230), 1, sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3609), 1, + STATE(3656), 1, sym_comment, - ACTIONS(6498), 2, + STATE(3669), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5144), 19, - aux_sym_ctrl_match_token1, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5150), 13, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -338126,34 +344101,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145899] = 6, + [147038] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5140), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3610), 1, + STATE(3657), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5192), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5142), 19, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -338172,28 +344144,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145945] = 6, + [147090] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5230), 1, sym__newline, - STATE(3611), 1, + STATE(3658), 1, sym_comment, - STATE(3634), 1, + STATE(3670), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5202), 27, - aux_sym_ctrl_match_token1, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5150), 19, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -338212,25 +344187,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145991] = 7, + [147142] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3612), 1, + STATE(3659), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6500), 4, + ACTIONS(5183), 27, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5192), 23, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -338253,25 +344227,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146039] = 7, + [147188] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5181), 1, sym__newline, - STATE(3613), 1, - sym_comment, - STATE(3635), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3660), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5202), 23, - aux_sym_ctrl_match_token1, + ACTIONS(5183), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -338294,28 +344268,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146087] = 8, + [147236] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3614), 1, + STATE(3661), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5192), 21, - aux_sym_ctrl_match_token1, + ACTIONS(5183), 21, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -338336,60 +344310,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146137] = 8, + [147286] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5181), 1, sym__newline, - STATE(3615), 1, - sym_comment, - STATE(3636), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3662), 1, + sym_comment, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6536), 4, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5202), 21, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146187] = 6, + ACTIONS(5183), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_EQ_GT, ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(3616), 1, + STATE(3663), 1, sym_comment, - ACTIONS(1078), 28, + ACTIONS(2247), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338418,639 +344394,1030 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [146233] = 11, + [147386] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5181), 1, sym__newline, - STATE(3617), 1, - sym_comment, - STATE(3637), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [146289] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5190), 1, - sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3618), 1, + STATE(3664), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5183), 6, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [146347] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(3619), 1, - sym_comment, - STATE(3638), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [146405] = 13, + [147446] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, + ACTIONS(6544), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3620), 1, + STATE(3665), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5192), 6, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146465] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3621), 1, - sym_comment, - STATE(3639), 1, - aux_sym_shebang_repeat1, ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5202), 6, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5183), 5, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146525] = 14, + [147508] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, + ACTIONS(6546), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3622), 1, + STATE(3666), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5192), 5, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5183), 4, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146587] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3623), 1, - sym_comment, - STATE(3640), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5202), 5, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146649] = 15, + [147572] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3624), 1, + STATE(3667), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5192), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5183), 3, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146713] = 15, + [147638] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6548), 1, + ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, + ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, + ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3625), 1, - sym_comment, - STATE(3641), 1, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2043), 1, aux_sym_shebang_repeat1, - ACTIONS(6534), 2, + STATE(3668), 1, + sym_comment, + ACTIONS(5183), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5202), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146777] = 16, + [147706] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3626), 1, + STATE(3669), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5192), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146843] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(6548), 1, + ACTIONS(5183), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3627), 1, - sym_comment, - STATE(3642), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5202), 3, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146909] = 17, + [147760] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6568), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3628), 1, + STATE(3670), 1, sym_comment, - ACTIONS(5192), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146977] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6548), 1, + ACTIONS(5183), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6556), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3629), 1, - sym_comment, - STATE(3643), 1, - aux_sym_shebang_repeat1, - ACTIONS(5202), 2, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147045] = 4, + [147812] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3671), 1, + sym_comment, + ACTIONS(4988), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4986), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [147854] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3672), 1, + sym_comment, + ACTIONS(1058), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1060), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [147896] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1070), 1, + anon_sym_EQ_GT, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(3673), 1, + sym_comment, + ACTIONS(1072), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [147942] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3674), 1, + sym_comment, + ACTIONS(1560), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1572), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [147984] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3675), 1, + sym_comment, + ACTIONS(1070), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1072), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148026] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3676), 1, + sym_comment, + ACTIONS(2458), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2460), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148068] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3677), 1, + sym_comment, + ACTIONS(1046), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1048), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [148110] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3678), 1, + sym_comment, + ACTIONS(1822), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1826), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3679), 1, + sym_comment, + ACTIONS(2309), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2311), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148194] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3680), 1, + sym_comment, + ACTIONS(4992), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4990), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148236] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3681), 1, + sym_comment, + ACTIONS(2328), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2330), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148278] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3682), 1, + sym_comment, + ACTIONS(2338), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2340), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148320] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3683), 1, + sym_comment, + ACTIONS(2342), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2344), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148362] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3684), 1, + sym_comment, + ACTIONS(4996), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4994), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148404] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3685), 1, + sym_comment, + ACTIONS(1050), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1052), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [148446] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3686), 1, + sym_comment, + ACTIONS(1054), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1056), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [148488] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3687), 1, + sym_comment, + ACTIONS(2348), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2350), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148530] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3688), 1, + sym_comment, + ACTIONS(5000), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4998), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148572] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3630), 1, + STATE(3689), 1, sym_comment, - ACTIONS(4926), 7, + ACTIONS(5004), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339058,7 +345425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4924), 24, + ACTIONS(5002), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339067,7 +345434,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -339083,730 +345450,787 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147087] = 10, + [148614] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(3631), 1, + STATE(3690), 1, sym_comment, - STATE(3644), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5202), 13, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [147141] = 9, + ACTIONS(4884), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4882), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148656] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3632), 1, + STATE(3691), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5192), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147193] = 9, + ACTIONS(4894), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4892), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148698] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(3633), 1, + STATE(3692), 1, sym_comment, - STATE(3645), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5202), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147245] = 6, + ACTIONS(1832), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1834), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148740] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3634), 1, + STATE(3693), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5180), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147291] = 7, + ACTIONS(2388), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2390), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148782] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(3694), 1, + sym_comment, + ACTIONS(2233), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [148826] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3635), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + STATE(3695), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5180), 23, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147339] = 8, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5052), 28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [148870] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3636), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + STATE(3696), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5180), 21, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147389] = 11, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 24, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [148916] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3637), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + STATE(3697), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [147445] = 12, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 22, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [148964] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3638), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + STATE(3698), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [147503] = 13, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 10, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [149018] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3639), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + STATE(3699), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5180), 6, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147563] = 14, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6564), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 8, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [149074] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3640), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + ACTIONS(6566), 1, + aux_sym_expr_binary_token13, + STATE(3700), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5180), 5, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147625] = 15, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6564), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [149132] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3641), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + ACTIONS(6566), 1, + aux_sym_expr_binary_token13, + ACTIONS(6568), 1, + aux_sym_expr_binary_token14, + STATE(3701), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5180), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147689] = 16, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6564), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5052), 6, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149192] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, - aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5054), 1, + anon_sym_DASH, ACTIONS(6566), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3642), 1, + aux_sym_expr_binary_token13, + ACTIONS(6568), 1, + aux_sym_expr_binary_token14, + ACTIONS(6570), 1, + aux_sym_expr_binary_token15, + STATE(3702), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5180), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147755] = 17, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6564), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5052), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149254] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - ACTIONS(6560), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, - aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5054), 1, + anon_sym_DASH, ACTIONS(6566), 1, - aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_token13, ACTIONS(6568), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3643), 1, + aux_sym_expr_binary_token14, + ACTIONS(6570), 1, + aux_sym_expr_binary_token15, + ACTIONS(6572), 1, + aux_sym_expr_binary_token16, + STATE(3703), 1, sym_comment, - ACTIONS(5180), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, ACTIONS(6558), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147823] = 10, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6564), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5052), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149318] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3644), 1, + ACTIONS(5054), 1, + anon_sym_DASH, + ACTIONS(6566), 1, + aux_sym_expr_binary_token13, + ACTIONS(6568), 1, + aux_sym_expr_binary_token14, + ACTIONS(6570), 1, + aux_sym_expr_binary_token15, + ACTIONS(6572), 1, + aux_sym_expr_binary_token16, + ACTIONS(6574), 1, + aux_sym_expr_binary_token17, + STATE(3704), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6508), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5180), 13, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [147877] = 9, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6558), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6564), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5052), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token18, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6560), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149384] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__newline, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3645), 1, - sym_comment, - ACTIONS(6498), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5180), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147929] = 4, + ACTIONS(5054), 1, + anon_sym_DASH, + STATE(3705), 1, + sym_comment, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6558), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6562), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 14, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [149436] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3646), 1, - sym_comment, - ACTIONS(4888), 7, - anon_sym_DOLLAR, + ACTIONS(5054), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4886), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147971] = 4, + STATE(3706), 1, + sym_comment, + ACTIONS(6552), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6556), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6558), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6554), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 20, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149486] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(3707), 1, + sym_comment, + ACTIONS(1072), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149530] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3647), 1, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3708), 1, sym_comment, - ACTIONS(1060), 3, + STATE(3745), 1, + sym_cell_path, + ACTIONS(1641), 2, anon_sym_GT, - anon_sym_DASH, anon_sym_LT2, - ACTIONS(1062), 28, + ACTIONS(1645), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -339819,9 +346243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -339834,127 +346256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT, - [148013] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3648), 1, - sym_comment, - ACTIONS(2364), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2366), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148055] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3649), 1, - sym_comment, - ACTIONS(2364), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2366), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148097] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3650), 1, - sym_comment, - ACTIONS(2368), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2370), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148139] = 4, + [149580] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3651), 1, + STATE(3709), 1, sym_comment, - ACTIONS(2372), 7, + ACTIONS(2305), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339962,7 +346269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2374), 24, + ACTIONS(2307), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339971,7 +346278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -339987,12 +346294,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148181] = 4, + [149622] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3652), 1, + STATE(3710), 1, sym_comment, - ACTIONS(2376), 7, + ACTIONS(2305), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340000,7 +346307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2378), 24, + ACTIONS(2307), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340009,7 +346316,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340025,12 +346332,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148223] = 4, + [149664] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3653), 1, + STATE(3711), 1, sym_comment, - ACTIONS(2380), 7, + ACTIONS(2462), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340038,7 +346345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2382), 24, + ACTIONS(2464), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340047,7 +346354,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340063,12 +346370,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148265] = 4, + [149706] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3654), 1, + STATE(3712), 1, sym_comment, - ACTIONS(2384), 7, + ACTIONS(2362), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340076,7 +346383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2386), 24, + ACTIONS(2364), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340085,7 +346392,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340101,12 +346408,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148307] = 4, + [149748] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3655), 1, + STATE(3713), 1, sym_comment, - ACTIONS(2388), 7, + ACTIONS(2366), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340114,7 +346421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2390), 24, + ACTIONS(2368), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340123,7 +346430,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340139,12 +346446,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148349] = 4, + [149790] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3656), 1, + STATE(3714), 1, sym_comment, - ACTIONS(2392), 7, + ACTIONS(2466), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340152,7 +346459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2394), 24, + ACTIONS(2468), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340161,7 +346468,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340177,12 +346484,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148391] = 4, + [149832] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3657), 1, + STATE(3715), 1, sym_comment, - ACTIONS(2396), 7, + ACTIONS(2380), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340190,7 +346497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2398), 24, + ACTIONS(2382), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340199,7 +346506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340215,12 +346522,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148433] = 4, + [149874] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3658), 1, + STATE(3716), 1, sym_comment, - ACTIONS(1843), 7, + ACTIONS(2384), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340228,7 +346535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1845), 24, + ACTIONS(2386), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340237,7 +346544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340253,50 +346560,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148475] = 4, + [149916] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3659), 1, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3717), 1, sym_comment, - ACTIONS(2400), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2402), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148517] = 4, + STATE(3750), 1, + sym_cell_path, + ACTIONS(1675), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1677), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [149966] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3660), 1, + STATE(3718), 1, sym_comment, - ACTIONS(2404), 7, + ACTIONS(2517), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340304,7 +346615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2406), 24, + ACTIONS(2519), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340313,7 +346624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340329,50 +346640,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148559] = 4, + [150008] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3661), 1, + ACTIONS(6576), 1, + anon_sym_DOT_DOT2, + STATE(3719), 1, sym_comment, - ACTIONS(1859), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1861), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148601] = 4, + ACTIONS(6578), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2019), 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(2025), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [150054] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3662), 1, + STATE(3720), 1, sym_comment, - ACTIONS(1867), 7, + ACTIONS(2521), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340380,7 +346693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1869), 24, + ACTIONS(2523), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340389,7 +346702,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340405,50 +346718,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148643] = 4, + [150096] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3663), 1, + ACTIONS(6580), 1, + anon_sym_DOT_DOT2, + STATE(3721), 1, sym_comment, - ACTIONS(1871), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1873), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148685] = 4, + ACTIONS(6582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1778), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1786), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [150142] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3664), 1, + STATE(3722), 1, sym_comment, - ACTIONS(2408), 7, + ACTIONS(1848), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340456,7 +346771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2410), 24, + ACTIONS(1850), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340465,7 +346780,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340481,12 +346796,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148727] = 4, + [150184] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3665), 1, + STATE(3723), 1, sym_comment, - ACTIONS(1890), 7, + ACTIONS(2416), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340494,7 +346809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1892), 24, + ACTIONS(2418), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340503,7 +346818,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340519,12 +346834,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148769] = 4, + [150226] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3666), 1, + STATE(3724), 1, sym_comment, - ACTIONS(2412), 7, + ACTIONS(1864), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340532,7 +346847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2414), 24, + ACTIONS(1866), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340541,7 +346856,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340557,12 +346872,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148811] = 4, + [150268] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3667), 1, + STATE(3725), 1, sym_comment, - ACTIONS(2416), 7, + ACTIONS(1872), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340570,7 +346885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2418), 24, + ACTIONS(1874), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340579,7 +346894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340595,12 +346910,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148853] = 4, + [150310] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3668), 1, + STATE(3726), 1, sym_comment, - ACTIONS(1894), 7, + ACTIONS(1876), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340608,7 +346923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1896), 24, + ACTIONS(1878), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340617,7 +346932,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340633,12 +346948,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148895] = 4, + [150352] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3669), 1, + STATE(3727), 1, sym_comment, - ACTIONS(1945), 7, + ACTIONS(2420), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340646,7 +346961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1947), 24, + ACTIONS(2422), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340655,7 +346970,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340671,12 +346986,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148937] = 4, + [150394] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3670), 1, + STATE(3728), 1, sym_comment, - ACTIONS(2420), 7, + ACTIONS(1888), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340684,7 +346999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2422), 24, + ACTIONS(1890), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340693,7 +347008,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340709,50 +347024,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148979] = 4, + [150436] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3671), 1, + STATE(3729), 1, sym_comment, - ACTIONS(2424), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2426), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149021] = 4, + ACTIONS(1675), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1677), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [150478] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3672), 1, + STATE(3730), 1, sym_comment, - ACTIONS(1949), 7, + ACTIONS(2434), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340760,7 +347075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1951), 24, + ACTIONS(2436), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340769,7 +347084,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340785,12 +347100,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149063] = 4, + [150520] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3673), 1, + STATE(3731), 1, sym_comment, - ACTIONS(2428), 7, + ACTIONS(2438), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340798,7 +347113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2430), 24, + ACTIONS(2440), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340807,7 +347122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340823,12 +347138,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149105] = 4, + [150562] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3674), 1, + STATE(3732), 1, sym_comment, - ACTIONS(2432), 7, + ACTIONS(1892), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340836,7 +347151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2434), 24, + ACTIONS(1894), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340845,7 +347160,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -340861,12 +347176,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149147] = 4, + [150604] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3675), 1, + STATE(3733), 1, sym_comment, - ACTIONS(2355), 7, + ACTIONS(5022), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340874,571 +347189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2357), 24, + ACTIONS(5020), 24, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149189] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3676), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(4972), 28, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149233] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3677), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 24, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149279] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3678), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 22, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149327] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3679), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 10, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [149381] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3680), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6582), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 8, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [149437] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - ACTIONS(6584), 1, - aux_sym_expr_binary_token13, - STATE(3681), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6582), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 7, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [149495] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - ACTIONS(6584), 1, - aux_sym_expr_binary_token13, - ACTIONS(6586), 1, - aux_sym_expr_binary_token14, - STATE(3682), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6582), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(4972), 6, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149555] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - ACTIONS(6584), 1, - aux_sym_expr_binary_token13, - ACTIONS(6586), 1, - aux_sym_expr_binary_token14, - ACTIONS(6588), 1, - aux_sym_expr_binary_token15, - STATE(3683), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6582), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(4972), 5, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149617] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - ACTIONS(6584), 1, - aux_sym_expr_binary_token13, - ACTIONS(6586), 1, - aux_sym_expr_binary_token14, - ACTIONS(6588), 1, - aux_sym_expr_binary_token15, - ACTIONS(6590), 1, - aux_sym_expr_binary_token16, - STATE(3684), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6582), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(4972), 4, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149681] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - ACTIONS(6584), 1, - aux_sym_expr_binary_token13, - ACTIONS(6586), 1, - aux_sym_expr_binary_token14, - ACTIONS(6588), 1, - aux_sym_expr_binary_token15, - ACTIONS(6590), 1, - aux_sym_expr_binary_token16, - ACTIONS(6592), 1, - aux_sym_expr_binary_token17, - STATE(3685), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6582), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(4972), 3, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token18, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6578), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149747] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3686), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6580), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 14, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [149799] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_DASH, - STATE(3687), 1, - sym_comment, - ACTIONS(6570), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6574), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6576), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6572), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 20, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [149849] = 4, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + 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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [150646] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3688), 1, + STATE(3734), 1, sym_comment, - ACTIONS(5044), 7, + ACTIONS(1900), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -341446,7 +347227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5042), 24, + ACTIONS(1902), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341455,7 +347236,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -341471,12 +347252,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149891] = 4, + [150688] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3689), 1, + STATE(3735), 1, sym_comment, - ACTIONS(5014), 7, + ACTIONS(2442), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -341484,7 +347265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5012), 24, + ACTIONS(2444), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341493,7 +347274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -341509,12 +347290,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149933] = 4, + [150730] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3736), 1, sym_comment, - ACTIONS(5048), 7, + ACTIONS(2446), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -341522,7 +347303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5046), 24, + ACTIONS(2448), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341531,7 +347312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -341547,92 +347328,88 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149975] = 4, + [150772] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3691), 1, + STATE(3737), 1, sym_comment, - ACTIONS(1052), 3, - anon_sym_GT, + ACTIONS(1904), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1054), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [150017] = 8, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1906), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [150814] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3692), 1, + STATE(3738), 1, sym_comment, - STATE(3737), 1, - sym_cell_path, - ACTIONS(1686), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1688), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [150067] = 4, + ACTIONS(5026), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5024), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [150856] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3693), 1, + STATE(3739), 1, sym_comment, - ACTIONS(5018), 7, + ACTIONS(2450), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -341640,7 +347417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5016), 24, + ACTIONS(2452), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341649,7 +347426,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -341665,51 +347442,50 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150109] = 5, + [150898] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - sym__newline, - ACTIONS(4680), 1, - aux_sym_unquoted_token2, - STATE(3694), 1, + STATE(3740), 1, sym_comment, - ACTIONS(1587), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [150153] = 4, + ACTIONS(2454), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2456), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [150940] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3695), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5026), 7, + ACTIONS(5030), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -341717,7 +347493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5024), 24, + ACTIONS(5028), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341726,7 +347502,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -341742,12 +347518,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150195] = 4, + [150982] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3696), 1, + STATE(3742), 1, sym_comment, - ACTIONS(5030), 7, + ACTIONS(5034), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -341755,7 +347531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5028), 24, + ACTIONS(5032), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341764,7 +347540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -341780,17 +347556,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150237] = 5, + [151024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(3697), 1, + STATE(3743), 1, sym_comment, - ACTIONS(2297), 29, - aux_sym_ctrl_match_token1, + ACTIONS(2241), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -341819,945 +347595,1274 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [150281] = 10, + [151068] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(5181), 1, sym__newline, - STATE(2062), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3698), 1, + STATE(3744), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6528), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6500), 4, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6508), 6, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5192), 13, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5183), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [151126] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3745), 1, + sym_comment, + ACTIONS(1675), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1677), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151167] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6164), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6584), 1, aux_sym_expr_binary_parenthesized_token18, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3746), 1, + sym_comment, + ACTIONS(6120), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6124), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6126), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6162), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6122), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6160), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [150335] = 25, + ACTIONS(6138), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151234] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3699), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3747), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, + STATE(4039), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4421), 1, + STATE(4354), 1, sym__binary_predicate_parenthesized, - STATE(4447), 1, + STATE(4355), 1, sym__predicate, - ACTIONS(6462), 2, + STATE(4358), 1, + sym__expr_unary_minus, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150418] = 25, + [151317] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, + STATE(3748), 1, + sym_comment, + ACTIONS(1572), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [151358] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(5249), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5251), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5257), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6586), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(3749), 1, + sym_comment, + STATE(3785), 1, + aux_sym_shebang_repeat1, + ACTIONS(5233), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5247), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5235), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5243), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151425] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3750), 1, + sym_comment, + ACTIONS(2141), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(2143), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151466] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3700), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3751), 1, sym_comment, - STATE(3719), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_val_number, - STATE(4263), 1, + STATE(4330), 1, sym__binary_predicate_parenthesized, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4282), 1, + STATE(4332), 1, sym__predicate, - ACTIONS(6462), 2, + STATE(4358), 1, + sym__expr_unary_minus, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150501] = 25, + [151549] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3701), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3752), 1, sym_comment, - STATE(3738), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4295), 1, + STATE(4375), 1, sym__binary_predicate_parenthesized, - STATE(4301), 1, + STATE(4376), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150584] = 25, + [151632] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3702), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3753), 1, sym_comment, - STATE(3706), 1, + STATE(3765), 1, aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4309), 1, + STATE(4377), 1, sym__binary_predicate_parenthesized, - STATE(4311), 1, + STATE(4378), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150667] = 25, + [151715] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3703), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3754), 1, sym_comment, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3957), 1, + STATE(3767), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4452), 1, + STATE(4382), 1, sym__binary_predicate_parenthesized, - STATE(4458), 1, + STATE(4383), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150750] = 25, + [151798] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3704), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3755), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, + STATE(4039), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4257), 1, - sym__predicate, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, STATE(4359), 1, sym__binary_predicate_parenthesized, - ACTIONS(6462), 2, + STATE(4410), 1, + sym__predicate, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150833] = 4, + [151881] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3409), 1, + aux_sym_expr_unary_token1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6454), 1, sym__newline, - STATE(3705), 1, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6466), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6468), 1, + aux_sym__val_number_decimal_token4, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3756), 1, sym_comment, - ACTIONS(2247), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [150874] = 25, + STATE(3769), 1, + aux_sym_shebang_repeat1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, + sym_val_number, + STATE(4358), 1, + sym__expr_unary_minus, + STATE(4384), 1, + sym__binary_predicate_parenthesized, + STATE(4386), 1, + sym__predicate, + ACTIONS(6450), 2, + anon_sym_true, + anon_sym_false, + STATE(4480), 2, + sym_expr_unary, + sym_val_bool, + STATE(5134), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [151964] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3706), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3757), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, + STATE(4039), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4332), 1, + STATE(4392), 1, sym__binary_predicate_parenthesized, - STATE(4334), 1, + STATE(4393), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [150957] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2251), 1, - sym__newline, - STATE(3707), 1, - sym_comment, - ACTIONS(2253), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [150998] = 25, + [152047] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3708), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3758), 1, sym_comment, - STATE(3732), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4298), 1, + STATE(4417), 1, sym__binary_predicate_parenthesized, - STATE(4299), 1, + STATE(4419), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151081] = 25, + [152130] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3451), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3457), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, + aux_sym__val_number_decimal_token2, ACTIONS(6466), 1, - sym__newline, + aux_sym__val_number_decimal_token3, ACTIONS(6468), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6590), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6592), 1, + anon_sym_LBRACE, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3759), 1, + sym_comment, + STATE(3841), 1, + sym_expr_parenthesized, + STATE(4267), 1, + sym_val_number, + STATE(4553), 1, + sym__expr_unary_minus, + STATE(4593), 1, + sym__binary_predicate, + STATE(4595), 1, + sym__predicate, + STATE(5120), 1, + sym_val_closure, + ACTIONS(6588), 2, + anon_sym_true, + anon_sym_false, + STATE(4526), 2, + sym_expr_unary, + sym_val_bool, + STATE(5115), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [152213] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3409), 1, + aux_sym_expr_unary_token1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6454), 1, + sym__newline, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3709), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3760), 1, sym_comment, - STATE(3720), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4302), 1, + STATE(4396), 1, sym__binary_predicate_parenthesized, - STATE(4303), 1, + STATE(4400), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151164] = 25, + [152296] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, - sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6460), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3699), 1, - aux_sym_shebang_repeat1, - STATE(3710), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3761), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4307), 1, - sym__binary_predicate_parenthesized, - STATE(4308), 1, + STATE(4478), 1, + sym__binary_predicate, + STATE(4479), 1, sym__predicate, - ACTIONS(6462), 2, + STATE(4941), 1, + sym_val_closure, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151247] = 25, + [152379] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3703), 1, - aux_sym_shebang_repeat1, - STATE(3711), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3762), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4312), 1, + STATE(4408), 1, sym__binary_predicate_parenthesized, - STATE(4315), 1, + STATE(4412), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151330] = 25, + [152462] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + sym__newline, + STATE(3763), 1, + sym_comment, + ACTIONS(2241), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [152503] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3704), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3747), 1, aux_sym_shebang_repeat1, - STATE(3712), 1, + STATE(3764), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4317), 1, + STATE(4413), 1, sym__binary_predicate_parenthesized, - STATE(4318), 1, + STATE(4415), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151413] = 25, + [152586] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3713), 1, - sym_comment, - STATE(3717), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3765), 1, + sym_comment, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4319), 1, + STATE(4329), 1, sym__binary_predicate_parenthesized, - STATE(4320), 1, + STATE(4331), 1, sym__predicate, - ACTIONS(6462), 2, + STATE(4358), 1, + sym__expr_unary_minus, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151496] = 25, + [152669] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + sym__newline, + STATE(3766), 1, + sym_comment, + ACTIONS(2247), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [152710] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3714), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3767), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, + STATE(4039), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4436), 1, + STATE(4336), 1, sym__binary_predicate_parenthesized, - STATE(4443), 1, + STATE(4337), 1, sym__predicate, - ACTIONS(6462), 2, + STATE(4358), 1, + sym__expr_unary_minus, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151579] = 4, + [152793] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(2229), 1, sym__newline, - STATE(3715), 1, + STATE(3768), 1, sym_comment, - ACTIONS(2297), 29, - aux_sym_ctrl_match_token1, + ACTIONS(2233), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -342786,15 +348891,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [151620] = 4, + [152834] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3409), 1, + aux_sym_expr_unary_token1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6454), 1, + sym__newline, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6466), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6468), 1, + aux_sym__val_number_decimal_token4, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3769), 1, + sym_comment, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4039), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, + sym_val_number, + STATE(4343), 1, + sym__binary_predicate_parenthesized, + STATE(4344), 1, + sym__predicate, + STATE(4358), 1, + sym__expr_unary_minus, + ACTIONS(6450), 2, + anon_sym_true, + anon_sym_false, + STATE(4480), 2, + sym_expr_unary, + sym_val_bool, + STATE(5134), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [152917] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4618), 1, + ACTIONS(4614), 1, aux_sym_unquoted_token2, - STATE(3716), 1, + STATE(3770), 1, sym_comment, - ACTIONS(1587), 29, - anon_sym_EQ_GT, + ACTIONS(1572), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -342823,662 +348986,617 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [151661] = 25, + [152958] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3717), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3755), 1, + aux_sym_shebang_repeat1, + STATE(3771), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, - aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4363), 1, + STATE(4420), 1, sym__binary_predicate_parenthesized, - STATE(4404), 1, + STATE(4421), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151744] = 25, + [153041] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3714), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3758), 1, aux_sym_shebang_repeat1, - STATE(3718), 1, + STATE(3772), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4407), 1, + STATE(4424), 1, sym__binary_predicate_parenthesized, - STATE(4418), 1, + STATE(4427), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151827] = 25, + [153124] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3773), 1, + sym_comment, + STATE(4810), 1, + sym_redirection, + ACTIONS(6596), 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(6598), 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(6594), 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, + [153169] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6518), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6520), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6522), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6524), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6526), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6600), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(3774), 1, + sym_comment, + STATE(3778), 1, + aux_sym_shebang_repeat1, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6508), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6510), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6516), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6512), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153236] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3719), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3775), 1, sym_comment, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3957), 1, + STATE(3784), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4330), 1, - sym__predicate, - STATE(4420), 1, + STATE(4422), 1, sym__binary_predicate_parenthesized, - ACTIONS(6462), 2, + STATE(4423), 1, + sym__predicate, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151910] = 25, + [153319] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3720), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3751), 1, + aux_sym_shebang_repeat1, + STATE(3776), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, - aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4293), 1, + STATE(4444), 1, sym__binary_predicate_parenthesized, - STATE(4445), 1, + STATE(4453), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151993] = 25, + [153402] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3721), 1, - sym_comment, - STATE(3724), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3752), 1, aux_sym_shebang_repeat1, STATE(3777), 1, + sym_comment, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4278), 1, + STATE(4466), 1, sym__binary_predicate_parenthesized, - STATE(4285), 1, + STATE(4467), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152076] = 25, + [153485] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, - anon_sym_DASH, - ACTIONS(3441), 1, - aux_sym_expr_unary_token1, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6470), 1, - anon_sym_DOLLAR, - ACTIONS(6474), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, - anon_sym_LPAREN, - ACTIONS(6598), 1, - aux_sym_ctrl_match_token1, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3722), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6542), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6544), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6546), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6602), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(2043), 1, + aux_sym_shebang_repeat1, + STATE(3778), 1, sym_comment, - STATE(3796), 1, - sym_expr_parenthesized, - STATE(4209), 1, - sym_val_number, - STATE(4493), 1, - sym__binary_predicate, - STATE(4494), 1, - sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - STATE(5096), 1, - sym_val_closure, - ACTIONS(6594), 2, - anon_sym_true, - anon_sym_false, - STATE(4496), 2, - sym_expr_unary, - sym_val_bool, - STATE(5093), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [152159] = 25, + ACTIONS(6528), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6532), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6530), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153552] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3723), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3757), 1, + aux_sym_shebang_repeat1, + STATE(3779), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, - aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4453), 1, + STATE(4473), 1, sym__binary_predicate_parenthesized, - STATE(4454), 1, + STATE(4475), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152242] = 25, + [153635] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3724), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3760), 1, + aux_sym_shebang_repeat1, + STATE(3780), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, - aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4430), 1, + STATE(4484), 1, sym__binary_predicate_parenthesized, - STATE(4459), 1, + STATE(4485), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152325] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3725), 1, - sym_comment, - STATE(4903), 1, - sym_redirection, - ACTIONS(6602), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6604), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6600), 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, - [152370] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3726), 1, - sym_comment, - ACTIONS(2137), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(2139), 27, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152411] = 25, + [153718] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6468), 1, + ACTIONS(6454), 1, + sym__newline, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6472), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3727), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3762), 1, + aux_sym_shebang_repeat1, + STATE(3781), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4397), 1, + STATE(4487), 1, + sym__binary_predicate_parenthesized, + STATE(4488), 1, sym__predicate, - STATE(4457), 1, - sym__binary_predicate, - STATE(4891), 1, - sym_val_closure, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152494] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6552), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6554), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6556), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6606), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3728), 1, - sym_comment, - STATE(3731), 1, - aux_sym_shebang_repeat1, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6538), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6546), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6542), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6544), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152561] = 6, + [153801] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3729), 1, + STATE(3782), 1, sym_comment, - STATE(4916), 1, + STATE(4950), 1, sym_redirection, - ACTIONS(6602), 8, + ACTIONS(6596), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343487,7 +349605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6604), 8, + ACTIONS(6598), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343496,7 +349614,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(6608), 13, + ACTIONS(6604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343510,577 +349628,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152606] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_unquoted_token2, - STATE(3730), 1, - sym_comment, - ACTIONS(1587), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152647] = 17, + [153846] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5295), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(6560), 1, + ACTIONS(6136), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6562), 1, + ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6564), 1, + ACTIONS(6142), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6566), 1, + ACTIONS(6152), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6568), 1, + ACTIONS(6154), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6610), 1, + ACTIONS(6606), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(2062), 1, + STATE(3746), 1, aux_sym_shebang_repeat1, - STATE(3731), 1, + STATE(3783), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6502), 2, + ACTIONS(6114), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6504), 2, + ACTIONS(6116), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6558), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6500), 4, + ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6506), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6508), 6, + ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [152714] = 25, + [153913] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6466), 1, + ACTIONS(6454), 1, sym__newline, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3732), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3784), 1, sym_comment, - STATE(3777), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(3957), 1, + STATE(4039), 1, aux_sym_shebang_repeat1, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4289), 1, - sym__predicate, - STATE(4422), 1, + STATE(4319), 1, sym__binary_predicate_parenthesized, - ACTIONS(6462), 2, + STATE(4322), 1, + sym__predicate, + STATE(4358), 1, + sym__expr_unary_minus, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152797] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5224), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5230), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5281), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6612), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3733), 1, - sym_comment, - ACTIONS(5214), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5220), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5226), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5228), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152864] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6174), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6176), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6614), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3734), 1, - sym_comment, - STATE(3735), 1, - aux_sym_shebang_repeat1, - ACTIONS(6154), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6158), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6160), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6166), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6156), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6162), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6164), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152931] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(6194), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6196), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6198), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6200), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6202), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6616), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(2062), 1, - aux_sym_shebang_repeat1, - STATE(3735), 1, - sym_comment, - ACTIONS(6180), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6184), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6186), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6192), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6182), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6188), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6190), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152998] = 17, + [153996] = 17, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5245), 1, + sym__newline, + ACTIONS(5276), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5247), 1, + ACTIONS(5278), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5283), 1, + ACTIONS(5280), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5285), 1, + ACTIONS(5282), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5295), 1, - sym__newline, - ACTIONS(5297), 1, + ACTIONS(5305), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6618), 1, + ACTIONS(6608), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(3733), 1, + STATE(2043), 1, aux_sym_shebang_repeat1, - STATE(3736), 1, + STATE(3785), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5239), 2, + ACTIONS(5226), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5241), 2, + ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5243), 2, + ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5237), 4, + ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5249), 4, + ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5251), 6, + ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [153065] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3737), 1, - sym_comment, - ACTIONS(1625), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1629), 27, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153106] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3387), 1, - anon_sym_DASH, - ACTIONS(3393), 1, - aux_sym_expr_unary_token1, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6466), 1, - sym__newline, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_DOLLAR, - ACTIONS(6474), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, - aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3738), 1, - sym_comment, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3957), 1, - aux_sym_shebang_repeat1, - STATE(4209), 1, - sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4304), 1, - sym__binary_predicate_parenthesized, - STATE(4305), 1, - sym__predicate, - ACTIONS(6462), 2, - anon_sym_true, - anon_sym_false, - STATE(4408), 2, - sym_expr_unary, - sym_val_bool, - STATE(5097), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [153189] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3387), 1, - anon_sym_DASH, - ACTIONS(3393), 1, - aux_sym_expr_unary_token1, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6466), 1, - sym__newline, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_DOLLAR, - ACTIONS(6474), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, - aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3723), 1, - aux_sym_shebang_repeat1, - STATE(3739), 1, - sym_comment, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(4209), 1, - sym_val_number, - STATE(4266), 1, - sym__expr_unary_minus, - STATE(4428), 1, - sym__binary_predicate_parenthesized, - STATE(4434), 1, - sym__predicate, - ACTIONS(6462), 2, - anon_sym_true, - anon_sym_false, - STATE(4408), 2, - sym_expr_unary, - sym_val_bool, - STATE(5097), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [153272] = 10, + [154063] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3740), 1, + STATE(3786), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6628), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6622), 4, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(5052), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 7, - anon_sym_EQ_GT, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [153324] = 15, + [154107] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(6620), 1, aux_sym_expr_binary_token13, - ACTIONS(6636), 1, + ACTIONS(6622), 1, aux_sym_expr_binary_token14, - ACTIONS(6638), 1, + ACTIONS(6624), 1, aux_sym_expr_binary_token15, - ACTIONS(6640), 1, + ACTIONS(6626), 1, aux_sym_expr_binary_token16, - ACTIONS(6642), 1, + ACTIONS(6628), 1, aux_sym_expr_binary_token17, - STATE(3741), 1, + STATE(3787), 1, sym_comment, - ACTIONS(4972), 2, - anon_sym_EQ_GT, + ACTIONS(5052), 2, + anon_sym_LBRACE, aux_sym_expr_binary_token18, - ACTIONS(6620), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6628), 2, + ACTIONS(6618), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6622), 4, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -344097,67 +349871,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153386] = 8, + [154169] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3742), 1, + STATE(3788), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6626), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6622), 4, + ACTIONS(5052), 27, + anon_sym_EQ_GT, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6632), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(4972), 13, - anon_sym_EQ_GT, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [153434] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3743), 1, - sym_comment, - ACTIONS(6620), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6622), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 19, - anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -344176,12 +349907,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153480] = 4, + [154209] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3744), 1, + STATE(3789), 1, sym_comment, - ACTIONS(5110), 8, + STATE(5078), 1, + sym_redirection, + ACTIONS(6596), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344190,7 +349923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5106), 21, + ACTIONS(6598), 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(6636), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344203,152 +349945,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [153520] = 11, + [154253] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6654), 1, - aux_sym_expr_binary_token13, - STATE(3745), 1, + STATE(3790), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6638), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 23, + anon_sym_EQ_GT, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6652), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6646), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6656), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(4972), 6, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6658), 6, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153574] = 10, + [154295] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(3746), 1, + ACTIONS(6620), 1, + aux_sym_expr_binary_token13, + ACTIONS(6622), 1, + aux_sym_expr_binary_token14, + ACTIONS(6624), 1, + aux_sym_expr_binary_token15, + STATE(3791), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6652), 2, + ACTIONS(6618), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6646), 4, + ACTIONS(5052), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6656), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6658), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [153626] = 12, + [154353] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6654), 1, - aux_sym_expr_binary_token13, - ACTIONS(6660), 1, - aux_sym_expr_binary_token14, - STATE(3747), 1, + STATE(3792), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6652), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6646), 4, + ACTIONS(6638), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6656), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(4972), 5, - aux_sym_ctrl_match_token1, + ACTIONS(5052), 21, + anon_sym_EQ_GT, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6658), 6, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153682] = 6, + [154397] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3748), 1, + STATE(3793), 1, sym_comment, - STATE(5035), 1, - sym_redirection, - ACTIONS(6602), 8, + ACTIONS(5130), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344357,16 +350079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6604), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6662), 12, + ACTIONS(5126), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344379,39 +350092,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153726] = 9, + anon_sym_LBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [154437] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3749), 1, + STATE(3794), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6646), 4, + ACTIONS(6638), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6656), 4, + ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6658), 6, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 9, - aux_sym_ctrl_match_token1, + ACTIONS(5052), 9, + anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -344420,145 +350142,173 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [153776] = 13, + [154487] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6654), 1, - aux_sym_expr_binary_token13, - ACTIONS(6660), 1, - aux_sym_expr_binary_token14, - ACTIONS(6664), 1, - aux_sym_expr_binary_token15, - STATE(3750), 1, + STATE(3795), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6652), 2, + ACTIONS(6648), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(4972), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6646), 4, + ACTIONS(6638), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6656), 4, + ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6658), 6, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153834] = 8, + ACTIONS(5052), 7, + anon_sym_EQ_GT, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [154539] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3751), 1, + STATE(3796), 1, + sym_comment, + STATE(5063), 1, + sym_redirection, + ACTIONS(6596), 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(6598), 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(6650), 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, + [154583] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6620), 1, + aux_sym_expr_binary_token13, + STATE(3797), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6646), 4, + ACTIONS(6618), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6658), 6, + ACTIONS(6630), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5052), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 13, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [153882] = 14, + [154637] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6654), 1, - aux_sym_expr_binary_token13, - ACTIONS(6660), 1, - aux_sym_expr_binary_token14, - ACTIONS(6664), 1, - aux_sym_expr_binary_token15, - ACTIONS(6666), 1, - aux_sym_expr_binary_token16, - STATE(3752), 1, + STATE(3798), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(5052), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6652), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(4972), 3, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6646), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6656), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6658), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153942] = 6, + [154677] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3753), 1, + STATE(3799), 1, sym_comment, - STATE(5056), 1, + STATE(5150), 1, sym_redirection, - ACTIONS(6602), 8, + ACTIONS(6652), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344567,7 +350317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6604), 8, + ACTIONS(6654), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344576,7 +350326,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(6668), 12, + ACTIONS(6594), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344588,137 +350339,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [153986] = 7, + [154721] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3754), 1, + ACTIONS(6656), 1, + aux_sym_expr_binary_token13, + STATE(3800), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6646), 4, + ACTIONS(6648), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6638), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4972), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, + ACTIONS(6644), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5052), 6, + anon_sym_EQ_GT, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154032] = 4, + [154775] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3755), 1, + ACTIONS(6656), 1, + aux_sym_expr_binary_token13, + ACTIONS(6658), 1, + aux_sym_expr_binary_token14, + STATE(3801), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(4972), 27, - anon_sym_EQ_GT, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(6648), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(6638), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5052), 5, + anon_sym_EQ_GT, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154072] = 4, + [154831] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(3756), 1, + ACTIONS(6656), 1, + aux_sym_expr_binary_token13, + ACTIONS(6658), 1, + aux_sym_expr_binary_token14, + ACTIONS(6660), 1, + aux_sym_expr_binary_token15, + STATE(3802), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(4972), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(6648), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, + ACTIONS(5052), 4, + anon_sym_EQ_GT, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + ACTIONS(6638), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154112] = 5, + [154889] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3757), 1, + STATE(3803), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6622), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 23, - anon_sym_EQ_GT, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(6612), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6632), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 13, + anon_sym_LBRACE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -344731,82 +350511,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154154] = 6, + [154937] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(3758), 1, + ACTIONS(6656), 1, + aux_sym_expr_binary_token13, + ACTIONS(6658), 1, + aux_sym_expr_binary_token14, + ACTIONS(6660), 1, + aux_sym_expr_binary_token15, + ACTIONS(6662), 1, + aux_sym_expr_binary_token16, + STATE(3804), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6622), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(4972), 21, - anon_sym_EQ_GT, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(6648), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, + ACTIONS(5052), 3, + anon_sym_EQ_GT, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + ACTIONS(6638), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154198] = 9, + [154997] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(3759), 1, + ACTIONS(6656), 1, + aux_sym_expr_binary_token13, + ACTIONS(6658), 1, + aux_sym_expr_binary_token14, + ACTIONS(6660), 1, + aux_sym_expr_binary_token15, + ACTIONS(6662), 1, + aux_sym_expr_binary_token16, + ACTIONS(6664), 1, + aux_sym_expr_binary_token17, + STATE(3805), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(5052), 2, + anon_sym_EQ_GT, + aux_sym_expr_binary_token18, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6622), 4, + ACTIONS(6648), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6638), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, + ACTIONS(6646), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [155059] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3806), 1, + sym_comment, + ACTIONS(6634), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6640), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6642), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6638), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(4972), 9, + ACTIONS(5052), 13, anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, @@ -344816,14 +350640,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [154248] = 6, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [155107] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3760), 1, + STATE(3807), 1, sym_comment, - STATE(4965), 1, + STATE(5023), 1, sym_redirection, - ACTIONS(6670), 8, + ACTIONS(6652), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344832,7 +350660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6672), 8, + ACTIONS(6654), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344841,7 +350669,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(6600), 12, + ACTIONS(6604), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344854,73 +350682,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, - [154292] = 15, + [155151] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6654), 1, - aux_sym_expr_binary_token13, - ACTIONS(6660), 1, - aux_sym_expr_binary_token14, - ACTIONS(6664), 1, - aux_sym_expr_binary_token15, - ACTIONS(6666), 1, - aux_sym_expr_binary_token16, - ACTIONS(6674), 1, - aux_sym_expr_binary_token17, - STATE(3761), 1, + STATE(3808), 1, sym_comment, - ACTIONS(4972), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token18, - ACTIONS(6644), 2, + ACTIONS(6634), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6640), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6652), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6646), 4, + ACTIONS(6638), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6656), 4, + ACTIONS(5052), 19, + anon_sym_EQ_GT, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6658), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154354] = 11, + [155197] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6634), 1, - aux_sym_expr_binary_token13, - STATE(3762), 1, + STATE(3809), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6628), 2, + ACTIONS(6618), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6622), 4, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -344930,13 +350748,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(4972), 6, - anon_sym_EQ_GT, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, @@ -344944,125 +350755,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154408] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(5052), 7, + anon_sym_LBRACE, aux_sym_expr_binary_token13, - ACTIONS(6636), 1, aux_sym_expr_binary_token14, - STATE(3763), 1, - sym_comment, - ACTIONS(6620), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6624), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6626), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6628), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6622), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6630), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(4972), 5, - anon_sym_EQ_GT, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6632), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154464] = 13, + [155249] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6634), 1, - aux_sym_expr_binary_token13, - ACTIONS(6636), 1, - aux_sym_expr_binary_token14, - ACTIONS(6638), 1, - aux_sym_expr_binary_token15, - STATE(3764), 1, + STATE(3810), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6628), 2, + ACTIONS(6612), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5052), 19, + anon_sym_LBRACE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(4972), 4, - anon_sym_EQ_GT, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6622), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154522] = 14, + [155295] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(6620), 1, aux_sym_expr_binary_token13, - ACTIONS(6636), 1, + ACTIONS(6622), 1, aux_sym_expr_binary_token14, - ACTIONS(6638), 1, + ACTIONS(6624), 1, aux_sym_expr_binary_token15, - ACTIONS(6640), 1, + ACTIONS(6626), 1, aux_sym_expr_binary_token16, - STATE(3765), 1, + STATE(3811), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6624), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6626), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6628), 2, + ACTIONS(6618), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(4972), 3, - anon_sym_EQ_GT, + ACTIONS(5052), 3, + anon_sym_LBRACE, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6622), 4, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -345079,59 +350848,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154582] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3766), 1, - sym_comment, - STATE(4992), 1, - sym_redirection, - ACTIONS(6670), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6672), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6608), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [154626] = 5, + [155355] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3767), 1, + STATE(3812), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6646), 4, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4972), 23, - aux_sym_ctrl_match_token1, + ACTIONS(5052), 23, + anon_sym_LBRACE, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -345154,26 +350885,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154668] = 6, + [155397] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3768), 1, + STATE(3813), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6646), 4, + ACTIONS(6616), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(4972), 21, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, + ACTIONS(6630), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6632), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5052), 9, + anon_sym_LBRACE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -345182,130 +350926,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + [155447] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6620), 1, + aux_sym_expr_binary_token13, + ACTIONS(6622), 1, + aux_sym_expr_binary_token14, + STATE(3814), 1, + sym_comment, + ACTIONS(6610), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6614), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6616), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6618), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6612), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5052), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154712] = 23, + [155503] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, - anon_sym_DASH, - ACTIONS(3441), 1, - aux_sym_expr_unary_token1, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6470), 1, - anon_sym_DOLLAR, - ACTIONS(6474), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, - anon_sym_LPAREN, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3769), 1, + STATE(3815), 1, sym_comment, - STATE(3796), 1, - sym_expr_parenthesized, - STATE(4209), 1, - sym_val_number, - STATE(4513), 1, - sym__binary_predicate, - STATE(4514), 1, - sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - ACTIONS(6594), 2, - anon_sym_true, - anon_sym_false, - STATE(4496), 2, - sym_expr_unary, - sym_val_bool, - STATE(5093), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [154789] = 23, + ACTIONS(2291), 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(2295), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [155542] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3441), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(6460), 1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6470), 1, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, - anon_sym_LPAREN, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3770), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3816), 1, sym_comment, - STATE(3796), 1, + STATE(3829), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4515), 1, + STATE(4358), 1, + sym__expr_unary_minus, + STATE(4397), 1, sym__binary_predicate, - STATE(4537), 1, + STATE(4398), 1, sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - ACTIONS(6594), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4496), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5093), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154866] = 4, + [155619] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3771), 1, + STATE(3817), 1, sym_comment, - ACTIONS(4818), 8, + ACTIONS(1778), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345314,7 +351073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4816), 20, + ACTIONS(1786), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345335,12 +351094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [154905] = 4, + [155658] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3772), 1, + STATE(3818), 1, sym_comment, - ACTIONS(2160), 8, + ACTIONS(2297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345349,7 +351108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2162), 20, + ACTIONS(2301), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345370,93 +351129,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [154944] = 4, + [155697] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(3773), 1, + ACTIONS(6158), 1, + aux_sym_expr_binary_token13, + ACTIONS(6174), 1, + aux_sym_expr_binary_token14, + ACTIONS(6176), 1, + aux_sym_expr_binary_token15, + ACTIONS(6178), 1, + aux_sym_expr_binary_token16, + ACTIONS(6180), 1, + aux_sym_expr_binary_token17, + ACTIONS(6666), 1, + aux_sym_expr_binary_token18, + STATE(3819), 1, sym_comment, - ACTIONS(1796), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1804), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [154983] = 15, + ACTIONS(6128), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6144), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6146), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6156), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6130), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6148), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6150), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [155758] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(6620), 1, aux_sym_expr_binary_token13, - ACTIONS(5273), 1, + ACTIONS(6622), 1, aux_sym_expr_binary_token14, - ACTIONS(5275), 1, + ACTIONS(6624), 1, aux_sym_expr_binary_token15, - ACTIONS(5277), 1, + ACTIONS(6626), 1, aux_sym_expr_binary_token16, - ACTIONS(5279), 1, + ACTIONS(6628), 1, aux_sym_expr_binary_token17, - ACTIONS(6676), 1, + ACTIONS(6668), 1, aux_sym_expr_binary_token18, - STATE(3774), 1, + STATE(3820), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(6610), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5261), 2, + ACTIONS(6614), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5263), 2, + ACTIONS(6616), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5269), 2, + ACTIONS(6618), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5259), 4, + ACTIONS(6612), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5265), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5267), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155044] = 4, + [155819] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3775), 1, + STATE(3821), 1, sym_comment, - ACTIONS(2218), 8, + ACTIONS(4798), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345465,7 +351235,7 @@ 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), 20, + ACTIONS(4796), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345486,550 +351256,647 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [155083] = 15, + [155858] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6654), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_token13, - ACTIONS(6660), 1, + ACTIONS(6568), 1, aux_sym_expr_binary_token14, - ACTIONS(6664), 1, + ACTIONS(6570), 1, aux_sym_expr_binary_token15, - ACTIONS(6666), 1, + ACTIONS(6572), 1, aux_sym_expr_binary_token16, - ACTIONS(6674), 1, + ACTIONS(6574), 1, aux_sym_expr_binary_token17, - ACTIONS(6678), 1, + ACTIONS(6670), 1, aux_sym_expr_binary_token18, - STATE(3776), 1, + STATE(3822), 1, sym_comment, - ACTIONS(6644), 2, + ACTIONS(6552), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6648), 2, + ACTIONS(6556), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6650), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6652), 2, + ACTIONS(6564), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6646), 4, + ACTIONS(6554), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6656), 4, + ACTIONS(6560), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6658), 6, + ACTIONS(6562), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155144] = 7, + [155919] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(3777), 1, + ACTIONS(6656), 1, + aux_sym_expr_binary_token13, + ACTIONS(6658), 1, + aux_sym_expr_binary_token14, + ACTIONS(6660), 1, + aux_sym_expr_binary_token15, + ACTIONS(6662), 1, + aux_sym_expr_binary_token16, + ACTIONS(6664), 1, + aux_sym_expr_binary_token17, + ACTIONS(6672), 1, + aux_sym_expr_binary_token18, + STATE(3823), 1, sym_comment, - ACTIONS(6682), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6684), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6686), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6680), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [155189] = 23, + ACTIONS(6634), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6640), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6642), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6648), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6638), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6644), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6646), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [155980] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3778), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3824), 1, sym_comment, - STATE(4209), 1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4259), 1, + STATE(4358), 1, + sym__expr_unary_minus, + STATE(4380), 1, sym__binary_predicate, - STATE(4260), 1, + STATE(4387), 1, sym__predicate, - STATE(4266), 1, - sym__expr_unary_minus, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155266] = 23, + [156057] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3779), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3825), 1, sym_comment, - STATE(4209), 1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4264), 1, - sym__binary_predicate, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4269), 1, + STATE(4388), 1, + sym__binary_predicate, + STATE(4389), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155343] = 23, + [156134] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3780), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3826), 1, sym_comment, - STATE(4209), 1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4272), 1, + STATE(4399), 1, sym__binary_predicate, - STATE(4273), 1, + STATE(4401), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155420] = 15, + [156211] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5345), 1, - aux_sym_expr_binary_token13, - ACTIONS(5347), 1, - aux_sym_expr_binary_token14, - ACTIONS(5349), 1, - aux_sym_expr_binary_token15, - ACTIONS(5353), 1, - aux_sym_expr_binary_token16, - ACTIONS(5355), 1, - aux_sym_expr_binary_token17, - ACTIONS(6690), 1, - aux_sym_expr_binary_token18, - STATE(3781), 1, + ACTIONS(3403), 1, + anon_sym_DASH, + ACTIONS(3409), 1, + aux_sym_expr_unary_token1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6466), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6468), 1, + aux_sym__val_number_decimal_token4, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3827), 1, sym_comment, - ACTIONS(5333), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5337), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5339), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5343), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5335), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5351), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5341), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [155481] = 23, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, + sym_val_number, + STATE(4358), 1, + sym__expr_unary_minus, + STATE(4402), 1, + sym__binary_predicate, + STATE(4403), 1, + sym__predicate, + ACTIONS(6450), 2, + anon_sym_true, + anon_sym_false, + STATE(4480), 2, + sym_expr_unary, + sym_val_bool, + STATE(5134), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156288] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3403), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6468), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3782), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3828), 1, sym_comment, - STATE(4209), 1, + STATE(3829), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(4283), 1, + STATE(4404), 1, sym__binary_predicate, - STATE(4284), 1, + STATE(4409), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6450), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4480), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5134), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155558] = 23, + [156365] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3829), 1, + sym_comment, + ACTIONS(6676), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6682), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6678), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6674), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [156410] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3830), 1, + sym_comment, + ACTIONS(2287), 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(2289), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [156449] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3451), 1, anon_sym_DASH, - ACTIONS(3393), 1, + ACTIONS(3457), 1, aux_sym_expr_unary_token1, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + ACTIONS(6590), 1, + anon_sym_LPAREN, + STATE(3465), 1, sym__val_number, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3783), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3831), 1, sym_comment, - STATE(4209), 1, + STATE(3841), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4553), 1, sym__expr_unary_minus, - STATE(4286), 1, + STATE(4618), 1, sym__binary_predicate, - STATE(4288), 1, + STATE(4619), 1, sym__predicate, - ACTIONS(6462), 2, + ACTIONS(6588), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4526), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5115), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155635] = 15, + [156526] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, + ACTIONS(5381), 1, aux_sym_expr_binary_token13, - ACTIONS(6146), 1, + ACTIONS(5403), 1, aux_sym_expr_binary_token14, - ACTIONS(6148), 1, + ACTIONS(5405), 1, aux_sym_expr_binary_token15, - ACTIONS(6150), 1, + ACTIONS(5407), 1, aux_sym_expr_binary_token16, - ACTIONS(6152), 1, + ACTIONS(5409), 1, aux_sym_expr_binary_token17, - ACTIONS(6692), 1, + ACTIONS(6684), 1, aux_sym_expr_binary_token18, - STATE(3784), 1, + STATE(3832), 1, sym_comment, - ACTIONS(6130), 2, + ACTIONS(5367), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6134), 2, + ACTIONS(5371), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6136), 2, + ACTIONS(5373), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6142), 2, + ACTIONS(5379), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6132), 4, + ACTIONS(5369), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6138), 4, + ACTIONS(5375), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6140), 6, + ACTIONS(5377), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155696] = 15, + [156587] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6584), 1, + ACTIONS(6241), 1, aux_sym_expr_binary_token13, - ACTIONS(6586), 1, + ACTIONS(6243), 1, aux_sym_expr_binary_token14, - ACTIONS(6588), 1, + ACTIONS(6245), 1, aux_sym_expr_binary_token15, - ACTIONS(6590), 1, + ACTIONS(6247), 1, aux_sym_expr_binary_token16, - ACTIONS(6592), 1, + ACTIONS(6249), 1, aux_sym_expr_binary_token17, - ACTIONS(6694), 1, + ACTIONS(6686), 1, aux_sym_expr_binary_token18, - STATE(3785), 1, + STATE(3833), 1, sym_comment, - ACTIONS(6570), 2, + ACTIONS(6204), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6574), 2, + ACTIONS(6208), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6576), 2, + ACTIONS(6210), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6582), 2, + ACTIONS(6239), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6572), 4, + ACTIONS(6206), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6578), 4, + ACTIONS(6235), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6580), 6, + ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155757] = 15, + [156648] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6634), 1, - aux_sym_expr_binary_token13, - ACTIONS(6636), 1, - aux_sym_expr_binary_token14, - ACTIONS(6638), 1, - aux_sym_expr_binary_token15, - ACTIONS(6640), 1, - aux_sym_expr_binary_token16, - ACTIONS(6642), 1, - aux_sym_expr_binary_token17, - ACTIONS(6696), 1, - aux_sym_expr_binary_token18, - STATE(3786), 1, + ACTIONS(3421), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3451), 1, + anon_sym_DASH, + ACTIONS(3457), 1, + aux_sym_expr_unary_token1, + ACTIONS(6448), 1, + sym_identifier, + ACTIONS(6458), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6464), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6466), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6468), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6590), 1, + anon_sym_LPAREN, + STATE(3465), 1, + sym__val_number, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3834), 1, sym_comment, - ACTIONS(6620), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6624), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6626), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6628), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6622), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6630), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6632), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [155818] = 4, + STATE(3841), 1, + sym_expr_parenthesized, + STATE(4267), 1, + sym_val_number, + STATE(4553), 1, + sym__expr_unary_minus, + STATE(4620), 1, + sym__binary_predicate, + STATE(4624), 1, + sym__predicate, + ACTIONS(6588), 2, + anon_sym_true, + anon_sym_false, + STATE(4526), 2, + sym_expr_unary, + sym_val_bool, + STATE(5115), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6452), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156725] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3787), 1, + STATE(3835), 1, sym_comment, - ACTIONS(2224), 8, + ACTIONS(1788), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -346038,7 +351905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2228), 20, + ACTIONS(1796), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346059,421 +351926,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [155857] = 15, + [156764] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6242), 1, + ACTIONS(5292), 1, aux_sym_expr_binary_token13, - ACTIONS(6244), 1, + ACTIONS(5294), 1, aux_sym_expr_binary_token14, - ACTIONS(6246), 1, + ACTIONS(5299), 1, aux_sym_expr_binary_token15, - ACTIONS(6248), 1, + ACTIONS(5310), 1, aux_sym_expr_binary_token16, - ACTIONS(6250), 1, + ACTIONS(5312), 1, aux_sym_expr_binary_token17, - ACTIONS(6698), 1, + ACTIONS(6688), 1, aux_sym_expr_binary_token18, - STATE(3788), 1, + STATE(3836), 1, sym_comment, - ACTIONS(6228), 2, + ACTIONS(5259), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6232), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6234), 2, + ACTIONS(5265), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6240), 2, + ACTIONS(5290), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6230), 4, + ACTIONS(5261), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6236), 4, + ACTIONS(5267), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6238), 6, + ACTIONS(5269), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155918] = 23, + [156825] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, + ACTIONS(3451), 1, anon_sym_DASH, - ACTIONS(3441), 1, + ACTIONS(3457), 1, aux_sym_expr_unary_token1, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, + ACTIONS(6590), 1, anon_sym_LPAREN, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3789), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3837), 1, sym_comment, - STATE(3796), 1, + STATE(3841), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4550), 1, + STATE(4553), 1, + sym__expr_unary_minus, + STATE(4628), 1, sym__binary_predicate, - STATE(4552), 1, + STATE(4629), 1, sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - ACTIONS(6594), 2, + ACTIONS(6588), 2, anon_sym_true, anon_sym_false, - STATE(4496), 2, + STATE(4526), 2, sym_expr_unary, sym_val_bool, - STATE(5093), 2, + STATE(5115), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155995] = 23, + [156902] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, + ACTIONS(3451), 1, anon_sym_DASH, - ACTIONS(3441), 1, + ACTIONS(3457), 1, aux_sym_expr_unary_token1, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, + ACTIONS(6590), 1, anon_sym_LPAREN, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3790), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3838), 1, sym_comment, - STATE(3796), 1, + STATE(3841), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4545), 1, + STATE(4553), 1, + sym__expr_unary_minus, + STATE(4630), 1, sym__binary_predicate, - STATE(4546), 1, + STATE(4631), 1, sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - ACTIONS(6594), 2, + ACTIONS(6588), 2, anon_sym_true, anon_sym_false, - STATE(4496), 2, + STATE(4526), 2, sym_expr_unary, sym_val_bool, - STATE(5093), 2, + STATE(5115), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156072] = 23, + [156979] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, + ACTIONS(3451), 1, anon_sym_DASH, - ACTIONS(3441), 1, + ACTIONS(3457), 1, aux_sym_expr_unary_token1, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, + ACTIONS(6590), 1, anon_sym_LPAREN, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3791), 1, + STATE(3483), 1, + sym__val_number_decimal, + STATE(3839), 1, sym_comment, - STATE(3796), 1, + STATE(3841), 1, sym_expr_parenthesized, - STATE(4209), 1, + STATE(4267), 1, sym_val_number, - STATE(4509), 1, + STATE(4553), 1, + sym__expr_unary_minus, + STATE(4632), 1, sym__binary_predicate, - STATE(4510), 1, + STATE(4634), 1, sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - ACTIONS(6594), 2, + ACTIONS(6588), 2, anon_sym_true, anon_sym_false, - STATE(4496), 2, + STATE(4526), 2, sym_expr_unary, sym_val_bool, - STATE(5093), 2, + STATE(5115), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156149] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3792), 1, - sym_comment, - ACTIONS(1786), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1794), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [156188] = 23, + [157056] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3405), 1, + ACTIONS(3421), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3435), 1, + ACTIONS(3451), 1, anon_sym_DASH, - ACTIONS(3441), 1, + ACTIONS(3457), 1, aux_sym_expr_unary_token1, - ACTIONS(6460), 1, + ACTIONS(6448), 1, sym_identifier, - ACTIONS(6470), 1, + ACTIONS(6458), 1, anon_sym_DOLLAR, - ACTIONS(6474), 1, + ACTIONS(6462), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, + ACTIONS(6464), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, + ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, + ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6596), 1, + ACTIONS(6590), 1, anon_sym_LPAREN, - STATE(3427), 1, - sym__val_number_decimal, - STATE(3437), 1, + STATE(3465), 1, sym__val_number, - STATE(3793), 1, - sym_comment, - STATE(3796), 1, - sym_expr_parenthesized, - STATE(4209), 1, - sym_val_number, - STATE(4511), 1, - sym__binary_predicate, - STATE(4512), 1, - sym__predicate, - STATE(4560), 1, - sym__expr_unary_minus, - ACTIONS(6594), 2, - anon_sym_true, - anon_sym_false, - STATE(4496), 2, - sym_expr_unary, - sym_val_bool, - STATE(5093), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6464), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156265] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3387), 1, - anon_sym_DASH, - ACTIONS(3393), 1, - aux_sym_expr_unary_token1, - ACTIONS(3405), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6460), 1, - sym_identifier, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_DOLLAR, - ACTIONS(6474), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6476), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6478), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6480), 1, - aux_sym__val_number_decimal_token4, - STATE(3427), 1, + STATE(3483), 1, sym__val_number_decimal, - STATE(3437), 1, - sym__val_number, - STATE(3777), 1, - sym_expr_parenthesized, - STATE(3794), 1, + STATE(3840), 1, sym_comment, - STATE(4209), 1, + STATE(3841), 1, + sym_expr_parenthesized, + STATE(4267), 1, sym_val_number, - STATE(4266), 1, + STATE(4553), 1, sym__expr_unary_minus, - STATE(4274), 1, - sym__binary_predicate, - STATE(4275), 1, + STATE(4557), 1, sym__predicate, - ACTIONS(6462), 2, + STATE(4613), 1, + sym__binary_predicate, + ACTIONS(6588), 2, anon_sym_true, anon_sym_false, - STATE(4408), 2, + STATE(4526), 2, sym_expr_unary, sym_val_bool, - STATE(5097), 2, + STATE(5115), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6464), 5, + ACTIONS(6452), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156342] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(6080), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6700), 1, - anon_sym_DOT, - ACTIONS(6704), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token5, - STATE(3795), 1, - sym_comment, - STATE(3909), 1, - sym__immediate_decimal, - ACTIONS(6702), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3332), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1493), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156396] = 7, + [157133] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3796), 1, + STATE(3841), 1, sym_comment, - ACTIONS(6708), 2, + ACTIONS(6690), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6714), 2, + ACTIONS(6696), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6710), 4, + ACTIONS(6692), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6712), 4, + ACTIONS(6694), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6680), 15, + ACTIONS(6674), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346489,30 +352225,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [156440] = 11, + [157177] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6070), 1, anon_sym_DOLLAR, - ACTIONS(6718), 1, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6698), 1, + anon_sym_DOT, + ACTIONS(6702), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6720), 1, + ACTIONS(6704), 1, aux_sym__immediate_decimal_token5, - STATE(3797), 1, + STATE(3842), 1, sym_comment, - STATE(4135), 1, + STATE(3967), 1, sym__immediate_decimal, - ACTIONS(6716), 2, + ACTIONS(6700), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3369), 2, + STATE(3366), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1493), 16, + ACTIONS(1492), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346529,33 +352267,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [156491] = 12, + [157231] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(6301), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6722), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(6724), 1, - anon_sym_DOT, - ACTIONS(6728), 1, + ACTIONS(6708), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6730), 1, + ACTIONS(6710), 1, aux_sym__immediate_decimal_token5, - STATE(3798), 1, + STATE(3843), 1, sym_comment, - STATE(3992), 1, + STATE(4212), 1, sym__immediate_decimal, - ACTIONS(6726), 2, + ACTIONS(6706), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4140), 2, + STATE(3393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1493), 15, - ts_builtin_sym_end, + ACTIONS(1492), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346567,33 +352302,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, anon_sym_and, anon_sym_xor, anon_sym_or, - [156544] = 11, + [157282] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(6082), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6712), 1, anon_sym_DOLLAR, + ACTIONS(6714), 1, + anon_sym_DOT, ACTIONS(6718), 1, aux_sym__immediate_decimal_token4, ACTIONS(6720), 1, aux_sym__immediate_decimal_token5, - STATE(3799), 1, + STATE(3844), 1, sym_comment, - STATE(4144), 1, + STATE(4031), 1, sym__immediate_decimal, ACTIONS(6716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3360), 2, + STATE(4182), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1551), 16, + ACTIONS(1492), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346605,36 +352345,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [156595] = 11, + [157335] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1552), 1, aux_sym_unquoted_token2, - ACTIONS(6301), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6732), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(6736), 1, + ACTIONS(6708), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6738), 1, + ACTIONS(6710), 1, aux_sym__immediate_decimal_token5, - STATE(3800), 1, + STATE(3845), 1, sym_comment, - STATE(4171), 1, + STATE(4178), 1, sym__immediate_decimal, - ACTIONS(6734), 2, + ACTIONS(6706), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4464), 2, + STATE(3401), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1493), 15, - ts_builtin_sym_end, + ACTIONS(1550), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346646,64 +352383,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [156645] = 14, - ACTIONS(3), 1, + [157386] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - sym__space, - ACTIONS(1495), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(2089), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6742), 1, - anon_sym_DOT, - ACTIONS(6744), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6746), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6748), 1, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + ACTIONS(6726), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, + ACTIONS(6728), 1, aux_sym__immediate_decimal_token5, - STATE(3801), 1, + STATE(3846), 1, sym_comment, - STATE(4013), 1, + STATE(4301), 1, sym__immediate_decimal, - STATE(4252), 2, + ACTIONS(6724), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4547), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1479), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [156701] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6754), 1, - aux_sym__immediate_decimal_token2, - STATE(3802), 1, - sym_comment, - ACTIONS(1517), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 21, + ACTIONS(1492), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346715,40 +352424,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [156741] = 11, + [157436] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(1552), 1, aux_sym_unquoted_token2, - ACTIONS(6301), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6732), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - ACTIONS(6736), 1, + ACTIONS(6726), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6738), 1, + ACTIONS(6728), 1, aux_sym__immediate_decimal_token5, - STATE(3803), 1, + STATE(3847), 1, sym_comment, - STATE(4188), 1, + STATE(4228), 1, sym__immediate_decimal, - ACTIONS(6734), 2, + ACTIONS(6724), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4536), 2, + STATE(4598), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1551), 15, + ACTIONS(1550), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346764,31 +352466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [156791] = 11, - ACTIONS(247), 1, + [157486] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(1492), 1, + sym__space, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(2051), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(6732), 1, + anon_sym_DOT, + ACTIONS(6734), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6736), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6738), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(6740), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(6756), 1, - anon_sym_DOT, - STATE(3804), 1, + STATE(3848), 1, sym_comment, - STATE(4139), 1, + STATE(4076), 1, sym__immediate_decimal, - ACTIONS(6305), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4138), 2, + STATE(4292), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1515), 15, - ts_builtin_sym_end, + ACTIONS(1478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346800,22 +352506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156841] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157542] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6758), 1, - anon_sym_DOT, - ACTIONS(6760), 1, + ACTIONS(6742), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6744), 1, aux_sym__immediate_decimal_token2, - STATE(3805), 1, + STATE(3849), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 21, + ACTIONS(1542), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346837,20 +352542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [156881] = 6, + [157582] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6762), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6764), 1, + ACTIONS(6746), 1, + anon_sym_DOT, + ACTIONS(6748), 1, aux_sym__immediate_decimal_token2, - STATE(3806), 1, + STATE(3850), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 20, - ts_builtin_sym_end, + ACTIONS(1520), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346862,6 +352566,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_and, anon_sym_xor, anon_sym_or, @@ -346870,28 +352576,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [156920] = 10, + [157622] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6732), 1, + ACTIONS(6712), 1, anon_sym_DOLLAR, - STATE(3807), 1, + ACTIONS(6750), 1, + anon_sym_DOT, + STATE(3851), 1, sym_comment, - STATE(4525), 1, + STATE(4181), 1, sym__immediate_decimal, - ACTIONS(6371), 2, + ACTIONS(6295), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4524), 2, + STATE(4180), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1623), 15, + ACTIONS(1506), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346907,28 +352615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [156967] = 10, + [157672] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6732), 1, - anon_sym_DOLLAR, - STATE(3808), 1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym__immediate_decimal_token2, + STATE(3852), 1, sym_comment, - STATE(4532), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4529), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1563), 15, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346944,20 +352643,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157014] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [157711] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1822), 1, + anon_sym_DASH, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3853), 1, + sym_comment, + STATE(3996), 1, + sym_cell_path, + ACTIONS(1826), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157754] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6766), 1, + ACTIONS(1832), 1, + anon_sym_DASH, + ACTIONS(5602), 1, anon_sym_DOT, - ACTIONS(6768), 1, - aux_sym__immediate_decimal_token2, - STATE(3809), 1, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3854), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 20, - ts_builtin_sym_end, + STATE(3992), 1, + sym_cell_path, + ACTIONS(1834), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346969,25 +352710,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [157053] = 5, + [157797] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - STATE(3810), 1, + ACTIONS(1876), 1, + anon_sym_DASH, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3855), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 21, + STATE(4016), 1, + sym_cell_path, + ACTIONS(1878), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347000,26 +352746,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [157090] = 5, + [157840] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6770), 1, + ACTIONS(6756), 1, aux_sym__immediate_decimal_token2, - STATE(3811), 1, + STATE(3856), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1554), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 21, + ACTIONS(1556), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347041,29 +352785,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [157127] = 10, - ACTIONS(247), 1, + [157877] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(1492), 1, + sym__space, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(6758), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6760), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6762), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(6764), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6732), 1, - anon_sym_DOLLAR, - STATE(3812), 1, + STATE(3857), 1, sym_comment, - STATE(4584), 1, + STATE(4506), 1, sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4583), 2, + STATE(4671), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1515), 15, - ts_builtin_sym_end, + ACTIONS(1478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347075,25 +352823,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157174] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157930] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1880), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3813), 1, + STATE(2655), 1, + sym_path, + STATE(3858), 1, sym_comment, - STATE(3944), 1, + STATE(4017), 1, sym_cell_path, - ACTIONS(1959), 19, + ACTIONS(1882), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347113,22 +352860,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157217] = 8, + [157973] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1888), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3814), 1, + STATE(2655), 1, + sym_path, + STATE(3859), 1, sym_comment, - STATE(3953), 1, + STATE(4021), 1, sym_cell_path, - ACTIONS(1963), 19, + ACTIONS(1890), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347148,22 +352895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157260] = 8, + [158016] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1892), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3815), 1, + STATE(2655), 1, + sym_path, + STATE(3860), 1, sym_comment, - STATE(3959), 1, + STATE(4022), 1, sym_cell_path, - ACTIONS(1833), 19, + ACTIONS(1894), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347183,22 +352930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157303] = 8, + [158059] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1896), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3816), 1, + STATE(2655), 1, + sym_path, + STATE(3861), 1, sym_comment, - STATE(3963), 1, + STATE(4023), 1, sym_cell_path, - ACTIONS(1837), 19, + ACTIONS(1898), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347218,99 +352965,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157346] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6732), 1, - anon_sym_DOLLAR, - STATE(3817), 1, - sym_comment, - STATE(4523), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4522), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1619), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157393] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1515), 1, - sym__space, - ACTIONS(2089), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, - anon_sym_LPAREN2, - ACTIONS(6744), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6746), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6772), 1, - anon_sym_DOT, - STATE(3818), 1, - sym_comment, - STATE(4231), 1, - sym__immediate_decimal, - STATE(4230), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1505), 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, - [157446] = 8, + [158102] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1836), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3819), 1, + STATE(2655), 1, + sym_path, + STATE(3862), 1, sym_comment, - STATE(3967), 1, + STATE(4000), 1, sym_cell_path, - ACTIONS(1845), 19, + ACTIONS(1838), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347330,22 +353000,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157489] = 8, + [158145] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1900), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3820), 1, + STATE(2655), 1, + sym_path, + STATE(3863), 1, sym_comment, - STATE(3968), 1, + STATE(4025), 1, sym_cell_path, - ACTIONS(1849), 19, + ACTIONS(1902), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347365,22 +353035,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157532] = 8, + [158188] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1904), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3821), 1, + STATE(2655), 1, + sym_path, + STATE(3864), 1, sym_comment, - STATE(3970), 1, + STATE(4026), 1, sym_cell_path, - ACTIONS(1853), 19, + ACTIONS(1906), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347400,22 +353070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157575] = 8, + [158231] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3822), 1, + ACTIONS(6766), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6768), 1, + aux_sym__immediate_decimal_token2, + STATE(3865), 1, sym_comment, - STATE(3971), 1, - sym_cell_path, - ACTIONS(1857), 19, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347427,30 +353095,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [157618] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158270] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1868), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3823), 1, + STATE(2655), 1, + sym_path, + STATE(3866), 1, sym_comment, - STATE(3975), 1, + STATE(4014), 1, sym_cell_path, - ACTIONS(1861), 19, + ACTIONS(1870), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347470,22 +353138,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157661] = 8, - ACTIONS(247), 1, + [158313] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(2170), 1, + anon_sym_DOLLAR, + ACTIONS(6770), 1, + anon_sym_LPAREN2, + ACTIONS(6772), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3824), 1, + ACTIONS(6774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6776), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token5, + STATE(3867), 1, sym_comment, - STATE(3976), 1, - sym_cell_path, - ACTIONS(1865), 19, + STATE(4167), 1, + sym__immediate_decimal, + ACTIONS(1492), 2, + ts_builtin_sym_end, + sym__space, + STATE(4462), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347497,30 +353179,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157704] = 8, + [158368] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1872), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3825), 1, + STATE(2655), 1, + sym_path, + STATE(3868), 1, sym_comment, - STATE(3978), 1, + STATE(4015), 1, sym_cell_path, - ACTIONS(1869), 19, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347540,22 +353214,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157747] = 8, + [158411] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3826), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(3869), 1, sym_comment, - STATE(3979), 1, - sym_cell_path, - ACTIONS(1873), 19, + STATE(4521), 1, + sym__immediate_decimal, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4558), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1506), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347566,31 +353247,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - [157790] = 8, + [158458] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3827), 1, + STATE(2655), 1, + sym_path, + STATE(3870), 1, sym_comment, - STATE(3980), 1, + STATE(4019), 1, sym_cell_path, - ACTIONS(1877), 19, + ACTIONS(1886), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347610,22 +353286,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157833] = 8, + [158501] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1840), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3828), 1, + STATE(2655), 1, + sym_path, + STATE(3871), 1, sym_comment, - STATE(3983), 1, + STATE(4002), 1, sym_cell_path, - ACTIONS(1971), 19, + ACTIONS(1842), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347645,22 +353321,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157876] = 8, + [158544] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(1844), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3829), 1, + STATE(2655), 1, + sym_path, + STATE(3872), 1, sym_comment, - STATE(3985), 1, + STATE(4004), 1, sym_cell_path, - ACTIONS(1892), 19, + ACTIONS(1846), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347680,22 +353356,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157919] = 8, + [158587] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(1848), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3830), 1, + STATE(2655), 1, + sym_path, + STATE(3873), 1, sym_comment, - STATE(3986), 1, + STATE(4005), 1, sym_cell_path, - ACTIONS(1896), 19, + ACTIONS(1850), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347715,22 +353391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157962] = 8, + [158630] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1852), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3831), 1, + STATE(2655), 1, + sym_path, + STATE(3874), 1, sym_comment, - STATE(3988), 1, + STATE(4006), 1, sym_cell_path, - ACTIONS(1939), 19, + ACTIONS(1854), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347750,22 +353426,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158005] = 8, + [158673] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1856), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3832), 1, + STATE(2655), 1, + sym_path, + STATE(3875), 1, sym_comment, - STATE(3989), 1, + STATE(4008), 1, sym_cell_path, - ACTIONS(1947), 19, + ACTIONS(1858), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347785,22 +353461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158048] = 8, + [158716] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1912), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3833), 1, + STATE(2655), 1, + sym_path, + STATE(3876), 1, sym_comment, - STATE(3991), 1, + STATE(3988), 1, sym_cell_path, - ACTIONS(1951), 19, + ACTIONS(1914), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347820,33 +353496,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158091] = 13, - ACTIONS(3), 1, + [158759] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - sym__space, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, - aux_sym__immediate_decimal_token5, - STATE(3834), 1, + ACTIONS(6782), 1, + anon_sym_DOT_DOT2, + ACTIONS(6786), 1, + sym_filesize_unit, + ACTIONS(6788), 1, + sym_duration_unit, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(3877), 1, sym_comment, - STATE(4292), 1, - sym__immediate_decimal, - STATE(4719), 2, + STATE(7254), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1479), 13, + ACTIONS(6784), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347860,22 +353530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158144] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158806] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1860), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(3835), 1, + STATE(2655), 1, + sym_path, + STATE(3878), 1, sym_comment, - STATE(4001), 1, + STATE(4009), 1, sym_cell_path, - ACTIONS(1967), 19, + ACTIONS(1862), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347895,33 +353568,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158187] = 13, - ACTIONS(3), 1, + [158849] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1551), 1, - sym__space, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, - anon_sym_LPAREN2, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, - aux_sym__immediate_decimal_token5, - STATE(3836), 1, + ACTIONS(1864), 1, + anon_sym_DASH, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3879), 1, sym_comment, - STATE(4409), 1, - sym__immediate_decimal, - STATE(4665), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1549), 13, + STATE(4012), 1, + sym_cell_path, + ACTIONS(1866), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347934,28 +353596,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [158240] = 10, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158892] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(6782), 1, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token2, + STATE(3880), 1, + sym_comment, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, - ACTIONS(6786), 1, - sym_filesize_unit, - ACTIONS(6788), 1, - sym_duration_unit, - ACTIONS(6790), 1, aux_sym_unquoted_token2, - STATE(3837), 1, - sym_comment, - STATE(7339), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6784), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 16, + ACTIONS(1520), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347972,36 +353630,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158287] = 14, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158929] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(2174), 1, - anon_sym_DOLLAR, - ACTIONS(6792), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6794), 1, - anon_sym_DOT, - ACTIONS(6796), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6798), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6800), 1, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - STATE(3838), 1, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(3881), 1, sym_comment, - STATE(4087), 1, + STATE(4563), 1, sym__immediate_decimal, - ACTIONS(1493), 2, - ts_builtin_sym_end, - sym__space, - STATE(4416), 2, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4559), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1479), 11, + ACTIONS(1604), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348013,22 +353669,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, - [158342] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158976] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3839), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(3882), 1, sym_comment, - STATE(3974), 1, - sym_cell_path, - ACTIONS(1881), 19, + STATE(4568), 1, + sym__immediate_decimal, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4567), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348040,30 +353706,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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158385] = 8, + [159023] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(3840), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(3883), 1, sym_comment, - STATE(3965), 1, - sym_cell_path, - ACTIONS(1841), 19, + STATE(4590), 1, + sym__immediate_decimal, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4588), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348075,42 +353743,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158428] = 13, + [159070] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2174), 1, + ACTIONS(1550), 1, + sym__space, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(4283), 1, anon_sym_DOLLAR, - ACTIONS(6792), 1, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(6796), 1, + ACTIONS(6758), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6798), 1, + ACTIONS(6760), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6800), 1, + ACTIONS(6762), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, + ACTIONS(6764), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6804), 1, - anon_sym_DOT, - STATE(3841), 1, + STATE(3884), 1, sym_comment, - STATE(4277), 1, + STATE(4310), 1, sym__immediate_decimal, - ACTIONS(1515), 2, - ts_builtin_sym_end, - sym__space, - STATE(4276), 2, + STATE(4796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 11, + ACTIONS(1548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348122,31 +353784,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, - [158480] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159123] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1506), 1, sym__space, - ACTIONS(4263), 1, + ACTIONS(2051), 1, anon_sym_DOLLAR, - ACTIONS(6740), 1, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6806), 1, + ACTIONS(6734), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6808), 1, + ACTIONS(6736), 1, aux_sym__immediate_decimal_token3, - STATE(3842), 1, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6740), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6792), 1, + anon_sym_DOT, + STATE(3885), 1, sym_comment, - STATE(4655), 1, + STATE(4239), 1, sym__immediate_decimal, - STATE(4653), 2, + STATE(4253), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1621), 13, + ACTIONS(1496), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348160,34 +353826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158530] = 13, - ACTIONS(3), 1, + [159176] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(6792), 1, - anon_sym_LPAREN2, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6814), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6816), 1, - aux_sym__immediate_decimal_token5, - STATE(3843), 1, + ACTIONS(1828), 1, + anon_sym_DASH, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(3886), 1, sym_comment, - STATE(4520), 1, - sym__immediate_decimal, - ACTIONS(1551), 2, - ts_builtin_sym_end, - sym__space, - STATE(4819), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1549), 11, + STATE(4040), 1, + sym_cell_path, + ACTIONS(1830), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348199,31 +353853,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, - [158582] = 12, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [159219] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1563), 1, - sym__space, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, - anon_sym_LPAREN2, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6806), 1, + ACTIONS(6794), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token3, - STATE(3844), 1, + ACTIONS(6796), 1, + aux_sym__immediate_decimal_token2, + STATE(3887), 1, sym_comment, - STATE(4663), 1, - sym__immediate_decimal, - STATE(4662), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1561), 13, + ACTIONS(1542), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1540), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348237,15 +353891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158632] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159257] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3845), 1, + STATE(3888), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 21, + ACTIONS(1520), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348267,15 +353923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [158666] = 4, + [159291] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3846), 1, + STATE(3889), 1, sym_comment, - ACTIONS(1639), 2, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1641), 21, + ACTIONS(1542), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348297,31 +353953,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [158700] = 12, + [159325] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1515), 1, + ACTIONS(6798), 1, + anon_sym_DOT, + ACTIONS(6800), 1, + aux_sym__immediate_decimal_token2, + STATE(3890), 1, + sym_comment, + ACTIONS(1520), 6, sym__space, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, anon_sym_LPAREN2, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6806), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token3, - STATE(3847), 1, - sym_comment, - STATE(4715), 1, - sym__immediate_decimal, - STATE(4713), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1505), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348335,19 +353983,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158750] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159363] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6818), 1, - anon_sym_DOT, - ACTIONS(6820), 1, + ACTIONS(6754), 1, aux_sym__immediate_decimal_token2, - STATE(3848), 1, + STATE(3891), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 19, + ACTIONS(1520), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348359,23 +354008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158788] = 4, + sym_filesize_unit, + sym_duration_unit, + [159399] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3849), 1, + STATE(3892), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1554), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 21, + ACTIONS(1556), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348397,23 +354046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [158822] = 6, - ACTIONS(3), 1, + [159433] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6822), 1, - anon_sym_DOT, - ACTIONS(6824), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token2, - STATE(3850), 1, + STATE(3893), 1, sym_comment, - ACTIONS(1499), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1497), 15, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348425,22 +354069,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158860] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [159469] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6768), 1, + ACTIONS(6804), 1, + anon_sym_DOT, + ACTIONS(6806), 1, aux_sym__immediate_decimal_token2, - STATE(3851), 1, + STATE(3894), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1667), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 20, - ts_builtin_sym_end, + ACTIONS(1669), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348452,42 +354101,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_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [158896] = 13, + [159507] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(4227), 1, + ACTIONS(2170), 1, anon_sym_DOLLAR, - ACTIONS(6792), 1, + ACTIONS(6770), 1, anon_sym_LPAREN2, - ACTIONS(6810), 1, + ACTIONS(6774), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, + ACTIONS(6776), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6814), 1, + ACTIONS(6778), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6816), 1, + ACTIONS(6780), 1, aux_sym__immediate_decimal_token5, - STATE(3852), 1, + ACTIONS(6808), 1, + anon_sym_DOT, + STATE(3895), 1, sym_comment, - STATE(4470), 1, + STATE(4461), 1, sym__immediate_decimal, - ACTIONS(1493), 2, + ACTIONS(1506), 2, ts_builtin_sym_end, sym__space, - STATE(4946), 2, + STATE(4460), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1479), 11, + ACTIONS(1496), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348499,15 +354148,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, - [158948] = 4, + [159559] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3853), 1, + STATE(3896), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1653), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 21, + ACTIONS(1655), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348529,31 +354178,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [158982] = 12, + [159593] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(1604), 1, sym__space, - ACTIONS(4263), 1, + ACTIONS(4283), 1, anon_sym_DOLLAR, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token4, ACTIONS(6740), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6810), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6812), 1, + aux_sym__immediate_decimal_token3, + STATE(3897), 1, + sym_comment, + STATE(4737), 1, + sym__immediate_decimal, + STATE(4736), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 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, + [159643] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + sym__space, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(6748), 1, + ACTIONS(6738), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, + ACTIONS(6740), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6806), 1, + ACTIONS(6810), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6808), 1, + ACTIONS(6812), 1, aux_sym__immediate_decimal_token3, - STATE(3854), 1, + STATE(3898), 1, sym_comment, - STATE(4651), 1, + STATE(4742), 1, sym__immediate_decimal, - STATE(4643), 2, + STATE(4740), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1617), 13, + ACTIONS(1586), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348567,19 +354254,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159032] = 6, - ACTIONS(247), 1, + [159693] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6826), 1, + ACTIONS(1584), 1, + sym__space, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6740), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6810), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6828), 1, - aux_sym__immediate_decimal_token2, - STATE(3855), 1, + ACTIONS(6812), 1, + aux_sym__immediate_decimal_token3, + STATE(3899), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 19, + STATE(4748), 1, + sym__immediate_decimal, + STATE(4743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1576), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348593,24 +354292,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + [159743] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(4247), 1, + anon_sym_DOLLAR, + ACTIONS(6770), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159070] = 5, + ACTIONS(6814), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6816), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6818), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6820), 1, + aux_sym__immediate_decimal_token5, + STATE(3900), 1, + sym_comment, + STATE(4578), 1, + sym__immediate_decimal, + ACTIONS(1492), 2, + ts_builtin_sym_end, + sym__space, + STATE(4916), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1478), 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, + [159795] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6830), 1, + ACTIONS(6822), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6824), 1, aux_sym__immediate_decimal_token2, - STATE(3856), 1, + STATE(3901), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1659), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 20, - ts_builtin_sym_end, + ACTIONS(1661), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348622,31 +354355,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_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [159106] = 6, + [159833] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6832), 1, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(4247), 1, + anon_sym_DOLLAR, + ACTIONS(6770), 1, + anon_sym_LPAREN2, + ACTIONS(6814), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6834), 1, - aux_sym__immediate_decimal_token2, - STATE(3857), 1, + ACTIONS(6816), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6818), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6820), 1, + aux_sym__immediate_decimal_token5, + STATE(3902), 1, sym_comment, - ACTIONS(1519), 6, + STATE(4609), 1, + sym__immediate_decimal, + ACTIONS(1550), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1517), 15, + STATE(4891), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1548), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348658,26 +354402,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, - aux_sym_unquoted_token2, - [159144] = 8, + [159885] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1625), 1, + ACTIONS(1641), 1, anon_sym_DOT_DOT2, - ACTIONS(6099), 1, + ACTIONS(6092), 1, anon_sym_DOT, - STATE(3086), 1, + STATE(3132), 1, aux_sym_cell_path_repeat1, - STATE(3122), 1, + STATE(3242), 1, sym_path, - STATE(3543), 1, + STATE(3729), 1, sym_cell_path, - STATE(3858), 1, + STATE(3903), 1, sym_comment, - ACTIONS(1629), 18, + ACTIONS(1645), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348696,22 +354436,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159186] = 8, + [159927] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1686), 1, + ACTIONS(1675), 1, anon_sym_DOT_DOT2, - ACTIONS(6099), 1, + ACTIONS(6092), 1, anon_sym_DOT, - STATE(3086), 1, + STATE(3132), 1, aux_sym_cell_path_repeat1, - STATE(3122), 1, + STATE(3242), 1, sym_path, - STATE(3541), 1, + STATE(3574), 1, sym_cell_path, - STATE(3859), 1, + STATE(3904), 1, sym_comment, - ACTIONS(1688), 18, + ACTIONS(1677), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348730,27 +354470,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159228] = 10, + [159969] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1506), 1, + sym__space, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6740), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6810), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6812), 1, + aux_sym__immediate_decimal_token3, + STATE(3905), 1, + sym_comment, + STATE(4669), 1, + sym__immediate_decimal, + STATE(4668), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1496), 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, + [160019] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(6836), 1, + ACTIONS(6826), 1, anon_sym_DOT_DOT2, - ACTIONS(6840), 1, + ACTIONS(6830), 1, sym_filesize_unit, - ACTIONS(6842), 1, + ACTIONS(6832), 1, sym_duration_unit, - ACTIONS(6844), 1, + ACTIONS(6834), 1, aux_sym_unquoted_token2, - STATE(3860), 1, + STATE(3906), 1, sym_comment, - STATE(7371), 1, + STATE(7247), 1, sym__expr_parenthesized_immediate, - ACTIONS(6838), 2, + ACTIONS(6828), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 15, + ACTIONS(1572), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -348766,22 +354544,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159274] = 8, + [160065] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(1900), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3861), 1, + STATE(3907), 1, sym_comment, - STATE(4115), 1, + STATE(4205), 1, sym_cell_path, - ACTIONS(1865), 17, + ACTIONS(1902), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -348799,54 +354577,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159315] = 14, + [160106] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6846), 1, - anon_sym_DOLLAR, - ACTIONS(6848), 1, - anon_sym_LPAREN2, - ACTIONS(6850), 1, + ACTIONS(1832), 1, + anon_sym_DASH, + ACTIONS(6446), 1, anon_sym_DOT, - ACTIONS(6852), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6854), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6856), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token5, - STATE(3862), 1, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3908), 1, sym_comment, - STATE(4196), 1, - sym__immediate_decimal, - ACTIONS(1479), 2, - sym_identifier, - anon_sym_DASH, - STATE(4463), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1493), 9, - anon_sym_EQ, + STATE(4107), 1, + sym_cell_path, + ACTIONS(1834), 17, + 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_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - [159368] = 4, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160147] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3863), 1, + STATE(3909), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 20, + ACTIONS(1542), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -348867,23 +354639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [159401] = 8, - ACTIONS(247), 1, + [160180] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3864), 1, + ACTIONS(6836), 1, + aux_sym__immediate_decimal_token2, + STATE(3910), 1, sym_comment, - STATE(4094), 1, - sym_cell_path, - ACTIONS(1959), 17, - ts_builtin_sym_end, + ACTIONS(1556), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1554), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348895,22 +354665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159442] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160215] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6820), 1, - aux_sym__immediate_decimal_token2, - STATE(3865), 1, + STATE(3911), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1554), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 19, + ACTIONS(1556), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348922,40 +354690,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159477] = 12, + sym_filesize_unit, + sym_duration_unit, + [160248] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4227), 1, + ACTIONS(4247), 1, anon_sym_DOLLAR, - ACTIONS(6792), 1, + ACTIONS(6770), 1, anon_sym_LPAREN2, - ACTIONS(6800), 1, + ACTIONS(6778), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, + ACTIONS(6780), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6860), 1, + ACTIONS(6838), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6862), 1, + ACTIONS(6840), 1, aux_sym__immediate_decimal_token3, - STATE(3866), 1, + STATE(3912), 1, sym_comment, - STATE(4943), 1, + STATE(4880), 1, sym__immediate_decimal, - ACTIONS(1515), 2, + ACTIONS(1584), 2, ts_builtin_sym_end, sym__space, - STATE(4942), 2, + STATE(4813), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1505), 11, + ACTIONS(1576), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348967,15 +354735,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, - [159526] = 4, + [160297] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3867), 1, + ACTIONS(1868), 1, + anon_sym_DASH, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3913), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 20, + STATE(4157), 1, + sym_cell_path, + ACTIONS(1870), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -348988,30 +354763,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [159559] = 8, + [160338] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1686), 1, - anon_sym_DOT_DOT2, - ACTIONS(6864), 1, + ACTIONS(1852), 1, + anon_sym_DASH, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3737), 1, - sym_cell_path, - STATE(3868), 1, - sym_comment, - STATE(3916), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(4041), 1, + STATE(3677), 1, sym_path, - ACTIONS(1688), 17, + STATE(3914), 1, + sym_comment, + STATE(4143), 1, + sym_cell_path, + ACTIONS(1854), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349024,63 +354796,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159600] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1587), 1, - sym__space, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(6866), 1, - anon_sym_DOT_DOT2, - ACTIONS(6870), 1, - sym_filesize_unit, - ACTIONS(6872), 1, - sym_duration_unit, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - STATE(3869), 1, - sym_comment, - STATE(7453), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6868), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 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, - [159647] = 8, + [160379] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1872), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3870), 1, + STATE(3915), 1, sym_comment, - STATE(3917), 1, + STATE(4171), 1, sym_cell_path, - ACTIONS(1013), 17, + ACTIONS(1874), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349098,22 +354834,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159688] = 8, + [160420] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1856), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3871), 1, + STATE(3916), 1, sym_comment, - STATE(4105), 1, + STATE(4145), 1, sym_cell_path, - ACTIONS(1833), 17, + ACTIONS(1858), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349131,32 +354867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159729] = 12, - ACTIONS(3), 1, + [160461] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(6792), 1, - anon_sym_LPAREN2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token3, - STATE(3872), 1, + ACTIONS(1860), 1, + anon_sym_DASH, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3917), 1, sym_comment, - STATE(4815), 1, - sym__immediate_decimal, - ACTIONS(1563), 2, + STATE(4147), 1, + sym_cell_path, + ACTIONS(1862), 17, ts_builtin_sym_end, - sym__space, - STATE(4814), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1561), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349168,15 +354895,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, - [159778] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160502] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3873), 1, + ACTIONS(1864), 1, + anon_sym_DASH, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3918), 1, sym_comment, - ACTIONS(1639), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 20, + STATE(4153), 1, + sym_cell_path, + ACTIONS(1866), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349189,29 +354928,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [159811] = 5, + [160543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, + ACTIONS(6842), 1, + anon_sym_DOT, + ACTIONS(6844), 1, aux_sym__immediate_decimal_token2, - STATE(3874), 1, + STATE(3919), 1, sym_comment, - ACTIONS(1567), 6, + ACTIONS(1520), 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(1565), 15, + ACTIONS(1518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349223,27 +354962,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, aux_sym_unquoted_token2, - [159846] = 8, + [160580] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1625), 1, - anon_sym_DOT_DOT2, - ACTIONS(6864), 1, - anon_sym_DOT, - STATE(3726), 1, - sym_cell_path, - STATE(3875), 1, + ACTIONS(6846), 1, + aux_sym__immediate_decimal_token2, + STATE(3920), 1, sym_comment, - STATE(3916), 1, - aux_sym_cell_path_repeat1, - STATE(4041), 1, - sym_path, - ACTIONS(1629), 17, - ts_builtin_sym_end, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349255,29 +354986,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159887] = 6, + [160615] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6878), 1, + ACTIONS(4247), 1, + anon_sym_DOLLAR, + ACTIONS(6770), 1, + anon_sym_LPAREN2, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6838), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6880), 1, - aux_sym__immediate_decimal_token2, - STATE(3876), 1, + ACTIONS(6840), 1, + aux_sym__immediate_decimal_token3, + STATE(3921), 1, sym_comment, - ACTIONS(1519), 7, + STATE(4914), 1, + sym__immediate_decimal, + ACTIONS(1506), 2, ts_builtin_sym_end, sym__space, + STATE(4999), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1496), 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, + [160664] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3922), 1, + sym_comment, + ACTIONS(1653), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1517), 13, + [160697] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1836), 1, + anon_sym_DASH, + ACTIONS(6446), 1, + anon_sym_DOT, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3923), 1, + sym_comment, + STATE(4121), 1, + sym_cell_path, + ACTIONS(1838), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349289,26 +355088,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_DOT_DOT2, - aux_sym_unquoted_token2, - [159924] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160738] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6882), 1, - anon_sym_DOT, - ACTIONS(6884), 1, - aux_sym__immediate_decimal_token2, - STATE(3877), 1, + ACTIONS(4247), 1, + anon_sym_DOLLAR, + ACTIONS(6770), 1, + anon_sym_LPAREN2, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6838), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6840), 1, + aux_sym__immediate_decimal_token3, + STATE(3924), 1, sym_comment, - ACTIONS(1499), 7, + STATE(4995), 1, + sym__immediate_decimal, + ACTIONS(1604), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1497), 13, + STATE(4954), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349320,24 +355130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159961] = 8, + [160787] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3878), 1, + STATE(3925), 1, sym_comment, - STATE(4103), 1, + STATE(4172), 1, sym_cell_path, - ACTIONS(1963), 17, + ACTIONS(1878), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349355,22 +355163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160002] = 8, + [160828] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(1005), 1, + anon_sym_DOT_DOT2, + ACTIONS(6848), 1, anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3879), 1, + STATE(3926), 1, sym_comment, - STATE(4107), 1, + STATE(3951), 1, + aux_sym_cell_path_repeat1, + STATE(3953), 1, sym_cell_path, - ACTIONS(1837), 17, + STATE(4081), 1, + sym_path, + ACTIONS(1007), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349383,27 +355191,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160043] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160869] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6850), 1, + anon_sym_DOLLAR, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6854), 1, + anon_sym_DOT, + ACTIONS(6856), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6858), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6860), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6862), 1, + aux_sym__immediate_decimal_token5, + STATE(3927), 1, + sym_comment, + STATE(4277), 1, + sym__immediate_decimal, + ACTIONS(1478), 2, + sym_identifier, + anon_sym_DASH, + STATE(4531), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1492), 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, + [160922] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(1005), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3880), 1, + STATE(3928), 1, sym_comment, - STATE(4108), 1, + STATE(3953), 1, sym_cell_path, - ACTIONS(1841), 17, + ACTIONS(1007), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349421,22 +355268,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160084] = 8, + [160963] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1880), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3881), 1, + STATE(3929), 1, sym_comment, - STATE(4133), 1, + STATE(4173), 1, sym_cell_path, - ACTIONS(1881), 17, + ACTIONS(1882), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349454,22 +355301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160125] = 8, + [161004] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3882), 1, + STATE(3930), 1, sym_comment, - STATE(4110), 1, + STATE(4184), 1, sym_cell_path, - ACTIONS(1845), 17, + ACTIONS(1886), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349487,32 +355334,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160166] = 12, - ACTIONS(3), 1, + [161045] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(6792), 1, - anon_sym_LPAREN2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token3, - STATE(3883), 1, + ACTIONS(1675), 1, + anon_sym_DOT_DOT2, + ACTIONS(6848), 1, + anon_sym_DOT, + STATE(3750), 1, + sym_cell_path, + STATE(3931), 1, sym_comment, - STATE(4813), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, + STATE(3951), 1, + aux_sym_cell_path_repeat1, + STATE(4081), 1, + sym_path, + ACTIONS(1677), 17, ts_builtin_sym_end, - sym__space, - STATE(4919), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349524,22 +355362,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, - [160215] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161086] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1888), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3884), 1, + STATE(3932), 1, sym_comment, - STATE(4111), 1, + STATE(4188), 1, sym_cell_path, - ACTIONS(1849), 17, + ACTIONS(1890), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349557,22 +355400,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160256] = 8, + [161127] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1892), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3885), 1, + STATE(3933), 1, sym_comment, - STATE(4112), 1, + STATE(4190), 1, sym_cell_path, - ACTIONS(1853), 17, + ACTIONS(1894), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349590,22 +355433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160297] = 8, + [161168] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1896), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3886), 1, + STATE(3934), 1, sym_comment, - STATE(4113), 1, + STATE(4191), 1, sym_cell_path, - ACTIONS(1857), 17, + ACTIONS(1898), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349623,23 +355466,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160338] = 8, - ACTIONS(247), 1, + [161209] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1859), 1, - anon_sym_DASH, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3887), 1, + ACTIONS(1572), 1, + sym__space, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(6864), 1, + anon_sym_DOT_DOT2, + ACTIONS(6868), 1, + sym_filesize_unit, + ACTIONS(6870), 1, + sym_duration_unit, + ACTIONS(6872), 1, + aux_sym_unquoted_token2, + STATE(3935), 1, sym_comment, - STATE(4114), 1, - sym_cell_path, - ACTIONS(1861), 17, - ts_builtin_sym_end, + STATE(7369), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6866), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349651,25 +355500,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [160379] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161256] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6886), 1, + ACTIONS(4247), 1, + anon_sym_DOLLAR, + ACTIONS(6770), 1, + anon_sym_LPAREN2, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6838), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token2, - STATE(3888), 1, + ACTIONS(6840), 1, + aux_sym__immediate_decimal_token3, + STATE(3936), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 18, + STATE(4991), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, ts_builtin_sym_end, + sym__space, + STATE(4910), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349681,29 +355539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [160416] = 8, - ACTIONS(247), 1, + [161305] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_DASH, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3889), 1, + ACTIONS(6874), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6876), 1, + aux_sym__immediate_decimal_token2, + STATE(3937), 1, sym_comment, - STATE(4116), 1, - sym_cell_path, - ACTIONS(1869), 17, + ACTIONS(1542), 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(1540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349715,27 +355568,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [160457] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161342] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH, - ACTIONS(6453), 1, - anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3890), 1, + ACTIONS(6878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6880), 1, + aux_sym__immediate_decimal_token2, + STATE(3938), 1, sym_comment, - STATE(4117), 1, - sym_cell_path, - ACTIONS(1873), 17, + ACTIONS(1659), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1661), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349748,27 +355595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160498] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161379] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1822), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3891), 1, + STATE(3939), 1, sym_comment, - STATE(4118), 1, + STATE(4111), 1, sym_cell_path, - ACTIONS(1877), 17, + ACTIONS(1826), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349786,21 +355634,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160539] = 5, + [161420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6824), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token2, - STATE(3892), 1, + STATE(3940), 1, sym_comment, - ACTIONS(1499), 6, + ACTIONS(1520), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1497), 15, + ACTIONS(1518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349816,22 +355664,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [160574] = 8, + [161455] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1912), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3893), 1, + STATE(3941), 1, sym_comment, - STATE(4120), 1, + STATE(4098), 1, sym_cell_path, - ACTIONS(1971), 17, + ACTIONS(1914), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349849,22 +355697,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160615] = 8, + [161496] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3894), 1, + STATE(3942), 1, sym_comment, - STATE(4121), 1, + STATE(4206), 1, sym_cell_path, - ACTIONS(1892), 17, + ACTIONS(1906), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349882,22 +355730,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160656] = 8, + [161537] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, + STATE(3943), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161570] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1840), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3895), 1, + STATE(3944), 1, sym_comment, - STATE(4122), 1, + STATE(4131), 1, sym_cell_path, - ACTIONS(1896), 17, + ACTIONS(1842), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349915,22 +355792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160697] = 8, + [161611] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6882), 1, anon_sym_DOT, - STATE(3483), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, - sym_path, - STATE(3896), 1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(3945), 1, sym_comment, - STATE(4123), 1, - sym_cell_path, - ACTIONS(1939), 17, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349943,27 +355817,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160738] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161648] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1844), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3897), 1, + STATE(3946), 1, sym_comment, - STATE(4125), 1, + STATE(4140), 1, sym_cell_path, - ACTIONS(1947), 17, + ACTIONS(1846), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349981,19 +355856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160779] = 6, + [161689] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6890), 1, + ACTIONS(1828), 1, + anon_sym_DASH, + ACTIONS(6446), 1, anon_sym_DOT, - ACTIONS(6892), 1, - aux_sym__immediate_decimal_token2, - STATE(3898), 1, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3677), 1, + sym_path, + STATE(3947), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 18, + STATE(4163), 1, + sym_cell_path, + ACTIONS(1830), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -350006,28 +355884,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [160816] = 8, + [161730] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1848), 1, anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(6446), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3677), 1, sym_path, - STATE(3899), 1, + STATE(3948), 1, sym_comment, - STATE(4126), 1, + STATE(4142), 1, sym_cell_path, - ACTIONS(1951), 17, + ACTIONS(1850), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -350045,16 +355922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160857] = 4, + [161771] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3900), 1, + ACTIONS(6806), 1, + aux_sym__immediate_decimal_token2, + STATE(3949), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1667), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 20, - ts_builtin_sym_end, + ACTIONS(1669), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350066,30 +355944,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [160890] = 8, + [161806] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH, - ACTIONS(6453), 1, + ACTIONS(1641), 1, + anon_sym_DOT_DOT2, + ACTIONS(6848), 1, anon_sym_DOT, - STATE(3483), 1, + STATE(3745), 1, + sym_cell_path, + STATE(3950), 1, + sym_comment, + STATE(3951), 1, aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(4081), 1, sym_path, - STATE(3901), 1, - sym_comment, - STATE(4130), 1, - sym_cell_path, - ACTIONS(1967), 17, + ACTIONS(1645), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -350102,25 +355980,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_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160931] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161847] = 7, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1011), 1, anon_sym_DOT_DOT2, - ACTIONS(6864), 1, + ACTIONS(6848), 1, anon_sym_DOT, - STATE(3902), 1, + STATE(3951), 1, sym_comment, - STATE(3916), 1, + STATE(3976), 1, aux_sym_cell_path_repeat1, - STATE(3917), 1, - sym_cell_path, - STATE(4041), 1, + STATE(4081), 1, sym_path, ACTIONS(1013), 17, ts_builtin_sym_end, @@ -350140,32 +356016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160972] = 12, - ACTIONS(3), 1, + [161885] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(6792), 1, - anon_sym_LPAREN2, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token3, - STATE(3903), 1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(3952), 1, sym_comment, - STATE(4812), 1, - sym__immediate_decimal, - ACTIONS(1623), 2, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 18, ts_builtin_sym_end, - sym__space, - STATE(4805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1621), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350177,17 +356039,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, - [161021] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161919] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6894), 1, - aux_sym__immediate_decimal_token2, - STATE(3904), 1, + STATE(3953), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1058), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 19, + ACTIONS(1060), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350199,27 +356066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161056] = 4, + [161951] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3905), 1, + STATE(3954), 1, sym_comment, - ACTIONS(1499), 6, + ACTIONS(1556), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1497), 15, + ACTIONS(1554), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350235,17 +356101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [161088] = 5, + [161983] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6892), 1, + ACTIONS(6886), 1, aux_sym__immediate_decimal_token2, - STATE(3906), 1, + STATE(3955), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 18, + ACTIONS(1723), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -350264,52 +356130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161122] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6898), 1, - aux_sym__immediate_decimal_token2, - STATE(3907), 1, - sym_comment, - ACTIONS(1517), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1519), 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, - [161158] = 5, + [162017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6884), 1, + ACTIONS(6888), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6890), 1, aux_sym__immediate_decimal_token2, - STATE(3908), 1, + STATE(3956), 1, sym_comment, - ACTIONS(1499), 7, - ts_builtin_sym_end, + ACTIONS(1661), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1497), 13, + ACTIONS(1659), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350321,23 +356156,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [161192] = 7, + [162053] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(6900), 1, - anon_sym_DOT_DOT2, - STATE(3909), 1, + STATE(3957), 1, sym_comment, - ACTIONS(6902), 2, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 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_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 16, + [162085] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3958), 1, + sym_comment, + ACTIONS(1659), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1661), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350354,24 +356213,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161230] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - STATE(3910), 1, + STATE(3959), 1, sym_comment, - STATE(3998), 1, - aux_sym_cell_path_repeat1, - STATE(4096), 1, - sym_path, - STATE(4164), 1, - sym_cell_path, - ACTIONS(1688), 3, + ACTIONS(1655), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1686), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1653), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350386,14 +356243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [161270] = 4, + aux_sym_unquoted_token2, + [162149] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4926), 1, + ACTIONS(4884), 1, anon_sym_DASH, - STATE(3911), 1, + STATE(3960), 1, sym_comment, - ACTIONS(4924), 20, + ACTIONS(4882), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350414,21 +356272,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [161302] = 6, - ACTIONS(3), 1, + [162181] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token2, - STATE(3912), 1, + ACTIONS(4894), 1, + anon_sym_DASH, + STATE(3961), 1, sym_comment, - ACTIONS(1633), 4, - sym__space, + ACTIONS(4892), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1631), 15, + [162213] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2313), 1, + anon_sym_DASH, + ACTIONS(6892), 1, + anon_sym_LBRACK2, + STATE(3962), 1, + sym_comment, + ACTIONS(2317), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350441,37 +356322,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_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [161338] = 13, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162247] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1494), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(6848), 1, + ACTIONS(6852), 1, anon_sym_LPAREN2, - ACTIONS(6910), 1, + ACTIONS(6894), 1, anon_sym_DOLLAR, - ACTIONS(6912), 1, + ACTIONS(6896), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6914), 1, + ACTIONS(6898), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6916), 1, + ACTIONS(6900), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6918), 1, + ACTIONS(6902), 1, aux_sym__immediate_decimal_token5, - STATE(3913), 1, + STATE(3963), 1, sym_comment, - STATE(4628), 1, + STATE(4670), 1, sym__immediate_decimal, - ACTIONS(1479), 2, + ACTIONS(1478), 2, sym_identifier, anon_sym_DASH, - STATE(5062), 2, + STATE(5093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1493), 9, + ACTIONS(1492), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -350481,16 +356366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161388] = 5, + [162297] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_DASH, - ACTIONS(6920), 1, - anon_sym_LBRACK2, - STATE(3914), 1, + STATE(3964), 1, sym_comment, - ACTIONS(2307), 19, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350503,22 +356387,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161422] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162329] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6904), 1, + anon_sym_DOT, + ACTIONS(6906), 1, + aux_sym__immediate_decimal_token2, + STATE(3965), 1, + sym_comment, + ACTIONS(1669), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1667), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [162365] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3915), 1, + STATE(3966), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1738), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 19, + ACTIONS(1740), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350538,21 +356452,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161454] = 7, + [162397] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(6908), 1, anon_sym_DOT_DOT2, - ACTIONS(6864), 1, - anon_sym_DOT, - STATE(3916), 1, + STATE(3967), 1, sym_comment, - STATE(3920), 1, - aux_sym_cell_path_repeat1, - STATE(4041), 1, - sym_path, - ACTIONS(1019), 17, - ts_builtin_sym_end, + ACTIONS(6910), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350564,21 +356478,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161492] = 4, - ACTIONS(247), 1, + [162435] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3917), 1, + ACTIONS(6912), 1, + anon_sym_DOT, + STATE(3968), 1, sym_comment, - ACTIONS(1064), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1066), 19, - ts_builtin_sym_end, + STATE(4010), 1, + aux_sym_cell_path_repeat1, + STATE(4152), 1, + sym_path, + STATE(4270), 1, + sym_cell_path, + ACTIONS(1645), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1641), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350590,37 +356512,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161524] = 11, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [162475] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6852), 1, anon_sym_LPAREN2, - ACTIONS(6922), 1, - anon_sym_DOT_DOT2, - ACTIONS(6926), 1, - sym_filesize_unit, - ACTIONS(6928), 1, - sym_duration_unit, - ACTIONS(6930), 1, - aux_sym_unquoted_token2, - STATE(3918), 1, + ACTIONS(6894), 1, + anon_sym_DOLLAR, + ACTIONS(6896), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6898), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6900), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6902), 1, + aux_sym__immediate_decimal_token5, + STATE(3969), 1, sym_comment, - STATE(7317), 1, + STATE(4644), 1, + sym__immediate_decimal, + ACTIONS(1548), 2, + sym_identifier, + anon_sym_DASH, + STATE(5108), 2, sym__expr_parenthesized_immediate, - ACTIONS(1587), 2, - ts_builtin_sym_end, + sym_val_variable, + ACTIONS(1550), 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, + [162525] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6912), 1, + anon_sym_DOT, + STATE(3970), 1, + sym_comment, + STATE(4010), 1, + aux_sym_cell_path_repeat1, + STATE(4152), 1, + sym_path, + STATE(4266), 1, + sym_cell_path, + ACTIONS(1677), 3, sym__space, - ACTIONS(6924), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 11, + ACTIONS(1675), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350632,21 +356581,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161570] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [162565] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6932), 1, + ACTIONS(6914), 1, anon_sym_DOT, - ACTIONS(6934), 1, + ACTIONS(6916), 1, aux_sym__immediate_decimal_token2, - STATE(3919), 1, + STATE(3971), 1, sym_comment, - ACTIONS(1645), 4, + ACTIONS(1518), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1520), 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, + [162601] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6920), 1, + aux_sym__immediate_decimal_token2, + STATE(3972), 1, + sym_comment, + ACTIONS(1540), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1542), 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, + [162637] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3973), 1, + sym_comment, + ACTIONS(1520), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350662,20 +356672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [161606] = 6, - ACTIONS(247), 1, + [162669] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DOT_DOT2, - ACTIONS(6936), 1, - anon_sym_DOT, - STATE(4041), 1, - sym_path, - STATE(3920), 2, + ACTIONS(6844), 1, + aux_sym__immediate_decimal_token2, + STATE(3974), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 17, + ACTIONS(1520), 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(1518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350687,29 +356699,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161642] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [162703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - STATE(3921), 1, + STATE(3975), 1, sym_comment, - STATE(3998), 1, - aux_sym_cell_path_repeat1, - STATE(4096), 1, - sym_path, - STATE(4211), 1, - sym_cell_path, - ACTIONS(1013), 3, + ACTIONS(1542), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1011), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1540), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350724,15 +356728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [161682] = 4, + aux_sym_unquoted_token2, + [162735] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3922), 1, - sym_comment, - ACTIONS(1631), 2, + ACTIONS(1015), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 19, + ACTIONS(6922), 1, + anon_sym_DOT, + STATE(4081), 1, + sym_path, + STATE(3976), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350744,42 +356754,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, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161714] = 13, + [162771] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6846), 1, + ACTIONS(6850), 1, anon_sym_DOLLAR, - ACTIONS(6848), 1, - anon_sym_LPAREN2, ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6856), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6854), 1, + ACTIONS(6858), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6856), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6939), 1, + ACTIONS(6925), 1, anon_sym_DOT, - STATE(3923), 1, + STATE(3977), 1, sym_comment, - STATE(4582), 1, + STATE(4556), 1, sym__immediate_decimal, - ACTIONS(1505), 2, + ACTIONS(1496), 2, sym_identifier, anon_sym_DASH, - STATE(4579), 2, + STATE(4525), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1515), 9, + ACTIONS(1506), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -350789,15 +356796,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161764] = 4, + [162821] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3924), 1, - sym_comment, - ACTIONS(1705), 2, - anon_sym_DOT_DOT2, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(1707), 19, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(6927), 1, + anon_sym_DOT_DOT2, + STATE(3978), 1, + sym_comment, + ACTIONS(6929), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350814,25 +356827,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161796] = 5, + [162859] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token2, - STATE(3925), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(6931), 1, + anon_sym_DOT_DOT2, + ACTIONS(6935), 1, + sym_filesize_unit, + ACTIONS(6937), 1, + sym_duration_unit, + ACTIONS(6939), 1, + aux_sym_unquoted_token2, + STATE(3979), 1, sym_comment, - ACTIONS(1567), 7, + STATE(7281), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1572), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(6933), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1565), 13, + ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350844,48 +356862,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, - aux_sym_unquoted_token2, - [161830] = 8, + [162905] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, + ACTIONS(6912), 1, anon_sym_DOT, - STATE(3926), 1, + STATE(3980), 1, sym_comment, - STATE(3998), 1, + STATE(4010), 1, aux_sym_cell_path_repeat1, - STATE(4096), 1, + STATE(4152), 1, sym_path, - STATE(4168), 1, + STATE(4272), 1, sym_cell_path, - ACTIONS(1629), 3, + ACTIONS(1007), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1625), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [161870] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_DASH, - STATE(3927), 1, - sym_comment, - ACTIONS(4886), 20, + ACTIONS(1005), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350898,27 +356892,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [161902] = 4, + anon_sym_DOT_DOT2, + [162945] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3928), 1, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token2, + STATE(3981), 1, sym_comment, - ACTIONS(1641), 6, + ACTIONS(1556), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1639), 15, + ACTIONS(1554), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350930,19 +356921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [161934] = 4, + [162979] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3929), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, + ACTIONS(1667), 1, aux_sym_unquoted_token2, - ACTIONS(1757), 19, + ACTIONS(6943), 1, + anon_sym_DOT, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token2, + STATE(3982), 1, + sym_comment, + ACTIONS(1669), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350960,23 +356952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161966] = 7, + [163014] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(6943), 1, - anon_sym_DOT_DOT2, - STATE(3930), 1, + STATE(3983), 1, sym_comment, - ACTIONS(6945), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 16, + ACTIONS(1038), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1040), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350988,22 +356973,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - [162004] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6947), 1, - aux_sym__immediate_decimal_token2, - STATE(3931), 1, + STATE(3984), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1034), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 18, + anon_sym_DOT, + ACTIONS(1036), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -351016,55 +357000,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162038] = 6, + [163076] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token2, - STATE(3932), 1, + STATE(3985), 1, sym_comment, - ACTIONS(1497), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(1738), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 13, - anon_sym_EQ, + aux_sym_unquoted_token2, + ACTIONS(1740), 18, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162074] = 4, + [163107] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3933), 1, + ACTIONS(6947), 1, + anon_sym_DOT, + STATE(3986), 1, sym_comment, - ACTIONS(1519), 6, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4280), 1, + sym_path, + STATE(4474), 1, + sym_cell_path, + ACTIONS(1645), 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(1517), 15, + ACTIONS(1641), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351076,38 +357063,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162106] = 13, + [163146] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6848), 1, + ACTIONS(6852), 1, anon_sym_LPAREN2, - ACTIONS(6910), 1, + ACTIONS(6860), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6862), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6894), 1, anon_sym_DOLLAR, - ACTIONS(6912), 1, + ACTIONS(6949), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6914), 1, + ACTIONS(6951), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6918), 1, - aux_sym__immediate_decimal_token5, - STATE(3934), 1, + STATE(3987), 1, sym_comment, - STATE(4650), 1, + STATE(5105), 1, sym__immediate_decimal, - ACTIONS(1549), 2, + ACTIONS(1586), 2, sym_identifier, anon_sym_DASH, - STATE(5078), 2, + STATE(5104), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1551), 9, + ACTIONS(1588), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -351117,19 +357099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162156] = 4, - ACTIONS(3), 1, + [163193] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3935), 1, + ACTIONS(1822), 1, + anon_sym_DASH, + STATE(3988), 1, sym_comment, - ACTIONS(1567), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1565), 15, + ACTIONS(1826), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351142,21 +357119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162188] = 5, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [163224] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_QMARK2, - STATE(3936), 1, + ACTIONS(2309), 1, + anon_sym_DASH, + STATE(3989), 1, sym_comment, - ACTIONS(1028), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1030), 17, - ts_builtin_sym_end, + ACTIONS(2311), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351168,26 +357145,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162221] = 6, + [163255] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6955), 1, + ACTIONS(6947), 1, anon_sym_DOT, - STATE(4096), 1, - sym_path, - STATE(3937), 2, + STATE(3990), 1, sym_comment, + STATE(4090), 1, aux_sym_cell_path_repeat1, - ACTIONS(1023), 3, + STATE(4280), 1, + sym_path, + STATE(4489), 1, + sym_cell_path, + ACTIONS(1677), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1021), 14, + ACTIONS(1675), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351199,17 +357183,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_DOT_DOT2, - [162256] = 4, + [163294] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(2466), 1, anon_sym_DASH, - STATE(3938), 1, + STATE(3991), 1, sym_comment, - ACTIONS(2366), 19, + ACTIONS(2468), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351229,14 +357211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162287] = 4, + [163325] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(2388), 1, anon_sym_DASH, - STATE(3939), 1, + STATE(3992), 1, sym_comment, - ACTIONS(1078), 19, + ACTIONS(2390), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351256,14 +357238,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162318] = 4, - ACTIONS(247), 1, + [163356] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, - anon_sym_DASH, - STATE(3940), 1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token2, + STATE(3993), 1, sym_comment, - ACTIONS(2370), 19, + ACTIONS(1661), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1659), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351275,54 +357265,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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162349] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [163391] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6958), 1, - aux_sym__immediate_decimal_token2, - STATE(3941), 1, + STATE(3994), 1, sym_comment, - ACTIONS(1565), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1567), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162382] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(6960), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6962), 1, - aux_sym__immediate_decimal_token2, - STATE(3942), 1, - sym_comment, - ACTIONS(1633), 17, + ACTIONS(1723), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351334,28 +357288,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_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [162417] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6966), 1, - aux_sym__immediate_decimal_token2, - STATE(3943), 1, - sym_comment, - ACTIONS(1633), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1631), 13, + [163422] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2328), 1, + anon_sym_DASH, + STATE(3995), 1, + sym_comment, + ACTIONS(2330), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351367,16 +357313,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162452] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [163453] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(2338), 1, anon_sym_DASH, - STATE(3944), 1, + STATE(3996), 1, sym_comment, - ACTIONS(1963), 19, + ACTIONS(2340), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351396,14 +357348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162483] = 4, + [163484] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(2342), 1, anon_sym_DASH, - STATE(3945), 1, + STATE(3997), 1, sym_comment, - ACTIONS(2357), 19, + ACTIONS(2344), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351423,14 +357375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162514] = 4, + [163515] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2380), 1, + ACTIONS(2517), 1, anon_sym_DASH, - STATE(3946), 1, + STATE(3998), 1, sym_comment, - ACTIONS(2382), 19, + ACTIONS(2519), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351450,22 +357402,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162545] = 7, + [163546] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(5441), 1, anon_sym_LPAREN2, - ACTIONS(6968), 1, + ACTIONS(6957), 1, anon_sym_DOT_DOT2, - STATE(3947), 1, + ACTIONS(6961), 1, + sym_filesize_unit, + ACTIONS(6963), 1, + sym_duration_unit, + ACTIONS(6965), 1, + aux_sym__unquoted_in_list_token2, + STATE(3999), 1, sym_comment, - ACTIONS(6970), 2, + STATE(7361), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1560), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(6959), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 15, - ts_builtin_sym_end, + ACTIONS(1572), 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, + [163591] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2521), 1, + anon_sym_DASH, + STATE(4000), 1, + sym_comment, + ACTIONS(2523), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351477,28 +357455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162582] = 8, - ACTIONS(3), 1, + [163622] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6972), 1, - anon_sym_DOT, - STATE(3948), 1, + ACTIONS(2348), 1, + anon_sym_DASH, + STATE(4001), 1, sym_comment, - STATE(4026), 1, - aux_sym_cell_path_repeat1, - STATE(4249), 1, - sym_path, - STATE(4417), 1, - sym_cell_path, - ACTIONS(1688), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1686), 12, + ACTIONS(2350), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351510,17 +357482,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, - [162621] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [163653] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3949), 1, + ACTIONS(1848), 1, + anon_sym_DASH, + STATE(4002), 1, sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1042), 18, - ts_builtin_sym_end, + ACTIONS(1850), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351532,22 +357509,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162652] = 4, - ACTIONS(247), 1, + [163684] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3950), 1, + ACTIONS(6906), 1, + aux_sym__immediate_decimal_token2, + STATE(4003), 1, sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1046), 18, - ts_builtin_sym_end, + ACTIONS(1669), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1667), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351559,24 +357541,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_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162683] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [163717] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6974), 1, - anon_sym_QMARK2, - STATE(3951), 1, + ACTIONS(2412), 1, + anon_sym_DASH, + STATE(4004), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1036), 17, - ts_builtin_sym_end, + ACTIONS(2414), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351588,19 +357564,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162716] = 4, + [163748] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2453), 1, + ACTIONS(2416), 1, anon_sym_DASH, - STATE(3952), 1, + STATE(4005), 1, sym_comment, - ACTIONS(2455), 19, + ACTIONS(2418), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351620,14 +357599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162747] = 4, + [163779] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(1864), 1, anon_sym_DASH, - STATE(3953), 1, + STATE(4006), 1, sym_comment, - ACTIONS(2459), 19, + ACTIONS(1866), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351647,14 +357626,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162778] = 4, + [163810] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2384), 1, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6862), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6894), 1, + anon_sym_DOLLAR, + ACTIONS(6949), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token3, + STATE(4007), 1, + sym_comment, + STATE(5107), 1, + sym__immediate_decimal, + ACTIONS(1576), 2, + sym_identifier, anon_sym_DASH, - STATE(3954), 1, + STATE(5106), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 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, + [163857] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + anon_sym_DASH, + STATE(4008), 1, sym_comment, - ACTIONS(2386), 19, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351674,14 +357688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162809] = 4, + [163888] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2388), 1, + ACTIONS(1876), 1, anon_sym_DASH, - STATE(3955), 1, + STATE(4009), 1, sym_comment, - ACTIONS(2390), 19, + ACTIONS(1878), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351701,14 +357715,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162840] = 4, + [163919] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6912), 1, + anon_sym_DOT, + STATE(4010), 1, + sym_comment, + STATE(4033), 1, + aux_sym_cell_path_repeat1, + STATE(4152), 1, + sym_path, + ACTIONS(1013), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1011), 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, + [163956] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2392), 1, + ACTIONS(2305), 1, anon_sym_DASH, - STATE(3956), 1, + STATE(4011), 1, sym_comment, - ACTIONS(2394), 19, + ACTIONS(2307), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351728,46 +357772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162871] = 5, + [163987] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6976), 1, - sym__newline, - STATE(3957), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1900), 8, - aux_sym_cmd_identifier_token39, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1898), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - sym_identifier, + ACTIONS(2420), 1, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [162904] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(6979), 1, - anon_sym_DOT, - ACTIONS(6981), 1, - aux_sym__immediate_decimal_token2, - STATE(3958), 1, + STATE(4012), 1, sym_comment, - ACTIONS(1645), 17, + ACTIONS(2422), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351780,19 +357792,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [162939] = 4, + [164018] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2396), 1, - anon_sym_DASH, - STATE(3959), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(6967), 1, + anon_sym_DOT_DOT2, + STATE(4013), 1, sym_comment, - ACTIONS(2398), 19, + ACTIONS(6969), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351804,24 +357826,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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162970] = 4, + [164055] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3960), 1, + ACTIONS(1888), 1, + anon_sym_DASH, + STATE(4014), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 18, - ts_builtin_sym_end, + ACTIONS(1890), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351833,26 +357848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163001] = 4, - ACTIONS(3), 1, + [164086] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3961), 1, + ACTIONS(2434), 1, + anon_sym_DASH, + STATE(4015), 1, sym_comment, - ACTIONS(1519), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1517), 13, + ACTIONS(2436), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351864,18 +357875,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [163032] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164117] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3962), 1, + ACTIONS(2438), 1, + anon_sym_DASH, + STATE(4016), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1050), 18, - ts_builtin_sym_end, + ACTIONS(2440), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351887,20 +357902,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_QMARK2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163063] = 4, + [164148] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1892), 1, anon_sym_DASH, - STATE(3963), 1, + STATE(4017), 1, sym_comment, - ACTIONS(1845), 19, + ACTIONS(1894), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351920,19 +357937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163094] = 5, + [164179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6983), 1, - aux_sym__immediate_decimal_token2, - STATE(3964), 1, + STATE(4018), 1, sym_comment, - ACTIONS(1707), 4, + ACTIONS(1655), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1705), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351944,18 +357962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [163127] = 4, + [164210] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(1900), 1, anon_sym_DASH, - STATE(3965), 1, + STATE(4019), 1, sym_comment, - ACTIONS(2402), 19, + ACTIONS(1902), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351975,14 +357991,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163158] = 4, + [164241] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(6916), 1, + aux_sym__immediate_decimal_token2, + STATE(4020), 1, + sym_comment, + ACTIONS(1518), 6, + sym_identifier, anon_sym_DASH, - STATE(3966), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1520), 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, + [164274] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2442), 1, + anon_sym_DASH, + STATE(4021), 1, sym_comment, - ACTIONS(2366), 19, + ACTIONS(2444), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352002,14 +358046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163189] = 4, + [164305] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2404), 1, + ACTIONS(2446), 1, anon_sym_DASH, - STATE(3967), 1, + STATE(4022), 1, sym_comment, - ACTIONS(2406), 19, + ACTIONS(2448), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352029,14 +358073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163220] = 4, + [164336] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1904), 1, anon_sym_DASH, - STATE(3968), 1, + STATE(4023), 1, sym_comment, - ACTIONS(1861), 19, + ACTIONS(1906), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352056,32 +358100,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163251] = 12, + [164367] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6848), 1, + ACTIONS(6852), 1, anon_sym_LPAREN2, - ACTIONS(6856), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, + ACTIONS(6894), 1, anon_sym_DOLLAR, - ACTIONS(6985), 1, + ACTIONS(6949), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6987), 1, + ACTIONS(6951), 1, aux_sym__immediate_decimal_token3, - STATE(3969), 1, + STATE(4024), 1, sym_comment, - STATE(5061), 1, + STATE(5103), 1, sym__immediate_decimal, - ACTIONS(1505), 2, + ACTIONS(1602), 2, sym_identifier, anon_sym_DASH, - STATE(5060), 2, + STATE(5102), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1515), 9, + ACTIONS(1604), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -352091,14 +358135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163298] = 4, + [164414] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(2450), 1, anon_sym_DASH, - STATE(3970), 1, + STATE(4025), 1, sym_comment, - ACTIONS(1869), 19, + ACTIONS(2452), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352118,14 +358162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163329] = 4, + [164445] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(2454), 1, anon_sym_DASH, - STATE(3971), 1, + STATE(4026), 1, sym_comment, - ACTIONS(1873), 19, + ACTIONS(2456), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352145,20 +358189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163360] = 4, - ACTIONS(3), 1, + [164476] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3972), 1, + ACTIONS(2362), 1, + anon_sym_DASH, + STATE(4027), 1, sym_comment, - ACTIONS(1499), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1497), 13, + ACTIONS(2364), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352170,27 +358208,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [163391] = 9, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, - sym__space, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(6870), 1, - sym_filesize_unit, - ACTIONS(6872), 1, - sym_duration_unit, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - STATE(3973), 1, + STATE(4028), 1, sym_comment, - ACTIONS(4435), 2, + ACTIONS(1520), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352202,16 +358241,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_DOT_DOT2, + aux_sym_unquoted_token2, + [164538] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6971), 1, + aux_sym__immediate_decimal_token2, + STATE(4029), 1, + sym_comment, + ACTIONS(1554), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1556), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [163432] = 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, + [164571] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2366), 1, anon_sym_DASH, - STATE(3974), 1, + STATE(4030), 1, sym_comment, - ACTIONS(2445), 19, + ACTIONS(2368), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352231,14 +358298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163463] = 4, + [164602] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2408), 1, - anon_sym_DASH, - STATE(3975), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(6973), 1, + anon_sym_DOT_DOT2, + STATE(4031), 1, sym_comment, - ACTIONS(2410), 19, + ACTIONS(6975), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352250,22 +358325,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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [163494] = 4, + [164639] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, - anon_sym_DASH, - STATE(3976), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token2, + STATE(4032), 1, sym_comment, - ACTIONS(1892), 19, + ACTIONS(1661), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352278,21 +358352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [163525] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [164674] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2372), 1, - anon_sym_DASH, - STATE(3977), 1, + ACTIONS(6981), 1, + anon_sym_DOT, + STATE(4152), 1, + sym_path, + STATE(4033), 2, sym_comment, - ACTIONS(2374), 19, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1015), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352305,21 +358384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163556] = 4, + anon_sym_DOT_DOT2, + [164709] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2412), 1, - anon_sym_DASH, - STATE(3978), 1, + ACTIONS(6984), 1, + anon_sym_QMARK2, + STATE(4034), 1, sym_comment, - ACTIONS(2414), 19, + ACTIONS(1022), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1024), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352331,22 +358409,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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [163587] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164742] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, - anon_sym_DASH, - STATE(3979), 1, + ACTIONS(6986), 1, + anon_sym_DOT, + ACTIONS(6988), 1, + aux_sym__immediate_decimal_token2, + STATE(4035), 1, sym_comment, - ACTIONS(2418), 19, + ACTIONS(1669), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1667), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352358,22 +358441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163618] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164777] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, - anon_sym_DASH, - STATE(3980), 1, + STATE(4036), 1, sym_comment, - ACTIONS(1896), 19, + ACTIONS(1542), 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(1540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352385,92 +358468,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163649] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6848), 1, - anon_sym_LPAREN2, - ACTIONS(6856), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token3, - STATE(3981), 1, - sym_comment, - STATE(5073), 1, - sym__immediate_decimal, - ACTIONS(1617), 2, - sym_identifier, - anon_sym_DASH, - STATE(5072), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1619), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163696] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6848), 1, - anon_sym_LPAREN2, - ACTIONS(6856), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token3, - STATE(3982), 1, - sym_comment, - STATE(5075), 1, - sym__immediate_decimal, - ACTIONS(1621), 2, - sym_identifier, - anon_sym_DASH, - STATE(5074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1623), 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, - [163743] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164808] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH, - STATE(3983), 1, + ACTIONS(6990), 1, + anon_sym_QMARK2, + STATE(4037), 1, sym_comment, - ACTIONS(1947), 19, + ACTIONS(1028), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1030), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352482,57 +358493,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [163774] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6848), 1, - anon_sym_LPAREN2, - ACTIONS(6856), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token3, - STATE(3984), 1, - sym_comment, - STATE(5077), 1, - sym__immediate_decimal, - ACTIONS(1561), 2, - sym_identifier, - anon_sym_DASH, - STATE(5076), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1563), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163821] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164841] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2420), 1, - anon_sym_DASH, - STATE(3985), 1, + ACTIONS(1572), 1, + sym__space, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(6868), 1, + sym_filesize_unit, + ACTIONS(6870), 1, + sym_duration_unit, + ACTIONS(6872), 1, + aux_sym_unquoted_token2, + STATE(4038), 1, sym_comment, - ACTIONS(2422), 19, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352545,21 +358529,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163852] = 4, + [164882] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6992), 1, + sym__newline, + STATE(4039), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1315), 8, + aux_sym_cmd_identifier_token39, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1313), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [164915] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(1832), 1, anon_sym_DASH, - STATE(3986), 1, + STATE(4040), 1, sym_comment, - ACTIONS(2426), 19, + ACTIONS(1834), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352579,20 +358585,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163883] = 4, + [164946] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3987), 1, + ACTIONS(6947), 1, + anon_sym_DOT, + STATE(4041), 1, sym_comment, - ACTIONS(1567), 7, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4280), 1, + sym_path, + STATE(4507), 1, + sym_cell_path, + ACTIONS(1007), 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(1565), 13, + ACTIONS(1005), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352605,15 +358616,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, - aux_sym_unquoted_token2, - [163914] = 4, + [164985] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1070), 1, anon_sym_DASH, - STATE(3988), 1, + STATE(4042), 1, sym_comment, - ACTIONS(1951), 19, + ACTIONS(1072), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352633,14 +358643,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163945] = 4, + [165016] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6862), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6894), 1, + anon_sym_DOLLAR, + ACTIONS(6949), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token3, + STATE(4043), 1, + sym_comment, + STATE(5092), 1, + sym__immediate_decimal, + ACTIONS(1496), 2, + sym_identifier, anon_sym_DASH, - STATE(3989), 1, + STATE(5155), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1506), 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, + [165063] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2380), 1, + anon_sym_DASH, + STATE(4044), 1, sym_comment, - ACTIONS(2430), 19, + ACTIONS(2382), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352660,41 +358705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3990), 1, - sym_comment, - ACTIONS(1641), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1639), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164007] = 4, + [165094] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2432), 1, + ACTIONS(2384), 1, anon_sym_DASH, - STATE(3991), 1, + STATE(4045), 1, sym_comment, - ACTIONS(2434), 19, + ACTIONS(2386), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352714,22 +358732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164038] = 7, + [165125] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(6989), 1, - anon_sym_DOT_DOT2, - STATE(3992), 1, + ACTIONS(2462), 1, + anon_sym_DASH, + STATE(4046), 1, sym_comment, - ACTIONS(6991), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, - ts_builtin_sym_end, + ACTIONS(2464), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352741,18 +358751,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164075] = 4, + [165156] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3993), 1, + STATE(4047), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1042), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 18, + anon_sym_DOT, + ACTIONS(1044), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352765,31 +358780,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_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164106] = 8, - ACTIONS(3), 1, + [165187] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6972), 1, - anon_sym_DOT, - STATE(3994), 1, + STATE(4048), 1, sym_comment, - STATE(4026), 1, - aux_sym_cell_path_repeat1, - STATE(4249), 1, - sym_path, - STATE(4316), 1, - sym_cell_path, - ACTIONS(1629), 4, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 18, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1625), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352801,20 +358807,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_DOT_DOT2, - [164145] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165218] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token2, - STATE(3995), 1, + STATE(4049), 1, sym_comment, - ACTIONS(1645), 4, + ACTIONS(1723), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 15, + ACTIONS(1721), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352830,25 +358841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [164178] = 8, + [165251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, - anon_sym_DOT, - STATE(3996), 1, + STATE(4050), 1, sym_comment, - STATE(4026), 1, - aux_sym_cell_path_repeat1, - STATE(4249), 1, - sym_path, - STATE(4333), 1, - sym_cell_path, - ACTIONS(1013), 4, + ACTIONS(1556), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1011), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1554), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352861,22 +358867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [164217] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [165282] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6993), 1, - anon_sym_DOT, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token2, - STATE(3997), 1, + STATE(4051), 1, sym_comment, - ACTIONS(1645), 5, + ACTIONS(1659), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1661), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352888,24 +358889,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164252] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - STATE(3937), 1, - aux_sym_cell_path_repeat1, - STATE(3998), 1, - sym_comment, - STATE(4096), 1, - sym_path, - ACTIONS(1019), 3, - sym__space, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1017), 14, + [165313] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_DASH, + STATE(4052), 1, + sym_comment, + ACTIONS(2307), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352918,46 +358915,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [164289] = 5, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [165344] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token2, - STATE(3999), 1, - sym_comment, - ACTIONS(1497), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(1079), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + STATE(4053), 1, + sym_comment, + ACTIONS(1081), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164322] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4000), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 18, - ts_builtin_sym_end, + ACTIONS(6997), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352969,20 +358944,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_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164353] = 4, + [165376] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(2313), 1, anon_sym_DASH, - STATE(4001), 1, + ACTIONS(6999), 1, + anon_sym_LBRACK2, + STATE(4054), 1, sym_comment, - ACTIONS(1881), 19, + ACTIONS(2317), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352994,24 +358971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164384] = 4, + [165408] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4002), 1, - sym_comment, - ACTIONS(1755), 2, + ACTIONS(1079), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 18, - ts_builtin_sym_end, + STATE(4055), 1, + sym_comment, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353023,36 +358998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164415] = 11, + [165440] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(6997), 1, - anon_sym_DOT_DOT2, ACTIONS(7001), 1, - sym_filesize_unit, + aux_sym__immediate_decimal_token1, ACTIONS(7003), 1, - sym_duration_unit, - ACTIONS(7005), 1, - aux_sym__unquoted_in_list_token2, - STATE(4003), 1, + aux_sym__immediate_decimal_token2, + STATE(4056), 1, sym_comment, - STATE(7333), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1575), 2, + ACTIONS(1659), 4, sym_identifier, anon_sym_DASH, - ACTIONS(6999), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 10, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -353063,14 +359028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164460] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165474] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2376), 1, - anon_sym_DASH, - STATE(4004), 1, + STATE(4057), 1, sym_comment, - ACTIONS(2378), 19, + ACTIONS(1044), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1042), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353083,24 +359053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164491] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1085), 1, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - STATE(4005), 1, + anon_sym_DOT, + [165504] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4058), 1, sym_comment, - ACTIONS(1087), 2, + ACTIONS(1040), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 16, + ACTIONS(1038), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353114,18 +359080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164523] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165534] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_DASH, - STATE(4006), 1, + STATE(4059), 1, sym_comment, - ACTIONS(4886), 18, - ts_builtin_sym_end, + ACTIONS(1036), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353137,53 +359104,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [164553] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165564] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, - aux_sym__immediate_decimal_token2, - STATE(4007), 1, + STATE(4060), 1, sym_comment, - ACTIONS(1631), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1669), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164587] = 6, + ACTIONS(1667), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165594] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7013), 1, - aux_sym__immediate_decimal_token2, - STATE(4008), 1, + ACTIONS(1079), 1, + anon_sym_DOT_DOT2, + STATE(4061), 1, sym_comment, - ACTIONS(1633), 16, - ts_builtin_sym_end, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6997), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353195,53 +359157,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_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [164621] = 4, + [165626] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4009), 1, - sym_comment, - ACTIONS(1517), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(1079), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1519), 13, - anon_sym_EQ, + STATE(4062), 1, + sym_comment, + ACTIONS(1081), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6997), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164651] = 8, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [165658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__space, - ACTIONS(7015), 1, - anon_sym_DOT_DOT2, - STATE(4010), 1, + STATE(4063), 1, sym_comment, - ACTIONS(7017), 2, + ACTIONS(1661), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(1659), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353255,52 +359213,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164689] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165688] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7019), 1, - anon_sym_DOT, - STATE(4011), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token2, + STATE(4064), 1, sym_comment, - STATE(4078), 1, - aux_sym_cell_path_repeat1, - STATE(4383), 1, - sym_path, - STATE(4466), 1, - sym_cell_path, - ACTIONS(1686), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1688), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(1661), 16, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164727] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [165722] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4012), 1, + STATE(4065), 1, sym_comment, - ACTIONS(1349), 9, + ACTIONS(1307), 9, aux_sym_cmd_identifier_token39, sym__newline, anon_sym_LPAREN, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1345), 10, + ACTIONS(1311), 10, anon_sym_true, anon_sym_false, aux_sym_cmd_identifier_token38, @@ -353311,45 +359269,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [164757] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__space, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(7021), 1, - anon_sym_DOT_DOT2, - STATE(4013), 1, - sym_comment, - ACTIONS(7023), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 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, - [164795] = 4, + [165752] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4014), 1, + ACTIONS(4884), 1, + anon_sym_DASH, + STATE(4066), 1, sym_comment, - ACTIONS(1060), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1062), 17, + ACTIONS(4882), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -353362,31 +359289,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_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164825] = 9, + anon_sym_LPAREN2, + [165782] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, + anon_sym_EQ, + ACTIONS(7013), 1, + sym__newline, + ACTIONS(7015), 1, + anon_sym_COLON, + ACTIONS(7017), 1, + anon_sym_LPAREN, + ACTIONS(7019), 1, + anon_sym_DASH, + STATE(4067), 1, + sym_comment, + STATE(4238), 1, + sym_flag_capsule, + STATE(4241), 1, + aux_sym_parameter_repeat1, + STATE(5176), 1, + aux_sym_parameter_repeat2, + STATE(6106), 1, + aux_sym_shebang_repeat1, + STATE(5000), 2, + sym_param_type, + sym_param_value, + ACTIONS(7009), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [165832] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT2, - ACTIONS(6926), 1, + ACTIONS(6935), 1, sym_filesize_unit, - ACTIONS(6928), 1, + ACTIONS(6937), 1, sym_duration_unit, - ACTIONS(6930), 1, + ACTIONS(6939), 1, aux_sym_unquoted_token2, - STATE(4015), 1, + STATE(4068), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1572), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4435), 2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1575), 11, + ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353398,43 +359362,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, - [164865] = 4, - ACTIONS(247), 1, + [165872] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4016), 1, + STATE(4069), 1, sym_comment, - ACTIONS(1565), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1567), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1723), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164895] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_DASH, - ACTIONS(7025), 1, - anon_sym_LBRACK2, - STATE(4017), 1, - sym_comment, - ACTIONS(2307), 17, - ts_builtin_sym_end, + ACTIONS(1721), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353446,22 +359384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164927] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165902] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4018), 1, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token2, + STATE(4070), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1723), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + ACTIONS(1721), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353473,21 +359413,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, aux_sym_unquoted_token2, - [164957] = 5, - ACTIONS(247), 1, + [165934] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1085), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, + sym__space, + ACTIONS(7023), 1, anon_sym_DOT_DOT2, - STATE(4019), 1, + STATE(4071), 1, sym_comment, - ACTIONS(1087), 2, + ACTIONS(7025), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7027), 16, + ACTIONS(1778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353501,20 +359445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164989] = 4, + [165972] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4020), 1, + STATE(4072), 1, sym_comment, - ACTIONS(1633), 4, + ACTIONS(1740), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1631), 15, + ACTIONS(1738), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353530,18 +359471,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [165019] = 5, - ACTIONS(3), 1, + [166002] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7029), 1, - anon_sym_QMARK2, - STATE(4021), 1, + ACTIONS(7027), 1, + anon_sym_DOT, + STATE(4073), 1, sym_comment, - ACTIONS(1036), 3, - sym__space, + STATE(4150), 1, + aux_sym_cell_path_repeat1, + STATE(4469), 1, + sym_path, + STATE(4538), 1, + sym_cell_path, + ACTIONS(1675), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1677), 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(1034), 15, + [166040] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(7029), 1, + anon_sym_DOT, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token2, + STATE(4074), 1, + sym_comment, + ACTIONS(1669), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353553,19 +359525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [165051] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [166074] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4022), 1, + ACTIONS(4894), 1, + anon_sym_DASH, + STATE(4075), 1, sym_comment, - ACTIONS(1052), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1054), 17, + ACTIONS(4892), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -353578,27 +359549,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165081] = 6, + anon_sym_LPAREN2, + [166104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DOT, - STATE(4249), 1, - sym_path, - STATE(4023), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 4, - ts_builtin_sym_end, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, sym__space, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(7033), 1, + anon_sym_DOT_DOT2, + STATE(4076), 1, + sym_comment, + ACTIONS(7035), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1021), 12, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353610,17 +359583,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, - [165115] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166142] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - ACTIONS(7034), 1, - aux_sym__immediate_decimal_token2, - STATE(4024), 1, + ACTIONS(7037), 1, + anon_sym_QMARK2, + STATE(4077), 1, sym_comment, - ACTIONS(1707), 17, + ACTIONS(1024), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1022), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353634,25 +359610,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [165147] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [166174] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7036), 1, - anon_sym_DOT, - ACTIONS(7038), 1, - aux_sym__immediate_decimal_token2, - STATE(4025), 1, + STATE(4078), 1, sym_comment, - ACTIONS(1643), 4, + ACTIONS(1518), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 13, + ACTIONS(1520), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -353666,23 +359638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165181] = 7, + [166204] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6972), 1, - anon_sym_DOT, - STATE(4023), 1, - aux_sym_cell_path_repeat1, - STATE(4026), 1, + ACTIONS(6988), 1, + aux_sym__immediate_decimal_token2, + STATE(4079), 1, sym_comment, - STATE(4249), 1, - sym_path, - ACTIONS(1019), 4, + ACTIONS(1669), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1017), 12, + ACTIONS(1667), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353695,19 +359664,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, - [165217] = 4, + aux_sym_unquoted_token2, + [166236] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4027), 1, + STATE(4080), 1, sym_comment, - ACTIONS(1639), 6, + ACTIONS(1540), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1641), 13, + ACTIONS(1542), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -353721,18 +359691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165247] = 6, + [166266] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token2, - STATE(4028), 1, + STATE(4081), 1, sym_comment, - ACTIONS(1645), 16, + ACTIONS(1046), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1048), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -353748,26 +359715,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [165281] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166296] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7019), 1, - anon_sym_DOT, - STATE(4029), 1, + STATE(4082), 1, sym_comment, - STATE(4078), 1, - aux_sym_cell_path_repeat1, - STATE(4383), 1, - sym_path, - STATE(4504), 1, - sym_cell_path, - ACTIONS(1625), 2, + ACTIONS(1554), 6, + sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1629), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1556), 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, + [166326] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4083), 1, + sym_comment, + ACTIONS(1653), 6, sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1655), 13, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -353777,25 +359766,53 @@ 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, + [166356] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7039), 1, + anon_sym_QMARK2, + STATE(4084), 1, + sym_comment, + ACTIONS(1030), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165319] = 8, + ACTIONS(1028), 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_DOT, + [166388] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7019), 1, + ACTIONS(7027), 1, anon_sym_DOT, - STATE(4030), 1, + STATE(4085), 1, sym_comment, - STATE(4078), 1, + STATE(4150), 1, aux_sym_cell_path_repeat1, - STATE(4383), 1, + STATE(4469), 1, sym_path, - STATE(4519), 1, + STATE(4611), 1, sym_cell_path, - ACTIONS(1011), 2, + ACTIONS(1005), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1013), 13, + ACTIONS(1007), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -353809,17 +359826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165357] = 5, + [166426] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1085), 1, - anon_sym_DOT_DOT2, - STATE(4031), 1, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token2, + STATE(4086), 1, sym_comment, - ACTIONS(1087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7027), 16, + ACTIONS(1723), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353836,16 +359852,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165389] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [166458] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4032), 1, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token2, + STATE(4087), 1, sym_comment, - ACTIONS(1042), 3, - sym__space, + ACTIONS(1667), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1040), 16, + [166492] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4088), 1, + sym_comment, + ACTIONS(1050), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1052), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353857,25 +359902,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166522] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4089), 1, + sym_comment, + ACTIONS(1054), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - [165419] = 5, + ACTIONS(1056), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166552] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7044), 1, - aux_sym__immediate_decimal_token2, - STATE(4033), 1, + ACTIONS(6947), 1, + anon_sym_DOT, + STATE(4090), 1, sym_comment, - ACTIONS(1707), 5, + STATE(4091), 1, + aux_sym_cell_path_repeat1, + STATE(4280), 1, + sym_path, + ACTIONS(1013), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1705), 13, + ACTIONS(1011), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353888,18 +359962,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165451] = 4, + [166588] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4034), 1, + ACTIONS(7047), 1, + anon_sym_DOT, + STATE(4280), 1, + sym_path, + STATE(4091), 2, sym_comment, - ACTIONS(1707), 4, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1705), 15, + ACTIONS(1015), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353911,24 +359989,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165481] = 4, + [166622] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4035), 1, + ACTIONS(7027), 1, + anon_sym_DOT, + STATE(4092), 1, sym_comment, - ACTIONS(1497), 6, - sym_identifier, + STATE(4150), 1, + aux_sym_cell_path_repeat1, + STATE(4469), 1, + sym_path, + STATE(4520), 1, + sym_cell_path, + ACTIONS(1641), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 13, + ACTIONS(1645), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -353938,18 +360018,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, - [165511] = 4, + [166660] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4926), 1, - anon_sym_DASH, - STATE(4036), 1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token2, + STATE(4093), 1, sym_comment, - ACTIONS(4924), 18, - ts_builtin_sym_end, + ACTIONS(1669), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353961,24 +360041,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_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [165541] = 5, + [166692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7046), 1, - anon_sym_QMARK2, - STATE(4037), 1, + STATE(4094), 1, sym_comment, - ACTIONS(1030), 3, + ACTIONS(1040), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1028), 15, + ACTIONS(1038), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353990,20 +360069,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_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [165573] = 5, - ACTIONS(247), 1, + [166721] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(6981), 1, - aux_sym__immediate_decimal_token2, - STATE(4038), 1, + ACTIONS(1677), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4095), 1, sym_comment, - ACTIONS(1645), 17, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4266), 1, + sym_cell_path, + STATE(4566), 1, + sym_path, + ACTIONS(1675), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354017,57 +360101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [165605] = 14, + [166758] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7050), 1, - anon_sym_EQ, - ACTIONS(7052), 1, - sym__newline, - ACTIONS(7054), 1, - anon_sym_COLON, - ACTIONS(7056), 1, - anon_sym_LPAREN, - ACTIONS(7058), 1, - anon_sym_COMMA, - ACTIONS(7060), 1, - anon_sym_DASH, - STATE(4039), 1, - sym_comment, - STATE(4182), 1, - sym_flag_capsule, - STATE(4183), 1, - aux_sym_parameter_repeat1, - STATE(5145), 1, - aux_sym_parameter_repeat2, - STATE(6214), 1, - aux_sym_shebang_repeat1, - STATE(5091), 2, - sym_param_type, - sym_param_value, - ACTIONS(7048), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165655] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4040), 1, - sym_comment, - ACTIONS(1645), 4, - sym__space, + ACTIONS(3978), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 15, + STATE(4096), 1, + sym_comment, + STATE(7257), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7052), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354081,17 +360124,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, - aux_sym_unquoted_token2, - [165685] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166789] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4041), 1, + ACTIONS(2462), 1, + anon_sym_DASH, + STATE(4097), 1, sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1058), 17, + ACTIONS(2464), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354104,48 +360147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165715] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4042), 1, - sym_comment, - ACTIONS(1050), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1048), 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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [165745] = 5, + [166818] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1085), 1, - anon_sym_DOT_DOT2, - STATE(4043), 1, + ACTIONS(1822), 1, + anon_sym_DASH, + STATE(4098), 1, sym_comment, - ACTIONS(1087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7027), 16, + ACTIONS(1826), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354157,48 +360172,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [165777] = 5, - ACTIONS(3), 1, + [166847] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token2, - STATE(4044), 1, + ACTIONS(2309), 1, + anon_sym_DASH, + STATE(4099), 1, sym_comment, - ACTIONS(1645), 5, + ACTIONS(2311), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165809] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4045), 1, - sym_comment, - ACTIONS(1046), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1044), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354210,27 +360197,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [165839] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166876] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(1906), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4046), 1, + STATE(4100), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4641), 1, + STATE(4715), 1, sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(1904), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354244,22 +360231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165876] = 8, + [166913] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4047), 1, + ACTIONS(7054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7056), 1, + aux_sym__immediate_decimal_token2, + STATE(4101), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4705), 1, - sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(1661), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1659), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354273,22 +360257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165913] = 8, + aux_sym_unquoted_token2, + [166946] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1013), 1, + ACTIONS(1902), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4048), 1, + STATE(4102), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4211), 1, - sym_cell_path, - STATE(4478), 1, + STATE(4566), 1, sym_path, - ACTIONS(1011), 13, + STATE(4648), 1, + sym_cell_path, + ACTIONS(1900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354302,22 +360287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165950] = 8, - ACTIONS(3), 1, + [166983] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1967), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4049), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4103), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4683), 1, - sym_cell_path, - ACTIONS(1965), 13, + STATE(7257), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7052), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354331,18 +360310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165987] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4050), 1, + STATE(4104), 1, sym_comment, - ACTIONS(1645), 5, + ACTIONS(1661), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 13, + ACTIONS(1659), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354356,17 +360338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [166016] = 4, + [167043] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4051), 1, - sym_comment, - ACTIONS(1042), 4, - ts_builtin_sym_end, + ACTIONS(1870), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1040), 14, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4105), 1, + sym_comment, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4776), 1, + sym_cell_path, + ACTIONS(1868), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354378,20 +360365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166045] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167080] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4052), 1, + ACTIONS(2466), 1, + anon_sym_DASH, + STATE(4106), 1, sym_comment, - ACTIONS(1046), 4, + ACTIONS(2468), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1044), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354403,20 +360387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166074] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167109] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4053), 1, + ACTIONS(2388), 1, + anon_sym_DASH, + STATE(4107), 1, sym_comment, - ACTIONS(1050), 4, + ACTIONS(2390), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1048), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354428,25 +360412,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_QMARK2, - anon_sym_DOT_DOT2, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167138] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1874), 1, + sym__space, + ACTIONS(7050), 1, anon_sym_DOT, - [166103] = 8, + STATE(4108), 1, + sym_comment, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4780), 1, + sym_cell_path, + ACTIONS(1872), 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, + [167175] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(1854), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4054), 1, + STATE(4109), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4639), 1, + STATE(4805), 1, sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(1852), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354460,16 +360475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166140] = 5, + [167212] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - ACTIONS(7064), 1, - aux_sym__immediate_decimal_token2, - STATE(4055), 1, + ACTIONS(2328), 1, + anon_sym_DASH, + STATE(4110), 1, sym_comment, - ACTIONS(1707), 16, + ACTIONS(2330), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354482,22 +360495,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [166171] = 4, - ACTIONS(3), 1, + [167241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4056), 1, + ACTIONS(2338), 1, + anon_sym_DASH, + STATE(4111), 1, sym_comment, - ACTIONS(1633), 5, + ACTIONS(2340), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1631), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354509,21 +360520,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, - aux_sym_unquoted_token2, - [166200] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167270] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7066), 1, + ACTIONS(1858), 1, + sym__space, + ACTIONS(7050), 1, anon_sym_DOT, - ACTIONS(7068), 1, - aux_sym__immediate_decimal_token2, - STATE(4057), 1, + STATE(4112), 1, sym_comment, - ACTIONS(1645), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1643), 14, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4710), 1, + sym_cell_path, + ACTIONS(1856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354537,19 +360554,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [166233] = 4, + [167307] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4058), 1, - sym_comment, - ACTIONS(1707), 5, - ts_builtin_sym_end, + ACTIONS(1886), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1705), 13, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4113), 1, + sym_comment, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4789), 1, + sym_cell_path, + ACTIONS(1884), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354561,18 +360581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [166262] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167344] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4059), 1, + ACTIONS(2380), 1, + anon_sym_DASH, + STATE(4114), 1, sym_comment, - ACTIONS(1062), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1060), 15, + ACTIONS(2382), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354584,20 +360603,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_DOT, - [166291] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167373] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4060), 1, + ACTIONS(2342), 1, + anon_sym_DASH, + STATE(4115), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4842), 16, + ACTIONS(2344), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354609,21 +360628,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_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166322] = 5, - ACTIONS(247), 1, + [167402] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4061), 1, + ACTIONS(1862), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4116), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4759), 16, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4745), 1, + sym_cell_path, + ACTIONS(1860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354637,19 +360662,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166353] = 4, + [167439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4062), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1054), 3, + ACTIONS(1052), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1052), 15, + ACTIONS(1050), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354665,18 +360687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [166382] = 4, - ACTIONS(3), 1, + [167468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4063), 1, + ACTIONS(2458), 1, + anon_sym_DASH, + STATE(4118), 1, sym_comment, - ACTIONS(1757), 5, + ACTIONS(2460), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354688,18 +360707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [166411] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167497] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4064), 1, + ACTIONS(2517), 1, + anon_sym_DASH, + STATE(4119), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4781), 16, + ACTIONS(2519), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354711,21 +360732,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166442] = 5, - ACTIONS(247), 1, + [167526] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4065), 1, + STATE(4120), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4769), 16, + ACTIONS(1036), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354737,48 +360759,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_and, - anon_sym_xor, - anon_sym_or, - [166473] = 5, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [167555] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7038), 1, - aux_sym__immediate_decimal_token2, - STATE(4066), 1, - sym_comment, - ACTIONS(1643), 4, - sym_identifier, + ACTIONS(2521), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 13, - anon_sym_EQ, + STATE(4121), 1, + sym_comment, + ACTIONS(2523), 17, + 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166504] = 4, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167584] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4067), 1, + STATE(4122), 1, sym_comment, - ACTIONS(2259), 4, + ACTIONS(2253), 4, anon_sym_and, anon_sym_xor, anon_sym_or, aux_sym_unquoted_token4, - ACTIONS(2261), 14, + ACTIONS(2255), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354793,18 +360812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LPAREN2, - [166533] = 5, - ACTIONS(247), 1, + [167613] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7070), 1, - anon_sym_DOT_DOT2, - STATE(4068), 1, + STATE(4123), 1, sym_comment, - ACTIONS(7072), 2, + ACTIONS(1723), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 15, - ts_builtin_sym_end, + ACTIONS(1721), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354816,53 +360835,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_and, - anon_sym_xor, - anon_sym_or, - [166564] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [167642] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7074), 1, - aux_sym__immediate_decimal_token2, - STATE(4069), 1, - sym_comment, - ACTIONS(1705), 4, - sym_identifier, + ACTIONS(2348), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 13, - anon_sym_EQ, + STATE(4124), 1, + sym_comment, + ACTIONS(2350), 17, + 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166595] = 8, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167671] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(7076), 1, - anon_sym_DOT_DOT2, - STATE(4070), 1, + ACTIONS(7058), 1, + anon_sym_DOT, + ACTIONS(7060), 1, + aux_sym__immediate_decimal_token2, + STATE(4125), 1, sym_comment, - ACTIONS(1794), 2, - ts_builtin_sym_end, + ACTIONS(1669), 2, sym__space, - ACTIONS(7078), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 11, + anon_sym_LPAREN2, + ACTIONS(1667), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354874,22 +360886,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, - [166632] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [167704] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4071), 1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + STATE(4126), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4637), 1, - sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1669), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354903,22 +360910,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166669] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [167733] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(7082), 1, + ACTIONS(1645), 1, sym__space, - STATE(4072), 1, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4127), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4642), 1, + STATE(4270), 1, sym_cell_path, - ACTIONS(7080), 13, + STATE(4566), 1, + sym_path, + ACTIONS(1641), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354932,19 +360943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166706] = 5, - ACTIONS(3), 1, + [167770] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7084), 1, - anon_sym_QMARK2, - STATE(4073), 1, + ACTIONS(2384), 1, + anon_sym_DASH, + STATE(4128), 1, sym_comment, - ACTIONS(1030), 4, + ACTIONS(2386), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354956,16 +360963,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, - anon_sym_DOT, - [166737] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167799] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - STATE(4074), 1, + ACTIONS(1842), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4129), 1, sym_comment, - ACTIONS(1645), 17, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4666), 1, + sym_cell_path, + ACTIONS(1840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354979,20 +360997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [166766] = 5, + [167836] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4075), 1, + ACTIONS(1070), 1, + anon_sym_DASH, + STATE(4130), 1, sym_comment, - STATE(7342), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7086), 16, + ACTIONS(1072), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355004,24 +361017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166797] = 5, - ACTIONS(3), 1, + [167865] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7088), 1, - anon_sym_QMARK2, - STATE(4076), 1, + ACTIONS(1848), 1, + anon_sym_DASH, + STATE(4131), 1, sym_comment, - ACTIONS(1036), 4, + ACTIONS(1850), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355033,16 +361042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166828] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167894] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1552), 1, aux_sym_unquoted_token2, - STATE(4077), 1, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + STATE(4132), 1, sym_comment, - ACTIONS(1633), 17, + ACTIONS(2295), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355059,71 +361073,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [166857] = 7, - ACTIONS(247), 1, + [167925] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7019), 1, + ACTIONS(1878), 1, + sym__space, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4078), 1, + STATE(4133), 1, sym_comment, - STATE(4079), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4383), 1, - sym_path, - ACTIONS(1017), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1019), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166892] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7090), 1, - anon_sym_DOT, - STATE(4383), 1, + STATE(4566), 1, sym_path, - ACTIONS(1021), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(4079), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 13, - anon_sym_EQ, - sym_identifier, + STATE(4782), 1, + sym_cell_path, + ACTIONS(1876), 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, - [166925] = 4, + anon_sym_RBRACE, + [167962] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2384), 1, - anon_sym_DASH, - STATE(4080), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4134), 1, sym_comment, - ACTIONS(2386), 17, - ts_builtin_sym_end, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4755), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355135,21 +361123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [166954] = 5, + [167993] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(4081), 1, + STATE(4135), 1, sym_comment, - STATE(7342), 1, + STATE(7682), 1, sym__expr_parenthesized_immediate, - ACTIONS(7086), 16, + ACTIONS(4759), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355166,17 +361154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166985] = 5, - ACTIONS(247), 1, + [168024] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token2, - STATE(4082), 1, + STATE(4136), 1, sym_comment, - ACTIONS(1645), 16, + ACTIONS(1740), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1738), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355188,18 +361177,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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [167016] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [168053] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - STATE(4083), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4137), 1, sym_comment, - ACTIONS(1707), 17, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4747), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355216,21 +361205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [167045] = 6, - ACTIONS(3), 1, + [168084] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(4084), 1, + STATE(4138), 1, sym_comment, - ACTIONS(1076), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1078), 13, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4751), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355244,22 +361228,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167078] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168115] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, + ACTIONS(1830), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4085), 1, + STATE(4139), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4748), 1, + STATE(4751), 1, sym_cell_path, - ACTIONS(1921), 13, + ACTIONS(1828), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355273,22 +361260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167115] = 8, - ACTIONS(3), 1, + [168152] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(7095), 1, - sym__space, - STATE(4086), 1, + ACTIONS(2412), 1, + anon_sym_DASH, + STATE(4140), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4752), 1, - sym_cell_path, - ACTIONS(7093), 13, + ACTIONS(2414), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355300,26 +361280,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, - [167152] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(7097), 1, - anon_sym_DOT_DOT2, - STATE(4087), 1, + STATE(4141), 1, sym_comment, - ACTIONS(1804), 2, - ts_builtin_sym_end, + ACTIONS(1056), 3, sym__space, - ACTIONS(7099), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 11, + ACTIONS(1054), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355331,14 +361306,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, - [167189] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [168210] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(2416), 1, anon_sym_DASH, - STATE(4088), 1, + STATE(4142), 1, sym_comment, - ACTIONS(1078), 17, + ACTIONS(2418), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355356,17 +361335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167218] = 5, + [168239] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7070), 1, - anon_sym_DOT_DOT2, - STATE(4089), 1, + ACTIONS(1864), 1, + anon_sym_DASH, + STATE(4143), 1, sym_comment, - ACTIONS(7072), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7027), 15, + ACTIONS(1866), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355379,18 +361355,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_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167249] = 4, - ACTIONS(247), 1, + [168268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, - anon_sym_DASH, - STATE(4090), 1, + STATE(4144), 1, sym_comment, - ACTIONS(2370), 17, + ACTIONS(1669), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1667), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355402,22 +361383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167278] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [168297] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7070), 1, - anon_sym_DOT_DOT2, - STATE(4091), 1, + ACTIONS(1872), 1, + anon_sym_DASH, + STATE(4145), 1, sym_comment, - ACTIONS(7072), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7027), 15, + ACTIONS(1874), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355430,20 +361405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167309] = 5, + [168326] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7070), 1, - anon_sym_DOT_DOT2, - STATE(4092), 1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token2, + STATE(4146), 1, sym_comment, - ACTIONS(7072), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7027), 15, + ACTIONS(1669), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355459,14 +361435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167340] = 4, + anon_sym_LPAREN2, + [168357] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(4093), 1, + ACTIONS(1876), 1, + anon_sym_DASH, + STATE(4147), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(1878), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355478,20 +361456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [167369] = 4, + [168386] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1560), 1, anon_sym_DASH, - STATE(4094), 1, + STATE(4148), 1, sym_comment, - ACTIONS(1963), 17, + ACTIONS(1572), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355509,15 +361486,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167398] = 4, + [168415] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1846), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4149), 1, + sym_comment, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4747), 1, + sym_cell_path, + ACTIONS(1844), 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, + [168452] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(7027), 1, + anon_sym_DOT, + STATE(4150), 1, + sym_comment, + STATE(4159), 1, + aux_sym_cell_path_repeat1, + STATE(4469), 1, + sym_path, + ACTIONS(1011), 2, anon_sym_DASH, - STATE(4095), 1, + anon_sym_DOT_DOT2, + ACTIONS(1013), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168487] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1834), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4151), 1, sym_comment, - ACTIONS(2357), 17, - ts_builtin_sym_end, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4678), 1, + sym_cell_path, + ACTIONS(1832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355529,21 +361570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167427] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168524] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4096), 1, + STATE(4152), 1, sym_comment, - ACTIONS(1058), 3, + ACTIONS(1048), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1056), 15, + ACTIONS(1046), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355559,14 +361597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [167456] = 4, + [168553] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2380), 1, + ACTIONS(2420), 1, anon_sym_DASH, - STATE(4097), 1, + STATE(4153), 1, sym_comment, - ACTIONS(2382), 17, + ACTIONS(2422), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355584,20 +361622,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167485] = 6, + [168582] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4098), 1, + ACTIONS(1850), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4154), 1, sym_comment, - ACTIONS(2293), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2297), 13, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4646), 1, + sym_cell_path, + ACTIONS(1848), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355611,20 +361651,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167518] = 6, + [168619] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(4099), 1, + ACTIONS(1894), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4155), 1, sym_comment, - ACTIONS(2243), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2247), 13, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4790), 1, + sym_cell_path, + ACTIONS(1892), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355638,20 +361680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167551] = 6, - ACTIONS(3), 1, + [168656] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(4100), 1, + ACTIONS(2305), 1, + anon_sym_DASH, + STATE(4156), 1, sym_comment, - ACTIONS(2251), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2253), 13, + ACTIONS(2307), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355663,16 +361700,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, - [167584] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168685] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2388), 1, + ACTIONS(1888), 1, anon_sym_DASH, - STATE(4101), 1, + STATE(4157), 1, sym_comment, - ACTIONS(2390), 17, + ACTIONS(1890), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355690,15 +361730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167613] = 4, - ACTIONS(247), 1, + [168714] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, - anon_sym_DASH, - STATE(4102), 1, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(4158), 1, sym_comment, - ACTIONS(2455), 17, - ts_builtin_sym_end, + ACTIONS(1070), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355710,20 +361755,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_RPAREN, + anon_sym_RBRACE, + [168747] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4469), 1, + sym_path, + ACTIONS(1015), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + STATE(4159), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 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_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167642] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168780] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(7065), 1, + aux_sym__immediate_decimal_token2, + STATE(4160), 1, + sym_comment, + ACTIONS(1721), 4, + sym_identifier, anon_sym_DASH, - STATE(4103), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 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, + [168811] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1838), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4161), 1, sym_comment, - ACTIONS(2459), 17, - ts_builtin_sym_end, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4802), 1, + sym_cell_path, + ACTIONS(1836), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355735,20 +361837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167671] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168848] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2392), 1, - anon_sym_DASH, - STATE(4104), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + STATE(4162), 1, sym_comment, - ACTIONS(2394), 17, - ts_builtin_sym_end, + ACTIONS(1661), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355760,19 +361858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [167700] = 4, + anon_sym_LPAREN2, + [168877] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2396), 1, + ACTIONS(1832), 1, anon_sym_DASH, - STATE(4105), 1, + STATE(4163), 1, sym_comment, - ACTIONS(2398), 17, + ACTIONS(1834), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355790,22 +361889,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167729] = 8, + [168906] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1949), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4106), 1, + STATE(4164), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4658), 1, + STATE(4760), 1, sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1947), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355819,15 +361918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167766] = 4, - ACTIONS(247), 1, + [168943] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_DASH, - STATE(4107), 1, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(7069), 1, + sym__space, + STATE(4165), 1, sym_comment, - ACTIONS(1845), 17, - ts_builtin_sym_end, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4761), 1, + sym_cell_path, + ACTIONS(7067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355839,19 +361945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167795] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168980] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2400), 1, - anon_sym_DASH, - STATE(4108), 1, + ACTIONS(7071), 1, + anon_sym_DOT_DOT2, + STATE(4166), 1, sym_comment, - ACTIONS(2402), 17, + ACTIONS(7073), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355864,21 +361970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167824] = 5, - ACTIONS(247), 1, + [169011] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - STATE(4109), 1, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(7075), 1, + anon_sym_DOT_DOT2, + STATE(4167), 1, sym_comment, - ACTIONS(1794), 16, + ACTIONS(1796), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7077), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355890,20 +362002,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_and, - anon_sym_xor, - anon_sym_or, - [167855] = 4, - ACTIONS(247), 1, + [169048] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2404), 1, - anon_sym_DASH, - STATE(4110), 1, + ACTIONS(1882), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4168), 1, sym_comment, - ACTIONS(2406), 17, - ts_builtin_sym_end, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4783), 1, + sym_cell_path, + ACTIONS(1880), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355915,20 +362029,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169085] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(4169), 1, + sym_comment, + ACTIONS(2229), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - [167884] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1859), 1, - anon_sym_DASH, - STATE(4111), 1, - sym_comment, - ACTIONS(1861), 17, - ts_builtin_sym_end, + ACTIONS(2233), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355940,20 +362056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167913] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169118] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_DASH, - STATE(4112), 1, + ACTIONS(1866), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4170), 1, sym_comment, - ACTIONS(1869), 17, - ts_builtin_sym_end, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4773), 1, + sym_cell_path, + ACTIONS(1864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355965,19 +362085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167942] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169155] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(2434), 1, anon_sym_DASH, - STATE(4113), 1, + STATE(4171), 1, sym_comment, - ACTIONS(1873), 17, + ACTIONS(2436), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355995,14 +362112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167971] = 4, + [169184] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(2438), 1, anon_sym_DASH, - STATE(4114), 1, + STATE(4172), 1, sym_comment, - ACTIONS(2410), 17, + ACTIONS(2440), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356020,14 +362137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168000] = 4, + [169213] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(1892), 1, anon_sym_DASH, - STATE(4115), 1, + STATE(4173), 1, sym_comment, - ACTIONS(1892), 17, + ACTIONS(1894), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356045,15 +362162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168029] = 4, - ACTIONS(247), 1, + [169242] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, - anon_sym_DASH, - STATE(4116), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4174), 1, sym_comment, - ACTIONS(2414), 17, - ts_builtin_sym_end, + ACTIONS(2237), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2241), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356065,20 +362187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169275] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4175), 1, + sym_comment, + ACTIONS(2245), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - [168058] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2416), 1, - anon_sym_DASH, - STATE(4117), 1, - sym_comment, - ACTIONS(2418), 17, - ts_builtin_sym_end, + ACTIONS(2247), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356090,20 +362214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168087] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169308] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, - anon_sym_DASH, - STATE(4118), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4176), 1, sym_comment, - ACTIONS(1896), 17, - ts_builtin_sym_end, + STATE(7257), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7052), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356115,44 +362237,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [168116] = 4, + [169339] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4119), 1, - sym_comment, - ACTIONS(1064), 3, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(7079), 1, anon_sym_DOT_DOT2, - ACTIONS(1066), 15, - anon_sym_PIPE, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + STATE(4177), 1, + sym_comment, + ACTIONS(7081), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168145] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH, - STATE(4120), 1, - sym_comment, - ACTIONS(1947), 17, + ACTIONS(2025), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356165,20 +362265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168174] = 4, + [169370] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2420), 1, - anon_sym_DASH, - STATE(4121), 1, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, + STATE(4178), 1, sym_comment, - ACTIONS(2422), 17, - ts_builtin_sym_end, + ACTIONS(2301), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356190,19 +362289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [168203] = 4, + [169401] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(2362), 1, anon_sym_DASH, - STATE(4122), 1, + STATE(4179), 1, sym_comment, - ACTIONS(2426), 17, + ACTIONS(2364), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356220,14 +362319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168232] = 4, + [169430] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH, - STATE(4123), 1, + ACTIONS(7083), 1, + anon_sym_DOT_DOT2, + STATE(4180), 1, sym_comment, - ACTIONS(1951), 17, + ACTIONS(7085), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1997), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356240,27 +362342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168261] = 8, - ACTIONS(3), 1, + [169461] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4124), 1, + ACTIONS(7087), 1, + anon_sym_DOT_DOT2, + STATE(4181), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4696), 1, - sym_cell_path, - ACTIONS(1961), 13, + ACTIONS(7089), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2005), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356272,16 +362368,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, - [168298] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169492] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2428), 1, - anon_sym_DASH, - STATE(4125), 1, + ACTIONS(7091), 1, + anon_sym_DOT_DOT2, + STATE(4182), 1, sym_comment, - ACTIONS(2430), 17, + ACTIONS(7093), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356294,19 +362394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168327] = 4, + [169523] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2432), 1, + ACTIONS(2366), 1, anon_sym_DASH, - STATE(4126), 1, + STATE(4183), 1, sym_comment, - ACTIONS(2434), 17, + ACTIONS(2368), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356324,14 +362422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168356] = 4, + [169552] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(1900), 1, anon_sym_DASH, - STATE(4127), 1, + STATE(4184), 1, sym_comment, - ACTIONS(1587), 17, + ACTIONS(1902), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356349,15 +362447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168385] = 4, - ACTIONS(247), 1, + [169581] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2436), 1, - anon_sym_DASH, - STATE(4128), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(7095), 1, + anon_sym_DOT_DOT2, + STATE(4185), 1, sym_comment, - ACTIONS(2438), 17, + ACTIONS(1786), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7097), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1778), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356369,27 +362476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168414] = 8, - ACTIONS(3), 1, + [169618] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1688), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4129), 1, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, + STATE(4186), 1, sym_comment, - STATE(4164), 1, - sym_cell_path, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - ACTIONS(1686), 13, + ACTIONS(1723), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356403,14 +362497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168451] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [169647] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - STATE(4130), 1, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, + ACTIONS(7099), 1, + aux_sym__immediate_decimal_token2, + STATE(4187), 1, sym_comment, - ACTIONS(1881), 17, + ACTIONS(1723), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356423,27 +362523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168480] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [169678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1629), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4131), 1, + ACTIONS(2442), 1, + anon_sym_DASH, + STATE(4188), 1, sym_comment, - STATE(4168), 1, - sym_cell_path, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - ACTIONS(1625), 13, + ACTIONS(2444), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356455,21 +362547,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168517] = 6, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169707] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7101), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7103), 1, - aux_sym__immediate_decimal_token2, - STATE(4132), 1, + ACTIONS(7071), 1, + anon_sym_DOT_DOT2, + STATE(4189), 1, sym_comment, - ACTIONS(1633), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1631), 14, + ACTIONS(7073), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6997), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356481,17 +362575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [168550] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169738] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2446), 1, anon_sym_DASH, - STATE(4133), 1, + STATE(4190), 1, sym_comment, - ACTIONS(2445), 17, + ACTIONS(2448), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356509,16 +362603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168579] = 5, + [169767] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4134), 1, + ACTIONS(1904), 1, + anon_sym_DASH, + STATE(4191), 1, sym_comment, - ACTIONS(2162), 16, + ACTIONS(1906), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356530,21 +362623,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_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168610] = 5, - ACTIONS(247), 1, + [169796] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4135), 1, + ACTIONS(1937), 1, + sym__space, + ACTIONS(7050), 1, + anon_sym_DOT, + STATE(4192), 1, sym_comment, - ACTIONS(1804), 16, + STATE(4215), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4730), 1, + sym_cell_path, + ACTIONS(1935), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356558,25 +362657,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168641] = 8, + [169833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1833), 1, + ACTIONS(1914), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4136), 1, + STATE(4193), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4714), 1, + STATE(4792), 1, sym_cell_path, - ACTIONS(1829), 13, + ACTIONS(1912), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356590,17 +362686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168678] = 5, + [169870] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7105), 1, + ACTIONS(7071), 1, anon_sym_DOT_DOT2, - STATE(4137), 1, + STATE(4194), 1, sym_comment, - ACTIONS(7107), 2, + ACTIONS(7073), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2067), 15, + ACTIONS(6997), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356616,17 +362712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168709] = 5, + [169901] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7109), 1, + ACTIONS(7071), 1, anon_sym_DOT_DOT2, - STATE(4138), 1, + STATE(4195), 1, sym_comment, - ACTIONS(7111), 2, + ACTIONS(7073), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 15, + ACTIONS(6997), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356642,44 +362738,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168740] = 5, + [169932] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT_DOT2, - STATE(4139), 1, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token2, + STATE(4196), 1, sym_comment, - ACTIONS(7115), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2049), 15, - ts_builtin_sym_end, + ACTIONS(1667), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 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_and, - anon_sym_xor, - anon_sym_or, - [168771] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [169963] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7117), 1, - anon_sym_DOT_DOT2, - STATE(4140), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + STATE(4197), 1, sym_comment, - ACTIONS(7119), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2057), 15, - ts_builtin_sym_end, + ACTIONS(1786), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356691,19 +362785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [168802] = 5, + [169994] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(1738), 1, aux_sym_unquoted_token2, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - STATE(4141), 1, + STATE(4198), 1, sym_comment, - ACTIONS(2222), 16, + ACTIONS(1740), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356720,22 +362814,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168833] = 8, + anon_sym_LPAREN2, + [170023] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4199), 1, + sym_comment, + ACTIONS(1058), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1060), 15, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170052] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(1826), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4142), 1, + STATE(4200), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4720), 1, + STATE(4689), 1, sym_cell_path, - ACTIONS(1835), 13, + ACTIONS(1822), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356749,22 +362869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168870] = 8, + [170089] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4143), 1, + ACTIONS(7101), 1, + anon_sym_QMARK2, + STATE(4201), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4722), 1, - sym_cell_path, - ACTIONS(1839), 13, + ACTIONS(1024), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356776,18 +362893,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, - [168907] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [170120] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, - STATE(4144), 1, + ACTIONS(7103), 1, + anon_sym_QMARK2, + STATE(4202), 1, sym_comment, - ACTIONS(2228), 16, + ACTIONS(1030), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356799,27 +362919,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_and, - anon_sym_xor, - anon_sym_or, - [168938] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [170151] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1845), 1, + ACTIONS(1890), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4145), 1, + STATE(4203), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4725), 1, + STATE(4707), 1, sym_cell_path, - ACTIONS(1843), 13, + ACTIONS(1888), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356833,22 +362950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168975] = 8, + [170188] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, + ACTIONS(1945), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4146), 1, + STATE(4204), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4726), 1, + STATE(4732), 1, sym_cell_path, - ACTIONS(1847), 13, + ACTIONS(1943), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356862,22 +362979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169012] = 8, - ACTIONS(3), 1, + [170225] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1853), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4147), 1, + ACTIONS(2450), 1, + anon_sym_DASH, + STATE(4205), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4727), 1, - sym_cell_path, - ACTIONS(1851), 13, + ACTIONS(2452), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356889,24 +362999,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, - [169049] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170254] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4148), 1, + ACTIONS(2454), 1, + anon_sym_DASH, + STATE(4206), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4729), 1, - sym_cell_path, - ACTIONS(1855), 13, + ACTIONS(2456), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356918,24 +363024,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, - [169086] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4149), 1, + STATE(4207), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4734), 1, - sym_cell_path, - ACTIONS(1859), 13, + ACTIONS(1044), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1042), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356947,24 +363051,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, - [169123] = 8, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [170312] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(1898), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4150), 1, + STATE(4208), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4737), 1, + STATE(4676), 1, sym_cell_path, - ACTIONS(1863), 13, + ACTIONS(1896), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356978,22 +363083,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169160] = 8, + [170349] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4151), 1, + ACTIONS(7107), 1, + sym__space, + STATE(4209), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4566), 1, sym_path, - STATE(4741), 1, + STATE(4733), 1, sym_cell_path, - ACTIONS(1867), 13, + ACTIONS(7105), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357007,22 +363112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169197] = 8, - ACTIONS(3), 1, + [170386] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1873), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4152), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4210), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4744), 1, - sym_cell_path, - ACTIONS(1871), 13, + ACTIONS(2289), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357036,22 +363135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169234] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170417] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1007), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4153), 1, + STATE(4211), 1, sym_comment, - STATE(4194), 1, + STATE(4215), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4747), 1, + STATE(4272), 1, sym_cell_path, - ACTIONS(1875), 13, + STATE(4566), 1, + sym_path, + ACTIONS(1005), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357065,22 +363167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169271] = 8, - ACTIONS(3), 1, + [170454] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1971), 1, - sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4154), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4212), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4754), 1, - sym_cell_path, - ACTIONS(1969), 13, + ACTIONS(1796), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357094,14 +363190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169308] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170485] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(2305), 1, anon_sym_DASH, - STATE(4155), 1, + STATE(4213), 1, sym_comment, - ACTIONS(2366), 17, + ACTIONS(2307), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357119,15 +363218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169337] = 4, - ACTIONS(247), 1, + [170514] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2364), 1, - anon_sym_DASH, - STATE(4156), 1, + ACTIONS(1017), 1, + sym__space, + ACTIONS(7109), 1, + anon_sym_DOT, + STATE(4566), 1, + sym_path, + STATE(4214), 2, sym_comment, - ACTIONS(2366), 17, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357139,27 +363242,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169366] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170546] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(1013), 1, sym__space, - ACTIONS(7062), 1, + ACTIONS(7050), 1, anon_sym_DOT, - STATE(4157), 1, - sym_comment, - STATE(4194), 1, + STATE(4214), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4215), 1, + sym_comment, + STATE(4566), 1, sym_path, - STATE(4633), 1, - sym_cell_path, - ACTIONS(1890), 13, + ACTIONS(1011), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357173,22 +363271,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169403] = 8, + [170580] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7112), 1, + anon_sym_QMARK2, + STATE(4216), 1, + sym_comment, + ACTIONS(1028), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1030), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(7116), 1, sym__space, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4158), 1, + ACTIONS(7118), 1, + anon_sym_DOT_DOT2, + STATE(4217), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4478), 1, - sym_path, - STATE(4618), 1, - sym_cell_path, - ACTIONS(1894), 13, + ACTIONS(7120), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357202,15 +363322,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169440] = 4, + [170642] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2372), 1, + STATE(4218), 1, + sym_comment, + ACTIONS(1659), 3, anon_sym_DASH, - STATE(4159), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 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, + [170670] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7122), 1, + anon_sym_DOT, + ACTIONS(7124), 1, + aux_sym__immediate_decimal_token2, + STATE(4219), 1, sym_comment, - ACTIONS(2374), 17, + ACTIONS(1669), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357222,20 +363371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169469] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [170702] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2376), 1, - anon_sym_DASH, - STATE(4160), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4220), 1, sym_comment, - ACTIONS(2378), 17, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4911), 1, + sym_cell_path, + ACTIONS(1850), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1848), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357247,27 +363400,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169498] = 8, + [170738] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, - sym__space, - ACTIONS(7062), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4161), 1, + STATE(4221), 1, sym_comment, - STATE(4194), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4804), 1, sym_path, - STATE(4630), 1, + STATE(4892), 1, sym_cell_path, - ACTIONS(1937), 13, + ACTIONS(1914), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1912), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357279,24 +363428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169535] = 8, + [170774] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__space, - ACTIONS(7062), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4162), 1, + STATE(4222), 1, sym_comment, - STATE(4194), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4804), 1, sym_path, - STATE(4701), 1, + STATE(4865), 1, sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(1854), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1852), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357308,18 +363456,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, - [169572] = 5, + [170810] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(2293), 1, anon_sym_LPAREN2, - STATE(4163), 1, + STATE(4223), 1, sym_comment, - STATE(7342), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7086), 16, + ACTIONS(2295), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357331,21 +363478,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_and, anon_sym_xor, anon_sym_or, - [169603] = 4, + [170840] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4164), 1, - sym_comment, - ACTIONS(1629), 3, + ACTIONS(2025), 1, sym__space, + ACTIONS(7128), 1, + anon_sym_DOT_DOT2, + STATE(4224), 1, + sym_comment, + ACTIONS(7130), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1625), 14, + ACTIONS(2019), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357359,24 +363507,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [170872] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4225), 1, + sym_comment, + ACTIONS(1042), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - [169631] = 8, - ACTIONS(3), 1, + anon_sym_DOT, + ACTIONS(1044), 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_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170900] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7121), 1, + STATE(4226), 1, + sym_comment, + ACTIONS(1038), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4165), 1, + ACTIONS(1040), 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_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170928] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + STATE(4227), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4900), 1, - sym_cell_path, - ACTIONS(1833), 2, + ACTIONS(1661), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(1829), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357388,16 +363575,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, - [169667] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [170956] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(2299), 1, anon_sym_LPAREN2, - STATE(4166), 1, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, + STATE(4228), 1, sym_comment, - ACTIONS(1794), 15, + ACTIONS(2301), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357413,23 +363604,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169697] = 8, + [170986] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4167), 1, + STATE(4229), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4760), 1, + STATE(4921), 1, sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(1838), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1879), 11, + ACTIONS(1836), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357441,16 +363632,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, - [169733] = 4, + [171022] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4168), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4230), 1, sym_comment, - ACTIONS(2139), 3, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4507), 1, + sym_cell_path, + STATE(4804), 1, + sym_path, + ACTIONS(1007), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2137), 14, + ACTIONS(1005), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357462,20 +363660,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, - [169761] = 4, + [171058] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4169), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4231), 1, sym_comment, - ACTIONS(2259), 4, + ACTIONS(2237), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token4, - ACTIONS(2261), 13, + ACTIONS(2241), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357488,17 +363686,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_LPAREN2, - [169789] = 5, - ACTIONS(247), 1, + [171090] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4170), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4232), 1, sym_comment, - ACTIONS(2162), 15, + ACTIONS(2245), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2247), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357511,19 +363712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169819] = 5, + [171122] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4171), 1, + STATE(4233), 1, sym_comment, - ACTIONS(1804), 15, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4759), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357539,154 +363737,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169849] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4172), 1, - sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4934), 1, - sym_cell_path, - ACTIONS(1923), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1921), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [169885] = 9, + [171152] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - ACTIONS(7127), 1, - anon_sym_QMARK2, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4173), 1, - sym_comment, - STATE(4948), 1, - sym_cell_path, - ACTIONS(7123), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7125), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [169923] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4174), 1, - sym_comment, - ACTIONS(2021), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 14, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, + anon_sym_EQ, + ACTIONS(7013), 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, - anon_sym_DOT_DOT2, - [169951] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4175), 1, + ACTIONS(7015), 1, + anon_sym_COLON, + ACTIONS(7134), 1, + anon_sym_DASH, + STATE(4234), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4922), 1, - sym_cell_path, - ACTIONS(1845), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1843), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [169987] = 8, + STATE(4237), 1, + aux_sym_parameter_repeat1, + STATE(5173), 1, + aux_sym_parameter_repeat2, + STATE(6106), 1, + aux_sym_shebang_repeat1, + STATE(5000), 2, + sym_param_type, + sym_param_value, + ACTIONS(7132), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171196] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4176), 1, + STATE(4235), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4794), 1, + STATE(4915), 1, sym_cell_path, - ACTIONS(1849), 2, + ACTIONS(1858), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1847), 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, - [170023] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - STATE(4177), 1, - sym_comment, - ACTIONS(2222), 15, - ts_builtin_sym_end, + ACTIONS(1856), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357698,26 +363797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170053] = 8, + [171232] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4178), 1, + STATE(4236), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4902), 1, + STATE(4886), 1, sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(1862), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1851), 11, + ACTIONS(1860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357729,81 +363825,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, - [170089] = 5, + [171268] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7129), 1, - anon_sym_QMARK2, - STATE(4179), 1, - sym_comment, - ACTIONS(1034), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1036), 13, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7013), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7015), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170119] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - STATE(4180), 1, - sym_comment, - ACTIONS(1028), 3, + ACTIONS(7138), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1030), 13, - anon_sym_EQ, + STATE(4237), 1, + sym_comment, + STATE(4311), 1, + aux_sym_parameter_repeat1, + STATE(5196), 1, + aux_sym_parameter_repeat2, + STATE(6106), 1, + aux_sym_shebang_repeat1, + STATE(5000), 2, + sym_param_type, + sym_param_value, + ACTIONS(7136), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170149] = 12, + [171312] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7050), 1, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, anon_sym_EQ, - ACTIONS(7052), 1, + ACTIONS(7013), 1, sym__newline, - ACTIONS(7054), 1, + ACTIONS(7015), 1, anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_COMMA, - ACTIONS(7135), 1, + ACTIONS(7142), 1, anon_sym_DASH, - STATE(4181), 1, + STATE(4238), 1, sym_comment, - STATE(4381), 1, + STATE(4300), 1, aux_sym_parameter_repeat1, - STATE(5115), 1, + STATE(5159), 1, aux_sym_parameter_repeat2, - STATE(6214), 1, + STATE(6106), 1, aux_sym_shebang_repeat1, - STATE(5091), 2, + STATE(5000), 2, sym_param_type, sym_param_value, - ACTIONS(7133), 7, + ACTIONS(7140), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -357811,31 +363889,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170193] = 12, + [171356] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2005), 1, + sym__space, + ACTIONS(7144), 1, + anon_sym_DOT_DOT2, + STATE(4239), 1, + sym_comment, + ACTIONS(7146), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1999), 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, + [171388] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7050), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + STATE(4240), 1, + sym_comment, + ACTIONS(1786), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171418] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, anon_sym_EQ, - ACTIONS(7052), 1, + ACTIONS(7013), 1, sym__newline, - ACTIONS(7054), 1, + ACTIONS(7015), 1, anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_COMMA, - ACTIONS(7139), 1, + ACTIONS(7150), 1, anon_sym_DASH, - STATE(4182), 1, + STATE(4241), 1, sym_comment, - STATE(4224), 1, + STATE(4311), 1, aux_sym_parameter_repeat1, - STATE(5117), 1, + STATE(5161), 1, aux_sym_parameter_repeat2, - STATE(6214), 1, + STATE(6106), 1, aux_sym_shebang_repeat1, - STATE(5091), 2, + STATE(5000), 2, sym_param_type, sym_param_value, - ACTIONS(7137), 7, + ACTIONS(7148), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -357843,46 +363972,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170237] = 12, + [171462] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7050), 1, - anon_sym_EQ, - ACTIONS(7052), 1, - sym__newline, - ACTIONS(7054), 1, - anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_COMMA, - ACTIONS(7143), 1, - anon_sym_DASH, - STATE(4183), 1, + STATE(4242), 1, sym_comment, - STATE(4381), 1, - aux_sym_parameter_repeat1, - STATE(5118), 1, - aux_sym_parameter_repeat2, - STATE(6214), 1, - aux_sym_shebang_repeat1, - STATE(5091), 2, - sym_param_type, - sym_param_value, - ACTIONS(7141), 7, + ACTIONS(1738), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1740), 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, - [170281] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171490] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, + ACTIONS(1721), 1, aux_sym_unquoted_token2, - STATE(4184), 1, + STATE(4243), 1, sym_comment, - ACTIONS(1707), 16, + ACTIONS(1723), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357899,40 +364020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [170309] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token2, - STATE(4185), 1, - sym_comment, - ACTIONS(1645), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1643), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170341] = 4, + [171518] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1738), 1, aux_sym_unquoted_token2, - STATE(4186), 1, + STATE(4244), 1, sym_comment, - ACTIONS(1645), 16, + ACTIONS(1740), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357949,21 +364044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [170369] = 6, + [171546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4187), 1, + ACTIONS(7152), 1, + aux_sym__immediate_decimal_token2, + STATE(4245), 1, sym_comment, - ACTIONS(2293), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2297), 12, - ts_builtin_sym_end, + ACTIONS(1723), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1721), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357975,17 +364066,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, - [170401] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_unquoted_token2, - STATE(4188), 1, + [171576] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7060), 1, + aux_sym__immediate_decimal_token2, + STATE(4246), 1, sym_comment, - ACTIONS(2228), 15, - ts_builtin_sym_end, + ACTIONS(1669), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1667), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357997,52 +364091,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_and, - anon_sym_xor, - anon_sym_or, - [170431] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [171606] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4189), 1, + STATE(4247), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4810), 1, + STATE(4992), 1, sym_cell_path, - ACTIONS(1963), 2, + ACTIONS(1834), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1961), 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, - [170467] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(4190), 1, - sym_comment, - ACTIONS(2243), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2247), 12, - ts_builtin_sym_end, + ACTIONS(1832), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358054,16 +364122,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, - [170499] = 5, + [171642] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(4191), 1, + STATE(4248), 1, sym_comment, - STATE(7376), 1, + STATE(7682), 1, sym__expr_parenthesized_immediate, - ACTIONS(7086), 15, + ACTIONS(4751), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358079,44 +364147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170529] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - STATE(4192), 1, - sym_comment, - ACTIONS(1587), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170557] = 6, + [171672] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_LPAREN2, - ACTIONS(2249), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(4193), 1, + STATE(4249), 1, sym_comment, - ACTIONS(2251), 3, + ACTIONS(1070), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(2253), 12, + ACTIONS(1072), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358129,20 +364173,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170589] = 7, + [171704] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4250), 1, + sym_comment, + ACTIONS(1034), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1036), 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_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171732] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1019), 1, - sym__space, - ACTIONS(7062), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4194), 1, + STATE(4251), 1, sym_comment, - STATE(4199), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4478), 1, + STATE(4804), 1, sym_path, - ACTIONS(1017), 13, + STATE(4931), 1, + sym_cell_path, + ACTIONS(1866), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358154,21 +364225,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170623] = 6, + [171768] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5602), 1, + anon_sym_DOT, + ACTIONS(7158), 1, + anon_sym_QMARK2, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(4252), 1, + sym_comment, + STATE(5118), 1, + sym_cell_path, + ACTIONS(7154), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7156), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [171806] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7151), 1, + ACTIONS(1997), 1, sym__space, - ACTIONS(7153), 1, + ACTIONS(7160), 1, anon_sym_DOT_DOT2, - STATE(4195), 1, + STATE(4253), 1, sym_comment, - ACTIONS(7155), 2, + ACTIONS(7162), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7149), 13, + ACTIONS(1991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358182,23 +364280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170655] = 8, + [171838] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + STATE(4254), 1, + sym_comment, + ACTIONS(1667), 3, anon_sym_DASH, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7157), 1, anon_sym_DOT_DOT2, - STATE(4196), 1, - sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 11, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -358210,48 +364301,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170691] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(4197), 1, - sym_comment, - STATE(7376), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7086), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170721] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171866] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4198), 1, + STATE(4255), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4843), 1, + STATE(4882), 1, sym_cell_path, - ACTIONS(7095), 2, + ACTIONS(1830), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7093), 11, + ACTIONS(1828), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358263,19 +364332,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, - [170757] = 6, - ACTIONS(3), 1, + [171902] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1023), 1, - sym__space, - ACTIONS(7161), 1, - anon_sym_DOT, - STATE(4478), 1, - sym_path, - STATE(4199), 2, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + STATE(4256), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 13, + ACTIONS(1669), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358287,18 +364352,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, - [170789] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [171930] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4200), 1, - sym_comment, - ACTIONS(1040), 3, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1778), 1, anon_sym_DASH, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(7164), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1042), 14, + STATE(4257), 1, + sym_comment, + ACTIONS(7166), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -358310,24 +364384,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170817] = 6, + [171966] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(4201), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4258), 1, sym_comment, - ACTIONS(1076), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1078), 12, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4932), 1, + sym_cell_path, + ACTIONS(1937), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1935), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358339,23 +364412,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, - [170849] = 8, + [172002] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4202), 1, + STATE(4259), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4928), 1, + STATE(4933), 1, sym_cell_path, - ACTIONS(1857), 2, + ACTIONS(1870), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1855), 11, + ACTIONS(1868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358367,16 +364440,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, - [170885] = 5, + [172038] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - STATE(4203), 1, + STATE(4260), 1, sym_comment, - STATE(7376), 1, + STATE(7262), 1, sym__expr_parenthesized_immediate, - ACTIONS(7086), 15, + ACTIONS(7052), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358392,16 +364465,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170915] = 4, + [172068] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4204), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4261), 1, sym_comment, - ACTIONS(2135), 3, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4845), 1, + sym_cell_path, + ACTIONS(1945), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 14, + ACTIONS(1943), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358413,74 +364493,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [170943] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4205), 1, - sym_comment, - ACTIONS(1044), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1046), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170971] = 4, + [172104] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4206), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(4262), 1, sym_comment, - ACTIONS(1048), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1050), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(1572), 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_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170999] = 8, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172132] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4207), 1, + STATE(4263), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4872), 1, + STATE(4474), 1, sym_cell_path, - ACTIONS(1861), 2, + STATE(4804), 1, + sym_path, + ACTIONS(1645), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1859), 11, + ACTIONS(1641), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358492,23 +364545,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, - [171035] = 8, + [172168] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4208), 1, + STATE(4264), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4882), 1, + STATE(4858), 1, sym_cell_path, - ACTIONS(1865), 2, + ACTIONS(7107), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1863), 11, + ACTIONS(7105), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358520,52 +364573,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, - [171071] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - ACTIONS(7168), 1, - anon_sym_QMARK2, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4209), 1, - sym_comment, - STATE(5099), 1, - sym_cell_path, - ACTIONS(7164), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7166), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [171109] = 8, + [172204] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4210), 1, + STATE(4265), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4764), 1, + STATE(4946), 1, sym_cell_path, - ACTIONS(1869), 2, + ACTIONS(1874), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1867), 11, + ACTIONS(1872), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358577,16 +364601,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, - [171145] = 4, + [172240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4211), 1, + STATE(4266), 1, sym_comment, - ACTIONS(1066), 3, + ACTIONS(2143), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1064), 14, + ACTIONS(2141), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358601,20 +364625,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [171173] = 6, - ACTIONS(3), 1, + [172268] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7170), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5602), 1, + anon_sym_DOT, ACTIONS(7172), 1, - aux_sym__immediate_decimal_token2, - STATE(4212), 1, + anon_sym_QMARK2, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(4267), 1, + sym_comment, + STATE(5121), 1, + sym_cell_path, + ACTIONS(7168), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7170), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [172306] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4268), 1, sym_comment, - ACTIONS(1633), 3, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4966), 1, + sym_cell_path, + ACTIONS(1842), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1631), 12, + ACTIONS(1840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358626,24 +364682,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [171205] = 8, + [172342] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4213), 1, + STATE(4269), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4417), 1, - sym_cell_path, - STATE(4608), 1, + STATE(4804), 1, sym_path, - ACTIONS(1688), 2, + STATE(4990), 1, + sym_cell_path, + ACTIONS(1846), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1686), 11, + ACTIONS(1844), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358655,23 +364710,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, - [171241] = 8, + [172378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4214), 1, + STATE(4270), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4789), 1, - sym_cell_path, - ACTIONS(1873), 2, - ts_builtin_sym_end, + ACTIONS(1677), 3, sym__space, - ACTIONS(1871), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1675), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358683,23 +364731,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, - [171277] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [172406] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4215), 1, + STATE(4271), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4820), 1, + STATE(4948), 1, sym_cell_path, - ACTIONS(1877), 2, + ACTIONS(1878), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1875), 11, + ACTIONS(1876), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358711,23 +364762,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, - [171313] = 8, + [172442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4216), 1, + STATE(4272), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4853), 1, - sym_cell_path, - ACTIONS(1971), 2, - ts_builtin_sym_end, + ACTIONS(1060), 3, sym__space, - ACTIONS(1969), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1058), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358739,14 +364783,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, - [171349] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [172470] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(4217), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4273), 1, sym_comment, - ACTIONS(1757), 16, + STATE(7262), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7052), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358762,48 +364811,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [171377] = 4, - ACTIONS(247), 1, + [172500] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4218), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(4274), 1, sym_comment, - ACTIONS(1643), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2229), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2233), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171405] = 8, - 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, + [172532] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4219), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4275), 1, sym_comment, - STATE(4316), 1, - sym_cell_path, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - ACTIONS(1629), 2, + STATE(7262), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7052), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1625), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358815,23 +364859,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, - [171441] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4220), 1, + STATE(4276), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4888), 1, + STATE(4959), 1, sym_cell_path, - ACTIONS(1951), 2, + ACTIONS(1882), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1949), 11, + ACTIONS(1880), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358843,23 +364890,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, - [171477] = 8, + [172598] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_DASH, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7174), 1, + anon_sym_DOT_DOT2, + STATE(4277), 1, + sym_comment, + ACTIONS(7176), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 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, + [172634] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4221), 1, + STATE(4278), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4782), 1, + STATE(4817), 1, sym_cell_path, - ACTIONS(1967), 2, + ACTIONS(1886), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1965), 11, + ACTIONS(1884), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358871,23 +364946,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, - [171513] = 8, + [172670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4222), 1, + ACTIONS(7178), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7180), 1, + aux_sym__immediate_decimal_token2, + STATE(4279), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4867), 1, - sym_cell_path, - ACTIONS(1892), 2, + ACTIONS(1661), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1890), 11, + anon_sym_LPAREN2, + ACTIONS(1659), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358899,17 +364971,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, - [171549] = 4, + aux_sym_unquoted_token2, + [172702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4223), 1, + STATE(4280), 1, sym_comment, - ACTIONS(1054), 4, + ACTIONS(1048), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1052), 13, + ACTIONS(1046), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358923,49 +364996,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, - [171577] = 12, + [172730] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7050), 1, - anon_sym_EQ, - ACTIONS(7052), 1, - sym__newline, - ACTIONS(7054), 1, - anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_COMMA, - ACTIONS(7176), 1, - anon_sym_DASH, - STATE(4224), 1, + STATE(4281), 1, sym_comment, - STATE(4381), 1, - aux_sym_parameter_repeat1, - STATE(5132), 1, - aux_sym_parameter_repeat2, - STATE(6214), 1, - aux_sym_shebang_repeat1, - STATE(5091), 2, - sym_param_type, - sym_param_value, - ACTIONS(7174), 7, + ACTIONS(1721), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 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, - [171621] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [172758] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym__immediate_decimal_token2, - STATE(4225), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4282), 1, sym_comment, - ACTIONS(1645), 2, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4489), 1, + sym_cell_path, + STATE(4804), 1, + sym_path, + ACTIONS(1677), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1643), 14, + ACTIONS(1675), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358977,26 +365048,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [171651] = 8, + [172794] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4226), 1, + STATE(4283), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4929), 1, + STATE(4863), 1, sym_cell_path, - ACTIONS(1959), 2, + ACTIONS(1949), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1957), 11, + ACTIONS(1947), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359008,41 +365076,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, - [171687] = 4, - ACTIONS(247), 1, + [172830] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4284), 1, sym_comment, - ACTIONS(1631), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 14, - anon_sym_EQ, - sym_identifier, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4819), 1, + sym_cell_path, + ACTIONS(1890), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1888), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171715] = 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, + [172866] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4228), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4285), 1, sym_comment, - ACTIONS(1062), 4, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4755), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1060), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359054,19 +365126,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_DOT, - [171743] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172896] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7178), 1, - aux_sym__immediate_decimal_token2, - STATE(4229), 1, - sym_comment, - ACTIONS(1707), 2, - sym__space, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(1705), 14, + STATE(4286), 1, + sym_comment, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4747), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359078,22 +365151,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, - aux_sym_unquoted_token2, - [171773] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - sym__space, - ACTIONS(7180), 1, - anon_sym_DOT_DOT2, - STATE(4230), 1, + STATE(4287), 1, sym_comment, - ACTIONS(7182), 2, + ACTIONS(2035), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 13, + ACTIONS(2033), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359107,19 +365177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171805] = 6, + anon_sym_DOT_DOT2, + [172954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, - sym__space, - ACTIONS(7184), 1, - anon_sym_DOT_DOT2, - STATE(4231), 1, + STATE(4288), 1, sym_comment, - ACTIONS(7186), 2, + ACTIONS(1052), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 13, + ACTIONS(1050), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359131,25 +365200,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, - [171837] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [172982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4232), 1, + STATE(4289), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4774), 1, - sym_cell_path, - ACTIONS(1915), 2, + ACTIONS(1056), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1913), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1054), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359161,23 +365224,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, - [171873] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [173010] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4233), 1, + STATE(4290), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4870), 1, + STATE(4814), 1, sym_cell_path, - ACTIONS(1896), 2, + ACTIONS(1826), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1894), 11, + ACTIONS(1822), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359189,23 +365254,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, - [171909] = 8, + [173046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4234), 1, + STATE(4291), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4873), 1, - sym_cell_path, - ACTIONS(1939), 2, + ACTIONS(2253), 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token4, + ACTIONS(2255), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359217,23 +365277,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, - [171945] = 8, + anon_sym_LPAREN2, + [173074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4235), 1, - sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4821), 1, - sym_cell_path, - ACTIONS(1919), 2, - ts_builtin_sym_end, + ACTIONS(2013), 1, sym__space, - ACTIONS(1917), 11, + ACTIONS(7182), 1, + anon_sym_DOT_DOT2, + STATE(4292), 1, + sym_comment, + ACTIONS(7184), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2007), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359245,15 +365302,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, - [171981] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173106] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - STATE(4236), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4293), 1, sym_comment, - ACTIONS(1633), 16, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4823), 1, + sym_cell_path, + ACTIONS(1894), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1892), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359265,27 +365332,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [172009] = 8, + [173142] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4237), 1, + STATE(4294), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4865), 1, + STATE(4824), 1, sym_cell_path, - ACTIONS(1947), 2, + ACTIONS(1898), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1945), 11, + ACTIONS(1896), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359297,23 +365360,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, - [172045] = 8, + [173178] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4238), 1, + STATE(4295), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4804), 1, sym_path, - STATE(4811), 1, + STATE(4834), 1, sym_cell_path, - ACTIONS(7082), 2, + ACTIONS(1902), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7080), 11, + ACTIONS(1900), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359325,16 +365388,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, - [172081] = 4, + [173214] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4239), 1, + ACTIONS(7186), 1, + anon_sym_QMARK2, + STATE(4296), 1, sym_comment, - ACTIONS(1705), 3, + ACTIONS(1022), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 14, + anon_sym_DOT, + ACTIONS(1024), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -359346,19 +365411,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, - [172109] = 5, + [173244] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - STATE(4240), 1, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4297), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4842), 15, + ACTIONS(2289), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359374,17 +365438,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172139] = 5, - ACTIONS(247), 1, + [173274] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4241), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4298), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4759), 15, + STATE(4448), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + STATE(4836), 1, + sym_cell_path, + ACTIONS(1906), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1904), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359396,82 +365466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172169] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7050), 1, - anon_sym_EQ, - ACTIONS(7052), 1, - sym__newline, - ACTIONS(7054), 1, - anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_COMMA, - ACTIONS(7190), 1, - anon_sym_DASH, - STATE(4181), 1, - aux_sym_parameter_repeat1, - STATE(4242), 1, - sym_comment, - STATE(5144), 1, - aux_sym_parameter_repeat2, - STATE(6214), 1, - aux_sym_shebang_repeat1, - STATE(5091), 2, - sym_param_type, - sym_param_value, - ACTIONS(7188), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172213] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4243), 1, - sym_comment, - ACTIONS(1755), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - 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, - [172241] = 8, + [173310] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7126), 1, anon_sym_DOT, - STATE(4244), 1, + STATE(4299), 1, sym_comment, - STATE(4324), 1, + STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4333), 1, - sym_cell_path, - STATE(4608), 1, + STATE(4804), 1, sym_path, - ACTIONS(1013), 2, + STATE(4864), 1, + sym_cell_path, + ACTIONS(7069), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1011), 11, + ACTIONS(7067), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359483,41 +365494,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172277] = 5, + [173346] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4245), 1, - sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4781), 15, - ts_builtin_sym_end, + ACTIONS(2551), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, + anon_sym_EQ, + ACTIONS(7013), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7015), 1, + anon_sym_COLON, + ACTIONS(7190), 1, + anon_sym_DASH, + STATE(4300), 1, + sym_comment, + STATE(4311), 1, + aux_sym_parameter_repeat1, + STATE(5167), 1, + aux_sym_parameter_repeat2, + STATE(6106), 1, + aux_sym_shebang_repeat1, + STATE(5000), 2, + sym_param_type, + sym_param_value, + ACTIONS(7188), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172307] = 5, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173390] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - STATE(4246), 1, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4301), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4769), 15, + ACTIONS(1796), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359533,23 +365551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172337] = 8, + [173420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4247), 1, + STATE(4302), 1, sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - STATE(4822), 1, - sym_cell_path, - ACTIONS(1837), 2, - ts_builtin_sym_end, + ACTIONS(2031), 3, sym__space, - ACTIONS(1835), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2029), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359561,19 +365572,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, - [172373] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [173448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, + ACTIONS(1072), 1, sym__space, - ACTIONS(7192), 1, + ACTIONS(7118), 1, anon_sym_DOT_DOT2, - STATE(4248), 1, + STATE(4303), 1, sym_comment, - ACTIONS(7194), 2, + ACTIONS(7120), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2061), 13, + ACTIONS(1070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359587,18 +365601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172405] = 4, - ACTIONS(3), 1, + [173480] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4249), 1, - sym_comment, - ACTIONS(1058), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1056), 13, + ACTIONS(3705), 1, sym__newline, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7196), 1, + anon_sym_xor, + ACTIONS(7198), 1, + anon_sym_or, + STATE(4304), 1, + sym_comment, + STATE(4498), 1, + aux_sym_shebang_repeat1, + ACTIONS(7192), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -359609,25 +365627,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_DOT_DOT2, - anon_sym_DOT, - [172433] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + [173515] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(1912), 1, + anon_sym_DASH, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4250), 1, + STATE(4305), 1, sym_comment, - STATE(4324), 1, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4608), 1, + STATE(4849), 1, sym_path, - STATE(4857), 1, + STATE(4951), 1, sym_cell_path, - ACTIONS(1841), 2, - ts_builtin_sym_end, + ACTIONS(1914), 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, + [173550] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + ACTIONS(2295), 1, sym__space, - ACTIONS(1839), 11, + STATE(4306), 1, + sym_comment, + ACTIONS(2291), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359639,47 +365678,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, - [172469] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173581] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1786), 1, - anon_sym_DASH, - ACTIONS(1788), 1, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(4307), 1, + sym_comment, + STATE(5122), 1, + sym_cell_path, + ACTIONS(7202), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7204), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [173616] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, - anon_sym_DOT_DOT2, - STATE(4251), 1, + ACTIONS(4755), 1, + sym__space, + STATE(4308), 1, sym_comment, - ACTIONS(7198), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 11, - anon_sym_EQ, - sym_identifier, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4757), 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, - [172505] = 6, + anon_sym_RBRACE, + [173647] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4759), 1, sym__space, - ACTIONS(7200), 1, - anon_sym_DOT_DOT2, - STATE(4252), 1, + STATE(4309), 1, sym_comment, - ACTIONS(7202), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2051), 13, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359693,19 +365757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172537] = 6, + [173678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1078), 1, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, sym__space, - ACTIONS(7153), 1, - anon_sym_DOT_DOT2, - STATE(4253), 1, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, + STATE(4310), 1, sym_comment, - ACTIONS(7155), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1076), 13, + ACTIONS(2297), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359719,43 +365782,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172569] = 8, + [173709] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(7208), 1, + anon_sym_EQ, + ACTIONS(7211), 1, + sym__newline, + ACTIONS(7214), 1, + anon_sym_COLON, + ACTIONS(7217), 1, anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4254), 1, + STATE(6106), 1, + aux_sym_shebang_repeat1, + STATE(4311), 2, sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4926), 1, - sym_cell_path, - ACTIONS(1861), 11, - anon_sym_EQ, + aux_sym_parameter_repeat1, + STATE(5000), 2, + sym_param_type, + sym_param_value, + ACTIONS(7206), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172604] = 5, - ACTIONS(247), 1, + [173746] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4255), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4747), 1, + sym__space, + STATE(4312), 1, sym_comment, - ACTIONS(7206), 14, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359768,20 +365834,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_xor, - anon_sym_or, - [172633] = 6, + anon_sym_RBRACE, + [173777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(4769), 1, + ACTIONS(4751), 1, sym__space, - STATE(4256), 1, + STATE(4313), 1, sym_comment, - STATE(7570), 1, + STATE(7682), 1, sym__expr_parenthesized_immediate, - ACTIONS(4771), 13, + ACTIONS(4753), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359795,18 +365860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172664] = 6, + [173808] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__newline, - ACTIONS(7215), 1, - anon_sym_and, - STATE(4257), 1, - sym_comment, - STATE(4370), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7213), 13, + STATE(4314), 1, + sym_comment, + ACTIONS(7219), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -359818,41 +365880,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_and, anon_sym_xor, anon_sym_or, - [172695] = 8, + [173835] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4258), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4315), 1, sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4826), 1, - sym_cell_path, - ACTIONS(1951), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7221), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172730] = 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173862] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4316), 1, sym_comment, - ACTIONS(7217), 16, + ACTIONS(7221), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359865,16 +365926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [172755] = 3, + [173889] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4260), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4317), 1, sym_comment, - ACTIONS(7217), 16, + ACTIONS(7219), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359887,22 +365949,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_and, anon_sym_xor, anon_sym_or, - [172780] = 6, + [173916] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, ACTIONS(7223), 1, - anon_sym_xor, - STATE(690), 1, + anon_sym_and, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4261), 1, + STATE(4318), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7221), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359915,41 +365974,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_xor, anon_sym_or, - [172811] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4262), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4923), 1, - sym_cell_path, - ACTIONS(1853), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172846] = 4, + [173945] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4263), 1, - sym_comment, - STATE(4364), 1, + STATE(4315), 1, aux_sym_shebang_repeat1, + STATE(4319), 1, + sym_comment, ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, @@ -359966,14 +365999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172873] = 4, + [173972] = 5, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(7227), 1, anon_sym_and, - STATE(4264), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4320), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(7221), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359986,25 +366021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [172900] = 8, + [174001] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7233), 1, + ACTIONS(7229), 1, anon_sym_xor, - ACTIONS(7235), 1, - anon_sym_or, - STATE(4265), 1, - sym_comment, - STATE(4394), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7229), 11, + STATE(4321), 1, + sym_comment, + ACTIONS(7221), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360016,12 +366047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172935] = 3, + anon_sym_or, + [174032] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4266), 1, + STATE(4316), 1, + aux_sym_shebang_repeat1, + STATE(4322), 1, sym_comment, - ACTIONS(4990), 16, + ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360034,26 +366068,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [172960] = 8, + [174059] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7237), 1, + ACTIONS(7231), 1, anon_sym_xor, - ACTIONS(7239), 1, - anon_sym_or, - STATE(4267), 1, - sym_comment, - STATE(4395), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7229), 11, + STATE(4323), 1, + sym_comment, + ACTIONS(7221), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360065,41 +366095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172995] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4268), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4886), 1, - sym_cell_path, - ACTIONS(1841), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173030] = 4, + anon_sym_or, + [174090] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7241), 1, + ACTIONS(7223), 1, anon_sym_and, - STATE(4269), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4324), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(7219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360112,19 +366118,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_xor, anon_sym_or, - [173057] = 5, + [174119] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4270), 1, + STATE(4325), 1, sym_comment, - ACTIONS(7219), 14, + ACTIONS(7233), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360137,20 +366140,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [173086] = 6, - ACTIONS(3), 1, + [174146] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4842), 1, - sym__space, - STATE(4271), 1, + ACTIONS(1822), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4326), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 13, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4922), 1, + sym_cell_path, + ACTIONS(1826), 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, + [174181] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4327), 1, + sym_comment, + ACTIONS(7233), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360163,17 +366190,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, - [173117] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174208] = 5, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7243), 1, - anon_sym_xor, - STATE(4272), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4328), 1, sym_comment, - ACTIONS(7217), 14, + ACTIONS(7219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360186,18 +366215,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_xor, anon_sym_or, - [173146] = 5, + [174237] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7241), 1, - anon_sym_and, - ACTIONS(7245), 1, - anon_sym_xor, - STATE(4273), 1, + STATE(4329), 1, sym_comment, - ACTIONS(7217), 14, + STATE(4335), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360210,15 +366237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [173175] = 3, + [174264] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4274), 1, - sym_comment, - ACTIONS(7217), 16, + ACTIONS(7237), 1, sym__newline, + ACTIONS(7240), 1, + anon_sym_and, + STATE(4318), 1, + aux_sym_shebang_repeat1, + STATE(4330), 1, + sym_comment, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360230,16 +366263,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [173200] = 3, + [174295] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4275), 1, + STATE(4331), 1, sym_comment, - ACTIONS(7217), 16, + STATE(4338), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360252,25 +366285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [173225] = 6, - ACTIONS(3), 1, + [174322] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7247), 1, - anon_sym_DOT_DOT2, - STATE(4276), 1, - sym_comment, - ACTIONS(2041), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7249), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2035), 11, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7237), 1, sym__newline, + STATE(4320), 1, + aux_sym_shebang_repeat1, + STATE(4332), 1, + sym_comment, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360281,20 +366310,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, - [173256] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [174353] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7251), 1, - anon_sym_DOT_DOT2, - STATE(4277), 1, + ACTIONS(7223), 1, + anon_sym_and, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4333), 1, sym_comment, - ACTIONS(2049), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7253), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2043), 11, + ACTIONS(7233), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360306,20 +366334,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, - [173287] = 7, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [174382] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7233), 1, - anon_sym_xor, - STATE(4278), 1, - sym_comment, - STATE(4455), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7225), 12, + STATE(4334), 1, + sym_comment, + ACTIONS(7233), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360331,18 +366359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [173320] = 5, - ACTIONS(3), 1, + [174411] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7255), 1, - anon_sym_QMARK2, - STATE(4279), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4335), 1, sym_comment, - ACTIONS(1036), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1034), 13, + ACTIONS(7242), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360355,19 +366381,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, - [173349] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174438] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7257), 1, - anon_sym_QMARK2, - STATE(4280), 1, - sym_comment, - ACTIONS(1030), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1028), 13, + ACTIONS(7240), 1, + anon_sym_and, + ACTIONS(7244), 1, sym__newline, + STATE(4336), 1, + sym_comment, + STATE(4339), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360379,20 +366407,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, - [173378] = 5, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [174469] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token2, - STATE(4281), 1, - sym_comment, - ACTIONS(1707), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1705), 12, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7244), 1, sym__newline, + STATE(4337), 1, + sym_comment, + STATE(4340), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360403,15 +366431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [173407] = 4, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [174500] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4282), 1, - sym_comment, - STATE(4376), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7225), 15, + STATE(4338), 1, + sym_comment, + ACTIONS(7242), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360427,14 +366457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173434] = 4, + [174527] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7223), 1, anon_sym_and, - STATE(4283), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4339), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(7242), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360447,17 +366479,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_xor, anon_sym_or, - [173461] = 4, + [174556] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7241), 1, + ACTIONS(7227), 1, anon_sym_and, - STATE(4284), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4340), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(7242), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360470,23 +366503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [173488] = 7, + [174585] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7237), 1, + ACTIONS(7229), 1, anon_sym_xor, - STATE(4285), 1, - sym_comment, - STATE(4427), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7225), 12, + STATE(4341), 1, + sym_comment, + ACTIONS(7233), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360499,16 +366530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [173521] = 5, + [174616] = 6, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7243), 1, + ACTIONS(7231), 1, anon_sym_xor, - STATE(4286), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4342), 1, sym_comment, - ACTIONS(7217), 14, + ACTIONS(7233), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360521,24 +366554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [173550] = 8, + [174647] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(7231), 1, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7233), 1, + ACTIONS(7247), 1, anon_sym_xor, - ACTIONS(7235), 1, - anon_sym_or, - STATE(4287), 1, + STATE(4343), 1, sym_comment, - STATE(4433), 1, + STATE(4361), 1, aux_sym_shebang_repeat1, - ACTIONS(7261), 11, + ACTIONS(7235), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360550,17 +366580,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173585] = 5, + anon_sym_or, + [174680] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7241), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7194), 1, anon_sym_and, - ACTIONS(7245), 1, + ACTIONS(7196), 1, anon_sym_xor, - STATE(4288), 1, + STATE(4344), 1, sym_comment, - ACTIONS(7217), 14, - sym__newline, + STATE(4362), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360572,16 +366606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [173614] = 4, + [174713] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4289), 1, - sym_comment, - STATE(4342), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7213), 15, + STATE(4345), 1, + sym_comment, + ACTIONS(7221), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360597,18 +366630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173641] = 6, - ACTIONS(3), 1, + [174740] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(7265), 1, - sym__space, - STATE(4290), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4346), 1, sym_comment, - STATE(7454), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7263), 13, + ACTIONS(7221), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360621,46 +366650,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, - [173672] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174767] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4291), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4925), 1, - sym_cell_path, - ACTIONS(1857), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173707] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__space, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4292), 1, + ACTIONS(7223), 1, + anon_sym_and, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4347), 1, sym_comment, - ACTIONS(1796), 13, + ACTIONS(7221), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360673,19 +366675,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, - [173738] = 6, + anon_sym_xor, + anon_sym_or, + [174796] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7227), 1, anon_sym_and, - STATE(4293), 1, - sym_comment, - STATE(4354), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7213), 13, + STATE(4348), 1, + sym_comment, + ACTIONS(7221), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360699,66 +366701,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [173769] = 4, + [174825] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym_unquoted_token2, - STATE(4294), 1, + ACTIONS(7249), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7251), 1, + aux_sym__immediate_decimal_token2, + STATE(4349), 1, sym_comment, - ACTIONS(1587), 15, - ts_builtin_sym_end, + ACTIONS(1659), 3, + sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 11, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173796] = 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, + anon_sym_LPAREN2, + [174856] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7231), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7267), 1, - sym__newline, - STATE(4295), 1, - sym_comment, - STATE(4446), 1, - aux_sym_shebang_repeat1, - ACTIONS(7225), 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, + ACTIONS(7229), 1, anon_sym_xor, - anon_sym_or, - [173827] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - sym__space, - ACTIONS(6934), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7270), 1, - anon_sym_DOT, - STATE(4296), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4350), 1, sym_comment, - ACTIONS(1643), 13, + ACTIONS(7221), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360771,19 +366750,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, - [173858] = 6, + anon_sym_or, + [174887] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7272), 1, + ACTIONS(7231), 1, anon_sym_xor, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4351), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7221), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360797,14 +366776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [173889] = 4, + [174918] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4298), 1, - sym_comment, - STATE(4392), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 15, + STATE(4352), 1, + sym_comment, + ACTIONS(7233), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360820,14 +366799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173916] = 4, + [174945] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4299), 1, - sym_comment, - STATE(4426), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 15, + STATE(4353), 1, + sym_comment, + ACTIONS(7233), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360843,14 +366822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173943] = 4, + [174972] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4300), 1, + STATE(4354), 1, sym_comment, - ACTIONS(7276), 15, + STATE(4367), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360866,18 +366845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173970] = 6, + [174999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, - anon_sym_and, - ACTIONS(7267), 1, - sym__newline, - STATE(4255), 1, - aux_sym_shebang_repeat1, - STATE(4301), 1, + STATE(4355), 1, sym_comment, - ACTIONS(7225), 13, + STATE(4368), 1, + aux_sym_shebang_repeat1, + ACTIONS(7235), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360889,20 +366865,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174001] = 6, + [175026] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7231), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7278), 1, - sym__newline, - STATE(4302), 1, - sym_comment, - STATE(4387), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 13, + STATE(4356), 1, + sym_comment, + ACTIONS(7233), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360916,18 +366892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174032] = 6, + [175055] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7278), 1, - sym__newline, - STATE(4270), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4303), 1, + STATE(4357), 1, sym_comment, - ACTIONS(7274), 13, + ACTIONS(7233), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360941,18 +366916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174063] = 6, + [175084] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7231), 1, - anon_sym_and, - ACTIONS(7281), 1, - sym__newline, - STATE(4304), 1, + STATE(4358), 1, sym_comment, - STATE(4336), 1, - aux_sym_shebang_repeat1, - ACTIONS(7284), 13, + ACTIONS(5008), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360964,20 +366934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174094] = 6, + [175109] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7281), 1, + ACTIONS(7244), 1, sym__newline, - STATE(4305), 1, + STATE(4359), 1, sym_comment, - STATE(4337), 1, + STATE(4369), 1, aux_sym_shebang_repeat1, - ACTIONS(7284), 13, + ACTIONS(7235), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -360991,45 +366963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174125] = 6, + [175140] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7286), 1, - anon_sym_DOT, - ACTIONS(7288), 1, - aux_sym__immediate_decimal_token2, - STATE(4306), 1, + STATE(4360), 1, sym_comment, - ACTIONS(1643), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [174156] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(6997), 16, sym__newline, - ACTIONS(7231), 1, - anon_sym_and, - ACTIONS(7233), 1, - anon_sym_xor, - STATE(4307), 1, - sym_comment, - STATE(4415), 1, - aux_sym_shebang_repeat1, - ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361041,21 +366981,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174189] = 7, + [175165] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7237), 1, + ACTIONS(7229), 1, anon_sym_xor, - STATE(4308), 1, - sym_comment, - STATE(4393), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 12, + STATE(4361), 1, + sym_comment, + ACTIONS(7242), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361068,20 +367010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174222] = 7, + [175196] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7233), 1, + ACTIONS(7231), 1, anon_sym_xor, - STATE(4309), 1, - sym_comment, - STATE(4314), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7225), 12, + STATE(4362), 1, + sym_comment, + ACTIONS(7242), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361094,22 +367035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174255] = 8, + [175227] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, - anon_sym_and, - ACTIONS(7237), 1, - anon_sym_xor, - ACTIONS(7239), 1, - anon_sym_or, - STATE(4310), 1, + STATE(4363), 1, sym_comment, - STATE(4449), 1, - aux_sym_shebang_repeat1, - ACTIONS(7261), 11, + ACTIONS(7052), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361121,20 +367053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174290] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7237), 1, anon_sym_xor, - STATE(4311), 1, + anon_sym_or, + [175252] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4364), 1, sym_comment, - STATE(4331), 1, - aux_sym_shebang_repeat1, - ACTIONS(7225), 12, + ACTIONS(6997), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361146,15 +367075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174323] = 4, + [175277] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4312), 1, + STATE(4365), 1, sym_comment, - STATE(4343), 1, - aux_sym_shebang_repeat1, - ACTIONS(7274), 15, + ACTIONS(7052), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361167,21 +367097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [174350] = 6, - ACTIONS(3), 1, + [175302] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - sym__space, - STATE(4313), 1, + STATE(4366), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(6997), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361195,18 +367120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174381] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7221), 1, anon_sym_and, - ACTIONS(7223), 1, anon_sym_xor, - STATE(690), 1, + anon_sym_or, + [175327] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4314), 1, + STATE(4367), 1, sym_comment, - ACTIONS(7206), 13, + ACTIONS(7242), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361219,15 +367143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174412] = 4, + [175354] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4315), 1, - sym_comment, - STATE(4345), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 15, + STATE(4368), 1, + sym_comment, + ACTIONS(7242), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361243,17 +367169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174439] = 4, - ACTIONS(3), 1, + [175381] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4316), 1, + ACTIONS(7223), 1, + anon_sym_and, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4369), 1, sym_comment, - ACTIONS(2139), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2137), 12, + ACTIONS(7242), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361265,19 +367190,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, - [174466] = 6, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [175410] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7231), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7278), 1, - sym__newline, - STATE(4317), 1, - sym_comment, - STATE(4460), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 13, + STATE(4370), 1, + sym_comment, + ACTIONS(7242), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361291,18 +367217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174497] = 6, + [175439] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7278), 1, - sym__newline, - STATE(4318), 1, - sym_comment, - STATE(4344), 1, + ACTIONS(7229), 1, + anon_sym_xor, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7274), 13, + STATE(4371), 1, + sym_comment, + ACTIONS(7242), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361314,22 +367241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [174528] = 7, + [175470] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7233), 1, + ACTIONS(7231), 1, anon_sym_xor, - STATE(4261), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4319), 1, + STATE(4372), 1, sym_comment, - ACTIONS(7274), 12, + ACTIONS(7242), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361342,20 +367267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174561] = 7, + [175501] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, + ACTIONS(7223), 1, anon_sym_and, - ACTIONS(7237), 1, + ACTIONS(7229), 1, anon_sym_xor, - STATE(4297), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4320), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7274), 12, + ACTIONS(7219), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361368,15 +367292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174594] = 4, - ACTIONS(3), 1, + [175532] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4321), 1, + ACTIONS(7227), 1, + anon_sym_and, + ACTIONS(7231), 1, + anon_sym_xor, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4374), 1, sym_comment, - ACTIONS(1042), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1040), 14, + ACTIONS(7219), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361389,17 +367316,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [174621] = 4, + anon_sym_or, + [175563] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7240), 1, + anon_sym_and, + ACTIONS(7247), 1, + anon_sym_xor, + STATE(4321), 1, aux_sym_shebang_repeat1, - STATE(4322), 1, + STATE(4375), 1, sym_comment, - ACTIONS(7290), 15, - sym__newline, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361411,52 +367342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174648] = 8, + [175596] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4323), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4808), 1, - sym_cell_path, - ACTIONS(1896), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3705), 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, - [174683] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(4324), 1, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7196), 1, + anon_sym_xor, + STATE(4323), 1, + aux_sym_shebang_repeat1, + STATE(4376), 1, sym_comment, - STATE(4348), 1, - aux_sym_cell_path_repeat1, - STATE(4608), 1, - sym_path, - ACTIONS(1019), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1017), 11, - sym__newline, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361467,18 +367367,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, - [174716] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or, + [175629] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4759), 1, - sym__space, STATE(4325), 1, + aux_sym_shebang_repeat1, + STATE(4377), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 13, + ACTIONS(7253), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361491,21 +367389,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, - [174747] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175656] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7292), 1, - anon_sym_DOT_DOT2, - STATE(4326), 1, + STATE(4327), 1, + aux_sym_shebang_repeat1, + STATE(4378), 1, sym_comment, - ACTIONS(7151), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7294), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7149), 11, + ACTIONS(7253), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361517,66 +367411,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, - [174778] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4119), 1, - sym_cell_path, - STATE(4327), 1, - sym_comment, - ACTIONS(1011), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1013), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [174813] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4328), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4936), 1, - sym_cell_path, - ACTIONS(1865), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174848] = 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175683] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4329), 1, + STATE(4379), 1, sym_comment, - ACTIONS(7027), 16, + ACTIONS(7052), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361593,14 +367437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174873] = 4, + [175708] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4330), 1, + STATE(4380), 1, sym_comment, - STATE(4335), 1, - aux_sym_shebang_repeat1, - ACTIONS(7284), 15, + ACTIONS(7255), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361613,21 +367455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [174900] = 6, - ACTIONS(247), 1, + [175733] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - ACTIONS(7272), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4331), 1, + ACTIONS(7257), 1, + anon_sym_DOT_DOT2, + STATE(4381), 1, sym_comment, - ACTIONS(7206), 13, + ACTIONS(2025), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7259), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2019), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361639,22 +367484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [174931] = 7, + [175764] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7233), 1, - anon_sym_xor, - STATE(4332), 1, - sym_comment, - STATE(4338), 1, + ACTIONS(7261), 1, + sym__newline, + STATE(4333), 1, aux_sym_shebang_repeat1, - ACTIONS(7284), 12, + STATE(4382), 1, + sym_comment, + ACTIONS(7253), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361666,19 +367507,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [174964] = 4, - ACTIONS(3), 1, + [175795] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4333), 1, - sym_comment, - ACTIONS(1066), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1064), 12, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7261), 1, sym__newline, + STATE(4334), 1, + aux_sym_shebang_repeat1, + STATE(4383), 1, + sym_comment, + ACTIONS(7253), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361689,21 +367531,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, - [174991] = 7, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [175826] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(7215), 1, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7237), 1, + ACTIONS(7247), 1, anon_sym_xor, - STATE(4334), 1, - sym_comment, - STATE(4339), 1, + STATE(4341), 1, aux_sym_shebang_repeat1, - ACTIONS(7284), 12, + STATE(4384), 1, + sym_comment, + ACTIONS(7253), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361716,14 +367560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [175024] = 4, + [175859] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4335), 1, + STATE(4385), 1, sym_comment, - ACTIONS(7290), 15, + ACTIONS(5044), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361736,20 +367578,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [175051] = 5, + [175884] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7194), 1, anon_sym_and, - STATE(690), 1, + ACTIONS(7196), 1, + anon_sym_xor, + STATE(4342), 1, aux_sym_shebang_repeat1, - STATE(4336), 1, + STATE(4386), 1, sym_comment, - ACTIONS(7290), 14, - sym__newline, + ACTIONS(7253), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -361761,18 +367607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [175080] = 5, + [175917] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4337), 1, + STATE(4387), 1, sym_comment, - ACTIONS(7290), 14, + ACTIONS(7255), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361785,20 +367626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [175109] = 6, + [175942] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(7264), 1, anon_sym_and, - ACTIONS(7223), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4338), 1, + STATE(4388), 1, sym_comment, - ACTIONS(7290), 13, + ACTIONS(7255), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361811,19 +367650,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_xor, anon_sym_or, - [175140] = 6, + [175969] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(7266), 1, anon_sym_and, - ACTIONS(7272), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4339), 1, + STATE(4389), 1, sym_comment, - ACTIONS(7290), 13, + ACTIONS(7255), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361836,15 +367673,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_xor, anon_sym_or, - [175171] = 4, + [175996] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4340), 1, + STATE(4390), 1, sym_comment, - ACTIONS(7290), 15, + ACTIONS(7219), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361860,14 +367699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175198] = 4, + [176023] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4341), 1, + STATE(4391), 1, sym_comment, - ACTIONS(7290), 15, + ACTIONS(7219), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361883,14 +367722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175225] = 4, + [176050] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + STATE(4345), 1, aux_sym_shebang_repeat1, - STATE(4342), 1, + STATE(4392), 1, sym_comment, - ACTIONS(7276), 15, + ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361906,14 +367745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175252] = 4, + [176077] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + STATE(4346), 1, aux_sym_shebang_repeat1, - STATE(4343), 1, + STATE(4393), 1, sym_comment, - ACTIONS(7219), 15, + ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361929,14 +367768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175279] = 5, + [176104] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(7223), 1, anon_sym_and, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4344), 1, + STATE(4394), 1, sym_comment, ACTIONS(7219), 14, sym__newline, @@ -361953,14 +367792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [175308] = 4, + [176133] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(7227), 1, + anon_sym_and, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4345), 1, + STATE(4395), 1, sym_comment, - ACTIONS(7219), 15, + ACTIONS(7219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361973,76 +367814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175335] = 6, + [176162] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7296), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, - aux_sym__immediate_decimal_token2, - STATE(4346), 1, - sym_comment, - ACTIONS(1631), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 11, - anon_sym_EQ, + ACTIONS(7237), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175366] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, + ACTIONS(7240), 1, + anon_sym_and, STATE(4347), 1, + aux_sym_shebang_repeat1, + STATE(4396), 1, sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4869), 1, - sym_cell_path, - ACTIONS(1963), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175401] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT, - STATE(4608), 1, - sym_path, - ACTIONS(1023), 2, - ts_builtin_sym_end, - sym__space, - STATE(4348), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 11, - sym__newline, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362053,15 +367838,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, - [175432] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [176193] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4349), 1, + ACTIONS(7264), 1, + anon_sym_and, + ACTIONS(7268), 1, + anon_sym_xor, + STATE(4397), 1, sym_comment, - ACTIONS(1046), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1044), 14, + ACTIONS(7255), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362075,17 +367864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [175459] = 5, + anon_sym_or, + [176222] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(7266), 1, anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4350), 1, + ACTIONS(7270), 1, + anon_sym_xor, + STATE(4398), 1, sym_comment, - ACTIONS(7290), 14, + ACTIONS(7255), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362098,18 +367887,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_xor, + anon_sym_RBRACE, anon_sym_or, - [175488] = 5, + [176251] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4351), 1, + STATE(4399), 1, sym_comment, - ACTIONS(7290), 14, + ACTIONS(7255), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362122,21 +367907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [175517] = 6, + [176276] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(7194), 1, anon_sym_and, - ACTIONS(7223), 1, - anon_sym_xor, - STATE(690), 1, + ACTIONS(7237), 1, + sym__newline, + STATE(4348), 1, aux_sym_shebang_repeat1, - STATE(4352), 1, + STATE(4400), 1, sym_comment, - ACTIONS(7290), 13, - sym__newline, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362148,19 +367934,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_xor, anon_sym_or, - [175548] = 6, + [176307] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - ACTIONS(7272), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4353), 1, + STATE(4401), 1, sym_comment, - ACTIONS(7290), 13, + ACTIONS(7255), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362173,17 +367954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [175579] = 5, + [176332] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(7264), 1, anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4354), 1, + STATE(4402), 1, sym_comment, - ACTIONS(7276), 14, + ACTIONS(7255), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362196,14 +367978,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_xor, anon_sym_or, - [175608] = 3, + [176359] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4355), 1, + ACTIONS(7266), 1, + anon_sym_and, + STATE(4403), 1, sym_comment, - ACTIONS(4994), 16, + ACTIONS(7255), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362217,19 +368002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175633] = 5, + [176386] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(7264), 1, anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4356), 1, + ACTIONS(7268), 1, + anon_sym_xor, + STATE(4404), 1, sym_comment, - ACTIONS(7276), 14, + ACTIONS(7255), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362242,20 +368026,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, + anon_sym_RBRACE, anon_sym_or, - [175662] = 6, + [176415] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, ACTIONS(7223), 1, + anon_sym_and, + ACTIONS(7229), 1, anon_sym_xor, - STATE(690), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4357), 1, + STATE(4405), 1, sym_comment, - ACTIONS(7276), 13, + ACTIONS(7219), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362269,22 +368053,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [175693] = 8, + [176446] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1828), 1, anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4358), 1, + STATE(4406), 1, sym_comment, - STATE(4519), 1, - sym_cell_path, - STATE(4554), 1, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, + STATE(4849), 1, sym_path, - ACTIONS(1013), 11, + STATE(4900), 1, + sym_cell_path, + ACTIONS(1830), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -362296,18 +368080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175728] = 6, + [176481] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7227), 1, anon_sym_and, - STATE(4359), 1, - sym_comment, - STATE(4369), 1, + ACTIONS(7231), 1, + anon_sym_xor, + STATE(749), 1, aux_sym_shebang_repeat1, - ACTIONS(7213), 13, + STATE(4407), 1, + sym_comment, + ACTIONS(7219), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362319,21 +368104,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [175759] = 6, + [176512] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7272), 1, + ACTIONS(7247), 1, anon_sym_xor, - STATE(690), 1, + STATE(4350), 1, aux_sym_shebang_repeat1, - STATE(4360), 1, + STATE(4408), 1, sym_comment, - ACTIONS(7276), 13, - sym__newline, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362346,74 +368131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [175790] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4361), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4823), 1, - sym_cell_path, - ACTIONS(1939), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175825] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4362), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4772), 1, - sym_cell_path, - ACTIONS(1869), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175860] = 7, + [176545] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, + ACTIONS(7266), 1, anon_sym_and, - ACTIONS(7233), 1, + ACTIONS(7270), 1, anon_sym_xor, - STATE(4363), 1, + STATE(4409), 1, sym_comment, - STATE(4371), 1, - aux_sym_shebang_repeat1, - ACTIONS(7213), 12, + ACTIONS(7255), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362425,16 +368153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or, - [175893] = 4, + [176574] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7244), 1, + sym__newline, + STATE(4370), 1, aux_sym_shebang_repeat1, - STATE(4364), 1, + STATE(4410), 1, sym_comment, - ACTIONS(7206), 15, - sym__newline, + ACTIONS(7235), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362446,25 +368178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175920] = 8, + [176605] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1832), 1, anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4365), 1, + STATE(4411), 1, sym_comment, - STATE(4554), 1, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, + STATE(4849), 1, sym_path, - STATE(4907), 1, + STATE(4994), 1, sym_cell_path, - ACTIONS(1845), 11, + ACTIONS(1834), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -362476,13 +368207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175955] = 3, + [176640] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4366), 1, - sym_comment, - ACTIONS(7086), 16, + ACTIONS(3705), 1, sym__newline, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7196), 1, + anon_sym_xor, + STATE(4351), 1, + aux_sym_shebang_repeat1, + STATE(4412), 1, + sym_comment, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362494,18 +368232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [175980] = 4, + [176673] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + STATE(4352), 1, aux_sym_shebang_repeat1, - STATE(4367), 1, + STATE(4413), 1, sym_comment, - ACTIONS(7276), 15, + ACTIONS(7253), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362521,14 +368256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176007] = 4, + [176700] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(7223), 1, + anon_sym_and, + ACTIONS(7229), 1, + anon_sym_xor, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4368), 1, + STATE(4414), 1, sym_comment, - ACTIONS(7276), 15, + ACTIONS(7233), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362541,19 +368280,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_and, - anon_sym_xor, anon_sym_or, - [176034] = 5, + [176731] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - STATE(690), 1, + STATE(4353), 1, aux_sym_shebang_repeat1, - STATE(4369), 1, + STATE(4415), 1, sym_comment, - ACTIONS(7276), 14, + ACTIONS(7253), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362566,18 +368301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [176063] = 5, - ACTIONS(247), 1, + [176758] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4370), 1, + ACTIONS(7272), 1, + aux_sym__immediate_decimal_token2, + STATE(4416), 1, sym_comment, - ACTIONS(7276), 14, + ACTIONS(1723), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1721), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362589,22 +368327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176092] = 6, + aux_sym_unquoted_token2, + [176787] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7223), 1, + ACTIONS(7247), 1, anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, STATE(4371), 1, + aux_sym_shebang_repeat1, + STATE(4417), 1, sym_comment, - ACTIONS(7276), 13, - sym__newline, + ACTIONS(7235), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362617,22 +368354,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [176123] = 8, + [176820] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1836), 1, anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4372), 1, + STATE(4418), 1, sym_comment, - STATE(4554), 1, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, + STATE(4849), 1, sym_path, - STATE(4940), 1, + STATE(4977), 1, sym_cell_path, - ACTIONS(1833), 11, + ACTIONS(1838), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -362644,19 +368381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176158] = 6, + [176855] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7194), 1, anon_sym_and, - ACTIONS(7272), 1, + ACTIONS(7196), 1, anon_sym_xor, - STATE(690), 1, + STATE(4372), 1, aux_sym_shebang_repeat1, - STATE(4373), 1, + STATE(4419), 1, sym_comment, - ACTIONS(7276), 13, - sym__newline, + ACTIONS(7235), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362669,15 +368407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [176189] = 4, + [176888] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(7240), 1, + anon_sym_and, + ACTIONS(7261), 1, + sym__newline, + STATE(4356), 1, aux_sym_shebang_repeat1, - STATE(4374), 1, + STATE(4420), 1, sym_comment, - ACTIONS(7206), 15, - sym__newline, + ACTIONS(7253), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362689,18 +368430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [176216] = 4, + [176919] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7261), 1, + sym__newline, + STATE(4357), 1, aux_sym_shebang_repeat1, - STATE(4375), 1, + STATE(4421), 1, sym_comment, - ACTIONS(7206), 15, - sym__newline, + ACTIONS(7253), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362712,17 +368455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [176243] = 4, + [176950] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, + STATE(4314), 1, aux_sym_shebang_repeat1, - STATE(4376), 1, + STATE(4422), 1, sym_comment, - ACTIONS(7206), 15, + ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362738,18 +368480,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176270] = 6, - ACTIONS(3), 1, + [176977] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2297), 1, - sym__space, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4377), 1, + STATE(4317), 1, + aux_sym_shebang_repeat1, + STATE(4423), 1, sym_comment, - ACTIONS(2293), 13, + ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362762,65 +368500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [176301] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4378), 1, - sym_comment, - ACTIONS(2021), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 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, - [176328] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177004] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4749), 1, - sym__space, - ACTIONS(7303), 1, - anon_sym_EQ2, - ACTIONS(7305), 1, - sym_short_flag_identifier, - STATE(4379), 1, - sym_comment, - ACTIONS(4747), 13, + ACTIONS(3705), 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, - [176359] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4380), 1, + ACTIONS(7240), 1, + anon_sym_and, + ACTIONS(7247), 1, + anon_sym_xor, + STATE(4414), 1, + aux_sym_shebang_repeat1, + STATE(4424), 1, sym_comment, - ACTIONS(2261), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2259), 14, - sym__newline, + ACTIONS(7253), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -362832,71 +368528,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, - aux_sym_unquoted_token4, - [176386] = 9, + anon_sym_or, + [177037] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7309), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - sym__newline, - ACTIONS(7315), 1, - anon_sym_COLON, - ACTIONS(7318), 1, + ACTIONS(1840), 1, anon_sym_DASH, - STATE(6214), 1, - aux_sym_shebang_repeat1, - STATE(4381), 2, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4425), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(5091), 2, - sym_param_type, - sym_param_value, - ACTIONS(7307), 8, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4818), 1, + sym_cell_path, + STATE(4849), 1, + sym_path, + ACTIONS(1842), 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, - [176423] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, - sym__space, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(4382), 1, - sym_comment, - ACTIONS(2243), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176454] = 4, + [177072] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4383), 1, - sym_comment, - ACTIONS(1056), 3, + ACTIONS(1844), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(7200), 1, anon_sym_DOT, - ACTIONS(1058), 13, + STATE(4426), 1, + sym_comment, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4828), 1, + sym_cell_path, + STATE(4849), 1, + sym_path, + ACTIONS(1846), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -362908,90 +368583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176481] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4737), 1, - sym__space, - ACTIONS(7320), 1, - sym_long_flag_identifier, - ACTIONS(7322), 1, - anon_sym_EQ2, - STATE(4384), 1, - sym_comment, - ACTIONS(4735), 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, - [176512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4385), 1, - sym_comment, - ACTIONS(1050), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1048), 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_QMARK2, - [176539] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4386), 1, - sym_comment, - ACTIONS(1645), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1643), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [176566] = 5, + [177107] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7194), 1, anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4387), 1, + ACTIONS(7196), 1, + anon_sym_xor, + STATE(4427), 1, sym_comment, - ACTIONS(7219), 14, - sym__newline, + STATE(4511), 1, + aux_sym_shebang_repeat1, + ACTIONS(7253), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -363003,266 +368608,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [176595] = 3, + [177140] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4388), 1, + ACTIONS(1848), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4428), 1, sym_comment, - ACTIONS(7086), 16, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4894), 1, + sym_cell_path, + ACTIONS(1850), 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_and, - anon_sym_xor, - anon_sym_or, - [176620] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177175] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(2162), 1, - sym__space, - STATE(4389), 1, + ACTIONS(1852), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4429), 1, sym_comment, - ACTIONS(2160), 13, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4896), 1, + sym_cell_path, + ACTIONS(1854), 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, - [176651] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177210] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7324), 1, - anon_sym_DOT_DOT2, - STATE(4390), 1, + ACTIONS(1856), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4430), 1, sym_comment, - ACTIONS(2067), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2061), 11, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4898), 1, + sym_cell_path, + ACTIONS(1858), 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, - [176682] = 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177245] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, + ACTIONS(1860), 1, + anon_sym_DASH, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4391), 1, + STATE(4431), 1, sym_comment, - STATE(5095), 1, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4901), 1, sym_cell_path, - ACTIONS(7328), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7330), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [176717] = 4, + ACTIONS(1862), 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, + [177280] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4392), 1, + ACTIONS(1864), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4432), 1, sym_comment, - ACTIONS(7219), 15, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4918), 1, + sym_cell_path, + ACTIONS(1866), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176744] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177315] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - ACTIONS(7272), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4393), 1, + ACTIONS(1868), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4433), 1, sym_comment, - ACTIONS(7219), 13, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4927), 1, + sym_cell_path, + ACTIONS(1870), 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_or, - [176775] = 7, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177350] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - ACTIONS(7223), 1, - anon_sym_xor, - ACTIONS(7334), 1, - anon_sym_or, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4394), 1, + ACTIONS(1872), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4434), 1, sym_comment, - ACTIONS(7332), 12, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4929), 1, + sym_cell_path, + ACTIONS(1874), 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, - [176808] = 7, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177385] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - ACTIONS(7272), 1, - anon_sym_xor, - ACTIONS(7336), 1, - anon_sym_or, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4395), 1, + ACTIONS(1876), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4435), 1, sym_comment, - ACTIONS(7332), 12, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4980), 1, + sym_cell_path, + ACTIONS(1878), 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, - [176841] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177420] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1078), 1, - sym__space, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(4396), 1, + ACTIONS(1880), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4436), 1, sym_comment, - ACTIONS(1076), 13, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4826), 1, + sym_cell_path, + STATE(4849), 1, + sym_path, + ACTIONS(1882), 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, - [176872] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177455] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7241), 1, - anon_sym_and, - ACTIONS(7245), 1, - anon_sym_xor, - ACTIONS(7340), 1, - anon_sym_or, - STATE(4397), 1, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4437), 1, sym_comment, - ACTIONS(7338), 13, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4831), 1, + sym_cell_path, + STATE(4849), 1, + sym_path, + ACTIONS(1886), 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, - [176903] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177490] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4398), 1, + STATE(4438), 1, sym_comment, - ACTIONS(1633), 2, + ACTIONS(2035), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1631), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2033), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363274,25 +368901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [176930] = 8, + anon_sym_DOT_DOT2, + [177517] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1888), 1, anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4399), 1, + STATE(4439), 1, sym_comment, - STATE(4554), 1, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4777), 1, + STATE(4832), 1, sym_cell_path, - ACTIONS(1873), 11, + STATE(4849), 1, + sym_path, + ACTIONS(1890), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -363304,22 +368929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176965] = 8, + [177552] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1892), 1, anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4400), 1, + STATE(4440), 1, sym_comment, - STATE(4554), 1, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, + STATE(4849), 1, sym_path, - STATE(4791), 1, + STATE(4861), 1, sym_cell_path, - ACTIONS(1877), 11, + ACTIONS(1894), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -363331,14 +368956,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177000] = 4, + [177587] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5083), 1, + ACTIONS(1896), 1, anon_sym_DASH, - STATE(4401), 1, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4441), 1, sym_comment, - ACTIONS(5081), 15, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4868), 1, + sym_cell_path, + ACTIONS(1898), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -363348,20 +368981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [177027] = 4, + [177622] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5087), 1, + ACTIONS(1900), 1, anon_sym_DASH, - STATE(4402), 1, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4442), 1, sym_comment, - ACTIONS(5085), 15, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4869), 1, + sym_cell_path, + ACTIONS(1902), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -363371,20 +369008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [177054] = 4, + [177657] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7344), 1, + ACTIONS(1904), 1, anon_sym_DASH, - STATE(4403), 1, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4443), 1, sym_comment, - ACTIONS(7342), 15, + STATE(4612), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + STATE(4879), 1, + sym_cell_path, + ACTIONS(1906), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -363394,26 +369035,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [177081] = 7, + [177692] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7237), 1, - anon_sym_xor, - STATE(4373), 1, + ACTIONS(7276), 1, + sym__newline, + STATE(4324), 1, aux_sym_shebang_repeat1, - STATE(4404), 1, + STATE(4444), 1, sym_comment, - ACTIONS(7213), 12, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -363425,21 +369060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [177114] = 6, + [177723] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7292), 1, - anon_sym_DOT_DOT2, - STATE(4405), 1, - sym_comment, - ACTIONS(1078), 2, - ts_builtin_sym_end, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, sym__space, - ACTIONS(7294), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1076), 11, + STATE(4445), 1, + sym_comment, + ACTIONS(1778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363451,41 +369085,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, - [177145] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4406), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4885), 1, - sym_cell_path, - ACTIONS(1837), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177180] = 4, + anon_sym_RBRACE, + [177754] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4374), 1, - aux_sym_shebang_repeat1, - STATE(4407), 1, + ACTIONS(6834), 1, + aux_sym_unquoted_token2, + STATE(4446), 1, sym_comment, - ACTIONS(7225), 15, + ACTIONS(1572), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363497,44 +369107,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and, anon_sym_xor, anon_sym_or, - [177207] = 3, + [177781] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4408), 1, + ACTIONS(5109), 1, + anon_sym_DASH, + STATE(4447), 1, sym_comment, - ACTIONS(6680), 16, + ACTIONS(5107), 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, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177232] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [177808] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - sym__space, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, - STATE(4409), 1, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(4448), 1, sym_comment, - ACTIONS(2224), 13, + STATE(4450), 1, + aux_sym_cell_path_repeat1, + STATE(4804), 1, + sym_path, + ACTIONS(1013), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1011), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363546,14 +369159,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, - [177263] = 3, - ACTIONS(247), 1, + [177841] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4410), 1, + ACTIONS(4810), 1, + sym__space, + ACTIONS(7279), 1, + sym_long_flag_identifier, + ACTIONS(7281), 1, + anon_sym_EQ2, + STATE(4449), 1, sym_comment, - ACTIONS(7027), 16, + ACTIONS(4808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363567,18 +369184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177288] = 4, + [177872] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4411), 1, - sym_comment, - ACTIONS(1707), 2, + ACTIONS(7283), 1, + anon_sym_DOT, + STATE(4804), 1, + sym_path, + ACTIONS(1017), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1705), 14, + STATE(4450), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363590,21 +369209,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, - aux_sym_unquoted_token2, - [177315] = 6, + [177903] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - ACTIONS(2253), 1, + ACTIONS(1669), 1, sym__space, - STATE(4412), 1, + ACTIONS(6906), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7286), 1, + anon_sym_DOT, + STATE(4451), 1, sym_comment, - ACTIONS(2251), 13, + ACTIONS(1667), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363618,22 +369234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177346] = 8, + [177934] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(5097), 1, anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4413), 1, + STATE(4452), 1, sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4911), 1, - sym_cell_path, - ACTIONS(1849), 11, + ACTIONS(5095), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -363643,20 +369251,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177381] = 4, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [177961] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4414), 1, - sym_comment, - ACTIONS(2135), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 12, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7276), 1, sym__newline, + STATE(4328), 1, + aux_sym_shebang_repeat1, + STATE(4453), 1, + sym_comment, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -363667,19 +369279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [177408] = 6, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [177992] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - ACTIONS(7223), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4415), 1, + STATE(4454), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(2255), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363692,21 +369300,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_and, + anon_sym_xor, anon_sym_or, - [177439] = 6, + [178017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7346), 1, - anon_sym_DOT_DOT2, - STATE(4416), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2233), 1, + sym__space, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(4455), 1, sym_comment, - ACTIONS(2057), 2, - ts_builtin_sym_end, + ACTIONS(2229), 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, + [178048] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1072), 1, sym__space, - ACTIONS(7348), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2051), 11, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(4456), 1, + sym_comment, + ACTIONS(1070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363718,17 +369352,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, - [177470] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178079] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4417), 1, + ACTIONS(7288), 1, + anon_sym_DOT_DOT2, + STATE(4457), 1, sym_comment, - ACTIONS(1629), 4, + ACTIONS(1072), 2, ts_builtin_sym_end, sym__space, + ACTIONS(7290), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1625), 12, + ACTIONS(1070), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363740,15 +369379,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, - [177497] = 4, - ACTIONS(247), 1, + [178110] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4375), 1, - aux_sym_shebang_repeat1, - STATE(4418), 1, + ACTIONS(7288), 1, + anon_sym_DOT_DOT2, + STATE(4458), 1, sym_comment, - ACTIONS(7225), 15, + ACTIONS(7116), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7290), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363760,45 +369404,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_and, - anon_sym_xor, - anon_sym_or, - [177524] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4419), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4825), 1, - sym_cell_path, - ACTIONS(1947), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177559] = 4, - ACTIONS(247), 1, + [178141] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4322), 1, - aux_sym_shebang_repeat1, - STATE(4420), 1, + STATE(4459), 1, sym_comment, - ACTIONS(7284), 15, + ACTIONS(2255), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2253), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363811,23 +369425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177586] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token4, + [178168] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, - anon_sym_and, - ACTIONS(7233), 1, - anon_sym_xor, - STATE(4357), 1, - aux_sym_shebang_repeat1, - STATE(4421), 1, + ACTIONS(7292), 1, + anon_sym_DOT_DOT2, + STATE(4460), 1, sym_comment, - ACTIONS(7213), 12, + ACTIONS(1997), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7294), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1991), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -363838,16 +369452,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [177619] = 4, - ACTIONS(247), 1, + [178199] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4300), 1, - aux_sym_shebang_repeat1, - STATE(4422), 1, + ACTIONS(7296), 1, + anon_sym_DOT_DOT2, + STATE(4461), 1, sym_comment, - ACTIONS(7213), 15, + ACTIONS(2005), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7298), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1999), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363859,19 +369477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177646] = 4, + [178230] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4423), 1, + ACTIONS(7300), 1, + anon_sym_DOT_DOT2, + STATE(4462), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(2013), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 14, + ACTIONS(7302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2007), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363883,21 +369502,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, - aux_sym_unquoted_token2, - [177673] = 6, + [178261] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__space, - STATE(4424), 1, + STATE(4463), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(1669), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1667), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363911,22 +369524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177704] = 8, + aux_sym_unquoted_token2, + [178288] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1005), 1, anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_DOT, - STATE(4425), 1, + STATE(4464), 1, sym_comment, - STATE(4554), 1, + STATE(4611), 1, + sym_cell_path, + STATE(4612), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, + STATE(4849), 1, sym_path, - STATE(4797), 1, - sym_cell_path, - ACTIONS(1971), 11, + ACTIONS(1007), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -363938,42 +369552,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177739] = 4, + [178323] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4426), 1, + ACTIONS(7304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7306), 1, + aux_sym__immediate_decimal_token2, + STATE(4465), 1, sym_comment, - ACTIONS(7219), 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_and, - anon_sym_xor, - anon_sym_or, - [177766] = 6, + ACTIONS(1540), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1542), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [178354] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7272), 1, + ACTIONS(7247), 1, anon_sym_xor, - STATE(690), 1, + STATE(4373), 1, aux_sym_shebang_repeat1, - STATE(4427), 1, + STATE(4466), 1, sym_comment, - ACTIONS(7206), 13, - sym__newline, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -363986,18 +369603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [177797] = 6, + [178387] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7231), 1, - anon_sym_and, - ACTIONS(7267), 1, + ACTIONS(3705), 1, sym__newline, - STATE(4428), 1, - sym_comment, - STATE(4444), 1, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7196), 1, + anon_sym_xor, + STATE(4374), 1, aux_sym_shebang_repeat1, - ACTIONS(7225), 13, + STATE(4467), 1, + sym_comment, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364009,77 +369628,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [177828] = 8, + [178420] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(4429), 1, - sym_comment, - STATE(4554), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4767), 1, + STATE(2655), 1, sym_path, - STATE(4906), 1, + STATE(4199), 1, sym_cell_path, - ACTIONS(1881), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177863] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7231), 1, - anon_sym_and, - ACTIONS(7233), 1, - anon_sym_xor, - STATE(4352), 1, - aux_sym_shebang_repeat1, - STATE(4430), 1, + STATE(4468), 1, sym_comment, - ACTIONS(7284), 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_or, - [177896] = 8, + ACTIONS(1005), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1007), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [178455] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, + STATE(4469), 1, + sym_comment, + ACTIONS(1046), 3, anon_sym_DASH, - ACTIONS(7204), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4431), 1, - sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4769), 1, - sym_cell_path, - ACTIONS(1967), 11, + ACTIONS(1048), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -364091,12 +369677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177931] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178482] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4432), 1, + STATE(4470), 1, sym_comment, - ACTIONS(5000), 16, + ACTIONS(4982), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364113,20 +369701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177956] = 7, - ACTIONS(247), 1, + [178507] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - ACTIONS(7223), 1, - anon_sym_xor, - ACTIONS(7334), 1, - anon_sym_or, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4433), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + sym__space, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4471), 1, sym_comment, - ACTIONS(7350), 12, + ACTIONS(2237), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364139,18 +369725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177989] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [178538] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7215), 1, - anon_sym_and, - ACTIONS(7267), 1, - sym__newline, - STATE(4434), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2247), 1, + sym__space, + STATE(4472), 1, sym_comment, - STATE(4450), 1, - aux_sym_shebang_repeat1, - ACTIONS(7225), 13, + ACTIONS(2245), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364162,39 +369750,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_xor, - anon_sym_or, - [178020] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4435), 1, - sym_comment, - ACTIONS(1060), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1062), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - 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, - [178047] = 4, + anon_sym_RBRACE, + [178569] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4340), 1, + STATE(4390), 1, aux_sym_shebang_repeat1, - STATE(4436), 1, + STATE(4473), 1, sym_comment, - ACTIONS(7284), 15, + ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364210,18 +369774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178074] = 5, + [178596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token2, - STATE(4437), 1, + STATE(4474), 1, sym_comment, - ACTIONS(1645), 3, + ACTIONS(1677), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1643), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1675), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364233,63 +369796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [178103] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4438), 1, - sym_comment, - ACTIONS(1052), 3, - anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1054), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178130] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4439), 1, - sym_comment, - STATE(5106), 1, - sym_cell_path, - ACTIONS(7352), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7354), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [178165] = 3, + [178623] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4440), 1, + STATE(4391), 1, + aux_sym_shebang_repeat1, + STATE(4475), 1, sym_comment, - ACTIONS(7086), 16, + ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364302,16 +369817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [178190] = 3, - ACTIONS(247), 1, + [178650] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4441), 1, + ACTIONS(4783), 1, + sym__space, + ACTIONS(7308), 1, + anon_sym_EQ2, + ACTIONS(7310), 1, + sym_short_flag_identifier, + STATE(4476), 1, sym_comment, - ACTIONS(7027), 16, + ACTIONS(4781), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364325,25 +369845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178215] = 8, + [178681] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(7314), 1, anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4442), 1, + STATE(4477), 1, sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4807), 1, - sym_cell_path, - ACTIONS(1892), 11, + ACTIONS(7312), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -364353,41 +369862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178250] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [178708] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4341), 1, - aux_sym_shebang_repeat1, - STATE(4443), 1, - sym_comment, - ACTIONS(7284), 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, + ACTIONS(7264), 1, anon_sym_and, + ACTIONS(7268), 1, anon_sym_xor, + ACTIONS(7318), 1, anon_sym_or, - [178277] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4444), 1, + STATE(4478), 1, sym_comment, - ACTIONS(7206), 14, + ACTIONS(7316), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364400,43 +369892,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_xor, - anon_sym_or, - [178306] = 6, + anon_sym_RBRACE, + [178739] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__newline, - ACTIONS(7215), 1, + ACTIONS(7266), 1, anon_sym_and, - STATE(4356), 1, - aux_sym_shebang_repeat1, - STATE(4445), 1, - sym_comment, - ACTIONS(7213), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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(7270), 1, anon_sym_xor, + ACTIONS(7320), 1, anon_sym_or, - [178337] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4446), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7206), 14, + ACTIONS(7316), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364449,22 +369917,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_xor, - anon_sym_or, - [178366] = 7, + anon_sym_RBRACE, + [178770] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, - anon_sym_and, - ACTIONS(7237), 1, - anon_sym_xor, - STATE(4360), 1, - aux_sym_shebang_repeat1, - STATE(4447), 1, + STATE(4480), 1, sym_comment, - ACTIONS(7213), 12, + ACTIONS(6674), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364476,68 +369936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [178399] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7356), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7358), 1, - aux_sym__immediate_decimal_token2, - STATE(4448), 1, - sym_comment, - ACTIONS(1517), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1519), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [178430] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7208), 1, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7272), 1, anon_sym_xor, - ACTIONS(7336), 1, anon_sym_or, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4449), 1, - sym_comment, - ACTIONS(7350), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [178463] = 5, - ACTIONS(247), 1, + [178795] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4450), 1, + STATE(4481), 1, sym_comment, - ACTIONS(7206), 14, + ACTIONS(1661), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1659), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364550,24 +369961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [178492] = 8, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [178822] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH, - ACTIONS(7204), 1, - anon_sym_DOT, - STATE(4451), 1, + STATE(4482), 1, sym_comment, - STATE(4554), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - STATE(4798), 1, - sym_cell_path, - ACTIONS(1959), 11, + ACTIONS(1050), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1052), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -364579,41 +369984,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178527] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178849] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4367), 1, - aux_sym_shebang_repeat1, - STATE(4452), 1, + STATE(4483), 1, sym_comment, - ACTIONS(7213), 15, + ACTIONS(1054), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1056), 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_and, - anon_sym_xor, - anon_sym_or, - [178554] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178876] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7231), 1, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7281), 1, + ACTIONS(7276), 1, sym__newline, - STATE(4350), 1, + STATE(4394), 1, aux_sym_shebang_repeat1, - STATE(4453), 1, + STATE(4484), 1, sym_comment, - ACTIONS(7284), 13, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364627,18 +370034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [178585] = 6, + [178907] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(7194), 1, anon_sym_and, - ACTIONS(7281), 1, + ACTIONS(7276), 1, sym__newline, - STATE(4351), 1, + STATE(4395), 1, aux_sym_shebang_repeat1, - STATE(4454), 1, + STATE(4485), 1, sym_comment, - ACTIONS(7284), 13, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364652,43 +370059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [178616] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_and, - ACTIONS(7223), 1, - anon_sym_xor, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4455), 1, - sym_comment, - ACTIONS(7206), 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_or, - [178647] = 6, + [178938] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(4781), 1, + ACTIONS(7324), 1, sym__space, - STATE(4456), 1, + STATE(4486), 1, sym_comment, - STATE(7570), 1, + STATE(7370), 1, sym__expr_parenthesized_immediate, - ACTIONS(4783), 13, + ACTIONS(7322), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364702,19 +370084,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178678] = 6, + [178969] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7243), 1, + ACTIONS(7247), 1, anon_sym_xor, - ACTIONS(7360), 1, - anon_sym_or, - STATE(4457), 1, + STATE(4405), 1, + aux_sym_shebang_repeat1, + STATE(4487), 1, sym_comment, - ACTIONS(7338), 13, - sym__newline, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364726,16 +370109,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, - [178709] = 4, + anon_sym_or, + [179002] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4368), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7196), 1, + anon_sym_xor, + STATE(4407), 1, aux_sym_shebang_repeat1, - STATE(4458), 1, + STATE(4488), 1, sym_comment, - ACTIONS(7213), 15, - sym__newline, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364747,23 +370135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [178736] = 7, - ACTIONS(247), 1, + [179035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(7215), 1, - anon_sym_and, - ACTIONS(7237), 1, - anon_sym_xor, - STATE(4353), 1, - aux_sym_shebang_repeat1, - STATE(4459), 1, + STATE(4489), 1, sym_comment, - ACTIONS(7284), 12, + ACTIONS(2143), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2141), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364774,19 +370158,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_or, - [178769] = 5, + anon_sym_DOT_DOT2, + [179062] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(7240), 1, anon_sym_and, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4460), 1, + ACTIONS(7247), 1, + anon_sym_xor, + ACTIONS(7326), 1, + anon_sym_or, + STATE(4490), 1, sym_comment, - ACTIONS(7219), 14, - sym__newline, + STATE(4497), 1, + aux_sym_shebang_repeat1, + ACTIONS(7192), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -364798,14 +370186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [178798] = 3, - ACTIONS(247), 1, + [179097] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4461), 1, + ACTIONS(7328), 1, + anon_sym_QMARK2, + STATE(4491), 1, sym_comment, - ACTIONS(2261), 16, + ACTIONS(1024), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364819,19 +370210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178823] = 4, + [179126] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4462), 1, + ACTIONS(7330), 1, + anon_sym_QMARK2, + STATE(4492), 1, sym_comment, - ACTIONS(1042), 3, - ts_builtin_sym_end, + ACTIONS(1030), 2, sym__space, anon_sym_DOT, - ACTIONS(1040), 12, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364843,38 +370232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [178849] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(7362), 1, - anon_sym_DOT_DOT2, - STATE(4463), 1, - sym_comment, - ACTIONS(7364), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2057), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178879] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [179155] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4464), 1, + STATE(4493), 1, sym_comment, - ACTIONS(2057), 15, - ts_builtin_sym_end, + ACTIONS(1723), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1721), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364886,22 +370254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178903] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [179182] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4465), 1, + ACTIONS(7124), 1, + aux_sym__immediate_decimal_token2, + STATE(4494), 1, sym_comment, - STATE(7318), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7265), 2, + ACTIONS(1669), 3, ts_builtin_sym_end, sym__space, - ACTIONS(7263), 11, + anon_sym_LPAREN2, + ACTIONS(1667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364913,111 +370280,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, - [178933] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4466), 1, - sym_comment, - ACTIONS(1625), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1629), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178959] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, - sym__newline, - ACTIONS(7370), 1, - anon_sym_RBRACK, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4467), 1, - sym_comment, - STATE(4851), 1, - aux_sym_parameter_parens_repeat1, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5223), 1, - aux_sym_shebang_repeat1, - STATE(5442), 1, - sym_parameter, - [179011] = 17, + aux_sym_unquoted_token2, + [179211] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, - sym__newline, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7380), 1, - anon_sym_RPAREN, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4468), 1, - sym_comment, - STATE(4866), 1, - aux_sym_parameter_parens_repeat1, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5223), 1, + ACTIONS(7223), 1, + anon_sym_and, + ACTIONS(7229), 1, + anon_sym_xor, + ACTIONS(7334), 1, + anon_sym_or, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(5442), 1, - sym_parameter, - [179063] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4469), 1, + STATE(4495), 1, sym_comment, - ACTIONS(2162), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2160), 11, + ACTIONS(7332), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365029,19 +370306,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, - [179093] = 6, + anon_sym_RPAREN, + [179244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(4470), 1, + STATE(4496), 1, sym_comment, - ACTIONS(1804), 2, - ts_builtin_sym_end, + ACTIONS(1740), 2, sym__space, - ACTIONS(1796), 11, + anon_sym_LPAREN2, + ACTIONS(1738), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365053,43 +370327,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, - [179123] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7382), 1, - anon_sym_DOT, - ACTIONS(7384), 1, - aux_sym__immediate_decimal_token2, - STATE(4471), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [179153] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [179271] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7386), 1, - anon_sym_EQ2, - ACTIONS(7388), 1, - sym_short_flag_identifier, - STATE(4472), 1, + ACTIONS(7223), 1, + anon_sym_and, + ACTIONS(7229), 1, + anon_sym_xor, + ACTIONS(7334), 1, + anon_sym_or, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4497), 1, sym_comment, - ACTIONS(4749), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4747), 11, + ACTIONS(7336), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365101,13 +370355,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, - [179183] = 3, + anon_sym_RPAREN, + [179304] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4473), 1, + ACTIONS(7227), 1, + anon_sym_and, + ACTIONS(7231), 1, + anon_sym_xor, + ACTIONS(7338), 1, + anon_sym_or, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4498), 1, sym_comment, - ACTIONS(7027), 15, - ts_builtin_sym_end, + ACTIONS(7336), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365119,44 +370381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179207] = 6, + anon_sym_RPAREN, + [179337] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7392), 1, - anon_sym_DASH, - ACTIONS(7394), 1, - anon_sym_DOT_DOT2, - STATE(4474), 1, - sym_comment, - ACTIONS(7396), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7390), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3705), 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, - [179237] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4475), 1, + ACTIONS(7240), 1, + anon_sym_and, + ACTIONS(7247), 1, + anon_sym_xor, + ACTIONS(7326), 1, + anon_sym_or, + STATE(4495), 1, + aux_sym_shebang_repeat1, + STATE(4499), 1, sym_comment, - ACTIONS(1645), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1643), 12, - sym__newline, + ACTIONS(7340), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -365167,15 +370408,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [179263] = 3, + anon_sym_RPAREN, + [179372] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4476), 1, - sym_comment, - ACTIONS(2261), 15, - ts_builtin_sym_end, + ACTIONS(3705), 1, sym__newline, + ACTIONS(7194), 1, + anon_sym_and, + ACTIONS(7196), 1, + anon_sym_xor, + ACTIONS(7198), 1, + anon_sym_or, + STATE(4500), 1, + sym_comment, + STATE(4510), 1, + aux_sym_shebang_repeat1, + ACTIONS(7340), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -365186,42 +370435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179287] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_DASH, - ACTIONS(7398), 1, - anon_sym_DOT_DOT2, - STATE(4477), 1, - sym_comment, - ACTIONS(7400), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2067), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179317] = 4, + [179407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4478), 1, + STATE(4501), 1, sym_comment, - ACTIONS(1058), 2, + ACTIONS(1044), 2, sym__space, anon_sym_DOT, - ACTIONS(1056), 13, + ACTIONS(1042), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365235,16 +370458,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179343] = 5, + anon_sym_QMARK2, + [179434] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(4502), 1, + sym_comment, + STATE(5117), 1, + sym_cell_path, + ACTIONS(7342), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7344), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [179469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7404), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(2289), 1, sym__space, - STATE(4479), 1, + STATE(4503), 1, sym_comment, - STATE(4488), 1, - aux_sym_command_repeat1, - ACTIONS(7402), 13, + ACTIONS(2287), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365258,13 +370511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179371] = 3, - ACTIONS(247), 1, + [179500] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4480), 1, + STATE(4504), 1, sym_comment, - ACTIONS(7086), 15, - ts_builtin_sym_end, + ACTIONS(1040), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1038), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365276,21 +370531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179395] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + [179527] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7288), 1, + ACTIONS(7346), 1, + anon_sym_DOT, + ACTIONS(7348), 1, aux_sym__immediate_decimal_token2, - STATE(4481), 1, + STATE(4505), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1667), 3, sym_identifier, anon_sym_DASH, aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 11, + ACTIONS(1669), 11, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365302,13 +370559,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [179423] = 3, - ACTIONS(247), 1, + [179558] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4482), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__space, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4506), 1, sym_comment, - ACTIONS(7027), 15, - ts_builtin_sym_end, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365320,16 +370582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179447] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179589] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4483), 1, + STATE(4507), 1, sym_comment, - ACTIONS(7086), 15, + ACTIONS(1060), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1058), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365341,16 +370606,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_and, - anon_sym_xor, - anon_sym_or, - [179471] = 3, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [179616] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4484), 1, + STATE(4508), 1, sym_comment, - ACTIONS(7027), 15, + ACTIONS(2031), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2029), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365362,18 +370629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179495] = 4, + anon_sym_DOT_DOT2, + [179643] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4485), 1, + STATE(4509), 1, sym_comment, - ACTIONS(1062), 2, + ACTIONS(1036), 2, sym__space, anon_sym_DOT, - ACTIONS(1060), 13, + ACTIONS(1034), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365387,15 +370652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179521] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [179670] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4486), 1, + ACTIONS(7227), 1, + anon_sym_and, + ACTIONS(7231), 1, + anon_sym_xor, + ACTIONS(7338), 1, + anon_sym_or, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4510), 1, sym_comment, - ACTIONS(1054), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1052), 13, + ACTIONS(7332), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365408,13 +370679,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, - [179547] = 3, + [179703] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4487), 1, + ACTIONS(7227), 1, + anon_sym_and, + ACTIONS(7231), 1, + anon_sym_xor, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4511), 1, sym_comment, - ACTIONS(5006), 15, + ACTIONS(7233), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365427,18 +370703,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [179571] = 4, + anon_sym_or, + [179734] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4512), 1, + sym_comment, + ACTIONS(6997), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7408), 1, - sym__space, - STATE(4488), 2, + STATE(4513), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7406), 13, + ACTIONS(4882), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4884), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365452,44 +370747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179597] = 13, + [179784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3991), 1, - anon_sym_DOLLAR, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7411), 1, - anon_sym_DQUOTE, - ACTIONS(7415), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7417), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7419), 1, - sym__unquoted_naive, - STATE(1657), 1, - sym__str_double_quotes, - STATE(1708), 1, - sym__inter_single_quotes, - STATE(1709), 1, - sym__inter_double_quotes, - STATE(4489), 1, - sym_comment, - ACTIONS(7413), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4828), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [179641] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4490), 1, + ACTIONS(7352), 1, + sym__space, + STATE(4514), 1, sym_comment, - ACTIONS(7086), 15, - ts_builtin_sym_end, + STATE(4572), 1, + aux_sym_command_repeat1, + ACTIONS(7350), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365501,24 +370768,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179665] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179812] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(4491), 1, - sym_comment, - ACTIONS(1794), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1786), 11, + ACTIONS(7354), 1, sym__newline, + STATE(715), 1, + aux_sym__pipe_separator, + STATE(4515), 1, + sym_comment, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7357), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -365528,19 +370795,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, - [179695] = 6, + [179844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - STATE(4492), 1, + STATE(4516), 1, sym_comment, - ACTIONS(2222), 2, - ts_builtin_sym_end, + ACTIONS(4892), 2, sym__space, - ACTIONS(2218), 11, + anon_sym_LPAREN2, + ACTIONS(4894), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365552,19 +370815,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, - [179725] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179870] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and, - ACTIONS(7423), 1, - anon_sym_xor, - ACTIONS(7425), 1, - anon_sym_or, - STATE(4493), 1, + ACTIONS(7361), 1, + anon_sym_DASH, + ACTIONS(7363), 1, + anon_sym_DOT_DOT2, + STATE(4517), 1, + sym_comment, + ACTIONS(7365), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7359), 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, + [179900] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4518), 1, sym_comment, - ACTIONS(7338), 12, + ACTIONS(1740), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1738), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365576,19 +370862,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, - [179755] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [179926] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7427), 1, - anon_sym_and, - ACTIONS(7429), 1, - anon_sym_xor, - ACTIONS(7431), 1, - anon_sym_or, - STATE(4494), 1, + ACTIONS(7367), 1, + anon_sym_EQ2, + ACTIONS(7369), 1, + sym_short_flag_identifier, + STATE(4519), 1, sym_comment, - ACTIONS(7338), 12, + ACTIONS(4783), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4781), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365600,12 +370887,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, - [179785] = 3, + [179956] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4495), 1, + STATE(4520), 1, + sym_comment, + ACTIONS(1675), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1677), 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, + [179982] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4521), 1, sym_comment, - ACTIONS(2467), 15, + ACTIONS(2005), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365621,12 +370930,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179809] = 3, + [180006] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4496), 1, + ACTIONS(1070), 1, + anon_sym_DASH, + ACTIONS(7363), 1, + anon_sym_DOT_DOT2, + STATE(4522), 1, + sym_comment, + ACTIONS(7365), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1072), 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, + [180036] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7371), 1, + aux_sym__immediate_decimal_token2, + STATE(4523), 1, + sym_comment, + ACTIONS(1721), 3, + sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 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, + [180064] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4524), 1, sym_comment, - ACTIONS(6680), 15, + ACTIONS(2475), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365642,12 +370998,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179833] = 3, + [180088] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4497), 1, + ACTIONS(1991), 1, + anon_sym_DASH, + ACTIONS(7373), 1, + anon_sym_DOT_DOT2, + STATE(4525), 1, + sym_comment, + ACTIONS(7375), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1997), 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, + [180118] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4526), 1, sym_comment, - ACTIONS(2471), 15, + ACTIONS(6674), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365663,16 +371043,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179857] = 4, + [180142] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7377), 1, + anon_sym_DOT, + ACTIONS(7379), 1, + aux_sym__immediate_decimal_token2, + STATE(4527), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4498), 1, + STATE(4528), 1, sym_comment, - ACTIONS(1633), 3, + ACTIONS(1040), 3, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1631), 12, + anon_sym_DOT, + ACTIONS(1038), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365684,17 +371088,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [179883] = 4, + anon_sym_QMARK2, + [180198] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4499), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4529), 1, sym_comment, - ACTIONS(1046), 3, + STATE(7286), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7324), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1044), 12, + ACTIONS(7322), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365706,20 +371113,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_QMARK2, - [179909] = 6, - ACTIONS(3), 1, + [180228] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4500), 1, + STATE(4530), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4842), 2, + ACTIONS(2479), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4844), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365731,19 +371131,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, - [179939] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180252] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4501), 1, + ACTIONS(2007), 1, + anon_sym_DASH, + ACTIONS(7381), 1, + anon_sym_DOT_DOT2, + STATE(4531), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4759), 2, - ts_builtin_sym_end, + ACTIONS(7383), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 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, + [180282] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1572), 1, sym__space, - ACTIONS(4761), 11, + ACTIONS(6872), 1, + aux_sym_unquoted_token2, + STATE(4532), 1, + sym_comment, + ACTIONS(1560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365755,12 +371179,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, - [179969] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180310] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4502), 1, + STATE(4533), 1, sym_comment, - ACTIONS(2475), 15, + ACTIONS(2483), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365776,76 +371202,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179993] = 17, + [180334] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + ACTIONS(7385), 1, sym_identifier, - ACTIONS(7368), 1, + ACTIONS(7387), 1, sym__newline, - ACTIONS(7372), 1, + ACTIONS(7389), 1, + anon_sym_PIPE, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(7374), 1, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7397), 1, anon_sym_DASH, - ACTIONS(7433), 1, - anon_sym_PIPE, - STATE(4039), 1, + STATE(4067), 1, sym_param_long_flag, - STATE(4242), 1, + STATE(4234), 1, sym__param_name, - STATE(4503), 1, + STATE(4534), 1, sym_comment, - STATE(4889), 1, + STATE(4874), 1, aux_sym_parameter_parens_repeat1, - STATE(5079), 1, + STATE(5085), 1, sym_param_rest, - STATE(5080), 1, + STATE(5094), 1, sym_param_opt, - STATE(5082), 1, + STATE(5095), 1, sym_param_short_flag, - STATE(5223), 1, + STATE(5255), 1, aux_sym_shebang_repeat1, - STATE(5442), 1, + STATE(5403), 1, sym_parameter, - [180045] = 4, + [180386] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4504), 1, + STATE(4535), 1, + sym_comment, + ACTIONS(2487), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180410] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7399), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token2, + STATE(4536), 1, sym_comment, - ACTIONS(2137), 2, + ACTIONS(1540), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2139), 13, - anon_sym_EQ, - sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(1542), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [180071] = 5, + sym_filesize_unit, + sym_duration_unit, + [180440] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + STATE(4537), 1, + sym_comment, + ACTIONS(1786), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1778), 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, + [180470] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7435), 1, - aux_sym__immediate_decimal_token2, - STATE(4505), 1, + STATE(4538), 1, sym_comment, - ACTIONS(1705), 3, - sym_identifier, + ACTIONS(2141), 2, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 11, + anon_sym_DOT_DOT2, + ACTIONS(2143), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -365855,17 +371326,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180496] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3978), 1, anon_sym_LPAREN2, - [180099] = 5, + STATE(4539), 1, + sym_comment, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4755), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4757), 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, + [180526] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, + ACTIONS(7352), 1, sym__space, - ACTIONS(7437), 1, - anon_sym_LBRACK2, - STATE(4506), 1, + STATE(4540), 1, sym_comment, - ACTIONS(2303), 13, + STATE(4603), 1, + aux_sym_command_repeat1, + ACTIONS(7403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365879,15 +371375,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180127] = 4, + [180554] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + ACTIONS(3241), 1, + anon_sym_DOLLAR, + ACTIONS(5784), 1, + anon_sym_LPAREN, + ACTIONS(7405), 1, + anon_sym_DQUOTE, + ACTIONS(7409), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7411), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7413), 1, + sym__unquoted_naive, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2384), 1, + sym__inter_single_quotes, + STATE(2390), 1, + sym__inter_double_quotes, + STATE(4541), 1, sym_comment, - ACTIONS(4886), 2, - sym__space, + ACTIONS(7407), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5123), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [180598] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(4888), 13, + STATE(4542), 1, + sym_comment, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4759), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4761), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365899,45 +371430,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [180628] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7387), 1, + sym__newline, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7415), 1, + anon_sym_RBRACK, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4543), 1, + sym_comment, + STATE(4552), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + aux_sym_parameter_parens_repeat1, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [180680] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7387), 1, + sym__newline, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7417), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [180153] = 13, - ACTIONS(3), 1, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4544), 1, + sym_comment, + STATE(4625), 1, + aux_sym_shebang_repeat1, + STATE(4925), 1, + aux_sym_parameter_parens_repeat1, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [180732] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2119), 1, - anon_sym_DQUOTE, - ACTIONS(2123), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2125), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - ACTIONS(4878), 1, - anon_sym_LPAREN, - ACTIONS(7439), 1, - sym__unquoted_naive, - STATE(4321), 1, - sym__str_double_quotes, - STATE(4508), 1, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token2, + STATE(4545), 1, sym_comment, - STATE(4619), 1, - sym__inter_single_quotes, - STATE(4620), 1, - sym__inter_double_quotes, - ACTIONS(2121), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4716), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [180197] = 3, + ACTIONS(1554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1556), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [180760] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4509), 1, + STATE(4546), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(2025), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365953,12 +371544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180221] = 3, + [180784] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4510), 1, + STATE(4547), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(2013), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365974,15 +371565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180245] = 4, - ACTIONS(247), 1, + [180808] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and, - STATE(4511), 1, + STATE(4548), 1, sym_comment, - ACTIONS(7217), 14, + ACTIONS(1036), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1034), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365994,17 +371586,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_xor, - anon_sym_or, - [180271] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + [180834] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7427), 1, - anon_sym_and, - STATE(4512), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(4549), 1, sym_comment, - ACTIONS(7217), 14, + ACTIONS(2233), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2229), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366016,19 +371611,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_xor, - anon_sym_or, - [180297] = 5, - ACTIONS(247), 1, + [180864] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and, - ACTIONS(7423), 1, - anon_sym_xor, - STATE(4513), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4550), 1, sym_comment, - ACTIONS(7217), 13, + ACTIONS(2241), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2237), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366040,18 +371635,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_or, - [180325] = 5, - ACTIONS(247), 1, + [180894] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7427), 1, - anon_sym_and, - ACTIONS(7429), 1, - anon_sym_xor, - STATE(4514), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(4551), 1, sym_comment, - ACTIONS(7217), 13, + ACTIONS(2247), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2245), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366063,13 +371659,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [180353] = 3, + [180924] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(4515), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7387), 1, + sym__newline, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7421), 1, + anon_sym_RBRACK, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4552), 1, + sym_comment, + STATE(4947), 1, + aux_sym_parameter_parens_repeat1, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5255), 1, + aux_sym_shebang_repeat1, + STATE(5403), 1, + sym_parameter, + [180976] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4553), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(5008), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366085,16 +371715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180377] = 4, + [181000] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4516), 1, - sym_comment, - ACTIONS(2261), 3, - ts_builtin_sym_end, + ACTIONS(7423), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2259), 12, + ACTIONS(7425), 1, + aux_sym_record_entry_token1, + STATE(4554), 1, + sym_comment, + STATE(4572), 1, + aux_sym_command_repeat1, + ACTIONS(7350), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366106,17 +371738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [180403] = 5, + anon_sym_RBRACE, + [181030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7404), 1, - sym__space, - STATE(4479), 1, - aux_sym_command_repeat1, - STATE(4517), 1, + STATE(4555), 1, sym_comment, - ACTIONS(7441), 13, + ACTIONS(1723), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1721), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366128,39 +371760,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, - [180431] = 4, + aux_sym_unquoted_token2, + [181056] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4518), 1, - sym_comment, - ACTIONS(2019), 2, + ACTIONS(1999), 1, anon_sym_DASH, + ACTIONS(7427), 1, anon_sym_DOT_DOT2, - ACTIONS(2021), 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, + STATE(4556), 1, + sym_comment, + ACTIONS(7429), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [180457] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4519), 1, - sym_comment, - ACTIONS(1064), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1066), 13, + ACTIONS(2005), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -366172,69 +371785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [180483] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, - STATE(4520), 1, - sym_comment, - ACTIONS(2228), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2224), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [180513] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3225), 1, - anon_sym_DOLLAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(7443), 1, - anon_sym_DQUOTE, - ACTIONS(7447), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7449), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7451), 1, - sym__unquoted_naive, - STATE(1984), 1, - sym__str_double_quotes, - STATE(2404), 1, - sym__inter_single_quotes, - STATE(2407), 1, - sym__inter_double_quotes, - STATE(4521), 1, - sym_comment, - ACTIONS(7445), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5108), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [180557] = 3, + [181086] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4522), 1, + ACTIONS(7431), 1, + anon_sym_and, + ACTIONS(7433), 1, + anon_sym_xor, + STATE(4557), 1, sym_comment, - ACTIONS(2479), 15, + ACTIONS(7255), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366247,15 +371807,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_and, - anon_sym_xor, anon_sym_or, - [180581] = 3, + [181114] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4523), 1, + STATE(4558), 1, sym_comment, - ACTIONS(2483), 15, + ACTIONS(1997), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366271,12 +371829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180605] = 3, + [181138] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4524), 1, + STATE(4559), 1, sym_comment, - ACTIONS(2487), 15, + ACTIONS(2491), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366292,13 +371850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180629] = 3, - ACTIONS(247), 1, + [181162] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4525), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4560), 1, sym_comment, - ACTIONS(2491), 15, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4747), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4749), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366310,25 +371874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180653] = 7, - ACTIONS(247), 1, + [181192] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7453), 1, - sym__newline, - STATE(681), 1, - aux_sym__pipe_separator, - STATE(4526), 1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(4561), 1, sym_comment, - STATE(5112), 1, - aux_sym_shebang_repeat1, - ACTIONS(7456), 3, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4751), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4753), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -366338,41 +371898,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, - [180685] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7458), 1, - aux_sym__immediate_decimal_token2, - STATE(4527), 1, - sym_comment, - ACTIONS(1565), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1567), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [180713] = 5, + [181222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7460), 1, - anon_sym_QMARK2, - STATE(4528), 1, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(4562), 1, sym_comment, - ACTIONS(1036), 3, + ACTIONS(1072), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1034), 11, + ACTIONS(1070), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366384,10 +371922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180741] = 3, + [181252] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4529), 1, + STATE(4563), 1, sym_comment, ACTIONS(2495), 15, ts_builtin_sym_end, @@ -366405,18 +371943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180765] = 5, + [181276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7462), 1, - anon_sym_QMARK2, - STATE(4530), 1, - sym_comment, - ACTIONS(1030), 3, - ts_builtin_sym_end, + ACTIONS(7352), 1, sym__space, - anon_sym_DOT, - ACTIONS(1028), 11, + STATE(4540), 1, + aux_sym_command_repeat1, + STATE(4564), 1, + sym_comment, + ACTIONS(7435), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366428,48 +371964,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, - [180793] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181304] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + STATE(4565), 1, + sym_comment, + ACTIONS(2029), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2031), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(7368), 1, sym__newline, - ACTIONS(7372), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7464), 1, - anon_sym_RBRACK, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4531), 1, - sym_comment, - STATE(4542), 1, - aux_sym_shebang_repeat1, - STATE(4861), 1, - aux_sym_parameter_parens_repeat1, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [180845] = 3, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [181330] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4532), 1, + STATE(4566), 1, sym_comment, - ACTIONS(2499), 15, - ts_builtin_sym_end, + ACTIONS(1048), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1046), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366481,22 +372008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180869] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181356] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4533), 1, + STATE(4567), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4781), 2, + ACTIONS(2499), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4783), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366508,19 +372028,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, - [180899] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [181380] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(4534), 1, + STATE(4568), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4769), 2, + ACTIONS(2503), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4771), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366532,16 +372049,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, - [180929] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [181404] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4569), 1, sym_comment, - ACTIONS(1050), 3, - ts_builtin_sym_end, + ACTIONS(1052), 2, sym__space, anon_sym_DOT, - ACTIONS(1048), 12, + ACTIONS(1050), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366553,14 +372072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [180955] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181430] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4536), 1, + STATE(4570), 1, sym_comment, - ACTIONS(2503), 15, - ts_builtin_sym_end, + ACTIONS(1056), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1054), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366572,16 +372094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180979] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181456] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4537), 1, + ACTIONS(7437), 1, + anon_sym_QMARK2, + STATE(4571), 1, sym_comment, - ACTIONS(7217), 15, + ACTIONS(1024), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366593,56 +372119,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181003] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, - sym__newline, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7466), 1, - anon_sym_RPAREN, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4538), 1, - sym_comment, - STATE(4577), 1, - aux_sym_shebang_repeat1, - STATE(4895), 1, - aux_sym_parameter_parens_repeat1, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [181055] = 6, + [181484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7470), 1, + ACTIONS(7352), 1, sym__space, - ACTIONS(7472), 1, - aux_sym_record_entry_token1, - STATE(4539), 1, + STATE(4572), 1, sym_comment, - STATE(4540), 1, + STATE(4603), 1, aux_sym_command_repeat1, - ACTIONS(7468), 12, + ACTIONS(7439), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366654,17 +372140,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, - [181085] = 5, + [181512] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7363), 1, + anon_sym_DOT_DOT2, + ACTIONS(7443), 1, + anon_sym_DASH, + STATE(4573), 1, + sym_comment, + ACTIONS(7365), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7441), 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, + [181542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7404), 1, - sym__space, - STATE(4488), 1, - aux_sym_command_repeat1, - STATE(4540), 1, + STATE(4574), 1, sym_comment, - ACTIONS(7474), 13, + ACTIONS(1669), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366676,77 +372187,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, - [181113] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7476), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - aux_sym__immediate_decimal_token2, - STATE(4541), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1499), 11, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [181143] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, - sym__newline, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7481), 1, - anon_sym_RBRACK, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4542), 1, - sym_comment, - STATE(4860), 1, - aux_sym_parameter_parens_repeat1, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5223), 1, - aux_sym_shebang_repeat1, - STATE(5442), 1, - sym_parameter, - [181195] = 4, + aux_sym_unquoted_token2, + [181568] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4543), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4575), 1, sym_comment, - ACTIONS(1707), 3, + ACTIONS(2289), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1705), 12, + ACTIONS(2287), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366758,20 +372212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [181221] = 6, + [181598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7483), 1, - anon_sym_DOT, - STATE(4544), 1, + ACTIONS(7445), 1, + sym_long_flag_identifier, + ACTIONS(7447), 1, + anon_sym_EQ2, + STATE(4576), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(4810), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1643), 11, + ACTIONS(4808), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366783,14 +372236,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, - [181251] = 4, + [181628] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and, - STATE(4545), 1, + STATE(4577), 1, sym_comment, - ACTIONS(7217), 14, + ACTIONS(2255), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366803,17 +372254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [181277] = 4, - ACTIONS(247), 1, + [181652] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7427), 1, - anon_sym_and, - STATE(4546), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + STATE(4578), 1, sym_comment, - ACTIONS(7217), 14, + ACTIONS(1796), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366825,41 +372281,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_xor, - anon_sym_or, - [181303] = 6, + [181682] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_DOT_DOT2, - ACTIONS(7487), 1, + ACTIONS(2019), 1, anon_sym_DASH, - STATE(4547), 1, + ACTIONS(7449), 1, + anon_sym_DOT_DOT2, + STATE(4579), 1, sym_comment, - ACTIONS(7396), 2, + ACTIONS(7451), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7485), 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, - [181333] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4548), 1, - sym_comment, - ACTIONS(2133), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2135), 13, + ACTIONS(2025), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -366871,112 +372305,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [181359] = 17, + [181712] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + ACTIONS(7385), 1, sym_identifier, - ACTIONS(7368), 1, + ACTIONS(7387), 1, sym__newline, - ACTIONS(7372), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(7374), 1, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7397), 1, anon_sym_DASH, - ACTIONS(7489), 1, + ACTIONS(7453), 1, anon_sym_RBRACK, - STATE(4039), 1, + STATE(4067), 1, sym_param_long_flag, - STATE(4242), 1, + STATE(4234), 1, sym__param_name, - STATE(4467), 1, - aux_sym_shebang_repeat1, - STATE(4549), 1, + STATE(4580), 1, sym_comment, - STATE(4910), 1, + STATE(4621), 1, + aux_sym_shebang_repeat1, + STATE(4961), 1, aux_sym_parameter_parens_repeat1, - STATE(5079), 1, + STATE(5085), 1, sym_param_rest, - STATE(5080), 1, + STATE(5094), 1, sym_param_opt, - STATE(5082), 1, + STATE(5095), 1, sym_param_short_flag, - STATE(5442), 1, + STATE(5403), 1, sym_parameter, - [181411] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and, - ACTIONS(7423), 1, - anon_sym_xor, - STATE(4550), 1, - sym_comment, - ACTIONS(7217), 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_or, - [181439] = 17, + [181764] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + ACTIONS(7385), 1, sym_identifier, - ACTIONS(7368), 1, + ACTIONS(7387), 1, sym__newline, - ACTIONS(7372), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(7374), 1, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7397), 1, anon_sym_DASH, - ACTIONS(7491), 1, + ACTIONS(7455), 1, anon_sym_RPAREN, - STATE(4039), 1, + STATE(4067), 1, sym_param_long_flag, - STATE(4242), 1, + STATE(4234), 1, sym__param_name, - STATE(4468), 1, - aux_sym_shebang_repeat1, - STATE(4551), 1, + STATE(4581), 1, sym_comment, - STATE(4909), 1, + STATE(4623), 1, + aux_sym_shebang_repeat1, + STATE(4964), 1, aux_sym_parameter_parens_repeat1, - STATE(5079), 1, + STATE(5085), 1, sym_param_rest, - STATE(5080), 1, + STATE(5094), 1, sym_param_opt, - STATE(5082), 1, + STATE(5095), 1, sym_param_short_flag, - STATE(5442), 1, + STATE(5403), 1, sym_parameter, - [181491] = 5, - ACTIONS(247), 1, + [181816] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7427), 1, - anon_sym_and, - ACTIONS(7429), 1, - anon_sym_xor, - STATE(4552), 1, + ACTIONS(7423), 1, + sym__space, + ACTIONS(7457), 1, + aux_sym_record_entry_token1, + STATE(4572), 1, + aux_sym_command_repeat1, + STATE(4582), 1, sym_comment, - ACTIONS(7217), 13, - ts_builtin_sym_end, + ACTIONS(7350), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366988,66 +372398,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_or, - [181519] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_DASH, - ACTIONS(7394), 1, - anon_sym_DOT_DOT2, - STATE(4553), 1, - sym_comment, - ACTIONS(7396), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181549] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [181846] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_DASH, - ACTIONS(7204), 1, + ACTIONS(6988), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7459), 1, anon_sym_DOT, - STATE(4554), 1, + STATE(4583), 1, sym_comment, - STATE(4557), 1, - aux_sym_cell_path_repeat1, - STATE(4767), 1, - sym_path, - ACTIONS(1019), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181581] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1587), 1, + ACTIONS(1669), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - STATE(4555), 1, - sym_comment, - ACTIONS(1575), 13, + ACTIONS(1667), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367059,15 +372423,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, - [181609] = 3, - ACTIONS(247), 1, + [181876] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4556), 1, + STATE(4584), 1, sym_comment, - ACTIONS(5000), 15, + ACTIONS(2255), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2253), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367079,22 +372444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181633] = 6, + aux_sym_unquoted_token4, + [181902] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(7493), 1, - anon_sym_DOT, - STATE(4767), 1, - sym_path, - STATE(4557), 2, + STATE(4585), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 11, + ACTIONS(2033), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2035), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -367106,59 +372465,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181663] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7404), 1, - sym__space, - STATE(4540), 1, - aux_sym_command_repeat1, - STATE(4558), 1, - sym_comment, - ACTIONS(7468), 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, - [181691] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [181928] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_DOT_DOT2, - ACTIONS(7498), 1, + ACTIONS(7461), 1, + sym_identifier, + ACTIONS(7466), 1, + anon_sym_DOLLAR, + ACTIONS(7469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7472), 1, + anon_sym_DASH_DASH, + ACTIONS(7475), 1, anon_sym_DASH, - STATE(4559), 1, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + STATE(4586), 2, sym_comment, - ACTIONS(7396), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7496), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + aux_sym_parameter_parens_repeat1, + ACTIONS(7464), 3, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181721] = 3, + [181974] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4560), 1, + STATE(4587), 1, sym_comment, - ACTIONS(4990), 15, + ACTIONS(5044), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367174,68 +372520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181745] = 7, + [181998] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, - sym__newline, - STATE(681), 1, - aux_sym__pipe_separator, - STATE(4561), 1, - sym_comment, - STATE(5112), 1, - aux_sym_shebang_repeat1, - ACTIONS(7503), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2936), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181777] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4562), 1, - sym_comment, - ACTIONS(2297), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2293), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181807] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(4563), 1, + STATE(4588), 1, sym_comment, - ACTIONS(1078), 2, + ACTIONS(2507), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367247,60 +372538,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, - [181837] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182022] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7505), 1, - sym_long_flag_identifier, - ACTIONS(7507), 1, - anon_sym_EQ2, - STATE(4564), 1, - sym_comment, - ACTIONS(4737), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4735), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181867] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7509), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7511), 1, - aux_sym__immediate_decimal_token2, - STATE(4565), 1, + ACTIONS(2200), 1, + anon_sym_DQUOTE, + ACTIONS(2204), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2206), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4247), 1, + anon_sym_DOLLAR, + ACTIONS(4890), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + sym__unquoted_naive, + STATE(4589), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181897] = 3, + STATE(4626), 1, + sym__str_double_quotes, + STATE(4866), 1, + sym__inter_single_quotes, + STATE(4872), 1, + sym__inter_double_quotes, + ACTIONS(2202), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4890), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [182066] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4566), 1, + STATE(4590), 1, sym_comment, - ACTIONS(4994), 15, + ACTIONS(2511), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367316,41 +372593,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181921] = 6, - ACTIONS(3), 1, + [182090] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7470), 1, - sym__space, - ACTIONS(7513), 1, - aux_sym_record_entry_token1, - STATE(4540), 1, - aux_sym_command_repeat1, - STATE(4567), 1, - sym_comment, - ACTIONS(7468), 12, + ACTIONS(7480), 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_RBRACE, - [181951] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4568), 1, + STATE(715), 1, + aux_sym__pipe_separator, + STATE(4591), 1, sym_comment, - ACTIONS(4924), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4926), 13, - sym__newline, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7483), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -367360,72 +372618,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, - [181977] = 17, + [182122] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + ACTIONS(7385), 1, sym_identifier, - ACTIONS(7368), 1, + ACTIONS(7387), 1, sym__newline, - ACTIONS(7372), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(7374), 1, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7397), 1, anon_sym_DASH, - ACTIONS(7515), 1, + ACTIONS(7485), 1, anon_sym_PIPE, - STATE(4039), 1, + STATE(4067), 1, sym_param_long_flag, - STATE(4242), 1, + STATE(4234), 1, sym__param_name, - STATE(4503), 1, + STATE(4534), 1, aux_sym_shebang_repeat1, - STATE(4569), 1, + STATE(4592), 1, sym_comment, - STATE(4832), 1, + STATE(4949), 1, aux_sym_parameter_parens_repeat1, - STATE(5079), 1, + STATE(5085), 1, sym_param_rest, - STATE(5080), 1, + STATE(5094), 1, sym_param_opt, - STATE(5082), 1, + STATE(5095), 1, sym_param_short_flag, - STATE(5442), 1, + STATE(5403), 1, sym_parameter, - [182029] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7479), 1, - aux_sym__immediate_decimal_token2, - STATE(4570), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1499), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [182057] = 3, + [182174] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4571), 1, + ACTIONS(7487), 1, + anon_sym_and, + ACTIONS(7489), 1, + anon_sym_xor, + ACTIONS(7491), 1, + anon_sym_or, + STATE(4593), 1, sym_comment, - ACTIONS(2067), 15, + ACTIONS(7316), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367438,50 +372677,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_and, - anon_sym_xor, - anon_sym_or, - [182081] = 13, + [182204] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DQUOTE, - ACTIONS(2208), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2210), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(4884), 1, - anon_sym_LPAREN, - ACTIONS(7517), 1, - sym__unquoted_naive, - STATE(4462), 1, - sym__str_double_quotes, - STATE(4572), 1, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + STATE(4594), 1, sym_comment, - STATE(4775), 1, - sym__inter_single_quotes, - STATE(4778), 1, - sym__inter_double_quotes, - ACTIONS(2206), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4864), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [182125] = 4, - ACTIONS(3), 1, + ACTIONS(2295), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2291), 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, + [182234] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4573), 1, + ACTIONS(7431), 1, + anon_sym_and, + ACTIONS(7433), 1, + anon_sym_xor, + ACTIONS(7493), 1, + anon_sym_or, + STATE(4595), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(7316), 12, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367493,17 +372725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [182151] = 5, - ACTIONS(3), 1, + [182264] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4904), 1, - sym__space, - ACTIONS(7519), 1, - anon_sym_EQ2, - STATE(4574), 1, + STATE(4596), 1, sym_comment, - ACTIONS(4906), 13, + ACTIONS(5016), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367516,17 +372743,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_else, anon_sym_RBRACE, - [182179] = 5, + anon_sym_catch, + [182288] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, + ACTIONS(2317), 1, sym__space, - ACTIONS(7521), 1, - anon_sym_EQ2, - STATE(4575), 1, + ACTIONS(7495), 1, + anon_sym_LBRACK2, + STATE(4597), 1, sym_comment, - ACTIONS(4916), 13, + ACTIONS(2313), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367540,79 +372769,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182207] = 14, + [182316] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, - sym_identifier, - ACTIONS(7528), 1, - anon_sym_DOLLAR, - ACTIONS(7531), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7534), 1, - anon_sym_DASH_DASH, - ACTIONS(7537), 1, - anon_sym_DASH, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - STATE(4576), 2, + STATE(4598), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7526), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [182253] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, + ACTIONS(2515), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7540), 1, - anon_sym_RPAREN, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4577), 1, - sym_comment, - STATE(4915), 1, - aux_sym_parameter_parens_repeat1, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5223), 1, - aux_sym_shebang_repeat1, - STATE(5442), 1, - sym_parameter, - [182305] = 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_and, + anon_sym_xor, + anon_sym_or, + [182340] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4578), 1, + STATE(4599), 1, sym_comment, - ACTIONS(2451), 15, + ACTIONS(6997), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367628,43 +372811,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182329] = 6, - ACTIONS(247), 1, + [182364] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2035), 1, - anon_sym_DASH, - ACTIONS(7542), 1, - anon_sym_DOT_DOT2, - STATE(4579), 1, + ACTIONS(4940), 1, + sym__space, + ACTIONS(7497), 1, + anon_sym_EQ2, + STATE(4600), 1, sym_comment, - ACTIONS(7544), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4942), 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, - [182359] = 6, + anon_sym_RBRACE, + [182392] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(4580), 1, - sym_comment, - ACTIONS(2247), 2, - ts_builtin_sym_end, + ACTIONS(4898), 1, sym__space, - ACTIONS(2243), 11, + ACTIONS(7499), 1, + anon_sym_EQ2, + STATE(4601), 1, + sym_comment, + ACTIONS(4900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367676,19 +372855,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, - [182389] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(4581), 1, + STATE(4602), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(1661), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2251), 11, + anon_sym_LPAREN2, + ACTIONS(1659), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367700,37 +372878,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, - [182419] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(7546), 1, - anon_sym_DOT_DOT2, - STATE(4582), 1, - sym_comment, - ACTIONS(7548), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2049), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182449] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [182446] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4583), 1, + ACTIONS(7503), 1, + sym__space, + STATE(4603), 2, sym_comment, - ACTIONS(2041), 15, - ts_builtin_sym_end, + aux_sym_command_repeat1, + ACTIONS(7501), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367742,15 +372899,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_and, - anon_sym_xor, - anon_sym_or, - [182473] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182472] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4584), 1, + STATE(4604), 1, sym_comment, - ACTIONS(2049), 15, + ACTIONS(7052), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367766,12 +372922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182497] = 3, + [182496] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4585), 1, + STATE(4605), 1, sym_comment, - ACTIONS(7550), 15, + ACTIONS(6997), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367783,18 +372940,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [182521] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182520] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, - sym__space, - STATE(4586), 1, + ACTIONS(2081), 1, + anon_sym_DQUOTE, + ACTIONS(2085), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2087), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4283), 1, + anon_sym_DOLLAR, + ACTIONS(4908), 1, + anon_sym_LPAREN, + ACTIONS(7506), 1, + sym__unquoted_naive, + STATE(4501), 1, + sym__str_double_quotes, + STATE(4606), 1, + sym_comment, + STATE(4767), 1, + sym__inter_single_quotes, + STATE(4768), 1, + sym__inter_double_quotes, + ACTIONS(2083), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4662), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [182564] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7508), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + aux_sym__immediate_decimal_token2, + STATE(4607), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1520), 11, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [182594] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7511), 1, + aux_sym__immediate_decimal_token2, + STATE(4608), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1520), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [182622] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, + STATE(4609), 1, sym_comment, - ACTIONS(1575), 13, + ACTIONS(2301), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2297), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367806,20 +373045,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, - [182546] = 6, + [182652] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7552), 1, - sym__newline, - ACTIONS(7557), 1, - anon_sym_catch, - STATE(4587), 1, + STATE(4610), 1, sym_comment, - STATE(4694), 1, - aux_sym_shebang_repeat1, - ACTIONS(7555), 11, + ACTIONS(7052), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367830,19 +373063,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182676] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4611), 1, + sym_comment, + ACTIONS(1058), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1060), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [182575] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [182702] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7561), 1, + ACTIONS(1011), 1, anon_sym_DASH, - STATE(4588), 1, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4612), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7559), 11, + STATE(4622), 1, + aux_sym_cell_path_repeat1, + STATE(4849), 1, + sym_path, + ACTIONS(1013), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -367854,21 +373113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182604] = 7, + [182734] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7563), 1, - sym__newline, - STATE(683), 1, - aux_sym__pipe_separator, - STATE(4589), 1, + ACTIONS(7487), 1, + anon_sym_and, + ACTIONS(7489), 1, + anon_sym_xor, + STATE(4613), 1, sym_comment, - STATE(5112), 1, - aux_sym_shebang_repeat1, - ACTIONS(7566), 2, + ACTIONS(7255), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -367878,17 +373135,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, - [182635] = 4, + anon_sym_or, + [182762] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4590), 1, + ACTIONS(7348), 1, + aux_sym__immediate_decimal_token2, + STATE(4614), 1, sym_comment, - ACTIONS(1048), 2, + ACTIONS(1667), 3, + sym_identifier, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1050), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -367898,19 +373158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [182660] = 6, + anon_sym_LPAREN2, + [182790] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7570), 1, + ACTIONS(7363), 1, + anon_sym_DOT_DOT2, + ACTIONS(7515), 1, anon_sym_DASH, - STATE(4591), 1, + STATE(4615), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7568), 11, + ACTIONS(7365), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7513), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -367922,40 +373183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182689] = 5, + [182820] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7574), 1, - anon_sym_LT, - ACTIONS(7576), 1, - anon_sym_DASH, - STATE(4592), 1, + STATE(4616), 1, sym_comment, - ACTIONS(7572), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182716] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7578), 1, + ACTIONS(4982), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(7580), 1, - sym__space, - STATE(4593), 1, - sym_comment, - STATE(4698), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7582), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367966,40 +373201,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, - [182745] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182844] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4594), 1, + STATE(4617), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7052), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [182770] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182868] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2971), 1, - sym__newline, - ACTIONS(7584), 1, - anon_sym_else, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4595), 1, + STATE(4618), 1, sym_comment, - ACTIONS(1900), 11, + ACTIONS(7255), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368010,87 +373243,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [182799] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182892] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1786), 1, - anon_sym_DASH, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(4596), 1, + STATE(4619), 1, sym_comment, - ACTIONS(1794), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7255), 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, - [182828] = 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, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182916] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7384), 1, - aux_sym__immediate_decimal_token2, - STATE(4597), 1, + ACTIONS(7487), 1, + anon_sym_and, + STATE(4620), 1, sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 10, + ACTIONS(7255), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [182855] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor, + anon_sym_or, + [182942] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_AT, - ACTIONS(7591), 1, - anon_sym_DASH, - STATE(4598), 1, - sym_comment, - STATE(5042), 1, - sym_param_cmd, - ACTIONS(7587), 11, - anon_sym_EQ, + ACTIONS(7385), 1, sym_identifier, + ACTIONS(7387), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7391), 1, anon_sym_DOLLAR, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - [182884] = 6, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7517), 1, + anon_sym_RBRACK, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4621), 1, + sym_comment, + STATE(4887), 1, + aux_sym_parameter_parens_repeat1, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5255), 1, + aux_sym_shebang_repeat1, + STATE(5403), 1, + sym_parameter, + [182994] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_AT, - ACTIONS(7591), 1, + ACTIONS(1015), 1, anon_sym_DASH, - STATE(4599), 1, + ACTIONS(7519), 1, + anon_sym_DOT, + STATE(4849), 1, + sym_path, + STATE(4622), 2, sym_comment, - STATE(5043), 1, - sym_param_cmd, - ACTIONS(7587), 11, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368102,41 +373348,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182913] = 6, + [183024] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2160), 1, - anon_sym_DASH, - STATE(4600), 1, - sym_comment, - ACTIONS(2162), 11, - anon_sym_EQ, + ACTIONS(7385), 1, sym_identifier, + ACTIONS(7387), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7391), 1, anon_sym_DOLLAR, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - [182942] = 6, - ACTIONS(3), 1, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7522), 1, + anon_sym_RPAREN, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4623), 1, + sym_comment, + STATE(4895), 1, + aux_sym_parameter_parens_repeat1, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5255), 1, + aux_sym_shebang_repeat1, + STATE(5403), 1, + sym_parameter, + [183076] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7593), 1, - ts_builtin_sym_end, - ACTIONS(7595), 1, - sym__space, - STATE(4601), 1, + ACTIONS(7431), 1, + anon_sym_and, + STATE(4624), 1, sym_comment, - STATE(4740), 1, - aux_sym_command_repeat1, - ACTIONS(7402), 11, + ACTIONS(7255), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368148,83 +373403,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, - [182971] = 5, + anon_sym_xor, + anon_sym_or, + [183102] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7576), 1, - anon_sym_DASH, - ACTIONS(7597), 1, - anon_sym_LT, - STATE(4602), 1, - sym_comment, - ACTIONS(7572), 12, - anon_sym_EQ, + ACTIONS(7385), 1, sym_identifier, + ACTIONS(7387), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7391), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - [182998] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7392), 1, + ACTIONS(7397), 1, anon_sym_DASH, - STATE(4603), 1, - sym_comment, - STATE(7378), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7390), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7524), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183027] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4604), 1, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4625), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [183052] = 5, + STATE(4986), 1, + aux_sym_parameter_parens_repeat1, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5255), 1, + aux_sym_shebang_repeat1, + STATE(5403), 1, + sym_parameter, + [183154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7599), 1, - anon_sym_LBRACK2, - STATE(4605), 1, + STATE(4626), 1, sym_comment, - ACTIONS(2307), 2, + ACTIONS(1044), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2303), 11, + anon_sym_DOT, + ACTIONS(1042), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368236,18 +373461,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, - [183079] = 6, + anon_sym_QMARK2, + [183180] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4003), 1, + anon_sym_DOLLAR, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DQUOTE, + ACTIONS(7530), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7532), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7534), 1, + sym__unquoted_naive, + STATE(1675), 1, + sym__str_double_quotes, + STATE(1729), 1, + sym__inter_single_quotes, + STATE(1732), 1, + sym__inter_double_quotes, + STATE(4627), 1, + sym_comment, + ACTIONS(7528), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4923), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [183224] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7601), 1, - sym__newline, - ACTIONS(7606), 1, - anon_sym_else, - STATE(4606), 1, + ACTIONS(7487), 1, + anon_sym_and, + ACTIONS(7489), 1, + anon_sym_xor, + STATE(4628), 1, sym_comment, - STATE(4661), 1, - aux_sym_shebang_repeat1, - ACTIONS(7604), 11, + ACTIONS(7255), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368258,15 +373515,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, - [183108] = 4, - ACTIONS(3), 1, + anon_sym_or, + [183252] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1078), 1, - sym__space, - STATE(4607), 1, + ACTIONS(7431), 1, + anon_sym_and, + ACTIONS(7433), 1, + anon_sym_xor, + STATE(4629), 1, sym_comment, - ACTIONS(1076), 13, + ACTIONS(7255), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368278,18 +373538,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, - [183133] = 4, - ACTIONS(3), 1, + anon_sym_or, + [183280] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4608), 1, + STATE(4630), 1, sym_comment, - ACTIONS(1058), 3, + ACTIONS(7255), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1056), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368301,18 +373557,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, - [183158] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [183304] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2971), 1, - sym__newline, - ACTIONS(7608), 1, - anon_sym_else, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4609), 1, + STATE(4631), 1, sym_comment, - ACTIONS(1900), 11, + ACTIONS(7255), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368323,44 +373578,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, - [183187] = 12, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [183328] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(3483), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7611), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7617), 1, - aux_sym__immediate_decimal_token5, - STATE(4610), 1, + ACTIONS(7487), 1, + anon_sym_and, + STATE(4632), 1, sym_comment, - STATE(5511), 1, - sym__immediate_decimal, - ACTIONS(7613), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5880), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1493), 3, + ACTIONS(7255), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [183228] = 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, + anon_sym_xor, + anon_sym_or, + [183354] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5038), 1, - sym__space, - STATE(4611), 1, + STATE(4633), 1, sym_comment, - ACTIONS(5040), 13, + ACTIONS(7536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368373,19 +373621,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_else, anon_sym_RBRACE, - [183253] = 6, + anon_sym_catch, + [183378] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7619), 1, - sym__newline, - ACTIONS(7624), 1, - anon_sym_catch, - STATE(4612), 1, + ACTIONS(7431), 1, + anon_sym_and, + STATE(4634), 1, sym_comment, - STATE(4636), 1, - aux_sym_shebang_repeat1, - ACTIONS(7622), 11, + ACTIONS(7255), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368396,19 +373644,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, - [183282] = 6, - ACTIONS(247), 1, + anon_sym_xor, + anon_sym_or, + [183404] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7626), 1, - sym__newline, - ACTIONS(7631), 1, - anon_sym_else, - STATE(4609), 1, - aux_sym_shebang_repeat1, - STATE(4613), 1, + ACTIONS(7538), 1, + anon_sym_QMARK2, + STATE(4635), 1, sym_comment, - ACTIONS(7629), 11, + ACTIONS(1030), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1028), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368419,15 +373669,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, - [183311] = 4, + [183432] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5099), 1, sym__space, - STATE(4614), 1, + STATE(4636), 1, sym_comment, - ACTIONS(5026), 13, + ACTIONS(5101), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368441,39 +373690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183336] = 4, - ACTIONS(247), 1, + [183457] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4615), 1, + ACTIONS(6939), 1, + aux_sym_unquoted_token2, + STATE(4637), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1572), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1560), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [183361] = 6, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183484] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2971), 1, - sym__newline, - ACTIONS(7633), 1, - anon_sym_else, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4616), 1, + STATE(4638), 1, sym_comment, - ACTIONS(1900), 11, + ACTIONS(5101), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368484,18 +373730,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, - [183390] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [183507] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4617), 1, + ACTIONS(7043), 1, + anon_sym_DOT, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token2, + STATE(4639), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1667), 2, + sym_identifier, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 12, + ACTIONS(1669), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368505,15 +373755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [183415] = 4, + [183536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2426), 1, + ACTIONS(7542), 1, sym__space, - STATE(4618), 1, + STATE(4640), 1, sym_comment, - ACTIONS(2424), 13, + ACTIONS(7540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368527,14 +373776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183440] = 4, + [183561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2366), 1, - sym__space, - STATE(4619), 1, + STATE(4641), 1, sym_comment, - ACTIONS(2364), 13, + ACTIONS(1052), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1050), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368546,16 +373797,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, - [183465] = 4, + [183586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2366), 1, - sym__space, - STATE(4620), 1, + STATE(4642), 1, sym_comment, - ACTIONS(2364), 13, + ACTIONS(1056), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1054), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368567,62 +373818,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183490] = 4, - ACTIONS(3), 1, + [183611] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5028), 1, - sym__space, - STATE(4621), 1, + ACTIONS(7544), 1, + anon_sym_DOT, + ACTIONS(7546), 1, + aux_sym__immediate_decimal_token2, + STATE(4643), 1, sym_comment, - ACTIONS(5030), 13, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183515] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183640] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4622), 1, + ACTIONS(2297), 1, + anon_sym_DASH, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + aux_sym__unquoted_in_list_token2, + STATE(4644), 1, sym_comment, - ACTIONS(2261), 6, + ACTIONS(2301), 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_LPAREN2, - ACTIONS(2259), 8, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym__unquoted_in_list_token4, - [183540] = 6, + [183669] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2218), 1, - anon_sym_DASH, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - STATE(4623), 1, + STATE(4645), 1, sym_comment, - ACTIONS(2222), 11, + ACTIONS(1659), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -368634,64 +373884,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183569] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [183694] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, - anon_sym_DASH, - STATE(4624), 1, + ACTIONS(2418), 1, + sym__space, + STATE(4646), 1, sym_comment, - ACTIONS(1046), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2416), 13, sym__newline, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [183719] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4647), 1, + sym_comment, + ACTIONS(1518), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(1520), 12, + anon_sym_in, anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [183594] = 6, + [183744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - STATE(4625), 1, + ACTIONS(2452), 1, + sym__space, + STATE(4648), 1, sym_comment, - ACTIONS(2247), 5, + ACTIONS(2450), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2243), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [183623] = 6, + anon_sym_RBRACE, + [183769] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7036), 1, - anon_sym_DOT, - ACTIONS(7038), 1, - aux_sym__immediate_decimal_token2, - STATE(4626), 1, - sym_comment, - ACTIONS(1643), 2, - sym_identifier, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7550), 1, anon_sym_DASH, - ACTIONS(1645), 10, + STATE(4649), 1, + sym_comment, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7548), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368701,14 +373971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183652] = 4, + [183798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(7554), 1, sym__space, - STATE(4627), 1, + STATE(4650), 1, sym_comment, - ACTIONS(5014), 13, + ACTIONS(7552), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368722,18 +373992,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183677] = 6, + [183823] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(7556), 1, + anon_sym_QMARK2, + STATE(4651), 1, + sym_comment, + ACTIONS(1022), 2, anon_sym_DASH, - ACTIONS(1798), 1, + anon_sym_DOT, + ACTIONS(1024), 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, + [183850] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + anon_sym_QMARK2, + STATE(4652), 1, + sym_comment, + ACTIONS(1028), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1030), 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, + [183877] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1790), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1798), 1, aux_sym__unquoted_in_list_token2, - STATE(4628), 1, + ACTIONS(2287), 1, + anon_sym_DASH, + STATE(4653), 1, sym_comment, - ACTIONS(1804), 11, + ACTIONS(2289), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368745,14 +374059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183706] = 3, - ACTIONS(3), 1, + [183906] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4629), 1, - sym_comment, - ACTIONS(5114), 14, + ACTIONS(7560), 1, sym__newline, - sym__space, + ACTIONS(7565), 1, + anon_sym_else, + STATE(4654), 1, + sym_comment, + STATE(4734), 1, + aux_sym_shebang_repeat1, + ACTIONS(7563), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368763,17 +374081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [183729] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [183935] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__space, - STATE(4630), 1, - sym_comment, - ACTIONS(1949), 13, + ACTIONS(3067), 1, sym__newline, + ACTIONS(7567), 1, + anon_sym_else, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4655), 1, + sym_comment, + ACTIONS(1315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368785,16 +374105,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, - [183754] = 4, - ACTIONS(3), 1, + [183964] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2370), 1, - sym__space, - STATE(4631), 1, - sym_comment, - ACTIONS(2368), 13, + ACTIONS(3067), 1, sym__newline, + ACTIONS(7570), 1, + anon_sym_catch, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4656), 1, + sym_comment, + ACTIONS(1315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368806,38 +374128,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [183779] = 6, - ACTIONS(3), 1, + [183993] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - STATE(4632), 1, + STATE(4657), 1, sym_comment, - ACTIONS(2253), 5, + ACTIONS(1667), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2251), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [184018] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7573), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token2, + STATE(4658), 1, + sym_comment, + ACTIONS(1540), 3, anon_sym_DASH, - [183808] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [184047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2422), 1, + ACTIONS(2475), 1, sym__space, - STATE(4633), 1, + STATE(4659), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368851,44 +374193,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183833] = 6, - ACTIONS(3), 1, + [184072] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7578), 1, - sym__newline, - ACTIONS(7580), 1, - sym__space, - STATE(4634), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7579), 1, + anon_sym_DASH, + STATE(4660), 1, sym_comment, - STATE(4638), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7636), 11, - anon_sym_SEMI, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7577), 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, - [183862] = 7, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184101] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7638), 1, + ACTIONS(7581), 1, sym__newline, - STATE(683), 1, - aux_sym__pipe_separator, - STATE(4635), 1, + ACTIONS(7586), 1, + anon_sym_else, + STATE(4661), 1, sym_comment, - STATE(5112), 1, + STATE(4712), 1, aux_sym_shebang_repeat1, - ACTIONS(7641), 2, + ACTIONS(7584), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -368898,18 +374238,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, - [183893] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [184130] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7643), 1, - sym__newline, - ACTIONS(7648), 1, - anon_sym_catch, - STATE(4636), 1, + ACTIONS(7590), 1, + sym__space, + STATE(4662), 1, sym_comment, - STATE(4728), 1, - aux_sym_shebang_repeat1, - ACTIONS(7646), 11, + ACTIONS(7588), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368921,15 +374259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183922] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [184155] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__space, - STATE(4637), 1, - sym_comment, - ACTIONS(1921), 13, + ACTIONS(3067), 1, sym__newline, + ACTIONS(7592), 1, + anon_sym_else, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4663), 1, + sym_comment, + ACTIONS(1315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368941,19 +374283,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, - [183947] = 6, - ACTIONS(3), 1, + [184184] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7578), 1, - sym__newline, - ACTIONS(7580), 1, - sym__space, - STATE(4638), 1, + STATE(4664), 1, sym_comment, - STATE(4692), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7650), 11, + ACTIONS(7536), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368964,15 +374301,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, - [183976] = 4, + anon_sym_else, + anon_sym_catch, + [184207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2519), 1, sym__space, - STATE(4639), 1, + STATE(4665), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(2517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368986,35 +374324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184001] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4640), 1, - sym_comment, - ACTIONS(1565), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1567), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [184026] = 4, + [184232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2347), 1, + ACTIONS(1850), 1, sym__space, - STATE(4641), 1, + STATE(4666), 1, sym_comment, - ACTIONS(2345), 13, + ACTIONS(1848), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369028,14 +374345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184051] = 4, + [184257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7095), 1, + ACTIONS(5103), 1, sym__space, - STATE(4642), 1, + STATE(4667), 1, sym_comment, - ACTIONS(7093), 13, + ACTIONS(5105), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369049,14 +374366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184076] = 4, + [184282] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(1997), 1, sym__space, - STATE(4643), 1, + STATE(4668), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(1991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369070,14 +374387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184101] = 4, + [184307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2005), 1, sym__space, - STATE(4644), 1, + STATE(4669), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(1999), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369091,14 +374408,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184126] = 4, + [184332] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_DASH, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + STATE(4670), 1, + sym_comment, + ACTIONS(1796), 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, + [184361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(2013), 1, sym__space, - STATE(4645), 1, + STATE(4671), 1, sym_comment, - ACTIONS(2372), 13, + ACTIONS(2007), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369112,15 +374452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184151] = 4, + [184386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2378), 1, - sym__space, - STATE(4646), 1, + STATE(4672), 1, sym_comment, - ACTIONS(2376), 13, + ACTIONS(5134), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369131,15 +374470,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [184176] = 3, + aux_sym_record_entry_token1, + [184409] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4647), 1, + STATE(4673), 1, + sym_comment, + ACTIONS(1540), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1542), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [184434] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7595), 1, + anon_sym_EQ2, + STATE(4674), 1, sym_comment, - ACTIONS(5006), 14, + ACTIONS(4898), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4900), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369151,20 +374515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [184199] = 6, + [184461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7595), 1, - sym__space, - ACTIONS(7652), 1, + ACTIONS(7597), 1, ts_builtin_sym_end, - STATE(4648), 1, + ACTIONS(7599), 1, + sym__space, + STATE(4675), 2, sym_comment, - STATE(4740), 1, aux_sym_command_repeat1, - ACTIONS(7474), 11, + ACTIONS(7501), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369176,14 +374537,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, - [184228] = 4, + [184488] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, + ACTIONS(1906), 1, sym__space, - STATE(4649), 1, + STATE(4676), 1, sym_comment, - ACTIONS(2453), 13, + ACTIONS(1904), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369197,37 +374558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184253] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, - aux_sym__unquoted_in_list_token2, - STATE(4650), 1, - sym_comment, - ACTIONS(2228), 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, - [184282] = 4, + [184513] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(7604), 1, sym__space, - STATE(4651), 1, + STATE(4677), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(7602), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369241,18 +374579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184307] = 6, - ACTIONS(247), 1, + [184538] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - sym__newline, - ACTIONS(7659), 1, - anon_sym_else, - STATE(4595), 1, - aux_sym_shebang_repeat1, - STATE(4652), 1, + ACTIONS(2390), 1, + sym__space, + STATE(4678), 1, sym_comment, - ACTIONS(7657), 11, + ACTIONS(2388), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369264,14 +374599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184336] = 4, + anon_sym_RBRACE, + [184563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(4990), 1, sym__space, - STATE(4653), 1, + STATE(4679), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(4992), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369285,35 +374621,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184361] = 4, + [184588] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1048), 1, - anon_sym_DASH, - STATE(4654), 1, + STATE(4680), 1, sym_comment, - ACTIONS(1050), 13, + ACTIONS(1042), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1044), 12, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [184386] = 4, + [184613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, + ACTIONS(4994), 1, sym__space, - STATE(4655), 1, + STATE(4681), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(4996), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369327,14 +374663,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184411] = 4, + [184638] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4682), 1, + sym_comment, + ACTIONS(1038), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1040), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [184663] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4683), 1, + sym_comment, + ACTIONS(1034), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1036), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [184688] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3881), 1, + anon_sym_DOLLAR, + ACTIONS(7606), 1, + sym__newline, + ACTIONS(7608), 1, + sym__space, + ACTIONS(7610), 1, + anon_sym_DASH_DASH, + ACTIONS(7612), 1, + anon_sym_DASH, + ACTIONS(7614), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(4684), 1, + sym_comment, + STATE(5564), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7236), 1, + sym__flag, + STATE(703), 2, + sym__blosure, + sym_val_variable, + STATE(4716), 2, + sym_short_flag, + sym_long_flag, + [184733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, + ACTIONS(1572), 1, sym__space, - STATE(4656), 1, + STATE(4685), 1, sym_comment, - ACTIONS(2061), 13, + ACTIONS(1560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369348,35 +374757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184436] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4657), 1, - sym_comment, - ACTIONS(1517), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1519), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [184461] = 4, + [184758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(2330), 1, sym__space, - STATE(4658), 1, + STATE(4686), 1, sym_comment, - ACTIONS(1961), 13, + ACTIONS(2328), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369390,37 +374778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184486] = 6, + [184783] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_AT, - ACTIONS(7663), 1, - anon_sym_DASH, - STATE(4659), 1, - sym_comment, - STATE(4952), 1, - sym_param_cmd, - ACTIONS(7661), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184515] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2357), 1, - sym__space, - STATE(4660), 1, + ACTIONS(7618), 1, + anon_sym_catch, + STATE(4687), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(7616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369434,18 +374799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184540] = 6, + [184808] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2971), 1, + ACTIONS(7620), 1, sym__newline, - ACTIONS(7665), 1, + ACTIONS(7625), 1, anon_sym_else, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4661), 1, + STATE(4688), 1, sym_comment, - ACTIONS(1900), 11, + STATE(4757), 1, + aux_sym_shebang_repeat1, + ACTIONS(7623), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369457,14 +374822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184569] = 4, + [184837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(2340), 1, sym__space, - STATE(4662), 1, + STATE(4689), 1, sym_comment, - ACTIONS(2493), 13, + ACTIONS(2338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369478,15 +374843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184594] = 4, + [184862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2499), 1, - sym__space, - STATE(4663), 1, + STATE(4690), 1, sym_comment, - ACTIONS(2497), 13, + ACTIONS(5105), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369497,38 +374861,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, - [184619] = 5, - ACTIONS(247), 1, + aux_sym_record_entry_token1, + [184885] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_DASH, - ACTIONS(7668), 1, - anon_sym_LBRACK2, - STATE(4664), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + STATE(4691), 1, sym_comment, - ACTIONS(2307), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2241), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2237), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [184646] = 4, + anon_sym_DASH, + [184914] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(5020), 1, sym__space, - STATE(4665), 1, + STATE(4692), 1, sym_comment, - ACTIONS(2501), 13, + ACTIONS(5022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369542,14 +374907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184671] = 4, + [184939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7672), 1, + ACTIONS(5024), 1, sym__space, - STATE(4666), 1, + STATE(4693), 1, sym_comment, - ACTIONS(7670), 13, + ACTIONS(5026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369563,37 +374928,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184696] = 6, - ACTIONS(247), 1, + [184964] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(7487), 1, - anon_sym_DASH, - STATE(4667), 1, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + STATE(4694), 1, sym_comment, - STATE(7378), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7485), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2247), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2245), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184725] = 4, + anon_sym_DASH, + [184993] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4695), 1, + sym_comment, + ACTIONS(1554), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1556), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [185018] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7151), 1, - sym__space, - STATE(4668), 1, + STATE(4696), 1, sym_comment, - ACTIONS(7149), 13, + ACTIONS(4882), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4884), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369605,18 +374993,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184750] = 4, - ACTIONS(3), 1, + [185043] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7676), 1, - sym__space, - STATE(4669), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7361), 1, + anon_sym_DASH, + STATE(4697), 1, sym_comment, - ACTIONS(7674), 13, + STATE(7366), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7359), 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, + [185072] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7627), 1, sym__newline, + STATE(716), 1, + aux_sym__pipe_separator, + STATE(4698), 1, + sym_comment, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7630), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -369626,16 +375040,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, - [184775] = 3, - ACTIONS(3), 1, + [185103] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4670), 1, - sym_comment, - ACTIONS(5120), 14, + ACTIONS(3067), 1, sym__newline, - sym__space, + ACTIONS(7632), 1, + anon_sym_else, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4699), 1, + sym_comment, + ACTIONS(1315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369646,16 +375062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [184798] = 4, + anon_sym_RPAREN, + [185132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2386), 1, + ACTIONS(2479), 1, sym__space, - STATE(4671), 1, + STATE(4700), 1, sym_comment, - ACTIONS(2384), 13, + ACTIONS(2477), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369669,16 +375084,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184823] = 4, - ACTIONS(3), 1, + [185157] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7680), 1, - sym__space, - STATE(4672), 1, - sym_comment, - ACTIONS(7678), 13, + ACTIONS(7635), 1, sym__newline, + STATE(716), 1, + aux_sym__pipe_separator, + STATE(4701), 1, + sym_comment, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7638), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -369688,16 +375108,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, + [185188] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7379), 1, + aux_sym__immediate_decimal_token2, + STATE(4702), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [184848] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(2483), 1, sym__space, - STATE(4673), 1, + STATE(4703), 1, sym_comment, - ACTIONS(2388), 13, + ACTIONS(2481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369711,16 +375151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184873] = 4, + [185240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4674), 1, - sym_comment, - ACTIONS(1062), 3, - ts_builtin_sym_end, + ACTIONS(2487), 1, sym__space, - anon_sym_DOT, - ACTIONS(1060), 11, + STATE(4704), 1, + sym_comment, + ACTIONS(2485), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369732,17 +375170,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, - [184898] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185265] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4675), 1, - sym_comment, - ACTIONS(1054), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1052), 11, + ACTIONS(7640), 1, sym__newline, + ACTIONS(7645), 1, + anon_sym_catch, + STATE(4705), 1, + sym_comment, + STATE(4738), 1, + aux_sym_shebang_repeat1, + ACTIONS(7643), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369753,14 +375194,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, - [184923] = 4, + anon_sym_RPAREN, + [185294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7684), 1, + ACTIONS(2344), 1, sym__space, - STATE(4676), 1, + STATE(4706), 1, sym_comment, - ACTIONS(7682), 13, + ACTIONS(2342), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369774,82 +375216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184948] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_QMARK2, - STATE(4677), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1036), 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, - [184975] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_QMARK2, - STATE(4678), 1, - sym_comment, - ACTIONS(1028), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1030), 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, - [185002] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7500), 1, - sym__newline, - STATE(681), 1, - aux_sym__pipe_separator, - STATE(4679), 1, - sym_comment, - STATE(5112), 1, - aux_sym_shebang_repeat1, - ACTIONS(7503), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2936), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185033] = 4, + [185319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(2444), 1, sym__space, - STATE(4680), 1, + STATE(4707), 1, sym_comment, - ACTIONS(5114), 13, + ACTIONS(2442), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369863,14 +375237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185058] = 4, + [185344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7692), 1, + ACTIONS(7649), 1, sym__space, - STATE(4681), 1, + STATE(4708), 1, sym_comment, - ACTIONS(7690), 13, + ACTIONS(7647), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369884,18 +375258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185083] = 6, - ACTIONS(247), 1, + [185369] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7694), 1, + ACTIONS(7651), 1, sym__newline, - ACTIONS(7699), 1, - anon_sym_catch, - STATE(4587), 1, - aux_sym_shebang_repeat1, - STATE(4682), 1, + ACTIONS(7653), 1, + sym__space, + STATE(4709), 1, sym_comment, - ACTIONS(7697), 11, + STATE(4756), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7655), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369907,14 +375281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185112] = 4, + [185398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(1874), 1, sym__space, - STATE(4683), 1, + STATE(4710), 1, sym_comment, - ACTIONS(1879), 13, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369928,18 +375302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185137] = 6, + [185423] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7498), 1, - anon_sym_DASH, - STATE(4684), 1, + STATE(4711), 1, sym_comment, - STATE(7378), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7496), 11, + ACTIONS(1721), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -369951,57 +375322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185166] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4685), 1, - sym_comment, - ACTIONS(1639), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1641), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [185191] = 4, + anon_sym_LPAREN2, + [185448] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4686), 1, - sym_comment, - ACTIONS(1044), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1046), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7657), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [185216] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7265), 1, - sym__space, - STATE(4687), 1, + ACTIONS(7662), 1, + anon_sym_else, + STATE(4655), 1, + aux_sym_shebang_repeat1, + STATE(4712), 1, sym_comment, - ACTIONS(7263), 13, - sym__newline, + ACTIONS(7660), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370013,16 +375346,49 @@ static 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, - [185241] = 4, + [185477] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, + ACTIONS(3881), 1, + anon_sym_DOLLAR, + ACTIONS(7606), 1, + sym__newline, + ACTIONS(7608), 1, sym__space, - STATE(4688), 1, + ACTIONS(7610), 1, + anon_sym_DASH_DASH, + ACTIONS(7612), 1, + anon_sym_DASH, + ACTIONS(7614), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(4713), 1, sym_comment, - ACTIONS(5120), 13, + STATE(5564), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7236), 1, + sym__flag, + STATE(707), 2, + sym__blosure, + sym_val_variable, + STATE(4716), 2, + sym_short_flag, + sym_long_flag, + [185522] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7664), 1, sym__newline, + ACTIONS(7669), 1, + anon_sym_catch, + STATE(4714), 1, + sym_comment, + STATE(4753), 1, + aux_sym_shebang_repeat1, + ACTIONS(7667), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370034,17 +375400,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, - [185266] = 4, + [185551] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4689), 1, - sym_comment, - ACTIONS(4886), 3, - ts_builtin_sym_end, + ACTIONS(2456), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4888), 11, + STATE(4715), 1, + sym_comment, + ACTIONS(2454), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370056,42 +375419,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, - [185291] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4690), 1, - sym_comment, - ACTIONS(1040), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1042), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [185316] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [185576] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7453), 1, - sym__newline, - STATE(681), 1, - aux_sym__pipe_separator, - STATE(4691), 1, + ACTIONS(4986), 1, + sym__space, + STATE(4716), 1, sym_comment, - STATE(5112), 1, - aux_sym_shebang_repeat1, - ACTIONS(7456), 2, - ts_builtin_sym_end, + ACTIONS(4988), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -370101,17 +375440,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, - [185347] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, - sym__newline, - ACTIONS(7704), 1, - sym__space, - STATE(4692), 2, + ACTIONS(7671), 1, + anon_sym_EQ2, + STATE(4717), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7707), 11, + ACTIONS(4940), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4942), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370122,19 +375464,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, - [185374] = 6, + [185628] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7711), 1, + ACTIONS(7675), 1, + anon_sym_LT, + ACTIONS(7677), 1, anon_sym_DASH, - STATE(4693), 1, + STATE(4718), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7709), 11, + ACTIONS(7673), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -370144,130 +375483,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185403] = 6, + [185655] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2971), 1, - sym__newline, - ACTIONS(7713), 1, - anon_sym_catch, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4694), 1, - sym_comment, - ACTIONS(1900), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185432] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(4695), 1, + ACTIONS(7677), 1, + anon_sym_DASH, + ACTIONS(7679), 1, + anon_sym_LT, + STATE(4719), 1, sym_comment, - ACTIONS(2297), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2293), 7, + ACTIONS(7673), 12, anon_sym_EQ, sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [185461] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2459), 1, - sym__space, - STATE(4696), 1, - sym_comment, - ACTIONS(2457), 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, - [185486] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym__unquoted_in_list_token4, - STATE(4697), 1, - sym_comment, - ACTIONS(1078), 5, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1076), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [185515] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7578), 1, - sym__newline, - ACTIONS(7580), 1, - sym__space, - STATE(4692), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4698), 1, - sym_comment, - ACTIONS(7716), 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, - [185544] = 4, + [185682] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4699), 1, + STATE(4720), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1653), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1499), 12, + ACTIONS(1655), 12, anon_sym_in, anon_sym_QMARK2, anon_sym_not_DASHin, @@ -370280,19 +375529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [185569] = 5, - ACTIONS(3), 1, + [185707] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6930), 1, - aux_sym_unquoted_token2, - STATE(4700), 1, + ACTIONS(7480), 1, + sym__newline, + STATE(715), 1, + aux_sym__pipe_separator, + STATE(4721), 1, sym_comment, - ACTIONS(1587), 2, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7483), 2, ts_builtin_sym_end, - sym__space, - ACTIONS(1575), 11, - sym__newline, anon_sym_SEMI, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -370302,14 +375553,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, - [185596] = 4, + [185738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2430), 1, + ACTIONS(4998), 1, sym__space, - STATE(4701), 1, + STATE(4722), 1, sym_comment, - ACTIONS(2428), 13, + ACTIONS(5000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370323,60 +375574,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185621] = 6, + [185763] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7718), 1, - sym__newline, - ACTIONS(7723), 1, - anon_sym_else, - STATE(4613), 1, - aux_sym_shebang_repeat1, - STATE(4702), 1, + STATE(4723), 1, sym_comment, - ACTIONS(7721), 11, - anon_sym_SEMI, + ACTIONS(1738), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1740), 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, - [185650] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [185788] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_AT, - ACTIONS(7727), 1, + ACTIONS(7681), 1, + aux_sym__immediate_decimal_token2, + STATE(4724), 1, + sym_comment, + ACTIONS(1554), 3, anon_sym_DASH, - STATE(4703), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185815] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4725), 1, sym_comment, - STATE(4954), 1, - sym_param_cmd, - ACTIONS(7725), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2255), 6, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2253), 8, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185679] = 4, + anon_sym_DASH, + aux_sym__unquoted_in_list_token4, + [185840] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5002), 1, + sym__space, + STATE(4726), 1, + sym_comment, + ACTIONS(5004), 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, + [185865] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1040), 1, + ACTIONS(1034), 1, anon_sym_DASH, - STATE(4704), 1, + STATE(4727), 1, sym_comment, - ACTIONS(1042), 13, + ACTIONS(1036), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -370390,14 +375680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [185704] = 4, + [185890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2434), 1, + ACTIONS(2025), 1, sym__space, - STATE(4705), 1, + STATE(4728), 1, sym_comment, - ACTIONS(2432), 13, + ACTIONS(2019), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370411,18 +375701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185729] = 6, + [185915] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7729), 1, + ACTIONS(7683), 1, sym__newline, - ACTIONS(7734), 1, + ACTIONS(7688), 1, anon_sym_else, - STATE(4616), 1, - aux_sym_shebang_repeat1, - STATE(4706), 1, + STATE(4729), 1, sym_comment, - ACTIONS(7732), 11, + STATE(4803), 1, + aux_sym_shebang_repeat1, + ACTIONS(7686), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370434,47 +375724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185758] = 14, + [185944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_DOLLAR, - ACTIONS(7736), 1, - sym__newline, - ACTIONS(7738), 1, + ACTIONS(1949), 1, sym__space, - ACTIONS(7740), 1, - anon_sym_DASH_DASH, - ACTIONS(7742), 1, - anon_sym_DASH, - ACTIONS(7744), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4707), 1, - sym_comment, - STATE(5526), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7445), 1, - sym__flag, - STATE(667), 2, - sym__blosure, - sym_val_variable, - STATE(4627), 2, - sym_short_flag, - sym_long_flag, - [185803] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4708), 1, + STATE(4730), 1, sym_comment, - ACTIONS(4924), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4926), 11, + ACTIONS(1947), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370486,18 +375743,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, - [185828] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185969] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7595), 1, - sym__space, - ACTIONS(7746), 1, - ts_builtin_sym_end, - STATE(4601), 1, - aux_sym_command_repeat1, - STATE(4709), 1, + STATE(4731), 1, sym_comment, - ACTIONS(7441), 11, + ACTIONS(5016), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370509,14 +375763,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, - [185857] = 4, + anon_sym_else, + anon_sym_catch, + [185992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(2402), 1, sym__space, - STATE(4710), 1, + STATE(4732), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(2400), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370530,18 +375786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185882] = 6, + [186017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7595), 1, + ACTIONS(7069), 1, sym__space, - ACTIONS(7748), 1, - ts_builtin_sym_end, - STATE(4648), 1, - aux_sym_command_repeat1, - STATE(4711), 1, + STATE(4733), 1, sym_comment, - ACTIONS(7468), 11, + ACTIONS(7067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370553,18 +375805,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, - [185911] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186042] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7750), 1, + ACTIONS(7690), 1, sym__newline, - ACTIONS(7755), 1, + ACTIONS(7695), 1, anon_sym_else, - STATE(4706), 1, + STATE(4663), 1, aux_sym_shebang_repeat1, - STATE(4712), 1, + STATE(4734), 1, sym_comment, - ACTIONS(7753), 11, + ACTIONS(7693), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370576,36 +375830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185940] = 4, - ACTIONS(3), 1, + [186071] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - sym__space, - STATE(4713), 1, - sym_comment, - ACTIONS(2035), 13, + ACTIONS(7697), 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, - [185965] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2398), 1, - sym__space, - STATE(4714), 1, + ACTIONS(7702), 1, + anon_sym_else, + STATE(4688), 1, + aux_sym_shebang_repeat1, + STATE(4735), 1, sym_comment, - ACTIONS(2396), 13, - sym__newline, + ACTIONS(7700), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370617,15 +375853,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, - [185990] = 4, + [186100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(2491), 1, sym__space, - STATE(4715), 1, + STATE(4736), 1, sym_comment, - ACTIONS(2043), 13, + ACTIONS(2489), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370639,14 +375874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186015] = 4, + [186125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7759), 1, + ACTIONS(2495), 1, sym__space, - STATE(4716), 1, + STATE(4737), 1, sym_comment, - ACTIONS(7757), 13, + ACTIONS(2493), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370660,15 +375895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186040] = 4, - ACTIONS(3), 1, + [186150] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5042), 1, - sym__space, - STATE(4717), 1, - sym_comment, - ACTIONS(5044), 13, + ACTIONS(7704), 1, sym__newline, + ACTIONS(7709), 1, + anon_sym_catch, + STATE(4656), 1, + aux_sym_shebang_repeat1, + STATE(4738), 1, + sym_comment, + ACTIONS(7707), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370680,19 +375918,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, - [186065] = 6, + [186179] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(7711), 1, sym__newline, - ACTIONS(7766), 1, - anon_sym_else, - STATE(4652), 1, + ACTIONS(7716), 1, + anon_sym_catch, + STATE(4714), 1, aux_sym_shebang_repeat1, - STATE(4718), 1, + STATE(4739), 1, sym_comment, - ACTIONS(7764), 11, + ACTIONS(7714), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370704,14 +375941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186094] = 4, + [186208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, + ACTIONS(2499), 1, sym__space, - STATE(4719), 1, + STATE(4740), 1, sym_comment, - ACTIONS(2051), 13, + ACTIONS(2497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370725,35 +375962,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186119] = 4, - ACTIONS(3), 1, + [186233] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1845), 1, - sym__space, - STATE(4720), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7443), 1, + anon_sym_DASH, + STATE(4741), 1, sym_comment, - ACTIONS(1843), 13, + STATE(7366), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7441), 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, - [186144] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4721), 1, + ACTIONS(2503), 1, + sym__space, + STATE(4742), 1, sym_comment, - ACTIONS(5079), 14, + ACTIONS(2501), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370764,16 +376004,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, - aux_sym_record_entry_token1, - [186167] = 4, + [186287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2402), 1, + ACTIONS(2507), 1, sym__space, - STATE(4722), 1, + STATE(4743), 1, sym_comment, - ACTIONS(2400), 13, + ACTIONS(2505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370787,18 +376027,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186192] = 6, + [186312] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7768), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + STATE(4744), 1, + sym_comment, + ACTIONS(1044), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7773), 1, - anon_sym_else, - STATE(4606), 1, - aux_sym_shebang_repeat1, - STATE(4723), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [186337] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + sym__space, + STATE(4745), 1, sym_comment, - ACTIONS(7771), 11, + ACTIONS(1876), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370810,14 +376068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186221] = 4, + anon_sym_RBRACE, + [186362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2438), 1, - sym__space, - STATE(4724), 1, + STATE(4746), 1, sym_comment, - ACTIONS(2436), 13, + ACTIONS(4892), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4894), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370829,16 +376090,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, - [186246] = 4, + [186387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, + ACTIONS(2414), 1, sym__space, - STATE(4725), 1, + STATE(4747), 1, sym_comment, - ACTIONS(2404), 13, + ACTIONS(2412), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370852,14 +376111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186271] = 4, + [186412] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(2511), 1, sym__space, - STATE(4726), 1, + STATE(4748), 1, sym_comment, - ACTIONS(1859), 13, + ACTIONS(2509), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370873,15 +376132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186296] = 4, + [186437] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(7651), 1, + sym__newline, + ACTIONS(7653), 1, sym__space, - STATE(4727), 1, + STATE(4749), 1, sym_comment, - ACTIONS(1867), 13, - sym__newline, + STATE(4765), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7718), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370893,19 +376155,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, - [186321] = 6, - ACTIONS(247), 1, + [186466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2971), 1, - sym__newline, - ACTIONS(7775), 1, - anon_sym_catch, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4728), 1, + ACTIONS(7722), 1, + sym__space, + STATE(4750), 1, sym_comment, - ACTIONS(1900), 11, + ACTIONS(7720), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370917,14 +376175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186350] = 4, + anon_sym_RBRACE, + [186491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1873), 1, + ACTIONS(1834), 1, sym__space, - STATE(4729), 1, + STATE(4751), 1, sym_comment, - ACTIONS(1871), 13, + ACTIONS(1832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370938,35 +376197,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186375] = 3, + [186516] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4730), 1, + ACTIONS(7726), 1, + anon_sym_AT, + ACTIONS(7728), 1, + anon_sym_DASH, + STATE(4752), 1, sym_comment, - ACTIONS(7550), 14, - ts_builtin_sym_end, + STATE(5132), 1, + sym_param_cmd, + ACTIONS(7724), 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_else, - anon_sym_catch, - [186398] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186545] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7780), 1, + ACTIONS(3067), 1, + sym__newline, + ACTIONS(7730), 1, anon_sym_catch, - STATE(4731), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4753), 1, sym_comment, - ACTIONS(7778), 13, - sym__newline, + ACTIONS(1315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370978,19 +376243,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, - [186423] = 6, + [186574] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, + ACTIONS(7726), 1, + anon_sym_AT, + ACTIONS(7735), 1, anon_sym_DASH, - STATE(4732), 1, + STATE(4754), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7782), 11, + STATE(5069), 1, + sym_param_cmd, + ACTIONS(7733), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371002,37 +376266,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186452] = 5, + [186603] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7786), 1, - aux_sym__immediate_decimal_token2, - STATE(4733), 1, - sym_comment, - ACTIONS(1565), 3, + ACTIONS(7726), 1, + anon_sym_AT, + ACTIONS(7735), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 10, + STATE(4755), 1, + sym_comment, + STATE(5070), 1, + sym_param_cmd, + ACTIONS(7733), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186479] = 4, + [186632] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(7651), 1, + sym__newline, + ACTIONS(7653), 1, sym__space, - STATE(4734), 1, + STATE(4756), 1, sym_comment, - ACTIONS(2408), 13, - sym__newline, + STATE(4765), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7737), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371044,16 +376312,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, - [186504] = 4, - ACTIONS(3), 1, + [186661] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5077), 1, - sym__space, - STATE(4735), 1, - sym_comment, - ACTIONS(5079), 13, + ACTIONS(3067), 1, sym__newline, + ACTIONS(7739), 1, + anon_sym_else, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4757), 1, + sym_comment, + ACTIONS(1315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371065,39 +376335,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, - [186529] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7788), 1, - anon_sym_DOT, - ACTIONS(7790), 1, - aux_sym__immediate_decimal_token2, - STATE(4736), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186558] = 4, + [186690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(7651), 1, + sym__newline, + ACTIONS(7653), 1, sym__space, - STATE(4737), 1, + STATE(4749), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4758), 1, sym_comment, - ACTIONS(1890), 13, - sym__newline, + ACTIONS(7742), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371109,15 +376358,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, - [186583] = 4, + [186719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5046), 1, + ACTIONS(5028), 1, sym__space, - STATE(4738), 1, + STATE(4759), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(5030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371131,17 +376379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186608] = 5, + [186744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7792), 1, - anon_sym_EQ2, - STATE(4739), 1, - sym_comment, - ACTIONS(4904), 2, - ts_builtin_sym_end, + ACTIONS(2360), 1, sym__space, - ACTIONS(4906), 11, + STATE(4760), 1, + sym_comment, + ACTIONS(2358), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371153,17 +376398,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, - [186635] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7794), 1, - ts_builtin_sym_end, - ACTIONS(7796), 1, + ACTIONS(7746), 1, sym__space, - STATE(4740), 2, + STATE(4761), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7406), 11, + ACTIONS(7744), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371175,14 +376419,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, - [186662] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2414), 1, + ACTIONS(5032), 1, sym__space, - STATE(4741), 1, + STATE(4762), 1, sym_comment, - ACTIONS(2412), 13, + ACTIONS(5034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371196,37 +376442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186687] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7799), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7801), 1, - aux_sym__immediate_decimal_token2, - STATE(4742), 1, - sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186716] = 4, + [186819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(7324), 1, sym__space, - STATE(4743), 1, + STATE(4763), 1, sym_comment, - ACTIONS(5018), 13, + ACTIONS(7322), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371240,14 +376463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186741] = 4, + [186844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, + ACTIONS(1072), 1, sym__space, - STATE(4744), 1, + STATE(4764), 1, sym_comment, - ACTIONS(2416), 13, + ACTIONS(1070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371261,46 +376484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186766] = 14, + [186869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_DOLLAR, - ACTIONS(7736), 1, + ACTIONS(7748), 1, sym__newline, - ACTIONS(7738), 1, - sym__space, - ACTIONS(7740), 1, - anon_sym_DASH_DASH, - ACTIONS(7742), 1, - anon_sym_DASH, - ACTIONS(7744), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4745), 1, - sym_comment, - STATE(5526), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7445), 1, - sym__flag, - STATE(673), 2, - sym__blosure, - sym_val_variable, - STATE(4627), 2, - sym_short_flag, - sym_long_flag, - [186811] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(7751), 1, sym__space, - STATE(4746), 1, + STATE(4765), 2, sym_comment, - ACTIONS(5022), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7754), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371312,15 +376506,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, - [186836] = 4, + [186896] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(7756), 1, + ts_builtin_sym_end, + ACTIONS(7758), 1, sym__space, - STATE(4747), 1, + STATE(4766), 1, sym_comment, - ACTIONS(1894), 13, + STATE(4794), 1, + aux_sym_command_repeat1, + ACTIONS(7435), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371332,16 +376529,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, - [186861] = 4, + [186925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2323), 1, + ACTIONS(2307), 1, sym__space, - STATE(4748), 1, + STATE(4767), 1, sym_comment, - ACTIONS(2321), 13, + ACTIONS(2305), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371355,17 +376550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186886] = 5, + [186950] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7803), 1, - anon_sym_EQ2, - STATE(4749), 1, - sym_comment, - ACTIONS(4914), 2, - ts_builtin_sym_end, + ACTIONS(2307), 1, sym__space, - ACTIONS(4916), 11, + STATE(4768), 1, + sym_comment, + ACTIONS(2305), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371377,14 +376569,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, - [186913] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(7116), 1, sym__space, - STATE(4750), 1, + STATE(4769), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(7114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371398,56 +376592,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186938] = 4, + [187000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__space, - STATE(4751), 1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym__unquoted_in_list_token4, + STATE(4770), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(2233), 5, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [186963] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + ACTIONS(2229), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [187029] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7807), 1, - sym__space, - STATE(4752), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1778), 1, + anon_sym_DASH, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + STATE(4771), 1, sym_comment, - ACTIONS(7805), 13, + ACTIONS(1786), 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, - [186988] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(5132), 1, sym__space, - STATE(4753), 1, + STATE(4772), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(5134), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371461,14 +376659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187013] = 4, + [187083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(2422), 1, sym__space, - STATE(4754), 1, + STATE(4773), 1, sym_comment, - ACTIONS(1945), 13, + ACTIONS(2420), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371482,14 +376680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187038] = 4, + [187108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(2464), 1, sym__space, - STATE(4755), 1, + STATE(4774), 1, sym_comment, - ACTIONS(5036), 13, + ACTIONS(2462), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371503,16 +376701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187063] = 4, + [187133] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7811), 1, - anon_sym_else, - STATE(4756), 1, - sym_comment, - ACTIONS(7809), 13, + ACTIONS(7354), 1, sym__newline, + STATE(715), 1, + aux_sym__pipe_separator, + STATE(4775), 1, + sym_comment, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7357), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -371522,16 +376725,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, - [187088] = 4, + [187164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(1890), 1, sym__space, - STATE(4757), 1, + STATE(4776), 1, sym_comment, - ACTIONS(2380), 13, + ACTIONS(1888), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371545,14 +376746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187113] = 4, + [187189] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7815), 1, + ACTIONS(7726), 1, + anon_sym_AT, + ACTIONS(7762), 1, anon_sym_DASH, - STATE(4758), 1, + STATE(4777), 1, sym_comment, - ACTIONS(7813), 12, + STATE(5133), 1, + sym_param_cmd, + ACTIONS(7760), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371562,58 +376767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187137] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(7817), 1, - sym__newline, - STATE(4759), 1, - sym_comment, - ACTIONS(7819), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [187163] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4760), 1, - sym_comment, - ACTIONS(2445), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2443), 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, - [187187] = 4, + [187218] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(2313), 1, anon_sym_DASH, - STATE(4761), 1, + ACTIONS(7764), 1, + anon_sym_LBRACK2, + STATE(4778), 1, sym_comment, - ACTIONS(7821), 12, + ACTIONS(2317), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -371623,17 +376788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187211] = 4, + anon_sym_LBRACE, + [187245] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5951), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7768), 1, anon_sym_DASH, - STATE(4762), 1, + STATE(4779), 1, sym_comment, - ACTIONS(5953), 12, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7766), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371645,46 +376814,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [187235] = 14, + [187274] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1479), 1, + ACTIONS(2436), 1, + sym__space, + STATE(4780), 1, + sym_comment, + ACTIONS(2434), 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(1493), 1, - sym__entry_separator, - ACTIONS(1495), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2986), 1, + [187299] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + anon_sym_DASH, + STATE(4781), 1, + sym_comment, + ACTIONS(1040), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7827), 1, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT, - ACTIONS(7829), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7833), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7835), 1, - aux_sym__immediate_decimal_token5, - STATE(4763), 1, - sym_comment, - STATE(5516), 1, - sym__immediate_decimal, - STATE(5792), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187279] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4764), 1, - sym_comment, - ACTIONS(2414), 2, - ts_builtin_sym_end, + ACTIONS(2440), 1, sym__space, - ACTIONS(2412), 11, + STATE(4782), 1, + sym_comment, + ACTIONS(2438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371696,12 +376875,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, - [187303] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187349] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4765), 1, + ACTIONS(1894), 1, + sym__space, + STATE(4783), 1, sym_comment, - ACTIONS(7837), 13, + ACTIONS(1892), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371715,62 +376898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187325] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - ACTIONS(7843), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7845), 1, - aux_sym__immediate_decimal_token5, - STATE(4766), 1, - sym_comment, - STATE(6311), 1, - sym__immediate_decimal, - ACTIONS(7841), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3369), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1493), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187363] = 4, - ACTIONS(247), 1, + [187374] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4767), 1, + ACTIONS(2364), 1, + sym__space, + STATE(4784), 1, sym_comment, - ACTIONS(1056), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1058), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2362), 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, - [187387] = 4, + anon_sym_RBRACE, + [187399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4768), 1, - sym_comment, - ACTIONS(2370), 2, - ts_builtin_sym_end, + ACTIONS(2368), 1, sym__space, - ACTIONS(2368), 11, + STATE(4785), 1, + sym_comment, + ACTIONS(2366), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371782,14 +376938,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, - [187411] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187424] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7772), 1, anon_sym_DASH, - STATE(4769), 1, + STATE(4786), 1, sym_comment, - ACTIONS(1881), 12, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7770), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371801,64 +376963,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [187435] = 4, - ACTIONS(247), 1, + [187453] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, - anon_sym_DASH, - STATE(4770), 1, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym__unquoted_in_list_token4, + STATE(4787), 1, sym_comment, - ACTIONS(2370), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1072), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(1070), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [187459] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1515), 1, - sym__entry_separator, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(5367), 1, - anon_sym_DOT, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7847), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7849), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7851), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, - aux_sym__immediate_decimal_token5, - STATE(4771), 1, - sym_comment, - STATE(5796), 1, - sym__immediate_decimal, - ACTIONS(1505), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5687), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187501] = 4, + anon_sym_DASH, + [187482] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7515), 1, anon_sym_DASH, - STATE(4772), 1, + STATE(4788), 1, sym_comment, - ACTIONS(2414), 12, + STATE(7366), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7513), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371870,13 +377009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [187525] = 3, - ACTIONS(247), 1, + [187511] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4773), 1, + ACTIONS(1902), 1, + sym__space, + STATE(4789), 1, sym_comment, - ACTIONS(7855), 13, + ACTIONS(1900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371890,15 +377030,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187547] = 4, + [187536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4774), 1, + ACTIONS(2448), 1, + sym__space, + STATE(4790), 1, sym_comment, - ACTIONS(1923), 2, + ACTIONS(2446), 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, + [187561] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7758), 1, + sym__space, + ACTIONS(7774), 1, ts_builtin_sym_end, + STATE(4675), 1, + aux_sym_command_repeat1, + STATE(4791), 1, + sym_comment, + ACTIONS(7439), 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, + [187590] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1826), 1, sym__space, - ACTIONS(1921), 11, + STATE(4792), 1, + sym_comment, + ACTIONS(1822), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371910,15 +377093,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, - [187571] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4775), 1, + ACTIONS(2311), 1, + sym__space, + STATE(4793), 1, sym_comment, - ACTIONS(2366), 2, + ACTIONS(2309), 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, + [187640] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7758), 1, + sym__space, + ACTIONS(7776), 1, ts_builtin_sym_end, + STATE(4675), 1, + aux_sym_command_repeat1, + STATE(4794), 1, + sym_comment, + ACTIONS(7403), 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, + [187669] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2460), 1, sym__space, - ACTIONS(2364), 11, + STATE(4795), 1, + sym_comment, + ACTIONS(2458), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371930,15 +377158,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, - [187595] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4776), 1, + ACTIONS(2515), 1, + sym__space, + STATE(4796), 1, sym_comment, - ACTIONS(2455), 2, - ts_builtin_sym_end, + ACTIONS(2513), 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, + [187719] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2468), 1, sym__space, - ACTIONS(2453), 11, + STATE(4797), 1, + sym_comment, + ACTIONS(2466), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371950,14 +377200,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, - [187619] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187744] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2291), 1, anon_sym_DASH, - STATE(4777), 1, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + STATE(4798), 1, sym_comment, - ACTIONS(2418), 12, + ACTIONS(2295), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371969,16 +377225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [187643] = 4, + [187773] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4778), 1, - sym_comment, - ACTIONS(2366), 2, - ts_builtin_sym_end, + ACTIONS(2382), 1, sym__space, - ACTIONS(2364), 11, + STATE(4799), 1, + sym_comment, + ACTIONS(2380), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371990,12 +377244,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, - [187667] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187798] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4779), 1, + ACTIONS(2386), 1, + sym__space, + STATE(4800), 1, sym_comment, - ACTIONS(7819), 13, + ACTIONS(2384), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372009,12 +377267,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187689] = 3, - ACTIONS(247), 1, + [187823] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4780), 1, + ACTIONS(7758), 1, + sym__space, + ACTIONS(7778), 1, + ts_builtin_sym_end, + STATE(4791), 1, + aux_sym_command_repeat1, + STATE(4801), 1, + sym_comment, + ACTIONS(7350), 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, + [187852] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2523), 1, + sym__space, + STATE(4802), 1, sym_comment, - ACTIONS(7857), 13, + ACTIONS(2521), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372028,35 +377311,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187711] = 4, + [187877] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2364), 1, - anon_sym_DASH, - STATE(4781), 1, - sym_comment, - ACTIONS(2366), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7780), 1, sym__newline, + ACTIONS(7785), 1, + anon_sym_else, + STATE(4699), 1, + aux_sym_shebang_repeat1, + STATE(4803), 1, + sym_comment, + ACTIONS(7783), 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, - aux_sym_ctrl_match_token1, - [187735] = 4, + [187906] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4782), 1, + STATE(4804), 1, sym_comment, - ACTIONS(1881), 2, + ACTIONS(1048), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1879), 11, + anon_sym_DOT, + ACTIONS(1046), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372068,94 +377355,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187759] = 4, - ACTIONS(247), 1, + [187931] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7861), 1, - anon_sym_DASH, - STATE(4783), 1, + ACTIONS(1866), 1, + sym__space, + STATE(4805), 1, sym_comment, - ACTIONS(7859), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1864), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187783] = 4, + anon_sym_RBRACE, + [187956] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_DASH, - STATE(4784), 1, + ACTIONS(7789), 1, + anon_sym_else, + STATE(4806), 1, sym_comment, - ACTIONS(1078), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7787), 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, - aux_sym_ctrl_match_token1, - [187807] = 4, + anon_sym_RBRACE, + [187981] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7865), 1, - anon_sym_DASH, - STATE(4785), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(3545), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(7791), 1, + anon_sym_DOT, + ACTIONS(7795), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7797), 1, + aux_sym__immediate_decimal_token5, + STATE(4807), 1, sym_comment, - ACTIONS(7863), 12, - anon_sym_EQ, - sym_identifier, + STATE(5565), 1, + sym__immediate_decimal, + ACTIONS(7793), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5883), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1492), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [188022] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2350), 1, + sym__space, + STATE(4808), 1, + sym_comment, + ACTIONS(2348), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187831] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188047] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7869), 1, - anon_sym_DASH, - STATE(4786), 1, + ACTIONS(7799), 1, + anon_sym_LBRACK2, + STATE(4809), 1, sym_comment, - ACTIONS(7867), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2317), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2313), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187855] = 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, + [188074] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4787), 1, + STATE(4810), 1, sym_comment, - ACTIONS(7871), 12, + ACTIONS(6604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372168,16 +377487,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187879] = 4, + anon_sym_RBRACE, + [188096] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4788), 1, + STATE(4811), 1, sym_comment, - ACTIONS(2374), 2, + ACTIONS(7649), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2372), 11, + ACTIONS(7647), 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, + [188120] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(7801), 1, sym__newline, + STATE(4812), 1, + sym_comment, + ACTIONS(7803), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372188,15 +377528,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, - [187903] = 4, + anon_sym_RBRACE, + [188146] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4789), 1, + STATE(4813), 1, sym_comment, - ACTIONS(2418), 2, + ACTIONS(2507), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2416), 11, + ACTIONS(2505), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372208,15 +377549,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, - [187927] = 4, + [188170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4790), 1, + STATE(4814), 1, sym_comment, - ACTIONS(2378), 2, + ACTIONS(2340), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2376), 11, + ACTIONS(2338), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372228,14 +377569,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, - [187951] = 4, + [188194] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(7677), 1, anon_sym_DASH, - STATE(4791), 1, + STATE(4815), 1, sym_comment, - ACTIONS(1896), 12, + ACTIONS(7673), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372245,17 +377586,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [187975] = 4, + [188218] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4816), 1, + sym_comment, + ACTIONS(2330), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2328), 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, + [188242] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4817), 1, + sym_comment, + ACTIONS(1902), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1900), 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, + [188266] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(1848), 1, anon_sym_DASH, - STATE(4792), 1, + STATE(4818), 1, sym_comment, - ACTIONS(7572), 12, + ACTIONS(1850), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372265,15 +377646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187999] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [188290] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4793), 1, + STATE(4819), 1, sym_comment, - ACTIONS(7873), 13, + ACTIONS(2444), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2442), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372285,17 +377669,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, - [188021] = 4, + [188314] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4794), 1, + STATE(4820), 1, sym_comment, - ACTIONS(1861), 2, + ACTIONS(2344), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1859), 11, + ACTIONS(2342), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372307,32 +377689,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, - [188045] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4795), 1, - sym_comment, - ACTIONS(1565), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188069] = 3, + [188338] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4796), 1, + ACTIONS(7805), 1, + anon_sym_else, + STATE(4821), 1, sym_comment, - ACTIONS(7875), 13, + ACTIONS(7787), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372344,36 +377709,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, - [188091] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH, - STATE(4797), 1, - sym_comment, - ACTIONS(1947), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188115] = 4, + [188362] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(7809), 1, anon_sym_DASH, - STATE(4798), 1, + STATE(4822), 1, sym_comment, - ACTIONS(1963), 12, + ACTIONS(7807), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372383,15 +377726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188139] = 3, - ACTIONS(247), 1, + [188386] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4799), 1, + STATE(4823), 1, sym_comment, - ACTIONS(7877), 13, + ACTIONS(2448), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2446), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372403,17 +377749,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, - [188161] = 4, + [188410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4800), 1, + STATE(4824), 1, sym_comment, - ACTIONS(5024), 2, + ACTIONS(1906), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5026), 11, + ACTIONS(1904), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372425,15 +377769,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, - [188185] = 4, + [188434] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4801), 1, - sym_comment, - ACTIONS(1060), 2, + ACTIONS(7813), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1062), 11, + STATE(4825), 1, + sym_comment, + ACTIONS(7811), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372443,17 +377786,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188209] = 4, + [188458] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7879), 1, - anon_sym_else, - STATE(4802), 1, + ACTIONS(1892), 1, + anon_sym_DASH, + STATE(4826), 1, + sym_comment, + ACTIONS(1894), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [188482] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4827), 1, sym_comment, - ACTIONS(7809), 12, + ACTIONS(2468), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2466), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372465,14 +377829,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, - [188233] = 4, + [188506] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2384), 1, + ACTIONS(2412), 1, anon_sym_DASH, - STATE(4803), 1, + STATE(4828), 1, sym_comment, - ACTIONS(2386), 12, + ACTIONS(2414), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372484,55 +377848,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188257] = 3, + anon_sym_LBRACE, + [188530] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(4804), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(3545), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(7815), 1, + anon_sym_DOT, + ACTIONS(7819), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7821), 1, + aux_sym__immediate_decimal_token5, + STATE(4829), 1, sym_comment, - ACTIONS(6600), 13, - sym__newline, - anon_sym_SEMI, + STATE(5639), 1, + sym__immediate_decimal, + ACTIONS(1492), 2, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [188279] = 4, + anon_sym_EQ_GT, + ACTIONS(7817), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5883), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188570] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4805), 1, + ACTIONS(1478), 1, + anon_sym_RBRACK, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(7825), 1, + anon_sym_DOT, + ACTIONS(7827), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7833), 1, + aux_sym__immediate_decimal_token5, + STATE(4830), 1, sym_comment, - ACTIONS(2487), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2485), 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, - [188303] = 4, + STATE(5579), 1, + sym__immediate_decimal, + STATE(5646), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188614] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4806), 1, - sym_comment, - ACTIONS(1052), 2, + ACTIONS(1900), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1054), 11, + STATE(4831), 1, + sym_comment, + ACTIONS(1902), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372544,14 +377926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188327] = 4, + anon_sym_LBRACE, + [188638] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(2442), 1, anon_sym_DASH, - STATE(4807), 1, + STATE(4832), 1, sym_comment, - ACTIONS(2422), 12, + ACTIONS(2444), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372563,15 +377946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188351] = 4, + anon_sym_LBRACE, + [188662] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(2466), 1, anon_sym_DASH, - STATE(4808), 1, + STATE(4833), 1, sym_comment, - ACTIONS(2426), 12, + ACTIONS(2468), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372583,16 +377966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188375] = 4, + anon_sym_LBRACE, + [188686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4809), 1, + STATE(4834), 1, sym_comment, - ACTIONS(5028), 2, + ACTIONS(2452), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5030), 11, + ACTIONS(2450), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372604,15 +377987,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, - [188399] = 4, + [188710] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4810), 1, + STATE(4835), 1, sym_comment, - ACTIONS(2459), 2, + ACTIONS(4986), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2457), 11, + ACTIONS(4988), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372624,15 +378007,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, - [188423] = 4, + [188734] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4811), 1, + STATE(4836), 1, sym_comment, - ACTIONS(7095), 2, + ACTIONS(2456), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7093), 11, + ACTIONS(2454), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372644,15 +378027,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, - [188447] = 4, + [188758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4812), 1, + STATE(4837), 1, sym_comment, - ACTIONS(2491), 2, + ACTIONS(5020), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2489), 11, + ACTIONS(5022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372664,15 +378047,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, - [188471] = 4, + [188782] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4838), 1, + sym_comment, + ACTIONS(1554), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188806] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4813), 1, + STATE(4839), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(7542), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2481), 11, + ACTIONS(7540), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372684,15 +378087,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, - [188495] = 4, - ACTIONS(3), 1, + [188830] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4814), 1, + STATE(4840), 1, sym_comment, - ACTIONS(2495), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2493), 11, + ACTIONS(7835), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372704,15 +378104,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, - [188519] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188852] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4815), 1, + STATE(4841), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(7554), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2497), 11, + ACTIONS(7552), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372724,12 +378126,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, - [188543] = 3, - ACTIONS(247), 1, + [188876] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4816), 1, + STATE(4842), 1, sym_comment, - ACTIONS(7881), 13, + ACTIONS(7604), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7602), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372741,34 +378146,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, - [188565] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2372), 1, - anon_sym_DASH, - STATE(4817), 1, - sym_comment, - ACTIONS(2374), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188589] = 3, - ACTIONS(247), 1, + [188900] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4818), 1, + STATE(4843), 1, sym_comment, - ACTIONS(7883), 13, + ACTIONS(1072), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1070), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372780,17 +378166,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, - [188611] = 4, + [188924] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4819), 1, + STATE(4844), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(2350), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2501), 11, + ACTIONS(2348), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372802,15 +378186,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, - [188635] = 4, + [188948] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4820), 1, + STATE(4845), 1, sym_comment, - ACTIONS(1896), 2, + ACTIONS(2402), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1894), 11, + ACTIONS(2400), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372822,15 +378206,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, - [188659] = 4, + [188972] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4821), 1, + STATE(4846), 1, sym_comment, - ACTIONS(2347), 2, + ACTIONS(5024), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2345), 11, + ACTIONS(5026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372842,15 +378226,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, - [188683] = 4, + [188996] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(7837), 1, + anon_sym_DOLLAR, + ACTIONS(7841), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7843), 1, + aux_sym__immediate_decimal_token5, + STATE(4847), 1, + sym_comment, + STATE(6214), 1, + sym__immediate_decimal, + ACTIONS(7839), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3401), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1550), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [189034] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4822), 1, + STATE(4848), 1, sym_comment, - ACTIONS(1845), 2, + ACTIONS(2382), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1843), 11, + ACTIONS(2380), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372862,34 +378273,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, - [188707] = 4, + [189058] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH, - STATE(4823), 1, + STATE(4849), 1, sym_comment, - ACTIONS(1951), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188731] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2376), 1, + ACTIONS(1046), 2, anon_sym_DASH, - STATE(4824), 1, - sym_comment, - ACTIONS(2378), 12, + anon_sym_DOT, + ACTIONS(1048), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -372901,15 +378293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188755] = 4, + [189082] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(5938), 1, anon_sym_DASH, - STATE(4825), 1, + STATE(4850), 1, sym_comment, - ACTIONS(2430), 12, + ACTIONS(5940), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -372921,53 +378312,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188779] = 4, + anon_sym_LPAREN2, + [189106] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2432), 1, - anon_sym_DASH, - STATE(4826), 1, - sym_comment, - ACTIONS(2434), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(7845), 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, - aux_sym_ctrl_match_token1, - [188803] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2388), 1, - anon_sym_DASH, - STATE(4827), 1, + STATE(4851), 1, sym_comment, - ACTIONS(2390), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7847), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188827] = 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, + anon_sym_RBRACE, + [189132] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4828), 1, + STATE(4852), 1, sym_comment, - ACTIONS(7759), 13, + ACTIONS(7849), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372981,15 +378353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188849] = 4, + [189154] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, + STATE(4853), 1, sym_comment, - ACTIONS(5012), 2, + ACTIONS(2386), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5014), 11, + ACTIONS(2384), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373001,16 +378373,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, - [188873] = 5, + [189178] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(7817), 1, - sym__newline, - STATE(4830), 1, + STATE(4854), 1, sym_comment, - ACTIONS(7819), 11, + ACTIONS(7851), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373021,17 +378390,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, - [188899] = 5, + [189200] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, + ACTIONS(7855), 1, + anon_sym_DASH, + STATE(4855), 1, + sym_comment, + ACTIONS(7853), 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, + [189224] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3231), 1, aux_sym_record_entry_token1, - ACTIONS(7885), 1, + ACTIONS(7845), 1, sym__newline, - STATE(4831), 1, + STATE(4856), 1, sym_comment, - ACTIONS(7857), 11, + ACTIONS(7847), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373043,76 +378433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [188925] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7433), 1, - anon_sym_PIPE, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4832), 1, - sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [188971] = 13, + [189250] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, + ACTIONS(3231), 1, aux_sym_record_entry_token1, - ACTIONS(7887), 1, - anon_sym_DOLLAR, - ACTIONS(7889), 1, - anon_sym_DASH_DASH, - ACTIONS(7891), 1, - anon_sym_DASH, - ACTIONS(7893), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4833), 1, - sym_comment, - STATE(5027), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, - sym__flag, - STATE(670), 2, - sym__blosure, - sym_val_variable, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [189013] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4834), 1, - sym_comment, - ACTIONS(5046), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5048), 11, + ACTIONS(7801), 1, sym__newline, + STATE(4857), 1, + sym_comment, + ACTIONS(7803), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373123,15 +378453,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, - [189037] = 4, + anon_sym_RBRACE, + [189276] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4835), 1, + STATE(4858), 1, sym_comment, - ACTIONS(7672), 2, + ACTIONS(7069), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7670), 11, + ACTIONS(7067), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373143,60 +378474,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189061] = 9, + [189300] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(7857), 1, + anon_sym_DOLLAR, + ACTIONS(7859), 1, + anon_sym_DASH_DASH, + ACTIONS(7861), 1, anon_sym_DASH, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - ACTIONS(7895), 1, - sym_filesize_unit, - ACTIONS(7897), 1, - sym_duration_unit, - STATE(4836), 1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(4859), 1, sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, + STATE(5067), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, + sym__flag, + STATE(708), 2, + sym__blosure, + sym_val_variable, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [189342] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_DASH, + STATE(4860), 1, + sym_comment, + ACTIONS(2307), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189095] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [189366] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4837), 1, + ACTIONS(2446), 1, + anon_sym_DASH, + STATE(4861), 1, sym_comment, - ACTIONS(2067), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2061), 11, + ACTIONS(2448), 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, - [189119] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [189390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4838), 1, + STATE(4862), 1, sym_comment, - ACTIONS(5118), 2, + ACTIONS(7324), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5120), 11, + ACTIONS(7322), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373208,12 +378563,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, - [189143] = 3, - ACTIONS(247), 1, + [189414] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4839), 1, + STATE(4863), 1, sym_comment, - ACTIONS(7899), 13, + ACTIONS(2360), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2358), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373225,17 +378583,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, - [189165] = 4, + [189438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4840), 1, + STATE(4864), 1, sym_comment, - ACTIONS(7680), 2, + ACTIONS(7746), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7678), 11, + ACTIONS(7744), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373247,16 +378603,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, - [189189] = 5, - ACTIONS(247), 1, + [189462] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(7885), 1, - sym__newline, - STATE(4841), 1, + STATE(4865), 1, sym_comment, - ACTIONS(7857), 11, + ACTIONS(1866), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1864), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373267,16 +378623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [189215] = 4, + [189486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4842), 1, + STATE(4866), 1, sym_comment, - ACTIONS(2382), 2, + ACTIONS(2307), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2380), 11, + ACTIONS(2305), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373288,63 +378643,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189239] = 4, - ACTIONS(3), 1, + [189510] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4843), 1, + ACTIONS(7865), 1, + aux_sym__immediate_decimal_token2, + STATE(4867), 1, sym_comment, - ACTIONS(7807), 2, + ACTIONS(1554), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(7805), 11, sym__newline, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189536] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1904), 1, + anon_sym_DASH, + STATE(4868), 1, + sym_comment, + ACTIONS(1906), 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, - [189263] = 13, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [189560] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(2986), 1, + ACTIONS(2450), 1, + anon_sym_DASH, + STATE(4869), 1, + sym_comment, + ACTIONS(2452), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7901), 1, - anon_sym_DOT, - ACTIONS(7903), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7905), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - STATE(4844), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [189584] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(7857), 1, + anon_sym_DOLLAR, + ACTIONS(7859), 1, + anon_sym_DASH_DASH, + ACTIONS(7861), 1, + anon_sym_DASH, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(4870), 1, sym_comment, - STATE(5896), 1, - sym__immediate_decimal, - ACTIONS(1479), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(5826), 2, - sym__expr_parenthesized_immediate, + STATE(5067), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, + sym__flag, + STATE(708), 2, + sym__blosure, sym_val_variable, - [189305] = 4, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [189626] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2380), 1, + ACTIONS(2462), 1, anon_sym_DASH, - STATE(4845), 1, + STATE(4871), 1, sym_comment, - ACTIONS(2382), 12, + ACTIONS(2464), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -373356,16 +378752,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [189329] = 4, + anon_sym_LBRACE, + [189650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4846), 1, + STATE(4872), 1, sym_comment, - ACTIONS(2394), 2, + ACTIONS(2307), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2392), 11, + ACTIONS(2305), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373377,14 +378773,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, - [189353] = 4, - ACTIONS(247), 1, + [189674] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(4847), 1, + STATE(4873), 1, sym_comment, - ACTIONS(7911), 12, + ACTIONS(5103), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5105), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373396,36 +378793,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, - [189377] = 4, + [189698] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(4848), 1, - sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189401] = 4, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7867), 1, + anon_sym_PIPE, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4874), 1, + sym_comment, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [189744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4849), 1, + STATE(4875), 1, sym_comment, - ACTIONS(5016), 2, + ACTIONS(2519), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5018), 11, + ACTIONS(2517), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373437,12 +378844,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, - [189425] = 3, + [189768] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4850), 1, + STATE(4876), 1, sym_comment, - ACTIONS(7913), 13, + ACTIONS(7869), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373456,66 +378863,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189447] = 15, + [189790] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7873), 1, + anon_sym_QMARK, + ACTIONS(7875), 1, anon_sym_DASH, - ACTIONS(7915), 1, - anon_sym_RBRACK, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4851), 1, - sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [189493] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4852), 1, + STATE(4877), 1, sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 10, + ACTIONS(7871), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189517] = 4, - ACTIONS(3), 1, + [189816] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4853), 1, + STATE(4878), 1, sym_comment, - ACTIONS(1947), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1945), 11, + STATE(4885), 1, + aux_sym_shebang_repeat1, + ACTIONS(7877), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373527,32 +378903,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, - [189541] = 4, + anon_sym_RPAREN, + [189840] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4854), 1, - sym_comment, - ACTIONS(1639), 3, + ACTIONS(2454), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 10, + STATE(4879), 1, + sym_comment, + ACTIONS(2456), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189565] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [189864] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4855), 1, + STATE(4880), 1, sym_comment, - ACTIONS(7917), 13, + ACTIONS(2511), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2509), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373564,44 +378944,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189587] = 11, - ACTIONS(247), 1, + [189888] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7839), 1, + ACTIONS(1506), 1, + sym__entry_separator, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(7843), 1, + ACTIONS(5351), 1, + anon_sym_DOT, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(7827), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7845), 1, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token5, - STATE(4856), 1, + STATE(4881), 1, sym_comment, - STATE(6235), 1, + STATE(5645), 1, sym__immediate_decimal, - ACTIONS(7841), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3360), 2, + ACTIONS(1496), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5644), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1551), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [189625] = 4, + [189930] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4857), 1, + STATE(4882), 1, sym_comment, - ACTIONS(2402), 2, + ACTIONS(1834), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2400), 11, + ACTIONS(1832), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373613,32 +378993,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, - [189649] = 4, + [189954] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4858), 1, + STATE(4883), 1, sym_comment, - ACTIONS(7684), 2, + ACTIONS(2025), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7682), 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, - [189673] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4859), 1, - sym_comment, - ACTIONS(7919), 13, + ACTIONS(2019), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373650,96 +379013,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, - [189695] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7921), 1, - anon_sym_RBRACK, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4860), 1, - sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [189741] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7481), 1, - anon_sym_RBRACK, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4861), 1, - sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [189787] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7925), 1, - anon_sym_DASH, - STATE(4862), 1, - sym_comment, - ACTIONS(7923), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189811] = 3, - ACTIONS(247), 1, + [189978] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4863), 1, + STATE(4884), 1, sym_comment, - ACTIONS(7927), 13, + ACTIONS(1572), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373750,18 +379032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189833] = 4, - ACTIONS(3), 1, + anon_sym_e_PLUSo_GT_PIPE, + [190002] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4885), 1, sym_comment, - ACTIONS(7759), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7757), 11, + ACTIONS(7879), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373773,15 +379052,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, - [189857] = 4, + anon_sym_RPAREN, + [190026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4865), 1, + STATE(4886), 1, sym_comment, - ACTIONS(2430), 2, + ACTIONS(1878), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2428), 11, + ACTIONS(1876), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373793,46 +379073,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, - [189881] = 15, + [190050] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + ACTIONS(7385), 1, sym_identifier, - ACTIONS(7372), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(7374), 1, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(7397), 1, anon_sym_DASH, - ACTIONS(7929), 1, - anon_sym_RPAREN, - STATE(4039), 1, + ACTIONS(7881), 1, + anon_sym_RBRACK, + STATE(4067), 1, sym_param_long_flag, - STATE(4242), 1, + STATE(4234), 1, sym__param_name, - STATE(4576), 1, + STATE(4586), 1, aux_sym_parameter_parens_repeat1, - STATE(4866), 1, + STATE(4887), 1, sym_comment, - STATE(5079), 1, + STATE(5085), 1, sym_param_rest, - STATE(5080), 1, + STATE(5094), 1, sym_param_opt, - STATE(5082), 1, + STATE(5095), 1, sym_param_short_flag, - STATE(5442), 1, + STATE(5403), 1, sym_parameter, - [189927] = 4, - ACTIONS(3), 1, + [190096] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4867), 1, + STATE(4888), 1, sym_comment, - ACTIONS(2422), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2420), 11, + ACTIONS(7883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373844,62 +379121,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, - [189951] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3483), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6084), 1, - anon_sym_DOT, - ACTIONS(6088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, - aux_sym__immediate_decimal_token5, - STATE(4868), 1, - sym_comment, - STATE(5879), 1, - sym__immediate_decimal, - ACTIONS(6086), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1515), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [189989] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2457), 1, - anon_sym_DASH, - STATE(4869), 1, - sym_comment, - ACTIONS(2459), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [190013] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [190118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4870), 1, + STATE(4889), 1, sym_comment, - ACTIONS(2426), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2424), 11, + STATE(4983), 1, + aux_sym_shebang_repeat1, + ACTIONS(7885), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373911,15 +379142,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, - [190037] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + [190142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7931), 1, - anon_sym_catch, - STATE(4871), 1, + STATE(4890), 1, sym_comment, - ACTIONS(7778), 12, + ACTIONS(7590), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373931,15 +379163,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, - [190061] = 4, + [190166] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4872), 1, + STATE(4891), 1, sym_comment, - ACTIONS(2410), 2, + ACTIONS(2515), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2408), 11, + ACTIONS(2513), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373951,15 +379183,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, - [190085] = 4, + [190190] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4873), 1, + STATE(4892), 1, sym_comment, - ACTIONS(1951), 2, + ACTIONS(1826), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1949), 11, + ACTIONS(1822), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373971,12 +379203,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, - [190109] = 3, - ACTIONS(247), 1, + [190214] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4874), 1, + STATE(4893), 1, sym_comment, - ACTIONS(7933), 13, + ACTIONS(2475), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2473), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373988,62 +379223,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, + [190238] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2416), 1, + anon_sym_DASH, + STATE(4894), 1, + sym_comment, + ACTIONS(2418), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [190131] = 13, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190262] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1515), 1, - sym__entry_separator, - ACTIONS(2986), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(7825), 1, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7887), 1, + anon_sym_RPAREN, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4895), 1, + sym_comment, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [190308] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1864), 1, + anon_sym_DASH, + STATE(4896), 1, + sym_comment, + ACTIONS(1866), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190332] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3545), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(7903), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7905), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7907), 1, + ACTIONS(6074), 1, + anon_sym_DOT, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7935), 1, - anon_sym_DOT, - STATE(4875), 1, + STATE(4897), 1, sym_comment, - STATE(5825), 1, + STATE(5882), 1, sym__immediate_decimal, - ACTIONS(1505), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(5824), 2, + ACTIONS(6076), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5881), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190173] = 3, + ACTIONS(1506), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [190370] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4876), 1, + ACTIONS(1872), 1, + anon_sym_DASH, + STATE(4898), 1, sym_comment, - ACTIONS(7937), 13, + ACTIONS(1874), 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, - [190195] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190394] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4877), 1, + STATE(4899), 1, sym_comment, - ACTIONS(7939), 13, + ACTIONS(7889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374057,16 +379360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190217] = 5, + [190416] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7943), 1, - anon_sym_QMARK, - ACTIONS(7945), 1, + ACTIONS(1832), 1, anon_sym_DASH, - STATE(4878), 1, + STATE(4900), 1, sym_comment, - ACTIONS(7941), 11, + ACTIONS(1834), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374078,14 +379379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190243] = 4, + anon_sym_LBRACE, + [190440] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(1876), 1, anon_sym_DASH, - STATE(4879), 1, + STATE(4901), 1, sym_comment, - ACTIONS(2366), 12, + ACTIONS(1878), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374097,16 +379399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [190267] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [190464] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4880), 1, + STATE(4902), 1, sym_comment, - ACTIONS(2467), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2465), 11, + ACTIONS(7891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374118,15 +379417,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, - [190291] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4881), 1, - sym_comment, - ACTIONS(5077), 2, - ts_builtin_sym_end, + ACTIONS(7895), 1, sym__space, - ACTIONS(5079), 11, + STATE(4903), 1, + sym_comment, + ACTIONS(7893), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374138,15 +379438,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, - [190315] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [190510] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4882), 1, + STATE(4904), 1, sym_comment, - ACTIONS(1892), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1890), 11, + ACTIONS(6594), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374158,15 +379456,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, - [190339] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190532] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4905), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(2464), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2469), 11, + ACTIONS(2462), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374178,15 +379478,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, - [190363] = 4, - ACTIONS(3), 1, + [190556] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4884), 1, + STATE(4906), 1, sym_comment, - ACTIONS(1587), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1575), 11, + ACTIONS(7897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374198,14 +379495,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, - [190387] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190578] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1560), 1, anon_sym_DASH, - STATE(4885), 1, + ACTIONS(6965), 1, + aux_sym__unquoted_in_list_token2, + STATE(4907), 1, sym_comment, - ACTIONS(1845), 12, + ACTIONS(1572), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374217,37 +379518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [190411] = 4, - ACTIONS(247), 1, + [190604] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, - anon_sym_DASH, - STATE(4886), 1, + STATE(4908), 1, sym_comment, - ACTIONS(2402), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2311), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2309), 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, - aux_sym_ctrl_match_token1, - [190435] = 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, + [190628] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(2305), 1, anon_sym_DASH, - ACTIONS(7005), 1, - aux_sym__unquoted_in_list_token2, - STATE(4887), 1, + STATE(4909), 1, sym_comment, - ACTIONS(1587), 11, + ACTIONS(2307), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374259,15 +379557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190461] = 4, + anon_sym_LBRACE, + [190652] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4888), 1, + STATE(4910), 1, sym_comment, - ACTIONS(2434), 2, + ACTIONS(2499), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2432), 11, + ACTIONS(2497), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374279,46 +379578,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, - [190485] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7947), 1, - anon_sym_PIPE, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4889), 1, - sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [190531] = 4, + [190676] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4890), 1, + STATE(4911), 1, sym_comment, - ACTIONS(2386), 2, + ACTIONS(2418), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2384), 11, + ACTIONS(2416), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374330,12 +379598,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, - [190555] = 3, + [190700] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4912), 1, sym_comment, - ACTIONS(7949), 13, + ACTIONS(7899), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374349,15 +379617,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190577] = 4, + [190722] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2348), 1, + anon_sym_DASH, + STATE(4913), 1, + sym_comment, + ACTIONS(2350), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190746] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4892), 1, + STATE(4914), 1, sym_comment, - ACTIONS(2438), 2, + ACTIONS(2005), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2436), 11, + ACTIONS(1999), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374369,15 +379657,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, - [190601] = 4, + [190770] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4915), 1, sym_comment, - ACTIONS(5020), 2, + ACTIONS(1874), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5022), 11, + ACTIONS(1872), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374389,15 +379677,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, - [190625] = 4, + [190794] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4894), 1, + STATE(4916), 1, sym_comment, - ACTIONS(5042), 2, + ACTIONS(2013), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5044), 11, + ACTIONS(2007), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374409,95 +379697,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, - [190649] = 15, + [190818] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, + ACTIONS(1560), 1, anon_sym_DASH, - ACTIONS(7540), 1, - anon_sym_RPAREN, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4895), 1, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + ACTIONS(7901), 1, + sym_filesize_unit, + ACTIONS(7903), 1, + sym_duration_unit, + STATE(4917), 1, sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [190695] = 4, - ACTIONS(3), 1, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [190852] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4896), 1, + ACTIONS(2420), 1, + anon_sym_DASH, + STATE(4918), 1, sym_comment, - ACTIONS(5034), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5036), 11, + ACTIONS(2422), 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, - [190719] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1479), 1, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2986), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7847), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7849), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7851), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7951), 1, - anon_sym_DOT, - STATE(4897), 1, - sym_comment, - STATE(5627), 1, - sym__immediate_decimal, - STATE(5792), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190763] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190876] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4847), 1, - aux_sym_shebang_repeat1, - STATE(4898), 1, + STATE(4919), 1, sym_comment, - ACTIONS(7953), 12, + ACTIONS(7905), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374510,35 +379760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190787] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [190898] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4899), 1, + STATE(4920), 1, sym_comment, - ACTIONS(5038), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5040), 11, + ACTIONS(1653), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190811] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190922] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, + STATE(4921), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2523), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2396), 11, + ACTIONS(2521), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374550,35 +379801,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, - [190835] = 4, - ACTIONS(3), 1, + [190946] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4901), 1, + ACTIONS(2338), 1, + anon_sym_DASH, + STATE(4922), 1, sym_comment, - ACTIONS(2390), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2388), 11, + ACTIONS(2340), 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, - [190859] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190970] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4902), 1, + STATE(4923), 1, sym_comment, - ACTIONS(1869), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1867), 11, + ACTIONS(7590), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374590,12 +379838,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, - [190883] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190992] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4903), 1, + STATE(4924), 1, sym_comment, - ACTIONS(6608), 13, + ACTIONS(7847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374609,12 +379859,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190905] = 3, + [191014] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(4904), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7524), 1, + anon_sym_RPAREN, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4925), 1, + sym_comment, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [191060] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4926), 1, sym_comment, - ACTIONS(7955), 13, + ACTIONS(2487), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2485), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374626,16 +379910,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, - [190927] = 4, + [191084] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(1888), 1, anon_sym_DASH, - STATE(4905), 1, + STATE(4927), 1, sym_comment, - ACTIONS(2357), 12, + ACTIONS(1890), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374647,35 +379929,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [190951] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [191108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_DASH, - STATE(4906), 1, + STATE(4928), 1, sym_comment, - ACTIONS(2445), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2460), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2458), 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, - aux_sym_ctrl_match_token1, - [190975] = 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, + [191132] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2404), 1, + ACTIONS(2434), 1, anon_sym_DASH, - STATE(4907), 1, + STATE(4929), 1, sym_comment, - ACTIONS(2406), 12, + ACTIONS(2436), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374687,15 +379969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [190999] = 4, + anon_sym_LBRACE, + [191156] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2453), 1, - anon_sym_DASH, - STATE(4908), 1, + STATE(4930), 1, sym_comment, - ACTIONS(2455), 12, + ACTIONS(1050), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1052), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374707,77 +379990,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191023] = 15, - ACTIONS(247), 1, + [191180] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7380), 1, - anon_sym_RPAREN, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4909), 1, + STATE(4931), 1, sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [191069] = 15, - ACTIONS(247), 1, + ACTIONS(2422), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2420), 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, + [191204] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7370), 1, - anon_sym_RBRACK, - ACTIONS(7372), 1, - anon_sym_DOLLAR, - ACTIONS(7374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, - anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4910), 1, + STATE(4932), 1, sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [191115] = 4, + ACTIONS(1949), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1947), 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, + [191228] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4933), 1, + sym_comment, + ACTIONS(1890), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1888), 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, + [191252] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(2517), 1, anon_sym_DASH, - STATE(4911), 1, + STATE(4934), 1, sym_comment, - ACTIONS(1861), 12, + ACTIONS(2519), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374789,16 +380069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191139] = 4, + anon_sym_LBRACE, + [191276] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4912), 1, + STATE(4935), 1, sym_comment, - ACTIONS(7151), 2, + ACTIONS(4998), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7149), 11, + ACTIONS(5000), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374810,15 +380090,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, - [191163] = 4, + [191300] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7909), 1, + anon_sym_DASH, + STATE(4936), 1, + sym_comment, + ACTIONS(7907), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4913), 1, + STATE(4937), 1, sym_comment, - ACTIONS(7676), 2, + ACTIONS(5002), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7674), 11, + ACTIONS(5004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374830,64 +380130,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, - [191187] = 5, + [191348] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7790), 1, - aux_sym__immediate_decimal_token2, - STATE(4914), 1, + STATE(4938), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1518), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1499), 9, - ts_builtin_sym_end, + ACTIONS(1520), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191213] = 15, + [191372] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4939), 1, + sym_comment, + ACTIONS(7911), 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, + [191394] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7366), 1, + ACTIONS(7915), 1, + anon_sym_DASH, + STATE(4940), 1, + sym_comment, + ACTIONS(7913), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7372), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7374), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(7378), 1, - anon_sym_DASH, - ACTIONS(7957), 1, - anon_sym_RPAREN, - STATE(4039), 1, - sym_param_long_flag, - STATE(4242), 1, - sym__param_name, - STATE(4576), 1, - aux_sym_parameter_parens_repeat1, - STATE(4915), 1, - sym_comment, - STATE(5079), 1, - sym_param_rest, - STATE(5080), 1, - sym_param_opt, - STATE(5082), 1, - sym_param_short_flag, - STATE(5442), 1, - sym_parameter, - [191259] = 3, + [191418] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4916), 1, + STATE(4941), 1, sym_comment, - ACTIONS(7959), 13, + ACTIONS(7917), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374901,15 +380208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191281] = 4, - ACTIONS(3), 1, + [191440] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4917), 1, + ACTIONS(5942), 1, + anon_sym_DASH, + STATE(4942), 1, sym_comment, - ACTIONS(7265), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7263), 11, + ACTIONS(5944), 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, + [191464] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4943), 1, + sym_comment, + ACTIONS(7803), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374921,15 +380245,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, - [191305] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191486] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4918), 1, + ACTIONS(7919), 1, + anon_sym_catch, + STATE(4944), 1, sym_comment, - ACTIONS(5112), 2, + ACTIONS(7616), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374941,15 +380267,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, - [191329] = 4, - ACTIONS(3), 1, + [191510] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4919), 1, + STATE(4945), 1, sym_comment, - ACTIONS(2479), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2477), 11, + ACTIONS(7921), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374961,14 +380284,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, - [191353] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7963), 1, - sym__space, - STATE(4920), 1, + STATE(4946), 1, sym_comment, - ACTIONS(7961), 12, + ACTIONS(2436), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2434), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374980,44 +380306,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, - [191377] = 12, + [191556] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(3483), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7965), 1, - anon_sym_DOT, - ACTIONS(7969), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7971), 1, - aux_sym__immediate_decimal_token5, - STATE(4921), 1, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7923), 1, + anon_sym_RBRACK, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4947), 1, sym_comment, - STATE(5800), 1, - sym__immediate_decimal, - ACTIONS(1493), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7967), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5880), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191417] = 4, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [191602] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4922), 1, + STATE(4948), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(2440), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2404), 11, + ACTIONS(2438), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375029,54 +380357,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, - [191441] = 4, + [191626] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_DASH, - STATE(4923), 1, - sym_comment, - ACTIONS(1869), 12, - anon_sym_EQ, + ACTIONS(7385), 1, sym_identifier, - sym__newline, + ACTIONS(7389), 1, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7391), 1, anon_sym_DOLLAR, + ACTIONS(7393), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191465] = 4, + ACTIONS(7397), 1, + anon_sym_DASH, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4949), 1, + sym_comment, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [191672] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7975), 1, - anon_sym_DASH, - STATE(4924), 1, + STATE(4950), 1, sym_comment, - ACTIONS(7973), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7925), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191489] = 4, + anon_sym_RBRACE, + [191694] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1822), 1, anon_sym_DASH, - STATE(4925), 1, + STATE(4951), 1, sym_comment, - ACTIONS(1873), 12, + ACTIONS(1826), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375088,15 +380426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191513] = 4, + anon_sym_LBRACE, + [191718] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(2380), 1, anon_sym_DASH, - STATE(4926), 1, + STATE(4952), 1, sym_comment, - ACTIONS(2410), 12, + ACTIONS(2382), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375108,15 +380446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191537] = 4, + anon_sym_LBRACE, + [191742] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5959), 1, + ACTIONS(1070), 1, anon_sym_DASH, - STATE(4927), 1, + STATE(4953), 1, sym_comment, - ACTIONS(5961), 12, + ACTIONS(1072), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375128,16 +380466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [191561] = 4, + anon_sym_LBRACE, + [191766] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4928), 1, + STATE(4954), 1, sym_comment, - ACTIONS(1873), 2, + ACTIONS(2491), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1871), 11, + ACTIONS(2489), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375149,15 +380487,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, - [191585] = 4, + [191790] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4929), 1, + STATE(4955), 1, sym_comment, - ACTIONS(1963), 2, + ACTIONS(2364), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1961), 11, + ACTIONS(2362), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375169,14 +380507,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, - [191609] = 4, + [191814] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(4787), 1, - aux_sym_shebang_repeat1, - STATE(4930), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7421), 1, + anon_sym_RBRACK, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4956), 1, sym_comment, - ACTIONS(7977), 12, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [191860] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4957), 1, + sym_comment, + ACTIONS(4990), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4992), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375188,66 +380558,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, - [191633] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(7887), 1, - anon_sym_DOLLAR, - ACTIONS(7889), 1, - anon_sym_DASH_DASH, - ACTIONS(7891), 1, - anon_sym_DASH, - ACTIONS(7893), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4931), 1, - sym_comment, - STATE(5027), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, - sym__flag, - STATE(670), 2, - sym__blosure, - sym_val_variable, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [191675] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7979), 1, - aux_sym__immediate_decimal_token2, - STATE(4932), 1, - sym_comment, - ACTIONS(1565), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191701] = 4, + [191884] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4933), 1, + STATE(4958), 1, sym_comment, - ACTIONS(7692), 2, + ACTIONS(2368), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7690), 11, + ACTIONS(2366), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375259,15 +380578,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, - [191725] = 4, + [191908] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4934), 1, + STATE(4959), 1, sym_comment, - ACTIONS(2323), 2, + ACTIONS(1894), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2321), 11, + ACTIONS(1892), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375279,34 +380598,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191749] = 4, - ACTIONS(3), 1, + [191932] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4935), 1, + STATE(4960), 1, sym_comment, - ACTIONS(2475), 2, + ACTIONS(1054), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1056), 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, + [191956] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7517), 1, + anon_sym_RBRACK, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4961), 1, + sym_comment, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [192002] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7546), 1, + aux_sym__immediate_decimal_token2, + STATE(4962), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(2473), 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, - [191773] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192028] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(2362), 1, anon_sym_DASH, - STATE(4936), 1, + STATE(4963), 1, sym_comment, - ACTIONS(1892), 12, + ACTIONS(2364), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375318,16 +380689,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191797] = 4, + anon_sym_LBRACE, + [192052] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7522), 1, + anon_sym_RPAREN, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4964), 1, + sym_comment, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [192098] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4937), 1, + STATE(4965), 1, sym_comment, - ACTIONS(2357), 2, + ACTIONS(4994), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2355), 11, + ACTIONS(4996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375339,15 +380741,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, - [191821] = 4, + [192122] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4938), 1, + STATE(4966), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(1850), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2449), 11, + ACTIONS(1848), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375359,33 +380761,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, - [191845] = 3, + [192146] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4939), 1, + ACTIONS(7929), 1, + anon_sym_DASH, + STATE(4967), 1, sym_comment, - ACTIONS(7981), 13, + ACTIONS(7927), 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, - [191867] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192170] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2396), 1, + ACTIONS(7933), 1, anon_sym_DASH, - STATE(4940), 1, + STATE(4968), 1, sym_comment, - ACTIONS(2398), 12, + ACTIONS(7931), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375395,17 +380798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191891] = 4, + [192194] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2392), 1, + ACTIONS(7937), 1, anon_sym_DASH, - STATE(4941), 1, + STATE(4969), 1, sym_comment, - ACTIONS(2394), 12, + ACTIONS(7935), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375415,38 +380818,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191915] = 4, - ACTIONS(3), 1, + [192218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4942), 1, + ACTIONS(2309), 1, + anon_sym_DASH, + STATE(4970), 1, sym_comment, - ACTIONS(2041), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2035), 11, + ACTIONS(2311), 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, - [191939] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192242] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4943), 1, + STATE(4971), 1, sym_comment, - ACTIONS(2049), 2, + ACTIONS(7722), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2043), 11, + ACTIONS(7720), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375458,12 +380861,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, - [191963] = 3, + [192266] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4944), 1, + STATE(4972), 1, sym_comment, - ACTIONS(7983), 13, + ACTIONS(7939), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375477,35 +380880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4945), 1, - sym_comment, - ACTIONS(1078), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1076), 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, - [192009] = 4, + [192288] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4946), 1, + STATE(4973), 1, sym_comment, - ACTIONS(2057), 2, + ACTIONS(5099), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2051), 11, + ACTIONS(5101), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375517,14 +380900,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, - [192033] = 4, + [192312] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7987), 1, + ACTIONS(2342), 1, anon_sym_DASH, - STATE(4947), 1, + STATE(4974), 1, sym_comment, - ACTIONS(7985), 12, + ACTIONS(2344), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375534,54 +380917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192057] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4948), 1, - sym_comment, - ACTIONS(7328), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7330), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [192080] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4949), 1, - sym_comment, - ACTIONS(7981), 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, - [192101] = 4, + anon_sym_LBRACE, + [192336] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7498), 1, + ACTIONS(2366), 1, anon_sym_DASH, - STATE(4950), 1, + STATE(4975), 1, sym_comment, - ACTIONS(7496), 11, + ACTIONS(2368), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375593,33 +380939,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192124] = 4, + anon_sym_LBRACE, + [192360] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_DASH, - STATE(4951), 1, + STATE(4976), 1, sym_comment, - ACTIONS(7989), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7941), 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, - [192147] = 4, + anon_sym_RBRACE, + [192382] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(2521), 1, anon_sym_DASH, - STATE(4952), 1, + STATE(4977), 1, sym_comment, - ACTIONS(7993), 11, + ACTIONS(2523), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375631,14 +380978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192170] = 4, + anon_sym_LBRACE, + [192406] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(2384), 1, anon_sym_DASH, - STATE(4953), 1, + STATE(4978), 1, sym_comment, - ACTIONS(1587), 11, + ACTIONS(2386), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375650,33 +380998,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192193] = 4, + anon_sym_LBRACE, + [192430] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7999), 1, - anon_sym_DASH, - STATE(4954), 1, + STATE(4979), 1, sym_comment, - ACTIONS(7997), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7943), 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, - [192216] = 4, + anon_sym_RBRACE, + [192452] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2436), 1, + ACTIONS(2438), 1, anon_sym_DASH, - STATE(4955), 1, + STATE(4980), 1, sym_comment, - ACTIONS(2438), 11, + ACTIONS(2440), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375688,13 +381037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192239] = 3, + anon_sym_LBRACE, + [192476] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4956), 1, + STATE(4981), 1, sym_comment, - ACTIONS(6600), 12, - ts_builtin_sym_end, + ACTIONS(7945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375706,12 +381055,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, - [192260] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192498] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4957), 1, + STATE(4982), 1, sym_comment, - ACTIONS(8001), 12, + ACTIONS(5028), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375723,13 +381077,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, - [192281] = 3, + [192522] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4958), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4983), 1, sym_comment, - ACTIONS(8003), 12, + ACTIONS(7947), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375742,12 +381097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192302] = 3, - ACTIONS(247), 1, + [192546] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4959), 1, + STATE(4984), 1, sym_comment, - ACTIONS(8005), 12, + ACTIONS(5032), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375759,31 +381117,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192323] = 3, + [192570] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4960), 1, + STATE(4985), 1, sym_comment, - ACTIONS(8007), 12, + ACTIONS(1540), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192344] = 3, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192594] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(4961), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_DOLLAR, + ACTIONS(7393), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7395), 1, + anon_sym_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_DASH, + ACTIONS(7949), 1, + anon_sym_RPAREN, + STATE(4067), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4586), 1, + aux_sym_parameter_parens_repeat1, + STATE(4986), 1, sym_comment, - ACTIONS(8009), 12, + STATE(5085), 1, + sym_param_rest, + STATE(5094), 1, + sym_param_opt, + STATE(5095), 1, + sym_param_short_flag, + STATE(5403), 1, + sym_parameter, + [192640] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1478), 1, + anon_sym_RBRACE, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(1494), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(7951), 1, + anon_sym_DOT, + ACTIONS(7953), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7955), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7957), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token5, + STATE(4987), 1, + sym_comment, + STATE(5609), 1, + sym__immediate_decimal, + STATE(5646), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192684] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4988), 1, + sym_comment, + ACTIONS(7116), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375795,13 +381218,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, - [192365] = 3, + [192708] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(4962), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(7837), 1, + anon_sym_DOLLAR, + ACTIONS(7841), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7843), 1, + aux_sym__immediate_decimal_token5, + STATE(4989), 1, sym_comment, - ACTIONS(8011), 12, + STATE(6480), 1, + sym__immediate_decimal, + ACTIONS(7839), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3393), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1492), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [192746] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4990), 1, + sym_comment, + ACTIONS(2414), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2412), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375813,13 +381265,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, - [192386] = 3, - ACTIONS(247), 1, + [192770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4963), 1, + STATE(4991), 1, sym_comment, - ACTIONS(8013), 12, + ACTIONS(2503), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2501), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375831,13 +381285,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, - [192407] = 3, - ACTIONS(247), 1, + [192794] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4964), 1, + STATE(4992), 1, sym_comment, - ACTIONS(8015), 12, + ACTIONS(2390), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2388), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375849,14 +381305,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, - [192428] = 3, - ACTIONS(247), 1, + [192818] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4965), 1, + STATE(4993), 1, sym_comment, - ACTIONS(6608), 12, + ACTIONS(2479), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2477), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375868,12 +381325,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, - [192449] = 3, + [192842] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4966), 1, + ACTIONS(2388), 1, + anon_sym_DASH, + STATE(4994), 1, sym_comment, - ACTIONS(8017), 12, + ACTIONS(2390), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192866] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4995), 1, + sym_comment, + ACTIONS(2495), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2493), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375885,41 +381365,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192470] = 13, - ACTIONS(3), 1, + [192890] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1549), 1, + ACTIONS(2328), 1, + anon_sym_DASH, + STATE(4996), 1, + sym_comment, + ACTIONS(2330), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1551), 1, - sym__entry_separator, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(8019), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8021), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8023), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8025), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8027), 1, - aux_sym__immediate_decimal_token5, - STATE(4967), 1, - sym_comment, - STATE(6637), 1, - sym__immediate_decimal, - STATE(2898), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192511] = 3, - ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192914] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4968), 1, + STATE(4997), 1, sym_comment, - ACTIONS(8029), 12, + ACTIONS(5132), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5134), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375931,13 +381405,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, - [192532] = 3, - ACTIONS(247), 1, + [192938] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4969), 1, + STATE(4998), 1, sym_comment, - ACTIONS(8031), 12, + ACTIONS(2483), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375949,13 +381425,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, - [192553] = 3, - ACTIONS(247), 1, + [192962] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4970), 1, + STATE(4999), 1, sym_comment, - ACTIONS(8033), 12, + ACTIONS(1997), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1991), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375967,13 +381445,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, + [192986] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7963), 1, + anon_sym_DASH, + STATE(5000), 1, + sym_comment, + ACTIONS(7961), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [192574] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193009] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4971), 1, + STATE(5001), 1, sym_comment, - ACTIONS(6662), 12, + ACTIONS(7965), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375986,12 +381482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192595] = 3, + [193030] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4972), 1, + STATE(5002), 1, sym_comment, - ACTIONS(8035), 12, + ACTIONS(7967), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376004,13 +381500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192616] = 3, + [193051] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4973), 1, + STATE(5003), 1, sym_comment, - ACTIONS(7819), 12, - ts_builtin_sym_end, + ACTIONS(7969), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376022,33 +381517,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, - [192637] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_DOT, - ACTIONS(8039), 1, - aux_sym__immediate_decimal_token2, - STATE(4974), 1, - sym_comment, - ACTIONS(1497), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [192664] = 3, + anon_sym_RPAREN, + [193072] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4975), 1, + STATE(5004), 1, sym_comment, - ACTIONS(8041), 12, + ACTIONS(6650), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376061,12 +381536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192685] = 3, + [193093] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4976), 1, + STATE(5005), 1, sym_comment, - ACTIONS(7881), 12, + ACTIONS(7847), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376079,12 +381554,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, - [192706] = 3, + [193114] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4977), 1, + STATE(5006), 1, sym_comment, - ACTIONS(7883), 12, + ACTIONS(7897), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376097,12 +381572,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, - [192727] = 3, + [193135] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4978), 1, + STATE(5007), 1, sym_comment, - ACTIONS(7857), 12, + ACTIONS(7905), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376115,63 +381590,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, - [192748] = 6, + [193156] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8043), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8045), 1, + ACTIONS(7971), 1, + anon_sym_DOT, + ACTIONS(7973), 1, aux_sym__immediate_decimal_token2, - STATE(4979), 1, + STATE(5008), 1, sym_comment, - ACTIONS(1517), 4, + ACTIONS(1518), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1519), 6, + ACTIONS(1520), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [192775] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1479), 1, - anon_sym_RBRACE, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(2986), 1, - anon_sym_DOLLAR, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7847), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7849), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7851), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7901), 1, - anon_sym_DOT, - STATE(4980), 1, - sym_comment, - STATE(6032), 1, - sym__immediate_decimal, - STATE(5792), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192816] = 4, + [193183] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7392), 1, + ACTIONS(7515), 1, anon_sym_DASH, - STATE(4981), 1, + STATE(5009), 1, sym_comment, - ACTIONS(7390), 11, + ACTIONS(7513), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376183,38 +381630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192839] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - ACTIONS(8049), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8051), 1, - aux_sym__immediate_decimal_token5, - STATE(4982), 1, - sym_comment, - STATE(6756), 1, - sym__immediate_decimal, - ACTIONS(1493), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8047), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3369), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192876] = 3, + [193206] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4983), 1, + STATE(5010), 1, sym_comment, - ACTIONS(8053), 12, + ACTIONS(7975), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376227,12 +381648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192897] = 3, + [193227] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4984), 1, + STATE(5011), 1, sym_comment, - ACTIONS(8055), 12, + ACTIONS(7803), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376244,13 +381666,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192918] = 3, + [193248] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token2, + STATE(5012), 1, + sym_comment, + ACTIONS(1540), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1542), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [193275] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4985), 1, + STATE(5013), 1, sym_comment, - ACTIONS(8057), 12, + ACTIONS(7981), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376263,12 +381705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192939] = 3, + [193296] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4986), 1, + STATE(5014), 1, sym_comment, - ACTIONS(8059), 12, + ACTIONS(7983), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376281,12 +381723,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192960] = 3, + [193317] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1478), 1, + anon_sym_RBRACE, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(2997), 1, + anon_sym_DOLLAR, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(7827), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7833), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7985), 1, + anon_sym_DOT, + STATE(5015), 1, + sym_comment, + STATE(5966), 1, + sym__immediate_decimal, + STATE(5646), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193358] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4987), 1, + STATE(5016), 1, sym_comment, - ACTIONS(8061), 12, + ACTIONS(7987), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376299,12 +381769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192981] = 3, + [193379] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4988), 1, + STATE(5017), 1, sym_comment, - ACTIONS(8063), 12, + ACTIONS(7989), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376317,18 +381787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193002] = 6, + [193400] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - STATE(681), 1, - aux_sym__pipe_separator, - STATE(4989), 1, + STATE(5018), 1, sym_comment, - STATE(5112), 1, - aux_sym_shebang_repeat1, - ACTIONS(2936), 9, + ACTIONS(7991), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -376338,12 +381804,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, - [193029] = 3, + anon_sym_RPAREN, + [193421] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4990), 1, + STATE(5019), 1, sym_comment, - ACTIONS(8065), 12, + ACTIONS(7993), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376356,14 +381823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193050] = 3, + [193442] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4991), 1, - sym_comment, - ACTIONS(8067), 12, + ACTIONS(3705), 1, sym__newline, - anon_sym_SEMI, + STATE(715), 1, + aux_sym__pipe_separator, + STATE(5020), 1, + sym_comment, + STATE(5192), 1, + aux_sym_shebang_repeat1, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -376373,14 +381844,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, - [193071] = 3, + [193469] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4992), 1, + STATE(5021), 1, sym_comment, - ACTIONS(7959), 12, - ts_builtin_sym_end, + ACTIONS(7995), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376392,12 +381861,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, - [193092] = 3, + anon_sym_RPAREN, + [193490] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4993), 1, + STATE(5022), 1, sym_comment, - ACTIONS(8069), 12, + ACTIONS(7997), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376410,12 +381880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193113] = 3, + [193511] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4994), 1, + STATE(5023), 1, sym_comment, - ACTIONS(8071), 12, + ACTIONS(7925), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376427,14 +381898,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, - [193134] = 3, + [193532] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4995), 1, + STATE(5024), 1, sym_comment, - ACTIONS(7919), 12, - ts_builtin_sym_end, + ACTIONS(7999), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376446,13 +381915,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, - [193155] = 3, + anon_sym_RPAREN, + [193553] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4996), 1, + STATE(5025), 1, sym_comment, - ACTIONS(7927), 12, - ts_builtin_sym_end, + ACTIONS(8001), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376464,57 +381933,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, - [193176] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4997), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193199] = 11, + anon_sym_RPAREN, + [193574] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(7839), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - ACTIONS(8049), 1, + ACTIONS(8005), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8051), 1, + ACTIONS(8007), 1, aux_sym__immediate_decimal_token5, - STATE(4998), 1, + STATE(5026), 1, sym_comment, - STATE(7293), 1, + STATE(6805), 1, sym__immediate_decimal, - ACTIONS(1551), 2, + ACTIONS(1492), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(8047), 2, + ACTIONS(8003), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3360), 2, + STATE(3393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193236] = 3, + [193611] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4999), 1, + STATE(5027), 1, sym_comment, - ACTIONS(8073), 12, + ACTIONS(7891), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376526,32 +381978,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, - [193257] = 4, + [193632] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5000), 1, + STATE(5028), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 9, + ACTIONS(7869), 12, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193280] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5001), 1, - sym_comment, - ACTIONS(8075), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376563,13 +381996,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, - [193301] = 3, + [193653] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5002), 1, + STATE(5029), 1, sym_comment, - ACTIONS(8077), 12, + ACTIONS(8009), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376582,12 +382014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193322] = 3, + [193674] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5003), 1, + STATE(5030), 1, sym_comment, - ACTIONS(8079), 12, + ACTIONS(8011), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376600,31 +382032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193343] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5004), 1, - sym_comment, - ACTIONS(1565), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193366] = 3, + [193695] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5005), 1, + STATE(5031), 1, sym_comment, - ACTIONS(8081), 12, + ACTIONS(8013), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376637,12 +382050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193387] = 3, + [193716] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5006), 1, + STATE(5032), 1, sym_comment, - ACTIONS(8083), 12, + ACTIONS(8015), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376655,12 +382068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193408] = 3, + [193737] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5007), 1, + STATE(5033), 1, sym_comment, - ACTIONS(8085), 12, + ACTIONS(8017), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376673,12 +382086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193429] = 3, + [193758] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5008), 1, + STATE(5034), 1, sym_comment, - ACTIONS(8087), 12, + ACTIONS(8019), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376691,31 +382104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193450] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5009), 1, - sym_comment, - ACTIONS(1639), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193473] = 3, + [193779] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5010), 1, + STATE(5035), 1, sym_comment, - ACTIONS(8089), 12, + ACTIONS(8021), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376728,13 +382122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193494] = 3, + [193800] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5011), 1, + STATE(5036), 1, sym_comment, - ACTIONS(7937), 12, - ts_builtin_sym_end, + ACTIONS(8023), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376746,13 +382139,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, - [193515] = 3, + anon_sym_RPAREN, + [193821] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5012), 1, + STATE(5037), 1, sym_comment, - ACTIONS(7939), 12, - ts_builtin_sym_end, + ACTIONS(8025), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376764,12 +382157,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, - [193536] = 3, + anon_sym_RPAREN, + [193842] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5013), 1, + STATE(5038), 1, sym_comment, - ACTIONS(8091), 12, + ACTIONS(8027), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376782,12 +382176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193557] = 3, + [193863] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5014), 1, + STATE(5039), 1, sym_comment, - ACTIONS(8093), 12, + ACTIONS(8029), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376800,12 +382194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193578] = 3, + [193884] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5015), 1, + STATE(5040), 1, sym_comment, - ACTIONS(8095), 12, + ACTIONS(8031), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376818,12 +382212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193599] = 3, + [193905] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5016), 1, + STATE(5041), 1, sym_comment, - ACTIONS(8097), 12, + ACTIONS(8033), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376836,12 +382230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193620] = 3, + [193926] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5017), 1, + STATE(5042), 1, sym_comment, - ACTIONS(8099), 12, + ACTIONS(8035), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376854,12 +382248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193641] = 3, + [193947] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5018), 1, + STATE(5043), 1, sym_comment, - ACTIONS(8101), 12, + ACTIONS(8037), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376872,12 +382266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193662] = 3, + [193968] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5019), 1, + STATE(5044), 1, sym_comment, - ACTIONS(8103), 12, + ACTIONS(8039), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376890,12 +382284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193683] = 3, + [193989] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5020), 1, + STATE(5045), 1, sym_comment, - ACTIONS(8105), 12, + ACTIONS(8041), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376908,285 +382302,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193704] = 12, + [194010] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(7837), 1, + anon_sym_DOLLAR, + ACTIONS(8005), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8007), 1, + aux_sym__immediate_decimal_token5, + STATE(5046), 1, + sym_comment, + STATE(6789), 1, + sym__immediate_decimal, + ACTIONS(1550), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8003), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3401), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194047] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7889), 1, + ACTIONS(7859), 1, anon_sym_DASH_DASH, - ACTIONS(7891), 1, + ACTIONS(7861), 1, anon_sym_DASH, - ACTIONS(8107), 1, + ACTIONS(8043), 1, anon_sym_DOLLAR, - ACTIONS(8109), 1, - aux_sym_ctrl_match_token1, - STATE(1896), 1, + ACTIONS(8045), 1, + anon_sym_LBRACE, + STATE(1952), 1, sym_block, - STATE(1899), 1, + STATE(1960), 1, sym_val_closure, - STATE(5021), 1, + STATE(5047), 1, sym_comment, - STATE(5025), 1, + STATE(5054), 1, aux_sym_ctrl_do_repeat1, - STATE(5943), 1, + STATE(5902), 1, sym__flag, - STATE(677), 2, + STATE(711), 2, sym__blosure, sym_val_variable, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [193743] = 12, - ACTIONS(3), 1, + [194086] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token3, - STATE(5022), 1, + ACTIONS(5619), 1, + sym__newline, + ACTIONS(8047), 1, + anon_sym_DASH, + STATE(5048), 1, sym_comment, - STATE(7279), 1, - sym__immediate_decimal, - ACTIONS(1479), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(6828), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193782] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1479), 1, - anon_sym_RBRACE, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(1495), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(8019), 1, + ACTIONS(1307), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5622), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8117), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8119), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8121), 1, - aux_sym__immediate_decimal_token5, - STATE(5023), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194113] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5049), 1, sym_comment, - STATE(6118), 1, - sym__immediate_decimal, - STATE(2901), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193823] = 13, + ACTIONS(1518), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194136] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1479), 1, + ACTIONS(1478), 1, anon_sym_RBRACK, - ACTIONS(1493), 1, + ACTIONS(1492), 1, sym__entry_separator, - ACTIONS(1495), 1, + ACTIONS(1494), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(8019), 1, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8021), 1, + ACTIONS(8051), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8023), 1, + ACTIONS(8053), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8025), 1, + ACTIONS(8055), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8027), 1, + ACTIONS(8057), 1, aux_sym__immediate_decimal_token5, - STATE(5024), 1, + STATE(5050), 1, sym_comment, - STATE(6594), 1, + STATE(6540), 1, sym__immediate_decimal, - STATE(2901), 2, + STATE(2962), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193864] = 12, + [194177] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7889), 1, - anon_sym_DASH_DASH, - ACTIONS(7891), 1, - anon_sym_DASH, - ACTIONS(8107), 1, - anon_sym_DOLLAR, - ACTIONS(8109), 1, - aux_sym_ctrl_match_token1, - STATE(1896), 1, - sym_block, - STATE(1899), 1, - sym_val_closure, - STATE(5025), 1, + STATE(5051), 1, sym_comment, - STATE(5422), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, - sym__flag, - STATE(678), 2, - sym__blosure, - sym_val_variable, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [193903] = 12, + ACTIONS(1540), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194200] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7887), 1, - anon_sym_DOLLAR, - ACTIONS(7889), 1, - anon_sym_DASH_DASH, - ACTIONS(7891), 1, + STATE(5052), 1, + sym_comment, + ACTIONS(1554), 3, anon_sym_DASH, - ACTIONS(7893), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(5026), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194223] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5053), 1, sym_comment, - STATE(5027), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, - sym__flag, - STATE(670), 2, - sym__blosure, - sym_val_variable, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [193942] = 12, + ACTIONS(1653), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194246] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7887), 1, - anon_sym_DOLLAR, - ACTIONS(7889), 1, + ACTIONS(7859), 1, anon_sym_DASH_DASH, - ACTIONS(7891), 1, + ACTIONS(7861), 1, anon_sym_DASH, - ACTIONS(7893), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_LBRACE, + STATE(1952), 1, sym_block, - STATE(1609), 1, + STATE(1960), 1, sym_val_closure, - STATE(5027), 1, + STATE(5054), 1, sym_comment, - STATE(5422), 1, + STATE(5469), 1, aux_sym_ctrl_do_repeat1, - STATE(5943), 1, + STATE(5902), 1, sym__flag, - STATE(671), 2, + STATE(710), 2, sym__blosure, sym_val_variable, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [193981] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1551), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token3, - STATE(5028), 1, - sym_comment, - STATE(6990), 1, - sym__immediate_decimal, - ACTIONS(1549), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(6948), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194020] = 13, + [194285] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1549), 1, + ACTIONS(1478), 1, anon_sym_RBRACE, - ACTIONS(1551), 1, + ACTIONS(1492), 1, sym__entry_separator, - ACTIONS(1553), 1, + ACTIONS(1494), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(8019), 1, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8115), 1, + ACTIONS(8059), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8117), 1, + ACTIONS(8061), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8119), 1, + ACTIONS(8063), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8121), 1, + ACTIONS(8065), 1, aux_sym__immediate_decimal_token5, - STATE(5029), 1, + STATE(5055), 1, sym_comment, - STATE(6242), 1, + STATE(6286), 1, sym__immediate_decimal, - STATE(2898), 2, + STATE(2962), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194061] = 12, + [194326] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1515), 1, + ACTIONS(1506), 1, sym__entry_separator, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(7851), 1, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8123), 1, + ACTIONS(8067), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8125), 1, + ACTIONS(8069), 1, aux_sym__immediate_decimal_token3, - STATE(2900), 1, + STATE(2961), 1, sym__immediate_decimal, - STATE(5030), 1, + STATE(5056), 1, sym_comment, - ACTIONS(1505), 2, + ACTIONS(1496), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2875), 2, + STATE(2960), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194100] = 3, + [194365] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5031), 1, + STATE(5057), 1, sym_comment, - ACTIONS(7983), 12, + ACTIONS(7921), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377199,12 +382580,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, - [194121] = 3, + [194386] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5032), 1, + STATE(5058), 1, sym_comment, - ACTIONS(7837), 12, + ACTIONS(7889), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377217,40 +382598,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, - [194142] = 13, + [194407] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, + ACTIONS(1548), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + sym__entry_separator, + ACTIONS(1552), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(5379), 1, + ACTIONS(8049), 1, + anon_sym_DOLLAR, + ACTIONS(8059), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8061), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5381), 1, + ACTIONS(8063), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8065), 1, + aux_sym__immediate_decimal_token5, + STATE(5059), 1, + sym_comment, + STATE(6546), 1, + sym__immediate_decimal, + STATE(2949), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194448] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + anon_sym_LPAREN2, + ACTIONS(5343), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5345), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, + ACTIONS(5588), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8127), 1, + ACTIONS(8071), 1, anon_sym_RBRACK, - ACTIONS(8129), 1, + ACTIONS(8073), 1, anon_sym_DOLLAR, - ACTIONS(8131), 1, + ACTIONS(8075), 1, anon_sym_DOLLAR2, - ACTIONS(8133), 1, + ACTIONS(8077), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8135), 1, + ACTIONS(8079), 1, aux_sym__immediate_decimal_token5, - STATE(2753), 1, + STATE(2819), 1, sym__immediate_decimal, - STATE(5033), 1, + STATE(5060), 1, sym_comment, - STATE(2829), 2, + STATE(2875), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194183] = 3, + [194489] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5034), 1, + STATE(5061), 1, sym_comment, - ACTIONS(7917), 12, + ACTIONS(7911), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377263,12 +382672,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, - [194204] = 3, + [194510] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(5062), 1, sym_comment, - ACTIONS(6668), 12, + ACTIONS(7849), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377280,42 +382690,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, - [194225] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_LPAREN2, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8129), 1, - anon_sym_DOLLAR, - ACTIONS(8131), 1, - anon_sym_DOLLAR2, - ACTIONS(8133), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8135), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8137), 1, - anon_sym_RBRACK, - STATE(2753), 1, - sym__immediate_decimal, - STATE(5036), 1, - sym_comment, - STATE(2829), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194266] = 3, + [194531] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5037), 1, + STATE(5063), 1, sym_comment, - ACTIONS(7933), 12, - ts_builtin_sym_end, + ACTIONS(6636), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377327,14 +382707,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, - [194287] = 4, + anon_sym_RPAREN, + [194552] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8141), 1, + ACTIONS(8083), 1, anon_sym_DASH, - STATE(5038), 1, + STATE(5064), 1, sym_comment, - ACTIONS(8139), 11, + ACTIONS(8081), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377346,14 +382727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194310] = 4, + [194575] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7487), 1, + ACTIONS(7361), 1, anon_sym_DASH, - STATE(5039), 1, + STATE(5065), 1, sym_comment, - ACTIONS(7485), 11, + ACTIONS(7359), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377365,40 +382746,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194333] = 13, - ACTIONS(3), 1, + [194598] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_LPAREN2, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8129), 1, + ACTIONS(7857), 1, anon_sym_DOLLAR, - ACTIONS(8131), 1, - anon_sym_DOLLAR2, - ACTIONS(8133), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8135), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8143), 1, - anon_sym_RBRACK, - STATE(2753), 1, - sym__immediate_decimal, - STATE(5040), 1, + ACTIONS(7859), 1, + anon_sym_DASH_DASH, + ACTIONS(7861), 1, + anon_sym_DASH, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5066), 1, sym_comment, - STATE(2829), 2, - sym__expr_parenthesized_immediate, + STATE(5067), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, + sym__flag, + STATE(708), 2, + sym__blosure, sym_val_variable, - [194374] = 3, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [194637] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(5041), 1, + ACTIONS(7857), 1, + anon_sym_DOLLAR, + ACTIONS(7859), 1, + anon_sym_DASH_DASH, + ACTIONS(7861), 1, + anon_sym_DASH, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5067), 1, + sym_comment, + STATE(5469), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, + sym__flag, + STATE(702), 2, + sym__blosure, + sym_val_variable, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [194676] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5068), 1, sym_comment, - ACTIONS(8145), 12, + ACTIONS(8085), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377411,14 +382818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194395] = 4, + [194697] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8149), 1, + ACTIONS(8089), 1, anon_sym_DASH, - STATE(5042), 1, + STATE(5069), 1, sym_comment, - ACTIONS(8147), 11, + ACTIONS(8087), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377430,14 +382837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194418] = 4, + [194720] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8149), 1, + ACTIONS(8089), 1, anon_sym_DASH, - STATE(5043), 1, + STATE(5070), 1, sym_comment, - ACTIONS(8147), 11, + ACTIONS(8087), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377449,166 +382856,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194441] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_LPAREN2, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8129), 1, - anon_sym_DOLLAR, - ACTIONS(8131), 1, - anon_sym_DOLLAR2, - ACTIONS(8133), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8135), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8151), 1, - anon_sym_RBRACK, - STATE(2753), 1, - sym__immediate_decimal, - STATE(5044), 1, - sym_comment, - STATE(2829), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194482] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1515), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token3, - STATE(5045), 1, - sym_comment, - STATE(6805), 1, - sym__immediate_decimal, - ACTIONS(1505), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(6790), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194521] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token3, - STATE(5046), 1, - sym_comment, - STATE(6785), 1, - sym__immediate_decimal, - ACTIONS(1617), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(6779), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194560] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token3, - STATE(5047), 1, - sym_comment, - STATE(6845), 1, - sym__immediate_decimal, - ACTIONS(1621), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(6824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194599] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1563), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7909), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token3, - STATE(5048), 1, - sym_comment, - STATE(6893), 1, - sym__immediate_decimal, - ACTIONS(1561), 2, - anon_sym_RBRACE, - anon_sym__, - STATE(6855), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194638] = 3, + [194743] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5049), 1, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(6834), 1, + aux_sym_unquoted_token2, + ACTIONS(8091), 1, + sym_filesize_unit, + ACTIONS(8093), 1, + sym_duration_unit, + STATE(5071), 1, sym_comment, - ACTIONS(8153), 12, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [194659] = 3, + anon_sym_DASH_DASH, + anon_sym_as, + [194776] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5050), 1, + STATE(5072), 1, sym_comment, - ACTIONS(8155), 12, + ACTIONS(8095), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377621,32 +382898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194680] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_DASH, - STATE(5051), 1, - sym_comment, - ACTIONS(2067), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194703] = 3, + [194797] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5052), 1, + STATE(5073), 1, sym_comment, - ACTIONS(7875), 12, - ts_builtin_sym_end, + ACTIONS(8097), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377658,12 +382915,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, - [194724] = 3, + anon_sym_RPAREN, + [194818] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5053), 1, + STATE(5074), 1, sym_comment, - ACTIONS(8157), 12, + ACTIONS(8099), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377676,12 +382934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194745] = 3, + [194839] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(5075), 1, sym_comment, - ACTIONS(8159), 12, + ACTIONS(8101), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377694,18 +382952,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194766] = 6, + [194860] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + anon_sym_LPAREN2, + ACTIONS(5343), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8073), 1, + anon_sym_DOLLAR, + ACTIONS(8075), 1, + anon_sym_DOLLAR2, + ACTIONS(8077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8079), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8103), 1, + anon_sym_RBRACK, + STATE(2819), 1, + sym__immediate_decimal, + STATE(5076), 1, + sym_comment, + STATE(2875), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194901] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - STATE(683), 1, + STATE(716), 1, aux_sym__pipe_separator, - STATE(5055), 1, + STATE(5077), 1, sym_comment, - STATE(5112), 1, + STATE(5192), 1, aux_sym_shebang_repeat1, - ACTIONS(2936), 9, + ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -377715,12 +383001,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, - [194793] = 3, + [194928] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5056), 1, + STATE(5078), 1, sym_comment, - ACTIONS(8161), 12, + ACTIONS(8105), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377733,119 +383019,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194814] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8163), 1, - anon_sym_DOT, - ACTIONS(8165), 1, - aux_sym__immediate_decimal_token2, - STATE(5057), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194841] = 12, + [194949] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1495), 1, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8167), 1, + ACTIONS(8107), 1, anon_sym_DOLLAR, - ACTIONS(8169), 1, + ACTIONS(8109), 1, anon_sym_DOT, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5058), 1, + STATE(5079), 1, sym_comment, - STATE(5950), 1, + STATE(5903), 1, sym__immediate_decimal, - ACTIONS(8171), 2, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6599), 2, + STATE(6456), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194880] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2449), 1, - anon_sym_DASH, - STATE(5059), 1, - sym_comment, - ACTIONS(2451), 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, - [194903] = 4, + [194988] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2035), 1, - anon_sym_DASH, - STATE(5060), 1, + STATE(5080), 1, sym_comment, - ACTIONS(2041), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7835), 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, - [194926] = 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, + [195009] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - STATE(5061), 1, + STATE(5081), 1, sym_comment, - ACTIONS(2049), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7899), 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, - [194949] = 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, + [195030] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2051), 1, + ACTIONS(2019), 1, anon_sym_DASH, - STATE(5062), 1, + STATE(5082), 1, sym_comment, - ACTIONS(2057), 11, + ACTIONS(2025), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377857,33 +383101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194972] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8177), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8179), 1, - aux_sym__immediate_decimal_token2, - STATE(5063), 1, - sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194999] = 3, + [195053] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(5083), 1, sym_comment, - ACTIONS(7913), 12, + ACTIONS(7939), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377896,52 +383119,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, - [195020] = 4, - ACTIONS(247), 1, + [195074] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, - anon_sym_DASH, - STATE(5065), 1, - sym_comment, - ACTIONS(2467), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5339), 1, + anon_sym_LPAREN2, + ACTIONS(5343), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8073), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195043] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH, - STATE(5066), 1, - sym_comment, - ACTIONS(2471), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_DOLLAR2, + ACTIONS(8077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8079), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8117), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195066] = 4, + STATE(2819), 1, + sym__immediate_decimal, + STATE(5084), 1, + sym_comment, + STATE(2875), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195115] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(8121), 1, anon_sym_DASH, - STATE(5067), 1, + STATE(5085), 1, sym_comment, - ACTIONS(2475), 11, + ACTIONS(8119), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377953,113 +383166,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195089] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5068), 1, - sym_comment, - ACTIONS(7899), 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, - [195110] = 12, + [195138] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(1604), 1, sym__entry_separator, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(7851), 1, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8123), 1, + ACTIONS(8067), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8125), 1, + ACTIONS(8069), 1, aux_sym__immediate_decimal_token3, - STATE(2863), 1, + STATE(2942), 1, sym__immediate_decimal, - STATE(5069), 1, + STATE(5086), 1, sym_comment, - ACTIONS(1617), 2, + ACTIONS(1602), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2918), 2, + STATE(2940), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195149] = 12, + [195177] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1588), 1, sym__entry_separator, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(7851), 1, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8123), 1, + ACTIONS(8067), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8125), 1, + ACTIONS(8069), 1, aux_sym__immediate_decimal_token3, - STATE(2884), 1, + STATE(2945), 1, sym__immediate_decimal, - STATE(5070), 1, + STATE(5087), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1586), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2876), 2, + STATE(2944), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195188] = 12, + [195216] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1563), 1, + ACTIONS(1584), 1, sym__entry_separator, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(7851), 1, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8123), 1, + ACTIONS(8067), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8125), 1, + ACTIONS(8069), 1, aux_sym__immediate_decimal_token3, - STATE(2890), 1, + STATE(2948), 1, sym__immediate_decimal, - STATE(5071), 1, + STATE(5088), 1, sym_comment, - ACTIONS(1561), 2, + ACTIONS(1576), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2887), 2, + STATE(2947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195227] = 4, + [195255] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2477), 1, + STATE(5089), 1, + sym_comment, + ACTIONS(7883), 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, + [195276] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2473), 1, anon_sym_DASH, - STATE(5072), 1, + STATE(5090), 1, sym_comment, - ACTIONS(2479), 11, + ACTIONS(2475), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378071,14 +383284,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195250] = 4, + [195299] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2481), 1, + STATE(5091), 1, + sym_comment, + ACTIONS(8123), 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, + [195320] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1999), 1, anon_sym_DASH, - STATE(5073), 1, + STATE(5092), 1, sym_comment, - ACTIONS(2483), 11, + ACTIONS(2005), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378090,14 +383321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195273] = 4, + [195343] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2485), 1, + ACTIONS(2007), 1, anon_sym_DASH, - STATE(5074), 1, + STATE(5093), 1, sym_comment, - ACTIONS(2487), 11, + ACTIONS(2013), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378109,14 +383340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195296] = 4, + [195366] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2489), 1, + ACTIONS(8127), 1, anon_sym_DASH, - STATE(5075), 1, + STATE(5094), 1, sym_comment, - ACTIONS(2491), 11, + ACTIONS(8125), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378128,14 +383359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195319] = 4, + [195389] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2493), 1, + ACTIONS(8131), 1, anon_sym_DASH, - STATE(5076), 1, + STATE(5095), 1, sym_comment, - ACTIONS(2495), 11, + ACTIONS(8129), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378147,14 +383378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195342] = 4, + [195412] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2497), 1, + ACTIONS(2477), 1, anon_sym_DASH, - STATE(5077), 1, + STATE(5096), 1, sym_comment, - ACTIONS(2499), 11, + ACTIONS(2479), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378166,14 +383397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195365] = 4, + [195435] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(2481), 1, anon_sym_DASH, - STATE(5078), 1, + STATE(5097), 1, sym_comment, - ACTIONS(2503), 11, + ACTIONS(2483), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378185,14 +383416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195388] = 4, + [195458] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8183), 1, + ACTIONS(2485), 1, anon_sym_DASH, - STATE(5079), 1, + STATE(5098), 1, sym_comment, - ACTIONS(8181), 11, + ACTIONS(2487), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378204,14 +383435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195411] = 4, + [195481] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8187), 1, + ACTIONS(8135), 1, anon_sym_DASH, - STATE(5080), 1, + STATE(5099), 1, sym_comment, - ACTIONS(8185), 11, + ACTIONS(8133), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378223,32 +383454,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195434] = 3, + [195504] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5081), 1, + ACTIONS(8139), 1, + anon_sym_DASH, + STATE(5100), 1, sym_comment, - ACTIONS(7873), 12, - ts_builtin_sym_end, + ACTIONS(8137), 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, - [195455] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195527] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8191), 1, + ACTIONS(8143), 1, anon_sym_DASH, - STATE(5082), 1, + STATE(5101), 1, sym_comment, - ACTIONS(8189), 11, + ACTIONS(8141), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378260,14 +383492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195478] = 4, + [195550] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(2489), 1, anon_sym_DASH, - STATE(5083), 1, + STATE(5102), 1, sym_comment, - ACTIONS(5112), 11, + ACTIONS(2491), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378279,32 +383511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195501] = 3, + [195573] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5084), 1, + ACTIONS(2493), 1, + anon_sym_DASH, + STATE(5103), 1, sym_comment, - ACTIONS(7877), 12, - ts_builtin_sym_end, + ACTIONS(2495), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [195522] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195596] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(2497), 1, anon_sym_DASH, - STATE(5085), 1, + STATE(5104), 1, sym_comment, - ACTIONS(5118), 11, + ACTIONS(2499), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378316,14 +383549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195545] = 4, + [195619] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8195), 1, + ACTIONS(2501), 1, anon_sym_DASH, - STATE(5086), 1, + STATE(5105), 1, sym_comment, - ACTIONS(8193), 11, + ACTIONS(2503), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378335,14 +383568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195568] = 4, + [195642] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8199), 1, + ACTIONS(2505), 1, anon_sym_DASH, - STATE(5087), 1, + STATE(5106), 1, sym_comment, - ACTIONS(8197), 11, + ACTIONS(2507), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378354,14 +383587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195591] = 4, + [195665] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8203), 1, + ACTIONS(2509), 1, anon_sym_DASH, - STATE(5088), 1, + STATE(5107), 1, sym_comment, - ACTIONS(8201), 11, + ACTIONS(2511), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378373,14 +383606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195614] = 4, + [195688] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8207), 1, + ACTIONS(2513), 1, anon_sym_DASH, - STATE(5089), 1, + STATE(5108), 1, sym_comment, - ACTIONS(8205), 11, + ACTIONS(2515), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378392,35 +383625,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195637] = 6, + [195711] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8211), 1, - sym__newline, - ACTIONS(8214), 1, + ACTIONS(8147), 1, anon_sym_DASH, - STATE(5090), 1, + STATE(5109), 1, sym_comment, - ACTIONS(1349), 2, + ACTIONS(8145), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(8209), 8, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195664] = 4, + [195734] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8218), 1, + ACTIONS(8149), 1, + anon_sym_DOT, + ACTIONS(8151), 1, + aux_sym__immediate_decimal_token2, + STATE(5110), 1, + sym_comment, + ACTIONS(1518), 3, anon_sym_DASH, - STATE(5091), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195761] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8153), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8155), 1, + aux_sym__immediate_decimal_token2, + STATE(5111), 1, + sym_comment, + ACTIONS(1540), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195788] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5101), 1, + anon_sym_DASH, + STATE(5112), 1, sym_comment, - ACTIONS(8216), 11, + ACTIONS(5099), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378432,14 +383705,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195687] = 4, + [195811] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5113), 1, + sym_comment, + ACTIONS(7851), 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, + [195832] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(5105), 1, anon_sym_DASH, - STATE(5092), 1, + STATE(5114), 1, sym_comment, - ACTIONS(5077), 11, + ACTIONS(5103), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378451,33 +383742,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195710] = 6, + [195855] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5093), 1, + STATE(5115), 1, sym_comment, - ACTIONS(6708), 2, + ACTIONS(6690), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6714), 2, + ACTIONS(6696), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6710), 4, + ACTIONS(6692), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6712), 4, + ACTIONS(6694), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [195737] = 3, + [195882] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5094), 1, + STATE(5116), 1, sym_comment, - ACTIONS(7855), 12, + ACTIONS(7941), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378490,15 +383781,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, - [195758] = 4, + [195903] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5095), 1, + STATE(5117), 1, sym_comment, - ACTIONS(8220), 2, + ACTIONS(8157), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(8222), 10, + ACTIONS(8159), 10, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -378509,12 +383800,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [195781] = 3, + [195926] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5096), 1, + STATE(5118), 1, + sym_comment, + ACTIONS(7342), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7344), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [195949] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5134), 1, + anon_sym_DASH, + STATE(5119), 1, + sym_comment, + ACTIONS(5132), 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, + [195972] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5120), 1, sym_comment, - ACTIONS(7949), 12, + ACTIONS(7917), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378527,265 +383856,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195802] = 6, + [195993] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5097), 1, + STATE(5121), 1, sym_comment, - ACTIONS(6682), 2, + ACTIONS(7202), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6688), 2, + ACTIONS(7204), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6684), 4, + [196016] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5122), 1, + sym_comment, + ACTIONS(8161), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(8163), 10, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6686), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [195829] = 6, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [196039] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5123), 1, + sym_comment, + ACTIONS(7590), 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, + [196060] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2553), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + anon_sym_LPAREN2, + ACTIONS(5322), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5324), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8075), 1, + anon_sym_DOLLAR2, + ACTIONS(8103), 1, + anon_sym_RBRACK, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token1, + STATE(2652), 1, + sym__immediate_decimal, + STATE(5124), 1, + sym_comment, + STATE(2736), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196101] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + anon_sym_LPAREN2, + ACTIONS(5343), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8073), 1, + anon_sym_DOLLAR, + ACTIONS(8075), 1, + anon_sym_DOLLAR2, + ACTIONS(8077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8079), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8167), 1, + anon_sym_RBRACK, + STATE(2819), 1, + sym__immediate_decimal, + STATE(5125), 1, + sym_comment, + STATE(2875), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196142] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5126), 1, + sym_comment, + ACTIONS(7943), 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, + [196163] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5127), 1, + sym_comment, + ACTIONS(7945), 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, + [196184] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8224), 1, + ACTIONS(8169), 1, anon_sym_DOT, - ACTIONS(8226), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token2, - STATE(5098), 1, + STATE(5128), 1, sym_comment, - ACTIONS(1499), 4, + ACTIONS(1520), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 6, + ACTIONS(1518), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [195856] = 4, + [196211] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5099), 1, + ACTIONS(7443), 1, + anon_sym_DASH, + STATE(5129), 1, sym_comment, - ACTIONS(7352), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7354), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [195879] = 6, + ACTIONS(7441), 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, + [196234] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8228), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8230), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token2, - STATE(5100), 1, + STATE(5130), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1542), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 6, + ACTIONS(1540), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [195906] = 10, + [196261] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8179), 1, + anon_sym_DASH, + STATE(5131), 1, + sym_comment, + ACTIONS(8177), 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, + [196284] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8183), 1, + anon_sym_DASH, + STATE(5132), 1, + sym_comment, + ACTIONS(8181), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196307] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8187), 1, + anon_sym_DASH, + STATE(5133), 1, + sym_comment, + ACTIONS(8185), 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, + [196330] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5134), 1, + sym_comment, + ACTIONS(6676), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6682), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6678), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [196357] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5135), 1, + sym_comment, + ACTIONS(8189), 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, + [196378] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - STATE(3367), 1, + STATE(3427), 1, sym__immediate_decimal, - STATE(5101), 1, + STATE(5136), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3366), 2, + STATE(3402), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1515), 3, + ACTIONS(1506), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [195941] = 11, + [196413] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6080), 1, + ACTIONS(6070), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6110), 1, + ACTIONS(6104), 1, anon_sym_DOT, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5102), 1, + STATE(5137), 1, sym_comment, - STATE(6088), 1, + STATE(6058), 1, sym__immediate_decimal, - ACTIONS(1493), 2, + ACTIONS(1492), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8171), 2, + anon_sym_LBRACE, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6091), 2, + STATE(6061), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195978] = 10, + [196450] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - STATE(3355), 1, + STATE(3419), 1, sym__immediate_decimal, - STATE(5103), 1, + STATE(5138), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3354), 2, + STATE(3381), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1619), 3, + ACTIONS(1604), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196013] = 10, + [196485] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - STATE(3384), 1, + STATE(3423), 1, sym__immediate_decimal, - STATE(5104), 1, + STATE(5139), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3356), 2, + STATE(3421), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1623), 3, + ACTIONS(1588), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196048] = 10, + [196520] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - STATE(3359), 1, + STATE(3426), 1, sym__immediate_decimal, - STATE(5105), 1, + STATE(5140), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3358), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1563), 3, + ACTIONS(1584), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196083] = 4, + [196555] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5106), 1, + STATE(5141), 1, sym_comment, - ACTIONS(8232), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8234), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [196106] = 11, + ACTIONS(8191), 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, + [196576] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6080), 1, + ACTIONS(6070), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6084), 1, + ACTIONS(6074), 1, anon_sym_DOT, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5107), 1, + STATE(5142), 1, sym_comment, - STATE(6090), 1, + STATE(6060), 1, sym__immediate_decimal, - ACTIONS(1515), 2, + ACTIONS(1506), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8171), 2, + anon_sym_LBRACE, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6089), 2, + STATE(6059), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196143] = 3, + [196613] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5108), 1, + STATE(5143), 1, sym_comment, - ACTIONS(7759), 12, + ACTIONS(6594), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378798,13 +384349,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, - [196164] = 3, + [196634] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5109), 1, + STATE(5144), 1, sym_comment, - ACTIONS(7955), 12, - ts_builtin_sym_end, + ACTIONS(8193), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378816,68 +384366,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, - [196185] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2816), 1, - anon_sym_DOLLAR, - ACTIONS(5299), 1, - anon_sym_LPAREN2, - ACTIONS(5303), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5305), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5307), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8131), 1, - anon_sym_DOLLAR2, - ACTIONS(8143), 1, - anon_sym_RBRACK, - ACTIONS(8236), 1, - aux_sym__immediate_decimal_token1, - STATE(2612), 1, - sym__immediate_decimal, - STATE(5110), 1, - sym_comment, - STATE(2756), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196226] = 9, + anon_sym_RPAREN, + [196655] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(6844), 1, - aux_sym_unquoted_token2, - ACTIONS(8238), 1, - sym_filesize_unit, - ACTIONS(8240), 1, - sym_duration_unit, - STATE(5111), 1, + STATE(5145), 1, sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 5, - ts_builtin_sym_end, + ACTIONS(8195), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196259] = 5, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [196676] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(5112), 1, + STATE(5146), 1, sym_comment, - ACTIONS(2961), 9, + ACTIONS(8197), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378887,690 +384402,575 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196283] = 11, + anon_sym_RPAREN, + [196697] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1551), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - ACTIONS(8246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, - aux_sym__immediate_decimal_token5, - STATE(5113), 1, + STATE(5147), 1, sym_comment, - STATE(7316), 1, - sym__immediate_decimal, - ACTIONS(8244), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3360), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196319] = 9, + ACTIONS(8199), 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, + [196718] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8252), 1, - anon_sym_DASH_DASH, - ACTIONS(8254), 1, - anon_sym_DASH, - ACTIONS(8256), 1, - anon_sym_as, - STATE(5114), 1, + STATE(5148), 1, sym_comment, - STATE(5126), 1, - aux_sym_ctrl_do_repeat1, - STATE(5598), 1, - sym__flag, - STATE(5452), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8250), 4, + ACTIONS(8201), 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, - anon_sym_RBRACE, - [196351] = 6, + [196739] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8260), 1, - anon_sym_DASH, - STATE(5115), 1, + STATE(5149), 1, sym_comment, - STATE(5116), 1, - aux_sym_parameter_repeat2, - ACTIONS(7058), 2, + ACTIONS(8203), 12, sym__newline, - anon_sym_COMMA, - ACTIONS(8258), 7, - sym_identifier, + 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, - [196377] = 5, + [196760] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8267), 1, - anon_sym_DASH, - ACTIONS(8264), 2, - sym__newline, - anon_sym_COMMA, - STATE(5116), 2, + STATE(5150), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8262), 7, - sym_identifier, + ACTIONS(6604), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196401] = 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, + [196781] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7176), 1, + ACTIONS(1560), 1, anon_sym_DASH, - STATE(5116), 1, - aux_sym_parameter_repeat2, - STATE(5117), 1, + STATE(5151), 1, sym_comment, - ACTIONS(7058), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7174), 7, + ACTIONS(1572), 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, - [196427] = 6, + [196804] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8271), 1, + ACTIONS(2458), 1, anon_sym_DASH, - STATE(5116), 1, - aux_sym_parameter_repeat2, - STATE(5118), 1, + STATE(5152), 1, sym_comment, - ACTIONS(7058), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8269), 7, + ACTIONS(2460), 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, - [196453] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8275), 1, - anon_sym_DASH_DASH, - ACTIONS(8277), 1, - anon_sym_DASH, - STATE(5119), 1, - sym_comment, - STATE(5240), 1, - aux_sym_ctrl_do_repeat1, - STATE(5319), 1, - sym_val_variable, - STATE(5943), 1, - sym__flag, - STATE(6137), 1, - sym__variable_name, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [196491] = 9, - ACTIONS(247), 1, + [196827] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3259), 1, - aux_sym_expr_unary_token1, - ACTIONS(8279), 1, - anon_sym_LPAREN, - ACTIONS(8281), 1, + ACTIONS(1548), 1, + anon_sym_RBRACK, + ACTIONS(1550), 1, + sym__entry_separator, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(8049), 1, anon_sym_DOLLAR, - ACTIONS(8283), 1, - anon_sym_DASH, - STATE(1644), 1, - sym__expr_unary_minus, - STATE(5120), 1, + ACTIONS(8051), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8053), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8055), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8057), 1, + aux_sym__immediate_decimal_token5, + STATE(5153), 1, sym_comment, - ACTIONS(3197), 2, - anon_sym_true, - anon_sym_false, - STATE(1649), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(6574), 1, + sym__immediate_decimal, + STATE(2949), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [196523] = 4, + [196868] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8285), 1, - anon_sym_LT, - STATE(5121), 1, + STATE(5154), 1, sym_comment, - ACTIONS(7572), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196545] = 4, + ACTIONS(8205), 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, + [196889] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8287), 1, - anon_sym_LT, - STATE(5122), 1, + ACTIONS(1991), 1, + anon_sym_DASH, + STATE(5155), 1, sym_comment, - ACTIONS(7572), 10, + ACTIONS(1997), 11, anon_sym_EQ, sym_identifier, - anon_sym_DASH_GT, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196567] = 9, - ACTIONS(91), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, anon_sym_DOLLAR, - ACTIONS(8289), 1, - anon_sym_DASH, - STATE(2398), 1, - sym__expr_unary_minus, - STATE(5123), 1, - sym_comment, - ACTIONS(3311), 2, - anon_sym_true, - anon_sym_false, - STATE(2347), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [196599] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196912] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8165), 1, - aux_sym__immediate_decimal_token2, - STATE(5124), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(1550), 1, + anon_sym_LBRACE, + ACTIONS(1552), 1, aux_sym_unquoted_token2, - ACTIONS(1499), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196623] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1549), 1, - anon_sym_RBRACE, - ACTIONS(1551), 1, - sym__entry_separator, - ACTIONS(7825), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(7851), 1, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + ACTIONS(8211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, + ACTIONS(8213), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8123), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8125), 1, - aux_sym__immediate_decimal_token3, - STATE(5125), 1, + STATE(5156), 1, sym_comment, - STATE(6990), 1, + STATE(7311), 1, sym__immediate_decimal, - STATE(2898), 2, + ACTIONS(8209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3401), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196661] = 9, + [196948] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8252), 1, + ACTIONS(8217), 1, anon_sym_DASH_DASH, - ACTIONS(8254), 1, + ACTIONS(8219), 1, anon_sym_DASH, - ACTIONS(8293), 1, + ACTIONS(8221), 1, anon_sym_as, - STATE(5126), 1, + STATE(5157), 1, sym_comment, - STATE(5129), 1, + STATE(5174), 1, aux_sym_ctrl_do_repeat1, - STATE(5598), 1, + STATE(5582), 1, sym__flag, - STATE(5452), 2, + STATE(5404), 2, sym_short_flag, sym_long_flag, - ACTIONS(8291), 4, + ACTIONS(8215), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [196693] = 9, + [196980] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8252), 1, + ACTIONS(8217), 1, anon_sym_DASH_DASH, - ACTIONS(8254), 1, + ACTIONS(8219), 1, anon_sym_DASH, - ACTIONS(8297), 1, + ACTIONS(8225), 1, anon_sym_as, - STATE(5127), 1, + STATE(5158), 1, sym_comment, - STATE(5140), 1, + STATE(5180), 1, aux_sym_ctrl_do_repeat1, - STATE(5598), 1, + STATE(5582), 1, sym__flag, - STATE(5452), 2, + STATE(5404), 2, sym_short_flag, sym_long_flag, - ACTIONS(8295), 4, + ACTIONS(8223), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [196725] = 11, + [197012] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(6082), 1, + ACTIONS(7190), 1, + anon_sym_DASH, + STATE(5159), 1, + sym_comment, + STATE(5187), 1, + aux_sym_parameter_repeat2, + ACTIONS(2551), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7188), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197038] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8242), 1, + ACTIONS(6104), 1, + anon_sym_DOT, + ACTIONS(8107), 1, anon_sym_DOLLAR, - ACTIONS(8246), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5128), 1, + STATE(5160), 1, sym_comment, - STATE(7400), 1, + STATE(6200), 1, sym__immediate_decimal, - ACTIONS(8244), 2, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3369), 2, + STATE(6456), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196761] = 7, + [197074] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8229), 1, + anon_sym_DASH, + STATE(5161), 1, + sym_comment, + STATE(5187), 1, + aux_sym_parameter_repeat2, + ACTIONS(2551), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8227), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197100] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8301), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(8233), 1, anon_sym_DASH_DASH, - ACTIONS(8304), 1, + ACTIONS(8235), 1, anon_sym_DASH, - STATE(5598), 1, - sym__flag, - STATE(5129), 2, + STATE(5162), 1, sym_comment, + STATE(5266), 1, aux_sym_ctrl_do_repeat1, - STATE(5452), 2, + STATE(5366), 1, + sym_val_variable, + STATE(5902), 1, + sym__flag, + STATE(6132), 1, + sym__variable_name, + STATE(6046), 2, sym_short_flag, sym_long_flag, - ACTIONS(8299), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [196789] = 5, + [197138] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8307), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token2, - STATE(5130), 1, + STATE(5163), 1, sym_comment, - ACTIONS(1565), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 7, + ACTIONS(1520), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1518), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [196813] = 5, + aux_sym_unquoted_token2, + [197162] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8039), 1, - aux_sym__immediate_decimal_token2, - STATE(5131), 1, - sym_comment, - ACTIONS(1497), 4, - anon_sym_RBRACK, + ACTIONS(1548), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1550), 1, sym__entry_separator, - [196837] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8311), 1, - anon_sym_DASH, - STATE(5116), 1, - aux_sym_parameter_repeat2, - STATE(5132), 1, - sym_comment, - ACTIONS(7058), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8309), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7833), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8049), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196863] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_DOT, - STATE(5133), 1, + ACTIONS(8067), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8069), 1, + aux_sym__immediate_decimal_token3, + STATE(5164), 1, sym_comment, - STATE(5175), 1, - aux_sym_cell_path_repeat1, - STATE(5425), 1, - sym_path, - STATE(5575), 1, - sym_cell_path, - ACTIONS(1013), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1011), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [196893] = 6, + STATE(7226), 1, + sym__immediate_decimal, + STATE(2949), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197200] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8315), 1, - anon_sym_DOT, - ACTIONS(8317), 1, + ACTIONS(8237), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8239), 1, aux_sym__immediate_decimal_token2, - STATE(5134), 1, + STATE(5165), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1542), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1540), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [196919] = 11, + aux_sym_unquoted_token2, + [197226] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1515), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, + ACTIONS(1506), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6084), 1, + ACTIONS(6074), 1, anon_sym_DOT, - ACTIONS(8167), 1, + ACTIONS(8107), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5135), 1, + STATE(5166), 1, sym_comment, - STATE(6597), 1, + STATE(6455), 1, sym__immediate_decimal, - ACTIONS(8171), 2, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6588), 2, + STATE(6452), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196955] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8319), 1, - aux_sym__immediate_decimal_token2, - STATE(5136), 1, - sym_comment, - ACTIONS(1565), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1567), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [196979] = 9, + [197262] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3441), 1, - aux_sym_expr_unary_token1, - ACTIONS(6596), 1, - anon_sym_LPAREN, - ACTIONS(6732), 1, - anon_sym_DOLLAR, - ACTIONS(8323), 1, + ACTIONS(8243), 1, anon_sym_DASH, - STATE(4560), 1, - sym__expr_unary_minus, - STATE(5137), 1, + STATE(5167), 1, sym_comment, - ACTIONS(8321), 2, - anon_sym_true, - anon_sym_false, - STATE(4566), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [197011] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1479), 1, - anon_sym_RBRACE, - ACTIONS(1493), 1, - sym__entry_separator, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(7851), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8019), 1, + STATE(5187), 1, + aux_sym_parameter_repeat2, + ACTIONS(2551), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8241), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8123), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8125), 1, - aux_sym__immediate_decimal_token3, - STATE(5138), 1, - sym_comment, - STATE(7279), 1, - sym__immediate_decimal, - STATE(2901), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197049] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197288] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_DOT, - ACTIONS(8327), 1, + ACTIONS(8245), 1, aux_sym__immediate_decimal_token2, - STATE(5139), 1, + STATE(5168), 1, sym_comment, - ACTIONS(1499), 3, + ACTIONS(1556), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 6, + ACTIONS(1554), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [197075] = 9, + [197312] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8252), 1, + ACTIONS(8249), 1, anon_sym_DASH_DASH, - ACTIONS(8254), 1, + ACTIONS(8252), 1, anon_sym_DASH, - ACTIONS(8331), 1, - anon_sym_as, - STATE(5129), 1, - aux_sym_ctrl_do_repeat1, - STATE(5140), 1, - sym_comment, - STATE(5598), 1, + STATE(5582), 1, sym__flag, - STATE(5452), 2, + STATE(5169), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5404), 2, sym_short_flag, sym_long_flag, - ACTIONS(8329), 4, + ACTIONS(8247), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [197107] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8333), 1, - anon_sym_DOT, - ACTIONS(8335), 1, - aux_sym__immediate_decimal_token2, - STATE(5141), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1499), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197133] = 9, + anon_sym_as, + [197340] = 9, + ACTIONS(91), 1, + aux_sym_expr_unary_token1, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3393), 1, - aux_sym_expr_unary_token1, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(6468), 1, + ACTIONS(5784), 1, anon_sym_LPAREN, - ACTIONS(8339), 1, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + ACTIONS(8255), 1, anon_sym_DASH, - STATE(4266), 1, + STATE(2432), 1, sym__expr_unary_minus, - STATE(5142), 1, + STATE(5170), 1, sym_comment, - ACTIONS(8337), 2, + ACTIONS(3379), 2, anon_sym_true, anon_sym_false, - STATE(4355), 4, + STATE(2386), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [197165] = 6, - ACTIONS(3), 1, + [197372] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, + ACTIONS(8151), 1, aux_sym__immediate_decimal_token2, - STATE(5143), 1, + STATE(5171), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_RBRACE, + ACTIONS(1518), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1519), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1520), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [197191] = 6, + [197396] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7135), 1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(8233), 1, + anon_sym_DASH_DASH, + ACTIONS(8235), 1, anon_sym_DASH, - STATE(5116), 1, - aux_sym_parameter_repeat2, - STATE(5144), 1, + STATE(5172), 1, + sym_comment, + STATE(5266), 1, + aux_sym_ctrl_do_repeat1, + STATE(5366), 1, + sym_val_variable, + STATE(5902), 1, + sym__flag, + STATE(6132), 1, + sym__variable_name, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [197434] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7138), 1, + anon_sym_DASH, + STATE(5173), 1, sym_comment, - ACTIONS(7058), 2, + STATE(5187), 1, + aux_sym_parameter_repeat2, + ACTIONS(2551), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7133), 7, + ACTIONS(7136), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -379578,19 +384978,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197217] = 6, + [197460] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7143), 1, + ACTIONS(8217), 1, + anon_sym_DASH_DASH, + ACTIONS(8219), 1, anon_sym_DASH, - STATE(5116), 1, - aux_sym_parameter_repeat2, - STATE(5145), 1, + ACTIONS(8259), 1, + anon_sym_as, + STATE(5169), 1, + aux_sym_ctrl_do_repeat1, + STATE(5174), 1, + sym_comment, + STATE(5582), 1, + sym__flag, + STATE(5404), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8257), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197492] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1492), 1, + anon_sym_EQ_GT, + ACTIONS(3545), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6104), 1, + anon_sym_DOT, + STATE(5175), 1, + sym_comment, + STATE(6587), 1, + sym__immediate_decimal, + ACTIONS(6076), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5883), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197528] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7150), 1, + anon_sym_DASH, + STATE(5176), 1, sym_comment, - ACTIONS(7058), 2, + STATE(5187), 1, + aux_sym_parameter_repeat2, + ACTIONS(2551), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7141), 7, + ACTIONS(7148), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -379598,3733 +385046,3687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197243] = 9, + [197554] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1478), 1, + anon_sym_RBRACE, + ACTIONS(1492), 1, + sym__entry_separator, + ACTIONS(7823), 1, + anon_sym_LPAREN2, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7833), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8049), 1, + anon_sym_DOLLAR, + ACTIONS(8067), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8069), 1, + aux_sym__immediate_decimal_token3, + STATE(5177), 1, + sym_comment, + STATE(7255), 1, + sym__immediate_decimal, + STATE(2962), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197592] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8261), 1, + aux_sym__immediate_decimal_token2, + STATE(5178), 1, + sym_comment, + ACTIONS(1554), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197616] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(487), 1, + ACTIONS(3409), 1, aux_sym_expr_unary_token1, - ACTIONS(8345), 1, - anon_sym_LPAREN, - ACTIONS(8347), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8349), 1, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, anon_sym_DASH, - STATE(2236), 1, + STATE(4358), 1, sym__expr_unary_minus, - STATE(5146), 1, + STATE(5179), 1, sym_comment, - ACTIONS(5091), 2, + ACTIONS(8263), 2, anon_sym_true, anon_sym_false, - STATE(2254), 4, + STATE(4385), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [197275] = 12, + [197648] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8275), 1, + ACTIONS(8217), 1, anon_sym_DASH_DASH, - ACTIONS(8277), 1, + ACTIONS(8219), 1, anon_sym_DASH, - STATE(5147), 1, - sym_comment, - STATE(5240), 1, + ACTIONS(8269), 1, + anon_sym_as, + STATE(5169), 1, aux_sym_ctrl_do_repeat1, - STATE(5319), 1, - sym_val_variable, - STATE(5943), 1, + STATE(5180), 1, + sym_comment, + STATE(5582), 1, sym__flag, - STATE(6137), 1, - sym__variable_name, - STATE(5900), 2, + STATE(5404), 2, sym_short_flag, sym_long_flag, - [197313] = 5, + ACTIONS(8267), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197680] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8271), 1, + anon_sym_LT, + STATE(5181), 1, + sym_comment, + ACTIONS(7673), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197702] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8226), 1, + ACTIONS(8273), 1, + anon_sym_DOT, + ACTIONS(8275), 1, aux_sym__immediate_decimal_token2, - STATE(5148), 1, + STATE(5182), 1, sym_comment, - ACTIONS(1499), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [197337] = 11, + [197728] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - anon_sym_EQ_GT, - ACTIONS(3483), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6110), 1, - anon_sym_DOT, - STATE(5149), 1, + ACTIONS(8277), 1, + anon_sym_LT, + STATE(5183), 1, sym_comment, - STATE(6644), 1, - sym__immediate_decimal, - ACTIONS(6086), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5880), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197373] = 6, + ACTIONS(7673), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197750] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8351), 1, + ACTIONS(8279), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8353), 1, + ACTIONS(8281), 1, aux_sym__immediate_decimal_token2, - STATE(5150), 1, + STATE(5184), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH_DASH, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [197399] = 5, + [197776] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8355), 1, + ACTIONS(8283), 1, + anon_sym_DOT, + ACTIONS(8285), 1, aux_sym__immediate_decimal_token2, - STATE(5151), 1, + STATE(5185), 1, sym_comment, - ACTIONS(1567), 4, - anon_sym_DOLLAR, + ACTIONS(1520), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 6, + ACTIONS(1518), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [197423] = 8, + [197802] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, + ACTIONS(8287), 1, anon_sym_DOT, - STATE(5152), 1, + ACTIONS(8289), 1, + aux_sym__immediate_decimal_token2, + STATE(5186), 1, sym_comment, - STATE(5175), 1, - aux_sym_cell_path_repeat1, - STATE(5425), 1, - sym_path, - STATE(5577), 1, - sym_cell_path, - ACTIONS(1688), 3, + ACTIONS(1518), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1520), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1686), 4, + [197828] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8296), 1, + anon_sym_DASH, + ACTIONS(8293), 2, + sym__newline, + anon_sym_COMMA, + STATE(5187), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8291), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [197453] = 8, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197852] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_DOT, - STATE(5153), 1, + ACTIONS(8298), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8300), 1, + aux_sym__immediate_decimal_token2, + STATE(5188), 1, sym_comment, - STATE(5175), 1, - aux_sym_cell_path_repeat1, - STATE(5425), 1, - sym_path, - STATE(5586), 1, - sym_cell_path, - ACTIONS(1629), 3, + ACTIONS(1540), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1542), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1625), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [197483] = 9, + [197878] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3275), 1, + aux_sym_expr_unary_token1, + ACTIONS(8302), 1, + anon_sym_LPAREN, + ACTIONS(8304), 1, + anon_sym_DOLLAR, + ACTIONS(8306), 1, + anon_sym_DASH, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(5189), 1, + sym_comment, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1717), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [197910] = 9, ACTIONS(209), 1, aux_sym_expr_unary_token1, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8283), 1, + ACTIONS(8306), 1, anon_sym_DASH, - ACTIONS(8357), 1, + ACTIONS(8308), 1, anon_sym_LPAREN, - ACTIONS(8359), 1, + ACTIONS(8310), 1, anon_sym_DOLLAR, - STATE(1644), 1, + STATE(1646), 1, sym__expr_unary_minus, - STATE(5154), 1, + STATE(5190), 1, sym_comment, - ACTIONS(3197), 2, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - STATE(1649), 4, + STATE(1717), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [197515] = 9, + [197942] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3299), 1, + ACTIONS(3315), 1, aux_sym_expr_unary_token1, - ACTIONS(8279), 1, + ACTIONS(8302), 1, + anon_sym_LPAREN, + ACTIONS(8306), 1, + anon_sym_DASH, + ACTIONS(8312), 1, + anon_sym_DOLLAR, + STATE(1646), 1, + sym__expr_unary_minus, + STATE(5191), 1, + sym_comment, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + STATE(1717), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [197974] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(5192), 1, + sym_comment, + ACTIONS(2972), 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, + [197998] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(491), 1, + aux_sym_expr_unary_token1, + ACTIONS(8314), 1, + anon_sym_LPAREN, + ACTIONS(8316), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + anon_sym_DASH, + STATE(2377), 1, + sym__expr_unary_minus, + STATE(5193), 1, + sym_comment, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(2211), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [198030] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3457), 1, + aux_sym_expr_unary_token1, + ACTIONS(6590), 1, anon_sym_LPAREN, - ACTIONS(8283), 1, - anon_sym_DASH, - ACTIONS(8361), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - STATE(1644), 1, + ACTIONS(8322), 1, + anon_sym_DASH, + STATE(4553), 1, sym__expr_unary_minus, - STATE(5155), 1, + STATE(5194), 1, sym_comment, - ACTIONS(3197), 2, + ACTIONS(8320), 2, anon_sym_true, anon_sym_false, - STATE(1649), 4, + STATE(4587), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [197547] = 10, + [198062] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(8207), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8213), 1, aux_sym__immediate_decimal_token5, - STATE(3486), 1, - sym__immediate_decimal, - STATE(5156), 1, + STATE(5195), 1, sym_comment, - ACTIONS(1493), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8363), 2, + STATE(7293), 1, + sym__immediate_decimal, + ACTIONS(8209), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3369), 2, + STATE(3393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197581] = 10, + [198098] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(3479), 1, - sym__immediate_decimal, - STATE(5157), 1, + ACTIONS(8326), 1, + anon_sym_DASH, + STATE(5187), 1, + aux_sym_parameter_repeat2, + STATE(5196), 1, sym_comment, - ACTIONS(1551), 2, + ACTIONS(2551), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8363), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3360), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197615] = 10, + anon_sym_COMMA, + ACTIONS(8324), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [198124] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(3367), 1, + STATE(3527), 1, sym__immediate_decimal, - STATE(5158), 1, + STATE(5197), 1, sym_comment, - ACTIONS(1515), 2, + ACTIONS(1492), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8363), 2, + anon_sym_LBRACE, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3366), 2, + STATE(3393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197649] = 10, + [198158] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(3355), 1, + STATE(3524), 1, sym__immediate_decimal, - STATE(5159), 1, + STATE(5198), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1550), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8363), 2, + anon_sym_LBRACE, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3354), 2, + STATE(3401), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197683] = 10, + [198192] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(3384), 1, + STATE(3427), 1, sym__immediate_decimal, - STATE(5160), 1, + STATE(5199), 1, sym_comment, - ACTIONS(1623), 2, + ACTIONS(1506), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8363), 2, + anon_sym_LBRACE, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3356), 2, + STATE(3402), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197717] = 10, + [198226] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(3359), 1, + STATE(3419), 1, sym__immediate_decimal, - STATE(5161), 1, + STATE(5200), 1, sym_comment, - ACTIONS(1563), 2, + ACTIONS(1604), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8363), 2, + anon_sym_LBRACE, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3358), 2, + STATE(3381), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197751] = 11, + [198260] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1493), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6110), 1, - anon_sym_DOT, - ACTIONS(8167), 1, - anon_sym_DOLLAR, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(5162), 1, - sym_comment, - STATE(6097), 1, - sym__immediate_decimal, - ACTIONS(8171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6599), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197787] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8365), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8367), 1, - aux_sym__immediate_decimal_token2, - STATE(5163), 1, - sym_comment, - ACTIONS(1517), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197813] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5164), 1, - sym_comment, - ACTIONS(1641), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1639), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [197834] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1493), 1, - aux_sym_ctrl_match_token1, ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - STATE(3486), 1, - sym__immediate_decimal, - STATE(5165), 1, - sym_comment, - ACTIONS(8363), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3369), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197867] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5357), 1, anon_sym_DOLLAR, - ACTIONS(5359), 1, - anon_sym_LPAREN2, - ACTIONS(5361), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5363), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5365), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8369), 1, - aux_sym__immediate_decimal_token1, - STATE(2850), 1, + STATE(3423), 1, sym__immediate_decimal, - STATE(5166), 1, - sym_comment, - STATE(2859), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197902] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7967), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8371), 1, - anon_sym_DOLLAR, - ACTIONS(8373), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8377), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8379), 1, - aux_sym_unquoted_token3, - STATE(5167), 1, + STATE(5201), 1, sym_comment, - STATE(5816), 1, - sym__immediate_decimal, - STATE(5874), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197937] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(8047), 1, + ACTIONS(1588), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8379), 1, - aux_sym_unquoted_token3, - ACTIONS(8381), 1, - anon_sym_DOLLAR, - ACTIONS(8383), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8385), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8387), 1, - aux_sym__immediate_decimal_token5, - STATE(5168), 1, - sym_comment, - STATE(7220), 1, - sym__immediate_decimal, - STATE(3344), 2, + STATE(3421), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197972] = 11, - ACTIONS(3), 1, + [198294] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_DOLLAR, - ACTIONS(6740), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6744), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6746), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6874), 1, - aux_sym_unquoted_token3, - STATE(4010), 1, - sym__immediate_decimal, - STATE(5169), 1, - sym_comment, - STATE(4248), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198007] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4263), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(6740), 1, - anon_sym_LPAREN2, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6778), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6874), 1, - aux_sym_unquoted_token3, - STATE(4424), 1, + STATE(3426), 1, sym__immediate_decimal, - STATE(5170), 1, + STATE(5202), 1, sym_comment, - STATE(4656), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198042] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2764), 1, - anon_sym_DOLLAR, - ACTIONS(3789), 1, - anon_sym_LPAREN2, - ACTIONS(3793), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(3795), 1, + ACTIONS(1584), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, - ACTIONS(4299), 1, - aux_sym_unquoted_token3, - ACTIONS(8389), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8391), 1, - aux_sym__immediate_decimal_token5, - STATE(1246), 1, - sym__immediate_decimal, - STATE(5171), 1, - sym_comment, - STATE(1415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198077] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_DOLLAR, - ACTIONS(3936), 1, - anon_sym_LPAREN2, - ACTIONS(3938), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4299), 1, - aux_sym_unquoted_token3, - ACTIONS(8393), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8395), 1, - aux_sym__immediate_decimal_token5, - STATE(1535), 1, - sym__immediate_decimal, - STATE(5172), 1, - sym_comment, - STATE(1778), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198112] = 4, + [198328] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5173), 1, + ACTIONS(7973), 1, + aux_sym__immediate_decimal_token2, + STATE(5203), 1, sym_comment, - ACTIONS(1565), 4, + ACTIONS(1518), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1567), 6, + ACTIONS(1520), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [198133] = 4, + [198352] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5174), 1, + ACTIONS(8330), 1, + aux_sym__immediate_decimal_token2, + STATE(5204), 1, sym_comment, - ACTIONS(1639), 4, + ACTIONS(1554), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1641), 6, + ACTIONS(1556), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [198154] = 7, - ACTIONS(3), 1, + [198376] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8313), 1, + ACTIONS(1005), 1, + anon_sym_DOT_DOT2, + ACTIONS(6092), 1, anon_sym_DOT, - STATE(5175), 1, - sym_comment, - STATE(5189), 1, + STATE(3132), 1, aux_sym_cell_path_repeat1, - STATE(5425), 1, + STATE(3242), 1, sym_path, - ACTIONS(1019), 3, + STATE(4199), 1, + sym_cell_path, + STATE(5205), 1, + sym_comment, + ACTIONS(1007), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1017), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [198181] = 10, - ACTIONS(247), 1, + [198405] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, + ACTIONS(4742), 1, + aux_sym_unquoted_token3, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(7839), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8332), 1, + anon_sym_DOLLAR, + ACTIONS(8334), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8336), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8338), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - STATE(3355), 1, - sym__immediate_decimal, - STATE(5176), 1, + STATE(5206), 1, sym_comment, - ACTIONS(8363), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3354), 2, + STATE(6444), 1, + sym__immediate_decimal, + STATE(3398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198214] = 10, + [198440] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1623), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - STATE(3384), 1, - sym__immediate_decimal, - STATE(5177), 1, + ACTIONS(8340), 1, + anon_sym_DASH_DASH, + ACTIONS(8342), 1, + anon_sym_DASH, + ACTIONS(8344), 1, + anon_sym_as, + STATE(5207), 1, sym_comment, - ACTIONS(8363), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3356), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198247] = 11, + STATE(5289), 1, + aux_sym_ctrl_do_repeat1, + STATE(5682), 1, + sym__flag, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8257), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [198471] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1481), 1, + ACTIONS(2170), 1, anon_sym_DOLLAR, - ACTIONS(1483), 1, + ACTIONS(6770), 1, anon_sym_LPAREN2, - ACTIONS(1487), 1, + ACTIONS(6774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6776), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1489), 1, + ACTIONS(6778), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1491), 1, + ACTIONS(6780), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1589), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8397), 1, - aux_sym__immediate_decimal_token1, - STATE(285), 1, + ACTIONS(6939), 1, + aux_sym_unquoted_token3, + STATE(4185), 1, sym__immediate_decimal, - STATE(5178), 1, + STATE(5208), 1, sym_comment, - STATE(391), 2, + STATE(4381), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198282] = 11, + [198506] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1539), 1, + ACTIONS(4247), 1, anon_sym_DOLLAR, - ACTIONS(1541), 1, + ACTIONS(6770), 1, anon_sym_LPAREN2, - ACTIONS(1543), 1, + ACTIONS(6814), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6816), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1545), 1, + ACTIONS(6818), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1547), 1, + ACTIONS(6820), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1589), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8399), 1, - aux_sym__immediate_decimal_token1, - STATE(418), 1, + ACTIONS(6939), 1, + aux_sym_unquoted_token3, + STATE(4537), 1, sym__immediate_decimal, - STATE(5179), 1, + STATE(5209), 1, sym_comment, - STATE(549), 2, + STATE(4883), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198317] = 10, + [198541] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1563), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - STATE(3359), 1, - sym__immediate_decimal, - STATE(5180), 1, + STATE(5210), 1, sym_comment, - ACTIONS(8363), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3358), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198350] = 4, + ACTIONS(7907), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198560] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5181), 1, + STATE(5211), 1, sym_comment, - ACTIONS(1497), 3, - anon_sym_DASH, + ACTIONS(7673), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198579] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4512), 1, anon_sym_DOT_DOT2, + ACTIONS(8346), 1, + sym_filesize_unit, + ACTIONS(8348), 1, + sym_duration_unit, + ACTIONS(8350), 1, aux_sym_unquoted_token2, - ACTIONS(1499), 7, + STATE(5212), 1, + sym_comment, + ACTIONS(1560), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(1572), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + ACTIONS(4514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198371] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_DASH_DASH, - ACTIONS(8404), 1, - anon_sym_DASH, - STATE(5795), 1, - sym__flag, - STATE(5182), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5862), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8299), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_as, - [198398] = 11, + [198610] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1527), 1, + ACTIONS(1528), 1, anon_sym_LPAREN2, - ACTIONS(1531), 1, + ACTIONS(1532), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1533), 1, + ACTIONS(1534), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1676), 1, + ACTIONS(1687), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(3623), 1, + ACTIONS(3597), 1, anon_sym_DOLLAR, - ACTIONS(8407), 1, + ACTIONS(8352), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8409), 1, + ACTIONS(8354), 1, aux_sym__immediate_decimal_token5, - STATE(330), 1, + STATE(370), 1, sym__immediate_decimal, - STATE(5183), 1, + STATE(5213), 1, sym_comment, - STATE(417), 2, + STATE(486), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198433] = 11, + [198645] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(1592), 1, anon_sym_LPAREN2, - ACTIONS(1595), 1, + ACTIONS(1594), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1597), 1, + ACTIONS(1596), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1676), 1, + ACTIONS(1687), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8411), 1, + ACTIONS(8356), 1, anon_sym_DOLLAR, - ACTIONS(8413), 1, + ACTIONS(8358), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8415), 1, + ACTIONS(8360), 1, aux_sym__immediate_decimal_token5, - STATE(474), 1, + STATE(536), 1, sym__immediate_decimal, - STATE(5184), 1, + STATE(5214), 1, sym_comment, STATE(630), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198468] = 6, - ACTIONS(3), 1, + [198680] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8417), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8419), 1, + ACTIONS(8362), 1, + anon_sym_DOT, + ACTIONS(8364), 1, aux_sym__immediate_decimal_token2, - STATE(5185), 1, + STATE(5215), 1, sym_comment, - ACTIONS(1517), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 5, - sym__space, + ACTIONS(1520), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1518), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [198493] = 11, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [198705] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6092), 1, + ACTIONS(2834), 1, anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8421), 1, - anon_sym_DASH_DASH, - ACTIONS(8423), 1, - anon_sym_DASH, - STATE(5186), 1, + ACTIONS(3893), 1, + anon_sym_LPAREN2, + ACTIONS(3897), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3899), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4169), 1, + aux_sym_unquoted_token3, + ACTIONS(8366), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8368), 1, + aux_sym__immediate_decimal_token5, + STATE(1333), 1, + sym__immediate_decimal, + STATE(5216), 1, sym_comment, - STATE(5319), 1, + STATE(1430), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5872), 1, - sym__variable_name, - STATE(6661), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [198528] = 11, + [198740] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(3923), 1, anon_sym_DOLLAR, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(7825), 1, + ACTIONS(3925), 1, anon_sym_LPAREN2, - ACTIONS(7847), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7849), 1, + ACTIONS(3927), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7851), 1, + ACTIONS(3929), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4169), 1, + aux_sym_unquoted_token3, + ACTIONS(8370), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7853), 1, + ACTIONS(8372), 1, aux_sym__immediate_decimal_token5, - STATE(5187), 1, - sym_comment, - STATE(5595), 1, + STATE(1529), 1, sym__immediate_decimal, - STATE(5820), 2, + STATE(5217), 1, + sym_comment, + STATE(1901), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198563] = 4, + [198775] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5188), 1, + ACTIONS(8374), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8376), 1, + aux_sym__immediate_decimal_token2, + STATE(5218), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 7, + ACTIONS(1542), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1540), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [198584] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [198800] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8425), 1, + ACTIONS(1015), 1, + anon_sym_DASH, + ACTIONS(8378), 1, anon_sym_DOT, - STATE(5425), 1, + STATE(5513), 1, sym_path, - STATE(5189), 2, + STATE(5219), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1023), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1021), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [198609] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5190), 1, - sym_comment, - ACTIONS(1565), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 7, + ACTIONS(1017), 6, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198630] = 4, + [198825] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5191), 1, + STATE(5220), 1, sym_comment, - ACTIONS(1497), 4, + ACTIONS(1540), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1499), 6, + ACTIONS(1542), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [198651] = 4, + [198846] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(5192), 1, - sym_comment, - ACTIONS(1639), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 7, + ACTIONS(6301), 1, anon_sym_DOLLAR, + ACTIONS(8233), 1, + anon_sym_DASH_DASH, + ACTIONS(8235), 1, + anon_sym_DASH, + ACTIONS(8381), 1, + sym_identifier, + STATE(5221), 1, + sym_comment, + STATE(5243), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, + sym__flag, + STATE(6645), 1, + sym__variable_name, + STATE(6900), 1, + sym_val_variable, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [198881] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8285), 1, + aux_sym__immediate_decimal_token2, + STATE(5222), 1, + sym_comment, + ACTIONS(1520), 3, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1518), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [198672] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_LPAREN2, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8129), 1, - anon_sym_DOLLAR, - ACTIONS(8133), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8135), 1, - aux_sym__immediate_decimal_token5, - STATE(2753), 1, - sym__immediate_decimal, - STATE(5193), 1, - sym_comment, - STATE(2829), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198707] = 10, + aux_sym_unquoted_token2, + [198904] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1551), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, + ACTIONS(1506), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, + ACTIONS(8207), 1, anon_sym_DOLLAR, - STATE(3479), 1, + STATE(3427), 1, sym__immediate_decimal, - STATE(5194), 1, + STATE(5223), 1, sym_comment, - ACTIONS(8363), 2, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3360), 2, + STATE(3402), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198740] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(8428), 1, - sym_filesize_unit, - ACTIONS(8430), 1, - sym_duration_unit, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - STATE(5195), 1, - sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198771] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5196), 1, - sym_comment, - ACTIONS(7985), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198790] = 4, + [198937] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5197), 1, + STATE(5224), 1, sym_comment, - ACTIONS(1517), 4, + ACTIONS(1653), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1519), 6, + ACTIONS(1655), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [198811] = 5, + [198958] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__immediate_decimal_token2, - STATE(5198), 1, + ACTIONS(1604), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + STATE(3419), 1, + sym__immediate_decimal, + STATE(5225), 1, sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198834] = 11, - ACTIONS(3), 1, + ACTIONS(8328), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3381), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198991] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(1588), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(5405), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5407), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8434), 1, - anon_sym_DOLLAR, - ACTIONS(8436), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8438), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(2964), 1, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + STATE(3423), 1, sym__immediate_decimal, - STATE(5199), 1, + STATE(5226), 1, sym_comment, - STATE(3013), 2, + ACTIONS(8328), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3421), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198869] = 10, + [199024] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1515), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6082), 1, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, + ACTIONS(8207), 1, anon_sym_DOLLAR, - STATE(3367), 1, + STATE(3426), 1, sym__immediate_decimal, - STATE(5200), 1, + STATE(5227), 1, sym_comment, - ACTIONS(8363), 2, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3366), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198902] = 3, - ACTIONS(247), 1, + [199057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5201), 1, + STATE(5228), 1, sym_comment, - ACTIONS(7813), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198921] = 5, + ACTIONS(1518), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1520), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [199078] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8440), 1, - aux_sym__immediate_decimal_token2, - STATE(5202), 1, - sym_comment, - ACTIONS(1565), 2, + ACTIONS(1641), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 7, + ACTIONS(6092), 1, + anon_sym_DOT, + STATE(1548), 1, + sym_cell_path, + STATE(3132), 1, + aux_sym_cell_path_repeat1, + STATE(3242), 1, + sym_path, + STATE(5229), 1, + sym_comment, + ACTIONS(1645), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198944] = 6, + [199107] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8442), 1, + ACTIONS(1675), 1, + anon_sym_DOT_DOT2, + ACTIONS(6092), 1, anon_sym_DOT, - ACTIONS(8444), 1, - aux_sym__immediate_decimal_token2, - STATE(5203), 1, + STATE(1558), 1, + sym_cell_path, + STATE(3132), 1, + aux_sym_cell_path_repeat1, + STATE(3242), 1, + sym_path, + STATE(5230), 1, sym_comment, - ACTIONS(1499), 3, - anon_sym_DOLLAR, + ACTIONS(1677), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198969] = 11, + [199136] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(1574), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(2986), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(7829), 1, + ACTIONS(7953), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7831), 1, + ACTIONS(7955), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7833), 1, + ACTIONS(7957), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7835), 1, + ACTIONS(7959), 1, aux_sym__immediate_decimal_token5, - STATE(5204), 1, + STATE(5231), 1, sym_comment, - STATE(5626), 1, + STATE(5533), 1, sym__immediate_decimal, - STATE(5820), 2, + STATE(5687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199004] = 11, + [199171] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - anon_sym_DOLLAR, - ACTIONS(3706), 1, + ACTIONS(1574), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(3710), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(3712), 1, + ACTIONS(8049), 1, + anon_sym_DOLLAR, + ACTIONS(8059), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3924), 1, - aux_sym_unquoted_token3, - ACTIONS(8446), 1, + ACTIONS(8061), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8063), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8448), 1, + ACTIONS(8065), 1, aux_sym__immediate_decimal_token5, - STATE(1216), 1, - sym__immediate_decimal, - STATE(5205), 1, + STATE(5232), 1, sym_comment, - STATE(1324), 2, + STATE(6109), 1, + sym__immediate_decimal, + STATE(2922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199039] = 11, + [199206] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8383), 1, + aux_sym__immediate_decimal_token2, + STATE(5233), 1, + sym_comment, + ACTIONS(1556), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1554), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [199229] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(5393), 1, anon_sym_DOLLAR, - ACTIONS(3884), 1, + ACTIONS(5395), 1, anon_sym_LPAREN2, - ACTIONS(3886), 1, + ACTIONS(5397), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3924), 1, - aux_sym_unquoted_token3, - ACTIONS(8450), 1, + ACTIONS(5399), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8452), 1, + ACTIONS(5401), 1, aux_sym__immediate_decimal_token5, - STATE(1460), 1, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8385), 1, + aux_sym__immediate_decimal_token1, + STATE(2879), 1, sym__immediate_decimal, - STATE(5206), 1, + STATE(5234), 1, sym_comment, - STATE(1576), 2, + STATE(2922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199074] = 11, + [199264] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(7825), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8115), 1, + ACTIONS(7817), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8117), 1, + ACTIONS(8387), 1, + anon_sym_DOLLAR, + ACTIONS(8389), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8119), 1, + ACTIONS(8391), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8121), 1, + ACTIONS(8393), 1, aux_sym__immediate_decimal_token5, - STATE(5207), 1, + ACTIONS(8395), 1, + aux_sym_unquoted_token3, + STATE(5235), 1, sym_comment, - STATE(6591), 1, + STATE(5705), 1, sym__immediate_decimal, - STATE(2859), 2, + STATE(5879), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199109] = 3, - ACTIONS(247), 1, + [199299] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5208), 1, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(8003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8332), 1, + anon_sym_DOLLAR, + ACTIONS(8395), 1, + aux_sym_unquoted_token3, + ACTIONS(8397), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8399), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8401), 1, + aux_sym__immediate_decimal_token5, + STATE(5236), 1, sym_comment, - ACTIONS(7821), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199128] = 11, + STATE(6839), 1, + sym__immediate_decimal, + STATE(3398), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199334] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1575), 1, + ACTIONS(1560), 1, anon_sym_RBRACE, - ACTIONS(1577), 1, + ACTIONS(1562), 1, anon_sym_LPAREN2, - ACTIONS(1587), 1, + ACTIONS(1572), 1, sym__entry_separator, - ACTIONS(1589), 1, + ACTIONS(1574), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(8454), 1, + ACTIONS(8403), 1, anon_sym_DOT_DOT2, - ACTIONS(8458), 1, + ACTIONS(8407), 1, sym_filesize_unit, - ACTIONS(8460), 1, + ACTIONS(8409), 1, sym_duration_unit, - STATE(5209), 1, + STATE(5237), 1, sym_comment, - STATE(7340), 1, + STATE(7334), 1, sym__expr_parenthesized_immediate, - ACTIONS(8456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199163] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8462), 1, - anon_sym_DOT, - ACTIONS(8464), 1, - aux_sym__immediate_decimal_token2, - STATE(5210), 1, - sym_comment, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 4, - anon_sym_LPAREN2, + ACTIONS(8405), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199188] = 7, + [199369] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1017), 1, + ACTIONS(8047), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(5211), 1, + STATE(5238), 1, sym_comment, - STATE(5250), 1, - aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - ACTIONS(1019), 6, - anon_sym_EQ, + ACTIONS(5622), 9, sym_identifier, sym__newline, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199215] = 6, + [199390] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8468), 1, - anon_sym_DOT, - ACTIONS(8470), 1, - aux_sym__immediate_decimal_token2, - STATE(5212), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1499), 5, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [199240] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6336), 1, + ACTIONS(2051), 1, anon_sym_DOLLAR, - ACTIONS(8275), 1, - anon_sym_DASH_DASH, - ACTIONS(8277), 1, - anon_sym_DASH, - ACTIONS(8472), 1, - sym_identifier, - STATE(5213), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(6734), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6736), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6740), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6872), 1, + aux_sym_unquoted_token3, + STATE(4071), 1, + sym__immediate_decimal, + STATE(5239), 1, sym_comment, - STATE(5463), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, - sym__flag, - STATE(6786), 1, + STATE(4224), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(7038), 1, - sym__variable_name, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [199275] = 11, - ACTIONS(247), 1, + [199425] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6336), 1, + ACTIONS(4283), 1, anon_sym_DOLLAR, - ACTIONS(8275), 1, - anon_sym_DASH_DASH, - ACTIONS(8277), 1, - anon_sym_DASH, - ACTIONS(8472), 1, - sym_identifier, - STATE(5213), 1, - aux_sym_ctrl_do_repeat1, - STATE(5214), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(6758), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6760), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6762), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6764), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6872), 1, + aux_sym_unquoted_token3, + STATE(4445), 1, + sym__immediate_decimal, + STATE(5240), 1, sym_comment, - STATE(5943), 1, - sym__flag, - STATE(6786), 1, + STATE(4728), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(7004), 1, - sym__variable_name, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [199310] = 5, - ACTIONS(3), 1, + [199460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__immediate_decimal_token2, - STATE(5215), 1, + STATE(5241), 1, sym_comment, - ACTIONS(1497), 3, - anon_sym_RBRACE, + ACTIONS(1518), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1499), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1520), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [199333] = 9, + [199481] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8474), 1, + ACTIONS(1011), 1, + anon_sym_DASH, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(5219), 1, + aux_sym_cell_path_repeat1, + STATE(5242), 1, + sym_comment, + STATE(5513), 1, + sym_path, + ACTIONS(1013), 6, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [199508] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + ACTIONS(8233), 1, anon_sym_DASH_DASH, - ACTIONS(8476), 1, + ACTIONS(8235), 1, anon_sym_DASH, - ACTIONS(8478), 1, - anon_sym_as, - STATE(5182), 1, - aux_sym_ctrl_do_repeat1, - STATE(5216), 1, + ACTIONS(8381), 1, + sym_identifier, + STATE(5243), 1, sym_comment, - STATE(5795), 1, + STATE(5400), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, sym__flag, - STATE(5862), 2, + STATE(6819), 1, + sym__variable_name, + STATE(6900), 1, + sym_val_variable, + STATE(6046), 2, sym_short_flag, sym_long_flag, - ACTIONS(8329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [199364] = 3, + [199543] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5217), 1, + STATE(5244), 1, sym_comment, - ACTIONS(7923), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199383] = 11, + ACTIONS(1540), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199564] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR, - ACTIONS(6301), 1, + ACTIONS(1482), 1, anon_sym_LPAREN2, - ACTIONS(6726), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6844), 1, - aux_sym_unquoted_token3, - ACTIONS(8480), 1, + ACTIONS(1486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(1488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(1490), 1, aux_sym__immediate_decimal_token5, - STATE(3947), 1, + ACTIONS(1574), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8413), 1, + aux_sym__immediate_decimal_token1, + STATE(293), 1, sym__immediate_decimal, - STATE(5218), 1, + STATE(5245), 1, sym_comment, - STATE(4137), 2, + STATE(392), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199418] = 11, + [199599] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4394), 1, + ACTIONS(1508), 1, anon_sym_DOLLAR, - ACTIONS(6301), 1, + ACTIONS(1510), 1, anon_sym_LPAREN2, - ACTIONS(6734), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6844), 1, - aux_sym_unquoted_token3, - ACTIONS(8486), 1, + ACTIONS(1512), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, + ACTIONS(1514), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, + ACTIONS(1516), 1, aux_sym__immediate_decimal_token5, - STATE(4166), 1, + ACTIONS(1574), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8415), 1, + aux_sym__immediate_decimal_token1, + STATE(487), 1, sym__immediate_decimal, - STATE(5219), 1, + STATE(5246), 1, sym_comment, - STATE(4571), 2, + STATE(595), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199453] = 11, + [199634] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5247), 1, + sym_comment, + ACTIONS(1554), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199655] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5248), 1, + sym_comment, + ACTIONS(1653), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199676] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3385), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(7827), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8492), 1, + ACTIONS(7829), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8494), 1, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8496), 1, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token5, - STATE(3930), 1, - sym__immediate_decimal, - STATE(5220), 1, + STATE(5249), 1, sym_comment, - STATE(3310), 2, + STATE(5612), 1, + sym__immediate_decimal, + STATE(5687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199488] = 11, + [199711] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3991), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, + ACTIONS(8049), 1, + anon_sym_DOLLAR, + ACTIONS(8051), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8498), 1, + ACTIONS(8053), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8500), 1, + ACTIONS(8055), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8502), 1, + ACTIONS(8057), 1, aux_sym__immediate_decimal_token5, - STATE(4109), 1, - sym__immediate_decimal, - STATE(5221), 1, + STATE(5250), 1, sym_comment, - STATE(3344), 2, + STATE(6471), 1, + sym__immediate_decimal, + STATE(2922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199523] = 5, + [199746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8504), 1, + ACTIONS(8417), 1, + anon_sym_DOT, + ACTIONS(8419), 1, aux_sym__immediate_decimal_token2, - STATE(5222), 1, + STATE(5251), 1, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1667), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1567), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [199546] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1898), 1, - anon_sym_DASH, - ACTIONS(8506), 1, - sym__newline, - STATE(5223), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1900), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199569] = 4, + [199771] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8214), 1, - anon_sym_DASH, - STATE(5224), 1, + STATE(5252), 1, sym_comment, - ACTIONS(8209), 9, + ACTIONS(7811), 10, + anon_sym_EQ, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199590] = 6, - ACTIONS(3), 1, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199790] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8509), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8511), 1, + ACTIONS(8275), 1, aux_sym__immediate_decimal_token2, - STATE(5225), 1, + STATE(5253), 1, sym_comment, - ACTIONS(1517), 3, - anon_sym_RBRACE, - anon_sym__, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, - ACTIONS(1519), 5, + aux_sym_unquoted_token2, + ACTIONS(1520), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [199615] = 6, + [199813] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8513), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8515), 1, + ACTIONS(8421), 1, aux_sym__immediate_decimal_token2, - STATE(5226), 1, + STATE(5254), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_DOLLAR, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [199640] = 9, + [199836] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - ACTIONS(8517), 1, - sym_filesize_unit, - ACTIONS(8519), 1, - sym_duration_unit, - STATE(5227), 1, + ACTIONS(1313), 1, + anon_sym_DASH, + ACTIONS(8423), 1, + sym__newline, + STATE(5255), 2, sym_comment, - ACTIONS(1575), 2, + aux_sym_shebang_repeat1, + ACTIONS(1315), 7, sym_identifier, - anon_sym_DASH, - ACTIONS(1587), 2, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199671] = 11, + [199859] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(7825), 1, + ACTIONS(5339), 1, anon_sym_LPAREN2, - ACTIONS(8019), 1, - anon_sym_DOLLAR, - ACTIONS(8021), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8023), 1, + ACTIONS(5343), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8025), 1, + ACTIONS(5345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8073), 1, + anon_sym_DOLLAR, + ACTIONS(8077), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8027), 1, + ACTIONS(8079), 1, aux_sym__immediate_decimal_token5, - STATE(5228), 1, - sym_comment, - STATE(6419), 1, + STATE(2819), 1, sym__immediate_decimal, - STATE(2859), 2, + STATE(5256), 1, + sym_comment, + STATE(2875), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199706] = 9, + [199894] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8289), 1, + aux_sym__immediate_decimal_token2, + STATE(5257), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1520), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [199917] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8474), 1, + ACTIONS(8340), 1, anon_sym_DASH_DASH, - ACTIONS(8476), 1, + ACTIONS(8342), 1, anon_sym_DASH, - ACTIONS(8521), 1, + ACTIONS(8426), 1, anon_sym_as, - STATE(5182), 1, - aux_sym_ctrl_do_repeat1, - STATE(5229), 1, + STATE(5258), 1, sym_comment, - STATE(5795), 1, + STATE(5289), 1, + aux_sym_ctrl_do_repeat1, + STATE(5682), 1, sym__flag, - STATE(5862), 2, + STATE(5696), 2, sym_short_flag, sym_long_flag, - ACTIONS(8291), 3, + ACTIONS(8267), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [199737] = 9, + [199948] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8474), 1, + ACTIONS(8340), 1, anon_sym_DASH_DASH, - ACTIONS(8476), 1, + ACTIONS(8342), 1, anon_sym_DASH, - ACTIONS(8523), 1, + ACTIONS(8428), 1, anon_sym_as, - STATE(5216), 1, + STATE(5207), 1, aux_sym_ctrl_do_repeat1, - STATE(5230), 1, + STATE(5259), 1, sym_comment, - STATE(5795), 1, + STATE(5682), 1, sym__flag, - STATE(5862), 2, + STATE(5696), 2, sym_short_flag, sym_long_flag, - ACTIONS(8295), 3, + ACTIONS(8215), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [199768] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8275), 1, - anon_sym_DASH_DASH, - ACTIONS(8277), 1, - anon_sym_DASH, - STATE(5231), 1, - sym_comment, - STATE(5240), 1, - aux_sym_ctrl_do_repeat1, - STATE(5319), 1, - sym_val_variable, - STATE(5943), 1, - sym__flag, - STATE(6137), 1, - sym__variable_name, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [199803] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8421), 1, - anon_sym_DASH_DASH, - ACTIONS(8423), 1, - anon_sym_DASH, - STATE(5232), 1, - sym_comment, - STATE(5319), 1, - sym_val_variable, - STATE(5872), 1, - sym__variable_name, - STATE(6661), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [199838] = 9, + [199979] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8474), 1, + ACTIONS(8340), 1, anon_sym_DASH_DASH, - ACTIONS(8476), 1, + ACTIONS(8342), 1, anon_sym_DASH, - ACTIONS(8525), 1, + ACTIONS(8430), 1, anon_sym_as, - STATE(5229), 1, + STATE(5258), 1, aux_sym_ctrl_do_repeat1, - STATE(5233), 1, + STATE(5260), 1, sym_comment, - STATE(5795), 1, + STATE(5682), 1, sym__flag, - STATE(5862), 2, + STATE(5696), 2, sym_short_flag, sym_long_flag, - ACTIONS(8250), 3, + ACTIONS(8223), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [199869] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5234), 1, - sym_comment, - ACTIONS(7859), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199888] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5235), 1, - sym_comment, - ACTIONS(7863), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199907] = 11, + [200010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_RBRACK, - ACTIONS(1587), 1, - sym__entry_separator, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8527), 1, - anon_sym_DOT_DOT2, - ACTIONS(8531), 1, - sym_filesize_unit, - ACTIONS(8533), 1, - sym_duration_unit, - STATE(5236), 1, + ACTIONS(8432), 1, + aux_sym__immediate_decimal_token2, + STATE(5261), 1, sym_comment, - STATE(7357), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8529), 2, + ACTIONS(1554), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1556), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199942] = 11, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [200033] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(2607), 1, anon_sym_DOLLAR, - ACTIONS(6848), 1, + ACTIONS(3834), 1, anon_sym_LPAREN2, - ACTIONS(6852), 1, + ACTIONS(3838), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6854), 1, + ACTIONS(3840), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7005), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8535), 1, + ACTIONS(3988), 1, + aux_sym_unquoted_token3, + ACTIONS(8434), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8537), 1, + ACTIONS(8436), 1, aux_sym__immediate_decimal_token5, - STATE(4251), 1, + STATE(1264), 1, sym__immediate_decimal, - STATE(5237), 1, + STATE(5262), 1, sym_comment, - STATE(4477), 2, + STATE(1364), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199977] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5238), 1, - sym_comment, - ACTIONS(1499), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [199998] = 11, + [200068] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6848), 1, + ACTIONS(3881), 1, + anon_sym_DOLLAR, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(6912), 1, + ACTIONS(3885), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6914), 1, + ACTIONS(3887), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7005), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8539), 1, - anon_sym_DOLLAR, - ACTIONS(8541), 1, + ACTIONS(3988), 1, + aux_sym_unquoted_token3, + ACTIONS(8438), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8543), 1, + ACTIONS(8440), 1, aux_sym__immediate_decimal_token5, - STATE(4596), 1, + STATE(1463), 1, sym__immediate_decimal, - STATE(5239), 1, + STATE(5263), 1, sym_comment, - STATE(5051), 2, + STATE(1741), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200033] = 11, + [200103] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_RBRACK, + ACTIONS(1572), 1, + sym__entry_separator, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8442), 1, + anon_sym_DOT_DOT2, + ACTIONS(8446), 1, + sym_filesize_unit, + ACTIONS(8448), 1, + sym_duration_unit, + STATE(5264), 1, + sym_comment, + STATE(7216), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8444), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200138] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8450), 1, + anon_sym_DOT, + ACTIONS(8452), 1, + aux_sym__immediate_decimal_token2, + STATE(5265), 1, + sym_comment, + ACTIONS(1518), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200163] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8273), 1, + ACTIONS(8231), 1, sym_identifier, - ACTIONS(8275), 1, + ACTIONS(8233), 1, anon_sym_DASH_DASH, - ACTIONS(8277), 1, + ACTIONS(8235), 1, anon_sym_DASH, - STATE(5240), 1, + STATE(5266), 1, sym_comment, - STATE(5319), 1, + STATE(5366), 1, sym_val_variable, - STATE(5463), 1, + STATE(5400), 1, aux_sym_ctrl_do_repeat1, - STATE(5943), 1, + STATE(5902), 1, sym__flag, - STATE(6555), 1, + STATE(6494), 1, sym__variable_name, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [200068] = 4, - ACTIONS(247), 1, + [200198] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5241), 1, - sym_comment, - ACTIONS(1519), 4, + ACTIONS(3449), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200089] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1493), 1, - anon_sym_EQ_GT, - ACTIONS(6082), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6716), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6834), 1, + aux_sym_unquoted_token3, + ACTIONS(8454), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8456), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(8458), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - STATE(3486), 1, + STATE(4013), 1, sym__immediate_decimal, - STATE(5242), 1, + STATE(5267), 1, sym_comment, - ACTIONS(6094), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3369), 2, + STATE(4177), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200122] = 10, - ACTIONS(247), 1, + [200233] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1551), 1, - anon_sym_EQ_GT, - ACTIONS(6082), 1, + ACTIONS(4409), 1, + anon_sym_DOLLAR, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6724), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6834), 1, + aux_sym_unquoted_token3, + ACTIONS(8460), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(8464), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - STATE(3479), 1, + STATE(4240), 1, sym__immediate_decimal, - STATE(5243), 1, + STATE(5268), 1, sym_comment, - ACTIONS(6094), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3360), 2, + STATE(4546), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200155] = 11, + [200268] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token3, - ACTIONS(6082), 1, + ACTIONS(3401), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(7613), 1, + ACTIONS(6700), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8371), 1, - anon_sym_DOLLAR, - ACTIONS(8545), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token3, + ACTIONS(8466), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8547), 1, + ACTIONS(8468), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8549), 1, + ACTIONS(8470), 1, aux_sym__immediate_decimal_token5, - STATE(5244), 1, - sym_comment, - STATE(5576), 1, + STATE(3978), 1, sym__immediate_decimal, - STATE(5874), 2, + STATE(5269), 1, + sym_comment, + STATE(3367), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200190] = 11, + [200303] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token3, - ACTIONS(6082), 1, + ACTIONS(4003), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(7841), 1, + ACTIONS(6706), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8381), 1, - anon_sym_DOLLAR, - ACTIONS(8551), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token3, + ACTIONS(8472), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8553), 1, + ACTIONS(8474), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8555), 1, + ACTIONS(8476), 1, aux_sym__immediate_decimal_token5, - STATE(5245), 1, - sym_comment, - STATE(6531), 1, + STATE(4197), 1, sym__immediate_decimal, - STATE(3344), 2, + STATE(5270), 1, + sym_comment, + STATE(3398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200225] = 11, + [200338] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8478), 1, + anon_sym_DOT, + STATE(5271), 1, + sym_comment, + STATE(5373), 1, + aux_sym_cell_path_repeat1, + STATE(5558), 1, + sym_path, + STATE(5807), 1, + sym_cell_path, + ACTIONS(1641), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [200367] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3692), 1, + ACTIONS(3852), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8379), 1, + ACTIONS(8395), 1, aux_sym_unquoted_token3, - ACTIONS(8557), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5246), 1, + STATE(5272), 1, sym_comment, - STATE(5934), 1, + STATE(5981), 1, sym__immediate_decimal, - STATE(6211), 2, + STATE(6189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200260] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token2, - STATE(5247), 1, - sym_comment, - ACTIONS(1499), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200283] = 11, + [200402] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4089), 1, + ACTIONS(4395), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8379), 1, + ACTIONS(8395), 1, aux_sym_unquoted_token3, - ACTIONS(8563), 1, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5248), 1, + STATE(5273), 1, sym_comment, - STATE(7394), 1, + STATE(7373), 1, sym__immediate_decimal, - STATE(3344), 2, + STATE(3398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200318] = 4, + [200437] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(5249), 1, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + STATE(3527), 1, + sym__immediate_decimal, + STATE(5274), 1, + sym_comment, + ACTIONS(8328), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3393), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200470] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5275), 1, sym_comment, - ACTIONS(1567), 4, + ACTIONS(1520), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 6, + ACTIONS(1518), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [200339] = 6, + [200491] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(8569), 1, - anon_sym_DOT, - STATE(5465), 1, - sym_path, - STATE(5250), 2, + STATE(5276), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 6, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(1542), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [200364] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1540), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200512] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_DOLLAR, - ACTIONS(6792), 1, - anon_sym_LPAREN2, - ACTIONS(6796), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6798), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6930), 1, - aux_sym_unquoted_token3, - STATE(4070), 1, - sym__immediate_decimal, - STATE(5251), 1, + STATE(5277), 1, sym_comment, - STATE(4390), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200399] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4227), 1, + ACTIONS(1556), 4, anon_sym_DOLLAR, - ACTIONS(6792), 1, - anon_sym_LPAREN2, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6814), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6816), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6930), 1, - aux_sym_unquoted_token3, - STATE(4491), 1, - sym__immediate_decimal, - STATE(5252), 1, - sym_comment, - STATE(4837), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200434] = 6, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1554), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200533] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, - aux_sym__immediate_decimal_token2, - STATE(5253), 1, + ACTIONS(8478), 1, + anon_sym_DOT, + STATE(5278), 1, sym_comment, - ACTIONS(1631), 4, + STATE(5373), 1, + aux_sym_cell_path_repeat1, + STATE(5558), 1, + sym_path, + STATE(5863), 1, + sym_cell_path, + ACTIONS(1675), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 4, - anon_sym_LPAREN2, + ACTIONS(1677), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [200459] = 6, + [200562] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5279), 1, + sym_comment, + ACTIONS(1655), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200583] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8576), 1, + ACTIONS(8478), 1, anon_sym_DOT, - ACTIONS(8578), 1, - aux_sym__immediate_decimal_token2, - STATE(5254), 1, + STATE(5280), 1, sym_comment, - ACTIONS(1497), 3, - sym__newline, + STATE(5373), 1, + aux_sym_cell_path_repeat1, + STATE(5558), 1, + sym_path, + STATE(5698), 1, + sym_cell_path, + ACTIONS(1005), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 5, - sym__space, + ACTIONS(1007), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200484] = 3, + sym__entry_separator, + [200612] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5255), 1, + STATE(5281), 1, sym_comment, - ACTIONS(7572), 10, + ACTIONS(7927), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_AT, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200503] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1686), 1, - anon_sym_DOT_DOT2, - ACTIONS(6099), 1, - anon_sym_DOT, - STATE(1484), 1, - sym_cell_path, - STATE(3086), 1, - aux_sym_cell_path_repeat1, - STATE(3122), 1, - sym_path, - STATE(5256), 1, - sym_comment, - ACTIONS(1688), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200532] = 8, + [200631] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1625), 1, - anon_sym_DOT_DOT2, - ACTIONS(6099), 1, - anon_sym_DOT, - STATE(1533), 1, - sym_cell_path, - STATE(3086), 1, - aux_sym_cell_path_repeat1, - STATE(3122), 1, - sym_path, - STATE(5257), 1, + STATE(5282), 1, sym_comment, - ACTIONS(1629), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200561] = 8, + ACTIONS(7931), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200650] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1011), 1, - anon_sym_DOT_DOT2, - ACTIONS(6099), 1, - anon_sym_DOT, - STATE(3086), 1, - aux_sym_cell_path_repeat1, - STATE(3122), 1, - sym_path, - STATE(4119), 1, - sym_cell_path, - STATE(5258), 1, + STATE(5283), 1, sym_comment, - ACTIONS(1013), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200590] = 5, + ACTIONS(7935), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200669] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8580), 1, - aux_sym__immediate_decimal_token2, - STATE(5259), 1, - sym_comment, - ACTIONS(1567), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 6, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, sym_identifier, + ACTIONS(8492), 1, + anon_sym_DASH_DASH, + ACTIONS(8494), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200613] = 4, - ACTIONS(247), 1, + STATE(5284), 1, + sym_comment, + STATE(5366), 1, + sym_val_variable, + STATE(5634), 1, + sym__variable_name, + STATE(6613), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [200704] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5260), 1, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8498), 1, + aux_sym__immediate_decimal_token2, + STATE(5285), 1, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1540), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1542), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200633] = 9, - ACTIONS(247), 1, + [200729] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(5419), 1, anon_sym_LPAREN2, - ACTIONS(8582), 1, + ACTIONS(5421), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5423), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8500), 1, anon_sym_DOLLAR, - ACTIONS(8584), 1, + ACTIONS(8502), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, + ACTIONS(8504), 1, aux_sym__immediate_decimal_token5, - STATE(5261), 1, - sym_comment, - STATE(5828), 1, + STATE(2974), 1, sym__immediate_decimal, - ACTIONS(7903), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5819), 2, + STATE(5286), 1, + sym_comment, + STATE(3059), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200663] = 9, + [200764] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(1492), 1, + anon_sym_EQ_GT, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - STATE(3792), 1, + STATE(3527), 1, sym__immediate_decimal, - STATE(5262), 1, + STATE(5287), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1778), 2, + STATE(3393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200693] = 9, + [200797] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(1550), 1, + anon_sym_EQ_GT, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8584), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8588), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - STATE(5263), 1, - sym_comment, - STATE(7144), 1, + STATE(3524), 1, sym__immediate_decimal, - ACTIONS(8111), 2, + STATE(5288), 1, + sym_comment, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7086), 2, + STATE(3401), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200723] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8590), 1, - anon_sym_DOT, - ACTIONS(8592), 1, - aux_sym__immediate_decimal_token2, - STATE(5264), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200747] = 6, + [200830] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8594), 1, - anon_sym_EQ2, - ACTIONS(8596), 1, - sym_short_flag_identifier, - STATE(5265), 1, - sym_comment, - ACTIONS(4747), 3, + ACTIONS(8506), 1, anon_sym_DASH_DASH, + ACTIONS(8509), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(4749), 4, + STATE(5682), 1, + sym__flag, + STATE(5289), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8247), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [200771] = 6, + anon_sym_as, + [200857] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8598), 1, - anon_sym_DOT, - ACTIONS(8600), 1, - aux_sym__immediate_decimal_token2, - STATE(5266), 1, - sym_comment, - ACTIONS(1497), 2, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(4512), 1, anon_sym_DOT_DOT2, + ACTIONS(8350), 1, aux_sym_unquoted_token2, - ACTIONS(1499), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(8512), 1, sym_filesize_unit, + ACTIONS(8514), 1, sym_duration_unit, - [200795] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8464), 1, - aux_sym__immediate_decimal_token2, - STATE(5267), 1, + STATE(5290), 1, sym_comment, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 4, - anon_sym_LPAREN2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [200817] = 4, + ACTIONS(1572), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200888] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5268), 1, + ACTIONS(8516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8518), 1, + aux_sym__immediate_decimal_token2, + STATE(5291), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(1659), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1519), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [200837] = 9, + [200913] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(8588), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token5, - STATE(5269), 1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(8233), 1, + anon_sym_DASH_DASH, + ACTIONS(8235), 1, + anon_sym_DASH, + STATE(5266), 1, + aux_sym_ctrl_do_repeat1, + STATE(5292), 1, sym_comment, - STATE(6198), 1, - sym__immediate_decimal, - ACTIONS(8115), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2862), 2, - sym__expr_parenthesized_immediate, + STATE(5366), 1, sym_val_variable, - [200867] = 9, + STATE(5902), 1, + sym__flag, + STATE(6132), 1, + sym__variable_name, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [200948] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6740), 1, - anon_sym_LPAREN2, - ACTIONS(8606), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8608), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8610), 1, - aux_sym__immediate_decimal_token5, - STATE(4751), 1, - sym__immediate_decimal, - STATE(5270), 1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(8492), 1, + anon_sym_DASH_DASH, + ACTIONS(8494), 1, + anon_sym_DASH, + STATE(5293), 1, sym_comment, - ACTIONS(6806), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4750), 2, - sym__expr_parenthesized_immediate, + STATE(5366), 1, sym_val_variable, - [200897] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8612), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8614), 1, - aux_sym__immediate_decimal_token2, - STATE(5271), 1, - sym_comment, - ACTIONS(1517), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200921] = 5, + STATE(5634), 1, + sym__variable_name, + STATE(6613), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [200983] = 4, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8616), 1, - aux_sym__immediate_decimal_token2, - STATE(5272), 1, + anon_sym_POUND, + STATE(5294), 1, sym_comment, - ACTIONS(1565), 3, - sym__newline, + ACTIONS(1554), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 5, - sym__space, + aux_sym__unquoted_in_list_token2, + ACTIONS(1556), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200943] = 9, - ACTIONS(247), 1, + sym__entry_separator, + [201004] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3884), 1, + ACTIONS(3499), 1, + anon_sym_DOLLAR, + ACTIONS(6852), 1, anon_sym_LPAREN2, - ACTIONS(3890), 1, + ACTIONS(6856), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6858), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6965), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8520), 1, aux_sym__immediate_decimal_token4, - ACTIONS(3892), 1, + ACTIONS(8522), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7887), 1, - anon_sym_DOLLAR, - STATE(1428), 1, + STATE(4257), 1, sym__immediate_decimal, - STATE(5273), 1, + STATE(5295), 1, sym_comment, - ACTIONS(3888), 2, - aux_sym__immediate_decimal_token1, + STATE(4579), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201039] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6896), 1, aux_sym__immediate_decimal_token3, - STATE(1590), 2, + ACTIONS(6898), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6965), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8524), 1, + anon_sym_DOLLAR, + ACTIONS(8526), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8528), 1, + aux_sym__immediate_decimal_token5, + STATE(4771), 1, + sym__immediate_decimal, + STATE(5296), 1, + sym_comment, + STATE(5082), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200973] = 4, + [201074] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5274), 1, + ACTIONS(4742), 1, + aux_sym_unquoted_token3, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(7793), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8387), 1, + anon_sym_DOLLAR, + ACTIONS(8530), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8532), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8534), 1, + aux_sym__immediate_decimal_token5, + STATE(5297), 1, sym_comment, - ACTIONS(1046), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1044), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [200993] = 9, + STATE(5571), 1, + sym__immediate_decimal, + STATE(5879), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201109] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3884), 1, + ACTIONS(1550), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(3930), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(3932), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7887), 1, + ACTIONS(8207), 1, anon_sym_DOLLAR, - STATE(1589), 1, + STATE(3524), 1, sym__immediate_decimal, - STATE(5275), 1, + STATE(5298), 1, sym_comment, - ACTIONS(3928), 2, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1588), 2, + STATE(3401), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201023] = 4, - ACTIONS(3), 1, + [201142] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5276), 1, + STATE(5299), 1, sym_comment, - ACTIONS(1565), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1567), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201043] = 10, + ACTIONS(7913), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201161] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6092), 1, + ACTIONS(8364), 1, + aux_sym__immediate_decimal_token2, + STATE(5300), 1, + sym_comment, + ACTIONS(1520), 3, anon_sym_DOLLAR, - ACTIONS(8273), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1518), 5, sym_identifier, - ACTIONS(8421), 1, - anon_sym_DASH_DASH, - ACTIONS(8423), 1, - anon_sym_DASH, - STATE(5277), 1, - sym_comment, - STATE(5319), 1, - sym_val_variable, - STATE(5827), 1, - sym__variable_name, - STATE(6648), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [201075] = 5, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [201183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8470), 1, - aux_sym__immediate_decimal_token2, - STATE(5278), 1, + STATE(5301), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1554), 3, anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT2, - ACTIONS(1499), 5, + aux_sym__unquoted_in_record_token2, + ACTIONS(1556), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [201097] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6732), 1, - anon_sym_DOLLAR, - ACTIONS(6736), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6738), 1, - aux_sym__immediate_decimal_token5, - STATE(4177), 1, - sym__immediate_decimal, - STATE(5279), 1, - sym_comment, - ACTIONS(6734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4502), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201127] = 4, + [201203] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5280), 1, + STATE(5302), 1, sym_comment, - ACTIONS(1639), 3, + ACTIONS(1653), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1641), 6, + ACTIONS(1655), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [201147] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5401), 1, - anon_sym_DOLLAR, - ACTIONS(5403), 1, - anon_sym_LPAREN2, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5500), 1, - aux_sym__immediate_decimal_token5, - STATE(3019), 1, - sym__immediate_decimal, - STATE(5281), 1, - sym_comment, - ACTIONS(5496), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3018), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201177] = 4, + [201223] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5282), 1, - sym_comment, - ACTIONS(1641), 3, + ACTIONS(1572), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1639), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(4512), 1, anon_sym_DOT_DOT2, + ACTIONS(8350), 1, + aux_sym_unquoted_token2, + ACTIONS(8536), 1, sym_filesize_unit, + ACTIONS(8538), 1, sym_duration_unit, - aux_sym_unquoted_token2, - [201197] = 9, + STATE(5303), 1, + sym_comment, + ACTIONS(1560), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201253] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(8540), 1, anon_sym_DOLLAR, - ACTIONS(6718), 1, + ACTIONS(8542), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6720), 1, + ACTIONS(8544), 1, aux_sym__immediate_decimal_token5, - STATE(4141), 1, - sym__immediate_decimal, - STATE(5283), 1, + STATE(5304), 1, sym_comment, - ACTIONS(6716), 2, + STATE(5937), 1, + sym__immediate_decimal, + ACTIONS(7827), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(5687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201227] = 9, + [201283] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6848), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(6856), 1, + ACTIONS(8542), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6858), 1, + ACTIONS(8544), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, + ACTIONS(8546), 1, anon_sym_DOLLAR, - STATE(5066), 1, - sym__immediate_decimal, - STATE(5284), 1, + STATE(5305), 1, sym_comment, - ACTIONS(6987), 2, + STATE(7294), 1, + sym__immediate_decimal, + ACTIONS(8067), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5065), 2, + STATE(2922), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201257] = 9, + [201313] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(6770), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(8548), 1, + anon_sym_DOLLAR, + ACTIONS(8550), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4013), 1, + ACTIONS(8552), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8107), 1, - anon_sym_DOLLAR, - STATE(1788), 1, + STATE(4594), 1, sym__immediate_decimal, - STATE(5285), 1, + STATE(5306), 1, sym_comment, - ACTIONS(4009), 2, + ACTIONS(6814), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1787), 2, + STATE(4926), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201287] = 9, + [201343] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(8584), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8588), 1, - anon_sym_DOLLAR, - STATE(5286), 1, + ACTIONS(8554), 1, + anon_sym_EQ2, + ACTIONS(8556), 1, + sym_short_flag_identifier, + STATE(5307), 1, sym_comment, - STATE(6757), 1, - sym__immediate_decimal, - ACTIONS(8111), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7083), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201317] = 9, + ACTIONS(4781), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4783), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201367] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6848), 1, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(6910), 1, + ACTIONS(8558), 1, anon_sym_DOLLAR, - ACTIONS(6916), 1, + ACTIONS(8560), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6918), 1, + ACTIONS(8562), 1, aux_sym__immediate_decimal_token5, - STATE(4623), 1, + STATE(4306), 1, sym__immediate_decimal, - STATE(5287), 1, + STATE(5308), 1, sym_comment, - ACTIONS(6914), 2, + ACTIONS(6758), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5067), 2, + STATE(4704), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201347] = 9, + [201397] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5359), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8618), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - ACTIONS(8622), 1, + ACTIONS(8005), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8624), 1, + ACTIONS(8007), 1, aux_sym__immediate_decimal_token5, - STATE(2858), 1, - sym__immediate_decimal, - STATE(5288), 1, + STATE(5309), 1, sym_comment, - ACTIONS(8620), 2, + STATE(6656), 1, + sym__immediate_decimal, + ACTIONS(8003), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2926), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201377] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5289), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201397] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - anon_sym_DASH, - STATE(5290), 1, - sym_comment, - ACTIONS(1349), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201417] = 9, + [201427] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5359), 1, + ACTIONS(6770), 1, anon_sym_LPAREN2, - ACTIONS(8618), 1, + ACTIONS(8548), 1, anon_sym_DOLLAR, - ACTIONS(8626), 1, + ACTIONS(8564), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8628), 1, + ACTIONS(8566), 1, aux_sym__immediate_decimal_token5, - STATE(2830), 1, + STATE(4998), 1, sym__immediate_decimal, - STATE(5291), 1, + STATE(5310), 1, sym_comment, - ACTIONS(8369), 2, + ACTIONS(6838), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2862), 2, + STATE(4993), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201447] = 9, + [201457] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(8584), 1, + ACTIONS(8546), 1, + anon_sym_DOLLAR, + ACTIONS(8568), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8586), 1, + ACTIONS(8570), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8588), 1, - anon_sym_DOLLAR, - STATE(5292), 1, + STATE(5311), 1, sym_comment, - STATE(7082), 1, + STATE(6544), 1, sym__immediate_decimal, - ACTIONS(8111), 2, + ACTIONS(8051), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7081), 2, + STATE(2899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201477] = 9, + [201487] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1591), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(1599), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1601), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - STATE(491), 1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + STATE(3417), 1, sym__immediate_decimal, - STATE(5293), 1, + STATE(5312), 1, sym_comment, - ACTIONS(1597), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(641), 2, + STATE(3415), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201507] = 9, + [201517] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1591), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(1682), 1, + ACTIONS(8542), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1684), 1, + ACTIONS(8544), 1, aux_sym__immediate_decimal_token5, - STATE(591), 1, - sym__immediate_decimal, - STATE(5294), 1, + ACTIONS(8546), 1, + anon_sym_DOLLAR, + STATE(5313), 1, sym_comment, - ACTIONS(1680), 2, + STATE(7337), 1, + sym__immediate_decimal, + ACTIONS(8067), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(629), 2, + STATE(2899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201537] = 8, - ACTIONS(247), 1, + [201547] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token2, - ACTIONS(8630), 1, - anon_sym_DOT_DOT2, - ACTIONS(8634), 1, - sym_filesize_unit, - ACTIONS(8636), 1, - sym_duration_unit, - STATE(5295), 1, + ACTIONS(8419), 1, + aux_sym__immediate_decimal_token2, + STATE(5314), 1, sym_comment, - ACTIONS(8632), 2, + ACTIONS(1667), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201565] = 9, + sym__entry_separator, + [201569] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - anon_sym_DASH_DASH, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - ACTIONS(8638), 1, - sym_filesize_unit, - ACTIONS(8640), 1, - sym_duration_unit, - STATE(5296), 1, + ACTIONS(1022), 1, + anon_sym_DASH, + ACTIONS(8572), 1, + anon_sym_QMARK2, + STATE(5315), 1, sym_comment, - ACTIONS(1575), 2, + ACTIONS(1024), 7, + anon_sym_EQ, sym_identifier, - anon_sym_DASH, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201595] = 9, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [201591] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1541), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(8642), 1, + ACTIONS(8546), 1, anon_sym_DOLLAR, - ACTIONS(8644), 1, + ACTIONS(8574), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8646), 1, + ACTIONS(8576), 1, aux_sym__immediate_decimal_token5, - STATE(422), 1, - sym__immediate_decimal, - STATE(5297), 1, + STATE(5316), 1, sym_comment, - ACTIONS(8399), 2, + STATE(6426), 1, + sym__immediate_decimal, + ACTIONS(8059), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(570), 2, + STATE(2899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201625] = 9, + [201621] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1541), 1, + ACTIONS(6730), 1, anon_sym_LPAREN2, - ACTIONS(8642), 1, + ACTIONS(8558), 1, anon_sym_DOLLAR, - ACTIONS(8650), 1, + ACTIONS(8578), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8652), 1, + ACTIONS(8580), 1, aux_sym__immediate_decimal_token5, - STATE(569), 1, + STATE(4703), 1, sym__immediate_decimal, - STATE(5298), 1, + STATE(5317), 1, sym_comment, - ACTIONS(8648), 2, + ACTIONS(6810), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(568), 2, + STATE(4700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201655] = 6, + [201651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8654), 1, + ACTIONS(8582), 1, anon_sym_DOT, - ACTIONS(8656), 1, + ACTIONS(8584), 1, aux_sym__immediate_decimal_token2, - STATE(5299), 1, + STATE(5318), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1667), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1645), 4, + ACTIONS(1669), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201675] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8586), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8588), 1, + aux_sym__immediate_decimal_token2, + STATE(5319), 1, + sym_comment, + ACTIONS(1659), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1661), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201679] = 9, + [201699] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5417), 1, anon_sym_DOLLAR, - ACTIONS(6301), 1, + ACTIONS(5419), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(5425), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(5427), 1, aux_sym__immediate_decimal_token5, - STATE(3530), 1, + STATE(3008), 1, sym__immediate_decimal, - STATE(5300), 1, + STATE(5320), 1, sym_comment, - ACTIONS(6305), 2, + ACTIONS(5423), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3529), 2, + STATE(3086), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201709] = 5, + [201729] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8658), 1, - aux_sym__immediate_decimal_token2, - STATE(5301), 1, + ACTIONS(8590), 1, + anon_sym_DOT, + STATE(5558), 1, + sym_path, + STATE(5321), 2, sym_comment, - ACTIONS(1565), 3, + aux_sym_cell_path_repeat1, + ACTIONS(1015), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT2, - ACTIONS(1567), 5, + ACTIONS(1017), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [201731] = 9, + [201753] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(3889), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(3891), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, + ACTIONS(7857), 1, anon_sym_DOLLAR, - STATE(1788), 1, + STATE(1480), 1, sym__immediate_decimal, - STATE(5302), 1, + STATE(5322), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(3887), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1787), 2, + STATE(1575), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201761] = 9, + [201783] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, + ACTIONS(3883), 1, anon_sym_LPAREN2, - ACTIONS(6307), 1, + ACTIONS(3939), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, + ACTIONS(3941), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6336), 1, + ACTIONS(7857), 1, anon_sym_DOLLAR, - STATE(3775), 1, + STATE(1574), 1, sym__immediate_decimal, - STATE(5303), 1, + STATE(5323), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(3937), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1789), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201791] = 9, + [201813] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6080), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + ACTIONS(6726), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6728), 1, aux_sym__immediate_decimal_token5, - STATE(3421), 1, + STATE(4223), 1, sym__immediate_decimal, - STATE(5304), 1, + STATE(5324), 1, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6724), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3310), 2, + STATE(4535), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201821] = 9, + [201843] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(5417), 1, + anon_sym_DOLLAR, + ACTIONS(5419), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(5496), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(5498), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - STATE(3474), 1, + STATE(3035), 1, sym__immediate_decimal, - STATE(5305), 1, + STATE(5325), 1, sym_comment, - ACTIONS(8363), 2, + ACTIONS(5494), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(3027), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201851] = 5, - ACTIONS(3), 1, + [201873] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8660), 1, + ACTIONS(8593), 1, + anon_sym_DOT, + ACTIONS(8595), 1, aux_sym__immediate_decimal_token2, - STATE(5306), 1, + STATE(5326), 1, sym_comment, - ACTIONS(1705), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1667), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 4, + aux_sym_unquoted_token2, + ACTIONS(1669), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201873] = 9, + [201897] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(3942), 1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(6708), 1, aux_sym__immediate_decimal_token4, - ACTIONS(3944), 1, + ACTIONS(6710), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8107), 1, + STATE(4132), 1, + sym__immediate_decimal, + STATE(5327), 1, + sym_comment, + ACTIONS(6706), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3395), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201927] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6860), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6862), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6894), 1, anon_sym_DOLLAR, - STATE(1539), 1, + STATE(5097), 1, sym__immediate_decimal, - STATE(5307), 1, + STATE(5328), 1, sym_comment, - ACTIONS(3940), 2, + ACTIONS(6951), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1789), 2, + STATE(5096), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201903] = 4, + [201957] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5308), 1, + ACTIONS(8597), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8599), 1, + aux_sym__immediate_decimal_token2, + STATE(5329), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1659), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 7, + ACTIONS(1661), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201923] = 6, + [201981] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8662), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8664), 1, - aux_sym__immediate_decimal_token2, - STATE(5309), 1, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(6894), 1, + anon_sym_DOLLAR, + ACTIONS(6900), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6902), 1, + aux_sym__immediate_decimal_token5, + STATE(4798), 1, + sym__immediate_decimal, + STATE(5330), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 5, - sym__newline, - aux_sym_ctrl_match_token1, + ACTIONS(6898), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5098), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202011] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5395), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201947] = 5, - ACTIONS(3), 1, + ACTIONS(8601), 1, + anon_sym_DOLLAR, + ACTIONS(8605), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8607), 1, + aux_sym__immediate_decimal_token5, + STATE(2933), 1, + sym__immediate_decimal, + STATE(5331), 1, + sym_comment, + ACTIONS(8603), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2936), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202041] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8666), 1, - anon_sym_QMARK2, - STATE(5310), 1, + ACTIONS(8609), 1, + aux_sym__immediate_decimal_token2, + STATE(5332), 1, sym_comment, - ACTIONS(1036), 3, + ACTIONS(1556), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1034), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, + ACTIONS(1554), 5, + sym_identifier, anon_sym_DOT_DOT2, - anon_sym_DOT, - [201969] = 9, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [202063] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(5395), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(8601), 1, + anon_sym_DOLLAR, + ACTIONS(8611), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8613), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, - anon_sym_DOLLAR, - STATE(3466), 1, + STATE(2883), 1, sym__immediate_decimal, - STATE(5311), 1, + STATE(5333), 1, sym_comment, - ACTIONS(8363), 2, + ACTIONS(8385), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3344), 2, + STATE(2899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201999] = 6, + [202093] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8668), 1, - sym_long_flag_identifier, - ACTIONS(8670), 1, - anon_sym_EQ2, - STATE(5312), 1, + ACTIONS(1590), 1, + anon_sym_DOLLAR, + ACTIONS(1592), 1, + anon_sym_LPAREN2, + ACTIONS(1628), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1630), 1, + aux_sym__immediate_decimal_token5, + STATE(636), 1, + sym__immediate_decimal, + STATE(5334), 1, sym_comment, - ACTIONS(4735), 2, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4737), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [202023] = 9, + ACTIONS(1626), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(635), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202123] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, + ACTIONS(6301), 1, anon_sym_DOLLAR, - STATE(3466), 1, + STATE(3817), 1, sym__immediate_decimal, - STATE(5313), 1, + STATE(5335), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(6346), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3344), 2, + STATE(1901), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202053] = 4, + [202153] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8674), 1, - anon_sym_DASH, - STATE(5314), 1, + ACTIONS(1590), 1, + anon_sym_DOLLAR, + ACTIONS(1592), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1600), 1, + aux_sym__immediate_decimal_token5, + STATE(542), 1, + sym__immediate_decimal, + STATE(5336), 1, sym_comment, - ACTIONS(8672), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - [202073] = 9, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202183] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(1510), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, + ACTIONS(8615), 1, anon_sym_DOLLAR, - ACTIONS(8676), 1, + ACTIONS(8619), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8678), 1, + ACTIONS(8621), 1, aux_sym__immediate_decimal_token5, - STATE(5315), 1, - sym_comment, - STATE(7144), 1, + STATE(601), 1, sym__immediate_decimal, - ACTIONS(8123), 2, + STATE(5337), 1, + sym_comment, + ACTIONS(8617), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2859), 2, + STATE(600), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202103] = 6, + [202213] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8680), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8682), 1, - aux_sym__immediate_decimal_token2, - STATE(5316), 1, + ACTIONS(1510), 1, + anon_sym_LPAREN2, + ACTIONS(8615), 1, + anon_sym_DOLLAR, + ACTIONS(8623), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8625), 1, + aux_sym__immediate_decimal_token5, + STATE(491), 1, + sym__immediate_decimal, + STATE(5338), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202127] = 4, + ACTIONS(8415), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(602), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202243] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5317), 1, + STATE(5339), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1520), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 6, + ACTIONS(1518), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [202147] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8684), 1, - anon_sym_QMARK2, - STATE(5318), 1, - sym_comment, - ACTIONS(1030), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1028), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202169] = 4, + [202263] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8688), 1, - anon_sym_DASH, - STATE(5319), 1, + ACTIONS(8627), 1, + sym_long_flag_identifier, + ACTIONS(8629), 1, + anon_sym_EQ2, + STATE(5340), 1, sym_comment, - ACTIONS(8686), 8, - anon_sym_EQ, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4810), 5, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - [202189] = 5, + [202287] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8690), 1, - aux_sym__immediate_decimal_token2, - STATE(5320), 1, + STATE(5341), 1, sym_comment, - ACTIONS(1567), 3, - anon_sym_DOLLAR, + ACTIONS(1542), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 5, + ACTIONS(1540), 6, sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [202211] = 6, + [202307] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8692), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8694), 1, + ACTIONS(8452), 1, aux_sym__immediate_decimal_token2, - STATE(5321), 1, + STATE(5342), 1, sym_comment, - ACTIONS(1631), 3, - anon_sym_RBRACE, + ACTIONS(1518), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1633), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1520), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202235] = 9, + sym_filesize_unit, + sym_duration_unit, + [202329] = 10, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(8492), 1, + anon_sym_DASH_DASH, + ACTIONS(8494), 1, + anon_sym_DASH, + STATE(5343), 1, + sym_comment, + STATE(5366), 1, + sym_val_variable, + STATE(5662), 1, + sym__variable_name, + STATE(6398), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [202361] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(8107), 1, + anon_sym_DOLLAR, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - STATE(3474), 1, - sym__immediate_decimal, - STATE(5322), 1, + STATE(5344), 1, sym_comment, - ACTIONS(6094), 2, + STATE(6187), 1, + sym__immediate_decimal, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(6189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202265] = 9, + [202391] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8678), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(2858), 1, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + STATE(3525), 1, sym__immediate_decimal, - STATE(5323), 1, + STATE(5345), 1, sym_comment, - ACTIONS(8123), 2, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2926), 2, + STATE(3398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202295] = 4, + [202421] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5324), 1, + STATE(5346), 1, sym_comment, - ACTIONS(1499), 3, - anon_sym_DASH_DASH, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 6, - sym_identifier, + sym_filesize_unit, + sym_duration_unit, + [202441] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1311), 1, anon_sym_DASH, + STATE(5347), 1, + sym_comment, + ACTIONS(1307), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202461] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(4533), 1, + sym__immediate_decimal, + STATE(5348), 1, + sym_comment, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4530), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202491] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5349), 1, + sym_comment, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [202315] = 9, + [202511] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6740), 1, - anon_sym_LPAREN2, - ACTIONS(8606), 1, + ACTIONS(6289), 1, anon_sym_DOLLAR, - ACTIONS(8696), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8698), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - STATE(4313), 1, + STATE(3721), 1, sym__immediate_decimal, - STATE(5325), 1, + STATE(5350), 1, sym_comment, - ACTIONS(6774), 2, + ACTIONS(6295), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4753), 2, + STATE(3719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202345] = 9, + [202541] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - ACTIONS(8049), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8051), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5326), 1, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + STATE(3417), 1, + sym__immediate_decimal, + STATE(5351), 1, sym_comment, - STATE(6954), 1, + ACTIONS(8328), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3415), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202571] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8207), 1, + anon_sym_DOLLAR, + STATE(3509), 1, sym__immediate_decimal, - ACTIONS(8047), 2, + STATE(5352), 1, + sym_comment, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202375] = 4, + [202601] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token2, + STATE(5353), 1, + sym_comment, + ACTIONS(1721), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [202623] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5327), 1, + STATE(5354), 1, sym_comment, - ACTIONS(1639), 2, + ACTIONS(1554), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1641), 7, + ACTIONS(1556), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -383332,116 +388734,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202395] = 9, + [202643] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6792), 1, + STATE(5355), 1, + sym_comment, + ACTIONS(1653), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [202663] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(8700), 1, - anon_sym_DOLLAR, - ACTIONS(8702), 1, + ACTIONS(6297), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8704), 1, + ACTIONS(6299), 1, aux_sym__immediate_decimal_token5, - STATE(4883), 1, + ACTIONS(6301), 1, + anon_sym_DOLLAR, + STATE(1875), 1, sym__immediate_decimal, - STATE(5328), 1, + STATE(5356), 1, sym_comment, - ACTIONS(6860), 2, + ACTIONS(6346), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4880), 2, + STATE(1874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202425] = 9, + [202693] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8700), 1, - anon_sym_DOLLAR, - ACTIONS(8706), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8708), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - STATE(4492), 1, + ACTIONS(7837), 1, + anon_sym_DOLLAR, + STATE(3509), 1, sym__immediate_decimal, - STATE(5329), 1, + STATE(5357), 1, sym_comment, - ACTIONS(6810), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4935), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202455] = 10, + [202723] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6092), 1, + ACTIONS(6291), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6299), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6301), 1, anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8421), 1, - anon_sym_DASH_DASH, - ACTIONS(8423), 1, - anon_sym_DASH, - STATE(5319), 1, - sym_val_variable, - STATE(5330), 1, + STATE(3815), 1, + sym__immediate_decimal, + STATE(5358), 1, sym_comment, - STATE(5872), 1, - sym__variable_name, - STATE(6661), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [202487] = 5, + ACTIONS(6346), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1876), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202753] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1034), 1, + ACTIONS(8635), 1, anon_sym_DASH, - ACTIONS(8710), 1, - anon_sym_QMARK2, - STATE(5331), 1, + STATE(5359), 1, sym_comment, - ACTIONS(1036), 7, + ACTIONS(8633), 8, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT, - [202509] = 9, + anon_sym_in, + anon_sym_RBRACE, + [202773] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token2, + STATE(5360), 1, + sym_comment, + ACTIONS(1554), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [202795] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8242), 1, + ACTIONS(8207), 1, anon_sym_DOLLAR, - ACTIONS(8246), 1, + ACTIONS(8211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, + ACTIONS(8213), 1, aux_sym__immediate_decimal_token5, - STATE(5332), 1, + STATE(5361), 1, sym_comment, - STATE(7447), 1, + STATE(7324), 1, sym__immediate_decimal, - ACTIONS(8244), 2, + ACTIONS(8209), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202539] = 5, + [202825] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, + ACTIONS(8639), 1, + anon_sym_DOT_DOT2, + ACTIONS(8643), 1, + sym_filesize_unit, + ACTIONS(8645), 1, + sym_duration_unit, + STATE(5362), 1, + sym_comment, + ACTIONS(8641), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202853] = 5, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1028), 1, anon_sym_DASH, - ACTIONS(8712), 1, + ACTIONS(8647), 1, anon_sym_QMARK2, - STATE(5333), 1, + STATE(5363), 1, sym_comment, ACTIONS(1030), 7, anon_sym_EQ, @@ -383451,3991 +388904,4044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT, - [202561] = 9, + [202875] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(6070), 1, anon_sym_DOLLAR, - ACTIONS(5403), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(5409), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5411), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - STATE(2946), 1, + STATE(3491), 1, sym__immediate_decimal, - STATE(5334), 1, + STATE(5364), 1, + sym_comment, + ACTIONS(6076), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3367), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202905] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5365), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1520), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [202925] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8651), 1, + anon_sym_DASH, + STATE(5366), 1, + sym_comment, + ACTIONS(8649), 8, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + [202945] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3545), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + STATE(5367), 1, + sym_comment, + STATE(6586), 1, + sym__immediate_decimal, + ACTIONS(6076), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5879), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202975] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7837), 1, + anon_sym_DOLLAR, + STATE(3525), 1, + sym__immediate_decimal, + STATE(5368), 1, + sym_comment, + ACTIONS(6084), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3398), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203005] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7837), 1, + anon_sym_DOLLAR, + STATE(3417), 1, + sym__immediate_decimal, + STATE(5369), 1, sym_comment, - ACTIONS(5407), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3020), 2, + STATE(3415), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202591] = 9, + [203035] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3483), 1, + ACTIONS(6070), 1, anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5335), 1, + STATE(5370), 1, sym_comment, - STATE(6643), 1, + STATE(6057), 1, sym__immediate_decimal, - ACTIONS(6086), 2, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5874), 2, + STATE(6055), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202621] = 9, + [203065] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - STATE(3466), 1, + STATE(3525), 1, sym__immediate_decimal, - STATE(5336), 1, + STATE(5371), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3344), 2, + STATE(3398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202651] = 9, + [203095] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(3925), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(3931), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(3933), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7839), 1, + ACTIONS(8043), 1, anon_sym_DOLLAR, - STATE(3381), 1, + STATE(1511), 1, sym__immediate_decimal, - STATE(5337), 1, + STATE(5372), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(3929), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3380), 2, + STATE(1876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202681] = 6, + [203125] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8478), 1, + anon_sym_DOT, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5373), 1, + sym_comment, + STATE(5558), 1, + sym_path, + ACTIONS(1011), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1013), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [203151] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8714), 1, + ACTIONS(8653), 1, anon_sym_DOT, - ACTIONS(8716), 1, + ACTIONS(8655), 1, aux_sym__immediate_decimal_token2, - STATE(5338), 1, + STATE(5374), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 5, + ACTIONS(1520), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [203175] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5375), 1, + sym_comment, + ACTIONS(1556), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1554), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [203195] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8657), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8659), 1, + aux_sym__immediate_decimal_token2, + STATE(5376), 1, + sym_comment, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [203219] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8661), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8663), 1, + aux_sym__immediate_decimal_token2, + STATE(5377), 1, + sym_comment, + ACTIONS(1659), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1661), 5, sym__newline, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202705] = 9, + [203243] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6080), 1, - anon_sym_DOLLAR, - ACTIONS(6082), 1, + ACTIONS(3925), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(4099), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(4101), 1, aux_sym__immediate_decimal_token5, - STATE(5339), 1, - sym_comment, - STATE(6087), 1, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + STATE(1875), 1, sym__immediate_decimal, - ACTIONS(8171), 2, + STATE(5378), 1, + sym_comment, + ACTIONS(4097), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6086), 2, + STATE(1874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202735] = 9, + [203273] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - STATE(3381), 1, + STATE(3417), 1, sym__immediate_decimal, - STATE(5340), 1, + STATE(5379), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3380), 2, + STATE(3415), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202765] = 9, + [203303] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8676), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8678), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(5341), 1, - sym_comment, - STATE(6757), 1, + STATE(3509), 1, sym__immediate_decimal, - ACTIONS(8123), 2, + STATE(5380), 1, + sym_comment, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2862), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202795] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8444), 1, - aux_sym__immediate_decimal_token2, - STATE(5342), 1, - sym_comment, - ACTIONS(1499), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [202817] = 9, + [203333] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(7823), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(8542), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6090), 1, + ACTIONS(8544), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6092), 1, + ACTIONS(8546), 1, anon_sym_DOLLAR, - STATE(3474), 1, + STATE(2933), 1, sym__immediate_decimal, - STATE(5343), 1, + STATE(5381), 1, sym_comment, - ACTIONS(6094), 2, + ACTIONS(8067), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(2936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202847] = 9, + [203363] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_DOLLAR, - ACTIONS(8718), 1, + ACTIONS(6078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8720), 1, + ACTIONS(6080), 1, aux_sym__immediate_decimal_token5, - STATE(5344), 1, - sym_comment, - STATE(6645), 1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + STATE(3509), 1, sym__immediate_decimal, - ACTIONS(8021), 2, + STATE(5382), 1, + sym_comment, + ACTIONS(6084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2862), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202877] = 4, - ACTIONS(3), 1, + [203393] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5345), 1, + ACTIONS(8665), 1, + anon_sym_DOT, + ACTIONS(8667), 1, + aux_sym__immediate_decimal_token2, + STATE(5383), 1, sym_comment, - ACTIONS(1042), 3, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1040), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202897] = 9, + [203417] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8115), 1, aux_sym__immediate_decimal_token5, - STATE(3381), 1, + STATE(3525), 1, sym__immediate_decimal, - STATE(5346), 1, + STATE(5384), 1, sym_comment, - ACTIONS(8363), 2, + ACTIONS(8328), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3380), 2, + STATE(3398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202927] = 9, + [203447] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5385), 1, + sym_comment, + ACTIONS(1540), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1542), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [203467] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - ACTIONS(8173), 1, + ACTIONS(7841), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(7843), 1, aux_sym__immediate_decimal_token5, - STATE(3474), 1, - sym__immediate_decimal, - STATE(5347), 1, + STATE(5386), 1, sym_comment, - ACTIONS(8363), 2, + STATE(6084), 1, + sym__immediate_decimal, + ACTIONS(7839), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3383), 2, + STATE(3395), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202957] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8578), 1, - aux_sym__immediate_decimal_token2, - STATE(5348), 1, - sym_comment, - ACTIONS(1497), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202979] = 4, - ACTIONS(3), 1, + [203497] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5349), 1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(8492), 1, + anon_sym_DASH_DASH, + ACTIONS(8494), 1, + anon_sym_DASH, + STATE(5366), 1, + sym_val_variable, + STATE(5387), 1, sym_comment, - ACTIONS(1050), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1048), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202999] = 4, + STATE(5634), 1, + sym__variable_name, + STATE(6613), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [203529] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5350), 1, + STATE(5388), 1, sym_comment, - ACTIONS(1567), 3, + ACTIONS(1655), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 6, + ACTIONS(1653), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [203019] = 9, + [203549] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8242), 1, + ACTIONS(4992), 1, + anon_sym_DASH, + STATE(5389), 1, + sym_comment, + ACTIONS(4990), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [203568] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5034), 1, + anon_sym_DASH, + STATE(5390), 1, + sym_comment, + ACTIONS(5032), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [203587] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + sym_identifier, + ACTIONS(1572), 1, anon_sym_DOLLAR, - STATE(3381), 1, - sym__immediate_decimal, - STATE(5351), 1, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(8350), 1, + aux_sym_unquoted_token2, + ACTIONS(8669), 1, + sym_filesize_unit, + ACTIONS(8671), 1, + sym_duration_unit, + STATE(5391), 1, sym_comment, - ACTIONS(8363), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3380), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203049] = 4, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203616] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5352), 1, + ACTIONS(8584), 1, + aux_sym__immediate_decimal_token2, + STATE(5392), 1, sym_comment, - ACTIONS(1497), 3, + ACTIONS(1667), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1499), 6, + ACTIONS(1669), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [203069] = 9, + [203637] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(3466), 1, - sym__immediate_decimal, - STATE(5353), 1, + ACTIONS(4131), 1, + anon_sym_DQUOTE, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_GT, + STATE(4744), 1, + sym__str_double_quotes, + STATE(5393), 1, sym_comment, - ACTIONS(8363), 2, + STATE(5520), 1, + aux_sym_collection_type_repeat1, + STATE(5550), 1, + sym_val_string, + ACTIONS(4133), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [203666] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8677), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3344), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203099] = 9, + ACTIONS(8679), 1, + aux_sym__immediate_decimal_token2, + STATE(5394), 1, + sym_comment, + ACTIONS(1659), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1661), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203689] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_LPAREN2, - ACTIONS(6307), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6309), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6732), 1, - anon_sym_DOLLAR, - STATE(4497), 1, - sym__immediate_decimal, - STATE(5354), 1, + ACTIONS(8681), 1, + aux_sym__immediate_decimal_token2, + STATE(5395), 1, sym_comment, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4495), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203129] = 9, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203710] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(4131), 1, + anon_sym_DQUOTE, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8683), 1, + anon_sym_GT, + STATE(4744), 1, + sym__str_double_quotes, + STATE(5396), 1, + sym_comment, + STATE(5405), 1, + aux_sym_collection_type_repeat1, + STATE(5550), 1, + sym_val_string, + ACTIONS(4133), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [203739] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token2, + STATE(5397), 1, + sym_comment, + ACTIONS(1721), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1723), 4, anon_sym_LPAREN2, - ACTIONS(8167), 1, - anon_sym_DOLLAR, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(5355), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [203760] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(1572), 1, + sym__space, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(6872), 1, + aux_sym_unquoted_token2, + ACTIONS(8687), 1, + sym_filesize_unit, + ACTIONS(8689), 1, + sym_duration_unit, + STATE(5398), 1, sym_comment, - STATE(6656), 1, - sym__immediate_decimal, - ACTIONS(8171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6211), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203159] = 9, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203789] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - ACTIONS(7843), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7845), 1, - aux_sym__immediate_decimal_token5, - STATE(5356), 1, + ACTIONS(8691), 1, + anon_sym_EQ2, + ACTIONS(8693), 1, + sym_short_flag_identifier, + STATE(5399), 1, sym_comment, - STATE(6654), 1, - sym__immediate_decimal, - ACTIONS(7841), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3383), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203189] = 9, + ACTIONS(4781), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4783), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [203812] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7825), 1, - anon_sym_LPAREN2, - ACTIONS(8582), 1, + ACTIONS(8695), 1, + anon_sym_DASH_DASH, + ACTIONS(8698), 1, + anon_sym_DASH, + STATE(5902), 1, + sym__flag, + ACTIONS(8247), 2, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8676), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8678), 1, - aux_sym__immediate_decimal_token5, - STATE(5357), 1, + STATE(5400), 2, sym_comment, - STATE(6036), 1, - sym__immediate_decimal, - ACTIONS(7847), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5820), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203219] = 8, + aux_sym_ctrl_do_repeat1, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [203837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, - sym__entry_separator, - ACTIONS(8722), 1, - anon_sym_DOT_DOT2, - ACTIONS(8726), 1, - sym_filesize_unit, - ACTIONS(8728), 1, - sym_duration_unit, - STATE(5358), 1, + STATE(5401), 1, sym_comment, - ACTIONS(1575), 2, + ACTIONS(1721), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - ACTIONS(8724), 2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [203856] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5402), 1, + sym_comment, + ACTIONS(1520), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203246] = 8, + ACTIONS(1518), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [203875] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(8703), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4797), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5359), 1, + STATE(5403), 1, sym_comment, - STATE(5465), 1, - sym_path, - ACTIONS(1971), 3, + ACTIONS(8701), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203273] = 8, + [203894] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(4988), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4886), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5360), 1, + STATE(5404), 1, sym_comment, - STATE(5465), 1, - sym_path, - ACTIONS(1841), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4986), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [203300] = 8, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [203913] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8730), 1, + ACTIONS(4131), 1, + anon_sym_DQUOTE, + ACTIONS(8673), 1, sym_identifier, - ACTIONS(8733), 1, + ACTIONS(8705), 1, anon_sym_GT, - ACTIONS(8735), 1, - anon_sym_DQUOTE, - STATE(4704), 1, + STATE(4744), 1, sym__str_double_quotes, - STATE(5623), 1, + STATE(5405), 1, + sym_comment, + STATE(5466), 1, + aux_sym_collection_type_repeat1, + STATE(5550), 1, sym_val_string, - ACTIONS(8738), 2, + ACTIONS(4133), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5361), 2, + [203942] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1832), 1, + anon_sym_DASH, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(4994), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5406), 1, sym_comment, - aux_sym_collection_type_repeat1, - [203327] = 5, + STATE(5513), 1, + sym_path, + ACTIONS(1834), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203969] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5407), 1, + sym_comment, + ACTIONS(1667), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [203988] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8741), 1, + ACTIONS(8667), 1, aux_sym__immediate_decimal_token2, - STATE(5362), 1, + STATE(5408), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1667), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1707), 5, + ACTIONS(1669), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203348] = 8, + [204009] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + STATE(5409), 1, + sym_comment, + ACTIONS(1542), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1540), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [204028] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1050), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4807), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5363), 1, + STATE(5410), 1, sym_comment, - STATE(5465), 1, - sym_path, - ACTIONS(1892), 3, + ACTIONS(1052), 7, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [203375] = 4, + anon_sym_DOT, + [204047] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5364), 1, + ACTIONS(1054), 1, + anon_sym_DASH, + STATE(5411), 1, sym_comment, - ACTIONS(1641), 3, + ACTIONS(1056), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [204066] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2504), 1, + sym_cell_path, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(5412), 1, + sym_comment, + ACTIONS(1677), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204091] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5413), 1, + sym_comment, + ACTIONS(1044), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1639), 5, - sym_identifier, + sym__entry_separator, + ACTIONS(1042), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [204110] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8595), 1, + aux_sym__immediate_decimal_token2, + STATE(5414), 1, + sym_comment, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204131] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8707), 1, + anon_sym_DOT, + ACTIONS(8709), 1, + aux_sym__immediate_decimal_token2, + STATE(5415), 1, + sym_comment, + ACTIONS(1667), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token2, - [203394] = 9, + ACTIONS(1669), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204154] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, - sym__newline, - ACTIONS(7738), 1, - sym__space, - ACTIONS(7740), 1, + ACTIONS(8711), 1, + anon_sym_QMARK2, + STATE(5416), 1, + sym_comment, + ACTIONS(1024), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1022), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [204175] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8713), 1, + anon_sym_QMARK2, + STATE(5417), 1, + sym_comment, + ACTIONS(1030), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1028), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [204196] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(5418), 1, + sym_comment, + ACTIONS(2229), 3, anon_sym_DASH_DASH, - ACTIONS(7742), 1, anon_sym_DASH, - STATE(5365), 1, - sym_comment, - STATE(5526), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7445), 1, - sym__flag, - STATE(4627), 2, - sym_short_flag, - sym_long_flag, - [203423] = 7, + anon_sym_as, + ACTIONS(2233), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204217] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1951), 1, + STATE(2022), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5366), 1, + STATE(5419), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1833), 4, + ACTIONS(1838), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203448] = 7, + [204242] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1952), 1, + STATE(1976), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5367), 1, + STATE(5420), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1837), 4, + ACTIONS(1842), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203473] = 7, + [204267] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1954), 1, + STATE(1981), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5368), 1, + STATE(5421), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1841), 4, + ACTIONS(1846), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203498] = 7, + [204292] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1955), 1, + STATE(1982), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5369), 1, + STATE(5422), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1845), 4, + ACTIONS(1850), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203523] = 7, + [204317] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1988), 1, + STATE(1984), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5370), 1, + STATE(5423), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203548] = 7, + [204342] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1958), 1, + STATE(1986), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5371), 1, + STATE(5424), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1853), 4, + ACTIONS(1858), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203573] = 7, + [204367] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1959), 1, + STATE(1989), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5372), 1, + STATE(5425), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1857), 4, + ACTIONS(1862), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203598] = 7, + [204392] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1963), 1, + STATE(1991), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5373), 1, + STATE(5426), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1861), 4, + ACTIONS(1866), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203623] = 7, + [204417] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1964), 1, + STATE(1992), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5374), 1, + STATE(5427), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1865), 4, + ACTIONS(1870), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203648] = 7, + [204442] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1966), 1, + STATE(1993), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5375), 1, + STATE(5428), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1869), 4, + ACTIONS(1874), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203673] = 7, + [204467] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1968), 1, + STATE(2026), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5376), 1, + STATE(5429), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1873), 4, + ACTIONS(1878), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203698] = 7, + [204492] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1969), 1, + STATE(1995), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5377), 1, + STATE(5430), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1877), 4, + ACTIONS(1882), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203723] = 7, + [204517] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1973), 1, + STATE(1997), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5378), 1, + STATE(5431), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1971), 4, + ACTIONS(1886), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203748] = 7, + [204542] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1975), 1, + STATE(1999), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5379), 1, + STATE(5432), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1892), 4, + ACTIONS(1890), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203773] = 7, + [204567] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1976), 1, + STATE(2000), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5380), 1, + STATE(5433), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1896), 4, + ACTIONS(1894), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203798] = 7, + [204592] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1977), 1, + STATE(2003), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5381), 1, + STATE(5434), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1939), 4, + ACTIONS(1898), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203823] = 7, + [204617] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1978), 1, + STATE(2006), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5382), 1, + STATE(5435), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1947), 4, + ACTIONS(1902), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203848] = 7, + [204642] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(1980), 1, + STATE(2007), 1, sym_cell_path, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5383), 1, + STATE(5436), 1, sym_comment, - STATE(5588), 1, + STATE(5555), 1, aux_sym_cell_path_repeat1, - ACTIONS(1951), 4, + ACTIONS(1906), 4, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - [203873] = 7, + [204667] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5437), 1, + sym_comment, + ACTIONS(1518), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [204686] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6363), 1, + sym_filesize_unit, + ACTIONS(6365), 1, + sym_duration_unit, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, + ACTIONS(8717), 1, + anon_sym_DOT_DOT2, + STATE(5438), 1, + sym_comment, + ACTIONS(1572), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8719), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204713] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(1681), 1, + STATE(1659), 1, sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(5384), 1, + STATE(2655), 1, + sym_path, + STATE(5439), 1, sym_comment, - ACTIONS(1959), 4, + ACTIONS(1914), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [203898] = 6, + [204738] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8745), 1, - sym_long_flag_identifier, - ACTIONS(8747), 1, - anon_sym_EQ2, - STATE(5385), 1, - sym_comment, - ACTIONS(4735), 2, + ACTIONS(4996), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(4737), 4, - ts_builtin_sym_end, + STATE(5440), 1, + sym_comment, + ACTIONS(4994), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [203921] = 7, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [204757] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(1686), 1, + STATE(1670), 1, sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(5386), 1, + STATE(2655), 1, + sym_path, + STATE(5441), 1, sym_comment, - ACTIONS(1963), 4, + ACTIONS(1826), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [203946] = 8, + [204782] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_DOT_DOT2, - ACTIONS(8749), 1, + ACTIONS(8721), 1, anon_sym_DOT, - STATE(1206), 1, + STATE(1212), 1, sym_path, - STATE(3091), 1, + STATE(3130), 1, sym_cell_path, - STATE(5387), 1, + STATE(5442), 1, sym_comment, - STATE(5602), 1, + STATE(5524), 1, aux_sym_cell_path_repeat1, - ACTIONS(1013), 3, - aux_sym_ctrl_match_token1, + ACTIONS(1007), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203973] = 8, + [204809] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1912), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4798), 1, - sym_cell_path, - STATE(5388), 1, - sym_comment, - ACTIONS(1959), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204000] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4869), 1, + STATE(4951), 1, sym_cell_path, - STATE(5389), 1, + STATE(5443), 1, sym_comment, - ACTIONS(1963), 3, + ACTIONS(1914), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204027] = 8, + anon_sym_LBRACE, + [204836] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1822), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4940), 1, - sym_cell_path, - STATE(5390), 1, - sym_comment, - ACTIONS(1833), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204054] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4885), 1, + STATE(4922), 1, sym_cell_path, - STATE(5391), 1, + STATE(5444), 1, sym_comment, - ACTIONS(1837), 3, + ACTIONS(1826), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204081] = 8, + anon_sym_LBRACE, + [204863] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(1836), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4886), 1, - sym_cell_path, - STATE(5392), 1, - sym_comment, - ACTIONS(1841), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204108] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_DASH, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4907), 1, + STATE(4977), 1, sym_cell_path, - STATE(5393), 1, + STATE(5445), 1, sym_comment, - ACTIONS(1845), 3, + ACTIONS(1838), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204135] = 8, + anon_sym_LBRACE, + [204890] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1840), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4911), 1, + STATE(2655), 1, + sym_path, + STATE(4818), 1, sym_cell_path, - STATE(5394), 1, + STATE(5446), 1, sym_comment, - ACTIONS(1849), 3, + ACTIONS(1842), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204162] = 8, + anon_sym_LBRACE, + [204917] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1844), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4923), 1, + STATE(2655), 1, + sym_path, + STATE(4828), 1, sym_cell_path, - STATE(5395), 1, + STATE(5447), 1, sym_comment, - ACTIONS(1853), 3, + ACTIONS(1846), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204189] = 8, + anon_sym_LBRACE, + [204944] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1848), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4925), 1, + STATE(2655), 1, + sym_path, + STATE(4894), 1, sym_cell_path, - STATE(5396), 1, + STATE(5448), 1, sym_comment, - ACTIONS(1857), 3, + ACTIONS(1850), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204216] = 8, + anon_sym_LBRACE, + [204971] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1852), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4926), 1, + STATE(2655), 1, + sym_path, + STATE(4896), 1, sym_cell_path, - STATE(5397), 1, + STATE(5449), 1, sym_comment, - ACTIONS(1861), 3, + ACTIONS(1854), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204243] = 8, + anon_sym_LBRACE, + [204998] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(1856), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(2655), 1, + sym_path, + STATE(4898), 1, sym_cell_path, - STATE(5398), 1, + STATE(5450), 1, sym_comment, - ACTIONS(1865), 3, + ACTIONS(1858), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204270] = 8, + anon_sym_LBRACE, + [205025] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1860), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4772), 1, + STATE(2655), 1, + sym_path, + STATE(4901), 1, sym_cell_path, - STATE(5399), 1, + STATE(5451), 1, sym_comment, - ACTIONS(1869), 3, + ACTIONS(1862), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204297] = 8, + anon_sym_LBRACE, + [205052] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1864), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4777), 1, + STATE(2655), 1, + sym_path, + STATE(4918), 1, sym_cell_path, - STATE(5400), 1, + STATE(5452), 1, sym_comment, - ACTIONS(1873), 3, + ACTIONS(1866), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204324] = 8, + anon_sym_LBRACE, + [205079] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1912), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(4791), 1, + STATE(4951), 1, sym_cell_path, - STATE(5401), 1, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5453), 1, sym_comment, - ACTIONS(1877), 3, + STATE(5513), 1, + sym_path, + ACTIONS(1914), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204351] = 8, + [205106] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1868), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4797), 1, + STATE(2655), 1, + sym_path, + STATE(4927), 1, sym_cell_path, - STATE(5402), 1, + STATE(5454), 1, sym_comment, - ACTIONS(1971), 3, + ACTIONS(1870), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204378] = 8, + anon_sym_LBRACE, + [205133] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(1872), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(2655), 1, + sym_path, + STATE(4929), 1, sym_cell_path, - STATE(5403), 1, + STATE(5455), 1, sym_comment, - ACTIONS(1892), 3, + ACTIONS(1874), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204405] = 8, + anon_sym_LBRACE, + [205160] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(4131), 1, + anon_sym_DQUOTE, + ACTIONS(8673), 1, + sym_identifier, + ACTIONS(8723), 1, + anon_sym_GT, + STATE(4744), 1, + sym__str_double_quotes, + STATE(5456), 1, + sym_comment, + STATE(5480), 1, + aux_sym_collection_type_repeat1, + STATE(5550), 1, + sym_val_string, + ACTIONS(4133), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [205189] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4808), 1, + STATE(2655), 1, + sym_path, + STATE(4980), 1, sym_cell_path, - STATE(5404), 1, + STATE(5457), 1, sym_comment, - ACTIONS(1896), 3, + ACTIONS(1878), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204432] = 8, + anon_sym_LBRACE, + [205216] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4823), 1, + STATE(2655), 1, + sym_path, + STATE(4831), 1, sym_cell_path, - STATE(5405), 1, + STATE(5458), 1, sym_comment, - ACTIONS(1939), 3, + ACTIONS(1886), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204459] = 8, + anon_sym_LBRACE, + [205243] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1888), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4825), 1, + STATE(2655), 1, + sym_path, + STATE(4832), 1, sym_cell_path, - STATE(5406), 1, + STATE(5459), 1, sym_comment, - ACTIONS(1947), 3, + ACTIONS(1890), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204486] = 8, + anon_sym_LBRACE, + [205270] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1892), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4826), 1, + STATE(2655), 1, + sym_path, + STATE(4861), 1, sym_cell_path, - STATE(5407), 1, + STATE(5460), 1, sym_comment, - ACTIONS(1951), 3, + ACTIONS(1894), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204513] = 8, + anon_sym_LBRACE, + [205297] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1896), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4769), 1, + STATE(2655), 1, + sym_path, + STATE(4868), 1, sym_cell_path, - STATE(5408), 1, + STATE(5461), 1, sym_comment, - ACTIONS(1967), 3, + ACTIONS(1898), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204540] = 8, + anon_sym_LBRACE, + [205324] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1900), 1, anon_sym_DASH, - ACTIONS(5637), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(4906), 1, + STATE(2655), 1, + sym_path, + STATE(4869), 1, sym_cell_path, - STATE(5409), 1, + STATE(5462), 1, sym_comment, - ACTIONS(1881), 3, + ACTIONS(1902), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [204567] = 9, + anon_sym_LBRACE, + [205351] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - sym_identifier, - ACTIONS(1587), 1, - anon_sym_DOLLAR, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - ACTIONS(8751), 1, - sym_filesize_unit, - ACTIONS(8753), 1, - sym_duration_unit, - STATE(5410), 1, + ACTIONS(1904), 1, + anon_sym_DASH, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(4879), 1, + sym_cell_path, + STATE(5463), 1, sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204596] = 4, + ACTIONS(1906), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205378] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5411), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(5464), 1, sym_comment, - ACTIONS(1705), 4, - anon_sym_RBRACK, + ACTIONS(2237), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2241), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204615] = 8, + [205399] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1828), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(4940), 1, - sym_cell_path, - STATE(5211), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(5412), 1, - sym_comment, - STATE(5465), 1, + STATE(2655), 1, sym_path, - ACTIONS(1833), 3, - sym_identifier, + STATE(4900), 1, + sym_cell_path, + STATE(5465), 1, + sym_comment, + ACTIONS(1830), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [204642] = 8, + anon_sym_LBRACE, + [205426] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(8725), 1, + sym_identifier, + ACTIONS(8728), 1, + anon_sym_GT, + ACTIONS(8730), 1, + anon_sym_DQUOTE, + STATE(4744), 1, + sym__str_double_quotes, + STATE(5550), 1, + sym_val_string, + ACTIONS(8733), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5466), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [205453] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1822), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4808), 1, + STATE(4922), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5413), 1, + STATE(5467), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1896), 3, + ACTIONS(1826), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [204669] = 8, + [205480] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1832), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(4823), 1, - sym_cell_path, - STATE(5211), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(5414), 1, - sym_comment, - STATE(5465), 1, + STATE(2655), 1, sym_path, - ACTIONS(1939), 3, - sym_identifier, + STATE(4994), 1, + sym_cell_path, + STATE(5468), 1, + sym_comment, + ACTIONS(1834), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [204696] = 8, + anon_sym_LBRACE, + [205507] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(8736), 1, + anon_sym_DASH_DASH, + ACTIONS(8739), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4825), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5415), 1, - sym_comment, - STATE(5465), 1, - sym_path, - ACTIONS(1947), 3, - sym_identifier, + STATE(5902), 1, + sym__flag, + ACTIONS(8247), 2, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [204723] = 4, + anon_sym_LBRACE, + STATE(5469), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [205532] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(5416), 1, - sym_comment, - ACTIONS(1497), 3, + ACTIONS(7606), 1, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 5, + ACTIONS(7608), 1, sym__space, + ACTIONS(7610), 1, + anon_sym_DASH_DASH, + ACTIONS(7612), 1, + anon_sym_DASH, + STATE(5470), 1, + sym_comment, + STATE(5564), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7236), 1, + sym__flag, + STATE(4716), 2, + sym_short_flag, + sym_long_flag, + [205561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5471), 1, + sym_comment, + ACTIONS(1040), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [204742] = 8, + sym__entry_separator, + ACTIONS(1038), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [205580] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1836), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4826), 1, + STATE(4977), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5417), 1, + STATE(5472), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1951), 3, + ACTIONS(1838), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [204769] = 4, + [205607] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1060), 1, + ACTIONS(1560), 1, anon_sym_DASH, - STATE(5418), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(5473), 1, sym_comment, - ACTIONS(1062), 7, - anon_sym_EQ, - sym_identifier, + ACTIONS(1572), 6, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT, - [204788] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_as, + [205628] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_DASH, - STATE(5419), 1, + STATE(5474), 1, sym_comment, - ACTIONS(1054), 7, - anon_sym_EQ, - sym_identifier, + ACTIONS(1540), 3, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [204807] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [205647] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5018), 1, - anon_sym_DASH, - STATE(5420), 1, + ACTIONS(8744), 1, + anon_sym_COMMA, + ACTIONS(8746), 1, + anon_sym_AT, + STATE(5475), 1, sym_comment, - ACTIONS(5016), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [204826] = 4, + STATE(5861), 1, + sym_param_cmd, + ACTIONS(8742), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205670] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5022), 1, + ACTIONS(4942), 1, anon_sym_DASH, - STATE(5421), 1, + ACTIONS(8748), 1, + anon_sym_EQ2, + STATE(5476), 1, sym_comment, - ACTIONS(5020), 7, + ACTIONS(4940), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [204845] = 7, + [205691] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_DASH_DASH, - ACTIONS(8758), 1, - anon_sym_DASH, - STATE(5943), 1, - sym__flag, - ACTIONS(8299), 2, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - STATE(5422), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [204870] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5423), 1, - sym_comment, - ACTIONS(1755), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204889] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8761), 1, - anon_sym_DOT, - ACTIONS(8763), 1, - aux_sym__immediate_decimal_token2, - STATE(5424), 1, + ACTIONS(8746), 1, + anon_sym_AT, + ACTIONS(8752), 1, + anon_sym_COMMA, + STATE(5477), 1, sym_comment, - ACTIONS(1643), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1645), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204912] = 4, - ACTIONS(3), 1, + STATE(5866), 1, + sym_param_cmd, + ACTIONS(8750), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205714] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5425), 1, + STATE(5478), 1, sym_comment, - ACTIONS(1058), 3, + ACTIONS(1556), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1056), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [204931] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5426), 1, - sym_comment, - ACTIONS(1517), 3, - sym__newline, + ACTIONS(1554), 5, + sym_identifier, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1519), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [204950] = 4, + aux_sym_unquoted_token2, + [205733] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5036), 1, + ACTIONS(4900), 1, anon_sym_DASH, - STATE(5427), 1, + ACTIONS(8754), 1, + anon_sym_EQ2, + STATE(5479), 1, sym_comment, - ACTIONS(5034), 7, + ACTIONS(4898), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [204969] = 9, + [205754] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4051), 1, + ACTIONS(4131), 1, anon_sym_DQUOTE, - ACTIONS(8765), 1, + ACTIONS(8673), 1, sym_identifier, - ACTIONS(8767), 1, + ACTIONS(8756), 1, anon_sym_GT, - STATE(4704), 1, + STATE(4744), 1, sym__str_double_quotes, - STATE(5428), 1, - sym_comment, - STATE(5443), 1, + STATE(5466), 1, aux_sym_collection_type_repeat1, - STATE(5623), 1, + STATE(5480), 1, + sym_comment, + STATE(5550), 1, sym_val_string, - ACTIONS(4053), 2, + ACTIONS(4133), 2, sym__str_single_quotes, sym__str_back_ticks, - [204998] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8769), 1, - aux_sym__immediate_decimal_token2, - STATE(5429), 1, - sym_comment, - ACTIONS(1705), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205019] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8600), 1, - aux_sym__immediate_decimal_token2, - STATE(5430), 1, - sym_comment, - ACTIONS(1497), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205040] = 4, + [205783] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5431), 1, + STATE(5481), 1, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1554), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1567), 5, + ACTIONS(1556), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205059] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DASH, - STATE(5432), 1, - sym_comment, - ACTIONS(5038), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [205078] = 4, + [205802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5433), 1, + STATE(5482), 1, sym_comment, - ACTIONS(1639), 3, + ACTIONS(1653), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1641), 5, + ACTIONS(1655), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205097] = 8, + [205821] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1013), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5434), 1, - sym_comment, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5575), 1, - sym_cell_path, - STATE(5978), 1, - sym_path, - ACTIONS(1011), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [205124] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_EQ2, - ACTIONS(8775), 1, - sym_short_flag_identifier, - STATE(5435), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(5483), 1, sym_comment, - ACTIONS(4747), 3, + ACTIONS(2245), 3, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(4749), 3, - ts_builtin_sym_end, + ACTIONS(2247), 4, sym__newline, anon_sym_SEMI, - [205147] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205842] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(1641), 1, + anon_sym_DOT_DOT2, + ACTIONS(8721), 1, anon_sym_DOT, - STATE(4769), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5436), 1, - sym_comment, - STATE(5465), 1, + STATE(1212), 1, sym_path, - ACTIONS(1967), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205174] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5637), 1, - anon_sym_DOT, - STATE(2466), 1, + STATE(1548), 1, sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(5437), 1, - sym_comment, - ACTIONS(1688), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205199] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8656), 1, - aux_sym__immediate_decimal_token2, - STATE(5438), 1, + STATE(5484), 1, sym_comment, - ACTIONS(1643), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1645), 4, - anon_sym_LPAREN2, + STATE(5524), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1645), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205220] = 8, + [205869] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(5022), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4907), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5439), 1, - sym_comment, - STATE(5465), 1, - sym_path, - ACTIONS(1845), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205247] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(5440), 1, + STATE(5485), 1, sym_comment, - ACTIONS(1076), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(1078), 4, + ACTIONS(5020), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [205268] = 6, + anon_sym_as, + [205888] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(1675), 1, + anon_sym_DOT_DOT2, + ACTIONS(8721), 1, anon_sym_DOT, - ACTIONS(8779), 1, - aux_sym__immediate_decimal_token2, - STATE(5441), 1, + STATE(1212), 1, + sym_path, + STATE(1558), 1, + sym_cell_path, + STATE(5486), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(5524), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1677), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205291] = 4, + [205915] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(5026), 1, anon_sym_DASH, - STATE(5442), 1, + STATE(5487), 1, sym_comment, - ACTIONS(8781), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(5024), 7, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205310] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(8765), 1, - sym_identifier, - ACTIONS(8785), 1, - anon_sym_GT, - STATE(4704), 1, - sym__str_double_quotes, - STATE(5361), 1, - aux_sym_collection_type_repeat1, - STATE(5443), 1, - sym_comment, - STATE(5623), 1, - sym_val_string, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [205339] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1967), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5444), 1, - sym_comment, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5978), 1, - sym_path, - STATE(6571), 1, - sym_cell_path, - ACTIONS(1965), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [205366] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8787), 1, - aux_sym__immediate_decimal_token2, - STATE(5445), 1, - sym_comment, - ACTIONS(1705), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1707), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205387] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5446), 1, - sym_comment, - ACTIONS(1062), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1060), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [205406] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5447), 1, - sym_comment, - ACTIONS(1054), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1052), 5, - anon_sym_RBRACK, + anon_sym_in, anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [205425] = 8, + anon_sym_as, + [205934] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1840), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4911), 1, + STATE(4818), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5448), 1, + STATE(5488), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1849), 3, + ACTIONS(1842), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [205452] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5449), 1, - sym_comment, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5978), 1, - sym_path, - STATE(6126), 1, - sym_cell_path, - ACTIONS(1879), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [205479] = 8, + [205961] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1844), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4923), 1, + STATE(4828), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5450), 1, + STATE(5489), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1853), 3, + ACTIONS(1846), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [205506] = 4, + [205988] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5451), 1, + STATE(5490), 1, sym_comment, - ACTIONS(1643), 4, + ACTIONS(1659), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 4, + ACTIONS(1661), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [205525] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_DASH, - STATE(5452), 1, - sym_comment, - ACTIONS(5012), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [205544] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - anon_sym_DASH, - STATE(5453), 1, - sym_comment, - ACTIONS(5024), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [205563] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DASH, - STATE(5454), 1, - sym_comment, - ACTIONS(5028), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [205582] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8789), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8791), 1, - aux_sym__immediate_decimal_token2, - STATE(5455), 1, - sym_comment, - ACTIONS(1631), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1633), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205605] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8716), 1, - aux_sym__immediate_decimal_token2, - STATE(5456), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205626] = 8, + [206007] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1848), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4906), 1, + STATE(4894), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5457), 1, + STATE(5491), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1881), 3, + ACTIONS(1850), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [205653] = 7, + [206034] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5637), 1, + ACTIONS(1852), 1, + anon_sym_DASH, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(2432), 1, + STATE(4896), 1, sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(2616), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5458), 1, + STATE(5492), 1, sym_comment, - ACTIONS(1629), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205678] = 8, + STATE(5513), 1, + sym_path, + ACTIONS(1854), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206061] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1856), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4925), 1, + STATE(4898), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5459), 1, + STATE(5493), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1857), 3, + ACTIONS(1858), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [205705] = 8, + [206088] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1860), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4885), 1, + STATE(4901), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5460), 1, + STATE(5494), 1, sym_comment, - STATE(5465), 1, + STATE(5513), 1, sym_path, - ACTIONS(1837), 3, + ACTIONS(1862), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [205732] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(8765), 1, - sym_identifier, - ACTIONS(8793), 1, - anon_sym_GT, - STATE(4704), 1, - sym__str_double_quotes, - STATE(5461), 1, - sym_comment, - STATE(5496), 1, - aux_sym_collection_type_repeat1, - STATE(5623), 1, - sym_val_string, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [205761] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_COMMA, - ACTIONS(8799), 1, - anon_sym_AT, - STATE(5462), 1, - sym_comment, - STATE(5837), 1, - sym_param_cmd, - ACTIONS(8795), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205784] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8801), 1, - anon_sym_DASH_DASH, - ACTIONS(8804), 1, - anon_sym_DASH, - STATE(5943), 1, - sym__flag, - ACTIONS(8299), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5463), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [205809] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8799), 1, - anon_sym_AT, - ACTIONS(8809), 1, - anon_sym_COMMA, - STATE(5464), 1, - sym_comment, - STATE(5851), 1, - sym_param_cmd, - ACTIONS(8807), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205832] = 4, + [206115] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1056), 1, + ACTIONS(5000), 1, anon_sym_DASH, - STATE(5465), 1, + STATE(5495), 1, sym_comment, - ACTIONS(1058), 7, - anon_sym_EQ, - sym_identifier, + ACTIONS(4998), 7, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT, - [205851] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8811), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8813), 1, - aux_sym__immediate_decimal_token2, - STATE(5466), 1, - sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205874] = 8, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [206134] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(5004), 1, anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4926), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - STATE(5467), 1, - sym_comment, - ACTIONS(1861), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205901] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5468), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1499), 5, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [205920] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5469), 1, + STATE(5496), 1, sym_comment, - ACTIONS(2259), 4, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2261), 4, + ACTIONS(5002), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [205939] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - sym__newline, - ACTIONS(1587), 1, - sym__space, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - ACTIONS(8815), 1, - sym_filesize_unit, - ACTIONS(8817), 1, - sym_duration_unit, - STATE(5470), 1, - sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205968] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5471), 1, - sym_comment, - ACTIONS(1517), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1519), 5, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [205987] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5472), 1, - sym_comment, - ACTIONS(1565), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1567), 5, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [206006] = 9, + anon_sym_as, + [206153] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(8765), 1, - sym_identifier, - ACTIONS(8819), 1, - anon_sym_GT, - STATE(4704), 1, - sym__str_double_quotes, - STATE(5473), 1, - sym_comment, - STATE(5491), 1, - aux_sym_collection_type_repeat1, - STATE(5623), 1, - sym_val_string, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [206035] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(1864), 1, + anon_sym_DASH, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(5474), 1, - sym_comment, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5978), 1, - sym_path, - STATE(6368), 1, + STATE(4918), 1, sym_cell_path, - ACTIONS(1961), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [206062] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5475), 1, - sym_comment, - ACTIONS(1639), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1641), 5, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [206081] = 5, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5497), 1, + sym_comment, + STATE(5513), 1, + sym_path, + ACTIONS(1866), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206180] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4906), 1, + ACTIONS(1868), 1, anon_sym_DASH, - ACTIONS(8821), 1, - anon_sym_EQ2, - STATE(5476), 1, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(4927), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5498), 1, sym_comment, - ACTIONS(4904), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5513), 1, + sym_path, + ACTIONS(1870), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [206102] = 8, + [206207] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(1872), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4936), 1, + STATE(4929), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - STATE(5477), 1, + STATE(5499), 1, sym_comment, - ACTIONS(1865), 3, + STATE(5513), 1, + sym_path, + ACTIONS(1874), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206129] = 4, + [206234] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5044), 1, + ACTIONS(1876), 1, anon_sym_DASH, - STATE(5478), 1, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(4980), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5500), 1, sym_comment, - ACTIONS(5042), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5513), 1, + sym_path, + ACTIONS(1878), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [206148] = 4, + [206261] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(1880), 1, anon_sym_DASH, - STATE(5479), 1, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(4826), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5501), 1, sym_comment, - ACTIONS(5046), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5513), 1, + sym_path, + ACTIONS(1882), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [206167] = 5, + [206288] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(8823), 1, - anon_sym_EQ2, - STATE(5480), 1, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(4831), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5502), 1, sym_comment, - ACTIONS(4914), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5513), 1, + sym_path, + ACTIONS(1886), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [206188] = 8, + [206315] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1888), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4519), 1, + STATE(4832), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - STATE(5481), 1, + STATE(5503), 1, sym_comment, - ACTIONS(1013), 3, + STATE(5513), 1, + sym_path, + ACTIONS(1890), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206215] = 4, + [206342] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5482), 1, + STATE(5504), 1, sym_comment, - ACTIONS(1631), 4, + ACTIONS(1738), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 4, + ACTIONS(1740), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [206234] = 8, + [206361] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1686), 1, - anon_sym_DOT_DOT2, - ACTIONS(8749), 1, + ACTIONS(1892), 1, + anon_sym_DASH, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(1206), 1, - sym_path, - STATE(1484), 1, + STATE(4861), 1, sym_cell_path, - STATE(5483), 1, - sym_comment, - STATE(5602), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - ACTIONS(1688), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206261] = 8, + STATE(5505), 1, + sym_comment, + STATE(5513), 1, + sym_path, + ACTIONS(1894), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206388] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1896), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4772), 1, + STATE(4868), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - STATE(5484), 1, + STATE(5506), 1, sym_comment, - ACTIONS(1869), 3, + STATE(5513), 1, + sym_path, + ACTIONS(1898), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206288] = 8, + [206415] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1625), 1, - anon_sym_DOT_DOT2, - ACTIONS(8749), 1, + ACTIONS(1900), 1, + anon_sym_DASH, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(1206), 1, - sym_path, - STATE(1533), 1, + STATE(4869), 1, sym_cell_path, - STATE(5485), 1, - sym_comment, - STATE(5602), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - ACTIONS(1629), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206315] = 4, + STATE(5507), 1, + sym_comment, + STATE(5513), 1, + sym_path, + ACTIONS(1902), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206442] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5486), 1, + ACTIONS(8655), 1, + aux_sym__immediate_decimal_token2, + STATE(5508), 1, sym_comment, - ACTIONS(1499), 3, - anon_sym_DOLLAR, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1497), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [206334] = 8, + [206463] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1904), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4798), 1, + STATE(4879), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - STATE(5487), 1, + STATE(5509), 1, sym_comment, - ACTIONS(1959), 3, + STATE(5513), 1, + sym_path, + ACTIONS(1906), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206361] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6352), 1, - sym_filesize_unit, - ACTIONS(6354), 1, - sym_duration_unit, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, - ACTIONS(8825), 1, - anon_sym_DOT_DOT2, - STATE(5488), 1, - sym_comment, - ACTIONS(1587), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8827), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206388] = 5, + [206490] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(5489), 1, + STATE(5510), 1, sym_comment, - ACTIONS(2293), 3, + ACTIONS(1070), 3, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(2297), 4, + ACTIONS(1072), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206409] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8829), 1, - aux_sym__immediate_decimal_token2, - STATE(5490), 1, - sym_comment, - ACTIONS(1565), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1567), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [206430] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(8765), 1, - sym_identifier, - ACTIONS(8831), 1, - anon_sym_GT, - STATE(4704), 1, - sym__str_double_quotes, - STATE(5361), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_comment, - STATE(5623), 1, - sym_val_string, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [206459] = 5, + [206511] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8592), 1, + ACTIONS(8758), 1, aux_sym__immediate_decimal_token2, - STATE(5492), 1, + STATE(5511), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 5, + ACTIONS(1723), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206480] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5493), 1, - sym_comment, - ACTIONS(1519), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [206499] = 5, + [206532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(5494), 1, + STATE(5512), 1, sym_comment, - ACTIONS(2243), 3, + ACTIONS(2253), 4, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(2247), 4, + aux_sym_unquoted_token4, + ACTIONS(2255), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206520] = 5, - ACTIONS(3), 1, + [206551] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(5495), 1, - sym_comment, - ACTIONS(2251), 3, - anon_sym_DASH_DASH, + ACTIONS(1046), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(2253), 4, + STATE(5513), 1, + sym_comment, + ACTIONS(1048), 7, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206541] = 9, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [206570] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(8765), 1, - sym_identifier, - ACTIONS(8833), 1, - anon_sym_GT, - STATE(4704), 1, - sym__str_double_quotes, - STATE(5361), 1, - aux_sym_collection_type_repeat1, - STATE(5496), 1, + ACTIONS(8760), 1, + aux_sym__immediate_decimal_token2, + STATE(5514), 1, sym_comment, - STATE(5623), 1, - sym_val_string, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [206570] = 8, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [206591] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1828), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4869), 1, + STATE(4900), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, + STATE(5513), 1, sym_path, - STATE(5497), 1, + STATE(5515), 1, sym_comment, - ACTIONS(1963), 3, + ACTIONS(1830), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206597] = 5, + [206618] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - STATE(5498), 1, + ACTIONS(5602), 1, + anon_sym_DOT, + STATE(2506), 1, + sym_cell_path, + STATE(2632), 1, + aux_sym_cell_path_repeat1, + STATE(2655), 1, + sym_path, + STATE(5516), 1, sym_comment, - ACTIONS(1587), 6, + ACTIONS(1645), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [206618] = 8, + [206643] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1005), 1, anon_sym_DASH, - ACTIONS(8466), 1, + ACTIONS(8411), 1, anon_sym_DOT, - STATE(4777), 1, + STATE(4611), 1, sym_cell_path, - STATE(5211), 1, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, + STATE(5513), 1, sym_path, - STATE(5499), 1, + STATE(5517), 1, sym_comment, - ACTIONS(1873), 3, + ACTIONS(1007), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206645] = 8, + [206670] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH, - ACTIONS(8466), 1, - anon_sym_DOT, - STATE(4791), 1, - sym_cell_path, - STATE(5211), 1, - aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_path, - STATE(5500), 1, + ACTIONS(8762), 1, + sym_long_flag_identifier, + ACTIONS(8764), 1, + anon_sym_EQ2, + STATE(5518), 1, sym_comment, - ACTIONS(1877), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4808), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4810), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [206672] = 4, - ACTIONS(247), 1, + [206693] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5501), 1, + STATE(5519), 1, sym_comment, - ACTIONS(1567), 3, - anon_sym_DOLLAR, + ACTIONS(1036), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 5, - sym_identifier, + sym__entry_separator, + ACTIONS(1034), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [206691] = 8, + anon_sym_DOT, + [206712] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8835), 1, + ACTIONS(4131), 1, + anon_sym_DQUOTE, + ACTIONS(8673), 1, sym_identifier, - ACTIONS(8837), 1, - anon_sym_DASH_DASH, - ACTIONS(8839), 1, - anon_sym_DASH, - STATE(5502), 1, + ACTIONS(8766), 1, + anon_sym_GT, + STATE(4744), 1, + sym__str_double_quotes, + STATE(5466), 1, + aux_sym_collection_type_repeat1, + STATE(5520), 1, sym_comment, - STATE(5605), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [206717] = 4, + STATE(5550), 1, + sym_val_string, + ACTIONS(4133), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [206741] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5503), 1, + STATE(5521), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1655), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206735] = 8, + ACTIONS(1653), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [206760] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(5030), 1, anon_sym_DASH, - STATE(5504), 1, + STATE(5522), 1, sym_comment, - STATE(6096), 1, - sym_block, - STATE(7457), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [206761] = 7, + ACTIONS(5028), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [206779] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8466), 1, + ACTIONS(1880), 1, + anon_sym_DASH, + ACTIONS(5602), 1, anon_sym_DOT, - STATE(3091), 1, - sym_cell_path, - STATE(5211), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(5465), 1, + STATE(2655), 1, sym_path, - STATE(5505), 1, + STATE(4826), 1, + sym_cell_path, + STATE(5523), 1, sym_comment, - ACTIONS(1013), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [206785] = 5, - ACTIONS(3), 1, + ACTIONS(1882), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [206806] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(5506), 1, + ACTIONS(1011), 1, + anon_sym_DOT_DOT2, + ACTIONS(8721), 1, + anon_sym_DOT, + STATE(1212), 1, + sym_path, + STATE(5524), 1, sym_comment, - ACTIONS(1076), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(1078), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [206805] = 8, + STATE(5633), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1013), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206830] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(1854), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2915), 1, + STATE(2927), 1, sym_cell_path, - STATE(5507), 1, + STATE(5525), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - ACTIONS(1835), 2, + ACTIONS(1852), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [206831] = 8, + [206856] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1858), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2923), 1, + STATE(2967), 1, sym_cell_path, - STATE(5508), 1, + STATE(5526), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - ACTIONS(1839), 2, + ACTIONS(1856), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [206857] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5509), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206875] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, - anon_sym_DASH, - STATE(5510), 1, - sym_comment, - STATE(6524), 1, - sym_block, - STATE(7443), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [206901] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(8845), 1, - anon_sym_DOT_DOT2, - STATE(5511), 1, - sym_comment, - ACTIONS(8847), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206923] = 8, + [206882] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1902), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5512), 1, + STATE(2969), 1, + sym_cell_path, + STATE(5527), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - STATE(6541), 1, - sym_cell_path, - ACTIONS(1957), 2, + ACTIONS(1900), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [206949] = 4, + [206908] = 7, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8411), 1, + anon_sym_DOT, + STATE(3130), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, STATE(5513), 1, + sym_path, + STATE(5528), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 5, + ACTIONS(1007), 3, + anon_sym_EQ, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206967] = 8, + anon_sym_COLON, + [206932] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6067), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5514), 1, + STATE(2903), 1, + sym_cell_path, + STATE(5529), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - STATE(6541), 1, - sym_cell_path, - ACTIONS(6096), 2, + ACTIONS(1860), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [206993] = 8, + [206958] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - aux_sym_ctrl_match_token1, - ACTIONS(4433), 1, + ACTIONS(1572), 1, + anon_sym_in, + ACTIONS(4512), 1, anon_sym_DOT_DOT2, - ACTIONS(6385), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + ACTIONS(8770), 1, sym_filesize_unit, - ACTIONS(6387), 1, + ACTIONS(8772), 1, sym_duration_unit, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, - STATE(5515), 1, + STATE(5530), 1, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207019] = 8, + [206984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + STATE(5531), 1, + sym_comment, + ACTIONS(1659), 3, anon_sym_RBRACE, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(1806), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8849), 1, anon_sym_DOT_DOT2, - STATE(5516), 1, - sym_comment, - ACTIONS(8851), 2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1661), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207045] = 4, + sym__entry_separator, + [207002] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5517), 1, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(8776), 1, + anon_sym_DASH_DASH, + ACTIONS(8778), 1, + anon_sym_DASH, + STATE(5532), 1, sym_comment, - ACTIONS(1639), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1641), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207063] = 5, + STATE(5611), 1, + aux_sym_ctrl_do_repeat1, + STATE(5902), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [207028] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8853), 1, - aux_sym__immediate_decimal_token2, - STATE(5518), 1, - sym_comment, - ACTIONS(1705), 3, + ACTIONS(1494), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1778), 1, anon_sym_RBRACE, - anon_sym__, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, + sym__entry_separator, + ACTIONS(8780), 1, anon_sym_DOT_DOT2, - ACTIONS(1707), 3, + STATE(5533), 1, + sym_comment, + ACTIONS(8782), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207083] = 4, + [207054] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5519), 1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token2, + STATE(5534), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(1723), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207101] = 4, + [207074] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5520), 1, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(6834), 1, + aux_sym_unquoted_token2, + STATE(5535), 1, + sym_comment, + ACTIONS(1572), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [207094] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(8786), 1, + anon_sym_alias, + ACTIONS(8788), 1, + anon_sym_const, + ACTIONS(8790), 1, + anon_sym_def, + ACTIONS(8792), 1, + anon_sym_extern, + ACTIONS(8794), 1, + anon_sym_module, + ACTIONS(8796), 1, + anon_sym_use, + STATE(5536), 1, + sym_comment, + [207122] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5537), 1, + sym_comment, + STATE(6784), 1, + sym_block, + STATE(7260), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [207148] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5538), 1, sym_comment, - ACTIONS(1497), 2, + ACTIONS(1667), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1499), 5, - anon_sym_in, + aux_sym__unquoted_in_record_token2, + ACTIONS(1669), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207119] = 8, + sym__entry_separator, + [207166] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1833), 1, - sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8802), 1, anon_sym_DOT, - STATE(5521), 1, + STATE(5539), 1, sym_comment, - STATE(5541), 1, + STATE(5635), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6603), 1, sym_path, - STATE(7028), 1, + STATE(6924), 1, sym_cell_path, - ACTIONS(1829), 2, - anon_sym_RBRACE, - anon_sym__, - [207145] = 8, - ACTIONS(247), 1, + ACTIONS(1828), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [207190] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(5540), 1, + sym_comment, + ACTIONS(2229), 3, anon_sym_DASH_DASH, - ACTIONS(8843), 1, anon_sym_DASH, - ACTIONS(8855), 1, - aux_sym_ctrl_match_token1, - STATE(5522), 1, - sym_comment, - STATE(6464), 1, - sym_val_record, - STATE(7296), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [207171] = 8, + anon_sym_as, + ACTIONS(2233), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [207210] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8800), 1, anon_sym_DASH, - STATE(5523), 1, + ACTIONS(8804), 1, + anon_sym_LBRACE, + STATE(5541), 1, sym_comment, - STATE(6328), 1, - sym_block, - STATE(7404), 1, + STATE(6845), 1, + sym_val_record, + STATE(7354), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [207197] = 4, + [207236] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5524), 1, + STATE(5542), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1659), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1519), 5, - anon_sym_in, + ACTIONS(1661), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207215] = 8, + [207254] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(8786), 1, + anon_sym_alias, + ACTIONS(8788), 1, + anon_sym_const, + ACTIONS(8790), 1, + anon_sym_def, + ACTIONS(8792), 1, + anon_sym_extern, + ACTIONS(8794), 1, + anon_sym_module, + ACTIONS(8796), 1, + anon_sym_use, + STATE(5543), 1, + sym_comment, + [207282] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5544), 1, + sym_comment, + ACTIONS(8806), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [207298] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1906), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(2916), 1, + sym_cell_path, + STATE(5545), 1, + sym_comment, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + ACTIONS(1904), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207324] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2655), 1, + sym_path, + STATE(5546), 1, + sym_comment, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(6641), 1, + sym_cell_path, + ACTIONS(5763), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207348] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8839), 1, + ACTIONS(8800), 1, anon_sym_DASH, - ACTIONS(8857), 1, - sym_identifier, - STATE(5525), 1, + STATE(5547), 1, sym_comment, - STATE(5539), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, + STATE(6329), 1, + sym_block, + STATE(7270), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [207241] = 5, - ACTIONS(3), 1, + [207374] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8859), 1, - sym__newline, - ACTIONS(8862), 1, - sym__space, - STATE(5526), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3559), 4, - anon_sym_DOLLAR, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, + ACTIONS(8800), 1, anon_sym_DASH, - aux_sym_ctrl_match_token1, - [207261] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(5527), 1, + STATE(5548), 1, sym_comment, - ACTIONS(2293), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2297), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [207281] = 8, + STATE(6346), 1, + sym_block, + STATE(7274), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [207400] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(1834), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5528), 1, + STATE(535), 1, + sym_cell_path, + STATE(5549), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - STATE(7121), 1, - sym_cell_path, - ACTIONS(1835), 2, + ACTIONS(1832), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [207307] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5529), 1, - sym_comment, - ACTIONS(2261), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(2259), 4, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token4, - [207325] = 8, + [207426] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6385), 1, - sym_filesize_unit, - ACTIONS(6387), 1, - sym_duration_unit, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, - ACTIONS(8865), 1, - anon_sym_DOT_DOT2, - STATE(5530), 1, + ACTIONS(8810), 1, + anon_sym_COLON, + ACTIONS(8812), 1, + anon_sym_COMMA, + STATE(5550), 1, sym_comment, - ACTIONS(8867), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207351] = 8, + ACTIONS(8808), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [207446] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8800), 1, anon_sym_DASH, - STATE(5531), 1, + STATE(5551), 1, sym_comment, - STATE(7093), 1, + STATE(6976), 1, sym_block, - STATE(7359), 1, + STATE(7278), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [207377] = 8, + [207472] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8802), 1, + anon_sym_DOT, + STATE(5552), 1, + sym_comment, + STATE(5635), 1, + aux_sym_cell_path_repeat1, + STATE(6603), 1, + sym_path, + STATE(6910), 1, + sym_cell_path, + ACTIONS(1832), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [207496] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1007), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(5553), 1, + sym_comment, + STATE(5698), 1, + sym_cell_path, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + ACTIONS(1005), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207522] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8800), 1, anon_sym_DASH, - STATE(5532), 1, + STATE(5554), 1, sym_comment, - STATE(7094), 1, + STATE(6358), 1, sym_block, - STATE(7364), 1, + STATE(7277), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [207403] = 5, + [207548] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8779), 1, - aux_sym__immediate_decimal_token2, - STATE(5533), 1, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2655), 1, + sym_path, + STATE(5555), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 4, + STATE(5556), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1013), 4, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [207570] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8814), 1, + anon_sym_DOT, + STATE(2655), 1, + sym_path, + STATE(5556), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 4, anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_EQ_GT, + [207590] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5557), 1, + sym_comment, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207423] = 4, + [207608] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5534), 1, + STATE(5558), 1, sym_comment, - ACTIONS(2135), 3, + ACTIONS(1048), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2133), 4, + ACTIONS(1046), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT2, - [207441] = 8, + anon_sym_DOT, + [207626] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5559), 1, + sym_comment, + STATE(7036), 1, + sym_block, + STATE(7321), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [207652] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1830), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5535), 1, + STATE(534), 1, + sym_cell_path, + STATE(5560), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - STATE(7227), 1, - sym_cell_path, - ACTIONS(1839), 2, + ACTIONS(1828), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [207467] = 4, + [207678] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5536), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5561), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207485] = 8, + STATE(7096), 1, + sym_block, + STATE(7339), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [207704] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5562), 1, + sym_comment, + ACTIONS(5099), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_record_entry_token1, + [207720] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1845), 1, + ACTIONS(1838), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2866), 1, + STATE(2930), 1, sym_cell_path, - STATE(5537), 1, + STATE(5563), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - ACTIONS(1843), 2, + ACTIONS(1836), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207511] = 8, - ACTIONS(247), 1, + [207746] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(8817), 1, + sym__newline, + ACTIONS(8820), 1, + sym__space, + STATE(5564), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3573), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8843), 1, anon_sym_DASH, - STATE(5538), 1, + anon_sym_LBRACE, + [207766] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(8823), 1, + anon_sym_DOT_DOT2, + STATE(5565), 1, sym_comment, - STATE(7099), 1, - sym_block, - STATE(7367), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [207537] = 8, + ACTIONS(8825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207788] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8839), 1, + ACTIONS(8800), 1, anon_sym_DASH, - ACTIONS(8869), 1, - sym_identifier, - STATE(5539), 1, + STATE(5566), 1, sym_comment, - STATE(5605), 1, - aux_sym_ctrl_do_repeat1, - STATE(5943), 1, + STATE(6473), 1, + sym_block, + STATE(7284), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [207563] = 8, + [207814] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, + ACTIONS(1866), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2869), 1, + STATE(2951), 1, sym_cell_path, - STATE(5540), 1, + STATE(5567), 1, sym_comment, - STATE(5541), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - ACTIONS(1847), 2, + ACTIONS(1864), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207589] = 7, + [207840] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1019), 1, + ACTIONS(1870), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, + STATE(2952), 1, + sym_cell_path, + STATE(5568), 1, sym_comment, - STATE(5551), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(5978), 1, + STATE(6292), 1, sym_path, - ACTIONS(1017), 3, + ACTIONS(1868), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [207613] = 8, + [207866] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1842), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2874), 1, + STATE(2954), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5542), 1, + STATE(5569), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1851), 2, + ACTIONS(1840), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207639] = 9, + [207892] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8871), 1, - anon_sym_alias, - ACTIONS(8873), 1, - anon_sym_const, - ACTIONS(8875), 1, - anon_sym_def, - ACTIONS(8877), 1, - anon_sym_extern, - ACTIONS(8879), 1, - anon_sym_module, - ACTIONS(8881), 1, - anon_sym_use, - STATE(5543), 1, + STATE(5570), 1, sym_comment, - [207667] = 8, - ACTIONS(3), 1, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207910] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(2906), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5544), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(8827), 1, + anon_sym_DOT_DOT2, + STATE(5571), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1855), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207693] = 8, - ACTIONS(3), 1, + ACTIONS(8829), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207932] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1845), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5545), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5572), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6683), 1, - sym_cell_path, - ACTIONS(1843), 2, - anon_sym_RBRACE, - anon_sym__, - [207719] = 8, + STATE(6196), 1, + sym_block, + STATE(7358), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [207958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, + ACTIONS(1846), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, + STATE(2955), 1, + sym_cell_path, + STATE(5573), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - STATE(6690), 1, - sym_cell_path, - ACTIONS(1847), 2, + ACTIONS(1844), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [207745] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4906), 1, - anon_sym_DASH, - ACTIONS(8883), 1, - anon_sym_EQ2, - STATE(5547), 1, - sym_comment, - ACTIONS(4904), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207765] = 8, + [207984] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8839), 1, + ACTIONS(8800), 1, anon_sym_DASH, - ACTIONS(8885), 1, - sym_identifier, - STATE(5502), 1, - aux_sym_ctrl_do_repeat1, - STATE(5548), 1, + STATE(5574), 1, sym_comment, - STATE(5943), 1, + STATE(6081), 1, + sym_block, + STATE(7336), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [207791] = 8, + [208010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5549), 1, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(5575), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6711), 1, - sym_cell_path, - ACTIONS(1851), 2, - anon_sym_RBRACE, - anon_sym__, - [207817] = 5, + ACTIONS(1070), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(1072), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208030] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8887), 1, - aux_sym__immediate_decimal_token2, - STATE(5550), 1, - sym_comment, - ACTIONS(1705), 2, - anon_sym_DOT_DOT2, + ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(1707), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207837] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1023), 1, - sym__entry_separator, - ACTIONS(8889), 1, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8831), 1, anon_sym_DOT, - STATE(5978), 1, - sym_path, - STATE(5551), 2, + STATE(5576), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [207859] = 8, + STATE(6056), 1, + sym__immediate_decimal, + ACTIONS(8111), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [208056] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1874), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2867), 1, + STATE(2957), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5552), 1, + STATE(5577), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1859), 2, + ACTIONS(1872), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207885] = 7, + [208082] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(2590), 1, + STATE(2655), 1, sym_path, - STATE(5553), 1, - sym_comment, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(7288), 1, + STATE(4199), 1, sym_cell_path, - ACTIONS(5786), 3, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(5578), 1, + sym_comment, + ACTIONS(1007), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [207909] = 8, + [208106] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(1788), 1, + anon_sym_RBRACK, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(2881), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5554), 1, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8833), 1, + anon_sym_DOT_DOT2, + STATE(5579), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1863), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207935] = 8, + ACTIONS(8835), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208132] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4900), 1, + anon_sym_DASH, + ACTIONS(8837), 1, + anon_sym_EQ2, + STATE(5580), 1, + sym_comment, + ACTIONS(4898), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208152] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + STATE(5581), 1, + sym_comment, + ACTIONS(1052), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(1050), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(2886), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5555), 1, + [208170] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8841), 1, + anon_sym_DASH, + STATE(5582), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1867), 2, + ACTIONS(8839), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [208188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5583), 1, + sym_comment, + ACTIONS(1056), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1054), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [207961] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [208206] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1873), 1, + ACTIONS(1878), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2927), 1, + STATE(2964), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5556), 1, + STATE(5584), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1871), 2, + ACTIONS(1876), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207987] = 8, + [208232] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8247), 1, + sym_identifier, + ACTIONS(8843), 1, + anon_sym_DASH_DASH, + ACTIONS(8846), 1, + anon_sym_DASH, + STATE(5902), 1, + sym__flag, + STATE(5585), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [208256] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_RBRACE, + ACTIONS(1572), 1, + sym__entry_separator, + ACTIONS(8849), 1, + anon_sym_DOT_DOT2, + ACTIONS(8853), 1, + sym_filesize_unit, + ACTIONS(8855), 1, + sym_duration_unit, + STATE(5586), 1, + sym_comment, + ACTIONS(8851), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208282] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1882), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2897), 1, + STATE(2902), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5557), 1, + STATE(5587), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1875), 2, + ACTIONS(1880), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208013] = 8, + [208308] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5588), 1, + sym_comment, + STATE(6197), 1, + sym_block, + STATE(7374), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [208334] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5589), 1, + sym_comment, + STATE(6198), 1, + sym_block, + STATE(7287), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [208360] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1886), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2916), 1, + STATE(2911), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5558), 1, + STATE(5590), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1969), 2, + ACTIONS(1884), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208039] = 7, + [208386] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + anon_sym_DASH, + ACTIONS(8857), 1, + anon_sym_EQ2, + STATE(5591), 1, + sym_comment, + ACTIONS(4940), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208406] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8892), 1, - anon_sym_DOT, - STATE(5559), 1, + STATE(5592), 1, sym_comment, - STATE(5815), 1, - aux_sym_cell_path_repeat1, - STATE(6548), 1, - sym_path, - STATE(7007), 1, - sym_cell_path, - ACTIONS(1879), 3, - anon_sym_RBRACK, + ACTIONS(1721), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - [208063] = 5, + [208424] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8776), 1, + anon_sym_DASH_DASH, + ACTIONS(8778), 1, + anon_sym_DASH, + ACTIONS(8859), 1, + sym_identifier, + STATE(5585), 1, + aux_sym_ctrl_do_repeat1, + STATE(5593), 1, + sym_comment, + STATE(5902), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [208450] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(5560), 1, + STATE(5594), 1, sym_comment, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, @@ -387443,301 +392949,354 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208083] = 8, + [208470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, - sym__entry_separator, - ACTIONS(8771), 1, + STATE(5595), 1, + sym_comment, + ACTIONS(2255), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(2253), 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + aux_sym_unquoted_token4, + [208488] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8861), 1, anon_sym_DOT, - STATE(2878), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5561), 1, + STATE(5596), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1890), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208109] = 8, - ACTIONS(3), 1, + STATE(6470), 1, + sym__immediate_decimal, + ACTIONS(8111), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [208514] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1896), 1, - sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8865), 1, + anon_sym_COLON, + ACTIONS(8867), 1, + anon_sym_COMMA, + STATE(5597), 1, + sym_comment, + ACTIONS(8863), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [208534] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8715), 1, anon_sym_DOT, - STATE(2919), 1, - sym_cell_path, - STATE(5541), 1, + STATE(2655), 1, + sym_path, + STATE(5555), 1, aux_sym_cell_path_repeat1, - STATE(5562), 1, + STATE(5598), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1894), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208135] = 8, + STATE(6945), 1, + sym_cell_path, + ACTIONS(5808), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208558] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1914), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2921), 1, + STATE(523), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5563), 1, + STATE(5599), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1937), 2, + ACTIONS(1912), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208161] = 8, - ACTIONS(3), 1, + [208584] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5564), 1, + STATE(5600), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6716), 1, - sym_cell_path, - ACTIONS(1855), 2, - anon_sym_RBRACE, - anon_sym__, - [208187] = 8, + ACTIONS(1738), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1740), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208602] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1850), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(2882), 1, + STATE(2924), 1, sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5565), 1, + STATE(5601), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - ACTIONS(1945), 2, + ACTIONS(1848), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208213] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(8871), 1, - anon_sym_alias, - ACTIONS(8873), 1, - anon_sym_const, - ACTIONS(8875), 1, - anon_sym_def, - ACTIONS(8877), 1, - anon_sym_extern, - ACTIONS(8879), 1, - anon_sym_module, - ACTIONS(8881), 1, - anon_sym_use, - STATE(5566), 1, - sym_comment, - [208241] = 5, + [208628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(2243), 1, aux_sym_unquoted_token4, - STATE(5567), 1, + STATE(5602), 1, sym_comment, - ACTIONS(2251), 3, + ACTIONS(2237), 3, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(2253), 3, + ACTIONS(2241), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208261] = 8, + [208648] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5603), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1520), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [208666] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1572), 1, + anon_sym_LBRACE, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(6342), 1, + sym_filesize_unit, + ACTIONS(6344), 1, + sym_duration_unit, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, + STATE(5604), 1, + sym_comment, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208692] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5605), 1, + sym_comment, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208710] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1826), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5568), 1, + STATE(511), 1, + sym_cell_path, + STATE(5606), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - STATE(6816), 1, - sym_cell_path, - ACTIONS(1859), 2, + ACTIONS(1822), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [208287] = 8, + [208736] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8800), 1, anon_sym_DASH, - STATE(5569), 1, + STATE(5607), 1, sym_comment, - STATE(6636), 1, + STATE(6957), 1, sym_block, - STATE(7458), 1, + STATE(7258), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [208313] = 8, - ACTIONS(3), 1, + [208762] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(2891), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5570), 1, + STATE(5608), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1949), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208339] = 8, + ACTIONS(5103), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_record_entry_token1, + [208778] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5571), 1, - sym_comment, - STATE(5978), 1, - sym_path, - STATE(6821), 1, - sym_cell_path, - ACTIONS(1863), 2, + ACTIONS(1788), 1, anon_sym_RBRACE, - anon_sym__, - [208365] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5572), 1, + ACTIONS(1798), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8869), 1, + anon_sym_DOT_DOT2, + STATE(5609), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6825), 1, - sym_cell_path, - ACTIONS(1867), 2, - anon_sym_RBRACE, - anon_sym__, - [208391] = 3, + ACTIONS(8871), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208804] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5573), 1, + STATE(5610), 1, sym_comment, - ACTIONS(8894), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208407] = 8, + ACTIONS(1540), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1542), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [208822] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(8776), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8778), 1, anon_sym_DASH, - STATE(5574), 1, + ACTIONS(8873), 1, + sym_identifier, + STATE(5585), 1, + aux_sym_ctrl_do_repeat1, + STATE(5611), 1, sym_comment, - STATE(6316), 1, - sym_block, - STATE(7451), 1, + STATE(5902), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [208433] = 4, + [208848] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5575), 1, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1778), 1, + anon_sym_RBRACK, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, + sym__entry_separator, + ACTIONS(8875), 1, + anon_sym_DOT_DOT2, + STATE(5612), 1, sym_comment, - ACTIONS(1066), 3, + ACTIONS(8877), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [208874] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, sym__entry_separator, - ACTIONS(1064), 4, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(2914), 1, + sym_cell_path, + STATE(5613), 1, + sym_comment, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + ACTIONS(1888), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [208451] = 6, + [208900] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(8896), 1, - anon_sym_DOT_DOT2, - STATE(5576), 1, + STATE(5614), 1, sym_comment, - ACTIONS(8898), 2, + ACTIONS(1554), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1556), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208473] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [208918] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5577), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5615), 1, sym_comment, - ACTIONS(1629), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1625), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [208491] = 3, + STATE(6907), 1, + sym_block, + STATE(7205), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [208944] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5578), 1, + STATE(5616), 1, sym_comment, - ACTIONS(5077), 7, + ACTIONS(5132), 7, sym_identifier, anon_sym_COMMA, anon_sym_GT, @@ -387745,37252 +393304,35328 @@ static const uint16_t ts_small_parse_table[] = { sym__str_single_quotes, sym__str_back_ticks, aux_sym_record_entry_token1, - [208507] = 8, + [208960] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, - anon_sym_DASH, - STATE(5579), 1, - sym_comment, - STATE(6788), 1, - sym_block, - STATE(7380), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [208533] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5580), 1, + STATE(5617), 1, sym_comment, - ACTIONS(2021), 3, + ACTIONS(1653), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1655), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2019), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [208551] = 4, + sym_filesize_unit, + sym_duration_unit, + [208978] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5581), 1, + STATE(5618), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1659), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1633), 5, + ACTIONS(1661), 5, sym__newline, - aux_sym_ctrl_match_token1, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208569] = 4, - ACTIONS(3), 1, + [208996] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5582), 1, + STATE(5619), 1, sym_comment, - ACTIONS(1643), 3, - anon_sym_RBRACE, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1645), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1723), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [208587] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5583), 1, - sym_comment, - STATE(5978), 1, - sym_path, - STATE(6829), 1, - sym_cell_path, - ACTIONS(1871), 2, - anon_sym_RBRACE, - anon_sym__, - [208613] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5584), 1, - sym_comment, - STATE(5978), 1, - sym_path, - STATE(6831), 1, - sym_cell_path, - ACTIONS(1875), 2, - anon_sym_RBRACE, - anon_sym__, - [208639] = 8, + [209014] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8800), 1, anon_sym_DASH, - STATE(5585), 1, + STATE(5620), 1, sym_comment, - STATE(6750), 1, + STATE(6908), 1, sym_block, - STATE(7298), 1, + STATE(7206), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [208665] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5586), 1, - sym_comment, - ACTIONS(2139), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2137), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - [208683] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8900), 1, - anon_sym_DOT, - STATE(5587), 1, - sym_comment, - STATE(6453), 1, - sym__immediate_decimal, - ACTIONS(8171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208709] = 6, + [209040] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(5588), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + STATE(5621), 1, sym_comment, - STATE(5589), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1019), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [208731] = 5, + STATE(6915), 1, + sym_block, + STATE(7214), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [209066] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8902), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(5589), 2, + ACTIONS(8798), 1, + anon_sym_DASH_DASH, + ACTIONS(8800), 1, + anon_sym_DASH, + ACTIONS(8879), 1, + anon_sym_LBRACE, + STATE(5622), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [208751] = 8, + STATE(6122), 1, + sym_val_record, + STATE(7304), 1, + sym__flag, + STATE(6046), 2, + sym_short_flag, + sym_long_flag, + [209092] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1937), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5590), 1, + STATE(549), 1, + sym_cell_path, + STATE(5623), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - STATE(6836), 1, - sym_cell_path, - ACTIONS(1969), 2, + ACTIONS(1935), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [208777] = 4, + [209118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5591), 1, + STATE(5624), 1, sym_comment, - ACTIONS(1631), 3, + ACTIONS(1738), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1633), 4, + ACTIONS(1740), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [208795] = 8, + [209136] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(1945), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5592), 1, + STATE(550), 1, + sym_cell_path, + STATE(5625), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - STATE(6846), 1, + ACTIONS(1943), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209162] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1894), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(2906), 1, sym_cell_path, - ACTIONS(1890), 2, + STATE(5626), 1, + sym_comment, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + ACTIONS(1892), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [208821] = 3, + [209188] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5593), 1, + STATE(5627), 1, sym_comment, - ACTIONS(5112), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [208837] = 8, + ACTIONS(1738), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1740), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209206] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(1898), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5594), 1, + STATE(2907), 1, + sym_cell_path, + STATE(5628), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - STATE(6850), 1, - sym_cell_path, - ACTIONS(1894), 2, + ACTIONS(1896), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, - [208863] = 8, - ACTIONS(3), 1, + [209232] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1786), 1, - anon_sym_RBRACK, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(8905), 1, + ACTIONS(1572), 1, + anon_sym_LBRACE, + ACTIONS(6342), 1, + sym_filesize_unit, + ACTIONS(6344), 1, + sym_duration_unit, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, + ACTIONS(8881), 1, anon_sym_DOT_DOT2, - STATE(5595), 1, + STATE(5629), 1, sym_comment, - ACTIONS(8907), 2, + ACTIONS(8883), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208889] = 8, + [209258] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - anon_sym_in, - ACTIONS(4433), 1, + ACTIONS(8709), 1, + aux_sym__immediate_decimal_token2, + STATE(5630), 1, + sym_comment, + ACTIONS(1667), 2, anon_sym_DOT_DOT2, - ACTIONS(6790), 1, aux_sym_unquoted_token2, - ACTIONS(8909), 1, - sym_filesize_unit, - ACTIONS(8911), 1, - sym_duration_unit, - STATE(5596), 1, - sym_comment, - ACTIONS(4435), 2, + ACTIONS(1669), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208915] = 8, + [209278] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(8776), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8778), 1, anon_sym_DASH, - STATE(5597), 1, + ACTIONS(8885), 1, + sym_identifier, + STATE(5593), 1, + aux_sym_ctrl_do_repeat1, + STATE(5631), 1, sym_comment, - STATE(6804), 1, - sym_block, - STATE(7466), 1, + STATE(5902), 1, sym__flag, - STATE(5900), 2, + STATE(6046), 2, sym_short_flag, sym_long_flag, - [208941] = 4, - ACTIONS(247), 1, + [209304] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, - anon_sym_DASH, - STATE(5598), 1, + ACTIONS(1949), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(522), 1, + sym_cell_path, + STATE(5632), 1, sym_comment, - ACTIONS(8913), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + ACTIONS(1947), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [208959] = 8, + [209330] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + ACTIONS(8887), 1, + anon_sym_DOT, + STATE(1212), 1, + sym_path, + STATE(5633), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209352] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8890), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8892), 1, anon_sym_DASH, - STATE(5599), 1, + ACTIONS(8894), 1, + anon_sym_in, + STATE(5634), 1, sym_comment, - STATE(6900), 1, - sym_block, - STATE(7366), 1, + STATE(7676), 1, sym__flag, - STATE(5900), 2, + STATE(5404), 2, sym_short_flag, sym_long_flag, - [208985] = 5, - ACTIONS(247), 1, + [209375] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(6844), 1, - aux_sym_unquoted_token2, - STATE(5600), 1, + ACTIONS(8802), 1, + anon_sym_DOT, + STATE(5635), 1, sym_comment, - ACTIONS(1587), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209005] = 7, + STATE(5643), 1, + aux_sym_cell_path_repeat1, + STATE(6603), 1, + sym_path, + ACTIONS(1011), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [209396] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(4119), 1, - sym_cell_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(5601), 1, + STATE(5636), 1, sym_comment, - ACTIONS(1013), 3, + ACTIONS(1667), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1669), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [209029] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1017), 1, - anon_sym_DOT_DOT2, - ACTIONS(8749), 1, - anon_sym_DOT, - STATE(1206), 1, - sym_path, - STATE(5602), 1, - sym_comment, - STATE(5603), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1019), 3, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209053] = 6, + [209413] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4742), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5637), 1, + sym_comment, + STATE(5916), 1, + sym__immediate_decimal, + [209438] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4742), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5638), 1, + sym_comment, + STATE(7280), 1, + sym__immediate_decimal, + [209463] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(8896), 1, anon_sym_DOT_DOT2, - ACTIONS(8917), 1, - anon_sym_DOT, - STATE(1206), 1, - sym_path, - STATE(5603), 2, + STATE(5639), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 3, - aux_sym_ctrl_match_token1, + ACTIONS(1796), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8898), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209075] = 8, + [209484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(498), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5604), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2247), 1, + anon_sym_LBRACE, + STATE(5640), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1913), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209101] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8299), 1, + ACTIONS(2245), 4, sym_identifier, - ACTIONS(8920), 1, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8923), 1, anon_sym_DASH, - STATE(5943), 1, - sym__flag, - STATE(5605), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [209125] = 3, + [209503] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5606), 1, + STATE(5641), 1, sym_comment, - ACTIONS(5118), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [209141] = 8, + ACTIONS(1659), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1661), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209520] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, - anon_sym_DASH, - STATE(5607), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(8902), 1, + anon_sym_RBRACK, + STATE(5642), 1, sym_comment, - STATE(6921), 1, - sym_block, - STATE(7401), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [209167] = 8, + STATE(5967), 1, + aux_sym_shebang_repeat1, + STATE(6876), 1, + sym_val_list, + STATE(6966), 1, + aux_sym_val_table_repeat1, + [209545] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, - sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8904), 1, anon_sym_DOT, - STATE(499), 1, - sym_cell_path, - STATE(5541), 1, + STATE(6603), 1, + sym_path, + STATE(5643), 2, + sym_comment, aux_sym_cell_path_repeat1, - STATE(5608), 1, + ACTIONS(1015), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [209564] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1997), 1, + sym__entry_separator, + ACTIONS(8907), 1, + anon_sym_DOT_DOT2, + STATE(5644), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1917), 2, + ACTIONS(1991), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [209193] = 8, - ACTIONS(247), 1, + ACTIONS(8909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209585] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, - anon_sym_DASH, - STATE(5609), 1, + ACTIONS(2005), 1, + sym__entry_separator, + ACTIONS(8911), 1, + anon_sym_DOT_DOT2, + STATE(5645), 1, sym_comment, - STATE(6200), 1, - sym_block, - STATE(7435), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [209219] = 8, + ACTIONS(1999), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(8913), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209606] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2013), 1, + sym__entry_separator, + ACTIONS(8915), 1, + anon_sym_DOT_DOT2, + STATE(5646), 1, + sym_comment, + ACTIONS(2007), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(8917), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209627] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, + ACTIONS(8890), 1, anon_sym_DASH_DASH, - ACTIONS(8843), 1, + ACTIONS(8892), 1, anon_sym_DASH, - STATE(5610), 1, + ACTIONS(8919), 1, + anon_sym_in, + STATE(5647), 1, sym_comment, - STATE(6202), 1, - sym_block, - STATE(7439), 1, + STATE(7464), 1, sym__flag, - STATE(5900), 2, + STATE(5404), 2, sym_short_flag, sym_long_flag, - [209245] = 8, + [209650] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, - anon_sym_DASH, - STATE(5611), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(5648), 1, sym_comment, - STATE(6212), 1, + STATE(6277), 1, sym_block, - STATE(7452), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [209271] = 5, + ACTIONS(8921), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209669] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DASH, - ACTIONS(8926), 1, - anon_sym_EQ2, - STATE(5612), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(5649), 1, sym_comment, - ACTIONS(4914), 5, - ts_builtin_sym_end, + STATE(6305), 1, + sym_block, + ACTIONS(8921), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209291] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209688] = 8, + ACTIONS(143), 1, + sym__newline, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1833), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(2925), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5613), 1, + ACTIONS(673), 1, + anon_sym_RPAREN, + ACTIONS(8923), 1, + anon_sym_SEMI, + STATE(258), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5650), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1829), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209317] = 4, + STATE(6591), 1, + aux_sym__block_body_repeat1, + STATE(6992), 1, + aux_sym_shebang_repeat1, + [209713] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5614), 1, + STATE(5651), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1645), 5, + ACTIONS(1723), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209335] = 8, - ACTIONS(247), 1, + [209730] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(8173), 1, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8928), 1, - anon_sym_DOT, - STATE(5615), 1, + ACTIONS(8925), 1, + aux_sym_unquoted_token3, + STATE(5652), 1, sym_comment, - STATE(6085), 1, + STATE(6378), 1, sym__immediate_decimal, - ACTIONS(8171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [209361] = 4, + [209755] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5616), 1, + ACTIONS(2255), 1, + anon_sym_LBRACE, + STATE(5653), 1, sym_comment, - ACTIONS(1705), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1707), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209379] = 4, + ACTIONS(2253), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [209772] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5617), 1, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8925), 1, + aux_sym_unquoted_token3, + STATE(5654), 1, sym_comment, - ACTIONS(1755), 3, - anon_sym_RBRACE, + STATE(7494), 1, + sym__immediate_decimal, + [209797] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5655), 1, + sym_comment, + ACTIONS(1738), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1740), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209397] = 4, + [209814] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5618), 1, - sym_comment, - ACTIONS(1565), 2, + ACTIONS(4512), 1, anon_sym_DOT_DOT2, + ACTIONS(8925), 1, aux_sym_unquoted_token2, - ACTIONS(1567), 5, - anon_sym_in, + STATE(5656), 1, + sym_comment, + ACTIONS(4514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(8927), 2, sym_filesize_unit, sym_duration_unit, - [209415] = 8, - ACTIONS(3), 1, + [209835] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1939), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5619), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5148), 1, + sym__blosure, + STATE(5657), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6851), 1, - sym_cell_path, - ACTIONS(1937), 2, - anon_sym_RBRACE, - anon_sym__, - [209441] = 8, - ACTIONS(3), 1, + [209860] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5620), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5148), 1, + sym__blosure, + STATE(5658), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6856), 1, - sym_cell_path, - ACTIONS(1945), 2, - anon_sym_RBRACE, - anon_sym__, - [209467] = 5, + STATE(5865), 1, + aux_sym_shebang_repeat1, + [209885] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8932), 1, - anon_sym_COLON, - ACTIONS(8934), 1, - anon_sym_COMMA, - STATE(5621), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5149), 1, + sym__blosure, + STATE(5659), 1, sym_comment, - ACTIONS(8930), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [209487] = 8, - ACTIONS(3), 1, + [209910] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5622), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5149), 1, + sym__blosure, + STATE(5660), 1, sym_comment, - STATE(5978), 1, - sym_path, - STATE(6869), 1, - sym_cell_path, - ACTIONS(1949), 2, - anon_sym_RBRACE, - anon_sym__, - [209513] = 5, + STATE(5867), 1, + aux_sym_shebang_repeat1, + [209935] = 8, + ACTIONS(143), 1, + sym__newline, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8938), 1, - anon_sym_COLON, - ACTIONS(8940), 1, - anon_sym_COMMA, - STATE(5623), 1, + ACTIONS(8923), 1, + anon_sym_SEMI, + ACTIONS(8931), 1, + anon_sym_RPAREN, + STATE(258), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5661), 1, sym_comment, - ACTIONS(8936), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [209533] = 8, - ACTIONS(3), 1, + STATE(6255), 1, + aux_sym__block_body_repeat1, + STATE(6992), 1, + aux_sym_shebang_repeat1, + [209960] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(471), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5624), 1, + ACTIONS(8890), 1, + anon_sym_DASH_DASH, + ACTIONS(8892), 1, + anon_sym_DASH, + ACTIONS(8933), 1, + anon_sym_in, + STATE(5662), 1, sym_comment, - STATE(5978), 1, - sym_path, - ACTIONS(1921), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209559] = 5, + STATE(7641), 1, + sym__flag, + STATE(5404), 2, + sym_short_flag, + sym_long_flag, + [209983] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(8211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8213), 1, + aux_sym__immediate_decimal_token5, + STATE(5663), 1, + sym_comment, + STATE(7699), 1, + sym__immediate_decimal, + ACTIONS(8209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [210006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, - aux_sym__immediate_decimal_token2, - STATE(5625), 1, + STATE(5664), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(2033), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT2, - ACTIONS(1645), 3, + ACTIONS(2035), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [209579] = 8, - ACTIONS(3), 1, + [210023] = 7, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(8942), 1, - anon_sym_DOT_DOT2, - STATE(5626), 1, + ACTIONS(8935), 1, + aux_sym_path_token1, + STATE(1975), 1, + sym__str_double_quotes, + STATE(2016), 1, + sym_val_string, + STATE(5665), 1, sym_comment, - ACTIONS(8944), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209605] = 8, - ACTIONS(3), 1, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [210046] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_RBRACK, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8946), 1, - anon_sym_DOT_DOT2, - STATE(5627), 1, + ACTIONS(1518), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(8937), 1, + anon_sym_DOT, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token2, + STATE(5666), 1, sym_comment, - ACTIONS(8948), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209631] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_RBRACE, - ACTIONS(1587), 1, - sym__entry_separator, - ACTIONS(8726), 1, + ACTIONS(1520), 3, sym_filesize_unit, - ACTIONS(8728), 1, sym_duration_unit, - ACTIONS(8950), 1, + aux_sym_record_entry_token1, + [210067] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6484), 1, anon_sym_DOT_DOT2, - STATE(5628), 1, + STATE(5667), 1, sym_comment, - ACTIONS(8952), 2, + ACTIONS(6486), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209657] = 4, + ACTIONS(5889), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210086] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5629), 1, - sym_comment, - ACTIONS(1631), 2, + ACTIONS(6484), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 5, + STATE(5668), 1, + sym_comment, + ACTIONS(6486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5895), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209675] = 7, + [210105] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(5630), 1, + ACTIONS(3429), 1, + anon_sym_DQUOTE, + ACTIONS(8941), 1, + aux_sym_path_token1, + STATE(2601), 1, + sym_val_string, + STATE(2725), 1, + sym__str_double_quotes, + STATE(5669), 1, sym_comment, - STATE(7006), 1, - sym_cell_path, - ACTIONS(5731), 3, + ACTIONS(3431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [210128] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token2, + STATE(5670), 1, + sym_comment, + ACTIONS(1661), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [209699] = 7, + [210149] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8892), 1, + ACTIONS(7105), 1, + anon_sym_RBRACK, + ACTIONS(7107), 1, + sym__entry_separator, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5631), 1, + STATE(5671), 1, sym_comment, - STATE(5815), 1, + STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(6548), 1, + STATE(6292), 1, sym_path, - STATE(6938), 1, + STATE(7191), 1, sym_cell_path, - ACTIONS(1965), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [209723] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8841), 1, - anon_sym_DASH_DASH, - ACTIONS(8843), 1, - anon_sym_DASH, - ACTIONS(8954), 1, - aux_sym_ctrl_match_token1, - STATE(5632), 1, - sym_comment, - STATE(6898), 1, - sym_val_record, - STATE(7372), 1, - sym__flag, - STATE(5900), 2, - sym_short_flag, - sym_long_flag, - [209749] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(8958), 1, - anon_sym_RBRACK, - STATE(5633), 1, - sym_comment, - STATE(6046), 1, - aux_sym_shebang_repeat1, - STATE(7111), 1, - sym_val_list, - STATE(7154), 1, - aux_sym_val_table_repeat1, - [209774] = 7, + [210174] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(8964), 1, + ACTIONS(8951), 1, anon_sym_DQUOTE2, - STATE(5634), 1, + STATE(5672), 1, sym_comment, - STATE(5708), 1, + STATE(5851), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [209797] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(8966), 1, - aux_sym_path_token1, - STATE(5318), 1, - sym_val_string, - STATE(5345), 1, - sym__str_double_quotes, - STATE(5635), 1, - sym_comment, - ACTIONS(3006), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [209820] = 8, + [210197] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5636), 1, + ACTIONS(7067), 1, + anon_sym_RBRACK, + ACTIONS(7069), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(5673), 1, sym_comment, - STATE(6635), 1, - sym__immediate_decimal, - [209845] = 8, - ACTIONS(3), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + STATE(7330), 1, + sym_cell_path, + [210222] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, - STATE(5637), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(5674), 1, sym_comment, - STATE(7714), 1, - sym__immediate_decimal, - [209870] = 7, + STATE(6503), 1, + sym_block, + ACTIONS(8953), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210241] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(8968), 1, + ACTIONS(8955), 1, anon_sym_DQUOTE2, - STATE(5638), 1, + STATE(5675), 1, sym_comment, - STATE(5642), 1, + STATE(5679), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [209893] = 8, + [210264] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8957), 1, + anon_sym_EQ2, + ACTIONS(8959), 1, + sym_short_flag_identifier, + STATE(5676), 1, + sym_comment, + ACTIONS(4781), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(4783), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + [210285] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, + ACTIONS(5391), 1, aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5639), 1, + STATE(5677), 1, sym_comment, - STATE(6635), 1, + STATE(6378), 1, sym__immediate_decimal, - [209918] = 8, + [210310] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, + ACTIONS(5391), 1, aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5640), 1, + STATE(5678), 1, sym_comment, - STATE(7714), 1, + STATE(7494), 1, sym__immediate_decimal, - [209943] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_RBRACE, - ACTIONS(1907), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(544), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5641), 1, - sym_comment, - STATE(5978), 1, - sym_path, - [209968] = 7, + [210335] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(8970), 1, + ACTIONS(8961), 1, anon_sym_DQUOTE2, - STATE(5642), 1, + STATE(5679), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [209991] = 8, + [210358] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(5053), 1, - sym__blosure, - STATE(5643), 1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(8963), 1, + anon_sym_RBRACK, + STATE(5680), 1, sym_comment, - [210016] = 8, + STATE(5996), 1, + aux_sym_shebang_repeat1, + STATE(6636), 1, + sym_val_list, + STATE(7014), 1, + aux_sym_val_table_repeat1, + [210383] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(8974), 1, + ACTIONS(8965), 1, anon_sym_RBRACK, - STATE(5644), 1, + STATE(5681), 1, sym_comment, - STATE(6051), 1, + STATE(6065), 1, aux_sym_shebang_repeat1, - STATE(7169), 1, - aux_sym_val_table_repeat1, - STATE(7286), 1, + STATE(7181), 1, sym_val_list, - [210041] = 8, + STATE(7182), 1, + aux_sym_val_table_repeat1, + [210408] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(4963), 1, - sym__blosure, - STATE(5645), 1, + ACTIONS(8841), 1, + anon_sym_DASH, + STATE(5682), 1, sym_comment, - [210066] = 8, + ACTIONS(8839), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [210425] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4963), 1, - sym__blosure, - STATE(5646), 1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(8967), 1, + anon_sym_RBRACK, + STATE(5683), 1, sym_comment, - STATE(5649), 1, + STATE(5989), 1, aux_sym_shebang_repeat1, - [210091] = 8, - ACTIONS(247), 1, + STATE(6972), 1, + sym_val_list, + STATE(6977), 1, + aux_sym_val_table_repeat1, + [210450] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(5053), 1, - sym__blosure, - STATE(5645), 1, - aux_sym_shebang_repeat1, - STATE(5647), 1, + ACTIONS(4614), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5684), 1, + sym_comment, + STATE(5916), 1, + sym__immediate_decimal, + [210475] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4614), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5685), 1, sym_comment, - [210116] = 8, + STATE(7280), 1, + sym__immediate_decimal, + [210500] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(8976), 1, + ACTIONS(8969), 1, anon_sym_RBRACK, - STATE(5648), 1, + STATE(5686), 1, sym_comment, - STATE(6052), 1, + STATE(5997), 1, aux_sym_shebang_repeat1, - STATE(6665), 1, + STATE(6691), 1, sym_val_list, - STATE(7172), 1, + STATE(7016), 1, aux_sym_val_table_repeat1, - [210141] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(4993), 1, - sym__blosure, - STATE(5649), 1, - sym_comment, - [210166] = 7, - ACTIONS(247), 1, + [210525] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8978), 1, - anon_sym_DQUOTE, - ACTIONS(8982), 1, - aux_sym_path_token1, - STATE(5650), 1, + ACTIONS(2025), 1, + sym__entry_separator, + ACTIONS(8971), 1, + anon_sym_DOT_DOT2, + STATE(5687), 1, sym_comment, - STATE(5706), 1, - sym_val_string, - STATE(5801), 1, - sym__str_double_quotes, - ACTIONS(8980), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [210189] = 8, + ACTIONS(2019), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(8973), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210546] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7080), 1, - anon_sym_RBRACK, - ACTIONS(7082), 1, + ACTIONS(1927), 1, + anon_sym_RBRACE, + ACTIONS(1929), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8768), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5651), 1, + STATE(617), 1, + sym_cell_path, + STATE(5688), 1, sym_comment, - STATE(5978), 1, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, sym_path, - STATE(7358), 1, - sym_cell_path, - [210214] = 8, + [210571] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(8879), 1, + anon_sym_LBRACE, + STATE(5689), 1, + sym_comment, + STATE(6490), 1, + sym_val_record, + ACTIONS(8975), 4, sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(4964), 1, - sym__blosure, - STATE(5652), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210590] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8879), 1, + anon_sym_LBRACE, + STATE(5690), 1, sym_comment, - [210239] = 8, + STATE(6491), 1, + sym_val_record, + ACTIONS(8977), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210609] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1693), 1, sym_block, - STATE(1609), 1, + STATE(1694), 1, sym_val_closure, - STATE(4964), 1, + STATE(5037), 1, sym__blosure, - STATE(5653), 1, + STATE(5691), 1, sym_comment, - STATE(5809), 1, - aux_sym_shebang_repeat1, - [210264] = 7, + [210634] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(8984), 1, - anon_sym_DQUOTE2, - STATE(5654), 1, - sym_comment, - STATE(5659), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210287] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3413), 1, - anon_sym_DQUOTE, - ACTIONS(8986), 1, - aux_sym_path_token1, - STATE(2553), 1, - sym_val_string, - STATE(2643), 1, - sym__str_double_quotes, - STATE(5655), 1, + ACTIONS(1931), 1, + anon_sym_RBRACE, + ACTIONS(1933), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(616), 1, + sym_cell_path, + STATE(5692), 1, sym_comment, - ACTIONS(3415), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [210310] = 8, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + [210659] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6874), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8979), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5656), 1, + ACTIONS(8981), 1, + aux_sym__immediate_decimal_token2, + STATE(5693), 1, sym_comment, - STATE(6635), 1, - sym__immediate_decimal, - [210335] = 8, - ACTIONS(3), 1, + ACTIONS(1659), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1661), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [210680] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6874), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5001), 1, + sym__blosure, + STATE(5694), 1, + sym_comment, + STATE(5701), 1, + aux_sym_shebang_repeat1, + [210705] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1540), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(8983), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, - STATE(5657), 1, + ACTIONS(8985), 1, + aux_sym__immediate_decimal_token2, + STATE(5695), 1, sym_comment, - STATE(7714), 1, - sym__immediate_decimal, - [210360] = 4, + ACTIONS(1542), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [210726] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5044), 1, + ACTIONS(4988), 1, anon_sym_DASH, - STATE(5658), 1, + STATE(5696), 1, sym_comment, - ACTIONS(5042), 5, + ACTIONS(4986), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [210377] = 7, + [210743] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(8988), 1, - anon_sym_DQUOTE2, - STATE(5659), 1, + ACTIONS(8987), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8989), 1, + aux_sym__immediate_decimal_token2, + STATE(5697), 1, sym_comment, - STATE(5892), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210400] = 4, + ACTIONS(1659), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1661), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [210764] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5660), 1, + STATE(5698), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1058), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT2, - ACTIONS(1645), 3, + ACTIONS(1060), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [210417] = 8, - ACTIONS(247), 1, + [210781] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(8990), 1, + ACTIONS(1013), 1, + sym__entry_separator, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(5699), 1, + sym_comment, + STATE(5706), 1, + aux_sym_cell_path_repeat1, + STATE(6292), 1, + sym_path, + ACTIONS(1011), 2, anon_sym_RBRACK, - STATE(5661), 1, + anon_sym_RBRACE, + [210804] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3868), 1, + sym__space, + STATE(5700), 1, sym_comment, - STATE(6053), 1, - aux_sym_shebang_repeat1, - STATE(6684), 1, - sym_val_list, - STATE(7178), 1, - aux_sym_val_table_repeat1, - [210442] = 8, + ACTIONS(3866), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + [210821] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5662), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5074), 1, + sym__blosure, + STATE(5701), 1, sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6547), 1, - sym__assignment_pattern, - [210467] = 8, + [210846] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(8994), 1, - anon_sym_RBRACK, - STATE(5663), 1, - sym_comment, - STATE(6054), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5074), 1, + sym__blosure, + STATE(5657), 1, aux_sym_shebang_repeat1, - STATE(6688), 1, - sym_val_list, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [210492] = 7, + STATE(5702), 1, + sym_comment, + [210871] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(507), 1, + ACTIONS(4131), 1, anon_sym_DQUOTE, - ACTIONS(8996), 1, + ACTIONS(8991), 1, aux_sym_path_token1, - STATE(1707), 1, + STATE(4744), 1, sym__str_double_quotes, - STATE(1987), 1, + STATE(5363), 1, sym_val_string, - STATE(5664), 1, + STATE(5703), 1, sym_comment, - ACTIONS(509), 2, + ACTIONS(4133), 2, sym__str_single_quotes, sym__str_back_ticks, - [210515] = 4, - ACTIONS(3), 1, + [210894] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5665), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(5704), 1, sym_comment, - ACTIONS(1046), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1044), 4, - anon_sym_RBRACK, + STATE(6592), 1, + sym_block, + ACTIONS(8993), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym__, - anon_sym_QMARK2, - [210532] = 8, + [210913] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(8995), 1, + anon_sym_DOT_DOT2, + STATE(5705), 1, + sym_comment, + ACTIONS(1786), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8997), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7093), 1, - anon_sym_RBRACK, - ACTIONS(7095), 1, + ACTIONS(1017), 1, sym__entry_separator, - ACTIONS(8771), 1, + ACTIONS(8999), 1, anon_sym_DOT, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5666), 1, - sym_comment, - STATE(5978), 1, + STATE(6292), 1, sym_path, - STATE(7459), 1, - sym_cell_path, - [210557] = 7, + ACTIONS(1015), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5706), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [210955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(8998), 1, + ACTIONS(9002), 1, anon_sym_DQUOTE2, - STATE(5667), 1, + STATE(5707), 1, sym_comment, - STATE(5671), 1, + STATE(5710), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210580] = 8, + [210978] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, + ACTIONS(8350), 1, + aux_sym_unquoted_token3, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5668), 1, + STATE(5708), 1, sym_comment, - STATE(6635), 1, + STATE(6378), 1, sym__immediate_decimal, - [210605] = 8, + [211003] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, + ACTIONS(8350), 1, + aux_sym_unquoted_token3, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5669), 1, + STATE(5709), 1, sym_comment, - STATE(7714), 1, + STATE(7494), 1, sym__immediate_decimal, - [210630] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(9000), 1, - anon_sym_DOT, - ACTIONS(9002), 1, - aux_sym__immediate_decimal_token2, - STATE(5670), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [210651] = 7, + [211028] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, ACTIONS(9004), 1, anon_sym_DQUOTE2, - STATE(5671), 1, + STATE(5710), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210674] = 8, + [211051] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, ACTIONS(9006), 1, anon_sym_RBRACK, - STATE(5672), 1, + STATE(5711), 1, sym_comment, - STATE(6055), 1, + STATE(6001), 1, aux_sym_shebang_repeat1, - STATE(6706), 1, + STATE(6881), 1, sym_val_list, - STATE(7185), 1, + STATE(7029), 1, aux_sym_val_table_repeat1, - [210699] = 7, + [211076] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DASH_DASH, - ACTIONS(9010), 1, - anon_sym_DASH, - ACTIONS(9012), 1, - anon_sym_in, - STATE(5673), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(5712), 1, sym_comment, - STATE(7590), 1, - sym__flag, - STATE(5452), 2, - sym_short_flag, - sym_long_flag, - [210722] = 8, - ACTIONS(3), 1, + STATE(6595), 1, + sym_block, + ACTIONS(9008), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211095] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5674), 1, + ACTIONS(4992), 1, + anon_sym_DASH, + STATE(5713), 1, sym_comment, - STATE(6059), 1, - sym__immediate_decimal, - [210747] = 8, - ACTIONS(3), 1, + ACTIONS(4990), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [211112] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, - STATE(5675), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(5714), 1, sym_comment, - STATE(7433), 1, - sym__immediate_decimal, - [210772] = 8, + STATE(6601), 1, + sym_block, + ACTIONS(9008), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211131] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9014), 1, + ACTIONS(9010), 1, anon_sym_RBRACK, - STATE(5676), 1, + STATE(5715), 1, sym_comment, - STATE(6056), 1, + STATE(6002), 1, aux_sym_shebang_repeat1, - STATE(6710), 1, + STATE(6885), 1, sym_val_list, - STATE(7188), 1, + STATE(7032), 1, aux_sym_val_table_repeat1, - [210797] = 7, + [211156] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(9012), 1, + anon_sym_DOT, + ACTIONS(9014), 1, + aux_sym__immediate_decimal_token2, + STATE(5716), 1, + sym_comment, + ACTIONS(1669), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211177] = 7, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(9016), 1, anon_sym_DQUOTE, ACTIONS(9020), 1, aux_sym_path_token1, - STATE(1089), 1, - sym_val_string, - STATE(1170), 1, + STATE(2404), 1, sym__str_double_quotes, - STATE(5677), 1, + STATE(2455), 1, + sym_val_string, + STATE(5717), 1, sym_comment, ACTIONS(9018), 2, sym__str_single_quotes, sym__str_back_ticks, - [210820] = 5, + [211200] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(5678), 1, + ACTIONS(4996), 1, + anon_sym_DASH, + STATE(5718), 1, sym_comment, - STATE(6314), 1, - sym_block, - ACTIONS(9022), 4, + ACTIONS(4994), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_as, + [211217] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1072), 1, + sym__entry_separator, + ACTIONS(9022), 1, + anon_sym_DOT_DOT2, + STATE(5719), 1, + sym_comment, + ACTIONS(1070), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [210839] = 8, + ACTIONS(9024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211238] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5679), 1, + ACTIONS(5000), 1, + anon_sym_DASH, + STATE(5720), 1, sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6550), 1, - sym__assignment_pattern, - [210864] = 7, + ACTIONS(4998), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [211255] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5004), 1, + anon_sym_DASH, + STATE(5721), 1, + sym_comment, + ACTIONS(5002), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [211272] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9024), 1, + ACTIONS(9026), 1, anon_sym_DQUOTE2, - STATE(5680), 1, + STATE(5722), 1, sym_comment, - STATE(5684), 1, + STATE(5726), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210887] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(5681), 1, - sym_comment, - STATE(6335), 1, - sym_block, - ACTIONS(9026), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210906] = 8, + [211295] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4441), 1, + ACTIONS(6790), 1, aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5682), 1, + STATE(5723), 1, sym_comment, - STATE(6635), 1, + STATE(6378), 1, sym__immediate_decimal, - [210931] = 8, + [211320] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4441), 1, + ACTIONS(6790), 1, aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5683), 1, + STATE(5724), 1, sym_comment, - STATE(7714), 1, + STATE(7494), 1, sym__immediate_decimal, - [210956] = 7, + [211345] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4808), 1, + anon_sym_DASH, + ACTIONS(9028), 1, + sym_long_flag_identifier, + ACTIONS(9030), 1, + anon_sym_EQ2, + STATE(5725), 1, + sym_comment, + ACTIONS(4810), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211366] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9028), 1, + ACTIONS(9032), 1, anon_sym_DQUOTE2, - STATE(5684), 1, + STATE(5726), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210979] = 8, + [211389] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9030), 1, + ACTIONS(9034), 1, anon_sym_RBRACK, - STATE(5685), 1, + STATE(5727), 1, sym_comment, - STATE(6057), 1, + STATE(6004), 1, aux_sym_shebang_repeat1, - STATE(6733), 1, + STATE(6925), 1, sym_val_list, - STATE(7192), 1, + STATE(7037), 1, aux_sym_val_table_repeat1, - [211004] = 4, + [211414] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(5686), 1, - sym_comment, - ACTIONS(1631), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1633), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211021] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - sym__entry_separator, - ACTIONS(9032), 1, - anon_sym_DOT_DOT2, - STATE(5687), 1, + ACTIONS(9036), 1, + anon_sym_DQUOTE, + ACTIONS(9040), 1, + aux_sym_path_token1, + STATE(1226), 1, + sym__str_double_quotes, + STATE(1240), 1, + sym_val_string, + STATE(5728), 1, sym_comment, - ACTIONS(2035), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9034), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211042] = 8, + ACTIONS(9038), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211437] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9036), 1, + ACTIONS(9042), 1, anon_sym_RBRACK, - STATE(5688), 1, + STATE(5729), 1, sym_comment, - STATE(6058), 1, + STATE(6005), 1, aux_sym_shebang_repeat1, - STATE(6739), 1, - sym_val_list, - STATE(7194), 1, + STATE(7040), 1, aux_sym_val_table_repeat1, - [211067] = 7, - ACTIONS(233), 1, - anon_sym_DQUOTE, + STATE(7186), 1, + sym_val_list, + [211462] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9038), 1, + ACTIONS(9044), 1, + anon_sym_DQUOTE, + ACTIONS(9048), 1, aux_sym_path_token1, - STATE(1389), 1, + STATE(5730), 1, + sym_comment, + STATE(6022), 1, sym__str_double_quotes, - STATE(1463), 1, + STATE(6068), 1, sym_val_string, - STATE(5689), 1, - sym_comment, - ACTIONS(235), 2, + ACTIONS(9046), 2, sym__str_single_quotes, sym__str_back_ticks, - [211090] = 5, + [211485] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(5690), 1, - sym_comment, - STATE(6175), 1, - sym_block, - ACTIONS(9040), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211109] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_RBRACE, - ACTIONS(1911), 1, - sym__entry_separator, - ACTIONS(8771), 1, - anon_sym_DOT, - STATE(565), 1, - sym_cell_path, - STATE(5541), 1, - aux_sym_cell_path_repeat1, - STATE(5691), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5731), 1, sym_comment, - STATE(5978), 1, - sym_path, - [211134] = 7, + STATE(5970), 1, + sym__variable_name, + STATE(6483), 1, + sym__assignment_pattern, + [211510] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9042), 1, + ACTIONS(9052), 1, anon_sym_DQUOTE2, - STATE(5692), 1, + STATE(5732), 1, sym_comment, - STATE(5695), 1, + STATE(5735), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211157] = 8, + [211533] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6844), 1, + ACTIONS(4539), 1, aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5693), 1, + STATE(5733), 1, sym_comment, - STATE(6635), 1, + STATE(6378), 1, sym__immediate_decimal, - [211182] = 8, + [211558] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6844), 1, + ACTIONS(4539), 1, aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5694), 1, + STATE(5734), 1, sym_comment, - STATE(7714), 1, + STATE(7494), 1, sym__immediate_decimal, - [211207] = 7, + [211583] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9044), 1, + ACTIONS(9054), 1, anon_sym_DQUOTE2, - STATE(5695), 1, + STATE(5735), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211230] = 8, + [211606] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5736), 1, + sym_comment, + STATE(5970), 1, + sym__variable_name, + STATE(6487), 1, + sym__assignment_pattern, + [211631] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9046), 1, + ACTIONS(9056), 1, anon_sym_RBRACK, - STATE(5696), 1, + STATE(5737), 1, sym_comment, - STATE(6060), 1, + STATE(6011), 1, aux_sym_shebang_repeat1, - STATE(6761), 1, + STATE(6994), 1, sym_val_list, - STATE(7200), 1, + STATE(7052), 1, aux_sym_val_table_repeat1, - [211255] = 5, + [211656] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(5697), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5738), 1, sym_comment, - STATE(6187), 1, - sym_block, - ACTIONS(9040), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211274] = 8, + STATE(5970), 1, + sym__variable_name, + STATE(6502), 1, + sym__assignment_pattern, + [211681] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9048), 1, + ACTIONS(9058), 1, anon_sym_RBRACK, - STATE(5698), 1, + STATE(5739), 1, sym_comment, - STATE(5898), 1, + STATE(6012), 1, aux_sym_shebang_repeat1, - STATE(6767), 1, + STATE(7005), 1, sym_val_list, - STATE(7202), 1, + STATE(7055), 1, aux_sym_val_table_repeat1, - [211299] = 7, + [211706] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9050), 1, + ACTIONS(3015), 1, anon_sym_DQUOTE, - ACTIONS(9054), 1, + ACTIONS(9060), 1, aux_sym_path_token1, - STATE(1073), 1, - sym_val_string, - STATE(1079), 1, + STATE(5413), 1, sym__str_double_quotes, - STATE(5699), 1, + STATE(5417), 1, + sym_val_string, + STATE(5740), 1, sym_comment, - ACTIONS(9052), 2, + ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - [211322] = 8, + [211729] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, + ACTIONS(4783), 1, anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5700), 1, + ACTIONS(9062), 1, + anon_sym_EQ2, + ACTIONS(9064), 1, + sym_short_flag_identifier, + STATE(5741), 1, sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6551), 1, - sym__assignment_pattern, - [211347] = 7, + ACTIONS(4781), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [211750] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9056), 1, + ACTIONS(9066), 1, anon_sym_DQUOTE2, - STATE(5701), 1, + STATE(5742), 1, sym_comment, - STATE(5892), 1, + STATE(5746), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211370] = 7, + [211773] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9058), 1, - anon_sym_DQUOTE, - ACTIONS(9062), 1, - aux_sym_path_token1, - STATE(1179), 1, - sym__str_double_quotes, - STATE(1186), 1, - sym_val_string, - STATE(5702), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(8211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8213), 1, + aux_sym__immediate_decimal_token5, + STATE(5743), 1, sym_comment, - ACTIONS(9060), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211393] = 7, + STATE(7368), 1, + sym__immediate_decimal, + ACTIONS(8209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [211796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9064), 1, - anon_sym_DQUOTE2, - STATE(5703), 1, + ACTIONS(6939), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5744), 1, sym_comment, - STATE(5705), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211416] = 5, + STATE(6378), 1, + sym__immediate_decimal, + [211821] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9066), 1, - anon_sym_QMARK2, - STATE(5704), 1, + ACTIONS(6939), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5745), 1, sym_comment, - ACTIONS(1036), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1034), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [211435] = 7, + STATE(7494), 1, + sym__immediate_decimal, + [211846] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, ACTIONS(9068), 1, anon_sym_DQUOTE2, - STATE(5705), 1, + STATE(5746), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211458] = 5, - ACTIONS(3), 1, + [211869] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, ACTIONS(9070), 1, - anon_sym_QMARK2, - STATE(5706), 1, - sym_comment, - ACTIONS(1030), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1028), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [211477] = 8, + STATE(5747), 1, + sym_comment, + STATE(6013), 1, + aux_sym_shebang_repeat1, + STATE(7060), 1, + aux_sym_val_table_repeat1, + STATE(7126), 1, + sym_val_list, + [211894] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, ACTIONS(9072), 1, anon_sym_RBRACK, - STATE(5707), 1, + STATE(5748), 1, sym_comment, - STATE(6061), 1, + STATE(6014), 1, aux_sym_shebang_repeat1, - STATE(6789), 1, - sym_val_list, - STATE(7208), 1, + STATE(7062), 1, aux_sym_val_table_repeat1, - [211502] = 7, + STATE(7156), 1, + sym_val_list, + [211919] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9074), 1, + anon_sym_DQUOTE, + ACTIONS(9078), 1, + aux_sym_path_token1, + STATE(5749), 1, + sym_comment, + STATE(5900), 1, + sym__str_double_quotes, + STATE(5977), 1, + sym_val_string, + ACTIONS(9076), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211942] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9074), 1, + ACTIONS(9080), 1, anon_sym_DQUOTE2, - STATE(5708), 1, + STATE(5750), 1, sym_comment, - STATE(5892), 1, + STATE(5753), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211525] = 8, - ACTIONS(247), 1, + [211965] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9076), 1, - anon_sym_RBRACK, - STATE(5709), 1, + ACTIONS(6872), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5751), 1, sym_comment, - STATE(6026), 1, - aux_sym_shebang_repeat1, - STATE(7062), 1, - aux_sym_val_table_repeat1, - STATE(7079), 1, - sym_val_list, - [211550] = 8, + STATE(6378), 1, + sym__immediate_decimal, + [211990] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6872), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5752), 1, + sym_comment, + STATE(7494), 1, + sym__immediate_decimal, + [212015] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9082), 1, + anon_sym_DQUOTE2, + STATE(5753), 1, + sym_comment, + STATE(5787), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212038] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9078), 1, + ACTIONS(9084), 1, anon_sym_RBRACK, - STATE(5710), 1, + STATE(5754), 1, sym_comment, - STATE(6062), 1, + STATE(6015), 1, aux_sym_shebang_repeat1, - STATE(6794), 1, + STATE(6620), 1, sym_val_list, - STATE(7210), 1, + STATE(7066), 1, aux_sym_val_table_repeat1, - [211575] = 8, + [212063] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9080), 1, + ACTIONS(9086), 1, anon_sym_RBRACK, - STATE(5711), 1, + STATE(5755), 1, sym_comment, - STATE(6038), 1, + STATE(6016), 1, aux_sym_shebang_repeat1, - STATE(6678), 1, + STATE(6625), 1, sym_val_list, - STATE(7128), 1, + STATE(7068), 1, aux_sym_val_table_repeat1, - [211600] = 7, + [212088] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9082), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(9086), 1, + ACTIONS(9088), 1, aux_sym_path_token1, - STATE(1487), 1, - sym_val_string, - STATE(1516), 1, + STATE(1725), 1, sym__str_double_quotes, - STATE(5712), 1, + STATE(1988), 1, + sym_val_string, + STATE(5756), 1, sym_comment, - ACTIONS(9084), 2, + ACTIONS(513), 2, sym__str_single_quotes, sym__str_back_ticks, - [211623] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - STATE(5713), 1, - sym_comment, - ACTIONS(6492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5863), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211642] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9088), 1, - sym__newline, - ACTIONS(9090), 1, - anon_sym_SEMI, - ACTIONS(9092), 1, - anon_sym_RPAREN, - STATE(238), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5714), 1, - sym_comment, - STATE(6238), 1, - aux_sym__block_body_repeat1, - STATE(6970), 1, - aux_sym_shebang_repeat1, - [211667] = 7, + [212111] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9094), 1, + ACTIONS(9090), 1, anon_sym_DQUOTE2, - STATE(5715), 1, + STATE(5757), 1, sym_comment, - STATE(5717), 1, + STATE(5760), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211690] = 7, - ACTIONS(247), 1, + [212134] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(9096), 1, - aux_sym_path_token1, - STATE(4704), 1, - sym__str_double_quotes, - STATE(5333), 1, - sym_val_string, - STATE(5716), 1, + ACTIONS(6355), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5758), 1, sym_comment, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211713] = 7, + STATE(6378), 1, + sym__immediate_decimal, + [212159] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6355), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5759), 1, + sym_comment, + STATE(7494), 1, + sym__immediate_decimal, + [212184] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9098), 1, + ACTIONS(9092), 1, anon_sym_DQUOTE2, - STATE(5717), 1, + STATE(5760), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211736] = 8, + [212207] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9100), 1, + ACTIONS(9094), 1, anon_sym_RBRACK, - STATE(5718), 1, + STATE(5761), 1, sym_comment, - STATE(6063), 1, + STATE(6017), 1, aux_sym_shebang_repeat1, - STATE(6811), 1, + STATE(6646), 1, sym_val_list, - STATE(7214), 1, + STATE(7074), 1, aux_sym_val_table_repeat1, - [211761] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5018), 1, - anon_sym_DASH, - STATE(5719), 1, - sym_comment, - ACTIONS(5016), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [211778] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5720), 1, - sym_comment, - ACTIONS(1705), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1707), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211795] = 8, + [212232] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9102), 1, + ACTIONS(9096), 1, anon_sym_RBRACK, - STATE(5721), 1, + STATE(5762), 1, sym_comment, - STATE(6064), 1, + STATE(6018), 1, aux_sym_shebang_repeat1, - STATE(6815), 1, + STATE(6650), 1, sym_val_list, - STATE(7217), 1, + STATE(7076), 1, aux_sym_val_table_repeat1, - [211820] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5022), 1, - anon_sym_DASH, - STATE(5722), 1, - sym_comment, - ACTIONS(5020), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [211837] = 7, + [212257] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(507), 1, + ACTIONS(9098), 1, anon_sym_DQUOTE, - ACTIONS(8986), 1, + ACTIONS(9102), 1, aux_sym_path_token1, - STATE(1707), 1, - sym__str_double_quotes, - STATE(2553), 1, + STATE(1129), 1, sym_val_string, - STATE(5723), 1, + STATE(1130), 1, + sym__str_double_quotes, + STATE(5763), 1, sym_comment, - ACTIONS(509), 2, + ACTIONS(9100), 2, sym__str_single_quotes, sym__str_back_ticks, - [211860] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(5054), 1, - sym__blosure, - STATE(5652), 1, - aux_sym_shebang_repeat1, - STATE(5724), 1, - sym_comment, - [211885] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(5010), 1, - sym__blosure, - STATE(5725), 1, - sym_comment, - [211910] = 6, - ACTIONS(247), 1, + [212280] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, ACTIONS(9104), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT, ACTIONS(9106), 1, aux_sym__immediate_decimal_token2, - STATE(5726), 1, + STATE(5764), 1, sym_comment, - ACTIONS(1633), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211931] = 7, + ACTIONS(1667), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1669), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [212301] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, ACTIONS(9108), 1, anon_sym_DQUOTE2, - STATE(5727), 1, + STATE(5765), 1, sym_comment, - STATE(5728), 1, + STATE(5768), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211954] = 7, + [212324] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4520), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5766), 1, + sym_comment, + STATE(6378), 1, + sym__immediate_decimal, + [212349] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4520), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5767), 1, + sym_comment, + STATE(7494), 1, + sym__immediate_decimal, + [212374] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, ACTIONS(9110), 1, anon_sym_DQUOTE2, - STATE(5728), 1, + STATE(5768), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211977] = 8, + [212397] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, ACTIONS(9112), 1, anon_sym_RBRACK, - STATE(5729), 1, + STATE(5769), 1, sym_comment, - STATE(6065), 1, + STATE(6019), 1, aux_sym_shebang_repeat1, - STATE(6837), 1, + STATE(6672), 1, sym_val_list, - STATE(7222), 1, + STATE(7081), 1, aux_sym_val_table_repeat1, - [212002] = 8, + [212422] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, ACTIONS(9114), 1, anon_sym_RBRACK, - STATE(5730), 1, + STATE(5770), 1, sym_comment, - STATE(6066), 1, + STATE(6020), 1, aux_sym_shebang_repeat1, - STATE(6842), 1, + STATE(6676), 1, sym_val_list, - STATE(7224), 1, + STATE(7084), 1, aux_sym_val_table_repeat1, - [212027] = 7, + [212447] = 7, + ACTIONS(233), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9020), 1, - aux_sym_path_token1, ACTIONS(9116), 1, - anon_sym_DQUOTE, - STATE(1089), 1, - sym_val_string, - STATE(3120), 1, + aux_sym_path_token1, + STATE(1418), 1, sym__str_double_quotes, - STATE(5731), 1, + STATE(1471), 1, + sym_val_string, + STATE(5771), 1, sym_comment, - ACTIONS(9118), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - [212050] = 7, + [212470] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9120), 1, + ACTIONS(9118), 1, anon_sym_DQUOTE2, - STATE(5732), 1, + STATE(5772), 1, sym_comment, - STATE(5733), 1, + STATE(5775), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212073] = 7, + [212493] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6834), 1, + aux_sym_unquoted_token3, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8484), 1, + aux_sym__immediate_decimal_token5, + STATE(5773), 1, + sym_comment, + STATE(6378), 1, + sym__immediate_decimal, + [212518] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6834), 1, + aux_sym_unquoted_token3, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8490), 1, + aux_sym__immediate_decimal_token5, + STATE(5774), 1, + sym_comment, + STATE(7494), 1, + sym__immediate_decimal, + [212543] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9122), 1, + ACTIONS(9120), 1, anon_sym_DQUOTE2, - STATE(5733), 1, + STATE(5775), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212096] = 8, + [212566] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9124), 1, + ACTIONS(9122), 1, anon_sym_RBRACK, - STATE(5734), 1, + STATE(5776), 1, sym_comment, - STATE(6067), 1, + STATE(6023), 1, aux_sym_shebang_repeat1, - STATE(6865), 1, + STATE(6695), 1, sym_val_list, - STATE(7228), 1, + STATE(7089), 1, aux_sym_val_table_repeat1, - [212121] = 8, + [212591] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9126), 1, + ACTIONS(9124), 1, anon_sym_RBRACK, - STATE(5735), 1, + STATE(5777), 1, sym_comment, - STATE(6068), 1, + STATE(6024), 1, aux_sym_shebang_repeat1, - STATE(6868), 1, + STATE(6699), 1, sym_val_list, - STATE(7230), 1, + STATE(7091), 1, aux_sym_val_table_repeat1, - [212146] = 7, + [212616] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(439), 1, + ACTIONS(9126), 1, anon_sym_DQUOTE, - ACTIONS(9038), 1, + ACTIONS(9130), 1, aux_sym_path_token1, - STATE(1463), 1, + STATE(1095), 1, sym_val_string, - STATE(1946), 1, + STATE(1112), 1, sym__str_double_quotes, - STATE(5736), 1, + STATE(5778), 1, sym_comment, - ACTIONS(441), 2, + ACTIONS(9128), 2, sym__str_single_quotes, sym__str_back_ticks, - [212169] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9128), 1, - anon_sym_EQ2, - ACTIONS(9130), 1, - sym_short_flag_identifier, - STATE(5737), 1, - sym_comment, - ACTIONS(4747), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(4749), 2, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - [212190] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5738), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212207] = 7, + [212639] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, ACTIONS(9132), 1, anon_sym_DQUOTE2, - STATE(5739), 1, + STATE(5779), 1, sym_comment, - STATE(5740), 1, + STATE(5780), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212230] = 7, + [212662] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, ACTIONS(9134), 1, anon_sym_DQUOTE2, - STATE(5740), 1, + STATE(5780), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212253] = 8, + [212685] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, ACTIONS(9136), 1, anon_sym_RBRACK, - STATE(5741), 1, + STATE(5781), 1, sym_comment, - STATE(6069), 1, + STATE(6026), 1, aux_sym_shebang_repeat1, - STATE(6887), 1, + STATE(6715), 1, sym_val_list, - STATE(7235), 1, + STATE(7097), 1, aux_sym_val_table_repeat1, - [212278] = 8, + [212710] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, ACTIONS(9138), 1, anon_sym_RBRACK, - STATE(5742), 1, + STATE(5782), 1, sym_comment, - STATE(6070), 1, + STATE(6027), 1, aux_sym_shebang_repeat1, - STATE(6891), 1, + STATE(6719), 1, sym_val_list, - STATE(7237), 1, + STATE(7100), 1, aux_sym_val_table_repeat1, - [212303] = 7, + [212735] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3461), 1, - anon_sym_DQUOTE, ACTIONS(9140), 1, + anon_sym_DQUOTE, + ACTIONS(9144), 1, aux_sym_path_token1, - STATE(3509), 1, + STATE(1514), 1, sym__str_double_quotes, - STATE(3516), 1, + STATE(1539), 1, sym_val_string, - STATE(5743), 1, + STATE(5783), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(9142), 2, sym__str_single_quotes, sym__str_back_ticks, - [212326] = 7, + [212758] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8786), 1, + anon_sym_alias, + ACTIONS(8788), 1, + anon_sym_const, + ACTIONS(8790), 1, + anon_sym_def, + ACTIONS(8792), 1, + anon_sym_extern, + ACTIONS(8794), 1, + anon_sym_module, + ACTIONS(8796), 1, + anon_sym_use, + STATE(5784), 1, + sym_comment, + [212783] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9142), 1, + ACTIONS(9146), 1, anon_sym_DQUOTE2, - STATE(5744), 1, + STATE(5785), 1, sym_comment, - STATE(5745), 1, + STATE(5786), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212349] = 7, + [212806] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9144), 1, + ACTIONS(9148), 1, anon_sym_DQUOTE2, - STATE(5745), 1, + STATE(5786), 1, sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212372] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9146), 1, - anon_sym_RBRACK, - STATE(5746), 1, - sym_comment, - STATE(6071), 1, - aux_sym_shebang_repeat1, - STATE(6908), 1, - sym_val_list, - STATE(7241), 1, - aux_sym_val_table_repeat1, - [212397] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9148), 1, - anon_sym_RBRACK, - STATE(5747), 1, - sym_comment, - STATE(6072), 1, - aux_sym_shebang_repeat1, - STATE(6912), 1, - sym_val_list, - STATE(7243), 1, - aux_sym_val_table_repeat1, - [212422] = 7, - ACTIONS(247), 1, + [212829] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4245), 1, - anon_sym_DQUOTE, ACTIONS(9150), 1, - aux_sym_path_token1, - STATE(4462), 1, - sym__str_double_quotes, - STATE(4530), 1, - sym_val_string, - STATE(5748), 1, + anon_sym_LPAREN, + ACTIONS(9156), 1, + anon_sym_DQUOTE2, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(9153), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(5787), 2, sym_comment, - ACTIONS(4247), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212445] = 8, + aux_sym__inter_double_quotes_repeat1, + [212850] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9152), 1, + ACTIONS(9158), 1, anon_sym_RBRACK, - STATE(5749), 1, + STATE(5788), 1, sym_comment, - STATE(6073), 1, + STATE(6029), 1, aux_sym_shebang_repeat1, - STATE(6925), 1, + STATE(6733), 1, sym_val_list, - STATE(7247), 1, + STATE(7105), 1, aux_sym_val_table_repeat1, - [212470] = 8, + [212875] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9154), 1, + ACTIONS(9160), 1, anon_sym_RBRACK, - STATE(5750), 1, + STATE(5789), 1, sym_comment, - STATE(6074), 1, + STATE(6030), 1, aux_sym_shebang_repeat1, - STATE(6929), 1, + STATE(6737), 1, sym_val_list, - STATE(7250), 1, + STATE(7107), 1, aux_sym_val_table_repeat1, - [212495] = 7, + [212900] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9156), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(9160), 1, + ACTIONS(8941), 1, aux_sym_path_token1, - STATE(1085), 1, + STATE(1725), 1, sym__str_double_quotes, - STATE(1174), 1, + STATE(2601), 1, sym_val_string, - STATE(5751), 1, + STATE(5790), 1, sym_comment, - ACTIONS(9158), 2, + ACTIONS(513), 2, sym__str_single_quotes, sym__str_back_ticks, - [212518] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - anon_sym_DASH, - STATE(5752), 1, - sym_comment, - ACTIONS(5024), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212535] = 4, - ACTIONS(247), 1, + [212923] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DASH, - STATE(5753), 1, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9162), 1, + anon_sym_DQUOTE2, + STATE(5791), 1, sym_comment, - ACTIONS(5028), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212552] = 5, - ACTIONS(247), 1, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212946] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - STATE(5754), 1, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_DQUOTE2, + STATE(5787), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5792), 1, sym_comment, - ACTIONS(6492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5869), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212571] = 8, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212969] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9162), 1, + ACTIONS(9166), 1, anon_sym_RBRACK, - STATE(5755), 1, + STATE(5793), 1, sym_comment, - STATE(6075), 1, + STATE(6031), 1, aux_sym_shebang_repeat1, - STATE(6939), 1, + STATE(6615), 1, sym_val_list, - STATE(7254), 1, + STATE(7112), 1, aux_sym_val_table_repeat1, - [212596] = 8, + [212994] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9164), 1, + ACTIONS(9168), 1, anon_sym_RBRACK, - STATE(5756), 1, + STATE(5794), 1, sym_comment, - STATE(6076), 1, + STATE(6032), 1, aux_sym_shebang_repeat1, - STATE(6944), 1, + STATE(6761), 1, sym_val_list, - STATE(7256), 1, + STATE(7115), 1, aux_sym_val_table_repeat1, - [212621] = 7, + [213019] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9166), 1, - anon_sym_DQUOTE, - ACTIONS(9170), 1, + ACTIONS(9102), 1, aux_sym_path_token1, - STATE(2227), 1, + ACTIONS(9170), 1, + anon_sym_DQUOTE, + STATE(1129), 1, sym_val_string, - STATE(2341), 1, + STATE(3159), 1, sym__str_double_quotes, - STATE(5757), 1, + STATE(5795), 1, sym_comment, - ACTIONS(9168), 2, + ACTIONS(9172), 2, sym__str_single_quotes, sym__str_back_ticks, - [212644] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5758), 1, - sym_comment, - ACTIONS(1050), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1048), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_QMARK2, - [212661] = 6, + [213042] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9172), 1, - anon_sym_DOT, + ACTIONS(8947), 1, + anon_sym_LPAREN, ACTIONS(9174), 1, - aux_sym__immediate_decimal_token2, - STATE(5759), 1, + anon_sym_DQUOTE2, + STATE(5796), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212682] = 8, + STATE(5798), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [213065] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9176), 1, - anon_sym_RBRACK, - STATE(5760), 1, - sym_comment, - STATE(6077), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5075), 1, + sym__blosure, + STATE(5659), 1, aux_sym_shebang_repeat1, - STATE(6958), 1, - sym_val_list, - STATE(7261), 1, - aux_sym_val_table_repeat1, - [212707] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9178), 1, - anon_sym_RBRACK, - STATE(5761), 1, + STATE(5797), 1, sym_comment, - STATE(6078), 1, - aux_sym_shebang_repeat1, - STATE(6961), 1, - sym_val_list, - STATE(7263), 1, - aux_sym_val_table_repeat1, - [212732] = 7, - ACTIONS(247), 1, + [213090] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, - anon_sym_DQUOTE, - ACTIONS(9180), 1, - aux_sym_path_token1, - STATE(3114), 1, - sym_val_string, - STATE(3120), 1, - sym__str_double_quotes, - STATE(5762), 1, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9176), 1, + anon_sym_DQUOTE2, + STATE(5787), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5798), 1, sym_comment, - ACTIONS(9118), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212755] = 8, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [213113] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9182), 1, + ACTIONS(9178), 1, anon_sym_RBRACK, - STATE(5763), 1, + STATE(5799), 1, sym_comment, - STATE(6079), 1, + STATE(6033), 1, aux_sym_shebang_repeat1, - STATE(6969), 1, + STATE(6779), 1, sym_val_list, - STATE(7267), 1, + STATE(7119), 1, aux_sym_val_table_repeat1, - [212780] = 8, + [213138] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9184), 1, + ACTIONS(9180), 1, anon_sym_RBRACK, - STATE(5764), 1, + STATE(5800), 1, sym_comment, - STATE(6080), 1, + STATE(6034), 1, aux_sym_shebang_repeat1, - STATE(6974), 1, + STATE(6783), 1, sym_val_list, - STATE(7269), 1, + STATE(7122), 1, aux_sym_val_table_repeat1, - [212805] = 7, + [213163] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4283), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(9186), 1, + ACTIONS(9116), 1, aux_sym_path_token1, - STATE(4280), 1, + STATE(1471), 1, sym_val_string, - STATE(4321), 1, + STATE(1972), 1, sym__str_double_quotes, - STATE(5765), 1, + STATE(5801), 1, sym_comment, - ACTIONS(4285), 2, + ACTIONS(443), 2, sym__str_single_quotes, sym__str_back_ticks, - [212828] = 6, + [213186] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9188), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9190), 1, - aux_sym__immediate_decimal_token2, - STATE(5766), 1, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_DQUOTE2, + STATE(5802), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212849] = 7, - ACTIONS(247), 1, + STATE(5803), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [213209] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9192), 1, - anon_sym_DQUOTE, - ACTIONS(9196), 1, - aux_sym_path_token1, - STATE(1274), 1, - sym__str_double_quotes, - STATE(1296), 1, - sym_val_string, - STATE(5767), 1, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9184), 1, + anon_sym_DQUOTE2, + STATE(5787), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5803), 1, sym_comment, - ACTIONS(9194), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212872] = 8, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [213232] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9198), 1, + ACTIONS(9186), 1, anon_sym_RBRACK, - STATE(5768), 1, + STATE(5804), 1, sym_comment, - STATE(5911), 1, + STATE(6035), 1, aux_sym_shebang_repeat1, - STATE(6780), 1, + STATE(6798), 1, sym_val_list, - STATE(6833), 1, + STATE(7127), 1, aux_sym_val_table_repeat1, - [212897] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9200), 1, - anon_sym_DQUOTE, - ACTIONS(9204), 1, - aux_sym_path_token1, - STATE(1416), 1, - sym__str_double_quotes, - STATE(1454), 1, - sym_val_string, - STATE(5769), 1, - sym_comment, - ACTIONS(9202), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212920] = 7, - ACTIONS(233), 1, - anon_sym_DQUOTE, + [213257] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9206), 1, - aux_sym_path_token1, - STATE(1389), 1, - sym__str_double_quotes, - STATE(5770), 1, - sym_comment, - STATE(6136), 1, - sym_val_string, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212943] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9208), 1, - anon_sym_DQUOTE, - ACTIONS(9212), 1, - aux_sym_path_token1, - STATE(4051), 1, - sym__str_double_quotes, - STATE(4073), 1, - sym_val_string, - STATE(5771), 1, - sym_comment, - ACTIONS(9210), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212966] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_DQUOTE, - ACTIONS(9218), 1, - aux_sym_path_token1, - STATE(2580), 1, - sym__str_double_quotes, - STATE(2604), 1, - sym_val_string, - STATE(5772), 1, - sym_comment, - ACTIONS(9216), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212989] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9220), 1, - anon_sym_DQUOTE, - ACTIONS(9224), 1, - aux_sym_path_token1, - STATE(4032), 1, - sym__str_double_quotes, - STATE(4037), 1, - sym_val_string, - STATE(5773), 1, - sym_comment, - ACTIONS(9222), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213012] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_DQUOTE, - ACTIONS(9230), 1, - aux_sym_path_token1, - STATE(3346), 1, - sym__str_double_quotes, - STATE(3351), 1, - sym_val_string, - STATE(5774), 1, - sym_comment, - ACTIONS(9228), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213035] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_DQUOTE, - ACTIONS(9236), 1, - aux_sym_path_token1, - STATE(1212), 1, - sym_val_string, - STATE(1222), 1, - sym__str_double_quotes, - STATE(5775), 1, - sym_comment, - ACTIONS(9234), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213058] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9238), 1, - anon_sym_DQUOTE, - ACTIONS(9242), 1, - aux_sym_path_token1, - STATE(3936), 1, - sym_val_string, - STATE(3949), 1, - sym__str_double_quotes, - STATE(5776), 1, - sym_comment, - ACTIONS(9240), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213081] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9206), 1, - aux_sym_path_token1, - ACTIONS(9244), 1, - anon_sym_DQUOTE, - STATE(5777), 1, - sym_comment, - STATE(6136), 1, - sym_val_string, - STATE(6901), 1, - sym__str_double_quotes, - ACTIONS(9246), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213104] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9248), 1, - anon_sym_DQUOTE, - ACTIONS(9252), 1, - aux_sym_path_token1, - STATE(2635), 1, - sym__str_double_quotes, - STATE(2652), 1, - sym_val_string, - STATE(5778), 1, - sym_comment, - ACTIONS(9250), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213127] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9254), 1, - anon_sym_DQUOTE, - ACTIONS(9258), 1, - aux_sym_path_token1, - STATE(2893), 1, - sym__str_double_quotes, - STATE(2922), 1, - sym_val_string, - STATE(5779), 1, - sym_comment, - ACTIONS(9256), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213150] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9260), 1, - anon_sym_DQUOTE, - ACTIONS(9264), 1, - aux_sym_path_token1, - STATE(360), 1, - sym__str_double_quotes, - STATE(396), 1, - sym_val_string, - STATE(5780), 1, - sym_comment, - ACTIONS(9262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213173] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9266), 1, + ACTIONS(9188), 1, anon_sym_RBRACK, - STATE(5781), 1, + STATE(5805), 1, sym_comment, - STATE(6050), 1, + STATE(6036), 1, aux_sym_shebang_repeat1, - STATE(7163), 1, - aux_sym_val_table_repeat1, - STATE(7177), 1, + STATE(6801), 1, sym_val_list, - [213198] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DQUOTE, - ACTIONS(9268), 1, - aux_sym_path_token1, - STATE(4678), 1, - sym_val_string, - STATE(4690), 1, - sym__str_double_quotes, - STATE(5782), 1, - sym_comment, - ACTIONS(3549), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213221] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9270), 1, - anon_sym_DQUOTE, - ACTIONS(9274), 1, - aux_sym_path_token1, - STATE(4180), 1, - sym_val_string, - STATE(4200), 1, - sym__str_double_quotes, - STATE(5783), 1, - sym_comment, - ACTIONS(9272), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213244] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4352), 1, - anon_sym_DQUOTE, - ACTIONS(9276), 1, - aux_sym_path_token1, - STATE(3471), 1, - sym__str_double_quotes, - STATE(3477), 1, - sym_val_string, - STATE(5784), 1, - sym_comment, - ACTIONS(4354), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213267] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9278), 1, - anon_sym_DQUOTE, - ACTIONS(9282), 1, - aux_sym_path_token1, - STATE(2570), 1, - sym__str_double_quotes, - STATE(2597), 1, - sym_val_string, - STATE(5785), 1, - sym_comment, - ACTIONS(9280), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213290] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9284), 1, - anon_sym_DQUOTE, - ACTIONS(9288), 1, - aux_sym_path_token1, - STATE(2806), 1, - sym_val_string, - STATE(2807), 1, - sym__str_double_quotes, - STATE(5786), 1, - sym_comment, - ACTIONS(9286), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213313] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9294), 1, - aux_sym_path_token1, - STATE(137), 1, - sym_val_string, - STATE(139), 1, - sym__str_double_quotes, - STATE(5787), 1, - sym_comment, - ACTIONS(9292), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213336] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9296), 1, - anon_sym_DQUOTE, - ACTIONS(9300), 1, - aux_sym_path_token1, - STATE(441), 1, - sym_val_string, - STATE(442), 1, - sym__str_double_quotes, - STATE(5788), 1, - sym_comment, - ACTIONS(9298), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213359] = 7, + STATE(7130), 1, + aux_sym_val_table_repeat1, + [213282] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9302), 1, + ACTIONS(3477), 1, anon_sym_DQUOTE, - ACTIONS(9306), 1, + ACTIONS(9190), 1, aux_sym_path_token1, - STATE(319), 1, + STATE(3551), 1, sym__str_double_quotes, - STATE(339), 1, - sym_val_string, - STATE(5789), 1, - sym_comment, - ACTIONS(9304), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213382] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9308), 1, - anon_sym_DQUOTE, - ACTIONS(9312), 1, - aux_sym_path_token1, - STATE(243), 1, + STATE(3558), 1, sym_val_string, - STATE(244), 1, - sym__str_double_quotes, - STATE(5790), 1, + STATE(5806), 1, sym_comment, - ACTIONS(9310), 2, + ACTIONS(3479), 2, sym__str_single_quotes, sym__str_back_ticks, - [213405] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9314), 1, - anon_sym_RBRACK, - STATE(5791), 1, - sym_comment, - STATE(5945), 1, - aux_sym_shebang_repeat1, - STATE(6860), 1, - sym_val_list, - STATE(6871), 1, - aux_sym_val_table_repeat1, - [213430] = 6, + [213305] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, - sym__entry_separator, - ACTIONS(9316), 1, - anon_sym_DOT_DOT2, - STATE(5792), 1, + STATE(5807), 1, sym_comment, - ACTIONS(2051), 2, + ACTIONS(1675), 3, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213451] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9320), 1, - anon_sym_DOT, - ACTIONS(9322), 1, - aux_sym__immediate_decimal_token2, - STATE(5793), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1645), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [213472] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1078), 1, - sym__entry_separator, - ACTIONS(9324), 1, anon_sym_DOT_DOT2, - STATE(5794), 1, - sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9326), 2, + ACTIONS(1677), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [213493] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8915), 1, - anon_sym_DASH, - STATE(5795), 1, - sym_comment, - ACTIONS(8913), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213510] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2049), 1, sym__entry_separator, - ACTIONS(9328), 1, - anon_sym_DOT_DOT2, - STATE(5796), 1, - sym_comment, - ACTIONS(2043), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213531] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5797), 1, - sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6547), 1, - sym__assignment_pattern, - [213556] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5798), 1, - sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6550), 1, - sym__assignment_pattern, - [213581] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5799), 1, - sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6551), 1, - sym__assignment_pattern, - [213606] = 6, + [213322] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(9332), 1, - anon_sym_DOT_DOT2, - STATE(5800), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213627] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5801), 1, - sym_comment, - ACTIONS(1042), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1040), 4, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9192), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - anon_sym_QMARK2, - [213644] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9336), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9338), 1, - aux_sym__immediate_decimal_token2, - STATE(5802), 1, - sym_comment, - ACTIONS(1631), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1633), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [213665] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(8246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, - aux_sym__immediate_decimal_token5, - STATE(5803), 1, - sym_comment, - STATE(7468), 1, - sym__immediate_decimal, - ACTIONS(8244), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [213688] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2297), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(5804), 1, - sym_comment, - ACTIONS(2293), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [213707] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5805), 1, - sym_comment, - STATE(6059), 1, - sym__immediate_decimal, - [213732] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1078), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(5806), 1, - sym_comment, - ACTIONS(1076), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [213751] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, - STATE(5807), 1, - sym_comment, - STATE(7433), 1, - sym__immediate_decimal, - [213776] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1078), 1, - sym__entry_separator, - ACTIONS(9340), 1, - anon_sym_DOT_DOT2, STATE(5808), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213797] = 8, + STATE(6037), 1, + aux_sym_shebang_repeat1, + STATE(6813), 1, + sym_val_list, + STATE(7134), 1, + aux_sym_val_table_repeat1, + [213347] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(4994), 1, - sym__blosure, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9194), 1, + anon_sym_RBRACK, STATE(5809), 1, sym_comment, - [213822] = 7, - ACTIONS(3), 1, + STATE(6038), 1, + aux_sym_shebang_repeat1, + STATE(6817), 1, + sym_val_list, + STATE(7136), 1, + aux_sym_val_table_repeat1, + [213372] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9344), 1, - anon_sym_DQUOTE2, + ACTIONS(4265), 1, + anon_sym_DQUOTE, + ACTIONS(9196), 1, + aux_sym_path_token1, + STATE(4626), 1, + sym__str_double_quotes, + STATE(4635), 1, + sym_val_string, STATE(5810), 1, sym_comment, - STATE(5814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213845] = 8, + ACTIONS(4267), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213395] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8871), 1, - anon_sym_alias, - ACTIONS(8873), 1, - anon_sym_const, - ACTIONS(8875), 1, - anon_sym_def, - ACTIONS(8877), 1, - anon_sym_extern, - ACTIONS(8879), 1, - anon_sym_module, - ACTIONS(8881), 1, - anon_sym_use, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(8211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8213), 1, + aux_sym__immediate_decimal_token5, STATE(5811), 1, sym_comment, - [213870] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8171), 1, + STATE(7344), 1, + sym__immediate_decimal, + ACTIONS(8209), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8432), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, + [213418] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9198), 1, + anon_sym_RBRACK, STATE(5812), 1, sym_comment, - STATE(6635), 1, - sym__immediate_decimal, - [213895] = 8, - ACTIONS(3), 1, + STATE(6039), 1, + aux_sym_shebang_repeat1, + STATE(6827), 1, + sym_val_list, + STATE(7140), 1, + aux_sym_val_table_repeat1, + [213443] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8432), 1, - aux_sym_unquoted_token3, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9200), 1, + anon_sym_RBRACK, STATE(5813), 1, sym_comment, - STATE(7714), 1, - sym__immediate_decimal, - [213920] = 7, - ACTIONS(3), 1, + STATE(6040), 1, + aux_sym_shebang_repeat1, + STATE(6831), 1, + sym_val_list, + STATE(7142), 1, + aux_sym_val_table_repeat1, + [213468] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9346), 1, - anon_sym_DQUOTE2, + ACTIONS(9202), 1, + anon_sym_DQUOTE, + ACTIONS(9206), 1, + aux_sym_path_token1, + STATE(1134), 1, + sym_val_string, + STATE(1137), 1, + sym__str_double_quotes, STATE(5814), 1, sym_comment, - STATE(5892), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213943] = 6, - ACTIONS(3), 1, + ACTIONS(9204), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213491] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8892), 1, - anon_sym_DOT, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9208), 1, + anon_sym_RBRACK, STATE(5815), 1, sym_comment, - STATE(5859), 1, - aux_sym_cell_path_repeat1, - STATE(6548), 1, - sym_path, - ACTIONS(1017), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [213964] = 6, + STATE(6041), 1, + aux_sym_shebang_repeat1, + STATE(6846), 1, + sym_val_list, + STATE(7146), 1, + aux_sym_val_table_repeat1, + [213516] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(9348), 1, - anon_sym_DOT_DOT2, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9210), 1, + anon_sym_RBRACK, STATE(5816), 1, sym_comment, - ACTIONS(1794), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213985] = 6, + STATE(6042), 1, + aux_sym_shebang_repeat1, + STATE(6850), 1, + sym_val_list, + STATE(7149), 1, + aux_sym_val_table_repeat1, + [213541] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4735), 1, - anon_sym_DASH, - ACTIONS(9352), 1, - sym_long_flag_identifier, - ACTIONS(9354), 1, - anon_sym_EQ2, + ACTIONS(9212), 1, + anon_sym_DQUOTE, + ACTIONS(9216), 1, + aux_sym_path_token1, + STATE(2227), 1, + sym__str_double_quotes, + STATE(2228), 1, + sym_val_string, STATE(5817), 1, sym_comment, - ACTIONS(4737), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [214006] = 6, + ACTIONS(9214), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213564] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - sym_long_flag_identifier, - ACTIONS(9358), 1, - anon_sym_EQ2, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9218), 1, + anon_sym_RBRACK, STATE(5818), 1, sym_comment, - ACTIONS(4735), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(4737), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [214027] = 6, - ACTIONS(3), 1, + STATE(6043), 1, + aux_sym_shebang_repeat1, + STATE(6862), 1, + sym_val_list, + STATE(7154), 1, + aux_sym_val_table_repeat1, + [213589] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - sym__entry_separator, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9220), 1, + anon_sym_RBRACK, STATE(5819), 1, sym_comment, - ACTIONS(2061), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214048] = 6, - ACTIONS(3), 1, + STATE(6044), 1, + aux_sym_shebang_repeat1, + STATE(6866), 1, + sym_val_list, + STATE(7157), 1, + aux_sym_val_table_repeat1, + [213614] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - sym__entry_separator, - ACTIONS(9364), 1, - anon_sym_DOT_DOT2, + ACTIONS(9170), 1, + anon_sym_DQUOTE, + ACTIONS(9222), 1, + aux_sym_path_token1, + STATE(3159), 1, + sym__str_double_quotes, + STATE(3161), 1, + sym_val_string, STATE(5820), 1, sym_comment, - ACTIONS(2061), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9366), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214069] = 8, + ACTIONS(9172), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213637] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9368), 1, - anon_sym_RBRACK, + ACTIONS(4303), 1, + anon_sym_DQUOTE, + ACTIONS(9224), 1, + aux_sym_path_token1, + STATE(4492), 1, + sym_val_string, + STATE(4501), 1, + sym__str_double_quotes, STATE(5821), 1, sym_comment, - STATE(6042), 1, - aux_sym_shebang_repeat1, - STATE(6988), 1, - sym_val_list, - STATE(7137), 1, - aux_sym_val_table_repeat1, - [214094] = 8, + ACTIONS(4305), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213660] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(673), 1, - anon_sym_RPAREN, - ACTIONS(9088), 1, - sym__newline, - ACTIONS(9090), 1, - anon_sym_SEMI, - STATE(238), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(9226), 1, + anon_sym_DQUOTE, + ACTIONS(9230), 1, + aux_sym_path_token1, + STATE(1280), 1, + sym__str_double_quotes, + STATE(1286), 1, + sym_val_string, STATE(5822), 1, sym_comment, - STATE(6428), 1, - aux_sym__block_body_repeat1, - STATE(6970), 1, - aux_sym_shebang_repeat1, - [214119] = 4, - ACTIONS(3), 1, + ACTIONS(9228), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213683] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9232), 1, + anon_sym_DQUOTE, + ACTIONS(9236), 1, + aux_sym_path_token1, + STATE(1448), 1, + sym__str_double_quotes, + STATE(1477), 1, + sym_val_string, STATE(5823), 1, sym_comment, - ACTIONS(1631), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1633), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214136] = 6, - ACTIONS(3), 1, + ACTIONS(9234), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213706] = 7, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - sym__entry_separator, - ACTIONS(9370), 1, - anon_sym_DOT_DOT2, + ACTIONS(9238), 1, + aux_sym_path_token1, + STATE(1418), 1, + sym__str_double_quotes, STATE(5824), 1, sym_comment, - ACTIONS(2035), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9372), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214157] = 6, - ACTIONS(3), 1, + STATE(6549), 1, + sym_val_string, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213729] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2049), 1, - sym__entry_separator, - ACTIONS(9374), 1, - anon_sym_DOT_DOT2, + ACTIONS(9240), 1, + anon_sym_DQUOTE, + ACTIONS(9244), 1, + aux_sym_path_token1, + STATE(4202), 1, + sym_val_string, + STATE(4207), 1, + sym__str_double_quotes, STATE(5825), 1, sym_comment, - ACTIONS(2043), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9376), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214178] = 6, - ACTIONS(3), 1, + ACTIONS(9242), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213752] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2057), 1, - sym__entry_separator, - ACTIONS(9378), 1, - anon_sym_DOT_DOT2, + ACTIONS(9246), 1, + anon_sym_DQUOTE, + ACTIONS(9250), 1, + aux_sym_path_token1, + STATE(2608), 1, + sym__str_double_quotes, + STATE(2631), 1, + sym_val_string, STATE(5826), 1, sym_comment, - ACTIONS(2051), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9380), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214199] = 7, + ACTIONS(9248), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213775] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DASH_DASH, - ACTIONS(9010), 1, - anon_sym_DASH, - ACTIONS(9382), 1, - anon_sym_in, + ACTIONS(9252), 1, + anon_sym_DQUOTE, + ACTIONS(9256), 1, + aux_sym_path_token1, + STATE(4057), 1, + sym__str_double_quotes, + STATE(4084), 1, + sym_val_string, STATE(5827), 1, sym_comment, - STATE(7493), 1, - sym__flag, - STATE(5452), 2, - sym_short_flag, - sym_long_flag, - [214222] = 6, - ACTIONS(3), 1, + ACTIONS(9254), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213798] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(9384), 1, - anon_sym_DOT_DOT2, + ACTIONS(9258), 1, + anon_sym_DQUOTE, + ACTIONS(9262), 1, + aux_sym_path_token1, + STATE(3407), 1, + sym_val_string, + STATE(3418), 1, + sym__str_double_quotes, STATE(5828), 1, sym_comment, - ACTIONS(1786), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9386), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214243] = 5, - ACTIONS(3), 1, + ACTIONS(9260), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213821] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2247), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(9264), 1, + anon_sym_DQUOTE, + ACTIONS(9268), 1, + aux_sym_path_token1, + STATE(1249), 1, + sym__str_double_quotes, + STATE(1259), 1, + sym_val_string, STATE(5829), 1, sym_comment, - ACTIONS(2243), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [214262] = 5, - ACTIONS(3), 1, + ACTIONS(9266), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213844] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - ACTIONS(2253), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9270), 1, + anon_sym_DQUOTE, + ACTIONS(9274), 1, + aux_sym_path_token1, + STATE(4037), 1, + sym_val_string, + STATE(4047), 1, + sym__str_double_quotes, STATE(5830), 1, sym_comment, - ACTIONS(2251), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [214281] = 8, + ACTIONS(9272), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213867] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9388), 1, - anon_sym_RBRACK, + ACTIONS(9238), 1, + aux_sym_path_token1, + ACTIONS(9276), 1, + anon_sym_DQUOTE, STATE(5831), 1, sym_comment, - STATE(6043), 1, - aux_sym_shebang_repeat1, - STATE(6993), 1, - sym_val_list, - STATE(7140), 1, - aux_sym_val_table_repeat1, - [214306] = 8, + STATE(6549), 1, + sym_val_string, + STATE(7168), 1, + sym__str_double_quotes, + ACTIONS(9278), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213890] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9390), 1, - anon_sym_RBRACK, + ACTIONS(9280), 1, + anon_sym_DQUOTE, + ACTIONS(9284), 1, + aux_sym_path_token1, + STATE(2685), 1, + sym_val_string, + STATE(2718), 1, + sym__str_double_quotes, STATE(5832), 1, sym_comment, - STATE(6039), 1, - aux_sym_shebang_repeat1, - STATE(6746), 1, - sym_val_list, - STATE(7130), 1, - aux_sym_val_table_repeat1, - [214331] = 4, + ACTIONS(9282), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213913] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DASH, + ACTIONS(9286), 1, + anon_sym_DQUOTE, + ACTIONS(9290), 1, + aux_sym_path_token1, + STATE(2888), 1, + sym__str_double_quotes, + STATE(2918), 1, + sym_val_string, STATE(5833), 1, sym_comment, - ACTIONS(5038), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214348] = 8, + ACTIONS(9288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213936] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9392), 1, - anon_sym_alias, - ACTIONS(9394), 1, - anon_sym_const, - ACTIONS(9396), 1, - anon_sym_def, - ACTIONS(9398), 1, - anon_sym_extern, - ACTIONS(9400), 1, - anon_sym_module, - ACTIONS(9402), 1, - anon_sym_use, + ACTIONS(9292), 1, + anon_sym_DQUOTE, + ACTIONS(9296), 1, + aux_sym_path_token1, + STATE(399), 1, + sym__str_double_quotes, + STATE(409), 1, + sym_val_string, STATE(5834), 1, sym_comment, - [214373] = 7, + ACTIONS(9294), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213959] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9404), 1, + ACTIONS(9298), 1, anon_sym_DQUOTE, - ACTIONS(9408), 1, + ACTIONS(9302), 1, aux_sym_path_token1, - STATE(2350), 1, - sym__str_double_quotes, - STATE(2418), 1, + STATE(544), 1, sym_val_string, + STATE(548), 1, + sym__str_double_quotes, STATE(5835), 1, sym_comment, - ACTIONS(9406), 2, + ACTIONS(9300), 2, sym__str_single_quotes, sym__str_back_ticks, - [214396] = 8, + [213982] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4994), 1, - sym__blosure, - STATE(5725), 1, - aux_sym_shebang_repeat1, + ACTIONS(3523), 1, + anon_sym_DQUOTE, + ACTIONS(9304), 1, + aux_sym_path_token1, + STATE(4652), 1, + sym_val_string, + STATE(4680), 1, + sym__str_double_quotes, STATE(5836), 1, sym_comment, - [214421] = 4, + ACTIONS(3525), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214005] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9412), 1, - anon_sym_COMMA, + ACTIONS(9306), 1, + anon_sym_DQUOTE, + ACTIONS(9310), 1, + aux_sym_path_token1, + STATE(4216), 1, + sym_val_string, + STATE(4225), 1, + sym__str_double_quotes, STATE(5837), 1, sym_comment, - ACTIONS(9410), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, + ACTIONS(9308), 2, sym__str_single_quotes, sym__str_back_ticks, - [214438] = 7, - ACTIONS(3), 1, + [214028] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9414), 1, - anon_sym_DQUOTE2, + ACTIONS(4359), 1, + anon_sym_DQUOTE, + ACTIONS(9312), 1, + aux_sym_path_token1, + STATE(3511), 1, + sym_val_string, + STATE(3512), 1, + sym__str_double_quotes, STATE(5838), 1, sym_comment, - STATE(5858), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214461] = 5, + ACTIONS(4361), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214051] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8855), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9314), 1, + anon_sym_DQUOTE, + ACTIONS(9318), 1, + aux_sym_path_token1, + STATE(2611), 1, + sym__str_double_quotes, + STATE(2651), 1, + sym_val_string, STATE(5839), 1, sym_comment, - STATE(6552), 1, - sym_val_record, - ACTIONS(9416), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214480] = 8, - ACTIONS(3), 1, + ACTIONS(9316), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214074] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4712), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(9320), 1, + anon_sym_DQUOTE, + ACTIONS(9324), 1, + aux_sym_path_token1, + STATE(2869), 1, + sym__str_double_quotes, + STATE(2886), 1, + sym_val_string, STATE(5840), 1, sym_comment, - STATE(6059), 1, - sym__immediate_decimal, - [214505] = 8, - ACTIONS(3), 1, + ACTIONS(9322), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214097] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9418), 1, - aux_sym_unquoted_token3, + ACTIONS(9326), 1, + anon_sym_DQUOTE, + ACTIONS(9330), 1, + aux_sym_path_token1, + STATE(165), 1, + sym_val_string, + STATE(168), 1, + sym__str_double_quotes, STATE(5841), 1, sym_comment, - STATE(6635), 1, - sym__immediate_decimal, - [214530] = 5, + ACTIONS(9328), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214120] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8855), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9332), 1, + anon_sym_DQUOTE, + ACTIONS(9336), 1, + aux_sym_path_token1, + STATE(466), 1, + sym_val_string, + STATE(467), 1, + sym__str_double_quotes, STATE(5842), 1, sym_comment, - STATE(6553), 1, - sym_val_record, - ACTIONS(9420), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214549] = 8, - ACTIONS(3), 1, + ACTIONS(9334), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214143] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4712), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(9338), 1, + anon_sym_DQUOTE, + ACTIONS(9342), 1, + aux_sym_path_token1, + STATE(351), 1, + sym__str_double_quotes, + STATE(366), 1, + sym_val_string, STATE(5843), 1, sym_comment, - STATE(7433), 1, - sym__immediate_decimal, - [214574] = 8, - ACTIONS(3), 1, + ACTIONS(9340), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214166] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8379), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(9344), 1, + anon_sym_DQUOTE, + ACTIONS(9348), 1, + aux_sym_path_token1, + STATE(317), 1, + sym__str_double_quotes, + STATE(320), 1, + sym_val_string, STATE(5844), 1, sym_comment, - STATE(6635), 1, - sym__immediate_decimal, - [214599] = 6, + ACTIONS(9346), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [214189] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4749), 1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, anon_sym_DOLLAR, - ACTIONS(9422), 1, - anon_sym_EQ2, - ACTIONS(9424), 1, - sym_short_flag_identifier, + STATE(5366), 1, + sym_val_variable, STATE(5845), 1, sym_comment, - ACTIONS(4747), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [214620] = 8, - ACTIONS(3), 1, + STATE(5970), 1, + sym__variable_name, + STATE(6483), 1, + sym__assignment_pattern, + [214214] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8379), 1, - aux_sym_unquoted_token3, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, STATE(5846), 1, sym_comment, - STATE(7714), 1, - sym__immediate_decimal, - [214645] = 6, + STATE(5970), 1, + sym__variable_name, + STATE(6487), 1, + sym__assignment_pattern, + [214239] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, STATE(5847), 1, sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9426), 2, - sym_filesize_unit, - sym_duration_unit, - [214666] = 4, + STATE(5970), 1, + sym__variable_name, + STATE(6502), 1, + sym__assignment_pattern, + [214264] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8947), 1, + anon_sym_LPAREN, + ACTIONS(9350), 1, + anon_sym_DQUOTE2, STATE(5848), 1, sym_comment, - ACTIONS(1705), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1707), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214683] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8875), 1, - anon_sym_def, - ACTIONS(8877), 1, - anon_sym_extern, - ACTIONS(8879), 1, - anon_sym_module, - ACTIONS(8881), 1, - anon_sym_use, - ACTIONS(9428), 1, - anon_sym_alias, - ACTIONS(9430), 1, - anon_sym_const, - STATE(5849), 1, - sym_comment, - [214708] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9418), 1, - aux_sym_unquoted_token3, - STATE(5850), 1, - sym_comment, - STATE(7714), 1, - sym__immediate_decimal, - [214733] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9434), 1, - anon_sym_COMMA, - STATE(5851), 1, - sym_comment, - ACTIONS(9432), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214750] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5852), 1, - sym_comment, - ACTIONS(1755), 3, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT2, - ACTIONS(1757), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214767] = 4, + STATE(5864), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6463), 1, + sym_expr_interpolated, + ACTIONS(8949), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [214287] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5022), 1, anon_sym_DASH, - STATE(5853), 1, + STATE(5849), 1, sym_comment, - ACTIONS(5046), 5, + ACTIONS(5020), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [214784] = 7, + [214304] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(8246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, - aux_sym__immediate_decimal_token5, - STATE(5854), 1, - sym_comment, - STATE(7478), 1, - sym__immediate_decimal, - ACTIONS(8244), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214807] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2261), 1, - aux_sym_ctrl_match_token1, - STATE(5855), 1, - sym_comment, - ACTIONS(2259), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5026), 1, anon_sym_DASH, - aux_sym_unquoted_token4, - [214824] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(8246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, - aux_sym__immediate_decimal_token5, - STATE(5856), 1, - sym_comment, - STATE(7709), 1, - sym__immediate_decimal, - ACTIONS(8244), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214847] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_DOT_DOT2, - ACTIONS(9418), 1, - aux_sym_unquoted_token2, - STATE(5857), 1, + STATE(5850), 1, sym_comment, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9426), 2, - sym_filesize_unit, - sym_duration_unit, - [214868] = 7, + ACTIONS(5024), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [214321] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9436), 1, + ACTIONS(9352), 1, anon_sym_DQUOTE2, - STATE(5858), 1, - sym_comment, - STATE(5892), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, + STATE(5851), 1, + sym_comment, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214891] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_DOT, - STATE(6548), 1, - sym_path, - STATE(5859), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [214910] = 7, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [214344] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9441), 1, - aux_sym_path_token1, - STATE(1967), 1, - sym_val_string, - STATE(1984), 1, - sym__str_double_quotes, - STATE(5860), 1, + ACTIONS(5030), 1, + anon_sym_DASH, + STATE(5852), 1, sym_comment, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214933] = 7, - ACTIONS(3), 1, + ACTIONS(5028), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [214361] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9443), 1, - anon_sym_DQUOTE2, - STATE(5861), 1, + ACTIONS(9354), 1, + sym_long_flag_identifier, + ACTIONS(9356), 1, + anon_sym_EQ2, + STATE(5853), 1, sym_comment, - STATE(5869), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214956] = 4, + ACTIONS(4808), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4810), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [214382] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(5034), 1, anon_sym_DASH, - STATE(5862), 1, + STATE(5854), 1, sym_comment, - ACTIONS(5012), 5, + ACTIONS(5032), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [214973] = 6, + [214399] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9324), 1, - anon_sym_DOT_DOT2, - ACTIONS(9447), 1, - sym__entry_separator, - STATE(5863), 1, + STATE(5855), 1, sym_comment, - ACTIONS(9326), 2, + ACTIONS(2029), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2031), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9445), 2, - anon_sym_RBRACE, - anon_sym__, - [214994] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9449), 1, - anon_sym_RBRACK, - STATE(5864), 1, - sym_comment, - STATE(6047), 1, - aux_sym_shebang_repeat1, - STATE(7114), 1, - sym_val_list, - STATE(7156), 1, - aux_sym_val_table_repeat1, - [215019] = 8, + sym__entry_separator, + [214416] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, + ACTIONS(8395), 1, + aux_sym_unquoted_token3, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5865), 1, + STATE(5856), 1, sym_comment, - STATE(6635), 1, + STATE(6378), 1, sym__immediate_decimal, - [215044] = 8, + [214441] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, + ACTIONS(8395), 1, + aux_sym_unquoted_token3, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5866), 1, + STATE(5857), 1, sym_comment, - STATE(7714), 1, + STATE(7494), 1, sym__immediate_decimal, - [215069] = 8, + [214466] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4972), 1, - sym__blosure, - STATE(5643), 1, - aux_sym_shebang_repeat1, - STATE(5867), 1, - sym_comment, - [215094] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9088), 1, - sym__newline, - ACTIONS(9090), 1, - anon_sym_SEMI, - ACTIONS(9451), 1, - anon_sym_RPAREN, - STATE(238), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5868), 1, + ACTIONS(4512), 1, + anon_sym_DOT_DOT2, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, + STATE(5858), 1, sym_comment, - STATE(6361), 1, - aux_sym__block_body_repeat1, - STATE(6970), 1, - aux_sym_shebang_repeat1, - [215119] = 7, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(8927), 2, + sym_filesize_unit, + sym_duration_unit, + [214487] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9453), 1, - anon_sym_DQUOTE2, - STATE(5869), 1, - sym_comment, - STATE(5892), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215142] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9455), 1, - anon_sym_RBRACK, - STATE(5870), 1, + ACTIONS(6059), 1, + sym__entry_separator, + ACTIONS(6086), 1, + anon_sym_RBRACE, + ACTIONS(8768), 1, + anon_sym_DOT, + STATE(523), 1, + sym_cell_path, + STATE(5699), 1, + aux_sym_cell_path_repeat1, + STATE(5859), 1, sym_comment, - STATE(6044), 1, - aux_sym_shebang_repeat1, - STATE(7056), 1, - sym_val_list, - STATE(7146), 1, - aux_sym_val_table_repeat1, - [215167] = 7, - ACTIONS(247), 1, + STATE(6292), 1, + sym_path, + [214512] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(8246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, - aux_sym__immediate_decimal_token5, - STATE(5871), 1, + ACTIONS(2241), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(5860), 1, sym_comment, - STATE(7456), 1, - sym__immediate_decimal, - ACTIONS(8244), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [215190] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9008), 1, + ACTIONS(2237), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(9010), 1, anon_sym_DASH, - ACTIONS(9457), 1, - anon_sym_in, - STATE(5872), 1, - sym_comment, - STATE(7764), 1, - sym__flag, - STATE(5452), 2, - sym_short_flag, - sym_long_flag, - [215213] = 7, + [214531] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DASH_DASH, - ACTIONS(9010), 1, - anon_sym_DASH, - ACTIONS(9459), 1, - anon_sym_in, - STATE(5873), 1, + ACTIONS(9360), 1, + anon_sym_COMMA, + STATE(5861), 1, sym_comment, - STATE(7766), 1, - sym__flag, - STATE(5452), 2, - sym_short_flag, - sym_long_flag, - [215236] = 5, + ACTIONS(9358), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214548] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9461), 1, - anon_sym_DOT_DOT2, - STATE(5874), 1, + ACTIONS(8790), 1, + anon_sym_def, + ACTIONS(8792), 1, + anon_sym_extern, + ACTIONS(8794), 1, + anon_sym_module, + ACTIONS(8796), 1, + anon_sym_use, + ACTIONS(9362), 1, + anon_sym_alias, + ACTIONS(9364), 1, + anon_sym_const, + STATE(5862), 1, sym_comment, - ACTIONS(9463), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2067), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215255] = 5, - ACTIONS(247), 1, + [214573] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(5875), 1, + STATE(5863), 1, sym_comment, - STATE(6611), 1, - sym_block, - ACTIONS(9465), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2141), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [215274] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1517), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9467), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9469), 1, - aux_sym__immediate_decimal_token2, - STATE(5876), 1, - sym_comment, - ACTIONS(1519), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [215295] = 7, + anon_sym_DOT_DOT2, + ACTIONS(2143), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [214590] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8947), 1, anon_sym_LPAREN, - ACTIONS(9471), 1, + ACTIONS(9366), 1, anon_sym_DQUOTE2, - STATE(5701), 1, + STATE(5787), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5877), 1, + STATE(5864), 1, sym_comment, - STATE(6534), 1, + STATE(6463), 1, sym_expr_interpolated, - ACTIONS(8962), 2, + ACTIONS(8949), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [215318] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9473), 1, - anon_sym_DOT_DOT2, - STATE(5878), 1, - sym_comment, - ACTIONS(9475), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2041), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215337] = 5, + [214613] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9477), 1, - anon_sym_DOT_DOT2, - STATE(5879), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5024), 1, + sym__blosure, + STATE(5865), 1, sym_comment, - ACTIONS(9479), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2049), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215356] = 5, + [214638] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9481), 1, - anon_sym_DOT_DOT2, - STATE(5880), 1, + ACTIONS(9370), 1, + anon_sym_COMMA, + STATE(5866), 1, sym_comment, - ACTIONS(9483), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2057), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215375] = 5, + ACTIONS(9368), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214655] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(5881), 1, - sym_comment, - STATE(6615), 1, - sym_block, - ACTIONS(9465), 4, + ACTIONS(3705), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215394] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5882), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5025), 1, + sym__blosure, + STATE(5867), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1645), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215411] = 8, + [214680] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9485), 1, + ACTIONS(9372), 1, anon_sym_RBRACK, - STATE(5883), 1, + STATE(5868), 1, sym_comment, - STATE(6045), 1, + STATE(6009), 1, aux_sym_shebang_repeat1, - STATE(7068), 1, + STATE(6993), 1, sym_val_list, - STATE(7148), 1, + STATE(7045), 1, aux_sym_val_table_repeat1, - [215436] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9487), 1, - anon_sym_DQUOTE, - ACTIONS(9491), 1, - aux_sym_path_token1, - STATE(5884), 1, - sym_comment, - STATE(6004), 1, - sym__str_double_quotes, - STATE(6083), 1, - sym_val_string, - ACTIONS(9489), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215459] = 8, + [214705] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - ACTIONS(9493), 1, + ACTIONS(9374), 1, anon_sym_RBRACK, - STATE(5885), 1, + STATE(5869), 1, sym_comment, - STATE(6025), 1, + STATE(6010), 1, aux_sym_shebang_repeat1, - STATE(6936), 1, + STATE(6997), 1, sym_val_list, - STATE(7057), 1, + STATE(7047), 1, aux_sym_val_table_repeat1, - [215484] = 7, + [214730] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_block, + STATE(1694), 1, + sym_val_closure, + STATE(5025), 1, + sym__blosure, + STATE(5691), 1, + aux_sym_shebang_repeat1, + STATE(5870), 1, + sym_comment, + [214755] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, - anon_sym_DQUOTE2, - STATE(5886), 1, + ACTIONS(9376), 1, + anon_sym_DOT, + ACTIONS(9378), 1, + aux_sym__immediate_decimal_token2, + STATE(5871), 1, sym_comment, - STATE(5889), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215507] = 8, + ACTIONS(1667), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214776] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9380), 1, + anon_sym_alias, + ACTIONS(9382), 1, + anon_sym_const, + ACTIONS(9384), 1, + anon_sym_def, + ACTIONS(9386), 1, + anon_sym_extern, + ACTIONS(9388), 1, + anon_sym_module, + ACTIONS(9390), 1, + anon_sym_use, + STATE(5872), 1, + sym_comment, + [214801] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(8211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8213), 1, + aux_sym__immediate_decimal_token5, + STATE(5873), 1, + sym_comment, + STATE(7388), 1, + sym__immediate_decimal, + ACTIONS(8209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [214824] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4568), 1, + ACTIONS(4726), 1, aux_sym_unquoted_token3, - ACTIONS(8171), 1, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8557), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8559), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5887), 1, + STATE(5874), 1, sym_comment, - STATE(6635), 1, + STATE(5916), 1, sym__immediate_decimal, - [215532] = 8, + [214849] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4568), 1, + ACTIONS(4726), 1, aux_sym_unquoted_token3, - ACTIONS(8244), 1, + ACTIONS(8209), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8563), 1, + ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8565), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8567), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5888), 1, + STATE(5875), 1, sym_comment, - STATE(7714), 1, + STATE(7280), 1, sym__immediate_decimal, - [215557] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, - anon_sym_DQUOTE2, - STATE(5889), 1, - sym_comment, - STATE(5892), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(8962), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215580] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - ACTIONS(9499), 1, - anon_sym_RBRACK, - STATE(5890), 1, - sym_comment, - STATE(6049), 1, - aux_sym_shebang_repeat1, - STATE(7153), 1, - sym_val_list, - STATE(7161), 1, - aux_sym_val_table_repeat1, - [215605] = 4, + [214874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3768), 1, - sym__space, - STATE(5891), 1, + ACTIONS(2233), 1, + anon_sym_LBRACE, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(5876), 1, sym_comment, - ACTIONS(3766), 5, - sym__newline, + ACTIONS(2229), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - aux_sym_ctrl_match_token1, - [215622] = 6, + [214893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9501), 1, - anon_sym_LPAREN, - ACTIONS(9507), 1, - anon_sym_DQUOTE2, - STATE(6534), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5892), 2, + ACTIONS(1072), 1, + anon_sym_LBRACE, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(5877), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [215643] = 6, + ACTIONS(1070), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [214912] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1497), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9509), 1, - anon_sym_DOT, - ACTIONS(9511), 1, - aux_sym__immediate_decimal_token2, - STATE(5893), 1, + ACTIONS(8890), 1, + anon_sym_DASH_DASH, + ACTIONS(8892), 1, + anon_sym_DASH, + ACTIONS(9392), 1, + anon_sym_in, + STATE(5878), 1, sym_comment, - ACTIONS(1499), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [215664] = 7, - ACTIONS(3), 1, + STATE(7678), 1, + sym__flag, + STATE(5404), 2, + sym_short_flag, + sym_long_flag, + [214935] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9340), 1, + ACTIONS(9394), 1, anon_sym_DOT_DOT2, - ACTIONS(9513), 1, - anon_sym_RBRACE, - STATE(5894), 1, + STATE(5879), 1, sym_comment, - STATE(7009), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9342), 2, + ACTIONS(9396), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215687] = 4, + ACTIONS(2025), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214954] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5036), 1, - anon_sym_DASH, - STATE(5895), 1, - sym_comment, - ACTIONS(5034), 5, - ts_builtin_sym_end, + ACTIONS(3705), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [215704] = 6, - ACTIONS(3), 1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(9398), 1, + anon_sym_RBRACK, + STATE(5880), 1, + sym_comment, + STATE(5965), 1, + aux_sym_shebang_repeat1, + STATE(6920), 1, + sym_val_list, + STATE(6962), 1, + aux_sym_val_table_repeat1, + [214979] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(9515), 1, + ACTIONS(9400), 1, anon_sym_DOT_DOT2, - STATE(5896), 1, + STATE(5881), 1, sym_comment, - ACTIONS(1796), 2, - anon_sym_RBRACE, - anon_sym__, - ACTIONS(9517), 2, + ACTIONS(9402), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215725] = 7, + ACTIONS(1997), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214998] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9519), 1, - anon_sym_DQUOTE, - ACTIONS(9523), 1, - aux_sym_path_token1, - STATE(473), 1, - sym_val_string, - STATE(475), 1, - sym__str_double_quotes, - STATE(5897), 1, + ACTIONS(9404), 1, + anon_sym_DOT_DOT2, + STATE(5882), 1, sym_comment, - ACTIONS(9521), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215748] = 7, + ACTIONS(9406), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2005), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215017] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(9408), 1, + anon_sym_DOT_DOT2, + STATE(5883), 1, + sym_comment, + ACTIONS(9410), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215036] = 8, + ACTIONS(143), 1, sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(5898), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8923), 1, + anon_sym_SEMI, + ACTIONS(9412), 1, + anon_sym_RPAREN, + STATE(258), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5884), 1, sym_comment, - STATE(6771), 1, - sym_val_list, - STATE(7203), 1, - aux_sym_val_table_repeat1, - [215770] = 7, + STATE(6565), 1, + aux_sym__block_body_repeat1, + STATE(6992), 1, + aux_sym_shebang_repeat1, + [215061] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, - sym__newline, - ACTIONS(7738), 1, - sym__space, - STATE(4707), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5899), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9418), 1, + anon_sym_SQUOTE, + STATE(5885), 1, sym_comment, - STATE(5986), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7399), 1, - sym__flags_parenthesized, - [215792] = 4, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215083] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_DASH, - STATE(5900), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(5886), 1, sym_comment, - ACTIONS(5012), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [215808] = 7, + STATE(7104), 1, + sym_block, + ACTIONS(8953), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215101] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5857), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2828), 1, - aux_sym__multiple_types_repeat1, - STATE(5901), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9420), 1, + anon_sym_SQUOTE, + STATE(5887), 1, sym_comment, - STATE(7610), 1, - sym_default_arm, - [215830] = 7, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5871), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2846), 1, - aux_sym__multiple_types_repeat1, - STATE(5902), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9422), 1, + anon_sym_SQUOTE, + STATE(5888), 1, sym_comment, - STATE(7589), 1, - sym_default_arm, - [215852] = 5, + STATE(5897), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215145] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(5903), 1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5889), 1, sym_comment, - STATE(6732), 1, - sym_block, - ACTIONS(9040), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215870] = 5, - ACTIONS(247), 1, + STATE(5970), 1, + sym__variable_name, + STATE(6487), 1, + sym__assignment_pattern, + [215167] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(5904), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9424), 1, + anon_sym_SQUOTE, + STATE(5890), 1, sym_comment, - STATE(6734), 1, - sym_block, - ACTIONS(9040), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215888] = 5, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215189] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(5905), 1, + STATE(5891), 1, sym_comment, - STATE(7075), 1, - sym_block, - ACTIONS(9465), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215906] = 5, + ACTIONS(9426), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215203] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(5906), 1, + ACTIONS(1518), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token2, + STATE(5892), 1, sym_comment, - STATE(6852), 1, - sym_block, - ACTIONS(9465), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215924] = 7, + ACTIONS(1520), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [215221] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8273), 1, + ACTIONS(8231), 1, sym_identifier, - ACTIONS(8992), 1, + ACTIONS(9050), 1, anon_sym_DOLLAR, - STATE(5319), 1, + STATE(5366), 1, sym_val_variable, - STATE(5907), 1, + STATE(5893), 1, sym_comment, - STATE(6017), 1, + STATE(5970), 1, sym__variable_name, - STATE(7054), 1, + STATE(6502), 1, sym__assignment_pattern, - [215946] = 5, + [215243] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(212), 1, + STATE(236), 1, aux_sym__block_body_repeat1, - STATE(5908), 1, + STATE(5894), 1, sym_comment, ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - ACTIONS(1664), 2, + ACTIONS(635), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [215964] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1967), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2182), 1, - sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(5909), 1, - sym_comment, - [215986] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1959), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2184), 1, - sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(5910), 1, - sym_comment, - [216008] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(5911), 1, - sym_comment, - STATE(7277), 1, - sym_val_list, - STATE(7283), 1, - aux_sym_val_table_repeat1, - [216030] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2201), 1, - sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(5912), 1, - sym_comment, - [216052] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8743), 1, - anon_sym_DOT, - STATE(2207), 1, - sym_cell_path, - STATE(2590), 1, - sym_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(5913), 1, - sym_comment, - [216074] = 7, + [215261] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5914), 1, + ACTIONS(9428), 1, + anon_sym_PIPE, + ACTIONS(9430), 1, + anon_sym_if, + ACTIONS(9432), 1, + anon_sym_EQ_GT, + STATE(5895), 1, sym_comment, - STATE(6017), 1, - sym__variable_name, - STATE(7101), 1, - sym__assignment_pattern, - [216096] = 7, + STATE(7121), 1, + aux_sym_match_pattern_repeat1, + STATE(7425), 1, + sym_match_guard, + [215283] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5931), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2797), 1, - aux_sym__multiple_types_repeat1, - STATE(5915), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9434), 1, + anon_sym_SQUOTE, + STATE(5896), 1, sym_comment, - STATE(7805), 1, - sym_default_arm, - [216118] = 3, - ACTIONS(247), 1, + STATE(5899), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215305] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5916), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9436), 1, + anon_sym_SQUOTE, + STATE(5897), 1, sym_comment, - ACTIONS(9527), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216132] = 3, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215327] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5917), 1, + STATE(5898), 1, sym_comment, - ACTIONS(9529), 5, + ACTIONS(9438), 5, sym_identifier, anon_sym_GT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [216146] = 7, - ACTIONS(247), 1, + [215341] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1013), 1, - aux_sym_record_entry_token1, - ACTIONS(9531), 1, - anon_sym_DOT, - STATE(1204), 1, - sym_cell_path, - STATE(5918), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9440), 1, + anon_sym_SQUOTE, + STATE(5899), 1, sym_comment, - STATE(6658), 1, - aux_sym_cell_path_repeat1, - STATE(6721), 1, - sym_path, - [216168] = 6, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215363] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(8464), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9533), 1, - anon_sym_DOT, - STATE(5919), 1, + STATE(5900), 1, sym_comment, - ACTIONS(1643), 2, + ACTIONS(1044), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1042), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [216188] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - anon_sym_DASH, - STATE(5920), 1, - sym_comment, - ACTIONS(5034), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216204] = 3, - ACTIONS(247), 1, + anon_sym_QMARK2, + [215379] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5921), 1, + ACTIONS(1036), 1, + anon_sym_DOT, + STATE(5901), 1, sym_comment, - ACTIONS(9535), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216218] = 4, + ACTIONS(1034), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [215395] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(8841), 1, anon_sym_DASH, - STATE(5922), 1, + STATE(5902), 1, sym_comment, - ACTIONS(5038), 4, + ACTIONS(8839), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216234] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5923), 1, - sym_comment, - ACTIONS(9537), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216248] = 5, + anon_sym_LBRACE, + [215411] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(1798), 1, aux_sym_unquoted_token2, - ACTIONS(9002), 1, - aux_sym__immediate_decimal_token2, - STATE(5924), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [216266] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - sym__entry_separator, - ACTIONS(8763), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9539), 1, - anon_sym_DOT, - STATE(5925), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_RBRACE, - anon_sym__, - [216286] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5926), 1, + ACTIONS(9442), 1, + anon_sym_DOT_DOT2, + STATE(5903), 1, sym_comment, - ACTIONS(9541), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216300] = 7, + ACTIONS(9444), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215431] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9547), 1, + ACTIONS(9446), 1, anon_sym_SQUOTE, - STATE(5927), 1, + STATE(5904), 1, sym_comment, - STATE(5929), 1, + STATE(5906), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [216322] = 7, + [215453] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8273), 1, + ACTIONS(8231), 1, sym_identifier, - ACTIONS(8992), 1, + ACTIONS(9050), 1, anon_sym_DOLLAR, - STATE(5319), 1, + STATE(5366), 1, sym_val_variable, - STATE(5928), 1, + STATE(5905), 1, sym_comment, - STATE(5983), 1, + STATE(5952), 1, sym__variable_name, - STATE(6698), 1, - sym__assignment_pattern_parenthesized, - [216344] = 7, + STATE(7026), 1, + sym__assignment_pattern, + [215475] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9549), 1, + ACTIONS(9448), 1, anon_sym_SQUOTE, - STATE(5929), 1, + STATE(5906), 1, sym_comment, - STATE(6082), 1, + STATE(5940), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [216366] = 7, + [215497] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9551), 1, + ACTIONS(9450), 1, anon_sym_SQUOTE, - STATE(5930), 1, + STATE(5907), 1, sym_comment, - STATE(6093), 1, + STATE(5912), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [216388] = 5, + [215519] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1497), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9511), 1, - aux_sym__immediate_decimal_token2, - STATE(5931), 1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5908), 1, sym_comment, - ACTIONS(1499), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [216406] = 5, + STATE(5952), 1, + sym__variable_name, + STATE(6985), 1, + sym__assignment_pattern, + [215541] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, + ACTIONS(1667), 1, aux_sym_unquoted_token2, - ACTIONS(9553), 1, + ACTIONS(9014), 1, aux_sym__immediate_decimal_token2, - STATE(5932), 1, + STATE(5909), 1, sym_comment, - ACTIONS(1707), 3, + ACTIONS(1669), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [216424] = 5, - ACTIONS(247), 1, + [215559] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(209), 1, - aux_sym__block_body_repeat1, - STATE(5933), 1, - sym_comment, - ACTIONS(145), 2, + ACTIONS(9452), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(669), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216442] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1794), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9555), 1, - anon_sym_DOT_DOT2, - STATE(5934), 1, - sym_comment, - ACTIONS(9557), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216462] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(9559), 1, - anon_sym_DOT, - ACTIONS(9561), 1, - aux_sym__immediate_decimal_token2, - STATE(5935), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [216482] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, - aux_sym__immediate_decimal_token5, - STATE(5936), 1, + ACTIONS(9455), 1, + sym__space, + STATE(5470), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7291), 1, + sym__flags_parenthesized, + STATE(5910), 2, sym_comment, - STATE(7713), 1, - sym__immediate_decimal, - ACTIONS(8244), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [216502] = 4, + aux_sym_ctrl_do_parenthesized_repeat1, + [215579] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5018), 1, - anon_sym_DASH, - STATE(5937), 1, - sym_comment, - ACTIONS(5016), 4, + ACTIONS(8231), 1, sym_identifier, + ACTIONS(9050), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216518] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5022), 1, - anon_sym_DASH, - STATE(5938), 1, + STATE(5366), 1, + sym_val_variable, + STATE(5911), 1, sym_comment, - ACTIONS(5020), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216534] = 5, + STATE(5952), 1, + sym__variable_name, + STATE(7022), 1, + sym__assignment_pattern, + [215601] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9174), 1, - aux_sym__immediate_decimal_token2, - STATE(5939), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9458), 1, + anon_sym_SQUOTE, + STATE(5912), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [216552] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_DASH, STATE(5940), 1, - sym_comment, - ACTIONS(4886), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216568] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8954), 1, - aux_sym_ctrl_match_token1, - STATE(5941), 1, - sym_comment, - STATE(6968), 1, - sym_val_record, - ACTIONS(9416), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216586] = 7, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215623] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(9525), 1, - anon_sym__, - ACTIONS(9563), 1, - anon_sym_RBRACE, - STATE(2840), 1, - aux_sym__multiple_types_repeat1, - STATE(5942), 1, - sym_comment, - STATE(7780), 1, - sym_default_arm, - [216608] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8915), 1, - anon_sym_DASH, - STATE(5943), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9460), 1, + anon_sym_SQUOTE, + STATE(5913), 1, sym_comment, - ACTIONS(8913), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216624] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9565), 1, - anon_sym_PIPE, - ACTIONS(9567), 1, - anon_sym_if, - ACTIONS(9569), 1, - anon_sym_EQ_GT, STATE(5944), 1, - sym_comment, - STATE(7012), 1, - aux_sym_match_pattern_repeat1, - STATE(7747), 1, - sym_match_guard, - [216646] = 7, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [215645] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(5945), 1, + ACTIONS(1830), 1, + anon_sym_LBRACE, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2364), 1, + sym_cell_path, + STATE(2655), 1, + sym_path, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(5914), 1, sym_comment, - STATE(6994), 1, - sym_val_list, - STATE(7002), 1, - aux_sym_val_table_repeat1, - [216668] = 3, + [215667] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(5946), 1, + ACTIONS(1914), 1, + anon_sym_LBRACE, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2379), 1, + sym_cell_path, + STATE(2655), 1, + sym_path, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(5915), 1, sym_comment, - ACTIONS(9571), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216682] = 4, + [215689] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5044), 1, - anon_sym_DASH, - STATE(5947), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(9462), 1, + anon_sym_DOT_DOT2, + STATE(5916), 1, sym_comment, - ACTIONS(5042), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216698] = 4, + ACTIONS(9464), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215709] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5048), 1, - anon_sym_DASH, - STATE(5948), 1, + ACTIONS(8211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8213), 1, + aux_sym__immediate_decimal_token5, + STATE(5917), 1, sym_comment, - ACTIONS(5046), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216714] = 5, + STATE(7397), 1, + sym__immediate_decimal, + ACTIONS(8209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [215729] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9322), 1, - aux_sym__immediate_decimal_token2, - STATE(5949), 1, - sym_comment, - ACTIONS(1643), 2, + ACTIONS(2015), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1645), 2, - anon_sym_LPAREN2, + ACTIONS(2017), 1, sym__entry_separator, - [216732] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(9573), 1, + ACTIONS(9022), 1, anon_sym_DOT_DOT2, - STATE(5950), 1, + STATE(5918), 1, sym_comment, - ACTIONS(9575), 2, + ACTIONS(9024), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [216752] = 6, + [215749] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1667), 1, aux_sym_unquoted_token2, - ACTIONS(9577), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9579), 1, - aux_sym__immediate_decimal_token2, - STATE(5951), 1, - sym_comment, - ACTIONS(1633), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [216772] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(9525), 1, - anon_sym__, - ACTIONS(9581), 1, - anon_sym_RBRACE, - STATE(2799), 1, - aux_sym__multiple_types_repeat1, - STATE(5952), 1, - sym_comment, - STATE(7519), 1, - sym_default_arm, - [216794] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1967), 1, - sym__table_head_separator, - ACTIONS(9583), 1, - anon_sym_DOT, - STATE(2654), 1, - sym_cell_path, - STATE(5953), 1, - sym_comment, - STATE(6566), 1, - aux_sym_cell_path_repeat1, - STATE(6721), 1, - sym_path, - [216816] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - sym__table_head_separator, - ACTIONS(9583), 1, + ACTIONS(9466), 1, anon_sym_DOT, - STATE(2660), 1, - sym_cell_path, - STATE(5954), 1, - sym_comment, - STATE(6566), 1, - aux_sym_cell_path_repeat1, - STATE(6721), 1, - sym_path, - [216838] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5955), 1, - sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6547), 1, - sym__assignment_pattern, - [216860] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9585), 1, - anon_sym_SQUOTE, - STATE(5956), 1, - sym_comment, - STATE(5960), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [216882] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5957), 1, + ACTIONS(9468), 1, + aux_sym__immediate_decimal_token2, + STATE(5919), 1, sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6550), 1, - sym__assignment_pattern, - [216904] = 5, + ACTIONS(1669), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [215769] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8954), 1, - aux_sym_ctrl_match_token1, - STATE(5958), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(5920), 1, sym_comment, - STATE(7032), 1, - sym_val_record, - ACTIONS(9420), 3, + STATE(6755), 1, + sym_block, + ACTIONS(8921), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [216922] = 7, + [215787] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5959), 1, + ACTIONS(1834), 1, + anon_sym_LBRACE, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2223), 1, + sym_cell_path, + STATE(2655), 1, + sym_path, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(5921), 1, sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6551), 1, - sym__assignment_pattern, - [216944] = 7, + [215809] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9587), 1, + ACTIONS(9470), 1, anon_sym_SQUOTE, - STATE(5960), 1, + STATE(5922), 1, sym_comment, - STATE(6082), 1, + STATE(5928), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [216966] = 4, + [215831] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4926), 1, - anon_sym_DASH, - STATE(5961), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(5923), 1, + sym_comment, + STATE(7044), 1, + sym_block, + ACTIONS(8993), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215849] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5924), 1, sym_comment, - ACTIONS(4924), 4, + ACTIONS(1040), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1038), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [215865] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8231), 1, sym_identifier, + ACTIONS(9050), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [216982] = 5, + STATE(5366), 1, + sym_val_variable, + STATE(5925), 1, + sym_comment, + STATE(5929), 1, + sym__variable_name, + STATE(6635), 1, + sym__assignment_pattern_parenthesized, + [215887] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9106), 1, aux_sym__immediate_decimal_token2, - STATE(5962), 1, + STATE(5926), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1667), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1707), 2, + ACTIONS(1669), 2, anon_sym_LPAREN2, sym__entry_separator, - [217000] = 6, - ACTIONS(3), 1, + [215905] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_RBRACE, - ACTIONS(1999), 1, - sym__entry_separator, - ACTIONS(9340), 1, - anon_sym_DOT_DOT2, - STATE(5963), 1, + STATE(5927), 1, sym_comment, - ACTIONS(9342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217020] = 7, + ACTIONS(9472), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9591), 1, + ACTIONS(9474), 1, anon_sym_SQUOTE, - STATE(5964), 1, + STATE(5928), 1, sym_comment, - STATE(5976), 1, + STATE(5940), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [217042] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5965), 1, - sym_comment, - STATE(5983), 1, - sym__variable_name, - STATE(6700), 1, - sym__assignment_pattern_parenthesized, - [217064] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5966), 1, - sym_comment, - STATE(5967), 1, - sym__variable_name, - STATE(6307), 1, - sym__assignment_pattern, - [217086] = 7, + [215941] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(9593), 1, + ACTIONS(9476), 1, anon_sym_EQ, - ACTIONS(9595), 1, + ACTIONS(9478), 1, anon_sym_COLON, - STATE(5967), 1, + STATE(5929), 1, sym_comment, - STATE(7041), 1, + STATE(6750), 1, aux_sym_shebang_repeat1, - STATE(7710), 1, + STATE(7455), 1, sym_param_type, - [217108] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9597), 1, - anon_sym_SQUOTE, - STATE(5968), 1, - sym_comment, - STATE(5969), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217130] = 7, - ACTIONS(3), 1, + [215963] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9599), 1, - anon_sym_SQUOTE, - STATE(5969), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(5930), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217152] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9601), 1, + STATE(6834), 1, + sym_block, + ACTIONS(9008), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9604), 1, - sym__space, - STATE(5365), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7399), 1, - sym__flags_parenthesized, - STATE(5970), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [217172] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [215981] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9607), 1, - anon_sym_SQUOTE, - STATE(5971), 1, + ACTIONS(1826), 1, + anon_sym_LBRACE, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2337), 1, + sym_cell_path, + STATE(2655), 1, + sym_path, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(5931), 1, sym_comment, - STATE(5972), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217194] = 7, - ACTIONS(3), 1, + [216003] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9609), 1, - anon_sym_SQUOTE, - STATE(5972), 1, + ACTIONS(5030), 1, + anon_sym_DASH, + STATE(5932), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217216] = 7, + ACTIONS(5028), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216019] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9611), 1, + ACTIONS(9480), 1, anon_sym_SQUOTE, - STATE(5973), 1, + STATE(5933), 1, sym_comment, - STATE(5975), 1, + STATE(5938), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [217238] = 5, + [216041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9613), 1, + ACTIONS(9482), 1, aux_sym__immediate_decimal_token2, - STATE(5974), 1, + STATE(5934), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 2, + ACTIONS(1721), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1723), 2, anon_sym_LPAREN2, sym__entry_separator, - [217256] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9615), 1, - anon_sym_SQUOTE, - STATE(5975), 1, - sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217278] = 7, - ACTIONS(3), 1, + [216059] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9617), 1, - anon_sym_SQUOTE, - STATE(5976), 1, + ACTIONS(5000), 1, + anon_sym_DASH, + STATE(5935), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217300] = 6, + ACTIONS(4998), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216075] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1659), 1, aux_sym_unquoted_token2, - ACTIONS(9619), 1, - anon_sym_DOT, - ACTIONS(9621), 1, + ACTIONS(9484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9486), 1, aux_sym__immediate_decimal_token2, - STATE(5977), 1, + STATE(5936), 1, sym_comment, - ACTIONS(1645), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [217320] = 4, + ACTIONS(1661), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [216095] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5978), 1, - sym_comment, - ACTIONS(1058), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1056), 3, - anon_sym_RBRACK, + ACTIONS(1778), 1, anon_sym_RBRACE, - anon_sym__, - [217336] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9623), 1, - anon_sym_SQUOTE, - STATE(5979), 1, + ACTIONS(1786), 1, + sym__entry_separator, + ACTIONS(9488), 1, + anon_sym_DOT_DOT2, + STATE(5937), 1, sym_comment, - STATE(5980), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217358] = 7, + ACTIONS(9490), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216115] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9625), 1, + ACTIONS(9492), 1, anon_sym_SQUOTE, - STATE(5980), 1, + STATE(5938), 1, sym_comment, - STATE(6082), 1, + STATE(5940), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [217380] = 7, + [216137] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8273), 1, + ACTIONS(5004), 1, + anon_sym_DASH, + STATE(5939), 1, + sym_comment, + ACTIONS(5002), 4, sym_identifier, - ACTIONS(8992), 1, anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5981), 1, - sym_comment, - STATE(5983), 1, - sym__variable_name, - STATE(6945), 1, - sym__assignment_pattern_parenthesized, - [217402] = 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9494), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9497), 1, sym_unescaped_interpolated_content, - ACTIONS(9627), 1, + ACTIONS(9500), 1, anon_sym_SQUOTE, - STATE(5982), 1, + STATE(7176), 1, + sym_expr_interpolated, + STATE(5940), 2, sym_comment, - STATE(5984), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217424] = 7, + [216173] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, + ACTIONS(5034), 1, + anon_sym_DASH, + STATE(5941), 1, + sym_comment, + ACTIONS(5032), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216189] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(5942), 1, + sym_comment, + STATE(6843), 1, + sym_block, + ACTIONS(9008), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9595), 1, - anon_sym_COLON, - ACTIONS(9629), 1, - anon_sym_EQ, - STATE(5983), 1, + anon_sym_SEMI, + [216207] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8804), 1, + anon_sym_LBRACE, + STATE(5943), 1, sym_comment, - STATE(7041), 1, - aux_sym_shebang_repeat1, - STATE(7746), 1, - sym_param_type, - [217446] = 7, + STATE(6808), 1, + sym_val_record, + ACTIONS(8975), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216225] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9631), 1, + ACTIONS(9502), 1, anon_sym_SQUOTE, - STATE(5984), 1, - sym_comment, - STATE(6082), 1, + STATE(5940), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(5944), 1, + sym_comment, + STATE(7176), 1, sym_expr_interpolated, - [217468] = 7, + [216247] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9633), 1, + ACTIONS(9504), 1, anon_sym_SQUOTE, - STATE(5985), 1, + STATE(5945), 1, sym_comment, - STATE(5987), 1, + STATE(5949), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [217490] = 7, + [216269] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7606), 1, sym__newline, - ACTIONS(7738), 1, + ACTIONS(7608), 1, sym__space, - STATE(4745), 1, + STATE(4713), 1, aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5970), 1, + STATE(5910), 1, aux_sym_ctrl_do_parenthesized_repeat1, - STATE(5986), 1, + STATE(5946), 1, sym_comment, - STATE(7399), 1, + STATE(7291), 1, sym__flags_parenthesized, - [217512] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9635), 1, - anon_sym_SQUOTE, - STATE(5987), 1, - sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217534] = 4, + [216291] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, + ACTIONS(4884), 1, anon_sym_DASH, - STATE(5988), 1, + STATE(5947), 1, sym_comment, - ACTIONS(5024), 4, + ACTIONS(4882), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [217550] = 4, + anon_sym_LBRACE, + [216307] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5022), 1, anon_sym_DASH, - STATE(5989), 1, + STATE(5948), 1, sym_comment, - ACTIONS(5028), 4, + ACTIONS(5020), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [217566] = 7, + anon_sym_LBRACE, + [216323] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9637), 1, + ACTIONS(9506), 1, anon_sym_SQUOTE, - STATE(5990), 1, - sym_comment, - STATE(5991), 1, + STATE(5940), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(5949), 1, + sym_comment, + STATE(7176), 1, sym_expr_interpolated, - [217588] = 7, + [216345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9639), 1, - anon_sym_SQUOTE, - STATE(5991), 1, + ACTIONS(9508), 1, + aux_sym__immediate_decimal_token2, + STATE(5950), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217610] = 5, + ACTIONS(1721), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216363] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(5992), 1, + STATE(5951), 1, sym_comment, - STATE(6717), 1, - sym_block, - ACTIONS(9022), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217628] = 7, - ACTIONS(3), 1, + ACTIONS(9510), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216377] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9641), 1, - anon_sym_SQUOTE, - STATE(5993), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(9478), 1, + anon_sym_COLON, + ACTIONS(9512), 1, + anon_sym_EQ, + STATE(5952), 1, sym_comment, - STATE(5994), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217650] = 7, - ACTIONS(3), 1, + STATE(6750), 1, + aux_sym_shebang_repeat1, + STATE(7487), 1, + sym_param_type, + [216399] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9643), 1, - anon_sym_SQUOTE, - STATE(5994), 1, + ACTIONS(5026), 1, + anon_sym_DASH, + STATE(5953), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217672] = 6, + ACTIONS(5024), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, - anon_sym_RBRACE, - ACTIONS(2025), 1, + STATE(5954), 1, + sym_comment, + ACTIONS(1036), 2, + anon_sym_DOT, sym__entry_separator, - ACTIONS(9340), 1, - anon_sym_DOT_DOT2, - STATE(5995), 1, + ACTIONS(1034), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [216431] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + anon_sym_DASH, + STATE(5955), 1, sym_comment, - ACTIONS(9342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217692] = 7, + ACTIONS(4892), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216447] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(9514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9516), 1, + aux_sym__immediate_decimal_token2, + STATE(5956), 1, + sym_comment, + ACTIONS(1661), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [216467] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9645), 1, + ACTIONS(9518), 1, anon_sym_SQUOTE, - STATE(5996), 1, - sym_comment, - STATE(5998), 1, + STATE(5885), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(5957), 1, + sym_comment, + STATE(7176), 1, sym_expr_interpolated, - [217714] = 5, + [216489] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(211), 1, + STATE(243), 1, aux_sym__block_body_repeat1, - STATE(5997), 1, + STATE(5958), 1, sym_comment, ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - ACTIONS(1655), 2, + ACTIONS(1651), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [217732] = 7, + [216507] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(9520), 1, + anon_sym_use, + ACTIONS(9522), 1, + anon_sym_list, + ACTIONS(9524), 1, + anon_sym_hide, + ACTIONS(9526), 1, + anon_sym_new, + STATE(5959), 1, + sym_comment, + [216529] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9647), 1, + ACTIONS(9528), 1, anon_sym_SQUOTE, - STATE(5998), 1, + STATE(5960), 1, sym_comment, - STATE(6082), 1, + STATE(5969), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [217754] = 7, + [216551] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5732), 1, sym__entry_separator, - ACTIONS(5883), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2801), 1, - aux_sym__multiple_types_repeat1, - STATE(5999), 1, + ACTIONS(9022), 1, + anon_sym_DOT_DOT2, + STATE(5961), 1, sym_comment, - STATE(7523), 1, - sym_default_arm, - [217776] = 7, - ACTIONS(3), 1, + ACTIONS(9024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216571] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9649), 1, - anon_sym_SQUOTE, - STATE(6000), 1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5962), 1, sym_comment, - STATE(6001), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217798] = 7, - ACTIONS(3), 1, + STATE(5970), 1, + sym__variable_name, + STATE(6418), 1, + sym__assignment_pattern, + [216593] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9651), 1, - anon_sym_SQUOTE, - STATE(6001), 1, + ACTIONS(4942), 1, + anon_sym_DASH, + ACTIONS(9530), 1, + anon_sym_EQ2, + STATE(5963), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217820] = 7, + ACTIONS(4940), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216611] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(9532), 1, + anon_sym_DOT, + ACTIONS(9534), 1, + aux_sym__immediate_decimal_token2, + STATE(5964), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [216631] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(5965), 1, + sym_comment, + STATE(6874), 1, + sym_val_list, + STATE(6964), 1, + aux_sym_val_table_repeat1, + [216653] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(1788), 1, anon_sym_RBRACE, - ACTIONS(5832), 1, + ACTIONS(1796), 1, sym__entry_separator, - ACTIONS(9525), 1, - anon_sym__, - STATE(2818), 1, - aux_sym__multiple_types_repeat1, - STATE(6002), 1, + ACTIONS(9536), 1, + anon_sym_DOT_DOT2, + STATE(5966), 1, sym_comment, - STATE(7599), 1, - sym_default_arm, - [217842] = 7, - ACTIONS(3), 1, + ACTIONS(9538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216673] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9653), 1, - anon_sym_SQUOTE, - STATE(6003), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(5967), 1, sym_comment, - STATE(6005), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217864] = 4, - ACTIONS(3), 1, + STATE(6664), 1, + sym_val_list, + STATE(6969), 1, + aux_sym_val_table_repeat1, + [216695] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1042), 1, + ACTIONS(1007), 1, + aux_sym_record_entry_token1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(6004), 1, + STATE(1217), 1, + sym_cell_path, + STATE(5968), 1, sym_comment, - ACTIONS(1040), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [217880] = 7, + STATE(6538), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + [216717] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9655), 1, + ACTIONS(9542), 1, anon_sym_SQUOTE, - STATE(6005), 1, - sym_comment, - STATE(6082), 1, + STATE(5940), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, + STATE(5969), 1, + sym_comment, + STATE(7176), 1, sym_expr_interpolated, - [217902] = 7, - ACTIONS(3), 1, + [216739] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5903), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2814), 1, - aux_sym__multiple_types_repeat1, - STATE(6006), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(9478), 1, + anon_sym_COLON, + ACTIONS(9544), 1, + anon_sym_EQ, + STATE(5970), 1, sym_comment, - STATE(7721), 1, - sym_default_arm, - [217924] = 7, - ACTIONS(3), 1, + STATE(6750), 1, + aux_sym_shebang_repeat1, + STATE(7530), 1, + sym_param_type, + [216761] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9657), 1, - anon_sym_SQUOTE, - STATE(6007), 1, + ACTIONS(4900), 1, + anon_sym_DASH, + ACTIONS(9546), 1, + anon_sym_EQ2, + STATE(5971), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [217946] = 4, - ACTIONS(3), 1, + ACTIONS(4898), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [216779] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6008), 1, + ACTIONS(9548), 1, + anon_sym_EQ2, + ACTIONS(9550), 1, + sym_short_flag_identifier, + STATE(5972), 1, sym_comment, - ACTIONS(1062), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1060), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [217962] = 4, - ACTIONS(3), 1, + ACTIONS(4781), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [216797] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6009), 1, - sym_comment, - ACTIONS(1054), 2, + ACTIONS(1830), 1, + sym__table_head_separator, + ACTIONS(9552), 1, anon_sym_DOT, - sym__entry_separator, - ACTIONS(1052), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [217978] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9659), 1, - anon_sym_SQUOTE, - STATE(6010), 1, + STATE(2714), 1, + sym_cell_path, + STATE(5973), 1, sym_comment, - STATE(6011), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [218000] = 7, + STATE(6495), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + [216819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9661), 1, - anon_sym_SQUOTE, - STATE(6011), 1, + ACTIONS(9022), 1, + anon_sym_DOT_DOT2, + ACTIONS(9554), 1, + anon_sym_RBRACE, + ACTIONS(9556), 1, + sym__entry_separator, + STATE(5974), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7273), 1, - sym_expr_interpolated, - [218022] = 7, + ACTIONS(9024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216839] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1688), 1, - aux_sym_record_entry_token1, - ACTIONS(9531), 1, + ACTIONS(1834), 1, + sym__table_head_separator, + ACTIONS(9552), 1, anon_sym_DOT, - STATE(1313), 1, + STATE(2677), 1, sym_cell_path, - STATE(6012), 1, + STATE(5975), 1, sym_comment, - STATE(6658), 1, + STATE(6495), 1, aux_sym_cell_path_repeat1, - STATE(6721), 1, + STATE(6916), 1, sym_path, - [218044] = 6, + [216861] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9558), 1, + anon_sym_QMARK2, + STATE(5976), 1, + sym_comment, + ACTIONS(1022), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1024), 2, + anon_sym_DOT, + sym__entry_separator, + [216879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5739), 1, + ACTIONS(9560), 1, + anon_sym_QMARK2, + STATE(5977), 1, + sym_comment, + ACTIONS(1028), 2, anon_sym_RBRACK, - ACTIONS(5745), 1, + anon_sym_RBRACE, + ACTIONS(1030), 2, + anon_sym_DOT, sym__entry_separator, - ACTIONS(9340), 1, + [216897] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9022), 1, anon_sym_DOT_DOT2, - STATE(6013), 1, + ACTIONS(9562), 1, + anon_sym_RBRACE, + ACTIONS(9564), 1, + sym__entry_separator, + STATE(5978), 1, sym_comment, - ACTIONS(9342), 2, + ACTIONS(9024), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [218064] = 5, + [216917] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - STATE(6014), 1, + STATE(5979), 1, sym_comment, - ACTIONS(1587), 3, + ACTIONS(9566), 5, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [218082] = 4, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT, - STATE(6015), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9568), 1, + anon_sym_SQUOTE, + STATE(5980), 1, sym_comment, - ACTIONS(1044), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [218098] = 7, + STATE(5986), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [216953] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1629), 1, - aux_sym_record_entry_token1, - ACTIONS(9531), 1, - anon_sym_DOT, - STATE(1308), 1, - sym_cell_path, - STATE(6016), 1, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(9570), 1, + anon_sym_DOT_DOT2, + STATE(5981), 1, sym_comment, - STATE(6658), 1, - aux_sym_cell_path_repeat1, - STATE(6721), 1, - sym_path, - [218120] = 7, + ACTIONS(9572), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216973] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(9595), 1, - anon_sym_COLON, - ACTIONS(9663), 1, - anon_sym_EQ, - STATE(6017), 1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(5982), 1, sym_comment, - STATE(7041), 1, - aux_sym_shebang_repeat1, - STATE(7529), 1, - sym_param_type, - [218142] = 7, - ACTIONS(3), 1, + STATE(6746), 1, + sym_block, + ACTIONS(8921), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216991] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5913), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2851), 1, - aux_sym__multiple_types_repeat1, - STATE(6018), 1, + STATE(5983), 1, sym_comment, - STATE(7490), 1, - sym_default_arm, - [218164] = 4, + ACTIONS(9574), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(1040), 1, anon_sym_DOT, - STATE(6019), 1, + STATE(5984), 1, sym_comment, - ACTIONS(1048), 4, + ACTIONS(1038), 4, anon_sym_RBRACK, anon_sym_QMARK2, sym__entry_separator, sym__table_head_separator, - [218180] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(9525), 1, - anon_sym__, - ACTIONS(9665), 1, - anon_sym_RBRACE, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - STATE(6020), 1, - sym_comment, - STATE(7802), 1, - sym_default_arm, - [218202] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(9525), 1, - anon_sym__, - ACTIONS(9667), 1, - anon_sym_RBRACE, - STATE(2796), 1, - aux_sym__multiple_types_repeat1, - STATE(6021), 1, - sym_comment, - STATE(7813), 1, - sym_default_arm, - [218224] = 7, + [217021] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, + ACTIONS(1677), 1, aux_sym_record_entry_token1, - ACTIONS(9669), 1, - anon_sym_use, - ACTIONS(9671), 1, - anon_sym_list, - ACTIONS(9673), 1, - anon_sym_hide, - ACTIONS(9675), 1, - anon_sym_new, - STATE(6022), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1375), 1, + sym_cell_path, + STATE(5985), 1, sym_comment, - [218246] = 7, + STATE(6538), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + [217043] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - ACTIONS(5836), 1, - anon_sym_RBRACE, - ACTIONS(9525), 1, - anon_sym__, - STATE(2825), 1, - aux_sym__multiple_types_repeat1, - STATE(6023), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9576), 1, + anon_sym_SQUOTE, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5986), 1, sym_comment, - STATE(7602), 1, - sym_default_arm, - [218268] = 5, + STATE(7176), 1, + sym_expr_interpolated, + [217065] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4906), 1, - anon_sym_DASH, - ACTIONS(9677), 1, - anon_sym_EQ2, - STATE(6024), 1, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, + ACTIONS(9578), 1, + aux_sym__immediate_decimal_token2, + STATE(5987), 1, sym_comment, - ACTIONS(4904), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [218286] = 7, + ACTIONS(1723), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217083] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(6025), 1, + ACTIONS(1007), 1, + anon_sym_LBRACE, + ACTIONS(8715), 1, + anon_sym_DOT, + STATE(2655), 1, + sym_path, + STATE(3130), 1, + sym_cell_path, + STATE(5555), 1, + aux_sym_cell_path_repeat1, + STATE(5988), 1, sym_comment, - STATE(7061), 1, - aux_sym_val_table_repeat1, - STATE(7076), 1, - sym_val_list, - [218308] = 7, + [217105] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6026), 1, + STATE(5989), 1, sym_comment, - STATE(7023), 1, + STATE(7160), 1, sym_val_list, - STATE(7066), 1, + STATE(7177), 1, aux_sym_val_table_repeat1, - [218330] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DASH, - ACTIONS(9679), 1, - anon_sym_EQ2, - STATE(6027), 1, - sym_comment, - ACTIONS(4914), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [218348] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_EQ2, - ACTIONS(9683), 1, - sym_short_flag_identifier, - STATE(6028), 1, - sym_comment, - ACTIONS(4747), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [218366] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(6017), 1, - sym__variable_name, - STATE(6029), 1, - sym_comment, - STATE(7024), 1, - sym__assignment_pattern, - [218388] = 6, - ACTIONS(247), 1, + [217127] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(9685), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9687), 1, - aux_sym__immediate_decimal_token2, - STATE(6030), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9580), 1, + anon_sym_SQUOTE, + STATE(5990), 1, sym_comment, - ACTIONS(1633), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [218408] = 5, + STATE(6054), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [217149] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1565), 1, + ACTIONS(1554), 1, aux_sym_cmd_identifier_token41, - ACTIONS(9689), 1, + ACTIONS(9582), 1, aux_sym__immediate_decimal_token2, - STATE(6031), 1, + STATE(5991), 1, sym_comment, - ACTIONS(1567), 3, + ACTIONS(1556), 3, sym_filesize_unit, sym_duration_unit, aux_sym_record_entry_token1, - [218426] = 6, + [217167] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_RBRACE, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(9691), 1, - anon_sym_DOT_DOT2, - STATE(6032), 1, - sym_comment, - ACTIONS(9693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218446] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - STATE(6033), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9584), 1, + anon_sym_SQUOTE, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5992), 1, sym_comment, - ACTIONS(1587), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [218464] = 7, - ACTIONS(247), 1, + STATE(7176), 1, + sym_expr_interpolated, + [217189] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(5983), 1, - sym__variable_name, - STATE(6034), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9586), 1, + anon_sym_SQUOTE, + STATE(5993), 1, sym_comment, - STATE(6703), 1, - sym__assignment_pattern_parenthesized, - [218486] = 7, - ACTIONS(247), 1, + STATE(6000), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7176), 1, + sym_expr_interpolated, + [217211] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1013), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8743), 1, + ACTIONS(1024), 1, anon_sym_DOT, - STATE(2590), 1, - sym_path, - STATE(3091), 1, - sym_cell_path, - STATE(5588), 1, - aux_sym_cell_path_repeat1, - STATE(6035), 1, + ACTIONS(9588), 1, + anon_sym_QMARK2, + STATE(5994), 1, sym_comment, - [218508] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1794), 1, + ACTIONS(1022), 3, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(9695), 1, - anon_sym_DOT_DOT2, - STATE(6036), 1, - sym_comment, - ACTIONS(9697), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218528] = 5, + sym__table_head_separator, + [217229] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4906), 1, + ACTIONS(4942), 1, anon_sym_DASH, - ACTIONS(9699), 1, + ACTIONS(9590), 1, anon_sym_EQ2, - STATE(6037), 1, + STATE(5995), 1, sym_comment, - ACTIONS(4904), 3, + ACTIONS(4940), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [218546] = 7, + [217247] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6038), 1, + STATE(5996), 1, sym_comment, - STATE(6742), 1, + STATE(6688), 1, sym_val_list, - STATE(7129), 1, + STATE(7015), 1, aux_sym_val_table_repeat1, - [218568] = 7, + [217269] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6039), 1, + STATE(5997), 1, sym_comment, - STATE(6826), 1, + STATE(6753), 1, sym_val_list, - STATE(7131), 1, + STATE(7017), 1, aux_sym_val_table_repeat1, - [218590] = 6, + [217291] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4737), 1, + ACTIONS(4810), 1, anon_sym_DASH_DASH, - ACTIONS(9701), 1, + ACTIONS(9592), 1, sym_long_flag_identifier, - ACTIONS(9703), 1, + ACTIONS(9594), 1, anon_sym_EQ2, - STATE(6040), 1, + STATE(5998), 1, sym_comment, - ACTIONS(4735), 2, + ACTIONS(4808), 2, sym_identifier, anon_sym_DASH, - [218610] = 5, + [217311] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(4900), 1, anon_sym_DASH, - ACTIONS(9705), 1, + ACTIONS(9596), 1, anon_sym_EQ2, - STATE(6041), 1, + STATE(5999), 1, sym_comment, - ACTIONS(4914), 3, + ACTIONS(4898), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [218628] = 7, + [217329] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9598), 1, + anon_sym_SQUOTE, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6000), 1, + sym_comment, + STATE(7176), 1, + sym_expr_interpolated, + [217351] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6042), 1, + STATE(6001), 1, sym_comment, - STATE(6991), 1, + STATE(6883), 1, sym_val_list, - STATE(7138), 1, + STATE(7030), 1, aux_sym_val_table_repeat1, - [218650] = 7, + [217373] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6043), 1, + STATE(6002), 1, sym_comment, - STATE(6998), 1, + STATE(6891), 1, sym_val_list, - STATE(7141), 1, + STATE(7033), 1, aux_sym_val_table_repeat1, - [218672] = 7, + [217395] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(248), 1, + aux_sym__block_body_repeat1, + STATE(6003), 1, + sym_comment, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1657), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217413] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6044), 1, + STATE(6004), 1, sym_comment, - STATE(7064), 1, + STATE(6932), 1, sym_val_list, - STATE(7147), 1, + STATE(7038), 1, aux_sym_val_table_repeat1, - [218694] = 7, + [217435] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6045), 1, + STATE(6005), 1, sym_comment, - STATE(7084), 1, + STATE(6952), 1, sym_val_list, - STATE(7149), 1, + STATE(7041), 1, aux_sym_val_table_repeat1, - [218716] = 7, + [217457] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4992), 1, + anon_sym_DASH, + STATE(6006), 1, + sym_comment, + ACTIONS(4990), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [217473] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(8350), 1, + aux_sym_unquoted_token2, + STATE(6007), 1, + sym_comment, + ACTIONS(1572), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [217491] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4996), 1, + anon_sym_DASH, + STATE(6008), 1, + sym_comment, + ACTIONS(4994), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [217507] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6046), 1, + STATE(6009), 1, sym_comment, - STATE(7112), 1, + STATE(6995), 1, sym_val_list, - STATE(7155), 1, + STATE(7046), 1, aux_sym_val_table_repeat1, - [218738] = 7, + [217529] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6047), 1, + STATE(6010), 1, sym_comment, - STATE(7116), 1, + STATE(6999), 1, sym_val_list, - STATE(7157), 1, + STATE(7048), 1, aux_sym_val_table_repeat1, - [218760] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - sym_identifier, - ACTIONS(8992), 1, - anon_sym_DOLLAR, - STATE(5319), 1, - sym_val_variable, - STATE(6017), 1, - sym__variable_name, - STATE(6048), 1, - sym_comment, - STATE(6983), 1, - sym__assignment_pattern, - [218782] = 7, + [217551] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6049), 1, + STATE(6011), 1, sym_comment, - STATE(7162), 1, - aux_sym_val_table_repeat1, - STATE(7171), 1, + STATE(7003), 1, sym_val_list, - [218804] = 7, + STATE(7053), 1, + aux_sym_val_table_repeat1, + [217573] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6050), 1, + STATE(6012), 1, sym_comment, - STATE(7164), 1, - aux_sym_val_table_repeat1, - STATE(7197), 1, + STATE(7019), 1, sym_val_list, - [218826] = 7, + STATE(7056), 1, + aux_sym_val_table_repeat1, + [217595] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6051), 1, + STATE(6013), 1, sym_comment, - STATE(7015), 1, - sym_val_list, - STATE(7170), 1, + STATE(7061), 1, aux_sym_val_table_repeat1, - [218848] = 7, + STATE(7148), 1, + sym_val_list, + [217617] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6052), 1, + STATE(6014), 1, sym_comment, - STATE(6668), 1, - sym_val_list, - STATE(7173), 1, + STATE(7063), 1, aux_sym_val_table_repeat1, - [218870] = 7, + STATE(7161), 1, + sym_val_list, + [217639] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6053), 1, + STATE(6015), 1, sym_comment, - STATE(6686), 1, + STATE(6623), 1, sym_val_list, - STATE(7179), 1, + STATE(7067), 1, aux_sym_val_table_repeat1, - [218892] = 7, + [217661] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6054), 1, + STATE(6016), 1, sym_comment, - STATE(6691), 1, + STATE(6628), 1, sym_val_list, - STATE(7181), 1, + STATE(7069), 1, aux_sym_val_table_repeat1, - [218914] = 7, + [217683] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6055), 1, + STATE(6017), 1, sym_comment, - STATE(6708), 1, + STATE(6648), 1, sym_val_list, - STATE(7186), 1, + STATE(7075), 1, aux_sym_val_table_repeat1, - [218936] = 7, + [217705] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6056), 1, + STATE(6018), 1, sym_comment, - STATE(6714), 1, + STATE(6654), 1, sym_val_list, - STATE(7189), 1, + STATE(7077), 1, aux_sym_val_table_repeat1, - [218958] = 7, + [217727] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6057), 1, + STATE(6019), 1, sym_comment, - STATE(6737), 1, + STATE(6674), 1, sym_val_list, - STATE(7193), 1, + STATE(7082), 1, aux_sym_val_table_repeat1, - [218980] = 7, + [217749] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6058), 1, + STATE(6020), 1, sym_comment, - STATE(6744), 1, + STATE(6679), 1, sym_val_list, - STATE(7195), 1, + STATE(7085), 1, aux_sym_val_table_repeat1, - [219002] = 6, + [217771] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(9707), 1, - anon_sym_DOT_DOT2, - STATE(6059), 1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(9520), 1, + anon_sym_use, + ACTIONS(9522), 1, + anon_sym_list, + ACTIONS(9524), 1, + anon_sym_hide, + ACTIONS(9526), 1, + anon_sym_new, + STATE(6021), 1, sym_comment, - ACTIONS(9709), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219022] = 7, + [217793] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1044), 1, + anon_sym_DOT, + STATE(6022), 1, + sym_comment, + ACTIONS(1042), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [217809] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6060), 1, + STATE(6023), 1, sym_comment, - STATE(6765), 1, + STATE(6697), 1, sym_val_list, - STATE(7201), 1, + STATE(7090), 1, aux_sym_val_table_repeat1, - [219044] = 7, + [217831] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6061), 1, + STATE(6024), 1, sym_comment, - STATE(6792), 1, + STATE(6703), 1, sym_val_list, - STATE(7209), 1, + STATE(7092), 1, aux_sym_val_table_repeat1, - [219066] = 7, + [217853] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(6062), 1, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5929), 1, + sym__variable_name, + STATE(6025), 1, sym_comment, - STATE(6798), 1, - sym_val_list, - STATE(7211), 1, - aux_sym_val_table_repeat1, - [219088] = 7, + STATE(6728), 1, + sym__assignment_pattern_parenthesized, + [217875] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6063), 1, + STATE(6026), 1, sym_comment, - STATE(6813), 1, + STATE(6717), 1, sym_val_list, - STATE(7215), 1, + STATE(7098), 1, aux_sym_val_table_repeat1, - [219110] = 7, + [217897] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6064), 1, + STATE(6027), 1, sym_comment, - STATE(6819), 1, + STATE(6722), 1, sym_val_list, - STATE(7218), 1, + STATE(7101), 1, aux_sym_val_table_repeat1, - [219132] = 7, + [217919] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5929), 1, + sym__variable_name, + STATE(6028), 1, + sym_comment, + STATE(6744), 1, + sym__assignment_pattern_parenthesized, + [217941] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6065), 1, + STATE(6029), 1, sym_comment, - STATE(6840), 1, + STATE(6735), 1, sym_val_list, - STATE(7223), 1, + STATE(7106), 1, aux_sym_val_table_repeat1, - [219154] = 7, + [217963] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6066), 1, + STATE(6030), 1, sym_comment, - STATE(6847), 1, + STATE(6740), 1, sym_val_list, - STATE(7225), 1, + STATE(7108), 1, aux_sym_val_table_repeat1, - [219176] = 7, + [217985] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6067), 1, + STATE(6031), 1, sym_comment, - STATE(6866), 1, + STATE(6759), 1, sym_val_list, - STATE(7229), 1, + STATE(7113), 1, aux_sym_val_table_repeat1, - [219198] = 7, + [218007] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6068), 1, + STATE(6032), 1, sym_comment, - STATE(6873), 1, + STATE(6764), 1, sym_val_list, - STATE(7231), 1, + STATE(7116), 1, aux_sym_val_table_repeat1, - [219220] = 7, + [218029] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6069), 1, + STATE(6033), 1, sym_comment, - STATE(6889), 1, + STATE(6781), 1, sym_val_list, - STATE(7236), 1, + STATE(7120), 1, aux_sym_val_table_repeat1, - [219242] = 7, + [218051] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6070), 1, + STATE(6034), 1, sym_comment, - STATE(6895), 1, + STATE(6787), 1, sym_val_list, - STATE(7238), 1, + STATE(7123), 1, aux_sym_val_table_repeat1, - [219264] = 7, + [218073] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6071), 1, + STATE(6035), 1, sym_comment, - STATE(6910), 1, + STATE(6799), 1, sym_val_list, - STATE(7242), 1, + STATE(7128), 1, aux_sym_val_table_repeat1, - [219286] = 7, + [218095] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6072), 1, + STATE(6036), 1, sym_comment, - STATE(6917), 1, + STATE(6803), 1, sym_val_list, - STATE(7244), 1, + STATE(7131), 1, aux_sym_val_table_repeat1, - [219308] = 7, + [218117] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6073), 1, + STATE(6037), 1, sym_comment, - STATE(6927), 1, + STATE(6815), 1, sym_val_list, - STATE(7248), 1, + STATE(7135), 1, aux_sym_val_table_repeat1, - [219330] = 7, + [218139] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6074), 1, + STATE(6038), 1, sym_comment, - STATE(6932), 1, + STATE(6821), 1, sym_val_list, - STATE(7251), 1, + STATE(7137), 1, aux_sym_val_table_repeat1, - [219352] = 7, + [218161] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6075), 1, + STATE(6039), 1, sym_comment, - STATE(6942), 1, + STATE(6829), 1, sym_val_list, - STATE(7255), 1, + STATE(7141), 1, aux_sym_val_table_repeat1, - [219374] = 7, + [218183] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6076), 1, + STATE(6040), 1, sym_comment, - STATE(6949), 1, + STATE(6835), 1, sym_val_list, - STATE(7257), 1, + STATE(7143), 1, aux_sym_val_table_repeat1, - [219396] = 7, + [218205] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6077), 1, + STATE(6041), 1, sym_comment, - STATE(6959), 1, + STATE(6848), 1, sym_val_list, - STATE(7262), 1, + STATE(7147), 1, aux_sym_val_table_repeat1, - [219418] = 7, + [218227] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6078), 1, + STATE(6042), 1, sym_comment, - STATE(6964), 1, + STATE(6853), 1, sym_val_list, - STATE(7264), 1, + STATE(7150), 1, aux_sym_val_table_repeat1, - [219440] = 7, + [218249] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6079), 1, + STATE(6043), 1, sym_comment, - STATE(6972), 1, + STATE(6864), 1, sym_val_list, - STATE(7268), 1, + STATE(7155), 1, aux_sym_val_table_repeat1, - [219462] = 7, + [218271] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(6080), 1, + STATE(6044), 1, sym_comment, - STATE(6978), 1, + STATE(6869), 1, sym_val_list, - STATE(7270), 1, + STATE(7158), 1, aux_sym_val_table_repeat1, - [219484] = 5, + [218293] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, - anon_sym_DOT, - ACTIONS(9711), 1, - anon_sym_QMARK2, - STATE(6081), 1, - sym_comment, - ACTIONS(1034), 3, - anon_sym_RBRACK, + ACTIONS(1981), 1, + anon_sym_RBRACE, + ACTIONS(1987), 1, sym__entry_separator, - sym__table_head_separator, - [219502] = 6, + ACTIONS(9022), 1, + anon_sym_DOT_DOT2, + STATE(6045), 1, + sym_comment, + ACTIONS(9024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218313] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4988), 1, + anon_sym_DASH, + STATE(6046), 1, + sym_comment, + ACTIONS(4986), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [218329] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7606), 1, + sym__newline, + ACTIONS(7608), 1, + sym__space, + STATE(4684), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5946), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6047), 1, + sym_comment, + STATE(7291), 1, + sym__flags_parenthesized, + [218351] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9713), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9716), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9719), 1, + ACTIONS(9600), 1, anon_sym_SQUOTE, - STATE(7273), 1, - sym_expr_interpolated, - STATE(6082), 2, + STATE(6048), 1, sym_comment, + STATE(6052), 1, aux_sym__inter_single_quotes_repeat1, - [219522] = 5, - ACTIONS(3), 1, + STATE(7176), 1, + sym_expr_interpolated, + [218373] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOT, - ACTIONS(9721), 1, - anon_sym_QMARK2, - STATE(6083), 1, + ACTIONS(8804), 1, + anon_sym_LBRACE, + STATE(6049), 1, sym_comment, - ACTIONS(1028), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [219540] = 6, + STATE(6812), 1, + sym_val_record, + ACTIONS(8977), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218391] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5970), 1, + sym__variable_name, + STATE(6050), 1, + sym_comment, + STATE(6483), 1, + sym__assignment_pattern, + [218413] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8246), 1, + ACTIONS(8211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8248), 1, + ACTIONS(8213), 1, aux_sym__immediate_decimal_token5, - STATE(6084), 1, + STATE(6051), 1, sym_comment, - STATE(7412), 1, + STATE(7319), 1, sym__immediate_decimal, - ACTIONS(8244), 2, + ACTIONS(8209), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [219560] = 6, - ACTIONS(247), 1, + [218433] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9602), 1, + anon_sym_SQUOTE, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6052), 1, + sym_comment, + STATE(7176), 1, + sym_expr_interpolated, + [218455] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9378), 1, + aux_sym__immediate_decimal_token2, + STATE(6053), 1, + sym_comment, + ACTIONS(1667), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 2, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(9723), 1, + sym__entry_separator, + [218473] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9414), 1, + anon_sym_LPAREN, + ACTIONS(9416), 1, + sym_unescaped_interpolated_content, + ACTIONS(9604), 1, + anon_sym_SQUOTE, + STATE(5940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6054), 1, + sym_comment, + STATE(7176), 1, + sym_expr_interpolated, + [218495] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9606), 1, anon_sym_DOT_DOT2, - STATE(6085), 1, + STATE(6055), 1, sym_comment, - ACTIONS(9725), 2, + ACTIONS(2025), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9608), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219580] = 5, + [218513] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9727), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(9610), 1, anon_sym_DOT_DOT2, - STATE(6086), 1, + STATE(6056), 1, sym_comment, - ACTIONS(2067), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9729), 2, + ACTIONS(9612), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219598] = 5, + [218533] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9731), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT2, - STATE(6087), 1, + STATE(6057), 1, sym_comment, - ACTIONS(1794), 2, + ACTIONS(1786), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9733), 2, + anon_sym_LBRACE, + ACTIONS(9616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219616] = 5, + [218551] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9735), 1, + ACTIONS(9618), 1, anon_sym_DOT_DOT2, - STATE(6088), 1, + STATE(6058), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1796), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9737), 2, + anon_sym_LBRACE, + ACTIONS(9620), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219634] = 5, + [218569] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9739), 1, + ACTIONS(9622), 1, anon_sym_DOT_DOT2, - STATE(6089), 1, + STATE(6059), 1, sym_comment, - ACTIONS(2041), 2, + ACTIONS(1997), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9741), 2, + anon_sym_LBRACE, + ACTIONS(9624), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219652] = 5, + [218587] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9743), 1, + ACTIONS(9626), 1, anon_sym_DOT_DOT2, - STATE(6090), 1, + STATE(6060), 1, sym_comment, - ACTIONS(2049), 2, + ACTIONS(2005), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9745), 2, + anon_sym_LBRACE, + ACTIONS(9628), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219670] = 5, + [218605] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9747), 1, + ACTIONS(9630), 1, anon_sym_DOT_DOT2, - STATE(6091), 1, + STATE(6061), 1, sym_comment, - ACTIONS(2057), 2, + ACTIONS(2013), 2, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9749), 2, + anon_sym_LBRACE, + ACTIONS(9632), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219688] = 7, + [218623] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, + ACTIONS(1645), 1, aux_sym_record_entry_token1, - ACTIONS(9669), 1, - anon_sym_use, - ACTIONS(9671), 1, - anon_sym_list, - ACTIONS(9673), 1, - anon_sym_hide, - ACTIONS(9675), 1, - anon_sym_new, - STATE(6092), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1371), 1, + sym_cell_path, + STATE(6062), 1, + sym_comment, + STATE(6538), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + [218645] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1669), 1, + sym__entry_separator, + ACTIONS(8419), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9634), 1, + anon_sym_DOT, + STATE(6063), 1, + sym_comment, + ACTIONS(1667), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218665] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5929), 1, + sym__variable_name, + STATE(6064), 1, + sym_comment, + STATE(6745), 1, + sym__assignment_pattern_parenthesized, + [218687] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(6065), 1, + sym_comment, + STATE(6880), 1, + sym_val_list, + STATE(6886), 1, + aux_sym_val_table_repeat1, + [218709] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8231), 1, + sym_identifier, + ACTIONS(9050), 1, + anon_sym_DOLLAR, + STATE(5366), 1, + sym_val_variable, + STATE(5952), 1, + sym__variable_name, + STATE(6066), 1, + sym_comment, + STATE(6708), 1, + sym__assignment_pattern, + [218731] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(8350), 1, + aux_sym_unquoted_token2, + STATE(6067), 1, + sym_comment, + ACTIONS(1572), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [218749] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1030), 1, + anon_sym_DOT, + ACTIONS(9636), 1, + anon_sym_QMARK2, + STATE(6068), 1, sym_comment, - [219710] = 7, + ACTIONS(1028), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [218767] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9414), 1, anon_sym_LPAREN, - ACTIONS(9545), 1, + ACTIONS(9416), 1, sym_unescaped_interpolated_content, - ACTIONS(9751), 1, + ACTIONS(9638), 1, anon_sym_SQUOTE, - STATE(6082), 1, + STATE(5992), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6093), 1, + STATE(6069), 1, sym_comment, - STATE(7273), 1, + STATE(7176), 1, sym_expr_interpolated, - [219732] = 5, + [218789] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7766), 1, + sym__entry_separator, + ACTIONS(7768), 1, + anon_sym_RBRACK, + STATE(6070), 1, + sym_comment, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [218808] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9642), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6071), 1, + sym_comment, + [218827] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9644), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6072), 1, + sym_comment, + [218846] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6073), 1, + sym_comment, + [218865] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9648), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6074), 1, + sym_comment, + [218884] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6075), 1, + sym_comment, + [218903] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7577), 1, + sym__entry_separator, + ACTIONS(7579), 1, + anon_sym_RBRACK, + STATE(6076), 1, + sym_comment, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [218922] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6094), 1, + STATE(6077), 1, sym_comment, - STATE(7052), 1, - sym_block, - ACTIONS(9026), 3, - ts_builtin_sym_end, + ACTIONS(9652), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [218935] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(9534), 1, + aux_sym__immediate_decimal_token2, + STATE(6078), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [218952] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9654), 1, + anon_sym_DQUOTE, + STATE(6079), 1, + sym_comment, + STATE(6085), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218969] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1518), 1, + aux_sym_cmd_identifier_token41, + STATE(6080), 1, + sym_comment, + ACTIONS(1520), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [218984] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6081), 1, + sym_comment, + ACTIONS(9658), 4, sym__newline, anon_sym_SEMI, - [219750] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218997] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9543), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - sym_unescaped_interpolated_content, - ACTIONS(9753), 1, - anon_sym_SQUOTE, - STATE(6007), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6095), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2245), 1, + anon_sym_RBRACK, + ACTIONS(2247), 1, + sym__entry_separator, + STATE(6082), 1, sym_comment, - STATE(7273), 1, - sym_expr_interpolated, - [219772] = 3, + [219016] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6096), 1, + STATE(6083), 1, sym_comment, - ACTIONS(9755), 4, + ACTIONS(9660), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219785] = 5, + [219029] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9757), 1, - anon_sym_DOT_DOT2, - STATE(6097), 1, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + STATE(6084), 1, sym_comment, - ACTIONS(9759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219802] = 4, + ACTIONS(2295), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [219044] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6098), 1, + ACTIONS(9662), 1, + anon_sym_DQUOTE, + STATE(6085), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1707), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [219817] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + ACTIONS(5895), 1, + anon_sym_PIPE, + STATE(6086), 1, + sym_comment, + ACTIONS(5754), 2, + anon_sym_if, + anon_sym_EQ_GT, + [219078] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1657), 1, + ts_builtin_sym_end, + STATE(261), 1, + aux_sym__block_body_repeat1, + STATE(6087), 1, + sym_comment, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [219095] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_use, + ACTIONS(9666), 1, + anon_sym_list, + ACTIONS(9668), 1, + anon_sym_hide, + ACTIONS(9670), 1, + anon_sym_new, + STATE(6088), 1, + sym_comment, + [219114] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9763), 1, + ACTIONS(9672), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6099), 1, + STATE(6089), 1, sym_comment, - [219836] = 3, + [219133] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6100), 1, + STATE(6090), 1, sym_comment, - ACTIONS(9765), 4, + ACTIONS(9674), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219849] = 6, + [219146] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9767), 1, + ACTIONS(9676), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6101), 1, + STATE(6091), 1, sym_comment, - [219868] = 6, + [219165] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9769), 1, + ACTIONS(9678), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6102), 1, + STATE(6092), 1, sym_comment, - [219887] = 6, + [219184] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9771), 1, + ACTIONS(9680), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6103), 1, + STATE(6093), 1, sym_comment, - [219906] = 6, + [219203] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9773), 1, + ACTIONS(9682), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6104), 1, + STATE(6094), 1, sym_comment, - [219925] = 6, + [219222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9775), 1, + ACTIONS(9684), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6105), 1, + STATE(6095), 1, sym_comment, - [219944] = 6, + [219241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9777), 1, + ACTIONS(9686), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6106), 1, + STATE(6096), 1, sym_comment, - [219963] = 6, + [219260] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9779), 1, + ACTIONS(9688), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6107), 1, + STATE(6097), 1, + sym_comment, + [219279] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9690), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6098), 1, sym_comment, - [219982] = 3, + [219298] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6108), 1, + STATE(6099), 1, sym_comment, - ACTIONS(9781), 4, + ACTIONS(9692), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219995] = 6, + [219311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2160), 1, - anon_sym_RBRACE, - ACTIONS(2162), 1, + ACTIONS(5567), 1, sym__entry_separator, - STATE(6109), 1, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9694), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6100), 1, sym_comment, - [220014] = 6, + [219330] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9669), 1, - anon_sym_use, - ACTIONS(9671), 1, - anon_sym_list, - ACTIONS(9673), 1, - anon_sym_hide, - ACTIONS(9675), 1, - anon_sym_new, - STATE(6110), 1, + STATE(6101), 1, sym_comment, - [220033] = 3, - ACTIONS(247), 1, + ACTIONS(9696), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [219343] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6111), 1, + ACTIONS(9698), 1, + anon_sym_DQUOTE, + STATE(6102), 1, sym_comment, - ACTIONS(6124), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [220046] = 4, + STATE(6107), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219360] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6112), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9700), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6103), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, + [219379] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, sym__entry_separator, - [220061] = 3, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6104), 1, + sym_comment, + [219398] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6113), 1, + STATE(6105), 1, sym_comment, - ACTIONS(9783), 4, + ACTIONS(9704), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220074] = 5, + [219411] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(9706), 1, + anon_sym_EQ, + ACTIONS(9708), 1, + anon_sym_COLON, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(6106), 1, + sym_comment, + [219430] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9785), 1, + ACTIONS(9710), 1, anon_sym_DQUOTE, - STATE(6114), 1, + STATE(6107), 1, sym_comment, - STATE(6174), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [220091] = 6, - ACTIONS(3), 1, + [219447] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4735), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(4737), 1, - sym__space, - ACTIONS(9789), 1, - sym_long_flag_identifier, - ACTIONS(9791), 1, - anon_sym_EQ2, - STATE(6115), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(4735), 1, + sym_block, + STATE(6108), 1, + sym_comment, + [219466] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, + sym__entry_separator, + STATE(6109), 1, sym_comment, - [220110] = 3, + [219485] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6116), 1, + STATE(6110), 1, sym_comment, - ACTIONS(6126), 4, - ts_builtin_sym_end, + ACTIONS(9712), 4, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [220123] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219498] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2241), 1, + anon_sym_PIPE, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(6111), 1, + sym_comment, + ACTIONS(2237), 2, + anon_sym_if, + anon_sym_EQ_GT, + [219515] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6117), 1, + STATE(6112), 1, sym_comment, - ACTIONS(9793), 4, + ACTIONS(9714), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220136] = 6, + [219528] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9716), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6113), 1, + sym_comment, + [219547] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9718), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6114), 1, + sym_comment, + [219566] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9720), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6115), 1, + sym_comment, + [219585] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9722), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6116), 1, + sym_comment, + [219604] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9724), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6117), 1, + sym_comment, + [219623] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_RBRACE, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(1806), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9726), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6118), 1, sym_comment, - [220155] = 4, - ACTIONS(247), 1, + [219642] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9795), 1, - anon_sym_QMARK2, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9728), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6119), 1, sym_comment, - ACTIONS(1036), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [220170] = 5, + [219661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9730), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6120), 1, sym_comment, - ACTIONS(2243), 2, - anon_sym_if, - anon_sym_EQ_GT, - [220187] = 3, - ACTIONS(247), 1, + [219680] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6121), 1, sym_comment, - ACTIONS(9797), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2253), 2, anon_sym_RBRACE, - [220200] = 3, + aux_sym__unquoted_in_record_token4, + ACTIONS(2255), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [219695] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6122), 1, sym_comment, - ACTIONS(9797), 4, + ACTIONS(9732), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220213] = 3, + [219708] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6123), 1, sym_comment, - ACTIONS(9799), 4, + ACTIONS(9734), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [220226] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4747), 1, - sym__newline, - ACTIONS(4749), 1, - sym__space, - ACTIONS(9801), 1, - anon_sym_EQ2, - ACTIONS(9803), 1, - sym_short_flag_identifier, - STATE(6124), 1, - sym_comment, - [220245] = 3, + [219721] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6125), 1, + STATE(6124), 1, sym_comment, - ACTIONS(9793), 4, + ACTIONS(9736), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220258] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - sym__entry_separator, - STATE(6126), 1, - sym_comment, - ACTIONS(2443), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [220273] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(5690), 1, - sym_parameter_parens, - STATE(5697), 1, - sym_parameter_bracks, - STATE(6127), 1, - sym_comment, - [220292] = 5, + [219734] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9809), 1, + ACTIONS(9738), 1, anon_sym_DQUOTE, - STATE(6128), 1, + STATE(6125), 1, sym_comment, - STATE(6133), 1, + STATE(6130), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [220309] = 4, + [219751] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - STATE(6129), 1, + ACTIONS(1572), 1, + aux_sym_record_entry_token1, + ACTIONS(9740), 1, + aux_sym_cmd_identifier_token41, + STATE(6126), 1, sym_comment, - ACTIONS(1645), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220324] = 5, + ACTIONS(9742), 2, + sym_filesize_unit, + sym_duration_unit, + [219768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - ACTIONS(2253), 1, + ACTIONS(1052), 1, + anon_sym_DOT, + STATE(6127), 1, + sym_comment, + ACTIONS(1050), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [219783] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, anon_sym_PIPE, - STATE(6130), 1, + STATE(6128), 1, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2253), 3, anon_sym_if, anon_sym_EQ_GT, - [220341] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_DASH, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - STATE(6131), 1, - sym_comment, - ACTIONS(1587), 2, - sym_identifier, - anon_sym_DASH_DASH, - [220358] = 6, + aux_sym_unquoted_token4, + [219798] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3065), 1, - sym_parameter_parens, - STATE(3066), 1, - sym_parameter_bracks, - STATE(6132), 1, + STATE(6129), 1, sym_comment, - [220377] = 5, + ACTIONS(9744), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219811] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9811), 1, + ACTIONS(9746), 1, anon_sym_DQUOTE, - STATE(6133), 1, + STATE(6130), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [220394] = 3, + [219828] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6134), 1, + ACTIONS(1653), 1, + aux_sym_cmd_identifier_token41, + STATE(6131), 1, sym_comment, - ACTIONS(9813), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [220407] = 3, + ACTIONS(1655), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [219843] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6135), 1, + STATE(6132), 1, sym_comment, - ACTIONS(9815), 4, + ACTIONS(9748), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220420] = 4, - ACTIONS(247), 1, + [219856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_QMARK2, - STATE(6136), 1, - sym_comment, - ACTIONS(1030), 3, + ACTIONS(1056), 1, anon_sym_DOT, - aux_sym_record_entry_token1, + STATE(6133), 1, + sym_comment, + ACTIONS(1054), 3, + anon_sym_RBRACK, + sym__entry_separator, sym__table_head_separator, - [220435] = 3, - ACTIONS(247), 1, + [219871] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6137), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9750), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6134), 1, sym_comment, - ACTIONS(9819), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220448] = 3, + [219890] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2247), 1, + anon_sym_PIPE, + STATE(6135), 1, + sym_comment, + ACTIONS(2245), 2, + anon_sym_if, + anon_sym_EQ_GT, + [219907] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6138), 1, + STATE(6136), 1, sym_comment, - ACTIONS(9815), 4, + ACTIONS(9752), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220461] = 6, + [219920] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9821), 1, + ACTIONS(9754), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6139), 1, + STATE(6137), 1, sym_comment, - [220480] = 6, + [219939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9823), 1, + ACTIONS(9756), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6140), 1, + STATE(6138), 1, sym_comment, - [220499] = 6, + [219958] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9825), 1, + ACTIONS(9758), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6141), 1, + STATE(6139), 1, sym_comment, - [220518] = 6, + [219977] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9827), 1, + ACTIONS(9760), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6142), 1, + STATE(6140), 1, sym_comment, - [220537] = 6, + [219996] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9829), 1, + ACTIONS(9762), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6143), 1, + STATE(6141), 1, sym_comment, - [220556] = 6, + [220015] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9831), 1, + ACTIONS(9764), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6144), 1, + STATE(6142), 1, sym_comment, - [220575] = 6, + [220034] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9833), 1, + ACTIONS(9766), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6145), 1, + STATE(6143), 1, sym_comment, - [220594] = 6, + [220053] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9835), 1, + ACTIONS(9768), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, + STATE(6144), 1, + sym_comment, + [220072] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6145), 1, + sym_comment, + ACTIONS(9752), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220085] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6146), 1, sym_comment, - [220613] = 3, + ACTIONS(9770), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220098] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6147), 1, sym_comment, - ACTIONS(9837), 4, + ACTIONS(9772), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220111] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6148), 1, + sym_comment, + ACTIONS(9774), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [220626] = 5, + [220124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9839), 1, + ACTIONS(9776), 1, anon_sym_DQUOTE, - STATE(6148), 1, + STATE(6149), 1, sym_comment, - STATE(6152), 1, + STATE(6154), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [220643] = 5, + [220141] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1023), 1, - aux_sym_record_entry_token1, - ACTIONS(9841), 1, - anon_sym_DOT, - STATE(6721), 1, - sym_path, - STATE(6149), 2, + STATE(6150), 1, sym_comment, - aux_sym_cell_path_repeat1, - [220660] = 3, + ACTIONS(9772), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220154] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6150), 1, + STATE(6151), 1, sym_comment, - ACTIONS(6206), 4, + ACTIONS(6190), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [220673] = 3, + anon_sym_LBRACE, + [220167] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6151), 1, + STATE(6152), 1, sym_comment, - ACTIONS(6208), 4, - ts_builtin_sym_end, + ACTIONS(9778), 4, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [220686] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220180] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9780), 1, + anon_sym_LBRACK, + ACTIONS(9782), 1, + anon_sym_LPAREN, + STATE(5920), 1, + sym_parameter_bracks, + STATE(5982), 1, + sym_parameter_parens, + STATE(6153), 1, + sym_comment, + [220199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9844), 1, + ACTIONS(9784), 1, anon_sym_DQUOTE, - STATE(6152), 1, + STATE(6154), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [220703] = 6, + [220216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7568), 1, - sym__entry_separator, - ACTIONS(7570), 1, - anon_sym_RBRACK, - STATE(6153), 1, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(6155), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - [220722] = 3, - ACTIONS(247), 1, + ACTIONS(9788), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [220231] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6154), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9790), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6156), 1, sym_comment, - ACTIONS(9846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220735] = 3, + [220250] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6155), 1, + STATE(6157), 1, sym_comment, - ACTIONS(9797), 4, + ACTIONS(6192), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220748] = 3, + anon_sym_LBRACE, + [220263] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6156), 1, + STATE(6158), 1, sym_comment, - ACTIONS(9797), 4, + ACTIONS(9752), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220761] = 6, + [220276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9848), 1, + ACTIONS(9792), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6157), 1, + STATE(6159), 1, sym_comment, - [220780] = 6, + [220295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9850), 1, + ACTIONS(9794), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6158), 1, + STATE(6160), 1, sym_comment, - [220799] = 6, + [220314] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9852), 1, + ACTIONS(9796), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6159), 1, + STATE(6161), 1, sym_comment, - [220818] = 6, + [220333] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9854), 1, + ACTIONS(9798), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6160), 1, + STATE(6162), 1, sym_comment, - [220837] = 6, + [220352] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9856), 1, + ACTIONS(9800), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6161), 1, + STATE(6163), 1, sym_comment, - [220856] = 6, + [220371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9858), 1, + ACTIONS(9802), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6162), 1, + STATE(6164), 1, sym_comment, - [220875] = 6, + [220390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9860), 1, + ACTIONS(9804), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6163), 1, + STATE(6165), 1, sym_comment, - [220894] = 6, + [220409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9862), 1, + ACTIONS(9806), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6164), 1, + STATE(6166), 1, sym_comment, - [220913] = 3, + [220428] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6165), 1, + STATE(6167), 1, sym_comment, - ACTIONS(9864), 4, + ACTIONS(9752), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220926] = 3, + [220441] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6166), 1, + STATE(6168), 1, sym_comment, - ACTIONS(9866), 4, + ACTIONS(9808), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [220939] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6167), 1, - sym_comment, - ACTIONS(9868), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220952] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9870), 1, - anon_sym_DQUOTE, - STATE(6168), 1, - sym_comment, - STATE(6172), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220969] = 5, + [220454] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9872), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, STATE(6169), 1, sym_comment, - STATE(6197), 1, + STATE(6172), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [220986] = 3, + [220471] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6170), 1, sym_comment, - ACTIONS(9874), 4, + ACTIONS(9812), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220999] = 6, - ACTIONS(3), 1, + [220484] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9876), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6171), 1, sym_comment, - [221018] = 5, + ACTIONS(9814), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220497] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9878), 1, + ACTIONS(9816), 1, anon_sym_DQUOTE, STATE(6172), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [221035] = 6, + [220514] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(4712), 1, - sym_block, STATE(6173), 1, sym_comment, - [221054] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9880), 1, - anon_sym_DQUOTE, - STATE(6174), 1, - sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [221071] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6175), 1, - sym_comment, - ACTIONS(9882), 4, + ACTIONS(9818), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221084] = 4, + [220527] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6176), 1, + STATE(6174), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1659), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token2, - ACTIONS(1707), 2, + ACTIONS(1661), 2, anon_sym_LPAREN2, sym__entry_separator, - [221099] = 6, + [220542] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(2586), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(749), 1, aux_sym_shebang_repeat1, - STATE(4718), 1, + STATE(4661), 1, + sym_block, + STATE(6175), 1, + sym_comment, + [220561] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4654), 1, sym_block, + STATE(6108), 1, + aux_sym_shebang_repeat1, + STATE(6176), 1, + sym_comment, + [220580] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6177), 1, sym_comment, - [221118] = 6, - ACTIONS(3), 1, + ACTIONS(9820), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220593] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9884), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8595), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9822), 1, + anon_sym_DOT, STATE(6178), 1, sym_comment, - [221137] = 6, + ACTIONS(1669), 2, + sym__newline, + anon_sym_LBRACE, + [220610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9886), 1, + ACTIONS(9824), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6179), 1, sym_comment, - [221156] = 6, + [220629] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9888), 1, + ACTIONS(9826), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6180), 1, sym_comment, - [221175] = 6, + [220648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9890), 1, + ACTIONS(9828), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6181), 1, sym_comment, - [221194] = 6, + [220667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9892), 1, + ACTIONS(9830), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6182), 1, sym_comment, - [221213] = 6, + [220686] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9894), 1, + ACTIONS(9832), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6183), 1, sym_comment, - [221232] = 6, + [220705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9896), 1, + ACTIONS(9834), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6184), 1, sym_comment, - [221251] = 6, + [220724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9898), 1, + ACTIONS(9836), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6185), 1, sym_comment, - [221270] = 6, - ACTIONS(247), 1, + [220743] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4723), 1, - sym_block, - STATE(6173), 1, - aux_sym_shebang_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9838), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6186), 1, sym_comment, - [221289] = 3, + [220762] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(9840), 1, + anon_sym_DOT_DOT2, STATE(6187), 1, sym_comment, - ACTIONS(9882), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221302] = 3, + ACTIONS(9842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220779] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6188), 1, sym_comment, - ACTIONS(9900), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221315] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6189), 1, - sym_comment, - ACTIONS(9902), 4, + ACTIONS(9844), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [221328] = 5, + [220792] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2025), 1, + anon_sym_LBRACE, + ACTIONS(9846), 1, + anon_sym_DOT_DOT2, + STATE(6189), 1, + sym_comment, + ACTIONS(9848), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9904), 1, + ACTIONS(9850), 1, anon_sym_DQUOTE, STATE(6190), 1, sym_comment, - STATE(6195), 1, + STATE(6194), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [221345] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_RBRACE, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2297), 1, - sym__entry_separator, - ACTIONS(2299), 1, - aux_sym__unquoted_in_record_token4, - STATE(6191), 1, - sym_comment, - [221364] = 5, + [220826] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - ACTIONS(9906), 1, - aux_sym__immediate_decimal_token2, - STATE(6192), 1, + STATE(6191), 1, sym_comment, - ACTIONS(1707), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [221381] = 4, + ACTIONS(9852), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220839] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1517), 1, + ACTIONS(1540), 1, aux_sym_cmd_identifier_token41, - STATE(6193), 1, + STATE(6192), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1542), 3, sym_filesize_unit, sym_duration_unit, aux_sym_record_entry_token1, - [221396] = 5, + [220854] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT_DOT2, - ACTIONS(9908), 1, - aux_sym_ctrl_match_token1, - STATE(6194), 1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + STATE(6193), 1, sym_comment, - ACTIONS(6484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221413] = 5, + ACTIONS(1669), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9910), 1, + ACTIONS(9854), 1, anon_sym_DQUOTE, - STATE(6195), 1, + STATE(6194), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [221430] = 6, - ACTIONS(3), 1, + [220886] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9912), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6196), 1, + STATE(6195), 1, sym_comment, - [221449] = 5, - ACTIONS(3), 1, + ACTIONS(9856), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220899] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9914), 1, - anon_sym_DQUOTE, - STATE(6197), 1, + STATE(6196), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [221466] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2218), 1, + ACTIONS(9858), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - sym__entry_separator, - STATE(6198), 1, - sym_comment, - [221485] = 3, + [220912] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6199), 1, + STATE(6197), 1, sym_comment, - ACTIONS(9916), 4, + ACTIONS(9858), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221498] = 3, + [220925] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6200), 1, + STATE(6198), 1, sym_comment, - ACTIONS(9918), 4, + ACTIONS(9860), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221511] = 6, + [220938] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(6199), 1, + sym_comment, + ACTIONS(2229), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [220953] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(9862), 1, + anon_sym_DOT_DOT2, + STATE(6200), 1, + sym_comment, + ACTIONS(9864), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220970] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9866), 1, anon_sym_LPAREN, - STATE(5875), 1, - sym_parameter_parens, - STATE(5881), 1, - sym_parameter_bracks, STATE(6201), 1, sym_comment, - [221530] = 3, - ACTIONS(247), 1, + ACTIONS(9868), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [220985] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9870), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6202), 1, sym_comment, - ACTIONS(9918), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221543] = 6, + [221004] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9920), 1, + ACTIONS(9872), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6203), 1, sym_comment, - [221562] = 6, + [221023] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9922), 1, + ACTIONS(9874), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6204), 1, sym_comment, - [221581] = 6, + [221042] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9924), 1, + ACTIONS(9876), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6205), 1, sym_comment, - [221600] = 6, + [221061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9926), 1, + ACTIONS(9878), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6206), 1, sym_comment, - [221619] = 6, + [221080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9928), 1, + ACTIONS(9880), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6207), 1, sym_comment, - [221638] = 6, + [221099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9930), 1, + ACTIONS(9882), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6208), 1, sym_comment, - [221657] = 6, + [221118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9932), 1, + ACTIONS(9884), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6209), 1, sym_comment, - [221676] = 6, + [221137] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9934), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4808), 1, + sym__newline, + ACTIONS(4810), 1, + sym__space, + ACTIONS(9886), 1, + sym_long_flag_identifier, + ACTIONS(9888), 1, + anon_sym_EQ2, STATE(6210), 1, sym_comment, - [221695] = 5, + [221156] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9936), 1, - anon_sym_DOT_DOT2, STATE(6211), 1, sym_comment, - ACTIONS(9938), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221712] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6212), 1, - sym_comment, - ACTIONS(9940), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221725] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6213), 1, - sym_comment, - ACTIONS(9942), 4, + ACTIONS(9890), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [221738] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(9944), 1, - anon_sym_EQ, - ACTIONS(9946), 1, - anon_sym_COLON, - STATE(690), 1, - aux_sym_shebang_repeat1, - STATE(6214), 1, - sym_comment, - [221757] = 5, + [221169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9948), 1, + ACTIONS(9892), 1, anon_sym_DQUOTE, - STATE(6215), 1, + STATE(6212), 1, sym_comment, - STATE(6218), 1, + STATE(6216), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [221774] = 6, + [221186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9950), 1, + ACTIONS(9894), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6216), 1, + STATE(6213), 1, sym_comment, - [221793] = 6, + [221205] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, + STATE(6214), 1, + sym_comment, + ACTIONS(2301), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [221220] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9952), 1, + ACTIONS(1070), 1, anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6217), 1, + ACTIONS(1072), 1, + sym__entry_separator, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym__unquoted_in_list_token4, + STATE(6215), 1, sym_comment, - [221812] = 5, + [221239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9954), 1, + ACTIONS(9896), 1, anon_sym_DQUOTE, - STATE(6218), 1, + STATE(6216), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [221829] = 6, + [221256] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + STATE(6217), 1, + sym_comment, + ACTIONS(1667), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1669), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9761), 1, + [221271] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9780), 1, anon_sym_LBRACK, - ACTIONS(9956), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9782), 1, + anon_sym_LPAREN, + STATE(5930), 1, + sym_parameter_parens, + STATE(5942), 1, + sym_parameter_bracks, + STATE(6218), 1, + sym_comment, + [221290] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6219), 1, sym_comment, - [221848] = 6, - ACTIONS(3), 1, + ACTIONS(9898), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221303] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9958), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, + ACTIONS(9468), 1, + aux_sym__immediate_decimal_token2, STATE(6220), 1, sym_comment, - [221867] = 6, + ACTIONS(1669), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [221320] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9960), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4781), 1, + sym__newline, + ACTIONS(4783), 1, + sym__space, + ACTIONS(9900), 1, + anon_sym_EQ2, + ACTIONS(9902), 1, + sym_short_flag_identifier, STATE(6221), 1, sym_comment, - [221886] = 6, + [221339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9962), 1, + ACTIONS(9904), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6222), 1, sym_comment, - [221905] = 6, + [221358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9964), 1, + ACTIONS(9906), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6223), 1, sym_comment, - [221924] = 6, + [221377] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9966), 1, + ACTIONS(9908), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6224), 1, sym_comment, - [221943] = 6, + [221396] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9968), 1, + ACTIONS(9910), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6225), 1, sym_comment, - [221962] = 6, + [221415] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9970), 1, + ACTIONS(9912), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6226), 1, sym_comment, - [221981] = 6, + [221434] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9972), 1, + ACTIONS(9914), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6227), 1, sym_comment, - [222000] = 6, - ACTIONS(247), 1, + [221453] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9974), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9976), 1, - anon_sym_LPAREN, - STATE(5905), 1, - sym_parameter_parens, - STATE(5906), 1, - sym_parameter_bracks, + ACTIONS(9916), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6228), 1, sym_comment, - [222019] = 5, - ACTIONS(247), 1, + [221472] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, - aux_sym_record_entry_token1, - ACTIONS(9978), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9918), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6229), 1, sym_comment, - ACTIONS(9980), 2, - sym_filesize_unit, - sym_duration_unit, - [222036] = 3, + [221491] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6230), 1, sym_comment, - ACTIONS(9982), 4, + ACTIONS(9920), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221504] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6231), 1, + sym_comment, + ACTIONS(9922), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222049] = 5, + [221517] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9984), 1, + ACTIONS(9924), 1, anon_sym_DQUOTE, - STATE(6231), 1, + STATE(6232), 1, sym_comment, STATE(6236), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [222066] = 6, + [221534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9986), 1, + ACTIONS(9926), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6232), 1, + STATE(6233), 1, sym_comment, - [222085] = 4, + [221553] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6233), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9928), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6234), 1, sym_comment, - ACTIONS(1755), 2, + [221572] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9930), 1, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6235), 1, + sym_comment, + [221591] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9932), 1, + anon_sym_DQUOTE, + STATE(6236), 1, + sym_comment, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221608] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6237), 1, + sym_comment, + ACTIONS(9934), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221621] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6238), 1, + sym_comment, + ACTIONS(9936), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221634] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6239), 1, + sym_comment, + ACTIONS(9938), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221647] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6240), 1, + sym_comment, + ACTIONS(9940), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221660] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9942), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6241), 1, + sym_comment, + [221679] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9944), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6242), 1, + sym_comment, + [221698] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9946), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6243), 1, + sym_comment, + [221717] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9948), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6244), 1, + sym_comment, + [221736] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9950), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6245), 1, + sym_comment, + [221755] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9952), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6246), 1, + sym_comment, + [221774] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9954), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6247), 1, + sym_comment, + [221793] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(9956), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6248), 1, + sym_comment, + [221812] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6249), 1, + sym_comment, + ACTIONS(1659), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1661), 2, anon_sym_LPAREN2, sym__entry_separator, - [222100] = 4, + [221827] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(6250), 1, + sym_comment, + ACTIONS(2237), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [221842] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - STATE(6234), 1, + STATE(6251), 1, sym_comment, - ACTIONS(1633), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222115] = 4, - ACTIONS(247), 1, + ACTIONS(9958), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [221855] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, - STATE(6235), 1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + STATE(6252), 1, sym_comment, - ACTIONS(2228), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222130] = 5, + ACTIONS(2245), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [221870] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9988), 1, + ACTIONS(9960), 1, anon_sym_DQUOTE, - STATE(6236), 1, + STATE(6253), 1, sym_comment, - STATE(6592), 1, + STATE(6256), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [222147] = 6, - ACTIONS(3), 1, + [221887] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(9990), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6237), 1, + ACTIONS(6472), 1, + anon_sym_DOT_DOT2, + ACTIONS(9962), 1, + anon_sym_LBRACE, + STATE(6254), 1, sym_comment, - [222166] = 5, + ACTIONS(6474), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221904] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9992), 1, + ACTIONS(9964), 1, anon_sym_RPAREN, - STATE(210), 1, + STATE(234), 1, aux_sym__block_body_repeat1, - STATE(6238), 1, + STATE(6255), 1, sym_comment, ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - [222183] = 5, + [221921] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9966), 1, + anon_sym_DQUOTE, + STATE(6256), 1, + sym_comment, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221938] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9992), 1, - anon_sym_RPAREN, - STATE(6239), 1, + STATE(6257), 1, sym_comment, - STATE(6560), 1, - aux_sym__block_body_repeat1, - ACTIONS(145), 2, + ACTIONS(9938), 4, sym__newline, anon_sym_SEMI, - [222200] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221951] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1497), 1, - aux_sym_cmd_identifier_token41, - STATE(6240), 1, + STATE(6258), 1, sym_comment, - ACTIONS(1499), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [222215] = 3, + ACTIONS(9968), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221964] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6241), 1, + STATE(6259), 1, sym_comment, - ACTIONS(9994), 4, + ACTIONS(9970), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222228] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_RBRACE, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - sym__entry_separator, - ACTIONS(2230), 1, - aux_sym__unquoted_in_record_token2, - STATE(6242), 1, - sym_comment, - [222247] = 3, + [221977] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6243), 1, + STATE(6260), 1, sym_comment, - ACTIONS(9996), 4, + ACTIONS(9972), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222260] = 6, + [221990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9998), 1, + ACTIONS(9974), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6244), 1, + STATE(6261), 1, sym_comment, - [222279] = 6, + [222009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10000), 1, + ACTIONS(9976), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6245), 1, + STATE(6262), 1, sym_comment, - [222298] = 6, + [222028] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10002), 1, + ACTIONS(9978), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6246), 1, + STATE(6263), 1, sym_comment, - [222317] = 6, + [222047] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10004), 1, + ACTIONS(9980), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6247), 1, + STATE(6264), 1, sym_comment, - [222336] = 6, + [222066] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10006), 1, + ACTIONS(9982), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6248), 1, + STATE(6265), 1, sym_comment, - [222355] = 6, + [222085] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10008), 1, + ACTIONS(9984), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6249), 1, + STATE(6266), 1, sym_comment, - [222374] = 6, + [222104] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10010), 1, + ACTIONS(9986), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6250), 1, + STATE(6267), 1, sym_comment, - [222393] = 6, + [222123] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10012), 1, + ACTIONS(9988), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6251), 1, + STATE(6268), 1, sym_comment, - [222412] = 3, + [222142] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6252), 1, + STATE(6269), 1, sym_comment, - ACTIONS(10014), 4, + ACTIONS(9990), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222425] = 3, + [222155] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6270), 1, + sym_comment, + ACTIONS(1721), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [222170] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6253), 1, + STATE(6271), 1, sym_comment, - ACTIONS(10016), 4, + ACTIONS(9992), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222438] = 3, + [222183] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6254), 1, + STATE(6272), 1, sym_comment, - ACTIONS(10018), 4, + ACTIONS(9990), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222451] = 5, + [222196] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10020), 1, + ACTIONS(9994), 1, anon_sym_DQUOTE, - STATE(6255), 1, + STATE(6273), 1, sym_comment, - STATE(6258), 1, + STATE(6275), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [222468] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6256), 1, - sym_comment, - [222487] = 3, + [222213] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6257), 1, + STATE(6274), 1, sym_comment, - ACTIONS(10018), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222500] = 5, + ACTIONS(9996), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [222226] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10024), 1, + ACTIONS(9998), 1, anon_sym_DQUOTE, - STATE(6258), 1, + STATE(6275), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [222517] = 6, + [222243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2287), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10026), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6259), 1, - sym_comment, - [222536] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6260), 1, + STATE(6276), 1, sym_comment, - ACTIONS(10028), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222549] = 3, + [222262] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6261), 1, + STATE(6277), 1, sym_comment, - ACTIONS(10030), 4, + ACTIONS(10000), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222562] = 6, + [222275] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10032), 1, + ACTIONS(10002), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6262), 1, + STATE(6278), 1, sym_comment, - [222581] = 6, + [222294] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10034), 1, + ACTIONS(10004), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6263), 1, + STATE(6279), 1, sym_comment, - [222600] = 6, + [222313] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10036), 1, + ACTIONS(10006), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6264), 1, + STATE(6280), 1, sym_comment, - [222619] = 6, + [222332] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10038), 1, + ACTIONS(10008), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6265), 1, + STATE(6281), 1, sym_comment, - [222638] = 6, + [222351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10040), 1, + ACTIONS(10010), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6266), 1, + STATE(6282), 1, sym_comment, - [222657] = 6, + [222370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10042), 1, + ACTIONS(10012), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6267), 1, + STATE(6283), 1, sym_comment, - [222676] = 6, + [222389] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10044), 1, + ACTIONS(10014), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6268), 1, + STATE(6284), 1, sym_comment, - [222695] = 6, + [222408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10046), 1, + ACTIONS(10016), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6269), 1, - sym_comment, - [222714] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - STATE(6270), 1, - sym_comment, - ACTIONS(1707), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222729] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4702), 1, - sym_block, - STATE(6177), 1, - aux_sym_shebang_repeat1, - STATE(6271), 1, + STATE(6285), 1, sym_comment, - [222748] = 3, - ACTIONS(247), 1, + [222427] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6272), 1, - sym_comment, - ACTIONS(10048), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1788), 1, anon_sym_RBRACE, - [222761] = 3, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__entry_separator, + ACTIONS(1798), 1, + aux_sym__unquoted_in_record_token2, + STATE(6286), 1, + sym_comment, + [222446] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6273), 1, + STATE(6287), 1, sym_comment, - ACTIONS(10050), 4, + ACTIONS(10018), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222774] = 5, + [222459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10052), 1, + ACTIONS(10020), 1, anon_sym_DQUOTE, - STATE(6274), 1, + STATE(6288), 1, sym_comment, - STATE(6276), 1, + STATE(6290), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [222791] = 4, - ACTIONS(3), 1, + [222476] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1078), 1, - sym__entry_separator, - STATE(6275), 1, + STATE(6289), 1, sym_comment, - ACTIONS(1076), 3, - anon_sym_RBRACK, + ACTIONS(10022), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym__, - [222806] = 5, + [222489] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10054), 1, + ACTIONS(10024), 1, anon_sym_DQUOTE, - STATE(6276), 1, + STATE(6290), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [222823] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(6277), 1, - sym_comment, - ACTIONS(1757), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222838] = 4, + [222506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2386), 1, - sym__entry_separator, - STATE(6278), 1, + STATE(6291), 1, sym_comment, - ACTIONS(2384), 3, - anon_sym_RBRACK, + ACTIONS(1738), 2, anon_sym_RBRACE, - anon_sym__, - [222853] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8972), 1, - aux_sym_ctrl_match_token1, - STATE(1608), 1, - sym_block, - STATE(1609), 1, - sym_val_closure, - STATE(4773), 1, - sym__blosure, - STATE(6279), 1, - sym_comment, - [222872] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_RBRACK, - ACTIONS(2295), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1740), 2, anon_sym_LPAREN2, - ACTIONS(2297), 1, sym__entry_separator, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(6280), 1, - sym_comment, - [222891] = 6, - ACTIONS(247), 1, + [222521] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(4682), 1, - sym_block, - STATE(6281), 1, + STATE(6292), 1, sym_comment, - [222910] = 6, + ACTIONS(1046), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1048), 2, + anon_sym_DOT, + sym__entry_separator, + [222536] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10056), 1, + ACTIONS(10026), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6282), 1, + STATE(6293), 1, sym_comment, - [222929] = 6, + [222555] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10058), 1, + ACTIONS(10028), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6283), 1, + STATE(6294), 1, sym_comment, - [222948] = 6, + [222574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10060), 1, + ACTIONS(10030), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6284), 1, + STATE(6295), 1, sym_comment, - [222967] = 6, + [222593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10062), 1, + ACTIONS(10032), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6285), 1, + STATE(6296), 1, sym_comment, - [222986] = 6, + [222612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10064), 1, + ACTIONS(10034), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6286), 1, + STATE(6297), 1, sym_comment, - [223005] = 6, + [222631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10066), 1, + ACTIONS(10036), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6287), 1, + STATE(6298), 1, sym_comment, - [223024] = 6, + [222650] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10068), 1, + ACTIONS(10038), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6288), 1, + STATE(6299), 1, sym_comment, - [223043] = 6, + [222669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10070), 1, + ACTIONS(10040), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6289), 1, + STATE(6300), 1, sym_comment, - [223062] = 3, + [222688] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6290), 1, + STATE(6301), 1, sym_comment, - ACTIONS(10072), 4, + ACTIONS(10042), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222701] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6302), 1, + sym_comment, + ACTIONS(10044), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223075] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - STATE(6291), 1, - sym_comment, - ACTIONS(1076), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [223090] = 5, + [222714] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10074), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - STATE(6292), 1, + STATE(6303), 1, sym_comment, - STATE(6295), 1, + STATE(6304), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223107] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4612), 1, - sym_block, - STATE(6281), 1, - aux_sym_shebang_repeat1, - STATE(6293), 1, - sym_comment, - [223126] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6294), 1, - sym_comment, - ACTIONS(10076), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223139] = 5, + [222731] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10078), 1, + ACTIONS(10048), 1, anon_sym_DQUOTE, - STATE(6295), 1, + STATE(6304), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223156] = 4, + [222748] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(6296), 1, - sym_comment, - ACTIONS(2162), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [223171] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2390), 1, - sym__entry_separator, - STATE(6297), 1, + STATE(6305), 1, sym_comment, - ACTIONS(2388), 3, - anon_sym_RBRACK, + ACTIONS(10000), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym__, - [223186] = 6, - ACTIONS(3), 1, + [222761] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_RBRACK, - ACTIONS(1078), 1, - sym__entry_separator, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym__unquoted_in_list_token4, - STATE(6298), 1, + ACTIONS(10050), 1, + anon_sym_LBRACE, + STATE(1952), 1, + sym_block, + STATE(1960), 1, + sym_val_closure, + STATE(5116), 1, + sym__blosure, + STATE(6306), 1, sym_comment, - [223205] = 6, + [222780] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10080), 1, + ACTIONS(10052), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6299), 1, + STATE(6307), 1, sym_comment, - [223224] = 6, + [222799] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10082), 1, + ACTIONS(10054), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6300), 1, + STATE(6308), 1, sym_comment, - [223243] = 6, + [222818] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10084), 1, + ACTIONS(10056), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6301), 1, + STATE(6309), 1, sym_comment, - [223262] = 6, + [222837] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10086), 1, + ACTIONS(10058), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6302), 1, + STATE(6310), 1, sym_comment, - [223281] = 6, + [222856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10088), 1, + ACTIONS(10060), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6303), 1, + STATE(6311), 1, sym_comment, - [223300] = 6, + [222875] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10090), 1, + ACTIONS(10062), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6304), 1, + STATE(6312), 1, sym_comment, - [223319] = 6, + [222894] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10092), 1, + ACTIONS(10064), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6305), 1, + STATE(6313), 1, sym_comment, - [223338] = 6, + [222913] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10094), 1, + ACTIONS(10066), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6306), 1, - sym_comment, - [223357] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6307), 1, + STATE(6314), 1, sym_comment, - ACTIONS(10096), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223370] = 3, + [222932] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6308), 1, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym_parameter_parens, + STATE(3114), 1, + sym_parameter_bracks, + STATE(6315), 1, sym_comment, - ACTIONS(10098), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223383] = 3, + [222951] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6309), 1, + STATE(6316), 1, sym_comment, - ACTIONS(10100), 4, + ACTIONS(10072), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223396] = 5, + [222964] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10102), 1, + ACTIONS(10074), 1, anon_sym_DQUOTE, - STATE(6310), 1, + STATE(6317), 1, sym_comment, - STATE(6313), 1, + STATE(6318), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223413] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(6311), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [223428] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6312), 1, - sym_comment, - ACTIONS(10104), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223441] = 5, + [222981] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10106), 1, + ACTIONS(10076), 1, anon_sym_DQUOTE, - STATE(6313), 1, + STATE(6318), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223458] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6314), 1, - sym_comment, - ACTIONS(10108), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223471] = 3, + [222998] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6315), 1, + STATE(6319), 1, sym_comment, - ACTIONS(10104), 4, + ACTIONS(10078), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223484] = 3, + [223011] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6316), 1, + STATE(6320), 1, sym_comment, - ACTIONS(10110), 4, + ACTIONS(10078), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223497] = 6, + [223024] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10112), 1, + ACTIONS(10080), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6317), 1, + STATE(6321), 1, sym_comment, - [223516] = 6, + [223043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10114), 1, + ACTIONS(10082), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6318), 1, + STATE(6322), 1, sym_comment, - [223535] = 6, + [223062] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10116), 1, + ACTIONS(10084), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6319), 1, + STATE(6323), 1, sym_comment, - [223554] = 6, + [223081] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10118), 1, + ACTIONS(10086), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6320), 1, + STATE(6324), 1, sym_comment, - [223573] = 6, + [223100] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10120), 1, + ACTIONS(10088), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6321), 1, + STATE(6325), 1, sym_comment, - [223592] = 6, + [223119] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10122), 1, + ACTIONS(10090), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6322), 1, + STATE(6326), 1, sym_comment, - [223611] = 6, + [223138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10124), 1, + ACTIONS(10092), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6323), 1, + STATE(6327), 1, sym_comment, - [223630] = 6, + [223157] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10126), 1, + ACTIONS(10094), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6324), 1, - sym_comment, - [223649] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6325), 1, + STATE(6328), 1, sym_comment, - ACTIONS(10128), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223662] = 3, + [223176] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6326), 1, + STATE(6329), 1, sym_comment, - ACTIONS(10130), 4, + ACTIONS(10096), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223675] = 3, + [223189] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6327), 1, + STATE(6330), 1, sym_comment, - ACTIONS(10132), 4, + ACTIONS(10098), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223688] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6328), 1, - sym_comment, - ACTIONS(9755), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223701] = 5, + [223202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10134), 1, + ACTIONS(10100), 1, anon_sym_DQUOTE, - STATE(6329), 1, + STATE(6331), 1, sym_comment, STATE(6332), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223718] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6330), 1, - sym_comment, - ACTIONS(10136), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223731] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6331), 1, - sym_comment, - ACTIONS(10138), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223744] = 5, + [223219] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10140), 1, + ACTIONS(10102), 1, anon_sym_DQUOTE, STATE(6332), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223761] = 3, + [223236] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6333), 1, sym_comment, - ACTIONS(10142), 4, + ACTIONS(10104), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223774] = 3, + [223249] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10106), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6334), 1, sym_comment, - ACTIONS(2259), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - [223787] = 3, + [223268] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6335), 1, sym_comment, - ACTIONS(10144), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223800] = 6, + ACTIONS(10108), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10146), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10110), 1, + anon_sym_DQUOTE, STATE(6336), 1, sym_comment, - [223819] = 6, + STATE(6337), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223298] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10148), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10112), 1, + anon_sym_DQUOTE, STATE(6337), 1, sym_comment, - [223838] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223315] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10150), 1, + ACTIONS(10114), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6338), 1, sym_comment, - [223857] = 6, - ACTIONS(3), 1, + [223334] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10152), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6339), 1, sym_comment, - [223876] = 6, + ACTIONS(10116), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10118), 1, + anon_sym_DQUOTE, STATE(6340), 1, sym_comment, - [223895] = 6, + STATE(6341), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223364] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10156), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10120), 1, + anon_sym_DQUOTE, STATE(6341), 1, sym_comment, - [223914] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223381] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10158), 1, + ACTIONS(10122), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6342), 1, sym_comment, - [223933] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10160), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6343), 1, - sym_comment, - [223952] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6344), 1, - sym_comment, - ACTIONS(10162), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223965] = 3, + [223400] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6345), 1, + STATE(6343), 1, sym_comment, - ACTIONS(10164), 4, + ACTIONS(10124), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223978] = 5, + [223413] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10166), 1, + ACTIONS(10126), 1, anon_sym_DQUOTE, - STATE(6346), 1, + STATE(6344), 1, sym_comment, - STATE(6349), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [223995] = 5, - ACTIONS(247), 1, + [223430] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, - ts_builtin_sym_end, - STATE(234), 1, - aux_sym__block_body_repeat1, - STATE(6347), 1, + ACTIONS(10128), 1, + anon_sym_DQUOTE, + STATE(6345), 1, sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [224012] = 3, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223447] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6348), 1, + STATE(6346), 1, sym_comment, - ACTIONS(10168), 4, + ACTIONS(10130), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224025] = 5, + [223460] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6347), 1, + sym_comment, + ACTIONS(10132), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10170), 1, + ACTIONS(10134), 1, anon_sym_DQUOTE, - STATE(6349), 1, + STATE(6348), 1, sym_comment, - STATE(6592), 1, + STATE(6349), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224042] = 4, + [223490] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, - sym__entry_separator, - STATE(6350), 1, + ACTIONS(10136), 1, + anon_sym_DQUOTE, + STATE(6349), 1, sym_comment, - ACTIONS(2453), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [224057] = 3, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223507] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6351), 1, + STATE(6350), 1, sym_comment, - ACTIONS(10172), 4, + ACTIONS(10138), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224070] = 3, + [223520] = 3, ACTIONS(247), 1, anon_sym_POUND, + STATE(6351), 1, + sym_comment, + ACTIONS(10140), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223533] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10142), 1, + anon_sym_DQUOTE, STATE(6352), 1, sym_comment, - ACTIONS(10174), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224083] = 6, + STATE(6353), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10176), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10144), 1, + anon_sym_DQUOTE, STATE(6353), 1, sym_comment, - [224102] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10178), 1, + ACTIONS(10146), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6354), 1, sym_comment, - [224121] = 6, - ACTIONS(3), 1, + [223586] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10180), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6355), 1, sym_comment, - [224140] = 6, + ACTIONS(10148), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223599] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10182), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10150), 1, + anon_sym_DQUOTE, STATE(6356), 1, sym_comment, - [224159] = 6, + STATE(6357), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10184), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10152), 1, + anon_sym_DQUOTE, STATE(6357), 1, sym_comment, - [224178] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223633] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10186), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6358), 1, sym_comment, - [224197] = 6, - ACTIONS(3), 1, + ACTIONS(10130), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223646] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10188), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6359), 1, sym_comment, - [224216] = 6, + ACTIONS(10154), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223659] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10190), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10156), 1, + anon_sym_DQUOTE, STATE(6360), 1, sym_comment, - [224235] = 5, + STATE(6361), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223676] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10158), 1, + anon_sym_DQUOTE, + STATE(6361), 1, + sym_comment, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223693] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9092), 1, - anon_sym_RPAREN, - STATE(210), 1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(265), 1, aux_sym__block_body_repeat1, - STATE(6361), 1, + STATE(6362), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(33), 2, sym__newline, anon_sym_SEMI, - [224252] = 3, + [223710] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6362), 1, + STATE(6363), 1, sym_comment, - ACTIONS(10192), 4, + ACTIONS(10160), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224265] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6363), 1, - sym_comment, - ACTIONS(10194), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224278] = 5, + [223723] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10196), 1, + ACTIONS(10162), 1, anon_sym_DQUOTE, STATE(6364), 1, sym_comment, - STATE(6366), 1, + STATE(6365), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224295] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6365), 1, - sym_comment, - ACTIONS(10198), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224308] = 5, + [223740] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10200), 1, + ACTIONS(10164), 1, anon_sym_DQUOTE, - STATE(6366), 1, + STATE(6365), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224325] = 5, + [223757] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4781), 1, + sym_identifier, + ACTIONS(4783), 1, + anon_sym_DOLLAR, + ACTIONS(10166), 1, + anon_sym_EQ2, + ACTIONS(10168), 1, + sym_short_flag_identifier, + STATE(6366), 1, + sym_comment, + [223776] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9092), 1, - anon_sym_RPAREN, - STATE(6238), 1, - aux_sym__block_body_repeat1, STATE(6367), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [224342] = 4, + ACTIONS(10170), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223789] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2459), 1, - sym__entry_separator, + ACTIONS(10172), 1, + anon_sym_DQUOTE, STATE(6368), 1, sym_comment, - ACTIONS(2457), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [224357] = 6, + STATE(6369), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223806] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10202), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10174), 1, + anon_sym_DQUOTE, STATE(6369), 1, sym_comment, - [224376] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223823] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10204), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(8350), 1, + aux_sym_unquoted_token2, STATE(6370), 1, sym_comment, - [224395] = 6, - ACTIONS(3), 1, + ACTIONS(1572), 2, + sym_identifier, + anon_sym_DASH_DASH, + [223840] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10206), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6371), 1, sym_comment, - [224414] = 6, + ACTIONS(10176), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10208), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10178), 1, + anon_sym_DQUOTE, STATE(6372), 1, sym_comment, - [224433] = 6, + STATE(6373), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223870] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10210), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10180), 1, + anon_sym_DQUOTE, STATE(6373), 1, sym_comment, - [224452] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10212), 1, + ACTIONS(10182), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6374), 1, sym_comment, - [224471] = 6, - ACTIONS(3), 1, + [223906] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10214), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6375), 1, sym_comment, - [224490] = 6, + ACTIONS(10184), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223919] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10216), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10186), 1, + anon_sym_DQUOTE, STATE(6376), 1, sym_comment, - [224509] = 3, - ACTIONS(247), 1, + STATE(6377), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223936] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10188), 1, + anon_sym_DQUOTE, STATE(6377), 1, sym_comment, - ACTIONS(10218), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224522] = 3, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [223953] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(10190), 1, + anon_sym_DOT_DOT2, STATE(6378), 1, sym_comment, - ACTIONS(10220), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [224535] = 3, + ACTIONS(10192), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223970] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6379), 1, sym_comment, - ACTIONS(10222), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224548] = 5, + ACTIONS(10194), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10224), 1, + ACTIONS(10196), 1, anon_sym_DQUOTE, STATE(6380), 1, sym_comment, - STATE(6382), 1, + STATE(6381), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224565] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10226), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6381), 1, - sym_comment, - [224584] = 5, + [224000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10228), 1, + ACTIONS(10198), 1, anon_sym_DQUOTE, - STATE(6382), 1, + STATE(6381), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224601] = 6, + [224017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10230), 1, + STATE(6382), 1, + sym_comment, + ACTIONS(1721), 2, anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [224032] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6383), 1, sym_comment, - [224620] = 6, + ACTIONS(10200), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10232), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10202), 1, + anon_sym_DQUOTE, STATE(6384), 1, sym_comment, - [224639] = 6, + STATE(6385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224062] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10234), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10204), 1, + anon_sym_DQUOTE, STATE(6385), 1, sym_comment, - [224658] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224079] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10236), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4729), 1, + sym_block, + STATE(6175), 1, + aux_sym_shebang_repeat1, STATE(6386), 1, sym_comment, - [224677] = 6, - ACTIONS(3), 1, + [224098] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10238), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6387), 1, sym_comment, - [224696] = 6, + ACTIONS(10206), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10240), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10208), 1, + anon_sym_DQUOTE, STATE(6388), 1, sym_comment, - [224715] = 6, + STATE(6389), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224128] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10242), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10210), 1, + anon_sym_DQUOTE, STATE(6389), 1, sym_comment, - [224734] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224145] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10244), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6390), 1, sym_comment, - [224753] = 3, + ACTIONS(10212), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224158] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6391), 1, sym_comment, - ACTIONS(10246), 4, + ACTIONS(10214), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224766] = 5, + [224171] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10248), 1, + ACTIONS(10216), 1, anon_sym_DQUOTE, STATE(6392), 1, sym_comment, STATE(6393), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224783] = 5, + [224188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10250), 1, + ACTIONS(10218), 1, anon_sym_DQUOTE, STATE(6393), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [224800] = 6, - ACTIONS(3), 1, + [224205] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10252), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6394), 1, sym_comment, - [224819] = 6, - ACTIONS(3), 1, + ACTIONS(10220), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224218] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6395), 1, sym_comment, - [224838] = 6, + ACTIONS(10222), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10256), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10224), 1, + anon_sym_DQUOTE, STATE(6396), 1, sym_comment, - [224857] = 6, + STATE(6397), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224248] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10258), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10226), 1, + anon_sym_DQUOTE, STATE(6397), 1, sym_comment, - [224876] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224265] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10260), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, + sym_identifier, + STATE(5366), 1, + sym_val_variable, + STATE(5647), 1, + sym__variable_name, STATE(6398), 1, sym_comment, - [224895] = 6, - ACTIONS(3), 1, + [224284] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10262), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6399), 1, sym_comment, - [224914] = 6, + ACTIONS(10228), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10230), 1, + anon_sym_DQUOTE, STATE(6400), 1, sym_comment, - [224933] = 6, + STATE(6401), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224314] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10266), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10232), 1, + anon_sym_DQUOTE, STATE(6401), 1, sym_comment, - [224952] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10268), 1, + ACTIONS(10234), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6402), 1, sym_comment, - [224971] = 3, + [224350] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6403), 1, sym_comment, - ACTIONS(10270), 4, + ACTIONS(10236), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224984] = 5, + [224363] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10272), 1, + ACTIONS(10238), 1, anon_sym_DQUOTE, STATE(6404), 1, sym_comment, STATE(6405), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225001] = 5, + [224380] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10274), 1, + ACTIONS(10240), 1, anon_sym_DQUOTE, STATE(6405), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225018] = 6, + [224397] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(10276), 1, + ACTIONS(10068), 1, anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3115), 1, + sym_parameter_parens, + STATE(3120), 1, + sym_parameter_bracks, STATE(6406), 1, sym_comment, - STATE(7796), 1, - sym_val_list, - [225037] = 6, - ACTIONS(3), 1, + [224416] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10278), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6407), 1, sym_comment, - [225056] = 6, + ACTIONS(10242), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224429] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10280), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10244), 1, + anon_sym_DQUOTE, STATE(6408), 1, sym_comment, - [225075] = 6, + STATE(6409), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10282), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10246), 1, + anon_sym_DQUOTE, STATE(6409), 1, sym_comment, - [225094] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224463] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10284), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, STATE(6410), 1, sym_comment, - [225113] = 6, - ACTIONS(3), 1, + ACTIONS(1661), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224478] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10286), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6411), 1, sym_comment, - [225132] = 6, - ACTIONS(247), 1, + ACTIONS(10248), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224491] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3076), 1, - sym_parameter_parens, - STATE(3077), 1, - sym_parameter_bracks, + ACTIONS(10250), 1, + anon_sym_DQUOTE, STATE(6412), 1, sym_comment, - [225151] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10288), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6413), 1, - sym_comment, - [225170] = 6, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224508] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10290), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6414), 1, + ACTIONS(10252), 1, + anon_sym_DQUOTE, + STATE(6413), 1, sym_comment, - [225189] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224525] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10292), 1, - aux_sym_ctrl_match_token1, - STATE(1896), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1693), 1, sym_block, - STATE(1899), 1, + STATE(1694), 1, sym_val_closure, - STATE(5094), 1, + STATE(4976), 1, sym__blosure, - STATE(6415), 1, + STATE(6414), 1, sym_comment, - [225208] = 3, + [224544] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6416), 1, + STATE(6415), 1, sym_comment, - ACTIONS(10294), 4, + ACTIONS(10254), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225221] = 5, + [224557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10296), 1, + ACTIONS(10256), 1, anon_sym_DQUOTE, - STATE(6417), 1, + STATE(6416), 1, sym_comment, - STATE(6418), 1, + STATE(6417), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225238] = 5, + [224574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10298), 1, + ACTIONS(10258), 1, anon_sym_DQUOTE, - STATE(6418), 1, + STATE(6417), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225255] = 6, - ACTIONS(3), 1, + [224591] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6418), 1, + sym_comment, + ACTIONS(10260), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224604] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1786), 1, - anon_sym_RBRACK, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, STATE(6419), 1, sym_comment, - [225274] = 6, + ACTIONS(10262), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10300), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10264), 1, + anon_sym_DQUOTE, STATE(6420), 1, sym_comment, - [225293] = 6, + STATE(6421), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224634] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10302), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10266), 1, + anon_sym_DQUOTE, STATE(6421), 1, sym_comment, - [225312] = 6, - ACTIONS(3), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224651] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10304), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6422), 1, sym_comment, - [225331] = 6, - ACTIONS(3), 1, + ACTIONS(6182), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [224664] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10306), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6423), 1, sym_comment, - [225350] = 6, + ACTIONS(10268), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10308), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10270), 1, + anon_sym_DQUOTE, STATE(6424), 1, sym_comment, - [225369] = 6, + STATE(6425), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10310), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10272), 1, + anon_sym_DQUOTE, STATE(6425), 1, sym_comment, - [225388] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224711] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1552), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2291), 1, + anon_sym_RBRACE, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + ACTIONS(2295), 1, sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10312), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6426), 1, sym_comment, - [225407] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10314), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6427), 1, - sym_comment, - [225426] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9451), 1, - anon_sym_RPAREN, - STATE(210), 1, - aux_sym__block_body_repeat1, - STATE(6428), 1, - sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [225443] = 3, + [224730] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6429), 1, + STATE(6427), 1, sym_comment, - ACTIONS(10316), 4, + ACTIONS(10274), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225456] = 5, + [224743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10318), 1, + ACTIONS(10276), 1, anon_sym_DQUOTE, - STATE(6430), 1, + STATE(6428), 1, sym_comment, - STATE(6431), 1, + STATE(6429), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225473] = 5, + [224760] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10320), 1, + ACTIONS(10278), 1, anon_sym_DQUOTE, - STATE(6431), 1, + STATE(6429), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225490] = 3, + [224777] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6432), 1, + STATE(6430), 1, sym_comment, - ACTIONS(10322), 4, + ACTIONS(10280), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225503] = 5, + [224790] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10324), 1, + ACTIONS(10282), 1, + anon_sym_DQUOTE, + STATE(6431), 1, + sym_comment, + STATE(6432), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224807] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10284), 1, + anon_sym_DQUOTE, + STATE(6432), 1, + sym_comment, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224824] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10286), 1, anon_sym_DQUOTE, STATE(6433), 1, sym_comment, STATE(6434), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225520] = 5, + [224841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10326), 1, + ACTIONS(10288), 1, anon_sym_DQUOTE, STATE(6434), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225537] = 3, - ACTIONS(247), 1, + [224858] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10290), 1, + anon_sym_DQUOTE, STATE(6435), 1, sym_comment, - ACTIONS(10328), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225550] = 5, + STATE(6436), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224875] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10330), 1, + ACTIONS(10292), 1, anon_sym_DQUOTE, STATE(6436), 1, sym_comment, - STATE(6437), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225567] = 5, + [224892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10332), 1, + ACTIONS(10294), 1, anon_sym_DQUOTE, STATE(6437), 1, sym_comment, - STATE(6592), 1, + STATE(6438), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225584] = 3, - ACTIONS(247), 1, + [224909] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10296), 1, + anon_sym_DQUOTE, STATE(6438), 1, sym_comment, - ACTIONS(10334), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225597] = 5, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10336), 1, + ACTIONS(10298), 1, anon_sym_DQUOTE, STATE(6439), 1, sym_comment, STATE(6440), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225614] = 5, + [224943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10338), 1, + ACTIONS(10300), 1, anon_sym_DQUOTE, STATE(6440), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225631] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6441), 1, - sym_comment, - ACTIONS(10340), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225644] = 5, + [224960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10342), 1, + ACTIONS(10302), 1, anon_sym_DQUOTE, - STATE(6442), 1, + STATE(6441), 1, sym_comment, - STATE(6443), 1, + STATE(6442), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225661] = 5, + [224977] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10344), 1, + ACTIONS(10304), 1, anon_sym_DQUOTE, - STATE(6443), 1, + STATE(6442), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225678] = 3, + [224994] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6443), 1, + sym_comment, + ACTIONS(6184), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [225007] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, STATE(6444), 1, sym_comment, - ACTIONS(10346), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225691] = 5, - ACTIONS(3), 1, + ACTIONS(1786), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225022] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10348), 1, - anon_sym_DQUOTE, STATE(6445), 1, sym_comment, - STATE(6446), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225708] = 5, - ACTIONS(3), 1, + ACTIONS(10306), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225035] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10350), 1, - anon_sym_DQUOTE, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3101), 1, + sym_parameter_parens, + STATE(3102), 1, + sym_parameter_bracks, STATE(6446), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225725] = 3, + [225054] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_use, + ACTIONS(9522), 1, + anon_sym_list, + ACTIONS(9524), 1, + anon_sym_hide, + ACTIONS(9526), 1, + anon_sym_new, STATE(6447), 1, sym_comment, - ACTIONS(10352), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225738] = 5, - ACTIONS(3), 1, + [225073] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10354), 1, - anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_DOT_DOT2, + ACTIONS(10308), 1, + anon_sym_LBRACE, STATE(6448), 1, sym_comment, - STATE(6449), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225755] = 5, - ACTIONS(3), 1, + ACTIONS(6474), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225090] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10356), 1, - anon_sym_DQUOTE, STATE(6449), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225772] = 3, + ACTIONS(6194), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [225103] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6450), 1, sym_comment, - ACTIONS(10358), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225785] = 5, - ACTIONS(3), 1, + ACTIONS(10310), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225116] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10360), 1, - anon_sym_DQUOTE, STATE(6451), 1, sym_comment, + ACTIONS(10306), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225129] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(10312), 1, + anon_sym_DOT_DOT2, STATE(6452), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225802] = 5, + sym_comment, + ACTIONS(10314), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10362), 1, + ACTIONS(10316), 1, anon_sym_DQUOTE, - STATE(6452), 1, + STATE(6453), 1, sym_comment, - STATE(6592), 1, + STATE(6497), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225819] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(10364), 1, - anon_sym_DOT_DOT2, - STATE(6453), 1, - sym_comment, - ACTIONS(10366), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225836] = 3, + [225163] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6454), 1, sym_comment, - ACTIONS(10368), 4, + ACTIONS(10318), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225849] = 5, - ACTIONS(3), 1, + [225176] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10370), 1, - anon_sym_DQUOTE, + ACTIONS(2005), 1, + anon_sym_LBRACE, + ACTIONS(10320), 1, + anon_sym_DOT_DOT2, STATE(6455), 1, sym_comment, - STATE(6456), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225866] = 5, - ACTIONS(3), 1, + ACTIONS(10322), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225193] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10372), 1, - anon_sym_DQUOTE, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(10324), 1, + anon_sym_DOT_DOT2, STATE(6456), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225883] = 6, + ACTIONS(10326), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225210] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_SEMI, - ACTIONS(2808), 1, + ACTIONS(3705), 1, sym__newline, - STATE(238), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6457), 1, - sym_comment, - STATE(6970), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(749), 1, aux_sym_shebang_repeat1, - [225902] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6458), 1, + STATE(4739), 1, + sym_block, + STATE(6457), 1, sym_comment, - ACTIONS(10374), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225915] = 5, + [225229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10376), 1, + ACTIONS(10328), 1, anon_sym_DQUOTE, - STATE(6459), 1, + STATE(6458), 1, sym_comment, - STATE(6460), 1, + STATE(6474), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [225932] = 5, + [225246] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10378), 1, - anon_sym_DQUOTE, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2233), 1, + sym__entry_separator, + ACTIONS(2235), 1, + aux_sym__unquoted_in_record_token4, + STATE(6459), 1, + sym_comment, + [225265] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3103), 1, + sym_parameter_parens, + STATE(3104), 1, + sym_parameter_bracks, STATE(6460), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225949] = 3, + [225284] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3108), 1, + sym_parameter_parens, + STATE(3109), 1, + sym_parameter_bracks, STATE(6461), 1, sym_comment, - ACTIONS(10380), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225962] = 5, + [225303] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10382), 1, - anon_sym_DQUOTE, + ACTIONS(2229), 1, + anon_sym_RBRACK, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2233), 1, + sym__entry_separator, + ACTIONS(2235), 1, + aux_sym__unquoted_in_list_token4, STATE(6462), 1, sym_comment, - STATE(6463), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225979] = 5, + [225322] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10384), 1, - anon_sym_DQUOTE, + ACTIONS(10330), 1, + anon_sym_LPAREN, STATE(6463), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225996] = 3, + ACTIONS(10332), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [225337] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6464), 1, sym_comment, - ACTIONS(10386), 4, + ACTIONS(10334), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226009] = 3, - ACTIONS(247), 1, + [225350] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5732), 1, + sym__entry_separator, STATE(6465), 1, - sym_comment, - ACTIONS(10388), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226022] = 5, - ACTIONS(3), 1, + sym_comment, + STATE(7234), 1, + sym__expr_parenthesized_immediate, + [225369] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10390), 1, - anon_sym_DQUOTE, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3117), 1, + sym_parameter_parens, + STATE(3118), 1, + sym_parameter_bracks, STATE(6466), 1, sym_comment, - STATE(6467), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226039] = 5, + [225388] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10392), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10336), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6467), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226056] = 3, + [225407] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6468), 1, sym_comment, - ACTIONS(10394), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226069] = 5, + ACTIONS(10334), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10396), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10338), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6469), 1, sym_comment, - STATE(6470), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226086] = 5, - ACTIONS(3), 1, + [225439] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10398), 1, - anon_sym_DQUOTE, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(10340), 1, + anon_sym_DOT_DOT2, STATE(6470), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226103] = 3, - ACTIONS(247), 1, + ACTIONS(10342), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225456] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1778), 1, + anon_sym_RBRACK, + ACTIONS(1780), 1, + anon_sym_LPAREN2, + ACTIONS(1786), 1, + sym__entry_separator, STATE(6471), 1, sym_comment, - ACTIONS(10400), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226116] = 5, + [225475] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10402), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10344), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6472), 1, sym_comment, + [225494] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6473), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226133] = 5, + sym_comment, + ACTIONS(10346), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10404), 1, + ACTIONS(10348), 1, anon_sym_DQUOTE, - STATE(6473), 1, + STATE(6474), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [226150] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6474), 1, - sym_comment, - ACTIONS(10406), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226163] = 5, + [225524] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10408), 1, - anon_sym_DQUOTE, + ACTIONS(2233), 1, + anon_sym_PIPE, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, STATE(6475), 1, sym_comment, - STATE(6476), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226180] = 5, - ACTIONS(3), 1, + ACTIONS(2229), 2, + anon_sym_if, + anon_sym_EQ_GT, + [225541] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10410), 1, - anon_sym_DQUOTE, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, STATE(6476), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226197] = 3, + ACTIONS(2289), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225556] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(5712), 1, + sym_parameter_parens, + STATE(5714), 1, + sym_parameter_bracks, STATE(6477), 1, sym_comment, - ACTIONS(10412), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + [225575] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1070), 1, anon_sym_RBRACE, - [226210] = 3, + ACTIONS(1072), 1, + sym__entry_separator, + ACTIONS(2225), 1, + anon_sym_LPAREN2, + ACTIONS(2227), 1, + aux_sym__unquoted_in_record_token4, + STATE(6478), 1, + sym_comment, + [225594] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6478), 1, + STATE(6479), 1, sym_comment, - ACTIONS(10414), 4, + ACTIONS(10350), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226223] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10416), 1, - anon_sym_DQUOTE, - STATE(6479), 1, - sym_comment, - STATE(6480), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226240] = 5, - ACTIONS(3), 1, + [225607] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10418), 1, - anon_sym_DQUOTE, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, STATE(6480), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226257] = 3, + ACTIONS(1796), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225622] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6481), 1, sym_comment, - ACTIONS(10420), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226270] = 5, + ACTIONS(6196), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [225635] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10422), 1, - anon_sym_DQUOTE, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7548), 1, + sym__entry_separator, + ACTIONS(7550), 1, + anon_sym_RBRACK, STATE(6482), 1, sym_comment, - STATE(6483), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226287] = 5, - ACTIONS(3), 1, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [225654] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10424), 1, - anon_sym_DQUOTE, STATE(6483), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226304] = 3, - ACTIONS(247), 1, + ACTIONS(10352), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225667] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6484), 1, sym_comment, - ACTIONS(10426), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226317] = 5, - ACTIONS(3), 1, + ACTIONS(1738), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1740), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [225682] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10428), 1, - anon_sym_DQUOTE, + ACTIONS(10354), 1, + anon_sym_RBRACK, + STATE(5187), 1, + aux_sym_parameter_repeat2, STATE(6485), 1, sym_comment, - STATE(6486), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226334] = 5, + ACTIONS(2551), 2, + sym__newline, + anon_sym_COMMA, + [225699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10430), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10356), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6486), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226351] = 6, + [225718] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6487), 1, + sym_comment, + ACTIONS(10358), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225731] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10432), 1, + ACTIONS(10360), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6487), 1, - sym_comment, - [226370] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(6488), 1, sym_comment, - ACTIONS(10434), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226383] = 5, + [225750] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10436), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10362), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6489), 1, sym_comment, - STATE(6490), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226400] = 5, - ACTIONS(3), 1, + [225769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10438), 1, - anon_sym_DQUOTE, STATE(6490), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226417] = 4, - ACTIONS(3), 1, + ACTIONS(10364), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225782] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6491), 1, sym_comment, - ACTIONS(2259), 2, + ACTIONS(10366), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2261), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [226432] = 3, + [225795] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6492), 1, sym_comment, - ACTIONS(10440), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226445] = 5, + ACTIONS(10368), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10442), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10370), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6493), 1, sym_comment, - STATE(6494), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226462] = 5, - ACTIONS(3), 1, + [225827] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10444), 1, - anon_sym_DQUOTE, STATE(6494), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226479] = 3, + ACTIONS(10372), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225840] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1013), 1, + sym__table_head_separator, + ACTIONS(9552), 1, + anon_sym_DOT, STATE(6495), 1, sym_comment, - ACTIONS(10446), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226492] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10448), 1, - anon_sym_DQUOTE, STATE(6496), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + [225859] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1017), 1, + sym__table_head_separator, + ACTIONS(10374), 1, + anon_sym_DOT, + STATE(6916), 1, + sym_path, + STATE(6496), 2, sym_comment, - STATE(6497), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226509] = 5, + aux_sym_cell_path_repeat1, + [225876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10450), 1, + ACTIONS(10377), 1, anon_sym_DQUOTE, STATE(6497), 1, sym_comment, - STATE(6592), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, + ACTIONS(9656), 2, sym__escaped_str_content, sym_escape_sequence, - [226526] = 3, - ACTIONS(247), 1, + [225893] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10379), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6498), 1, sym_comment, - ACTIONS(10452), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226539] = 5, + [225912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10454), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10381), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6499), 1, sym_comment, - STATE(6500), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226556] = 5, + [225931] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10456), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10383), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6500), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226573] = 3, - ACTIONS(247), 1, + [225950] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6501), 1, sym_comment, - ACTIONS(10458), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226586] = 5, - ACTIONS(3), 1, + [225969] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10460), 1, - anon_sym_DQUOTE, STATE(6502), 1, sym_comment, - STATE(6503), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226603] = 5, - ACTIONS(3), 1, + ACTIONS(10387), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225982] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10462), 1, - anon_sym_DQUOTE, STATE(6503), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226620] = 3, + ACTIONS(10389), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225995] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6504), 1, sym_comment, - ACTIONS(10464), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226633] = 5, - ACTIONS(3), 1, + ACTIONS(9990), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226008] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10466), 1, - anon_sym_DQUOTE, STATE(6505), 1, sym_comment, - STATE(6506), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226650] = 5, - ACTIONS(3), 1, + ACTIONS(10391), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226021] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10468), 1, - anon_sym_DQUOTE, STATE(6506), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226667] = 3, + ACTIONS(10393), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226034] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6507), 1, sym_comment, - ACTIONS(10470), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226680] = 5, - ACTIONS(3), 1, + ACTIONS(10395), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226047] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10472), 1, - anon_sym_DQUOTE, + ACTIONS(1554), 1, + aux_sym_cmd_identifier_token41, STATE(6508), 1, sym_comment, - STATE(6509), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226697] = 5, - ACTIONS(3), 1, + ACTIONS(1556), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [226062] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10474), 1, - anon_sym_DQUOTE, STATE(6509), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226714] = 5, - ACTIONS(3), 1, + ACTIONS(9990), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226075] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10476), 1, - anon_sym_DQUOTE, STATE(6510), 1, sym_comment, - STATE(6511), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226731] = 5, + ACTIONS(10397), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226088] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10478), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10399), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6511), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226748] = 5, + [226107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10480), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10401), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6512), 1, sym_comment, - STATE(6513), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226765] = 5, + [226126] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10482), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10403), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6513), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226782] = 5, + [226145] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10484), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10405), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6514), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226799] = 5, + [226164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10486), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6515), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226816] = 5, + [226183] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10488), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10409), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6516), 1, sym_comment, - STATE(6517), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226833] = 5, + [226202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10490), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6517), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226850] = 5, + [226221] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10492), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10413), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6518), 1, sym_comment, - STATE(6519), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226867] = 5, - ACTIONS(3), 1, + [226240] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10494), 1, - anon_sym_DQUOTE, STATE(6519), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226884] = 3, + ACTIONS(10415), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [226253] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6520), 1, sym_comment, - ACTIONS(10496), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226897] = 3, + ACTIONS(10417), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [226266] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6521), 1, sym_comment, - ACTIONS(10498), 4, + ACTIONS(10419), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226910] = 3, - ACTIONS(247), 1, + [226279] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10421), 1, + anon_sym_DQUOTE, STATE(6522), 1, sym_comment, - ACTIONS(10498), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226923] = 6, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226296] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3067), 1, - sym_parameter_parens, - STATE(3068), 1, - sym_parameter_bracks, STATE(6523), 1, sym_comment, - [226942] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6524), 1, - sym_comment, - ACTIONS(10500), 4, + ACTIONS(10423), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226955] = 5, - ACTIONS(247), 1, + [226309] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT_DOT2, - ACTIONS(10502), 1, - aux_sym_ctrl_match_token1, - STATE(6525), 1, + STATE(6524), 1, sym_comment, - ACTIONS(6484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [226972] = 6, + ACTIONS(1050), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1052), 2, + anon_sym_DOT, + sym__entry_separator, + [226324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10504), 1, + STATE(6525), 1, + sym_comment, + ACTIONS(1054), 2, anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + ACTIONS(1056), 2, + anon_sym_DOT, + sym__entry_separator, + [226339] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, + ACTIONS(10425), 1, + aux_sym__immediate_decimal_token2, STATE(6526), 1, sym_comment, - [226991] = 3, + ACTIONS(1723), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [226356] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4808), 1, + sym_identifier, + ACTIONS(4810), 1, + anon_sym_DOLLAR, + ACTIONS(10427), 1, + sym_long_flag_identifier, + ACTIONS(10429), 1, + anon_sym_EQ2, STATE(6527), 1, sym_comment, - ACTIONS(10506), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227004] = 3, + [226375] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4942), 1, + anon_sym_DASH, + ACTIONS(10431), 1, + anon_sym_EQ2, STATE(6528), 1, sym_comment, - ACTIONS(10508), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227017] = 4, - ACTIONS(3), 1, + ACTIONS(4940), 2, + sym_identifier, + anon_sym_DASH_DASH, + [226392] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6529), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1645), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [227032] = 3, + ACTIONS(10433), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [226405] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6530), 1, sym_comment, - ACTIONS(10510), 4, + ACTIONS(10435), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227045] = 4, + [226418] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, + ACTIONS(4900), 1, + anon_sym_DASH, + ACTIONS(10437), 1, + anon_sym_EQ2, STATE(6531), 1, sym_comment, - ACTIONS(1794), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227060] = 6, - ACTIONS(247), 1, + ACTIONS(4898), 2, + sym_identifier, + anon_sym_DASH_DASH, + [226435] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3069), 1, - sym_parameter_parens, - STATE(3070), 1, - sym_parameter_bracks, + ACTIONS(10439), 1, + anon_sym_DQUOTE, STATE(6532), 1, sym_comment, - [227079] = 6, + STATE(6539), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226452] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, + ACTIONS(10068), 1, anon_sym_LBRACK, - ACTIONS(9807), 1, + ACTIONS(10070), 1, anon_sym_LPAREN, - STATE(3072), 1, - sym_parameter_parens, - STATE(3073), 1, + STATE(3105), 1, sym_parameter_bracks, + STATE(3119), 1, + sym_parameter_parens, STATE(6533), 1, sym_comment, - [227098] = 4, - ACTIONS(3), 1, + [226471] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10512), 1, - anon_sym_LPAREN, STATE(6534), 1, sym_comment, - ACTIONS(10514), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [227113] = 6, + ACTIONS(10441), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226484] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3074), 1, - sym_parameter_parens, - STATE(3075), 1, - sym_parameter_bracks, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4705), 1, + sym_block, + STATE(6457), 1, + aux_sym_shebang_repeat1, STATE(6535), 1, sym_comment, - [227132] = 4, + [226503] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, STATE(6536), 1, sym_comment, - ACTIONS(2293), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [227147] = 5, + ACTIONS(2253), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2255), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [226518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10516), 1, - anon_sym_DQUOTE, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2287), 1, + anon_sym_RBRACK, + ACTIONS(2289), 1, + sym__entry_separator, STATE(6537), 1, sym_comment, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227164] = 4, - ACTIONS(3), 1, + [226537] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2261), 1, - anon_sym_PIPE, + ACTIONS(1013), 1, + aux_sym_record_entry_token1, + ACTIONS(9540), 1, + anon_sym_DOT, STATE(6538), 1, sym_comment, - ACTIONS(2259), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [227179] = 4, + STATE(6561), 1, + aux_sym_cell_path_repeat1, + STATE(6916), 1, + sym_path, + [226556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2366), 1, - sym__entry_separator, + ACTIONS(10443), 1, + anon_sym_DQUOTE, STATE(6539), 1, sym_comment, - ACTIONS(2364), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [227194] = 4, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226573] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(1788), 1, + anon_sym_RBRACK, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, sym__entry_separator, + ACTIONS(1798), 1, + aux_sym__unquoted_in_list_token2, STATE(6540), 1, sym_comment, - ACTIONS(2364), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [227209] = 4, - ACTIONS(3), 1, + [226592] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1963), 1, - sym__entry_separator, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(5648), 1, + sym_parameter_parens, + STATE(5649), 1, + sym_parameter_bracks, STATE(6541), 1, sym_comment, - ACTIONS(1961), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [227224] = 5, + [226611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_PIPE, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, + ACTIONS(2237), 1, + anon_sym_RBRACE, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + sym__entry_separator, + ACTIONS(2243), 1, + aux_sym__unquoted_in_record_token4, STATE(6542), 1, sym_comment, - ACTIONS(2293), 2, - anon_sym_if, - anon_sym_EQ_GT, - [227241] = 4, + [226630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2245), 1, + anon_sym_RBRACE, + ACTIONS(2247), 1, + sym__entry_separator, STATE(6543), 1, sym_comment, - ACTIONS(2243), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [227256] = 4, + [226649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(1552), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2291), 1, + anon_sym_RBRACK, + ACTIONS(2293), 1, + anon_sym_LPAREN2, + ACTIONS(2295), 1, + sym__entry_separator, STATE(6544), 1, sym_comment, - ACTIONS(2251), 3, + [226668] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + STATE(6545), 1, + sym_comment, + ACTIONS(1070), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH, - [227271] = 5, + [226683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_DOT_DOT2, - ACTIONS(9447), 1, + ACTIONS(2297), 1, + anon_sym_RBRACE, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, sym__entry_separator, - STATE(6545), 1, + ACTIONS(2303), 1, + aux_sym__unquoted_in_record_token2, + STATE(6546), 1, sym_comment, - ACTIONS(9342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227288] = 5, + [226702] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1721), 1, aux_sym_unquoted_token2, - ACTIONS(9561), 1, + ACTIONS(10445), 1, aux_sym__immediate_decimal_token2, - STATE(6546), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227305] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(6547), 1, sym_comment, - ACTIONS(10518), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227318] = 4, - ACTIONS(3), 1, + ACTIONS(1723), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [226719] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1058), 1, - anon_sym_DOT, + ACTIONS(10447), 1, + anon_sym_QMARK2, STATE(6548), 1, sym_comment, - ACTIONS(1056), 3, - anon_sym_RBRACK, - sym__entry_separator, + ACTIONS(1024), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, sym__table_head_separator, - [227333] = 6, - ACTIONS(3), 1, + [226734] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10520), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10449), 1, + anon_sym_QMARK2, STATE(6549), 1, sym_comment, - [227352] = 3, + ACTIONS(1030), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [226749] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(10451), 1, + anon_sym_LBRACK, + STATE(749), 1, + aux_sym_shebang_repeat1, STATE(6550), 1, sym_comment, - ACTIONS(10522), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227365] = 3, - ACTIONS(247), 1, + STATE(7442), 1, + sym_val_list, + [226768] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10453), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6551), 1, sym_comment, - ACTIONS(10524), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227378] = 3, + [226787] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(635), 1, + ts_builtin_sym_end, + STATE(263), 1, + aux_sym__block_body_repeat1, STATE(6552), 1, sym_comment, - ACTIONS(10526), 4, + ACTIONS(33), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227391] = 3, - ACTIONS(247), 1, + [226804] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10455), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6553), 1, sym_comment, - ACTIONS(10528), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227404] = 3, - ACTIONS(247), 1, + [226823] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10457), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6554), 1, sym_comment, - ACTIONS(10530), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227417] = 3, - ACTIONS(247), 1, + [226842] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10459), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6555), 1, sym_comment, - ACTIONS(10532), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227430] = 6, + [226861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7709), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(7711), 1, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10461), 1, anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6556), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - [227449] = 3, - ACTIONS(247), 1, + [226880] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10463), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6557), 1, sym_comment, - ACTIONS(10534), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227462] = 3, - ACTIONS(247), 1, + [226899] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10465), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6558), 1, sym_comment, - ACTIONS(10536), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227475] = 6, - ACTIONS(3), 1, + [226918] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(5739), 1, - anon_sym_RBRACK, - ACTIONS(5745), 1, - sym__entry_separator, STATE(6559), 1, sym_comment, - STATE(7398), 1, - sym__expr_parenthesized_immediate, - [227494] = 5, - ACTIONS(247), 1, + ACTIONS(7807), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [226931] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10538), 1, - anon_sym_RPAREN, - STATE(210), 1, - aux_sym__block_body_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6560), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [227511] = 6, + [226950] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4735), 1, - sym_identifier, - ACTIONS(4737), 1, - anon_sym_DOLLAR, - ACTIONS(10540), 1, - sym_long_flag_identifier, - ACTIONS(10542), 1, - anon_sym_EQ2, - STATE(6561), 1, + ACTIONS(1017), 1, + aux_sym_record_entry_token1, + ACTIONS(10469), 1, + anon_sym_DOT, + STATE(6916), 1, + sym_path, + STATE(6561), 2, sym_comment, - [227530] = 4, + aux_sym_cell_path_repeat1, + [226967] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1565), 1, - aux_sym_cmd_identifier_token41, STATE(6562), 1, sym_comment, - ACTIONS(1567), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [227545] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6563), 1, - sym_comment, - ACTIONS(10544), 4, + ACTIONS(10472), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227558] = 6, + [226980] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3062), 1, - sym_parameter_parens, - STATE(3063), 1, - sym_parameter_bracks, - STATE(6564), 1, + STATE(6563), 1, sym_comment, - [227577] = 4, + ACTIONS(10474), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [226993] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10476), 1, + anon_sym_DQUOTE, + STATE(6564), 1, + sym_comment, + STATE(6569), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227010] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8931), 1, + anon_sym_RPAREN, + STATE(234), 1, + aux_sym__block_body_repeat1, STATE(6565), 1, sym_comment, - ACTIONS(2259), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2261), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [227592] = 6, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [227027] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1019), 1, - sym__table_head_separator, - ACTIONS(9583), 1, - anon_sym_DOT, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, STATE(6566), 1, sym_comment, - STATE(6567), 1, - aux_sym_cell_path_repeat1, - STATE(6721), 1, - sym_path, - [227611] = 5, - ACTIONS(247), 1, + ACTIONS(1723), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227042] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1023), 1, - sym__table_head_separator, - ACTIONS(10546), 1, - anon_sym_DOT, - STATE(6721), 1, - sym_path, - STATE(6567), 2, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10478), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6567), 1, sym_comment, - aux_sym_cell_path_repeat1, - [227628] = 5, + [227061] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(669), 1, - ts_builtin_sym_end, - STATE(240), 1, - aux_sym__block_body_repeat1, STATE(6568), 1, sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [227645] = 5, - ACTIONS(247), 1, + ACTIONS(10480), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [227074] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8716), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10549), 1, - anon_sym_DOT, + ACTIONS(10482), 1, + anon_sym_DQUOTE, STATE(6569), 1, sym_comment, - ACTIONS(1645), 2, - sym__newline, - aux_sym_ctrl_match_token1, - [227662] = 6, - ACTIONS(247), 1, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227091] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4749), 1, - anon_sym_DOLLAR, - ACTIONS(10551), 1, - anon_sym_EQ2, - ACTIONS(10553), 1, - sym_short_flag_identifier, + ACTIONS(2237), 1, + anon_sym_RBRACK, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + sym__entry_separator, + ACTIONS(2243), 1, + aux_sym__unquoted_in_list_token4, STATE(6570), 1, sym_comment, - [227681] = 4, + [227110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, - sym__entry_separator, + ACTIONS(10484), 1, + anon_sym_DQUOTE, STATE(6571), 1, sym_comment, - ACTIONS(1879), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [227696] = 6, + STATE(6599), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10555), 1, + ACTIONS(10486), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6572), 1, sym_comment, - [227715] = 6, - ACTIONS(247), 1, + [227146] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9974), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(9976), 1, - anon_sym_LPAREN, - STATE(5903), 1, - sym_parameter_parens, - STATE(5904), 1, - sym_parameter_bracks, + ACTIONS(10488), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6573), 1, sym_comment, - [227734] = 5, - ACTIONS(247), 1, + [227165] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, - ACTIONS(9621), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2297), 1, + anon_sym_RBRACK, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2301), 1, + sym__entry_separator, + ACTIONS(2303), 1, + aux_sym__unquoted_in_list_token2, STATE(6574), 1, sym_comment, - ACTIONS(1645), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [227751] = 5, + [227184] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, + ACTIONS(1738), 1, aux_sym_unquoted_token2, - ACTIONS(10557), 1, - aux_sym__immediate_decimal_token2, STATE(6575), 1, sym_comment, - ACTIONS(1707), 2, + ACTIONS(1740), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [227768] = 6, - ACTIONS(3), 1, + [227199] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10559), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1716), 1, + anon_sym_SEMI, + ACTIONS(3705), 1, + sym__newline, + STATE(258), 1, + aux_sym__parenthesized_body_repeat1, STATE(6576), 1, sym_comment, - [227787] = 6, + STATE(6992), 1, + aux_sym_shebang_repeat1, + [227218] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10561), 1, + ACTIONS(10490), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6577), 1, sym_comment, - [227806] = 6, + [227237] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10563), 1, + ACTIONS(10492), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6578), 1, sym_comment, - [227825] = 6, + [227256] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10565), 1, + ACTIONS(10494), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6579), 1, sym_comment, - [227844] = 6, + [227275] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10567), 1, + ACTIONS(10496), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6580), 1, sym_comment, - [227863] = 6, + [227294] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10569), 1, + ACTIONS(10498), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6581), 1, sym_comment, - [227882] = 6, + [227313] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10571), 1, + ACTIONS(10500), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6582), 1, sym_comment, - [227901] = 6, + [227332] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10573), 1, + ACTIONS(10502), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6583), 1, sym_comment, - [227920] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6584), 1, - sym_comment, - ACTIONS(10575), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [227933] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6585), 1, - sym_comment, - ACTIONS(10577), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [227946] = 6, + [227351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10579), 1, + ACTIONS(10504), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6586), 1, + STATE(6584), 1, sym_comment, - [227965] = 6, - ACTIONS(3), 1, + [227370] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(10451), 1, anon_sym_LBRACK, - ACTIONS(10581), 1, - anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, - STATE(6587), 1, + STATE(749), 1, + aux_sym_shebang_repeat1, + STATE(6585), 1, sym_comment, - [227984] = 5, + STATE(7661), 1, + sym_val_list, + [227389] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10583), 1, + ACTIONS(1786), 1, + anon_sym_EQ_GT, + ACTIONS(10506), 1, anon_sym_DOT_DOT2, - STATE(6588), 1, + STATE(6586), 1, + sym_comment, + ACTIONS(10508), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [227406] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_EQ_GT, + ACTIONS(10510), 1, + anon_sym_DOT_DOT2, + STATE(6587), 1, sym_comment, - ACTIONS(10585), 2, + ACTIONS(10512), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [228001] = 6, + [227423] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_RBRACE, - ACTIONS(1078), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10514), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, + STATE(6588), 1, + sym_comment, + [227442] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6589), 1, sym_comment, - [228020] = 6, - ACTIONS(3), 1, + ACTIONS(10516), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227455] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2160), 1, - anon_sym_RBRACK, - ACTIONS(2162), 1, - sym__entry_separator, STATE(6590), 1, sym_comment, - [228039] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1786), 1, + ACTIONS(10516), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, + [227468] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9412), 1, + anon_sym_RPAREN, + STATE(234), 1, + aux_sym__block_body_repeat1, STATE(6591), 1, sym_comment, - [228058] = 4, - ACTIONS(3), 1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [227485] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10587), 1, - anon_sym_DQUOTE, - ACTIONS(10589), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6592), 2, + STATE(6592), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [228073] = 5, + ACTIONS(10518), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227498] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4906), 1, - anon_sym_DASH, - ACTIONS(10592), 1, - anon_sym_EQ2, STATE(6593), 1, sym_comment, - ACTIONS(4904), 2, + ACTIONS(10520), 4, sym_identifier, - anon_sym_DASH_DASH, - [228090] = 6, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [227511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_RBRACK, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1804), 1, - sym__entry_separator, - ACTIONS(1806), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(10522), 1, + anon_sym_DQUOTE, STATE(6594), 1, sym_comment, - [228109] = 5, - ACTIONS(3), 1, + STATE(6600), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227528] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - ACTIONS(5869), 1, - anon_sym_PIPE, STATE(6595), 1, sym_comment, - ACTIONS(5747), 2, - anon_sym_if, - anon_sym_EQ_GT, - [228126] = 5, + ACTIONS(10524), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227541] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DASH, - ACTIONS(10594), 1, - anon_sym_EQ2, + ACTIONS(10068), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_LPAREN, + STATE(3112), 1, + sym_parameter_bracks, + STATE(3121), 1, + sym_parameter_parens, STATE(6596), 1, sym_comment, - ACTIONS(4914), 2, - sym_identifier, - anon_sym_DASH_DASH, - [228143] = 5, - ACTIONS(247), 1, + [227560] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10596), 1, - anon_sym_DOT_DOT2, STATE(6597), 1, sym_comment, - ACTIONS(10598), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228160] = 4, - ACTIONS(247), 1, + ACTIONS(1667), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1669), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [227575] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(9640), 1, + anon_sym_LBRACK, + ACTIONS(10526), 1, + anon_sym_RBRACK, + STATE(2617), 1, + aux_sym__multiple_types_repeat1, STATE(6598), 1, sym_comment, - ACTIONS(1641), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [228175] = 5, - ACTIONS(247), 1, + [227594] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10600), 1, - anon_sym_DOT_DOT2, + ACTIONS(10528), 1, + anon_sym_DQUOTE, STATE(6599), 1, sym_comment, - ACTIONS(10602), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228192] = 4, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1062), 1, - anon_sym_DOT, + ACTIONS(10530), 1, + anon_sym_DQUOTE, STATE(6600), 1, sym_comment, - ACTIONS(1060), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [228207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10604), 1, - anon_sym_LPAREN, - STATE(6601), 1, - sym_comment, - ACTIONS(10606), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [228222] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6602), 1, - sym_comment, - ACTIONS(10608), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228235] = 3, + STATE(6608), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227628] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6603), 1, + STATE(6601), 1, sym_comment, - ACTIONS(10610), 4, + ACTIONS(10524), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [228248] = 6, + [227641] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_LPAREN, - STATE(3056), 1, - sym_parameter_bracks, - STATE(3057), 1, - sym_parameter_parens, - STATE(6604), 1, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, + STATE(6602), 1, sym_comment, - [228267] = 6, + ACTIONS(1572), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(1048), 1, + anon_sym_DOT, + STATE(6603), 1, + sym_comment, + ACTIONS(1046), 3, anon_sym_RBRACK, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, sym__entry_separator, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - STATE(6605), 1, - sym_comment, - [228286] = 4, + sym__table_head_separator, + [227671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2374), 1, - sym__entry_separator, - STATE(6606), 1, + ACTIONS(10532), 1, + anon_sym_DQUOTE, + STATE(6522), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6604), 1, sym_comment, - ACTIONS(2372), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [228301] = 6, + ACTIONS(9656), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227688] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2251), 1, - anon_sym_RBRACK, - ACTIONS(2253), 1, - sym__entry_separator, - STATE(6607), 1, - sym_comment, - [228320] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6608), 1, + STATE(6605), 1, sym_comment, - ACTIONS(10612), 4, + ACTIONS(2253), 4, sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228333] = 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [227701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2378), 1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(7770), 1, sym__entry_separator, - STATE(6609), 1, - sym_comment, - ACTIONS(2376), 3, + ACTIONS(7772), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym__, - [228348] = 3, + STATE(6606), 1, + sym_comment, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [227720] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6610), 1, + STATE(6607), 1, sym_comment, - ACTIONS(10610), 4, + ACTIONS(10534), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [228361] = 3, + [227733] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10536), 1, + anon_sym_DQUOTE, + ACTIONS(10538), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(6608), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [227748] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6611), 1, + STATE(6609), 1, sym_comment, - ACTIONS(10614), 4, + ACTIONS(10541), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [228374] = 6, + [227761] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10616), 1, + ACTIONS(10543), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6612), 1, + STATE(6610), 1, sym_comment, - [228393] = 6, + [227780] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10618), 1, + ACTIONS(10545), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6613), 1, + STATE(6611), 1, sym_comment, - [228412] = 6, + [227799] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, + ACTIONS(9640), 1, anon_sym_LBRACK, - ACTIONS(10620), 1, + ACTIONS(10547), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(2617), 1, aux_sym__multiple_types_repeat1, - STATE(6614), 1, + STATE(6612), 1, sym_comment, - [228431] = 3, + [227818] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6615), 1, + ACTIONS(6082), 1, + anon_sym_DOLLAR, + ACTIONS(8231), 1, + sym_identifier, + STATE(5366), 1, + sym_val_variable, + STATE(5878), 1, + sym__variable_name, + STATE(6613), 1, + sym_comment, + [227837] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6614), 1, sym_comment, - ACTIONS(10614), 4, + ACTIONS(10549), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [228444] = 5, + [227850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10622), 1, - anon_sym_LBRACK2, - STATE(6616), 1, + ACTIONS(10551), 1, + anon_sym_RBRACK, + STATE(6222), 1, + aux_sym__multiple_types_repeat1, + STATE(6615), 1, sym_comment, - ACTIONS(2303), 2, + [227866] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5909), 1, anon_sym_RBRACE, - anon_sym__, - [228461] = 5, + STATE(2893), 1, + aux_sym__multiple_types_repeat1, + STATE(6616), 1, + sym_comment, + [227882] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9451), 1, - anon_sym_RPAREN, - STATE(6361), 1, - aux_sym__block_body_repeat1, STATE(6617), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [228478] = 3, - ACTIONS(247), 1, + ACTIONS(6023), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227894] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(6834), 1, + aux_sym_unquoted_token4, STATE(6618), 1, sym_comment, - ACTIONS(10624), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228491] = 3, + STATE(7247), 1, + sym__expr_parenthesized_immediate, + [227910] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10553), 1, + anon_sym_RBRACK, + ACTIONS(10555), 1, + sym_hex_digit, STATE(6619), 1, sym_comment, - ACTIONS(10626), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228504] = 4, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [227926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1054), 1, - anon_sym_DOT, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10557), 1, + anon_sym_RBRACK, + STATE(6091), 1, + aux_sym__multiple_types_repeat1, STATE(6620), 1, sym_comment, - ACTIONS(1052), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [228519] = 3, + [227942] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6621), 1, sym_comment, - ACTIONS(6210), 4, - ts_builtin_sym_end, + ACTIONS(10559), 3, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [228532] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [227954] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4726), 1, + aux_sym_unquoted_token4, STATE(6622), 1, sym_comment, - ACTIONS(6212), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [228545] = 3, - ACTIONS(247), 1, + STATE(7229), 1, + sym__expr_parenthesized_immediate, + [227970] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10561), 1, + anon_sym_RBRACK, + STATE(6092), 1, + aux_sym__multiple_types_repeat1, STATE(6623), 1, sym_comment, - ACTIONS(10628), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228558] = 3, - ACTIONS(247), 1, + [227986] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10563), 1, + anon_sym_RBRACK, + STATE(6093), 1, + aux_sym__multiple_types_repeat1, STATE(6624), 1, sym_comment, - ACTIONS(10628), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228571] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6625), 1, - sym_comment, - ACTIONS(10610), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228584] = 6, + [228002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, + ACTIONS(10565), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(6094), 1, aux_sym__multiple_types_repeat1, + STATE(6625), 1, + sym_comment, + [228018] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, STATE(6626), 1, sym_comment, - [228603] = 4, + ACTIONS(1723), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [228032] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10567), 1, + anon_sym_RBRACK, + STATE(6095), 1, + aux_sym__multiple_types_repeat1, STATE(6627), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1633), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [228618] = 3, - ACTIONS(247), 1, + [228048] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10569), 1, + anon_sym_RBRACK, + STATE(6096), 1, + aux_sym__multiple_types_repeat1, STATE(6628), 1, sym_comment, - ACTIONS(10632), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228631] = 3, - ACTIONS(247), 1, + [228064] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10571), 1, + anon_sym_RBRACK, + STATE(6097), 1, + aux_sym__multiple_types_repeat1, STATE(6629), 1, sym_comment, - ACTIONS(10610), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228644] = 3, - ACTIONS(247), 1, + [228080] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10573), 1, + anon_sym_RBRACK, + STATE(6098), 1, + aux_sym__multiple_types_repeat1, STATE(6630), 1, sym_comment, - ACTIONS(10634), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228657] = 6, - ACTIONS(3), 1, + [228096] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7782), 1, - sym__entry_separator, - ACTIONS(7784), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10575), 1, anon_sym_RBRACK, STATE(6631), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - [228676] = 4, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [228112] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5911), 1, + anon_sym_RBRACE, + STATE(2894), 1, + aux_sym__multiple_types_repeat1, STATE(6632), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1645), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [228691] = 3, + [228128] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6633), 1, sym_comment, - ACTIONS(7867), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - [228704] = 5, - ACTIONS(3), 1, + ACTIONS(1040), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [228140] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10636), 1, - anon_sym_DQUOTE, - STATE(6537), 1, - aux_sym__str_double_quotes_repeat1, STATE(6634), 1, sym_comment, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228721] = 5, + ACTIONS(6027), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [228152] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(10638), 1, - anon_sym_DOT_DOT2, STATE(6635), 1, sym_comment, - ACTIONS(10640), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228738] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6636), 1, - sym_comment, - ACTIONS(10642), 4, + ACTIONS(10577), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [228751] = 6, + [228164] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_RBRACK, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(2230), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(10579), 1, + anon_sym_RBRACK, + STATE(6156), 1, + aux_sym__multiple_types_repeat1, + STATE(6636), 1, + sym_comment, + [228180] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6637), 1, sym_comment, - [228770] = 6, - ACTIONS(3), 1, + ACTIONS(1036), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [228192] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10644), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10581), 1, anon_sym_RBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, STATE(6638), 1, sym_comment, - [228789] = 5, + STATE(6643), 1, + aux_sym_val_binary_repeat1, + [228208] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1664), 1, - ts_builtin_sym_end, - STATE(223), 1, - aux_sym__block_body_repeat1, STATE(6639), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(9752), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228806] = 6, + [228220] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10646), 1, - anon_sym_use, - ACTIONS(10648), 1, - anon_sym_list, - ACTIONS(10650), 1, - anon_sym_hide, - ACTIONS(10652), 1, - anon_sym_new, STATE(6640), 1, sym_comment, - [228825] = 4, - ACTIONS(3), 1, + ACTIONS(9940), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228232] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6641), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1633), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [228840] = 6, - ACTIONS(247), 1, + ACTIONS(6031), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [228244] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(2586), 1, - aux_sym_shebang_repeat1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(6790), 1, + aux_sym_unquoted_token4, STATE(6642), 1, sym_comment, - STATE(7757), 1, - sym_val_list, - [228859] = 5, + STATE(7254), 1, + sym__expr_parenthesized_immediate, + [228260] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1794), 1, - anon_sym_EQ_GT, - ACTIONS(10654), 1, - anon_sym_DOT_DOT2, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10583), 1, + anon_sym_RBRACK, STATE(6643), 1, sym_comment, - ACTIONS(10656), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228876] = 5, - ACTIONS(247), 1, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [228276] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_EQ_GT, - ACTIONS(10658), 1, - anon_sym_DOT_DOT2, + ACTIONS(1070), 1, + sym__newline, + ACTIONS(1072), 1, + sym__space, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, STATE(6644), 1, sym_comment, - ACTIONS(10660), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228893] = 6, - ACTIONS(3), 1, + [228292] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2218), 1, - anon_sym_RBRACK, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - sym__entry_separator, STATE(6645), 1, sym_comment, - [228912] = 3, - ACTIONS(247), 1, + ACTIONS(9748), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228304] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10585), 1, + anon_sym_RBRACK, + STATE(6113), 1, + aux_sym__multiple_types_repeat1, STATE(6646), 1, sym_comment, - ACTIONS(10662), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228925] = 6, - ACTIONS(3), 1, + [228320] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_RBRACE, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2247), 1, - sym__entry_separator, - ACTIONS(2249), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(10587), 1, + anon_sym_GT, STATE(6647), 1, sym_comment, - [228944] = 6, - ACTIONS(247), 1, + STATE(7473), 1, + sym_param_cmd, + [228336] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - STATE(5319), 1, - sym_val_variable, - STATE(5673), 1, - sym__variable_name, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10589), 1, + anon_sym_RBRACK, + STATE(6114), 1, + aux_sym__multiple_types_repeat1, STATE(6648), 1, sym_comment, - [228963] = 5, + [228352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10664), 1, - anon_sym_DQUOTE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10591), 1, + anon_sym_RBRACK, + STATE(6115), 1, + aux_sym__multiple_types_repeat1, STATE(6649), 1, sym_comment, - STATE(6655), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228980] = 6, + [228368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_LPAREN2, - ACTIONS(2249), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2251), 1, - anon_sym_RBRACE, - ACTIONS(2253), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10593), 1, + anon_sym_RBRACK, + STATE(6116), 1, + aux_sym__multiple_types_repeat1, STATE(6650), 1, sym_comment, - [228999] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token2, - STATE(6651), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229014] = 6, + [228384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10666), 1, + ACTIONS(10595), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(6117), 1, aux_sym__multiple_types_repeat1, + STATE(6651), 1, + sym_comment, + [228400] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(278), 1, + aux_sym__block_body_repeat1, STATE(6652), 1, sym_comment, - [229033] = 6, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [228414] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6653), 1, + sym_comment, + ACTIONS(10435), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228426] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10668), 1, + ACTIONS(10597), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(6118), 1, aux_sym__multiple_types_repeat1, - STATE(6653), 1, - sym_comment, - [229052] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, STATE(6654), 1, sym_comment, - ACTIONS(2222), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229067] = 5, + [228442] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10670), 1, - anon_sym_DQUOTE, - STATE(6592), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10599), 1, + anon_sym_RBRACK, + STATE(6119), 1, + aux_sym__multiple_types_repeat1, STATE(6655), 1, sym_comment, - ACTIONS(9787), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229084] = 5, + [228458] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1794), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10672), 1, - anon_sym_DOT_DOT2, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, STATE(6656), 1, sym_comment, - ACTIONS(10674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229101] = 6, + ACTIONS(2295), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [228472] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7559), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(7561), 1, + ACTIONS(10601), 1, anon_sym_RBRACK, + STATE(6120), 1, + aux_sym__multiple_types_repeat1, STATE(6657), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - [229120] = 6, - ACTIONS(247), 1, + [228488] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1019), 1, - aux_sym_record_entry_token1, - ACTIONS(9531), 1, - anon_sym_DOT, - STATE(6149), 1, - aux_sym_cell_path_repeat1, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(10603), 1, + anon_sym_RBRACK, + STATE(2620), 1, + aux_sym__multiple_types_repeat1, STATE(6658), 1, sym_comment, - STATE(6721), 1, - sym_path, - [229139] = 4, - ACTIONS(3), 1, + [228504] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10676), 1, - anon_sym_LPAREN, STATE(6659), 1, sym_comment, - ACTIONS(10678), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [229154] = 3, + ACTIONS(9752), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228516] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6660), 1, sym_comment, - ACTIONS(10680), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229167] = 6, + ACTIONS(9818), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228528] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6092), 1, - anon_sym_DOLLAR, - ACTIONS(8273), 1, - sym_identifier, - STATE(5319), 1, - sym_val_variable, - STATE(5873), 1, - sym__variable_name, STATE(6661), 1, sym_comment, - [229186] = 6, + ACTIONS(9990), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228540] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - ACTIONS(10682), 1, + ACTIONS(10605), 1, anon_sym_RBRACK, - STATE(2558), 1, + STATE(6100), 1, aux_sym__multiple_types_repeat1, STATE(6662), 1, sym_comment, - [229205] = 4, - ACTIONS(3), 1, + [228556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10684), 1, - sym__table_head_separator, + ACTIONS(10607), 1, + anon_sym_EQ2, STATE(6663), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(4940), 2, + sym_identifier, + anon_sym_DOLLAR, + [228570] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10609), 1, anon_sym_RBRACK, + STATE(6103), 1, + aux_sym__multiple_types_repeat1, + STATE(6664), 1, + sym_comment, + [228586] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, sym__entry_separator, - [229219] = 5, + ACTIONS(10611), 1, + anon_sym_RBRACK, + STATE(6104), 1, + aux_sym__multiple_types_repeat1, + STATE(6665), 1, + sym_comment, + [228602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(2255), 1, + sym__space, + STATE(6666), 1, + sym_comment, + ACTIONS(2253), 2, + sym__newline, + aux_sym_unquoted_token4, + [228616] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10613), 1, + anon_sym_RBRACK, + STATE(6667), 1, + sym_comment, + STATE(6671), 1, + aux_sym_val_binary_repeat1, + [228632] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1738), 1, + aux_sym_unquoted_token2, + STATE(6668), 1, + sym_comment, + ACTIONS(1740), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [228646] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6669), 1, + sym_comment, + ACTIONS(9772), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228658] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6670), 1, + sym_comment, + ACTIONS(9778), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228670] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10615), 1, + anon_sym_RBRACK, + STATE(6671), 1, + sym_comment, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [228686] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10686), 1, + ACTIONS(10617), 1, anon_sym_RBRACK, - STATE(6180), 1, + STATE(6137), 1, aux_sym__multiple_types_repeat1, - STATE(6664), 1, + STATE(6672), 1, + sym_comment, + [228702] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6673), 1, + sym_comment, + ACTIONS(9898), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228714] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10619), 1, + anon_sym_RBRACK, + STATE(6138), 1, + aux_sym__multiple_types_repeat1, + STATE(6674), 1, sym_comment, - [229235] = 5, + [228730] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10688), 1, + ACTIONS(10621), 1, anon_sym_RBRACK, - STATE(6181), 1, + STATE(6139), 1, aux_sym__multiple_types_repeat1, - STATE(6665), 1, + STATE(6675), 1, sym_comment, - [229251] = 5, + [228746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10690), 1, + ACTIONS(10623), 1, anon_sym_RBRACK, - STATE(6182), 1, + STATE(6140), 1, aux_sym__multiple_types_repeat1, - STATE(6666), 1, + STATE(6676), 1, sym_comment, - [229267] = 5, + [228762] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1560), 1, + anon_sym_RBRACK, + ACTIONS(1572), 1, sym__entry_separator, - ACTIONS(10692), 1, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token2, + STATE(6677), 1, + sym_comment, + [228778] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10625), 1, anon_sym_RBRACK, - STATE(6487), 1, + STATE(6141), 1, aux_sym__multiple_types_repeat1, - STATE(6667), 1, + STATE(6678), 1, sym_comment, - [229283] = 5, + [228794] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10694), 1, + ACTIONS(10627), 1, anon_sym_RBRACK, - STATE(6183), 1, + STATE(6142), 1, aux_sym__multiple_types_repeat1, - STATE(6668), 1, + STATE(6679), 1, sym_comment, - [229299] = 5, + [228810] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10696), 1, + ACTIONS(10629), 1, anon_sym_RBRACK, - STATE(6184), 1, + STATE(6143), 1, aux_sym__multiple_types_repeat1, - STATE(6669), 1, + STATE(6680), 1, sym_comment, - [229315] = 5, + [228826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10698), 1, + ACTIONS(10631), 1, anon_sym_RBRACK, - STATE(6185), 1, + STATE(6144), 1, aux_sym__multiple_types_repeat1, - STATE(6670), 1, + STATE(6681), 1, sym_comment, - [229331] = 5, + [228842] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4712), 1, - aux_sym_unquoted_token4, - STATE(6671), 1, + ACTIONS(4940), 1, + sym__space, + ACTIONS(4942), 1, + sym__newline, + ACTIONS(10633), 1, + anon_sym_EQ2, + STATE(6682), 1, sym_comment, - STATE(7427), 1, - sym__expr_parenthesized_immediate, - [229347] = 3, + [228858] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6672), 1, + ACTIONS(10635), 1, + anon_sym_PIPE, + ACTIONS(10638), 1, + anon_sym_EQ_GT, + STATE(6683), 2, sym_comment, - ACTIONS(10700), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229359] = 5, + aux_sym_match_pattern_repeat1, + [228872] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10702), 1, - anon_sym_RBRACK, - STATE(2569), 1, - aux_sym__multiple_types_repeat1, - STATE(6673), 1, + ACTIONS(10640), 1, + sym__table_head_separator, + STATE(6684), 1, sym_comment, - [229375] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10704), 1, + ACTIONS(1070), 2, anon_sym_RBRACK, - ACTIONS(10706), 1, - sym_hex_digit, - STATE(6674), 1, - sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [229391] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [228886] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - STATE(6675), 1, + ACTIONS(10642), 1, + anon_sym_POUND_BANG, + ACTIONS(10644), 1, + sym__newline, + STATE(6685), 1, sym_comment, - ACTIONS(1707), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [229405] = 3, + STATE(7028), 1, + aux_sym_shebang_repeat1, + [228902] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6676), 1, + STATE(6686), 1, sym_comment, - ACTIONS(10708), 3, + ACTIONS(9660), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [229417] = 5, + [228914] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, + ACTIONS(10555), 1, sym_hex_digit, - ACTIONS(10710), 1, + ACTIONS(10646), 1, anon_sym_RBRACK, - STATE(6677), 1, + STATE(6687), 1, sym_comment, - STATE(6682), 1, + STATE(6692), 1, aux_sym_val_binary_repeat1, - [229433] = 5, + [228930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10712), 1, + ACTIONS(10648), 1, anon_sym_RBRACK, - STATE(6381), 1, + STATE(6233), 1, aux_sym__multiple_types_repeat1, - STATE(6678), 1, + STATE(6688), 1, sym_comment, - [229449] = 5, + [228946] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10714), 1, + ACTIONS(10650), 1, anon_sym_RBRACK, - STATE(6638), 1, + STATE(6234), 1, aux_sym__multiple_types_repeat1, - STATE(6679), 1, + STATE(6689), 1, sym_comment, - [229465] = 3, + [228962] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6680), 1, + STATE(6690), 1, sym_comment, - ACTIONS(9797), 3, + ACTIONS(9692), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229477] = 5, + [228974] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(6844), 1, - aux_sym_unquoted_token4, - STATE(6681), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10652), 1, + anon_sym_RBRACK, + STATE(6235), 1, + aux_sym__multiple_types_repeat1, + STATE(6691), 1, sym_comment, - STATE(7371), 1, - sym__expr_parenthesized_immediate, - [229493] = 5, + [228990] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, + ACTIONS(10555), 1, sym_hex_digit, - ACTIONS(10716), 1, + ACTIONS(10654), 1, anon_sym_RBRACK, - STATE(6682), 1, + STATE(6692), 1, sym_comment, - STATE(7151), 1, + STATE(6970), 1, aux_sym_val_binary_repeat1, - [229509] = 4, + [229006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, - sym__entry_separator, - STATE(6683), 1, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + STATE(6693), 1, sym_comment, - ACTIONS(2404), 2, + ACTIONS(2229), 2, + sym_identifier, + anon_sym_DOLLAR, + [229020] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(5949), 1, anon_sym_RBRACE, - anon_sym__, - [229523] = 5, + STATE(2963), 1, + aux_sym__multiple_types_repeat1, + STATE(6694), 1, + sym_comment, + [229036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10718), 1, + ACTIONS(10656), 1, anon_sym_RBRACK, - STATE(6203), 1, + STATE(6159), 1, aux_sym__multiple_types_repeat1, - STATE(6684), 1, + STATE(6695), 1, sym_comment, - [229539] = 5, + [229052] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(2339), 1, + ACTIONS(5975), 1, anon_sym_RBRACE, - STATE(485), 1, + STATE(2904), 1, aux_sym__multiple_types_repeat1, - STATE(6685), 1, + STATE(6696), 1, sym_comment, - [229555] = 5, + [229068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10720), 1, + ACTIONS(10658), 1, anon_sym_RBRACK, - STATE(6204), 1, + STATE(6160), 1, aux_sym__multiple_types_repeat1, - STATE(6686), 1, + STATE(6697), 1, sym_comment, - [229571] = 5, + [229084] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10722), 1, + ACTIONS(10660), 1, anon_sym_RBRACK, - STATE(6205), 1, + STATE(6161), 1, aux_sym__multiple_types_repeat1, - STATE(6687), 1, + STATE(6698), 1, sym_comment, - [229587] = 5, + [229100] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10724), 1, + ACTIONS(10662), 1, anon_sym_RBRACK, - STATE(6206), 1, + STATE(6162), 1, aux_sym__multiple_types_repeat1, - STATE(6688), 1, + STATE(6699), 1, sym_comment, - [229603] = 5, + [229116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10726), 1, + ACTIONS(10664), 1, anon_sym_RBRACK, - STATE(6207), 1, + STATE(6163), 1, aux_sym__multiple_types_repeat1, - STATE(6689), 1, + STATE(6700), 1, sym_comment, - [229619] = 4, - ACTIONS(3), 1, + [229132] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1861), 1, - sym__entry_separator, - STATE(6690), 1, + STATE(6701), 1, sym_comment, - ACTIONS(1859), 2, - anon_sym_RBRACE, - anon_sym__, - [229633] = 5, + ACTIONS(9772), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229144] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6702), 1, + sym_comment, + ACTIONS(9920), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10728), 1, + ACTIONS(10666), 1, anon_sym_RBRACK, - STATE(6208), 1, + STATE(6164), 1, aux_sym__multiple_types_repeat1, - STATE(6691), 1, + STATE(6703), 1, sym_comment, - [229649] = 5, + [229172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10730), 1, + ACTIONS(10668), 1, anon_sym_RBRACK, - STATE(6209), 1, + STATE(6165), 1, aux_sym__multiple_types_repeat1, - STATE(6692), 1, + STATE(6704), 1, + sym_comment, + [229188] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4783), 1, + anon_sym_LBRACE, + ACTIONS(10670), 1, + anon_sym_EQ2, + ACTIONS(10672), 1, + sym_short_flag_identifier, + STATE(6705), 1, sym_comment, - [229665] = 5, + [229204] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10732), 1, + ACTIONS(10674), 1, anon_sym_RBRACK, - STATE(6210), 1, + STATE(6166), 1, aux_sym__multiple_types_repeat1, - STATE(6693), 1, + STATE(6706), 1, sym_comment, - [229681] = 3, + [229220] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6694), 1, + STATE(6707), 1, sym_comment, - ACTIONS(9797), 3, + ACTIONS(9714), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229693] = 3, + [229232] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6695), 1, + STATE(6708), 1, sym_comment, - ACTIONS(9793), 3, + ACTIONS(10352), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229705] = 5, + [229244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4299), 1, + ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(6696), 1, - sym_comment, - STATE(7403), 1, - sym__expr_parenthesized_immediate, - [229721] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1575), 1, - sym__newline, - ACTIONS(1587), 1, - sym__space, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - STATE(6697), 1, - sym_comment, - [229737] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6698), 1, + STATE(6709), 1, sym_comment, - ACTIONS(10734), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229749] = 5, + ACTIONS(1070), 2, + sym_identifier, + anon_sym_DOLLAR, + [229258] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_RBRACK, - ACTIONS(1587), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token2, - STATE(6699), 1, - sym_comment, - [229765] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6700), 1, + ACTIONS(10676), 1, + anon_sym_RBRACK, + STATE(2621), 1, + aux_sym__multiple_types_repeat1, + STATE(6710), 1, sym_comment, - ACTIONS(10736), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229777] = 5, + [229274] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, + ACTIONS(10555), 1, sym_hex_digit, - ACTIONS(10738), 1, + ACTIONS(10678), 1, anon_sym_RBRACK, - STATE(6701), 1, + STATE(6711), 1, sym_comment, - STATE(6705), 1, + STATE(6714), 1, aux_sym_val_binary_repeat1, - [229793] = 3, + [229290] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6702), 1, + STATE(6712), 1, sym_comment, - ACTIONS(9864), 3, + ACTIONS(9990), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229805] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6703), 1, - sym_comment, - ACTIONS(10740), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229817] = 5, + [229302] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(6790), 1, - aux_sym_unquoted_token4, - STATE(6704), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10680), 1, + anon_sym_RBRACK, + STATE(2622), 1, + aux_sym__multiple_types_repeat1, + STATE(6713), 1, sym_comment, - STATE(7339), 1, - sym__expr_parenthesized_immediate, - [229833] = 5, + [229318] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, + ACTIONS(10555), 1, sym_hex_digit, - ACTIONS(10742), 1, + ACTIONS(10682), 1, anon_sym_RBRACK, - STATE(6705), 1, + STATE(6714), 1, sym_comment, - STATE(7151), 1, + STATE(6970), 1, aux_sym_val_binary_repeat1, - [229849] = 5, + [229334] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10744), 1, + ACTIONS(10684), 1, anon_sym_RBRACK, - STATE(6220), 1, + STATE(6179), 1, aux_sym__multiple_types_repeat1, - STATE(6706), 1, + STATE(6715), 1, sym_comment, - [229865] = 3, + [229350] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6707), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10686), 1, + anon_sym_RBRACK, + STATE(6716), 1, sym_comment, - ACTIONS(9868), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229877] = 5, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [229366] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10746), 1, + ACTIONS(10688), 1, anon_sym_RBRACK, - STATE(6221), 1, + STATE(6180), 1, aux_sym__multiple_types_repeat1, - STATE(6708), 1, + STATE(6717), 1, sym_comment, - [229893] = 5, + [229382] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10748), 1, + ACTIONS(10690), 1, anon_sym_RBRACK, - STATE(6222), 1, + STATE(6181), 1, aux_sym__multiple_types_repeat1, - STATE(6709), 1, + STATE(6718), 1, sym_comment, - [229909] = 5, + [229398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10750), 1, + ACTIONS(10692), 1, anon_sym_RBRACK, - STATE(6223), 1, + STATE(6182), 1, aux_sym__multiple_types_repeat1, - STATE(6710), 1, - sym_comment, - [229925] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1869), 1, - sym__entry_separator, - STATE(6711), 1, + STATE(6719), 1, sym_comment, - ACTIONS(1867), 2, - anon_sym_RBRACE, - anon_sym__, - [229939] = 5, + [229414] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10752), 1, + ACTIONS(10694), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6183), 1, aux_sym__multiple_types_repeat1, - STATE(6712), 1, + STATE(6720), 1, sym_comment, - [229955] = 4, + [229430] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10754), 1, - anon_sym_EQ2, - STATE(6713), 1, + ACTIONS(9430), 1, + anon_sym_if, + ACTIONS(10696), 1, + anon_sym_EQ_GT, + STATE(6721), 1, sym_comment, - ACTIONS(4904), 2, - sym_identifier, - anon_sym_DOLLAR, - [229969] = 5, + STATE(7425), 1, + sym_match_guard, + [229446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10756), 1, + ACTIONS(10698), 1, anon_sym_RBRACK, - STATE(6225), 1, + STATE(6184), 1, aux_sym__multiple_types_repeat1, - STATE(6714), 1, + STATE(6722), 1, sym_comment, - [229985] = 5, + [229462] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10758), 1, + ACTIONS(10700), 1, anon_sym_RBRACK, - STATE(6226), 1, + STATE(6185), 1, aux_sym__multiple_types_repeat1, - STATE(6715), 1, + STATE(6723), 1, sym_comment, - [230001] = 4, + [229478] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1873), 1, + ACTIONS(2336), 1, sym__entry_separator, - STATE(6716), 1, - sym_comment, - ACTIONS(1871), 2, + ACTIONS(10702), 1, anon_sym_RBRACE, - anon_sym__, - [230015] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6717), 1, + STATE(554), 1, + aux_sym__multiple_types_repeat1, + STATE(6724), 1, sym_comment, - ACTIONS(10108), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230027] = 5, + [229494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10760), 1, + ACTIONS(10704), 1, anon_sym_RBRACK, - STATE(6227), 1, + STATE(6186), 1, aux_sym__multiple_types_repeat1, - STATE(6718), 1, - sym_comment, - [230043] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6719), 1, - sym_comment, - ACTIONS(9793), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230055] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6720), 1, - sym_comment, - ACTIONS(10138), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230067] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6721), 1, - sym_comment, - ACTIONS(1058), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [230079] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6722), 1, - sym_comment, - ACTIONS(9815), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230091] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6723), 1, + STATE(6725), 1, sym_comment, - ACTIONS(10762), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [230103] = 5, + [229510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(10764), 1, - anon_sym_RBRACK, - STATE(2594), 1, + ACTIONS(5977), 1, + anon_sym_RBRACE, + STATE(2905), 1, aux_sym__multiple_types_repeat1, - STATE(6724), 1, - sym_comment, - [230119] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6725), 1, - sym_comment, - ACTIONS(10628), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230131] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10766), 1, - anon_sym_RBRACK, STATE(6726), 1, sym_comment, - STATE(6730), 1, - aux_sym_val_binary_repeat1, - [230147] = 3, - ACTIONS(247), 1, + [229526] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(10706), 1, + anon_sym_RBRACE, + STATE(2887), 1, + aux_sym__multiple_types_repeat1, STATE(6727), 1, sym_comment, - ACTIONS(10506), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230159] = 3, + [229542] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6728), 1, sym_comment, - ACTIONS(10510), 3, - ts_builtin_sym_end, + ACTIONS(10708), 3, sym__newline, anon_sym_SEMI, - [230171] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [229554] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2336), 1, + sym__entry_separator, + ACTIONS(10710), 1, + anon_sym_RBRACE, + STATE(520), 1, + aux_sym__multiple_types_repeat1, STATE(6729), 1, sym_comment, - ACTIONS(9846), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230183] = 5, - ACTIONS(247), 1, + [229570] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10768), 1, - anon_sym_RBRACK, + ACTIONS(2336), 1, + sym__entry_separator, + ACTIONS(10712), 1, + anon_sym_RBRACE, + STATE(555), 1, + aux_sym__multiple_types_repeat1, STATE(6730), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [230199] = 5, + [229586] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4735), 1, - anon_sym_in, - ACTIONS(10770), 1, - sym_long_flag_identifier, - ACTIONS(10772), 1, - anon_sym_EQ2, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10714), 1, + anon_sym_RBRACK, STATE(6731), 1, sym_comment, - [230215] = 3, + STATE(6732), 1, + aux_sym_val_binary_repeat1, + [229602] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10716), 1, + anon_sym_RBRACK, STATE(6732), 1, sym_comment, - ACTIONS(9882), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230227] = 5, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [229618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10774), 1, + ACTIONS(10718), 1, anon_sym_RBRACK, - STATE(6244), 1, + STATE(6202), 1, aux_sym__multiple_types_repeat1, STATE(6733), 1, sym_comment, - [230243] = 3, + [229634] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6734), 1, sym_comment, - ACTIONS(9882), 3, + ACTIONS(10516), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230255] = 3, - ACTIONS(247), 1, + [229646] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10720), 1, + anon_sym_RBRACK, + STATE(6203), 1, + aux_sym__multiple_types_repeat1, STATE(6735), 1, sym_comment, - ACTIONS(10030), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230267] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - STATE(6736), 1, - sym_comment, - ACTIONS(2162), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230281] = 5, + [229662] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10776), 1, + ACTIONS(10722), 1, anon_sym_RBRACK, - STATE(6245), 1, + STATE(6204), 1, aux_sym__multiple_types_repeat1, - STATE(6737), 1, + STATE(6736), 1, sym_comment, - [230297] = 5, + [229678] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10778), 1, + ACTIONS(10724), 1, anon_sym_RBRACK, - STATE(6246), 1, + STATE(6205), 1, aux_sym__multiple_types_repeat1, - STATE(6738), 1, + STATE(6737), 1, sym_comment, - [230313] = 5, + [229694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10780), 1, + ACTIONS(10726), 1, anon_sym_RBRACK, - STATE(6247), 1, + STATE(6206), 1, aux_sym__multiple_types_repeat1, - STATE(6739), 1, + STATE(6738), 1, sym_comment, - [230329] = 5, + [229710] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(7587), 1, - anon_sym_EQ, - STATE(5042), 1, - sym_param_cmd, - STATE(6740), 1, + STATE(6739), 1, sym_comment, - [230345] = 5, + ACTIONS(10516), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10782), 1, + ACTIONS(10728), 1, anon_sym_RBRACK, - STATE(6248), 1, + STATE(6207), 1, aux_sym__multiple_types_repeat1, - STATE(6741), 1, + STATE(6740), 1, sym_comment, - [230361] = 5, + [229738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10784), 1, + ACTIONS(10730), 1, anon_sym_RBRACK, - STATE(6572), 1, + STATE(6208), 1, aux_sym__multiple_types_repeat1, + STATE(6741), 1, + sym_comment, + [229754] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8350), 1, + aux_sym_unquoted_token2, STATE(6742), 1, sym_comment, - [230377] = 5, + ACTIONS(1572), 2, + sym_identifier, + anon_sym_DOLLAR, + [229768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10786), 1, + ACTIONS(10732), 1, anon_sym_RBRACK, - STATE(6586), 1, + STATE(6209), 1, aux_sym__multiple_types_repeat1, STATE(6743), 1, sym_comment, - [230393] = 5, - ACTIONS(3), 1, + [229784] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10788), 1, - anon_sym_RBRACK, - STATE(6249), 1, - aux_sym__multiple_types_repeat1, STATE(6744), 1, sym_comment, - [230409] = 5, - ACTIONS(3), 1, + ACTIONS(10734), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229796] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10790), 1, - anon_sym_RBRACK, - STATE(6250), 1, - aux_sym__multiple_types_repeat1, STATE(6745), 1, sym_comment, - [230425] = 5, - ACTIONS(3), 1, + ACTIONS(10736), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229808] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10792), 1, - anon_sym_RBRACK, - STATE(6587), 1, - aux_sym__multiple_types_repeat1, STATE(6746), 1, sym_comment, - [230441] = 3, + ACTIONS(10000), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229820] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(10738), 1, + anon_sym_GT, STATE(6747), 1, sym_comment, - ACTIONS(9815), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230453] = 5, + STATE(7419), 1, + sym_param_cmd, + [229836] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, + STATE(6748), 1, + sym_comment, + ACTIONS(1572), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [229850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10794), 1, + ACTIONS(10740), 1, anon_sym_RBRACK, - STATE(6251), 1, + STATE(6334), 1, aux_sym__multiple_types_repeat1, - STATE(6748), 1, - sym_comment, - [230469] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(6749), 1, sym_comment, - ACTIONS(9900), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230481] = 3, + [229866] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3705), 1, + sym__newline, + ACTIONS(10742), 1, + anon_sym_COLON, + STATE(749), 1, + aux_sym_shebang_repeat1, STATE(6750), 1, sym_comment, - ACTIONS(10642), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230493] = 3, + [229882] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10744), 1, + anon_sym_RBRACK, STATE(6751), 1, sym_comment, - ACTIONS(10014), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230505] = 5, + STATE(6756), 1, + aux_sym_val_binary_repeat1, + [229898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(10796), 1, - anon_sym_RBRACK, - STATE(2587), 1, + ACTIONS(5913), 1, + anon_sym_RBRACE, + STATE(2895), 1, aux_sym__multiple_types_repeat1, STATE(6752), 1, sym_comment, - [230521] = 3, - ACTIONS(247), 1, + [229914] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10746), 1, + anon_sym_RBRACK, + STATE(6338), 1, + aux_sym__multiple_types_repeat1, STATE(6753), 1, sym_comment, - ACTIONS(10142), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230533] = 5, - ACTIONS(247), 1, + [229930] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10798), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10748), 1, anon_sym_RBRACK, + STATE(6342), 1, + aux_sym__multiple_types_repeat1, STATE(6754), 1, sym_comment, - STATE(6758), 1, - aux_sym_val_binary_repeat1, - [230549] = 5, + [229946] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(10800), 1, - anon_sym_GT, STATE(6755), 1, sym_comment, - STATE(7708), 1, - sym_param_cmd, - [230565] = 4, + ACTIONS(10000), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229958] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10750), 1, + anon_sym_RBRACK, STATE(6756), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230579] = 4, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [229974] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, + ACTIONS(5903), 1, sym__entry_separator, + ACTIONS(5915), 1, + anon_sym_RBRACE, + STATE(2896), 1, + aux_sym__multiple_types_repeat1, STATE(6757), 1, sym_comment, - ACTIONS(2218), 2, - anon_sym_RBRACE, - anon_sym__, - [230593] = 5, + [229990] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10802), 1, - anon_sym_RBRACK, STATE(6758), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [230609] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6759), 1, - sym_comment, - ACTIONS(9994), 3, + ACTIONS(10022), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230621] = 3, - ACTIONS(247), 1, + [230002] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10752), 1, + anon_sym_RBRACK, + STATE(6223), 1, + aux_sym__multiple_types_repeat1, + STATE(6759), 1, + sym_comment, + [230018] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10754), 1, + anon_sym_RBRACK, + STATE(6224), 1, + aux_sym__multiple_types_repeat1, STATE(6760), 1, sym_comment, - ACTIONS(10610), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230633] = 5, + [230034] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10804), 1, + ACTIONS(10756), 1, anon_sym_RBRACK, - STATE(6262), 1, + STATE(6225), 1, aux_sym__multiple_types_repeat1, STATE(6761), 1, sym_comment, - [230649] = 5, + [230050] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(6930), 1, - aux_sym_unquoted_token4, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10758), 1, + anon_sym_RBRACK, + STATE(6226), 1, + aux_sym__multiple_types_repeat1, STATE(6762), 1, sym_comment, - STATE(7317), 1, - sym__expr_parenthesized_immediate, - [230665] = 5, + [230066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(10806), 1, - anon_sym_EQ2, - ACTIONS(10808), 1, - sym_short_flag_identifier, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, STATE(6763), 1, sym_comment, - [230681] = 5, + ACTIONS(2289), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230080] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10810), 1, - anon_sym_POUND_BANG, - ACTIONS(10812), 1, - sym__newline, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10760), 1, + anon_sym_RBRACK, + STATE(6227), 1, + aux_sym__multiple_types_repeat1, STATE(6764), 1, sym_comment, - STATE(7289), 1, - aux_sym_shebang_repeat1, - [230697] = 5, + [230096] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10814), 1, + ACTIONS(10762), 1, anon_sym_RBRACK, - STATE(6263), 1, + STATE(6228), 1, aux_sym__multiple_types_repeat1, STATE(6765), 1, sym_comment, - [230713] = 5, - ACTIONS(3), 1, + [230112] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10816), 1, - anon_sym_RBRACK, - STATE(6264), 1, - aux_sym__multiple_types_repeat1, STATE(6766), 1, sym_comment, - [230729] = 5, + ACTIONS(10549), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230124] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(10764), 1, + anon_sym_GT, + STATE(6767), 1, + sym_comment, + STATE(7434), 1, + sym_param_cmd, + [230140] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10818), 1, + ACTIONS(10766), 1, anon_sym_RBRACK, - STATE(6265), 1, + STATE(6229), 1, aux_sym__multiple_types_repeat1, - STATE(6767), 1, - sym_comment, - [230745] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10820), 1, - anon_sym_LBRACK, - STATE(7441), 1, - sym_val_list, - STATE(6768), 2, + STATE(6768), 1, sym_comment, - aux_sym_val_table_repeat1, - [230759] = 5, + [230156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10823), 1, + ACTIONS(10768), 1, anon_sym_RBRACK, - STATE(6266), 1, + STATE(6134), 1, aux_sym__multiple_types_repeat1, STATE(6769), 1, sym_comment, - [230775] = 3, + [230172] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6770), 1, sym_comment, - ACTIONS(10496), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230787] = 5, - ACTIONS(3), 1, + ACTIONS(10770), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230184] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10825), 1, - anon_sym_RBRACK, - STATE(6267), 1, - aux_sym__multiple_types_repeat1, STATE(6771), 1, sym_comment, - [230803] = 5, - ACTIONS(3), 1, + ACTIONS(5889), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230196] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10827), 1, - anon_sym_RBRACK, - STATE(6268), 1, - aux_sym__multiple_types_repeat1, STATE(6772), 1, sym_comment, - [230819] = 3, + ACTIONS(6033), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230208] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10772), 1, + anon_sym_RBRACK, STATE(6773), 1, sym_comment, - ACTIONS(1062), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [230831] = 3, + STATE(6778), 1, + aux_sym_val_binary_repeat1, + [230224] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6774), 1, sym_comment, - ACTIONS(1054), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [230843] = 5, + ACTIONS(6037), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(7673), 1, sym__entry_separator, - ACTIONS(10829), 1, + ACTIONS(7677), 1, anon_sym_RBRACK, - STATE(6269), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10774), 1, + anon_sym_LT, STATE(6775), 1, sym_comment, - [230859] = 3, + [230252] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6776), 1, sym_comment, - ACTIONS(10104), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230871] = 3, - ACTIONS(247), 1, + ACTIONS(5895), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230264] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7673), 1, + sym__entry_separator, + ACTIONS(7677), 1, + anon_sym_RBRACK, + ACTIONS(10776), 1, + anon_sym_LT, STATE(6777), 1, sym_comment, - ACTIONS(10498), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230883] = 3, + [230280] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10778), 1, + anon_sym_RBRACK, STATE(6778), 1, sym_comment, - ACTIONS(10632), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230895] = 4, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [230296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10780), 1, + anon_sym_RBRACK, + STATE(6241), 1, + aux_sym__multiple_types_repeat1, STATE(6779), 1, sym_comment, - ACTIONS(2477), 2, - anon_sym_RBRACE, - anon_sym__, - [230909] = 5, - ACTIONS(3), 1, + [230312] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10831), 1, - anon_sym_RBRACK, - STATE(6232), 1, - aux_sym__multiple_types_repeat1, STATE(6780), 1, sym_comment, - [230925] = 4, + ACTIONS(10782), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230324] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10784), 1, + anon_sym_RBRACK, + STATE(6242), 1, + aux_sym__multiple_types_repeat1, STATE(6781), 1, sym_comment, - ACTIONS(2449), 2, - anon_sym_RBRACE, - anon_sym__, - [230939] = 5, - ACTIONS(247), 1, + [230340] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10833), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10786), 1, anon_sym_RBRACK, + STATE(6243), 1, + aux_sym__multiple_types_repeat1, STATE(6782), 1, sym_comment, - STATE(6787), 1, - aux_sym_val_binary_repeat1, - [230955] = 3, - ACTIONS(247), 1, + [230356] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10788), 1, + anon_sym_RBRACK, + STATE(6244), 1, + aux_sym__multiple_types_repeat1, STATE(6783), 1, sym_comment, - ACTIONS(10498), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230967] = 3, + [230372] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6784), 1, sym_comment, - ACTIONS(8672), 3, + ACTIONS(9658), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230979] = 4, + [230384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10790), 1, + anon_sym_RBRACK, + STATE(6245), 1, + aux_sym__multiple_types_repeat1, STATE(6785), 1, sym_comment, - ACTIONS(2481), 2, - anon_sym_RBRACE, - anon_sym__, - [230993] = 3, + [230400] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6786), 1, sym_comment, - ACTIONS(8686), 3, + ACTIONS(9736), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231005] = 5, - ACTIONS(247), 1, + [230412] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10835), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10792), 1, anon_sym_RBRACK, + STATE(6246), 1, + aux_sym__multiple_types_repeat1, STATE(6787), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [231021] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6788), 1, - sym_comment, - ACTIONS(10500), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231033] = 5, + [230428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10837), 1, + ACTIONS(10794), 1, anon_sym_RBRACK, - STATE(6282), 1, + STATE(6247), 1, aux_sym__multiple_types_repeat1, + STATE(6788), 1, + sym_comment, + [230444] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, STATE(6789), 1, sym_comment, - [231049] = 4, + ACTIONS(2301), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10796), 1, + anon_sym_RBRACK, + STATE(6248), 1, + aux_sym__multiple_types_repeat1, STATE(6790), 1, sym_comment, - ACTIONS(2035), 2, - anon_sym_RBRACE, - anon_sym__, - [231063] = 3, + [230474] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6791), 1, sym_comment, - ACTIONS(10104), 3, + ACTIONS(9934), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231075] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10839), 1, - anon_sym_RBRACK, - STATE(6283), 1, - aux_sym__multiple_types_repeat1, - STATE(6792), 1, - sym_comment, - [231091] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10841), 1, - anon_sym_RBRACK, - STATE(6284), 1, - aux_sym__multiple_types_repeat1, - STATE(6793), 1, - sym_comment, - [231107] = 5, + [230486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10843), 1, + ACTIONS(10798), 1, anon_sym_RBRACK, - STATE(6285), 1, + STATE(6467), 1, aux_sym__multiple_types_repeat1, - STATE(6794), 1, + STATE(6792), 1, sym_comment, - [231123] = 3, + [230502] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6795), 1, + STATE(6793), 1, + sym_comment, + ACTIONS(9770), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230514] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6794), 1, sym_comment, - ACTIONS(9765), 3, + ACTIONS(9936), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231135] = 5, + [230526] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10800), 1, + anon_sym_RBRACK, + STATE(6795), 1, + sym_comment, + STATE(6797), 1, + aux_sym_val_binary_repeat1, + [230542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10845), 1, + ACTIONS(10802), 1, anon_sym_RBRACK, - STATE(6286), 1, + STATE(6374), 1, aux_sym__multiple_types_repeat1, STATE(6796), 1, sym_comment, - [231151] = 3, + [230558] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10804), 1, + anon_sym_RBRACK, STATE(6797), 1, sym_comment, - ACTIONS(9781), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231163] = 5, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [230574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10847), 1, + ACTIONS(10806), 1, anon_sym_RBRACK, - STATE(6287), 1, + STATE(6261), 1, aux_sym__multiple_types_repeat1, STATE(6798), 1, sym_comment, - [231179] = 5, + [230590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10849), 1, + ACTIONS(10808), 1, anon_sym_RBRACK, - STATE(6288), 1, + STATE(6262), 1, aux_sym__multiple_types_repeat1, STATE(6799), 1, sym_comment, - [231195] = 5, + [230606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10851), 1, + ACTIONS(10810), 1, anon_sym_RBRACK, - STATE(6289), 1, + STATE(6263), 1, aux_sym__multiple_types_repeat1, STATE(6800), 1, sym_comment, - [231211] = 5, + [230622] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10853), 1, - anon_sym_RBRACE, - STATE(469), 1, + ACTIONS(10812), 1, + anon_sym_RBRACK, + STATE(6264), 1, aux_sym__multiple_types_repeat1, STATE(6801), 1, sym_comment, - [231227] = 5, - ACTIONS(247), 1, + [230638] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(10855), 1, - anon_sym_GT, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10814), 1, + anon_sym_RBRACK, + STATE(6265), 1, + aux_sym__multiple_types_repeat1, STATE(6802), 1, sym_comment, - STATE(7550), 1, - sym_param_cmd, - [231243] = 3, - ACTIONS(247), 1, + [230654] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10816), 1, + anon_sym_RBRACK, + STATE(6266), 1, + aux_sym__multiple_types_repeat1, STATE(6803), 1, sym_comment, - ACTIONS(9874), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231255] = 3, - ACTIONS(247), 1, + [230670] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10818), 1, + anon_sym_RBRACK, + STATE(6267), 1, + aux_sym__multiple_types_repeat1, STATE(6804), 1, sym_comment, - ACTIONS(10110), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231267] = 4, - ACTIONS(3), 1, + [230686] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2049), 1, - sym__entry_separator, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, STATE(6805), 1, sym_comment, - ACTIONS(2043), 2, - anon_sym_RBRACE, - anon_sym__, - [231281] = 5, - ACTIONS(247), 1, + ACTIONS(1796), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230700] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10857), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10820), 1, anon_sym_RBRACK, + STATE(6268), 1, + aux_sym__multiple_types_repeat1, STATE(6806), 1, sym_comment, - STATE(6810), 1, - aux_sym_val_binary_repeat1, - [231297] = 3, - ACTIONS(247), 1, + [230716] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5903), 1, + sym__entry_separator, + ACTIONS(10822), 1, + anon_sym_RBRACE, + STATE(2891), 1, + aux_sym__multiple_types_repeat1, STATE(6807), 1, sym_comment, - ACTIONS(10610), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231309] = 3, + [230732] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6808), 1, sym_comment, - ACTIONS(10610), 3, + ACTIONS(10364), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231321] = 5, - ACTIONS(247), 1, + [230744] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10859), 1, - anon_sym_RBRACK, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + ACTIONS(10824), 1, + sym__space, STATE(6809), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [231337] = 5, + [230760] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10861), 1, - anon_sym_RBRACK, STATE(6810), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [231353] = 5, + ACTIONS(10826), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5903), 1, sym__entry_separator, - ACTIONS(10863), 1, - anon_sym_RBRACK, - STATE(6299), 1, + ACTIONS(10828), 1, + anon_sym_RBRACE, + STATE(2892), 1, aux_sym__multiple_types_repeat1, STATE(6811), 1, sym_comment, - [231369] = 3, + [230788] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6812), 1, sym_comment, - ACTIONS(10218), 3, + ACTIONS(10366), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231381] = 5, + [230800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10865), 1, + ACTIONS(10830), 1, anon_sym_RBRACK, - STATE(6300), 1, + STATE(6278), 1, aux_sym__multiple_types_repeat1, STATE(6813), 1, sym_comment, - [231397] = 5, - ACTIONS(3), 1, + [230816] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10867), 1, - anon_sym_RBRACK, - STATE(6301), 1, - aux_sym__multiple_types_repeat1, STATE(6814), 1, sym_comment, - [231413] = 5, + ACTIONS(10368), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10869), 1, + ACTIONS(10832), 1, anon_sym_RBRACK, - STATE(6302), 1, + STATE(6279), 1, aux_sym__multiple_types_repeat1, STATE(6815), 1, sym_comment, - [231429] = 4, + [230844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10834), 1, + anon_sym_RBRACK, + STATE(6280), 1, + aux_sym__multiple_types_repeat1, STATE(6816), 1, sym_comment, - ACTIONS(2408), 2, - anon_sym_RBRACE, - anon_sym__, - [231443] = 5, + [230860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10871), 1, + ACTIONS(10836), 1, anon_sym_RBRACK, - STATE(6303), 1, + STATE(6281), 1, aux_sym__multiple_types_repeat1, STATE(6817), 1, sym_comment, - [231459] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(10873), 1, - anon_sym_GT, - STATE(6818), 1, - sym_comment, - STATE(7722), 1, - sym_param_cmd, - [231475] = 5, + [230876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10875), 1, + ACTIONS(10838), 1, anon_sym_RBRACK, - STATE(6304), 1, + STATE(6282), 1, aux_sym__multiple_types_repeat1, + STATE(6818), 1, + sym_comment, + [230892] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6819), 1, sym_comment, - [231491] = 5, + ACTIONS(10372), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230904] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10877), 1, - anon_sym_RBRACK, - STATE(6305), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1562), 1, + anon_sym_LPAREN2, + ACTIONS(1687), 1, + aux_sym__unquoted_in_record_token4, STATE(6820), 1, sym_comment, - [231507] = 4, + STATE(7285), 1, + sym__expr_parenthesized_immediate, + [230920] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10840), 1, + anon_sym_RBRACK, + STATE(6283), 1, + aux_sym__multiple_types_repeat1, STATE(6821), 1, sym_comment, - ACTIONS(1890), 2, - anon_sym_RBRACE, - anon_sym__, - [231521] = 5, + [230936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10879), 1, + ACTIONS(10842), 1, anon_sym_RBRACK, - STATE(6306), 1, + STATE(6284), 1, aux_sym__multiple_types_repeat1, STATE(6822), 1, sym_comment, - [231537] = 5, + [230952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10881), 1, + ACTIONS(10844), 1, anon_sym_RBRACK, - STATE(6612), 1, + STATE(6285), 1, aux_sym__multiple_types_repeat1, STATE(6823), 1, sym_comment, - [231553] = 4, + [230968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(5903), 1, sym__entry_separator, + ACTIONS(10846), 1, + anon_sym_RBRACE, + STATE(2928), 1, + aux_sym__multiple_types_repeat1, STATE(6824), 1, sym_comment, - ACTIONS(2485), 2, - anon_sym_RBRACE, - anon_sym__, - [231567] = 4, - ACTIONS(3), 1, + [230984] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2414), 1, - sym__entry_separator, STATE(6825), 1, sym_comment, - ACTIONS(2412), 2, - anon_sym_RBRACE, - anon_sym__, - [231581] = 5, - ACTIONS(3), 1, + ACTIONS(10391), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230996] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10883), 1, - anon_sym_RBRACK, - STATE(6613), 1, - aux_sym__multiple_types_repeat1, STATE(6826), 1, sym_comment, - [231597] = 5, + ACTIONS(10397), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231008] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10885), 1, + ACTIONS(10848), 1, anon_sym_RBRACK, - STATE(6614), 1, + STATE(6293), 1, aux_sym__multiple_types_repeat1, STATE(6827), 1, sym_comment, - [231613] = 4, - ACTIONS(3), 1, + [231024] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2057), 1, - sym__entry_separator, STATE(6828), 1, sym_comment, - ACTIONS(2051), 2, - anon_sym_RBRACE, - anon_sym__, - [231627] = 4, + ACTIONS(10393), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10850), 1, + anon_sym_RBRACK, + STATE(6294), 1, + aux_sym__multiple_types_repeat1, STATE(6829), 1, sym_comment, - ACTIONS(2416), 2, - anon_sym_RBRACE, - anon_sym__, - [231641] = 3, - ACTIONS(247), 1, + [231052] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10852), 1, + anon_sym_RBRACK, + STATE(6295), 1, + aux_sym__multiple_types_repeat1, STATE(6830), 1, sym_comment, - ACTIONS(5649), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231653] = 4, + [231068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10854), 1, + anon_sym_RBRACK, + STATE(6296), 1, + aux_sym__multiple_types_repeat1, STATE(6831), 1, sym_comment, - ACTIONS(1894), 2, - anon_sym_RBRACE, - anon_sym__, - [231667] = 5, - ACTIONS(247), 1, + [231084] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10887), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10856), 1, anon_sym_RBRACK, + STATE(6297), 1, + aux_sym__multiple_types_repeat1, STATE(6832), 1, sym_comment, - STATE(6835), 1, - aux_sym_val_binary_repeat1, - [231683] = 5, + [231100] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6667), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, STATE(6833), 1, sym_comment, - [231699] = 4, + ACTIONS(5651), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231112] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10889), 1, - anon_sym_EQ2, STATE(6834), 1, sym_comment, - ACTIONS(4914), 2, - sym_identifier, - anon_sym_DOLLAR, - [231713] = 5, - ACTIONS(247), 1, + ACTIONS(10524), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231124] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10891), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10858), 1, anon_sym_RBRACK, + STATE(6298), 1, + aux_sym__multiple_types_repeat1, STATE(6835), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [231729] = 4, + [231140] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10860), 1, + anon_sym_RBRACK, + STATE(6299), 1, + aux_sym__multiple_types_repeat1, STATE(6836), 1, sym_comment, - ACTIONS(1945), 2, - anon_sym_RBRACE, - anon_sym__, - [231743] = 5, + [231156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10893), 1, + ACTIONS(10862), 1, anon_sym_RBRACK, - STATE(6317), 1, + STATE(6300), 1, aux_sym__multiple_types_repeat1, STATE(6837), 1, sym_comment, - [231759] = 4, - ACTIONS(3), 1, + [231172] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10897), 1, - sym__entry_separator, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(7760), 1, + anon_sym_EQ, + STATE(5133), 1, + sym_param_cmd, STATE(6838), 1, sym_comment, - ACTIONS(10895), 2, - anon_sym_RBRACE, - anon_sym__, - [231773] = 3, + [231188] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, STATE(6839), 1, sym_comment, - ACTIONS(10128), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231785] = 5, - ACTIONS(3), 1, + ACTIONS(1786), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [231202] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10899), 1, - anon_sym_RBRACK, - STATE(6318), 1, - aux_sym__multiple_types_repeat1, STATE(6840), 1, sym_comment, - [231801] = 5, - ACTIONS(3), 1, + ACTIONS(9938), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231214] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10901), 1, - anon_sym_RBRACK, - STATE(6319), 1, - aux_sym__multiple_types_repeat1, STATE(6841), 1, sym_comment, - [231817] = 5, - ACTIONS(3), 1, + ACTIONS(9938), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231226] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10903), 1, - anon_sym_RBRACK, - STATE(6320), 1, - aux_sym__multiple_types_repeat1, STATE(6842), 1, sym_comment, - [231833] = 5, + ACTIONS(9820), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231238] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9567), 1, - anon_sym_if, - ACTIONS(10905), 1, - anon_sym_EQ_GT, STATE(6843), 1, sym_comment, - STATE(7747), 1, - sym_match_guard, - [231849] = 5, + ACTIONS(10524), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10907), 1, + ACTIONS(10864), 1, anon_sym_RBRACK, - STATE(6321), 1, + STATE(2657), 1, aux_sym__multiple_types_repeat1, STATE(6844), 1, sym_comment, - [231865] = 4, - ACTIONS(3), 1, + [231266] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2491), 1, - sym__entry_separator, STATE(6845), 1, sym_comment, - ACTIONS(2489), 2, - anon_sym_RBRACE, - anon_sym__, - [231879] = 4, + ACTIONS(9732), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2422), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10866), 1, + anon_sym_RBRACK, + STATE(6307), 1, + aux_sym__multiple_types_repeat1, STATE(6846), 1, sym_comment, - ACTIONS(2420), 2, - anon_sym_RBRACE, - anon_sym__, - [231893] = 5, - ACTIONS(3), 1, + [231294] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10909), 1, - anon_sym_RBRACK, - STATE(6322), 1, - aux_sym__multiple_types_repeat1, STATE(6847), 1, sym_comment, - [231909] = 5, + ACTIONS(9852), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231306] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10911), 1, + ACTIONS(10868), 1, anon_sym_RBRACK, - STATE(6323), 1, + STATE(6308), 1, aux_sym__multiple_types_repeat1, STATE(6848), 1, sym_comment, - [231925] = 5, + [231322] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10913), 1, + ACTIONS(10870), 1, anon_sym_RBRACK, - STATE(6324), 1, + STATE(6309), 1, aux_sym__multiple_types_repeat1, STATE(6849), 1, sym_comment, - [231941] = 4, + [231338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2426), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10872), 1, + anon_sym_RBRACK, + STATE(6310), 1, + aux_sym__multiple_types_repeat1, STATE(6850), 1, sym_comment, - ACTIONS(2424), 2, - anon_sym_RBRACE, - anon_sym__, - [231955] = 4, + [231354] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10874), 1, + anon_sym_RBRACK, + STATE(6311), 1, + aux_sym__multiple_types_repeat1, STATE(6851), 1, sym_comment, - ACTIONS(1949), 2, - anon_sym_RBRACE, - anon_sym__, - [231969] = 3, + [231370] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10876), 1, + anon_sym_EQ2, STATE(6852), 1, sym_comment, - ACTIONS(10614), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231981] = 4, - ACTIONS(247), 1, + ACTIONS(4898), 2, + sym_identifier, + anon_sym_DOLLAR, + [231384] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1343), 1, - anon_sym_RPAREN, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10878), 1, + anon_sym_RBRACK, + STATE(6312), 1, + aux_sym__multiple_types_repeat1, STATE(6853), 1, sym_comment, - ACTIONS(1340), 2, - sym__newline, - anon_sym_SEMI, - [231995] = 5, + [231400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, - ACTIONS(5747), 1, - anon_sym_EQ_GT, - ACTIONS(5869), 1, - anon_sym_PIPE, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10880), 1, + anon_sym_RBRACK, + STATE(6313), 1, + aux_sym__multiple_types_repeat1, STATE(6854), 1, sym_comment, - [232011] = 4, + [231416] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10882), 1, + anon_sym_RBRACK, + STATE(6314), 1, + aux_sym__multiple_types_repeat1, STATE(6855), 1, sym_comment, - ACTIONS(2493), 2, - anon_sym_RBRACE, - anon_sym__, - [232025] = 4, - ACTIONS(3), 1, + [231432] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2430), 1, - sym__entry_separator, STATE(6856), 1, sym_comment, - ACTIONS(2428), 2, - anon_sym_RBRACE, - anon_sym__, - [232039] = 3, + ACTIONS(10534), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231444] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6857), 1, sym_comment, - ACTIONS(10915), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232051] = 5, - ACTIONS(3), 1, + ACTIONS(9704), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231456] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2317), 1, - sym__entry_separator, - ACTIONS(10917), 1, - anon_sym_RBRACE, - STATE(470), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token41, STATE(6858), 1, sym_comment, - [232067] = 5, - ACTIONS(247), 1, + ACTIONS(10884), 2, + sym_filesize_unit, + sym_duration_unit, + [231470] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10919), 1, - anon_sym_RBRACK, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, STATE(6859), 1, sym_comment, - STATE(6864), 1, - aux_sym_val_binary_repeat1, - [232083] = 5, + ACTIONS(2237), 2, + sym_identifier, + anon_sym_DOLLAR, + [231484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5547), 1, sym__entry_separator, - ACTIONS(10921), 1, + ACTIONS(10886), 1, anon_sym_RBRACK, - STATE(6171), 1, + STATE(2623), 1, aux_sym__multiple_types_repeat1, STATE(6860), 1, sym_comment, - [232099] = 3, - ACTIONS(247), 1, + [231500] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(10888), 1, + anon_sym_RBRACK, + STATE(2618), 1, + aux_sym__multiple_types_repeat1, STATE(6861), 1, sym_comment, - ACTIONS(5863), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232111] = 3, - ACTIONS(247), 1, + [231516] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10890), 1, + anon_sym_RBRACK, + STATE(6321), 1, + aux_sym__multiple_types_repeat1, STATE(6862), 1, sym_comment, - ACTIONS(6025), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232123] = 4, + [231532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(5547), 1, sym__entry_separator, + ACTIONS(10892), 1, + anon_sym_RBRACK, + STATE(2619), 1, + aux_sym__multiple_types_repeat1, STATE(6863), 1, sym_comment, - ACTIONS(2380), 2, - anon_sym_RBRACE, - anon_sym__, - [232137] = 5, - ACTIONS(247), 1, + [231548] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10923), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10894), 1, anon_sym_RBRACK, + STATE(6322), 1, + aux_sym__multiple_types_repeat1, STATE(6864), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [232153] = 5, + [231564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10925), 1, + ACTIONS(10896), 1, anon_sym_RBRACK, - STATE(6336), 1, + STATE(6323), 1, aux_sym__multiple_types_repeat1, STATE(6865), 1, sym_comment, - [232169] = 5, + [231580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10927), 1, + ACTIONS(10898), 1, anon_sym_RBRACK, - STATE(6337), 1, + STATE(6324), 1, aux_sym__multiple_types_repeat1, STATE(6866), 1, sym_comment, - [232185] = 5, + [231596] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(6361), 1, sym__entry_separator, - ACTIONS(10929), 1, + ACTIONS(10900), 1, anon_sym_RBRACK, - STATE(6338), 1, + STATE(3409), 1, aux_sym__multiple_types_repeat1, STATE(6867), 1, sym_comment, - [232201] = 5, + [231612] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10931), 1, + ACTIONS(10902), 1, anon_sym_RBRACK, - STATE(6339), 1, + STATE(6325), 1, aux_sym__multiple_types_repeat1, STATE(6868), 1, sym_comment, - [232217] = 4, + [231628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2434), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(10904), 1, + anon_sym_RBRACK, + STATE(6326), 1, + aux_sym__multiple_types_repeat1, STATE(6869), 1, sym_comment, - ACTIONS(2432), 2, - anon_sym_RBRACE, - anon_sym__, - [232231] = 5, + [231644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10933), 1, + ACTIONS(10906), 1, anon_sym_RBRACK, - STATE(6340), 1, + STATE(6327), 1, aux_sym__multiple_types_repeat1, STATE(6870), 1, sym_comment, - [232247] = 5, - ACTIONS(247), 1, + [231660] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10908), 1, + anon_sym_RBRACK, + STATE(6328), 1, + aux_sym__multiple_types_repeat1, STATE(6871), 1, sym_comment, - STATE(7014), 1, - sym_val_list, - [232263] = 5, - ACTIONS(3), 1, + [231676] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4904), 1, - sym__space, - ACTIONS(4906), 1, - sym__newline, - ACTIONS(10935), 1, - anon_sym_EQ2, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10910), 1, + anon_sym_RBRACK, STATE(6872), 1, sym_comment, - [232279] = 5, + STATE(6879), 1, + aux_sym_val_binary_repeat1, + [231692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10937), 1, - anon_sym_RBRACK, - STATE(6341), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, STATE(6873), 1, sym_comment, - [232295] = 5, + ACTIONS(2245), 2, + sym_identifier, + anon_sym_DOLLAR, + [231706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10939), 1, + ACTIONS(10912), 1, anon_sym_RBRACK, - STATE(6342), 1, + STATE(6567), 1, aux_sym__multiple_types_repeat1, STATE(6874), 1, sym_comment, - [232311] = 5, + [231722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10941), 1, + ACTIONS(10914), 1, anon_sym_RBRACK, - STATE(6343), 1, + STATE(6572), 1, aux_sym__multiple_types_repeat1, STATE(6875), 1, sym_comment, - [232327] = 5, + [231738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10943), 1, + ACTIONS(10916), 1, anon_sym_RBRACK, - STATE(3374), 1, + STATE(6573), 1, aux_sym__multiple_types_repeat1, STATE(6876), 1, sym_comment, - [232343] = 3, + [231754] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6361), 1, + sym__entry_separator, + ACTIONS(10918), 1, + anon_sym_RBRACK, + STATE(3410), 1, + aux_sym__multiple_types_repeat1, STATE(6877), 1, sym_comment, - ACTIONS(2259), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [232355] = 4, + [231770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, - sym__entry_separator, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(6872), 1, + aux_sym_unquoted_token4, STATE(6878), 1, sym_comment, - ACTIONS(1575), 2, - anon_sym_RBRACE, - anon_sym__, - [232369] = 5, - ACTIONS(3), 1, + STATE(7369), 1, + sym__expr_parenthesized_immediate, + [231786] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2317), 1, - sym__entry_separator, - ACTIONS(10945), 1, - anon_sym_RBRACE, - STATE(486), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10920), 1, + anon_sym_RBRACK, STATE(6879), 1, sym_comment, - [232385] = 5, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [231802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(7576), 1, + ACTIONS(10922), 1, anon_sym_RBRACK, - ACTIONS(10947), 1, - anon_sym_LT, + STATE(6469), 1, + aux_sym__multiple_types_repeat1, STATE(6880), 1, sym_comment, - [232401] = 5, + [231818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(7576), 1, + ACTIONS(10924), 1, anon_sym_RBRACK, - ACTIONS(10949), 1, - anon_sym_LT, + STATE(6486), 1, + aux_sym__multiple_types_repeat1, STATE(6881), 1, sym_comment, - [232417] = 4, + [231834] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2438), 1, - sym__entry_separator, + ACTIONS(1560), 1, + sym__newline, + ACTIONS(1572), 1, + sym__space, + ACTIONS(6872), 1, + aux_sym_unquoted_token2, STATE(6882), 1, sym_comment, - ACTIONS(2436), 2, - anon_sym_RBRACE, - anon_sym__, - [232431] = 5, - ACTIONS(247), 1, + [231850] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10951), 1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10926), 1, anon_sym_RBRACK, + STATE(6488), 1, + aux_sym__multiple_types_repeat1, STATE(6883), 1, sym_comment, - STATE(6886), 1, - aux_sym_val_binary_repeat1, - [232447] = 5, + [231866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10953), 1, + ACTIONS(10928), 1, anon_sym_RBRACK, - STATE(6626), 1, + STATE(6489), 1, aux_sym__multiple_types_repeat1, STATE(6884), 1, sym_comment, - [232463] = 4, - ACTIONS(247), 1, + [231882] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(284), 1, - aux_sym__block_body_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(10930), 1, + anon_sym_RBRACK, + STATE(6493), 1, + aux_sym__multiple_types_repeat1, STATE(6885), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [232477] = 5, + [231898] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10955), 1, - anon_sym_RBRACK, + ACTIONS(8900), 1, + anon_sym_LBRACK, STATE(6886), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [232493] = 5, + STATE(6967), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [231914] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10957), 1, + ACTIONS(10932), 1, anon_sym_RBRACK, - STATE(6353), 1, + STATE(6472), 1, aux_sym__multiple_types_repeat1, STATE(6887), 1, sym_comment, - [232509] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6888), 1, - sym_comment, - ACTIONS(6029), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232521] = 5, + [231930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10959), 1, + ACTIONS(10934), 1, anon_sym_RBRACK, - STATE(6354), 1, + STATE(6498), 1, aux_sym__multiple_types_repeat1, + STATE(6888), 1, + sym_comment, + [231946] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6889), 1, sym_comment, - [232537] = 5, - ACTIONS(3), 1, + ACTIONS(6007), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231958] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10961), 1, - anon_sym_RBRACK, - STATE(6355), 1, - aux_sym__multiple_types_repeat1, STATE(6890), 1, sym_comment, - [232553] = 5, + ACTIONS(10936), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [231970] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10963), 1, + ACTIONS(10938), 1, anon_sym_RBRACK, - STATE(6356), 1, + STATE(6499), 1, aux_sym__multiple_types_repeat1, STATE(6891), 1, sym_comment, - [232569] = 5, + [231986] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10965), 1, + ACTIONS(10940), 1, anon_sym_RBRACK, - STATE(6357), 1, + STATE(6500), 1, aux_sym__multiple_types_repeat1, STATE(6892), 1, sym_comment, - [232585] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2499), 1, - sym__entry_separator, - STATE(6893), 1, - sym_comment, - ACTIONS(2497), 2, - anon_sym_RBRACE, - anon_sym__, - [232599] = 5, + [232002] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(7661), 1, - anon_sym_EQ, - STATE(4952), 1, - sym_param_cmd, - STATE(6894), 1, + STATE(6893), 1, sym_comment, - [232615] = 5, + ACTIONS(10942), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232014] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10967), 1, + ACTIONS(10944), 1, anon_sym_RBRACK, - STATE(6358), 1, + STATE(6501), 1, aux_sym__multiple_types_repeat1, + STATE(6894), 1, + sym_comment, + [232030] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6895), 1, sym_comment, - [232631] = 5, - ACTIONS(3), 1, + ACTIONS(10946), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232042] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10969), 1, - anon_sym_RBRACK, - STATE(6359), 1, - aux_sym__multiple_types_repeat1, STATE(6896), 1, sym_comment, - [232647] = 3, + ACTIONS(10395), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232054] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6897), 1, sym_comment, - ACTIONS(10136), 3, + ACTIONS(8633), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232659] = 3, + [232066] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10948), 1, + anon_sym_RBRACK, STATE(6898), 1, sym_comment, - ACTIONS(10386), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232671] = 5, + STATE(6905), 1, + aux_sym_val_binary_repeat1, + [232082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10971), 1, - anon_sym_RBRACK, - STATE(6360), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10950), 1, + anon_sym_DQUOTE, STATE(6899), 1, sym_comment, - [232687] = 3, + ACTIONS(10952), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232096] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6900), 1, sym_comment, - ACTIONS(9755), 3, + ACTIONS(8649), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232699] = 3, - ACTIONS(247), 1, + [232108] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10954), 1, + sym__table_head_separator, STATE(6901), 1, sym_comment, - ACTIONS(1042), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [232711] = 3, - ACTIONS(247), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [232122] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10956), 1, + anon_sym_LPAREN, STATE(6902), 1, sym_comment, - ACTIONS(10018), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232723] = 3, + ACTIONS(10958), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [232136] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10962), 1, + anon_sym_COMMA, STATE(6903), 1, sym_comment, - ACTIONS(1046), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [232735] = 3, - ACTIONS(247), 1, + ACTIONS(10960), 2, + anon_sym_RBRACK, + sym_hex_digit, + [232150] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(10964), 1, + anon_sym_RBRACK, + STATE(2615), 1, + aux_sym__multiple_types_repeat1, STATE(6904), 1, sym_comment, - ACTIONS(10194), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232747] = 5, + [232166] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, + ACTIONS(10555), 1, sym_hex_digit, - ACTIONS(10973), 1, + ACTIONS(10966), 1, anon_sym_RBRACK, STATE(6905), 1, sym_comment, - STATE(6907), 1, + STATE(6970), 1, aux_sym_val_binary_repeat1, - [232763] = 3, + [232182] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6906), 1, sym_comment, - ACTIONS(1050), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [232775] = 5, + ACTIONS(9856), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232194] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(10975), 1, - anon_sym_RBRACK, STATE(6907), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [232791] = 5, - ACTIONS(3), 1, + ACTIONS(9858), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232206] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10977), 1, - anon_sym_RBRACK, - STATE(6369), 1, - aux_sym__multiple_types_repeat1, STATE(6908), 1, sym_comment, - [232807] = 3, + ACTIONS(9858), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232218] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6909), 1, sym_comment, - ACTIONS(10979), 3, + ACTIONS(10078), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [232819] = 5, + [232230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10981), 1, - anon_sym_RBRACK, - STATE(6370), 1, - aux_sym__multiple_types_repeat1, STATE(6910), 1, sym_comment, - [232835] = 5, + ACTIONS(2388), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [232242] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(2336), 1, sym__entry_separator, - ACTIONS(10983), 1, - anon_sym_RBRACK, - STATE(6371), 1, + ACTIONS(2354), 1, + anon_sym_RBRACE, + STATE(509), 1, aux_sym__multiple_types_repeat1, STATE(6911), 1, sym_comment, - [232851] = 5, - ACTIONS(3), 1, + [232258] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10985), 1, - anon_sym_RBRACK, - STATE(6372), 1, - aux_sym__multiple_types_repeat1, STATE(6912), 1, sym_comment, - [232867] = 3, + ACTIONS(10078), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232270] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10968), 1, + aux_sym_cmd_identifier_token41, STATE(6913), 1, sym_comment, - ACTIONS(10987), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232879] = 5, - ACTIONS(3), 1, + ACTIONS(10970), 2, + sym_filesize_unit, + sym_duration_unit, + [232284] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10989), 1, - anon_sym_RBRACK, - STATE(6373), 1, - aux_sym__multiple_types_repeat1, STATE(6914), 1, sym_comment, - [232895] = 3, + ACTIONS(6007), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232296] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6915), 1, sym_comment, - ACTIONS(5869), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232907] = 5, - ACTIONS(3), 1, + ACTIONS(9860), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232308] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(10991), 1, - sym__space, STATE(6916), 1, sym_comment, - [232923] = 5, - ACTIONS(3), 1, + ACTIONS(1048), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [232320] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10993), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10972), 1, anon_sym_RBRACK, - STATE(6374), 1, - aux_sym__multiple_types_repeat1, STATE(6917), 1, sym_comment, - [232939] = 5, - ACTIONS(3), 1, + STATE(6922), 1, + aux_sym_val_binary_repeat1, + [232336] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(10995), 1, - anon_sym_RBRACK, - STATE(6375), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, STATE(6918), 1, sym_comment, - [232955] = 3, + ACTIONS(1669), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [232350] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4808), 1, + anon_sym_in, + ACTIONS(10974), 1, + sym_long_flag_identifier, + ACTIONS(10976), 1, + anon_sym_EQ2, STATE(6919), 1, sym_comment, - ACTIONS(10997), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232967] = 5, + [232366] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(10999), 1, + ACTIONS(10978), 1, anon_sym_RBRACK, - STATE(6376), 1, + STATE(6598), 1, aux_sym__multiple_types_repeat1, STATE(6920), 1, sym_comment, - [232983] = 3, - ACTIONS(247), 1, + [232382] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4742), 1, + aux_sym_unquoted_token4, STATE(6921), 1, sym_comment, - ACTIONS(9755), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232995] = 5, - ACTIONS(3), 1, + STATE(7224), 1, + sym__expr_parenthesized_immediate, + [232398] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(11001), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10980), 1, anon_sym_RBRACK, - STATE(2574), 1, - aux_sym__multiple_types_repeat1, STATE(6922), 1, sym_comment, - [233011] = 4, + STATE(6970), 1, + aux_sym_val_binary_repeat1, + [232414] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9447), 1, - sym__entry_separator, + ACTIONS(2229), 1, + sym__newline, + ACTIONS(2233), 1, + sym__space, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, STATE(6923), 1, sym_comment, - ACTIONS(9445), 2, - anon_sym_RBRACE, - anon_sym__, - [233025] = 5, + [232430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11003), 1, - anon_sym_RBRACK, - STATE(2608), 1, - aux_sym__multiple_types_repeat1, STATE(6924), 1, sym_comment, - [233041] = 5, + ACTIONS(1832), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [232442] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11005), 1, + ACTIONS(10982), 1, anon_sym_RBRACK, - STATE(6383), 1, + STATE(6551), 1, aux_sym__multiple_types_repeat1, STATE(6925), 1, sym_comment, - [233057] = 5, + [232458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, - sym__entry_separator, - ACTIONS(11007), 1, - anon_sym_RBRACK, - STATE(3357), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10984), 1, + sym__table_head_separator, STATE(6926), 1, sym_comment, - [233073] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11009), 1, + ACTIONS(1070), 2, anon_sym_RBRACK, - STATE(6384), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + [232472] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4810), 1, + anon_sym_LBRACE, + ACTIONS(10986), 1, + sym_long_flag_identifier, + ACTIONS(10988), 1, + anon_sym_EQ2, STATE(6927), 1, sym_comment, - [233089] = 5, - ACTIONS(3), 1, + [232488] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11011), 1, - anon_sym_RBRACK, - STATE(6385), 1, - aux_sym__multiple_types_repeat1, STATE(6928), 1, sym_comment, - [233105] = 5, - ACTIONS(3), 1, + ACTIONS(10310), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232500] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11013), 1, - anon_sym_RBRACK, - STATE(6386), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6534), 1, + sym_block, STATE(6929), 1, sym_comment, - [233121] = 5, - ACTIONS(3), 1, + [232516] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11015), 1, - anon_sym_RBRACK, - STATE(6387), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, STATE(6930), 1, sym_comment, - [233137] = 3, + ACTIONS(1661), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [232530] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6931), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(10334), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233149] = 5, + [232542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11017), 1, + ACTIONS(10990), 1, anon_sym_RBRACK, - STATE(6388), 1, + STATE(6553), 1, aux_sym__multiple_types_repeat1, STATE(6932), 1, sym_comment, - [233165] = 5, + [232558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11019), 1, + ACTIONS(10992), 1, anon_sym_RBRACK, - STATE(6389), 1, + STATE(6554), 1, aux_sym__multiple_types_repeat1, STATE(6933), 1, sym_comment, - [233181] = 5, - ACTIONS(3), 1, + [232574] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3679), 1, - sym__newline, - ACTIONS(3681), 1, - sym__space, - STATE(1018), 1, - aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6609), 1, + sym_block, STATE(6934), 1, sym_comment, - [233197] = 5, - ACTIONS(3), 1, + [232590] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11021), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(10994), 1, anon_sym_RBRACK, - STATE(6390), 1, - aux_sym__multiple_types_repeat1, + STATE(6619), 1, + aux_sym_val_binary_repeat1, STATE(6935), 1, sym_comment, - [233213] = 5, + [232606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11023), 1, - anon_sym_RBRACK, - STATE(6549), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2237), 1, + sym__newline, + ACTIONS(2241), 1, + sym__space, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, STATE(6936), 1, sym_comment, - [233229] = 3, - ACTIONS(247), 1, + [232622] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2245), 1, + sym__newline, + ACTIONS(2247), 1, + sym__space, STATE(6937), 1, sym_comment, - ACTIONS(10610), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233241] = 3, - ACTIONS(3), 1, + [232638] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4687), 1, + sym_block, STATE(6938), 1, sym_comment, - ACTIONS(1879), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [233253] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11025), 1, - anon_sym_RBRACK, - STATE(6395), 1, - aux_sym__multiple_types_repeat1, - STATE(6939), 1, - sym_comment, - [233269] = 5, + [232654] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6122), 1, + ACTIONS(6188), 1, anon_sym_AT, - ACTIONS(7725), 1, + ACTIONS(7733), 1, anon_sym_EQ, - STATE(4954), 1, + STATE(5069), 1, sym_param_cmd, - STATE(6940), 1, + STATE(6939), 1, sym_comment, - [233285] = 5, + [232670] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, + ACTIONS(6361), 1, sym__entry_separator, - ACTIONS(11027), 1, + ACTIONS(10996), 1, anon_sym_RBRACK, - STATE(3339), 1, + STATE(3412), 1, aux_sym__multiple_types_repeat1, + STATE(6940), 1, + sym_comment, + [232686] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6941), 1, sym_comment, - [233301] = 5, - ACTIONS(3), 1, + ACTIONS(10334), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232698] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11029), 1, - anon_sym_RBRACK, - STATE(6396), 1, - aux_sym__multiple_types_repeat1, STATE(6942), 1, sym_comment, - [233317] = 5, - ACTIONS(3), 1, + ACTIONS(10138), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232710] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11031), 1, - anon_sym_RBRACK, - STATE(6397), 1, - aux_sym__multiple_types_repeat1, STATE(6943), 1, sym_comment, - [233333] = 5, - ACTIONS(3), 1, + ACTIONS(9968), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232722] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11033), 1, - anon_sym_RBRACK, - STATE(6398), 1, - aux_sym__multiple_types_repeat1, STATE(6944), 1, sym_comment, - [233349] = 3, + ACTIONS(9970), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232734] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6945), 1, sym_comment, - ACTIONS(11035), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233361] = 5, + ACTIONS(6015), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11037), 1, + ACTIONS(10998), 1, anon_sym_RBRACK, - STATE(6399), 1, + STATE(6556), 1, aux_sym__multiple_types_repeat1, STATE(6946), 1, sym_comment, - [233377] = 4, + [232762] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(7733), 1, + anon_sym_EQ, + STATE(5070), 1, + sym_param_cmd, STATE(6947), 1, sym_comment, - ACTIONS(1633), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [233391] = 4, - ACTIONS(3), 1, + [232778] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__entry_separator, STATE(6948), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_RBRACE, - anon_sym__, - [233405] = 5, - ACTIONS(3), 1, + ACTIONS(11000), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232790] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11039), 1, - anon_sym_RBRACK, - STATE(6400), 1, - aux_sym__multiple_types_repeat1, STATE(6949), 1, sym_comment, - [233421] = 5, + ACTIONS(1052), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [232802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11041), 1, - anon_sym_RBRACK, - STATE(6401), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11002), 1, + sym__table_head_separator, STATE(6950), 1, sym_comment, - [233437] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11043), 1, + ACTIONS(1070), 2, anon_sym_RBRACK, - STATE(6402), 1, - aux_sym__multiple_types_repeat1, - STATE(6951), 1, - sym_comment, - [233453] = 3, + sym__entry_separator, + [232816] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6952), 1, + STATE(6951), 1, sym_comment, - ACTIONS(10018), 3, + ACTIONS(9972), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233465] = 4, - ACTIONS(247), 1, + [232828] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11045), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11004), 1, + anon_sym_RBRACK, + STATE(6557), 1, + aux_sym__multiple_types_repeat1, + STATE(6952), 1, + sym_comment, + [232844] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11006), 1, + anon_sym_RBRACK, + STATE(6558), 1, + aux_sym__multiple_types_repeat1, STATE(6953), 1, sym_comment, - ACTIONS(11047), 2, - sym_filesize_unit, - sym_duration_unit, - [233479] = 4, - ACTIONS(247), 1, + [232860] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4169), 1, + aux_sym_unquoted_token4, STATE(6954), 1, sym_comment, - ACTIONS(2222), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [233493] = 3, - ACTIONS(247), 1, + STATE(7299), 1, + sym__expr_parenthesized_immediate, + [232876] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, + ACTIONS(11008), 1, + sym__space, STATE(6955), 1, sym_comment, - ACTIONS(10624), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233505] = 3, + [232892] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6956), 1, sym_comment, - ACTIONS(11049), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233517] = 3, + ACTIONS(1056), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [232904] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6957), 1, sym_comment, - ACTIONS(11051), 3, + ACTIONS(10346), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [233529] = 5, + [232916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11053), 1, + ACTIONS(11010), 1, anon_sym_RBRACK, - STATE(6407), 1, + STATE(6560), 1, aux_sym__multiple_types_repeat1, STATE(6958), 1, sym_comment, - [233545] = 5, + [232932] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1560), 1, + anon_sym_RBRACE, + ACTIONS(1572), 1, sym__entry_separator, - ACTIONS(11055), 1, - anon_sym_RBRACK, - STATE(6408), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1574), 1, + aux_sym__unquoted_in_record_token2, STATE(6959), 1, sym_comment, - [233561] = 5, + [232948] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11057), 1, - anon_sym_RBRACK, - STATE(6409), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token4, STATE(6960), 1, sym_comment, - [233577] = 5, - ACTIONS(3), 1, + STATE(7216), 1, + sym__expr_parenthesized_immediate, + [232964] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11059), 1, - anon_sym_RBRACK, - STATE(6410), 1, - aux_sym__multiple_types_repeat1, STATE(6961), 1, sym_comment, - [233593] = 4, + ACTIONS(10042), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232976] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6875), 1, + sym_val_list, STATE(6962), 1, sym_comment, - ACTIONS(11061), 2, - sym_filesize_unit, - sym_duration_unit, - [233607] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [232992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11063), 1, - anon_sym_RBRACK, - STATE(6411), 1, + ACTIONS(9640), 1, + anon_sym_LBRACK, + STATE(2617), 1, aux_sym__multiple_types_repeat1, STATE(6963), 1, sym_comment, - [233623] = 5, - ACTIONS(3), 1, + [233008] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11065), 1, - anon_sym_RBRACK, + ACTIONS(8900), 1, + anon_sym_LBRACK, STATE(6662), 1, - aux_sym__multiple_types_repeat1, + sym_val_list, STATE(6964), 1, sym_comment, - [233639] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233024] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11067), 1, - anon_sym_RBRACK, - STATE(6413), 1, - aux_sym__multiple_types_repeat1, STATE(6965), 1, sym_comment, - [233655] = 3, + ACTIONS(10212), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233036] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6665), 1, + sym_val_list, STATE(6966), 1, sym_comment, - ACTIONS(6043), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [233667] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233052] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11069), 1, + ACTIONS(11012), 1, anon_sym_RBRACK, - STATE(6414), 1, + STATE(6213), 1, aux_sym__multiple_types_repeat1, STATE(6967), 1, sym_comment, - [233683] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6968), 1, - sym_comment, - ACTIONS(10526), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233695] = 5, + [233068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(6361), 1, sym__entry_separator, - ACTIONS(11071), 1, + ACTIONS(11014), 1, anon_sym_RBRACK, - STATE(6420), 1, + STATE(3399), 1, aux_sym__multiple_types_repeat1, + STATE(6968), 1, + sym_comment, + [233084] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6769), 1, + sym_val_list, STATE(6969), 1, sym_comment, - [233711] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233100] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2808), 1, - sym__newline, - ACTIONS(11073), 1, - anon_sym_SEMI, - STATE(2586), 1, - aux_sym_shebang_repeat1, - STATE(6970), 1, + ACTIONS(11016), 1, + anon_sym_RBRACK, + ACTIONS(11018), 1, + sym_hex_digit, + STATE(6970), 2, sym_comment, - [233727] = 5, - ACTIONS(3), 1, + aux_sym_val_binary_repeat1, + [233114] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1575), 1, - anon_sym_RBRACE, - ACTIONS(1587), 1, - sym__entry_separator, - ACTIONS(1589), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11021), 1, + aux_sym_cmd_identifier_token41, STATE(6971), 1, sym_comment, - [233743] = 5, + ACTIONS(11023), 2, + sym_filesize_unit, + sym_duration_unit, + [233128] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11075), 1, + ACTIONS(11025), 1, anon_sym_RBRACK, - STATE(6421), 1, + STATE(6582), 1, aux_sym__multiple_types_repeat1, STATE(6972), 1, sym_comment, - [233759] = 5, - ACTIONS(3), 1, + [233144] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11077), 1, - anon_sym_RBRACK, - STATE(6422), 1, - aux_sym__multiple_types_repeat1, STATE(6973), 1, sym_comment, - [233775] = 5, - ACTIONS(3), 1, + ACTIONS(10419), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233156] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11079), 1, - anon_sym_RBRACK, - STATE(6423), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11027), 1, + aux_sym_cmd_identifier_token41, STATE(6974), 1, sym_comment, - [233791] = 5, - ACTIONS(247), 1, + ACTIONS(11029), 2, + sym_filesize_unit, + sym_duration_unit, + [233170] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11081), 1, - anon_sym_RBRACK, + ACTIONS(9786), 1, + anon_sym_LPAREN, STATE(6975), 1, sym_comment, - STATE(6986), 1, - aux_sym_val_binary_repeat1, - [233807] = 5, - ACTIONS(3), 1, + ACTIONS(9788), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [233184] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11083), 1, - anon_sym_RBRACK, - STATE(6424), 1, - aux_sym__multiple_types_repeat1, STATE(6976), 1, sym_comment, - [233823] = 5, - ACTIONS(3), 1, + ACTIONS(10096), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233196] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(11085), 1, - anon_sym_RBRACK, - STATE(2579), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, STATE(6977), 1, sym_comment, - [233839] = 5, + STATE(7178), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233212] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11087), 1, - anon_sym_RBRACK, - STATE(6425), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, + ACTIONS(6965), 1, + aux_sym__unquoted_in_list_token4, STATE(6978), 1, sym_comment, - [233855] = 5, - ACTIONS(3), 1, + STATE(7361), 1, + sym__expr_parenthesized_immediate, + [233228] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11089), 1, - anon_sym_RBRACK, - STATE(6426), 1, - aux_sym__multiple_types_repeat1, STATE(6979), 1, sym_comment, - [233871] = 5, - ACTIONS(3), 1, + ACTIONS(10220), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233240] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11091), 1, - anon_sym_RBRACK, - STATE(6427), 1, - aux_sym__multiple_types_repeat1, STATE(6980), 1, sym_comment, - [233887] = 5, + ACTIONS(10306), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233252] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6563), 1, - sym_block, STATE(6981), 1, sym_comment, - [233903] = 3, + ACTIONS(10306), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233264] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6982), 1, sym_comment, - ACTIONS(11093), 3, + ACTIONS(9990), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [233915] = 3, + [233276] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6983), 1, sym_comment, - ACTIONS(10518), 3, + ACTIONS(9990), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233927] = 5, + [233288] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4737), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11095), 1, - sym_long_flag_identifier, - ACTIONS(11097), 1, - anon_sym_EQ2, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(11031), 1, + anon_sym_RBRACK, STATE(6984), 1, sym_comment, - [233943] = 5, - ACTIONS(3), 1, + STATE(6991), 1, + aux_sym_val_binary_repeat1, + [233304] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(6874), 1, - aux_sym_unquoted_token4, STATE(6985), 1, sym_comment, - STATE(7453), 1, - sym__expr_parenthesized_immediate, - [233959] = 5, + ACTIONS(10260), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233316] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11099), 1, - anon_sym_RBRACK, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(11033), 1, + anon_sym_EQ2, + ACTIONS(11035), 1, + sym_short_flag_identifier, STATE(6986), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [233975] = 3, + [233332] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(11037), 1, + anon_sym_RBRACK, + STATE(6716), 1, + aux_sym_val_binary_repeat1, STATE(6987), 1, sym_comment, - ACTIONS(11101), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233987] = 5, - ACTIONS(3), 1, + [233348] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11103), 1, - anon_sym_RBRACK, - STATE(6099), 1, - aux_sym__multiple_types_repeat1, STATE(6988), 1, sym_comment, - [234003] = 3, + ACTIONS(9752), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233360] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(6989), 1, sym_comment, - ACTIONS(6043), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234015] = 4, + ACTIONS(10104), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - sym__entry_separator, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(4614), 1, + aux_sym_unquoted_token4, STATE(6990), 1, sym_comment, - ACTIONS(2224), 2, - anon_sym_RBRACE, - anon_sym__, - [234029] = 5, - ACTIONS(3), 1, + STATE(7282), 1, + sym__expr_parenthesized_immediate, + [233388] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11105), 1, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(11039), 1, anon_sym_RBRACK, - STATE(6101), 1, - aux_sym__multiple_types_repeat1, + STATE(6970), 1, + aux_sym_val_binary_repeat1, STATE(6991), 1, sym_comment, - [234045] = 5, - ACTIONS(3), 1, + [233404] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11107), 1, - anon_sym_RBRACK, - STATE(6102), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1813), 1, + anon_sym_SEMI, + ACTIONS(3705), 1, + sym__newline, + STATE(749), 1, + aux_sym_shebang_repeat1, STATE(6992), 1, sym_comment, - [234061] = 5, + [233420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11109), 1, + ACTIONS(11041), 1, anon_sym_RBRACK, - STATE(6103), 1, + STATE(6511), 1, aux_sym__multiple_types_repeat1, STATE(6993), 1, sym_comment, - [234077] = 5, + [233436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11111), 1, + ACTIONS(11043), 1, anon_sym_RBRACK, - STATE(6196), 1, + STATE(6577), 1, aux_sym__multiple_types_repeat1, STATE(6994), 1, sym_comment, - [234093] = 5, + [233452] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11045), 1, + anon_sym_RBRACK, + STATE(6512), 1, + aux_sym__multiple_types_repeat1, STATE(6995), 1, sym_comment, - STATE(7357), 1, - sym__expr_parenthesized_immediate, - [234109] = 5, + [233468] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11113), 1, + ACTIONS(11047), 1, anon_sym_RBRACK, - STATE(6104), 1, + STATE(6513), 1, aux_sym__multiple_types_repeat1, STATE(6996), 1, sym_comment, - [234125] = 5, - ACTIONS(247), 1, + [233484] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6122), 1, - anon_sym_AT, - ACTIONS(7587), 1, - anon_sym_EQ, - STATE(5043), 1, - sym_param_cmd, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11049), 1, + anon_sym_RBRACK, + STATE(6514), 1, + aux_sym__multiple_types_repeat1, STATE(6997), 1, sym_comment, - [234141] = 5, + [233500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11115), 1, + ACTIONS(11051), 1, anon_sym_RBRACK, - STATE(6105), 1, + STATE(6515), 1, aux_sym__multiple_types_repeat1, STATE(6998), 1, sym_comment, - [234157] = 5, + [233516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11117), 1, + ACTIONS(11053), 1, anon_sym_RBRACK, - STATE(6106), 1, + STATE(6516), 1, aux_sym__multiple_types_repeat1, STATE(6999), 1, sym_comment, - [234173] = 5, + [233532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11119), 1, + ACTIONS(11055), 1, anon_sym_RBRACK, - STATE(6107), 1, + STATE(6517), 1, aux_sym__multiple_types_repeat1, STATE(7000), 1, sym_comment, - [234189] = 3, + [233548] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token41, STATE(7001), 1, sym_comment, - ACTIONS(10198), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234201] = 5, - ACTIONS(247), 1, + ACTIONS(11057), 2, + sym_filesize_unit, + sym_duration_unit, + [233562] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11059), 1, + anon_sym_RBRACK, + STATE(6518), 1, + aux_sym__multiple_types_repeat1, STATE(7002), 1, sym_comment, - STATE(7205), 1, - sym_val_list, - [234217] = 3, - ACTIONS(247), 1, + [233578] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11061), 1, + anon_sym_RBRACK, + STATE(6578), 1, + aux_sym__multiple_types_repeat1, STATE(7003), 1, sym_comment, - ACTIONS(10162), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234229] = 3, - ACTIONS(247), 1, + [233594] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11063), 1, + anon_sym_RBRACK, + STATE(6579), 1, + aux_sym__multiple_types_repeat1, STATE(7004), 1, sym_comment, - ACTIONS(9819), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234241] = 3, - ACTIONS(247), 1, + [233610] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11065), 1, + anon_sym_RBRACK, + STATE(6580), 1, + aux_sym__multiple_types_repeat1, STATE(7005), 1, sym_comment, - ACTIONS(10168), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234253] = 3, - ACTIONS(247), 1, + [233626] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11067), 1, + sym__table_head_separator, STATE(7006), 1, sym_comment, - ACTIONS(6047), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234265] = 3, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [233640] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, + ACTIONS(5754), 1, + anon_sym_EQ_GT, + ACTIONS(5895), 1, + anon_sym_PIPE, STATE(7007), 1, sym_comment, - ACTIONS(2443), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [234277] = 5, - ACTIONS(3), 1, + [233656] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11121), 1, - anon_sym_RBRACE, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6609), 1, + sym_block, STATE(7008), 1, sym_comment, - [234293] = 5, + [233672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11123), 1, - anon_sym_RBRACE, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11069), 1, + sym__table_head_separator, STATE(7009), 1, sym_comment, - [234309] = 3, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [233686] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1738), 1, + aux_sym_unquoted_token2, STATE(7010), 1, sym_comment, - ACTIONS(10508), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234321] = 4, - ACTIONS(3), 1, + ACTIONS(1740), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [233700] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym__entry_separator, + ACTIONS(6188), 1, + anon_sym_AT, + ACTIONS(7724), 1, + anon_sym_EQ, + STATE(5132), 1, + sym_param_cmd, STATE(7011), 1, sym_comment, - ACTIONS(2259), 2, - anon_sym_RBRACE, - anon_sym__, - [234335] = 5, + [233716] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9565), 1, - anon_sym_PIPE, - ACTIONS(11125), 1, - anon_sym_EQ_GT, STATE(7012), 1, sym_comment, - STATE(7039), 1, - aux_sym_match_pattern_repeat1, - [234351] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_LPAREN2, - ACTIONS(1589), 1, - aux_sym__unquoted_in_record_token4, - STATE(7013), 1, - sym_comment, - STATE(7340), 1, - sym__expr_parenthesized_immediate, - [234367] = 5, + ACTIONS(10472), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233728] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11127), 1, + ACTIONS(11071), 1, anon_sym_RBRACK, - STATE(6219), 1, + STATE(6581), 1, aux_sym__multiple_types_repeat1, + STATE(7013), 1, + sym_comment, + [233744] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6689), 1, + sym_val_list, STATE(7014), 1, sym_comment, - [234383] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233760] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11129), 1, - anon_sym_RBRACK, - STATE(6179), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6749), 1, + sym_val_list, STATE(7015), 1, sym_comment, - [234399] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233776] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11131), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6754), 1, + sym_val_list, STATE(7016), 1, sym_comment, - ACTIONS(11133), 2, - sym_filesize_unit, - sym_duration_unit, - [234413] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233792] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2394), 1, - sym__entry_separator, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6796), 1, + sym_val_list, STATE(7017), 1, sym_comment, - ACTIONS(2392), 2, - anon_sym_RBRACE, - anon_sym__, - [234427] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233808] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11135), 1, - anon_sym_RBRACK, - STATE(6256), 1, - aux_sym__multiple_types_repeat1, STATE(7018), 1, sym_comment, - [234443] = 5, + ACTIONS(9752), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233820] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11137), 1, + ACTIONS(11073), 1, anon_sym_RBRACK, - STATE(6652), 1, + STATE(6583), 1, aux_sym__multiple_types_repeat1, STATE(7019), 1, sym_comment, - [234459] = 3, - ACTIONS(247), 1, + [233836] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11075), 1, + anon_sym_RBRACK, + STATE(6584), 1, + aux_sym__multiple_types_repeat1, STATE(7020), 1, sym_comment, - ACTIONS(10634), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234471] = 3, - ACTIONS(247), 1, + [233852] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11077), 1, + sym__table_head_separator, STATE(7021), 1, sym_comment, - ACTIONS(10172), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234483] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [233866] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11139), 1, - aux_sym_cmd_identifier_token41, STATE(7022), 1, sym_comment, - ACTIONS(11141), 2, - sym_filesize_unit, - sym_duration_unit, - [234497] = 5, + ACTIONS(10358), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233878] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5547), 1, sym__entry_separator, - ACTIONS(11143), 1, + ACTIONS(11079), 1, anon_sym_RBRACK, - STATE(6259), 1, + STATE(2638), 1, aux_sym__multiple_types_repeat1, STATE(7023), 1, sym_comment, - [234513] = 3, - ACTIONS(247), 1, + [233894] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11081), 1, + sym__table_head_separator, STATE(7024), 1, sym_comment, - ACTIONS(10096), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234525] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11145), 1, + ACTIONS(1070), 2, anon_sym_RBRACK, - STATE(6394), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + [233908] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, STATE(7025), 1, sym_comment, - [234541] = 4, + ACTIONS(1661), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [233922] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, STATE(7026), 1, sym_comment, - ACTIONS(1587), 2, - sym_identifier, - anon_sym_DOLLAR, - [234555] = 5, - ACTIONS(247), 1, + ACTIONS(10387), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233934] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11147), 1, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(11083), 1, anon_sym_RBRACK, + STATE(2639), 1, + aux_sym__multiple_types_repeat1, STATE(7027), 1, sym_comment, - STATE(7050), 1, - aux_sym_val_binary_repeat1, - [234571] = 4, + [233950] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2398), 1, - sym__entry_separator, - STATE(7028), 1, + ACTIONS(1315), 1, + anon_sym_POUND_BANG, + ACTIONS(11085), 1, + sym__newline, + STATE(7028), 2, sym_comment, - ACTIONS(2396), 2, - anon_sym_RBRACE, - anon_sym__, - [234585] = 3, + aux_sym_shebang_repeat1, + [233964] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6884), 1, + sym_val_list, STATE(7029), 1, sym_comment, - ACTIONS(10222), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234597] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233980] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, - sym__newline, - ACTIONS(1078), 1, - sym__space, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6888), 1, + sym_val_list, STATE(7030), 1, sym_comment, - [234613] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [233996] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11149), 1, - sym__table_head_separator, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11088), 1, + anon_sym_RBRACK, + STATE(6588), 1, + aux_sym__multiple_types_repeat1, STATE(7031), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [234627] = 3, + [234012] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6892), 1, + sym_val_list, STATE(7032), 1, sym_comment, - ACTIONS(10528), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234639] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234028] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(11151), 1, - anon_sym_RBRACK, - STATE(2581), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6894), 1, + sym_val_list, STATE(7033), 1, sym_comment, - [234655] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2162), 1, - sym__entry_separator, + ACTIONS(11090), 1, + sym__table_head_separator, STATE(7034), 1, sym_comment, - ACTIONS(2160), 2, - anon_sym_RBRACE, - anon_sym__, - [234669] = 4, - ACTIONS(247), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234058] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11092), 1, + sym__table_head_separator, STATE(7035), 1, sym_comment, - ACTIONS(11153), 2, - sym_filesize_unit, - sym_duration_unit, - [234683] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234072] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6563), 1, - sym_block, STATE(7036), 1, sym_comment, - [234699] = 3, + ACTIONS(10130), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234084] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6933), 1, + sym_val_list, STATE(7037), 1, sym_comment, - ACTIONS(10530), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234711] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234100] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6946), 1, + sym_val_list, STATE(7038), 1, sym_comment, - ACTIONS(10532), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234723] = 4, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234116] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11155), 1, - anon_sym_PIPE, - ACTIONS(11158), 1, - anon_sym_EQ_GT, - STATE(7039), 2, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(6939), 1, + aux_sym_unquoted_token4, + STATE(7039), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [234737] = 5, + STATE(7281), 1, + sym__expr_parenthesized_immediate, + [234132] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6628), 1, - sym_block, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6953), 1, + sym_val_list, STATE(7040), 1, sym_comment, - [234753] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234148] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5095), 1, - sym__newline, - ACTIONS(11160), 1, - anon_sym_COLON, - STATE(690), 1, - aux_sym_shebang_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6958), 1, + sym_val_list, STATE(7041), 1, sym_comment, - [234769] = 3, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234164] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11094), 1, + sym__table_head_separator, STATE(7042), 1, sym_comment, - ACTIONS(10534), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234781] = 3, - ACTIONS(247), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234178] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11096), 1, + sym__table_head_separator, STATE(7043), 1, sym_comment, - ACTIONS(10536), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234793] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234192] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4731), 1, - sym_block, STATE(7044), 1, sym_comment, - [234809] = 5, - ACTIONS(3), 1, + ACTIONS(10518), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234204] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_LPAREN2, - ACTIONS(1676), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6996), 1, + sym_val_list, STATE(7045), 1, sym_comment, - STATE(7323), 1, - sym__expr_parenthesized_immediate, - [234825] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234220] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4680), 1, - aux_sym_unquoted_token4, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6998), 1, + sym_val_list, STATE(7046), 1, sym_comment, - STATE(7332), 1, - sym__expr_parenthesized_immediate, - [234841] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234236] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(11162), 1, - anon_sym_RBRACK, - STATE(2593), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(7000), 1, + sym_val_list, STATE(7047), 1, sym_comment, - [234857] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234252] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11164), 1, - sym__table_head_separator, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(7002), 1, + sym_val_list, STATE(7048), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [234871] = 5, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11166), 1, - anon_sym_RBRACK, + ACTIONS(11098), 1, + sym__table_head_separator, STATE(7049), 1, sym_comment, - STATE(7077), 1, - aux_sym_val_binary_repeat1, - [234887] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234282] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11168), 1, - anon_sym_RBRACK, STATE(7050), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [234903] = 4, + ACTIONS(9812), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11170), 1, + ACTIONS(11100), 1, sym__table_head_separator, STATE(7051), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [234917] = 3, + [234308] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(7004), 1, + sym_val_list, STATE(7052), 1, sym_comment, - ACTIONS(10144), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234929] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234324] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(11172), 1, - sym__space, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(7013), 1, + sym_val_list, STATE(7053), 1, sym_comment, - [234945] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234340] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9740), 1, + aux_sym_cmd_identifier_token41, STATE(7054), 1, sym_comment, - ACTIONS(10522), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234957] = 4, - ACTIONS(3), 1, + ACTIONS(9742), 2, + sym_filesize_unit, + sym_duration_unit, + [234354] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11174), 1, - anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(7020), 1, + sym_val_list, STATE(7055), 1, sym_comment, - ACTIONS(11176), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234971] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11178), 1, - anon_sym_RBRACK, - STATE(6139), 1, - aux_sym__multiple_types_repeat1, - STATE(7056), 1, - sym_comment, - [234987] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234370] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, + STATE(7031), 1, + sym_val_list, + STATE(7056), 1, + sym_comment, + STATE(7180), 1, aux_sym_val_table_repeat1, + [234386] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11102), 1, + sym__table_head_separator, STATE(7057), 1, sym_comment, - STATE(7078), 1, - sym_val_list, - [235003] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234400] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4687), 1, + sym_block, STATE(7058), 1, sym_comment, - ACTIONS(1587), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235017] = 5, + [234416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11180), 1, - anon_sym_RBRACK, - STATE(2592), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11104), 1, + sym__table_head_separator, STATE(7059), 1, sym_comment, - [235033] = 3, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234430] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, STATE(7060), 1, sym_comment, - ACTIONS(10626), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235045] = 5, + STATE(7153), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234446] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7018), 1, - sym_val_list, STATE(7061), 1, sym_comment, - [235061] = 5, + STATE(7159), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234462] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7025), 1, - sym_val_list, STATE(7062), 1, sym_comment, - [235077] = 4, - ACTIONS(3), 1, + STATE(7162), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234478] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11182), 1, - anon_sym_LPAREN, + ACTIONS(8900), 1, + anon_sym_LBRACK, STATE(7063), 1, sym_comment, - ACTIONS(11184), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [235091] = 5, + STATE(7163), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11186), 1, - anon_sym_RBRACK, - STATE(6140), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11106), 1, + sym__table_head_separator, STATE(7064), 1, sym_comment, - [235107] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11188), 1, - anon_sym_RBRACK, - STATE(6141), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11108), 1, + sym__table_head_separator, STATE(7065), 1, sym_comment, - [235123] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234522] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7019), 1, + STATE(6624), 1, sym_val_list, STATE(7066), 1, sym_comment, - [235139] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234538] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11192), 1, - anon_sym_COMMA, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6627), 1, + sym_val_list, STATE(7067), 1, sym_comment, - ACTIONS(11190), 2, - anon_sym_RBRACK, - sym_hex_digit, - [235153] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234554] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11194), 1, - anon_sym_RBRACK, - STATE(6142), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6629), 1, + sym_val_list, STATE(7068), 1, sym_comment, - [235169] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234570] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__space, - ACTIONS(4916), 1, - sym__newline, - ACTIONS(11196), 1, - anon_sym_EQ2, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6630), 1, + sym_val_list, STATE(7069), 1, sym_comment, - [235185] = 4, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234586] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, + ACTIONS(11110), 1, + sym__table_head_separator, STATE(7070), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235199] = 4, - ACTIONS(3), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234600] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym__space, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, STATE(7071), 1, sym_comment, - ACTIONS(2259), 2, - sym__newline, - aux_sym_unquoted_token4, - [235213] = 5, - ACTIONS(3), 1, + ACTIONS(1723), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [234614] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(11198), 1, - anon_sym_RBRACK, - STATE(2577), 1, - aux_sym__multiple_types_repeat1, STATE(7072), 1, sym_comment, - [235229] = 5, + ACTIONS(9712), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - ACTIONS(11200), 1, - anon_sym_RBRACK, - STATE(2578), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11112), 1, + sym__table_head_separator, STATE(7073), 1, sym_comment, - [235245] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11202), 1, + ACTIONS(1070), 2, anon_sym_RBRACK, - STATE(6143), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + [234640] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6649), 1, + sym_val_list, STATE(7074), 1, sym_comment, - [235261] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234656] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6651), 1, + sym_val_list, STATE(7075), 1, sym_comment, - ACTIONS(10614), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235273] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234672] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11204), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6655), 1, + sym_val_list, STATE(7076), 1, sym_comment, - [235289] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234688] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11206), 1, - anon_sym_RBRACK, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6657), 1, + sym_val_list, STATE(7077), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [235305] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11208), 1, - anon_sym_RBRACK, - STATE(6526), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11114), 1, + sym__table_head_separator, STATE(7078), 1, sym_comment, - [235321] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11210), 1, + ACTIONS(1070), 2, anon_sym_RBRACK, - STATE(6216), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + [234718] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7079), 1, sym_comment, - [235337] = 5, + ACTIONS(9674), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234730] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, - sym__entry_separator, - ACTIONS(11212), 1, - anon_sym_RBRACK, - STATE(3372), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11116), 1, + sym__table_head_separator, STATE(7080), 1, sym_comment, - [235353] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, sym__entry_separator, + [234744] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6675), 1, + sym_val_list, STATE(7081), 1, sym_comment, - ACTIONS(2465), 2, - anon_sym_RBRACE, - anon_sym__, - [235367] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234760] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__entry_separator, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6678), 1, + sym_val_list, STATE(7082), 1, sym_comment, - ACTIONS(2469), 2, - anon_sym_RBRACE, - anon_sym__, - [235381] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234776] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2475), 1, - sym__entry_separator, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(11118), 1, + anon_sym_RBRACK, STATE(7083), 1, sym_comment, - ACTIONS(2473), 2, - anon_sym_RBRACE, - anon_sym__, - [235395] = 5, - ACTIONS(3), 1, + STATE(7111), 1, + aux_sym_val_binary_repeat1, + [234792] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11214), 1, - anon_sym_RBRACK, - STATE(6144), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6680), 1, + sym_val_list, STATE(7084), 1, sym_comment, - [235411] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234808] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11216), 1, - anon_sym_RBRACK, - STATE(6145), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6681), 1, + sym_val_list, STATE(7085), 1, sym_comment, - [235427] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234824] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, - sym__entry_separator, + ACTIONS(11120), 1, + sym__table_head_separator, STATE(7086), 1, sym_comment, - ACTIONS(2061), 2, - anon_sym_RBRACE, - anon_sym__, - [235441] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234838] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9761), 1, - anon_sym_LBRACK, - STATE(2558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11122), 1, + sym__table_head_separator, STATE(7087), 1, sym_comment, - [235457] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(11218), 1, + [234852] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(6146), 1, - aux_sym__multiple_types_repeat1, + STATE(6631), 1, + aux_sym_val_binary_repeat1, STATE(7088), 1, sym_comment, - [235473] = 3, + [234868] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6698), 1, + sym_val_list, STATE(7089), 1, sym_comment, - ACTIONS(10028), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235485] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234884] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, - ACTIONS(7005), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6700), 1, + sym_val_list, STATE(7090), 1, sym_comment, - STATE(7333), 1, - sym__expr_parenthesized_immediate, - [235501] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234900] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4749), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11220), 1, - anon_sym_EQ2, - ACTIONS(11222), 1, - sym_short_flag_identifier, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6704), 1, + sym_val_list, STATE(7091), 1, sym_comment, - [235517] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234916] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6706), 1, + sym_val_list, STATE(7092), 1, sym_comment, - ACTIONS(9916), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235529] = 3, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [234932] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11126), 1, + sym__table_head_separator, STATE(7093), 1, sym_comment, - ACTIONS(9918), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235541] = 3, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234946] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11128), 1, + aux_sym_cmd_identifier_token41, STATE(7094), 1, sym_comment, - ACTIONS(9918), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235553] = 4, + ACTIONS(11130), 2, + sym_filesize_unit, + sym_duration_unit, + [234960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, + ACTIONS(11132), 1, + sym__table_head_separator, STATE(7095), 1, sym_comment, - ACTIONS(2293), 2, - sym_identifier, - anon_sym_DOLLAR, - [235567] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234974] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, STATE(7096), 1, sym_comment, - ACTIONS(1633), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235581] = 4, - ACTIONS(3), 1, + ACTIONS(10130), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234986] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6718), 1, + sym_val_list, STATE(7097), 1, sym_comment, - ACTIONS(1076), 2, - sym_identifier, - anon_sym_DOLLAR, - [235595] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235002] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6628), 1, - sym_block, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6720), 1, + sym_val_list, STATE(7098), 1, sym_comment, - [235611] = 3, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235018] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + ACTIONS(3988), 1, + aux_sym_unquoted_token4, STATE(7099), 1, sym_comment, - ACTIONS(9940), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235623] = 5, - ACTIONS(3), 1, + STATE(7347), 1, + sym__expr_parenthesized_immediate, + [235034] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, - sym__newline, - ACTIONS(2297), 1, - sym__space, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6723), 1, + sym_val_list, STATE(7100), 1, sym_comment, - [235639] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235050] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6725), 1, + sym_val_list, STATE(7101), 1, sym_comment, - ACTIONS(10524), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235651] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235066] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2247), 1, - sym__entry_separator, + ACTIONS(11134), 1, + sym__table_head_separator, STATE(7102), 1, sym_comment, - ACTIONS(2243), 2, - anon_sym_RBRACE, - anon_sym__, - [235665] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2253), 1, - sym__entry_separator, + ACTIONS(11136), 1, + sym__table_head_separator, STATE(7103), 1, sym_comment, - ACTIONS(2251), 2, - anon_sym_RBRACE, - anon_sym__, - [235679] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235094] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11224), 1, - aux_sym_cmd_identifier_token41, STATE(7104), 1, sym_comment, - ACTIONS(11226), 2, - sym_filesize_unit, - sym_duration_unit, - [235693] = 5, + ACTIONS(10389), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235106] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4731), 1, - sym_block, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6736), 1, + sym_val_list, STATE(7105), 1, sym_comment, - [235709] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235122] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6738), 1, + sym_val_list, STATE(7106), 1, sym_comment, - ACTIONS(10076), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235721] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235138] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6741), 1, + sym_val_list, STATE(7107), 1, sym_comment, - ACTIONS(10098), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235733] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235154] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6743), 1, + sym_val_list, STATE(7108), 1, sym_comment, - ACTIONS(10544), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235745] = 4, - ACTIONS(247), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235170] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - aux_sym_unquoted_token2, + ACTIONS(11138), 1, + sym__table_head_separator, STATE(7109), 1, sym_comment, - ACTIONS(1645), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [235759] = 3, - ACTIONS(247), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235184] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11140), 1, + sym__table_head_separator, STATE(7110), 1, sym_comment, - ACTIONS(9783), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235771] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(11228), 1, + [235198] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10555), 1, + sym_hex_digit, + ACTIONS(11142), 1, anon_sym_RBRACK, - STATE(6576), 1, - aux_sym__multiple_types_repeat1, + STATE(6970), 1, + aux_sym_val_binary_repeat1, STATE(7111), 1, sym_comment, - [235787] = 5, - ACTIONS(3), 1, + [235214] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11230), 1, - anon_sym_RBRACK, - STATE(6577), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6760), 1, + sym_val_list, STATE(7112), 1, sym_comment, - [235803] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235230] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11232), 1, - anon_sym_RBRACK, - STATE(6578), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6762), 1, + sym_val_list, STATE(7113), 1, sym_comment, - [235819] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235246] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11234), 1, - anon_sym_RBRACK, - STATE(6579), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6534), 1, + sym_block, STATE(7114), 1, sym_comment, - [235835] = 5, - ACTIONS(3), 1, + [235262] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11236), 1, - anon_sym_RBRACK, - STATE(6580), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6765), 1, + sym_val_list, STATE(7115), 1, sym_comment, - [235851] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235278] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11238), 1, - anon_sym_RBRACK, - STATE(6581), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6768), 1, + sym_val_list, STATE(7116), 1, sym_comment, - [235867] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11240), 1, - anon_sym_RBRACK, - STATE(6582), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11144), 1, + sym__table_head_separator, STATE(7117), 1, sym_comment, - [235883] = 3, - ACTIONS(247), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235308] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11146), 1, + sym__table_head_separator, STATE(7118), 1, sym_comment, - ACTIONS(10174), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235895] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235322] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11242), 1, - anon_sym_RBRACK, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6782), 1, + sym_val_list, STATE(7119), 1, sym_comment, - STATE(7139), 1, - aux_sym_val_binary_repeat1, - [235911] = 5, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235338] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11244), 1, - anon_sym_RBRACK, - STATE(6583), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6785), 1, + sym_val_list, STATE(7120), 1, sym_comment, - [235927] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235354] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1845), 1, - sym__entry_separator, + ACTIONS(9428), 1, + anon_sym_PIPE, + ACTIONS(11148), 1, + anon_sym_EQ_GT, + STATE(6683), 1, + aux_sym_match_pattern_repeat1, STATE(7121), 1, sym_comment, - ACTIONS(1843), 2, - anon_sym_RBRACE, - anon_sym__, - [235941] = 3, + [235370] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6788), 1, + sym_val_list, STATE(7122), 1, sym_comment, - ACTIONS(10412), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235953] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235386] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11246), 1, - sym__table_head_separator, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6790), 1, + sym_val_list, STATE(7123), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [235967] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235402] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - sym__newline, - ACTIONS(2247), 1, - sym__space, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(11150), 1, + sym__table_head_separator, STATE(7124), 1, sym_comment, - [235983] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - ACTIONS(2251), 1, - sym__newline, - ACTIONS(2253), 1, - sym__space, - STATE(7125), 1, - sym_comment, - [235999] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11248), 1, + ACTIONS(11152), 1, sym__table_head_separator, - STATE(7126), 1, + STATE(7125), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [236013] = 4, + [235430] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4976), 1, + ACTIONS(5567), 1, sym__entry_separator, - STATE(7127), 1, + ACTIONS(11154), 1, + anon_sym_RBRACK, + STATE(6610), 1, + aux_sym__multiple_types_repeat1, + STATE(7126), 1, sym_comment, - ACTIONS(4979), 2, - anon_sym_RBRACE, - anon_sym__, - [236027] = 5, + [235446] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6743), 1, + STATE(6800), 1, sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7128), 1, + STATE(7127), 1, sym_comment, - [236043] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235462] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6823), 1, + STATE(6802), 1, sym_val_list, + STATE(7128), 1, + sym_comment, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235478] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7129), 1, sym_comment, - [236059] = 5, + ACTIONS(10423), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235490] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6827), 1, + STATE(6804), 1, sym_val_list, STATE(7130), 1, sym_comment, - [236075] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235506] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6884), 1, + STATE(6806), 1, sym_val_list, STATE(7131), 1, sym_comment, - [236091] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7132), 1, - sym_comment, - ACTIONS(10628), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236103] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1705), 1, - aux_sym_unquoted_token2, - STATE(7133), 1, - sym_comment, - ACTIONS(1707), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [236117] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11250), 1, + ACTIONS(11156), 1, sym__table_head_separator, - STATE(7134), 1, + STATE(7132), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [236131] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(4618), 1, - aux_sym_unquoted_token4, - STATE(7135), 1, - sym_comment, - STATE(7411), 1, - sym__expr_parenthesized_immediate, - [236147] = 4, + [235536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11252), 1, + ACTIONS(11158), 1, sym__table_head_separator, - STATE(7136), 1, + STATE(7133), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [236161] = 5, + [235550] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6992), 1, + STATE(6816), 1, sym_val_list, - STATE(7137), 1, + STATE(7134), 1, sym_comment, - [236177] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235566] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, + STATE(6818), 1, + sym_val_list, + STATE(7135), 1, + sym_comment, + STATE(7180), 1, aux_sym_val_table_repeat1, - STATE(6996), 1, + [235582] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6822), 1, sym_val_list, - STATE(7138), 1, + STATE(7136), 1, sym_comment, - [236193] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235598] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11254), 1, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6823), 1, + sym_val_list, + STATE(7137), 1, + sym_comment, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235614] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11160), 1, + sym__table_head_separator, + STATE(7138), 1, + sym_comment, + ACTIONS(1070), 2, anon_sym_RBRACK, + sym__entry_separator, + [235628] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11162), 1, + sym__table_head_separator, STATE(7139), 1, sym_comment, - STATE(7151), 1, - aux_sym_val_binary_repeat1, - [236209] = 5, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235642] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6999), 1, + STATE(6830), 1, sym_val_list, STATE(7140), 1, sym_comment, - [236225] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235658] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7000), 1, + STATE(6832), 1, sym_val_list, STATE(7141), 1, sym_comment, - [236241] = 3, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235674] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6836), 1, + sym_val_list, STATE(7142), 1, sym_comment, - ACTIONS(10130), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236253] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235690] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11256), 1, - sym__table_head_separator, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6837), 1, + sym_val_list, STATE(7143), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236267] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1794), 1, - sym__entry_separator, + ACTIONS(11164), 1, + sym__table_head_separator, STATE(7144), 1, sym_comment, - ACTIONS(1786), 2, - anon_sym_RBRACE, - anon_sym__, - [236281] = 4, + ACTIONS(1070), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235720] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11258), 1, + ACTIONS(11166), 1, sym__table_head_separator, STATE(7145), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [236295] = 5, + [235734] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7065), 1, + STATE(6849), 1, sym_val_list, STATE(7146), 1, sym_comment, - [236311] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235750] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7074), 1, + STATE(6851), 1, sym_val_list, STATE(7147), 1, sym_comment, - [236327] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235766] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11168), 1, + anon_sym_RBRACK, + STATE(6611), 1, + aux_sym__multiple_types_repeat1, + STATE(7148), 1, + sym_comment, + [235782] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7085), 1, + STATE(6854), 1, sym_val_list, - STATE(7148), 1, + STATE(7149), 1, sym_comment, - [236343] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235798] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7088), 1, + STATE(6855), 1, sym_val_list, - STATE(7149), 1, + STATE(7150), 1, sym_comment, - [236359] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11260), 1, + ACTIONS(11170), 1, sym__table_head_separator, - STATE(7150), 1, + STATE(7151), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [236373] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11262), 1, - anon_sym_RBRACK, - ACTIONS(11264), 1, - sym_hex_digit, - STATE(7151), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [236387] = 4, + [235828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11267), 1, + ACTIONS(11172), 1, sym__table_head_separator, STATE(7152), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1070), 2, anon_sym_RBRACK, sym__entry_separator, - [236401] = 5, + [235842] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11269), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(6157), 1, + STATE(6612), 1, aux_sym__multiple_types_repeat1, STATE(7153), 1, sym_comment, - [236417] = 5, + [235858] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7113), 1, + STATE(6865), 1, sym_val_list, STATE(7154), 1, sym_comment, - [236433] = 5, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235874] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7115), 1, + STATE(6868), 1, sym_val_list, STATE(7155), 1, sym_comment, - [236449] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, + STATE(7180), 1, aux_sym_val_table_repeat1, - STATE(7117), 1, - sym_val_list, + [235890] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11176), 1, + anon_sym_RBRACK, + STATE(6071), 1, + aux_sym__multiple_types_repeat1, STATE(7156), 1, sym_comment, - [236465] = 5, + [235906] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7120), 1, + STATE(6870), 1, sym_val_list, STATE(7157), 1, sym_comment, - [236481] = 4, - ACTIONS(3), 1, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235922] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11271), 1, - sym__table_head_separator, + ACTIONS(8900), 1, + anon_sym_LBRACK, + STATE(6871), 1, + sym_val_list, STATE(7158), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236495] = 4, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [235938] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, + ACTIONS(5567), 1, sym__entry_separator, + ACTIONS(11178), 1, + anon_sym_RBRACK, + STATE(6072), 1, + aux_sym__multiple_types_repeat1, STATE(7159), 1, sym_comment, - ACTIONS(2293), 2, - anon_sym_RBRACE, - anon_sym__, - [236509] = 4, + [235954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11273), 1, - sym__table_head_separator, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11180), 1, + anon_sym_RBRACK, + STATE(6402), 1, + aux_sym__multiple_types_repeat1, STATE(7160), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236523] = 5, - ACTIONS(247), 1, + [235970] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11182), 1, + anon_sym_RBRACK, + STATE(6073), 1, + aux_sym__multiple_types_repeat1, STATE(7161), 1, sym_comment, - STATE(7175), 1, - sym_val_list, - [236539] = 5, - ACTIONS(247), 1, + [235986] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11184), 1, + anon_sym_RBRACK, + STATE(6074), 1, + aux_sym__multiple_types_repeat1, STATE(7162), 1, sym_comment, - STATE(7187), 1, - sym_val_list, - [236555] = 5, - ACTIONS(247), 1, + [236002] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11186), 1, + anon_sym_RBRACK, + STATE(6075), 1, + aux_sym__multiple_types_repeat1, STATE(7163), 1, sym_comment, - STATE(7199), 1, - sym_val_list, - [236571] = 5, + [236018] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, STATE(7164), 1, sym_comment, - STATE(7207), 1, - sym_val_list, - [236587] = 4, + ACTIONS(9814), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236030] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11275), 1, - sym__table_head_separator, + ACTIONS(3583), 1, + sym__newline, + ACTIONS(3585), 1, + sym__space, + STATE(1047), 1, + aux_sym_ctrl_do_parenthesized_repeat2, STATE(7165), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236601] = 4, + [236046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10604), 1, - anon_sym_LPAREN, STATE(7166), 1, sym_comment, - ACTIONS(10606), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [236615] = 4, + ACTIONS(2253), 3, + sym_identifier, + anon_sym_DOLLAR, + aux_sym_unquoted_token4, + [236058] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11277), 1, - sym__table_head_separator, + ACTIONS(5901), 1, + anon_sym_RBRACE, + ACTIONS(5903), 1, + sym__entry_separator, + STATE(2958), 1, + aux_sym__multiple_types_repeat1, STATE(7167), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236629] = 5, + [236074] = 3, ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11279), 1, - anon_sym_RBRACK, - STATE(6674), 1, - aux_sym_val_binary_repeat1, + anon_sym_POUND, STATE(7168), 1, sym_comment, - [236645] = 5, + ACTIONS(1044), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [236086] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6664), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, STATE(7169), 1, sym_comment, - [236661] = 5, - ACTIONS(247), 1, + ACTIONS(9744), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236098] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6666), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(4898), 1, + sym__space, + ACTIONS(4900), 1, + sym__newline, + ACTIONS(11188), 1, + anon_sym_EQ2, STATE(7170), 1, sym_comment, - [236677] = 5, - ACTIONS(3), 1, + [236114] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11281), 1, - anon_sym_RBRACK, - STATE(6158), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1667), 1, + aux_sym_unquoted_token2, STATE(7171), 1, sym_comment, - [236693] = 5, - ACTIONS(247), 1, + ACTIONS(1669), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [236128] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6669), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(1562), 1, + anon_sym_LPAREN2, + ACTIONS(1574), 1, + aux_sym__unquoted_in_record_token4, STATE(7172), 1, sym_comment, - [236709] = 5, + STATE(7334), 1, + sym__expr_parenthesized_immediate, + [236144] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6670), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, STATE(7173), 1, sym_comment, - [236725] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11283), 1, - sym__table_head_separator, - STATE(7174), 1, - sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236739] = 5, + ACTIONS(10441), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11285), 1, + ACTIONS(11190), 1, anon_sym_RBRACK, - STATE(6159), 1, + STATE(2630), 1, aux_sym__multiple_types_repeat1, - STATE(7175), 1, + STATE(7174), 1, sym_comment, - [236755] = 4, - ACTIONS(3), 1, + [236172] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11287), 1, - sym__table_head_separator, - STATE(7176), 1, + STATE(7175), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236769] = 5, + ACTIONS(10541), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11289), 1, - anon_sym_RBRACK, - STATE(6160), 1, - aux_sym__multiple_types_repeat1, - STATE(7177), 1, + ACTIONS(11192), 1, + anon_sym_LPAREN, + STATE(7176), 1, sym_comment, - [236785] = 5, + ACTIONS(11194), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [236198] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6687), 1, + STATE(6792), 1, sym_val_list, - STATE(6768), 1, + STATE(7177), 1, + sym_comment, + STATE(7180), 1, aux_sym_val_table_repeat1, + [236214] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11196), 1, + anon_sym_RBRACK, + STATE(6354), 1, + aux_sym__multiple_types_repeat1, STATE(7178), 1, sym_comment, - [236801] = 5, + [236230] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6689), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, STATE(7179), 1, sym_comment, - [236817] = 5, + ACTIONS(11198), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [236242] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(11200), 1, anon_sym_LBRACK, - STATE(6692), 1, + STATE(7295), 1, sym_val_list, - STATE(6768), 1, + STATE(7180), 2, + sym_comment, aux_sym_val_table_repeat1, - STATE(7180), 1, + [236256] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + ACTIONS(11203), 1, + anon_sym_RBRACK, + STATE(6089), 1, + aux_sym__multiple_types_repeat1, + STATE(7181), 1, sym_comment, - [236833] = 5, + [236272] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8900), 1, anon_sym_LBRACK, - STATE(6693), 1, + STATE(6887), 1, sym_val_list, - STATE(6768), 1, + STATE(7180), 1, aux_sym_val_table_repeat1, - STATE(7181), 1, - sym_comment, - [236849] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11291), 1, - sym__table_head_separator, STATE(7182), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236863] = 4, + [236288] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11293), 1, - sym__table_head_separator, + ACTIONS(5547), 1, + sym__entry_separator, + ACTIONS(11205), 1, + anon_sym_RBRACK, + STATE(2614), 1, + aux_sym__multiple_types_repeat1, STATE(7183), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236877] = 3, + [236304] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(7184), 1, sym_comment, - ACTIONS(9797), 3, - ts_builtin_sym_end, + ACTIONS(11207), 3, sym__newline, anon_sym_SEMI, - [236889] = 5, + anon_sym_RPAREN, + [236316] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6709), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, STATE(7185), 1, sym_comment, - [236905] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6712), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(7186), 1, - sym_comment, - [236921] = 5, + ACTIONS(11209), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [236328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(5567), 1, sym__entry_separator, - ACTIONS(11295), 1, + ACTIONS(11211), 1, anon_sym_RBRACK, - STATE(6161), 1, + STATE(6555), 1, aux_sym__multiple_types_repeat1, + STATE(7186), 1, + sym_comment, + [236344] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11213), 1, + aux_sym__unquoted_with_expr_token1, STATE(7187), 1, sym_comment, - [236937] = 5, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + [236357] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6715), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6257), 1, + sym_block, STATE(7188), 1, sym_comment, - [236953] = 5, + [236370] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6718), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, STATE(7189), 1, sym_comment, - [236969] = 4, - ACTIONS(3), 1, + STATE(7682), 1, + sym__expr_parenthesized_immediate, + [236383] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11297), 1, - sym__table_head_separator, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6981), 1, + sym_block, STATE(7190), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236983] = 4, + [236396] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11299), 1, - sym__table_head_separator, - STATE(7191), 1, - sym_comment, - ACTIONS(1076), 2, + ACTIONS(7067), 1, anon_sym_RBRACK, + ACTIONS(7069), 1, sym__entry_separator, - [236997] = 5, + STATE(7191), 1, + sym_comment, + [236409] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6738), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6451), 1, + sym_block, STATE(7192), 1, sym_comment, - [237013] = 5, + [236422] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6741), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(4940), 1, + anon_sym_in, + ACTIONS(11215), 1, + anon_sym_EQ2, STATE(7193), 1, sym_comment, - [237029] = 5, + [236435] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6745), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(5441), 1, + anon_sym_LPAREN2, STATE(7194), 1, sym_comment, - [237045] = 5, - ACTIONS(247), 1, + STATE(7216), 1, + sym__expr_parenthesized_immediate, + [236448] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6748), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(11217), 1, + anon_sym_RBRACK, + ACTIONS(11219), 1, + sym__entry_separator, STATE(7195), 1, sym_comment, - [237061] = 4, - ACTIONS(3), 1, + [236461] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11301), 1, - sym__table_head_separator, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(7173), 1, + sym_block, STATE(7196), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237075] = 5, + [236474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11303), 1, - anon_sym_RBRACK, - STATE(6162), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1572), 1, + aux_sym_record_entry_token1, + ACTIONS(9740), 1, + aux_sym_cmd_identifier_token37, STATE(7197), 1, sym_comment, - [237091] = 4, + [236487] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11305), 1, - sym__table_head_separator, + ACTIONS(11221), 1, + anon_sym_RBRACE, + ACTIONS(11223), 1, + sym__entry_separator, STATE(7198), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237105] = 5, + [236500] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11307), 1, - anon_sym_RBRACK, - STATE(6163), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11225), 1, + aux_sym__unquoted_with_expr_token1, STATE(7199), 1, sym_comment, - [237121] = 5, - ACTIONS(247), 1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + [236513] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6766), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(11227), 1, + aux_sym__unquoted_with_expr_token1, STATE(7200), 1, sym_comment, - [237137] = 5, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + [236526] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6769), 1, - sym_val_list, STATE(7201), 1, sym_comment, - [237153] = 5, - ACTIONS(247), 1, + ACTIONS(11229), 2, + anon_sym_RBRACK, + sym_hex_digit, + [236537] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6772), 1, - sym_val_list, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(2255), 1, + sym__entry_separator, STATE(7202), 1, sym_comment, - [237169] = 5, - ACTIONS(247), 1, + [236550] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6775), 1, - sym_val_list, + ACTIONS(11231), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7203), 1, sym_comment, - [237185] = 4, + STATE(7338), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [236563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11309), 1, - sym__table_head_separator, + ACTIONS(11233), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7204), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237199] = 5, - ACTIONS(3), 1, + STATE(7325), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [236576] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11311), 1, - anon_sym_RBRACK, - STATE(6653), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6909), 1, + sym_block, STATE(7205), 1, sym_comment, - [237215] = 4, - ACTIONS(3), 1, + [236589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11313), 1, - sym__table_head_separator, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6912), 1, + sym_block, STATE(7206), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237229] = 5, + [236602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11315), 1, - anon_sym_RBRACK, - STATE(6164), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym__unquoted_in_list_token4, STATE(7207), 1, sym_comment, - [237245] = 5, - ACTIONS(247), 1, + [236615] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6793), 1, - sym_val_list, + ACTIONS(5107), 1, + sym__entry_separator, + ACTIONS(5109), 1, + anon_sym_RBRACK, STATE(7208), 1, sym_comment, - [237261] = 5, - ACTIONS(247), 1, + [236628] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6796), 1, - sym_val_list, + ACTIONS(5095), 1, + sym__entry_separator, + ACTIONS(5097), 1, + anon_sym_RBRACK, STATE(7209), 1, sym_comment, - [237277] = 5, - ACTIONS(247), 1, + [236641] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6799), 1, - sym_val_list, + ACTIONS(11235), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7210), 1, sym_comment, - [237293] = 5, + STATE(7338), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [236654] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6800), 1, - sym_val_list, + ACTIONS(5441), 1, + anon_sym_LPAREN2, STATE(7211), 1, sym_comment, - [237309] = 4, - ACTIONS(3), 1, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [236667] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11317), 1, - sym__table_head_separator, + ACTIONS(3978), 1, + anon_sym_LPAREN2, STATE(7212), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237323] = 4, + STATE(7299), 1, + sym__expr_parenthesized_immediate, + [236680] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11319), 1, - sym__table_head_separator, + ACTIONS(5132), 1, + sym__entry_separator, + ACTIONS(5134), 1, + anon_sym_RBRACK, STATE(7213), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237337] = 5, + [236693] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6814), 1, - sym_val_list, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6989), 1, + sym_block, STATE(7214), 1, sym_comment, - [237353] = 5, - ACTIONS(247), 1, + [236706] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6817), 1, - sym_val_list, + ACTIONS(7907), 1, + sym__entry_separator, + ACTIONS(7909), 1, + anon_sym_RBRACK, STATE(7215), 1, sym_comment, - [237369] = 4, + [236719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11321), 1, - sym__table_head_separator, + ACTIONS(11237), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7203), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7216), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237383] = 5, - ACTIONS(247), 1, + [236732] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6820), 1, - sym_val_list, + ACTIONS(7913), 1, + sym__entry_separator, + ACTIONS(7915), 1, + anon_sym_RBRACK, STATE(7217), 1, sym_comment, - [237399] = 5, + [236745] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6822), 1, - sym_val_list, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6841), 1, + sym_block, STATE(7218), 1, sym_comment, - [237415] = 4, - ACTIONS(3), 1, + [236758] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11323), 1, - sym__table_head_separator, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4687), 1, + sym_block, STATE(7219), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237429] = 4, - ACTIONS(247), 1, + [236771] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym__unquoted_in_record_token4, STATE(7220), 1, sym_comment, - ACTIONS(1794), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [237443] = 4, + [236784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11325), 1, - sym__table_head_separator, STATE(7221), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237457] = 5, - ACTIONS(247), 1, + ACTIONS(2253), 2, + anon_sym_in, + aux_sym_unquoted_token4, + [236795] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6841), 1, - sym_val_list, + ACTIONS(6412), 1, + anon_sym_LPAREN2, + ACTIONS(11239), 1, + aux_sym__record_key_token1, STATE(7222), 1, sym_comment, - [237473] = 5, + [236808] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6844), 1, - sym_val_list, + ACTIONS(5441), 1, + anon_sym_LPAREN2, STATE(7223), 1, sym_comment, - [237489] = 5, - ACTIONS(247), 1, + STATE(7361), 1, + sym__expr_parenthesized_immediate, + [236821] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6848), 1, - sym_val_list, + ACTIONS(11241), 1, + aux_sym__unquoted_with_expr_token1, STATE(7224), 1, sym_comment, - [237505] = 5, - ACTIONS(247), 1, + STATE(7237), 1, + aux_sym__unquoted_with_expr_repeat1, + [236834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6849), 1, - sym_val_list, + ACTIONS(11243), 1, + aux_sym__unquoted_with_expr_token1, STATE(7225), 1, sym_comment, - [237521] = 4, + STATE(7239), 1, + aux_sym__unquoted_with_expr_repeat1, + [236847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11327), 1, - sym__table_head_separator, + ACTIONS(2297), 1, + anon_sym_RBRACE, + ACTIONS(2301), 1, + sym__entry_separator, STATE(7226), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237535] = 4, - ACTIONS(3), 1, + [236860] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2402), 1, - sym__entry_separator, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, + ACTIONS(11245), 1, + anon_sym_make, STATE(7227), 1, sym_comment, - ACTIONS(2400), 2, - anon_sym_RBRACE, - anon_sym__, - [237549] = 5, - ACTIONS(247), 1, + [236873] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6867), 1, - sym_val_list, + ACTIONS(11247), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7228), 1, sym_comment, - [237565] = 5, - ACTIONS(247), 1, + STATE(7325), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [236886] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6870), 1, - sym_val_list, + ACTIONS(11249), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7199), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7229), 1, sym_comment, - [237581] = 5, - ACTIONS(247), 1, + [236899] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6874), 1, - sym_val_list, + ACTIONS(11251), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7200), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7230), 1, sym_comment, - [237597] = 5, + [236912] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6875), 1, - sym_val_list, + ACTIONS(11253), 1, + anon_sym_LBRACE, + STATE(4821), 1, + sym_block, STATE(7231), 1, sym_comment, - [237613] = 4, + [236925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11329), 1, - sym__table_head_separator, + ACTIONS(11255), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7232), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237627] = 4, + STATE(7325), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [236938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11331), 1, - sym__table_head_separator, + ACTIONS(9562), 1, + anon_sym_RBRACE, + ACTIONS(9564), 1, + sym__entry_separator, STATE(7233), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237641] = 3, - ACTIONS(247), 1, + [236951] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11257), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7234), 1, sym_comment, - ACTIONS(9797), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237653] = 5, + STATE(7367), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [236964] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6890), 1, - sym_val_list, STATE(7235), 1, sym_comment, - [237669] = 5, - ACTIONS(247), 1, + ACTIONS(10638), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [236975] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6892), 1, - sym_val_list, + ACTIONS(11259), 1, + sym__newline, + ACTIONS(11261), 1, + sym__space, STATE(7236), 1, sym_comment, - [237685] = 5, - ACTIONS(247), 1, + [236988] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6896), 1, - sym_val_list, + ACTIONS(11263), 1, + aux_sym__unquoted_with_expr_token1, STATE(7237), 1, sym_comment, - [237701] = 5, - ACTIONS(247), 1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + [237001] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6899), 1, - sym_val_list, + ACTIONS(6361), 1, + sym__entry_separator, + STATE(3453), 1, + aux_sym__multiple_types_repeat1, STATE(7238), 1, sym_comment, - [237717] = 4, + [237014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11333), 1, - sym__table_head_separator, + ACTIONS(11265), 1, + aux_sym__unquoted_with_expr_token1, STATE(7239), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237731] = 4, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + [237027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11335), 1, - sym__table_head_separator, + ACTIONS(7927), 1, + sym__entry_separator, + ACTIONS(7929), 1, + anon_sym_RBRACK, STATE(7240), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237745] = 5, - ACTIONS(247), 1, + [237040] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6911), 1, - sym_val_list, + ACTIONS(7931), 1, + sym__entry_separator, + ACTIONS(7933), 1, + anon_sym_RBRACK, STATE(7241), 1, sym_comment, - [237761] = 5, - ACTIONS(247), 1, + [237053] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6914), 1, - sym_val_list, + ACTIONS(7935), 1, + sym__entry_separator, + ACTIONS(7937), 1, + anon_sym_RBRACK, STATE(7242), 1, sym_comment, - [237777] = 5, + [237066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6918), 1, - sym_val_list, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6534), 1, + sym_block, STATE(7243), 1, sym_comment, - [237793] = 5, - ACTIONS(247), 1, + [237079] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6920), 1, - sym_val_list, + ACTIONS(5567), 1, + sym__entry_separator, + STATE(2668), 1, + aux_sym__multiple_types_repeat1, STATE(7244), 1, sym_comment, - [237809] = 4, + [237092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11337), 1, - sym__table_head_separator, + ACTIONS(5099), 1, + sym__entry_separator, + ACTIONS(5101), 1, + anon_sym_RBRACK, STATE(7245), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237823] = 4, + [237105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11339), 1, - sym__table_head_separator, + ACTIONS(7673), 1, + sym__entry_separator, + ACTIONS(7677), 1, + anon_sym_RBRACK, STATE(7246), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237837] = 5, - ACTIONS(247), 1, + [237118] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6928), 1, - sym_val_list, + ACTIONS(11267), 1, + aux_sym__unquoted_with_expr_token1, STATE(7247), 1, sym_comment, - [237853] = 5, + STATE(7298), 1, + aux_sym__unquoted_with_expr_repeat1, + [237131] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6930), 1, - sym_val_list, + ACTIONS(3978), 1, + anon_sym_LPAREN2, STATE(7248), 1, sym_comment, - [237869] = 4, - ACTIONS(247), 1, + STATE(7281), 1, + sym__expr_parenthesized_immediate, + [237144] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9978), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11269), 1, + sym__newline, + ACTIONS(11271), 1, + sym__space, STATE(7249), 1, sym_comment, - ACTIONS(9980), 2, - sym_filesize_unit, - sym_duration_unit, - [237883] = 5, - ACTIONS(247), 1, + [237157] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6933), 1, - sym_val_list, + ACTIONS(11273), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7250), 1, sym_comment, - [237899] = 5, - ACTIONS(247), 1, + STATE(7338), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [237170] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6935), 1, - sym_val_list, + ACTIONS(2287), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + sym__entry_separator, STATE(7251), 1, sym_comment, - [237915] = 4, - ACTIONS(3), 1, + [237183] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11341), 1, - sym__table_head_separator, + ACTIONS(1562), 1, + anon_sym_LPAREN2, STATE(7252), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237929] = 4, - ACTIONS(3), 1, + STATE(7285), 1, + sym__expr_parenthesized_immediate, + [237196] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11343), 1, - sym__table_head_separator, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6639), 1, + sym_block, STATE(7253), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237943] = 5, - ACTIONS(247), 1, + [237209] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6943), 1, - sym_val_list, + ACTIONS(11275), 1, + aux_sym__unquoted_with_expr_token1, STATE(7254), 1, sym_comment, - [237959] = 5, - ACTIONS(247), 1, + STATE(7266), 1, + aux_sym__unquoted_with_expr_repeat1, + [237222] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6946), 1, - sym_val_list, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1796), 1, + sym__entry_separator, STATE(7255), 1, sym_comment, - [237975] = 5, - ACTIONS(247), 1, + [237235] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6950), 1, - sym_val_list, + ACTIONS(7807), 1, + sym__entry_separator, + ACTIONS(7809), 1, + anon_sym_RBRACK, STATE(7256), 1, sym_comment, - [237991] = 5, - ACTIONS(247), 1, + [237248] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6951), 1, - sym_val_list, + ACTIONS(11277), 1, + aux_sym__unquoted_with_expr_token1, STATE(7257), 1, sym_comment, - [238007] = 4, - ACTIONS(3), 1, + STATE(7275), 1, + aux_sym__unquoted_with_expr_repeat1, + [237261] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11345), 1, - sym__table_head_separator, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6896), 1, + sym_block, STATE(7258), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238021] = 4, - ACTIONS(3), 1, + [237274] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11347), 1, - sym__table_head_separator, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6659), 1, + sym_block, STATE(7259), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238035] = 3, + [237287] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6906), 1, + sym_block, STATE(7260), 1, sym_comment, - ACTIONS(9996), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238047] = 5, + [237300] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6960), 1, - sym_val_list, + ACTIONS(1562), 1, + anon_sym_LPAREN2, STATE(7261), 1, sym_comment, - [238063] = 5, - ACTIONS(247), 1, + STATE(7671), 1, + sym__expr_parenthesized_immediate, + [237313] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6963), 1, - sym_val_list, + ACTIONS(11279), 1, + aux_sym__unquoted_with_expr_token1, STATE(7262), 1, sym_comment, - [238079] = 5, + STATE(7346), 1, + aux_sym__unquoted_with_expr_repeat1, + [237326] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6965), 1, - sym_val_list, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6146), 1, + sym_block, STATE(7263), 1, sym_comment, - [238095] = 5, - ACTIONS(247), 1, + [237339] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6967), 1, - sym_val_list, + ACTIONS(5103), 1, + sym__entry_separator, + ACTIONS(5105), 1, + anon_sym_RBRACK, STATE(7264), 1, sym_comment, - [238111] = 4, - ACTIONS(3), 1, + [237352] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11349), 1, - sym__table_head_separator, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, + ACTIONS(2289), 1, + anon_sym_LBRACE, STATE(7265), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238125] = 4, + [237365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11351), 1, - sym__table_head_separator, + ACTIONS(11281), 1, + aux_sym__unquoted_with_expr_token1, STATE(7266), 1, sym_comment, - ACTIONS(1076), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238139] = 5, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + [237378] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6973), 1, - sym_val_list, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(4806), 1, + sym_block, STATE(7267), 1, sym_comment, - [238155] = 5, - ACTIONS(247), 1, + [237391] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6976), 1, - sym_val_list, - STATE(7268), 1, + ACTIONS(11283), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 2, sym_comment, - [238171] = 5, + aux_sym__unquoted_with_expr_repeat1, + [237402] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6979), 1, - sym_val_list, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6988), 1, + sym_block, STATE(7269), 1, sym_comment, - [238187] = 5, + [237415] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6768), 1, - aux_sym_val_table_repeat1, - STATE(6980), 1, - sym_val_list, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6450), 1, + sym_block, STATE(7270), 1, sym_comment, - [238203] = 4, - ACTIONS(3), 1, + [237428] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(7018), 1, + sym_block, STATE(7271), 1, sym_comment, - ACTIONS(2243), 2, - sym_identifier, - anon_sym_DOLLAR, - [238217] = 4, + [237441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(2237), 1, + anon_sym_RBRACE, + ACTIONS(2241), 1, + sym__entry_separator, STATE(7272), 1, sym_comment, - ACTIONS(2251), 2, - sym_identifier, - anon_sym_DOLLAR, - [238231] = 4, - ACTIONS(3), 1, + [237454] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11353), 1, - anon_sym_LPAREN, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(7175), 1, + sym_block, STATE(7273), 1, sym_comment, - ACTIONS(11355), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [238245] = 3, + [237467] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6464), 1, + sym_block, STATE(7274), 1, sym_comment, - ACTIONS(6033), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [238257] = 5, - ACTIONS(247), 1, + [237480] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11357), 1, - anon_sym_RBRACK, - STATE(6809), 1, - aux_sym_val_binary_repeat1, + ACTIONS(11286), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7275), 1, sym_comment, - [238273] = 5, - ACTIONS(247), 1, + [237493] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11359), 1, - anon_sym_RBRACK, + ACTIONS(2245), 1, + anon_sym_RBRACE, + ACTIONS(2247), 1, + sym__entry_separator, STATE(7276), 1, sym_comment, - STATE(7282), 1, - aux_sym_val_binary_repeat1, - [238289] = 5, - ACTIONS(3), 1, + [237506] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11361), 1, - anon_sym_RBRACK, - STATE(6217), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6468), 1, + sym_block, STATE(7277), 1, sym_comment, - [238305] = 4, + [237519] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6928), 1, + sym_block, STATE(7278), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [238319] = 4, + [237532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(11288), 1, + anon_sym_RBRACK, + ACTIONS(11290), 1, sym__entry_separator, STATE(7279), 1, sym_comment, - ACTIONS(1796), 2, - anon_sym_RBRACE, - anon_sym__, - [238333] = 4, + [237545] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(1494), 1, aux_sym_unquoted_token2, + ACTIONS(1780), 1, + anon_sym_LPAREN2, STATE(7280), 1, sym_comment, - ACTIONS(1757), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [238347] = 5, + [237558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - ACTIONS(3924), 1, - aux_sym_unquoted_token4, + ACTIONS(11292), 1, + aux_sym__unquoted_with_expr_token1, STATE(7281), 1, sym_comment, - STATE(7469), 1, - sym__expr_parenthesized_immediate, - [238363] = 5, - ACTIONS(247), 1, + STATE(7364), 1, + aux_sym__unquoted_with_expr_repeat1, + [237571] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - sym_hex_digit, - ACTIONS(11363), 1, - anon_sym_RBRACK, - STATE(7151), 1, - aux_sym_val_binary_repeat1, + ACTIONS(11294), 1, + aux_sym__unquoted_with_expr_token1, STATE(7282), 1, sym_comment, - [238379] = 5, - ACTIONS(247), 1, + STATE(7376), 1, + aux_sym__unquoted_with_expr_repeat1, + [237584] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_LBRACK, - STATE(6679), 1, - sym_val_list, - STATE(6768), 1, - aux_sym_val_table_repeat1, + ACTIONS(11296), 1, + aux_sym__unquoted_with_expr_token1, STATE(7283), 1, sym_comment, - [238395] = 4, - ACTIONS(3), 1, + STATE(7289), 1, + aux_sym__unquoted_with_expr_repeat1, + [237597] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2370), 1, - sym__entry_separator, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6507), 1, + sym_block, STATE(7284), 1, sym_comment, - ACTIONS(2368), 2, - anon_sym_RBRACE, - anon_sym__, - [238409] = 3, - ACTIONS(247), 1, + [237610] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11298), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7228), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7285), 1, sym_comment, - ACTIONS(6037), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [238421] = 5, + [237623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11365), 1, - anon_sym_RBRACK, - STATE(6178), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11300), 1, + aux_sym__unquoted_with_expr_token1, STATE(7286), 1, sym_comment, - [238437] = 5, - ACTIONS(3), 1, + STATE(7365), 1, + aux_sym__unquoted_with_expr_repeat1, + [237636] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11367), 1, - anon_sym_RBRACK, - STATE(2568), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6333), 1, + sym_block, STATE(7287), 1, sym_comment, - [238453] = 3, - ACTIONS(247), 1, + [237649] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5056), 1, + sym__entry_separator, + ACTIONS(5059), 1, + anon_sym_RBRACE, STATE(7288), 1, sym_comment, - ACTIONS(6041), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [238465] = 4, + [237662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1900), 1, - anon_sym_POUND_BANG, - ACTIONS(11369), 1, - sym__newline, - STATE(7289), 2, + ACTIONS(11302), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7289), 1, sym_comment, - aux_sym_shebang_repeat1, - [238479] = 3, + [237675] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6793), 1, + sym_block, STATE(7290), 1, sym_comment, - ACTIONS(10608), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238491] = 5, + [237688] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(11372), 1, - anon_sym_RBRACE, - STATE(7008), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11304), 1, + sym__newline, + ACTIONS(11306), 1, + sym__space, STATE(7291), 1, sym_comment, - [238507] = 5, - ACTIONS(3), 1, + [237701] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - ACTIONS(9513), 1, - anon_sym_RBRACE, - STATE(7009), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(7229), 1, + sym__expr_parenthesized_immediate, STATE(7292), 1, sym_comment, - [238523] = 4, + [237714] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(1798), 1, aux_sym_unquoted_token2, STATE(7293), 1, sym_comment, - ACTIONS(2228), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [238537] = 4, - ACTIONS(247), 1, + [237727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4904), 1, - anon_sym_in, - ACTIONS(11374), 1, - anon_sym_EQ2, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(1786), 1, + sym__entry_separator, STATE(7294), 1, sym_comment, - [238550] = 3, - ACTIONS(247), 1, + [237740] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5567), 1, + sym__entry_separator, + STATE(6963), 1, + aux_sym__multiple_types_repeat1, STATE(7295), 1, sym_comment, - ACTIONS(11158), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [238561] = 4, - ACTIONS(247), 1, + [237753] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, - aux_sym_ctrl_match_token1, - STATE(6241), 1, - sym_val_record, + ACTIONS(2229), 1, + anon_sym_in, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, STATE(7296), 1, sym_comment, - [238574] = 4, + [237766] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(11376), 1, - anon_sym_make, + ACTIONS(11253), 1, + anon_sym_LBRACE, + STATE(4944), 1, + sym_block, STATE(7297), 1, sym_comment, - [238587] = 4, - ACTIONS(247), 1, + [237779] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7092), 1, - sym_block, + ACTIONS(11308), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7298), 1, sym_comment, - [238600] = 4, - ACTIONS(247), 1, + [237792] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_LPAREN2, + ACTIONS(11310), 1, + aux_sym__unquoted_with_expr_token1, STATE(7299), 1, sym_comment, - STATE(7340), 1, - sym__expr_parenthesized_immediate, - [238613] = 4, - ACTIONS(3), 1, + STATE(7303), 1, + aux_sym__unquoted_with_expr_repeat1, + [237805] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3787), 1, - sym__space, - STATE(1033), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6980), 1, + sym_block, STATE(7300), 1, sym_comment, - [238626] = 4, - ACTIONS(3), 1, + [237818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11378), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(11312), 1, + anon_sym_DASH, STATE(7301), 1, sym_comment, - STATE(7392), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238639] = 4, + STATE(7448), 1, + sym_param_short_flag, + [237831] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9567), 1, - anon_sym_if, + ACTIONS(3978), 1, + anon_sym_LPAREN2, STATE(7302), 1, sym_comment, - STATE(7747), 1, - sym_match_guard, - [238652] = 4, + STATE(7369), 1, + sym__expr_parenthesized_immediate, + [237844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6360), 1, - sym__entry_separator, - STATE(3409), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11314), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7303), 1, sym_comment, - [238665] = 4, - ACTIONS(3), 1, + [237857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11380), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8879), 1, + anon_sym_LBRACE, + STATE(6219), 1, + sym_val_record, STATE(7304), 1, sym_comment, - STATE(7392), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238678] = 4, + [237870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11382), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(5903), 1, + sym__entry_separator, + STATE(3025), 1, + aux_sym__multiple_types_repeat1, STATE(7305), 1, sym_comment, - STATE(7308), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238691] = 4, - ACTIONS(3), 1, + [237883] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_in, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(7224), 1, + sym__expr_parenthesized_immediate, STATE(7306), 1, sym_comment, - [238704] = 4, - ACTIONS(3), 1, + [237896] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11384), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(4898), 1, + anon_sym_in, + ACTIONS(11316), 1, + anon_sym_EQ2, STATE(7307), 1, sym_comment, - STATE(7392), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238717] = 4, + [237909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11386), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(11318), 1, + aux_sym__unquoted_with_expr_token1, STATE(7308), 1, sym_comment, - STATE(7392), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238730] = 4, - ACTIONS(247), 1, + STATE(7309), 1, + aux_sym__unquoted_with_expr_repeat1, + [237922] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7184), 1, - sym_block, + ACTIONS(11320), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7309), 1, sym_comment, - [238743] = 4, - ACTIONS(247), 1, + [237935] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6254), 1, - sym_block, + ACTIONS(11322), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7232), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7310), 1, sym_comment, - [238756] = 4, + [237948] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4904), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11388), 1, - anon_sym_EQ2, + ACTIONS(2301), 1, + anon_sym_LBRACE, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, STATE(7311), 1, sym_comment, - [238769] = 4, + [237961] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6257), 1, - sym_block, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(7282), 1, + sym__expr_parenthesized_immediate, STATE(7312), 1, sym_comment, - [238782] = 4, + [237974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6429), 1, - anon_sym_LPAREN2, - ACTIONS(11390), 1, - aux_sym__record_key_token1, + ACTIONS(7811), 1, + sym__entry_separator, + ACTIONS(7813), 1, + anon_sym_RBRACK, STATE(7313), 1, sym_comment, - [238795] = 4, + [237987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7813), 1, - sym__entry_separator, - ACTIONS(7815), 1, - anon_sym_RBRACK, + ACTIONS(2237), 1, + anon_sym_in, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, STATE(7314), 1, sym_comment, - [238808] = 4, - ACTIONS(247), 1, + [238000] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, + ACTIONS(2245), 1, + anon_sym_in, STATE(7315), 1, sym_comment, - STATE(7333), 1, - sym__expr_parenthesized_immediate, - [238821] = 4, - ACTIONS(247), 1, + [238013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(2233), 1, + sym__entry_separator, STATE(7316), 1, sym_comment, - [238834] = 4, - ACTIONS(3), 1, + [238026] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11392), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3978), 1, + anon_sym_LPAREN2, STATE(7317), 1, sym_comment, - STATE(7460), 1, - aux_sym__unquoted_with_expr_repeat1, - [238847] = 4, - ACTIONS(3), 1, + STATE(7347), 1, + sym__expr_parenthesized_immediate, + [238039] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11394), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6609), 1, + sym_block, STATE(7318), 1, sym_comment, - STATE(7461), 1, - aux_sym__unquoted_with_expr_repeat1, - [238860] = 4, + [238052] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6694), 1, - sym_block, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(2293), 1, + anon_sym_LPAREN2, STATE(7319), 1, sym_comment, - [238873] = 4, - ACTIONS(3), 1, + [238065] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7985), 1, - sym__entry_separator, - ACTIONS(7987), 1, - anon_sym_RBRACK, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(7247), 1, + sym__expr_parenthesized_immediate, STATE(7320), 1, sym_comment, - [238886] = 4, + [238078] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, - ACTIONS(11376), 1, - anon_sym_make, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6931), 1, + sym_block, STATE(7321), 1, sym_comment, - [238899] = 4, - ACTIONS(3), 1, + [238091] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7923), 1, - sym__entry_separator, - ACTIONS(7925), 1, - anon_sym_RBRACK, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, + ACTIONS(11245), 1, + anon_sym_make, STATE(7322), 1, sym_comment, - [238912] = 4, - ACTIONS(3), 1, + [238104] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11396), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7307), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1562), 1, + anon_sym_LPAREN2, STATE(7323), 1, sym_comment, - [238925] = 4, - ACTIONS(3), 1, + STATE(7334), 1, + sym__expr_parenthesized_immediate, + [238117] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11398), 1, - anon_sym_RBRACK, - ACTIONS(11400), 1, - sym__entry_separator, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, + ACTIONS(2295), 1, + anon_sym_LBRACE, STATE(7324), 1, sym_comment, - [238938] = 4, + [238130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5739), 1, - anon_sym_RBRACK, - ACTIONS(5745), 1, - sym__entry_separator, - STATE(7325), 1, + ACTIONS(11324), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7325), 2, sym_comment, - [238951] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238141] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(11327), 1, + anon_sym_EQ2, STATE(7326), 1, sym_comment, - STATE(7357), 1, - sym__expr_parenthesized_immediate, - [238964] = 4, - ACTIONS(3), 1, + [238154] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11402), 1, - anon_sym_RBRACK, - ACTIONS(11404), 1, - sym__entry_separator, + ACTIONS(1572), 1, + anon_sym_LBRACE, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, STATE(7327), 1, sym_comment, - [238977] = 4, + [238167] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6121), 1, - sym_block, + ACTIONS(3978), 1, + anon_sym_LPAREN2, + STATE(7254), 1, + sym__expr_parenthesized_immediate, STATE(7328), 1, sym_comment, - [238990] = 4, + [238180] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(7317), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11329), 1, + sym_identifier, + ACTIONS(11331), 1, + anon_sym_DOLLAR, STATE(7329), 1, sym_comment, - [239003] = 4, - ACTIONS(247), 1, + [238193] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6122), 1, - sym_block, + ACTIONS(7744), 1, + anon_sym_RBRACK, + ACTIONS(7746), 1, + sym__entry_separator, STATE(7330), 1, sym_comment, - [239016] = 4, - ACTIONS(3), 1, + [238206] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7572), 1, - sym__entry_separator, - ACTIONS(7576), 1, - anon_sym_RBRACK, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6136), 1, + sym_block, STATE(7331), 1, sym_comment, - [239029] = 4, - ACTIONS(3), 1, + [238219] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11406), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6145), 1, + sym_block, STATE(7332), 1, sym_comment, - STATE(7345), 1, - aux_sym__unquoted_with_expr_repeat1, - [239042] = 4, - ACTIONS(3), 1, + [238232] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11408), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6840), 1, + sym_block, STATE(7333), 1, sym_comment, - STATE(7396), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [239055] = 4, + [238245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5081), 1, - sym__entry_separator, - ACTIONS(5083), 1, - anon_sym_RBRACK, + ACTIONS(11333), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7334), 1, sym_comment, - [239068] = 4, + STATE(7362), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238258] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5085), 1, - sym__entry_separator, - ACTIONS(5087), 1, - anon_sym_RBRACK, + ACTIONS(11335), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7204), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7335), 1, sym_comment, - [239081] = 4, + [238271] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11410), 1, - anon_sym_DASH, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6195), 1, + sym_block, STATE(7336), 1, sym_comment, - STATE(7513), 1, - sym_param_short_flag, - [239094] = 4, - ACTIONS(247), 1, + [238284] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_LPAREN2, - STATE(7323), 1, - sym__expr_parenthesized_immediate, + ACTIONS(2291), 1, + anon_sym_RBRACE, + ACTIONS(2295), 1, + sym__entry_separator, STATE(7337), 1, sym_comment, - [239107] = 4, + [238297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11412), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7338), 1, + ACTIONS(11337), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7338), 2, sym_comment, - STATE(7346), 1, - aux_sym__unquoted_with_expr_repeat1, - [239120] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [238308] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11414), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(6941), 1, + sym_block, STATE(7339), 1, sym_comment, - STATE(7351), 1, - aux_sym__unquoted_with_expr_repeat1, - [239133] = 4, + [238321] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11416), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7301), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3697), 1, + sym__space, + STATE(1056), 1, + aux_sym_pipe_element_repeat1, STATE(7340), 1, sym_comment, - [239146] = 4, - ACTIONS(3), 1, + [238334] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6158), 1, + sym_block, STATE(7341), 1, sym_comment, - [239159] = 4, - ACTIONS(3), 1, + [238347] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11418), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6167), 1, + sym_block, STATE(7342), 1, sym_comment, - STATE(7352), 1, - aux_sym__unquoted_with_expr_repeat1, - [239172] = 4, + [238360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11420), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7304), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(11340), 1, + anon_sym_RBRACE, + ACTIONS(11342), 1, + sym__entry_separator, STATE(7343), 1, sym_comment, - [239185] = 4, - ACTIONS(3), 1, + [238373] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2317), 1, - sym__entry_separator, - STATE(566), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2299), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, STATE(7344), 1, sym_comment, - [239198] = 4, + [238386] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11422), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5547), 1, + sym__entry_separator, + STATE(2675), 1, + aux_sym__multiple_types_repeat1, STATE(7345), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [239211] = 4, + [238399] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11424), 1, + ACTIONS(11344), 1, aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7346), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [239224] = 4, - ACTIONS(247), 1, + [238412] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6155), 1, - sym_block, + ACTIONS(11346), 1, + aux_sym__unquoted_with_expr_token1, STATE(7347), 1, sym_comment, - [239237] = 4, - ACTIONS(247), 1, + STATE(7359), 1, + aux_sym__unquoted_with_expr_repeat1, + [238425] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6156), 1, - sym_block, + ACTIONS(11348), 1, + anon_sym_RBRACK, + ACTIONS(11350), 1, + sym__entry_separator, STATE(7348), 1, sym_comment, - [239250] = 4, + [238438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7867), 1, + ACTIONS(2336), 1, sym__entry_separator, - ACTIONS(7869), 1, - anon_sym_RBRACK, + STATE(620), 1, + aux_sym__multiple_types_repeat1, STATE(7349), 1, sym_comment, - [239263] = 4, - ACTIONS(3), 1, + [238451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5552), 1, - sym__entry_separator, - STATE(2636), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6239), 1, + sym_block, STATE(7350), 1, sym_comment, - [239276] = 4, + [238464] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11426), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1070), 1, + anon_sym_in, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, STATE(7351), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [239289] = 4, + [238477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11428), 1, + ACTIONS(11352), 1, aux_sym__unquoted_with_expr_token1, STATE(7352), 1, sym_comment, - STATE(7395), 1, + STATE(7360), 1, aux_sym__unquoted_with_expr_repeat1, - [239302] = 4, + [238490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11430), 1, - aux_sym__unquoted_with_expr_token1, STATE(7353), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [239315] = 4, + ACTIONS(1307), 2, + anon_sym_POUND_BANG, + sym__newline, + [238501] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7234), 1, - sym_block, + ACTIONS(8804), 1, + anon_sym_LBRACE, + STATE(6673), 1, + sym_val_record, STATE(7354), 1, sym_comment, - [239328] = 4, - ACTIONS(247), 1, + [238514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6902), 1, - sym_block, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5732), 1, + sym__entry_separator, STATE(7355), 1, sym_comment, - [239341] = 3, - ACTIONS(3), 1, + [238527] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4940), 1, + anon_sym_LBRACE, + ACTIONS(11354), 1, + anon_sym_EQ2, STATE(7356), 1, sym_comment, - ACTIONS(1349), 2, - anon_sym_POUND_BANG, - sym__newline, - [239352] = 4, - ACTIONS(3), 1, + [238540] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11432), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(1572), 1, + anon_sym_in, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, STATE(7357), 1, sym_comment, - STATE(7449), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [239365] = 4, - ACTIONS(3), 1, + [238553] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7093), 1, - anon_sym_RBRACK, - ACTIONS(7095), 1, - sym__entry_separator, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6319), 1, + sym_block, STATE(7358), 1, sym_comment, - [239378] = 4, - ACTIONS(247), 1, + [238566] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6776), 1, - sym_block, + ACTIONS(11356), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7359), 1, sym_comment, - [239391] = 4, + [238579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7859), 1, - sym__entry_separator, - ACTIONS(7861), 1, - anon_sym_RBRACK, + ACTIONS(11358), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7360), 1, sym_comment, - [239404] = 4, + [238592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7863), 1, - sym__entry_separator, - ACTIONS(7865), 1, - anon_sym_RBRACK, + ACTIONS(11360), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7210), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7361), 1, sym_comment, - [239417] = 4, - ACTIONS(247), 1, + [238605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6680), 1, - sym_block, + ACTIONS(11362), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7325), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7362), 1, sym_comment, - [239430] = 4, + [238618] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6623), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6445), 1, sym_block, STATE(7363), 1, sym_comment, - [239443] = 4, - ACTIONS(247), 1, + [238631] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6791), 1, - sym_block, + ACTIONS(11364), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7364), 1, sym_comment, - [239456] = 3, + [238644] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11366), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7365), 1, sym_comment, - ACTIONS(2259), 2, - anon_sym_in, - aux_sym_unquoted_token4, - [239467] = 4, - ACTIONS(247), 1, + [238657] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6777), 1, - sym_block, + ACTIONS(11368), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7250), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7366), 1, sym_comment, - [239480] = 4, - ACTIONS(247), 1, + [238670] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6839), 1, - sym_block, + ACTIONS(11370), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7338), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7367), 1, sym_comment, - [239493] = 4, - ACTIONS(3), 1, + [238683] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_in, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, STATE(7368), 1, sym_comment, - [239506] = 4, + [238696] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - ACTIONS(2251), 1, - anon_sym_in, + ACTIONS(11372), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7187), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7369), 1, sym_comment, - [239519] = 4, - ACTIONS(247), 1, + [238709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11434), 1, - aux_sym_ctrl_match_token1, - STATE(4871), 1, - sym_block, + ACTIONS(11374), 1, + aux_sym__unquoted_with_expr_token1, STATE(7370), 1, sym_comment, - [239532] = 4, + STATE(7375), 1, + aux_sym__unquoted_with_expr_repeat1, + [238722] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11436), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2231), 1, + anon_sym_LPAREN2, + ACTIONS(2235), 1, + aux_sym_unquoted_token4, STATE(7371), 1, sym_comment, - STATE(7384), 1, - aux_sym__unquoted_with_expr_repeat1, - [239545] = 4, - ACTIONS(247), 1, + [238735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8954), 1, - aux_sym_ctrl_match_token1, - STATE(6759), 1, - sym_val_record, + ACTIONS(9554), 1, + anon_sym_RBRACE, + ACTIONS(9556), 1, + sym__entry_separator, STATE(7372), 1, sym_comment, - [239558] = 4, + [238748] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6477), 1, - sym_block, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, + ACTIONS(1786), 1, + anon_sym_LBRACE, STATE(7373), 1, sym_comment, - [239571] = 4, + [238761] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6624), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE, + STATE(6320), 1, sym_block, STATE(7374), 1, sym_comment, - [239584] = 4, + [238774] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - sym__entry_separator, - ACTIONS(5114), 1, - anon_sym_RBRACK, + ACTIONS(11376), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7375), 1, sym_comment, - [239597] = 4, + [238787] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11438), 1, + ACTIONS(11378), 1, aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7376), 1, sym_comment, - STATE(7393), 1, - aux_sym__unquoted_with_expr_repeat1, - [239610] = 4, + [238800] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7132), 1, - sym_block, + ACTIONS(1687), 1, + aux_sym__unquoted_in_record_token2, STATE(7377), 1, sym_comment, - [239623] = 4, - ACTIONS(3), 1, + [238810] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11440), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token2, STATE(7378), 1, sym_comment, - STATE(7414), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [239636] = 3, + [238820] = 3, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11380), 1, + anon_sym_RBRACK, STATE(7379), 1, sym_comment, - ACTIONS(11442), 2, - anon_sym_RBRACK, - sym_hex_digit, - [239647] = 4, + [238830] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7010), 1, - sym_block, + ACTIONS(11382), 1, + anon_sym_RPAREN, STATE(7380), 1, sym_comment, - [239660] = 4, - ACTIONS(3), 1, + [238840] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11444), 1, + ACTIONS(11384), 1, anon_sym_RBRACK, - ACTIONS(11446), 1, - sym__entry_separator, STATE(7381), 1, sym_comment, - [239673] = 4, - ACTIONS(3), 1, + [238850] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_in, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, + ACTIONS(11386), 1, + anon_sym_RPAREN, STATE(7382), 1, sym_comment, - [239686] = 4, + [238860] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, + ACTIONS(11388), 1, + anon_sym_RPAREN, STATE(7383), 1, sym_comment, - STATE(7427), 1, - sym__expr_parenthesized_immediate, - [239699] = 4, - ACTIONS(3), 1, + [238870] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11448), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11390), 1, + anon_sym_RBRACE, STATE(7384), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [239712] = 4, - ACTIONS(3), 1, + [238880] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11450), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11392), 1, + anon_sym_RBRACE, STATE(7385), 1, sym_comment, - STATE(7436), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [239725] = 4, + [238890] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - anon_sym_in, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, + ACTIONS(11394), 1, + anon_sym_RBRACE, STATE(7386), 1, sym_comment, - [239738] = 4, + [238900] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4756), 1, - sym_block, + ACTIONS(11396), 1, + anon_sym_RBRACE, STATE(7387), 1, sym_comment, - [239751] = 4, - ACTIONS(3), 1, + [238910] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7821), 1, - sym__entry_separator, - ACTIONS(7823), 1, - anon_sym_RBRACK, + ACTIONS(2303), 1, + aux_sym_unquoted_token2, STATE(7388), 1, sym_comment, - [239764] = 4, + [238920] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(2162), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11398), 1, + anon_sym_RBRACE, STATE(7389), 1, sym_comment, - [239777] = 4, - ACTIONS(3), 1, + [238930] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11452), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11245), 1, + anon_sym_make, STATE(7390), 1, sym_comment, - STATE(7418), 1, - aux_sym__unquoted_with_expr_repeat1, - [239790] = 4, + [238940] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, + ACTIONS(585), 1, + anon_sym_RPAREN2, STATE(7391), 1, sym_comment, - STATE(7453), 1, - sym__expr_parenthesized_immediate, - [239803] = 3, - ACTIONS(3), 1, + [238950] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11454), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7392), 2, + ACTIONS(11400), 1, + anon_sym_RBRACE, + STATE(7392), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [239814] = 4, - ACTIONS(3), 1, + [238960] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11457), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5848), 1, + anon_sym_LBRACK2, STATE(7393), 1, sym_comment, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, - [239827] = 4, + [238970] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1794), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11402), 1, + anon_sym_RBRACE, STATE(7394), 1, sym_comment, - [239840] = 3, - ACTIONS(3), 1, + [238980] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11459), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 2, + ACTIONS(11404), 1, + anon_sym_RBRACE, + STATE(7395), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [239851] = 4, - ACTIONS(3), 1, + [238990] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11462), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11406), 1, + anon_sym_RBRACE, STATE(7396), 1, sym_comment, - STATE(7436), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [239864] = 4, + [239000] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(7332), 1, - sym__expr_parenthesized_immediate, + ACTIONS(1552), 1, + aux_sym_unquoted_token2, STATE(7397), 1, sym_comment, - [239877] = 4, + [239010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11464), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7385), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(11408), 1, + aux_sym_shebang_token1, STATE(7398), 1, sym_comment, - [239890] = 4, - ACTIONS(3), 1, + [239020] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11466), 1, - sym__newline, - ACTIONS(11468), 1, - sym__space, + ACTIONS(11410), 1, + anon_sym_RBRACE, STATE(7399), 1, sym_comment, - [239903] = 4, - ACTIONS(247), 1, + [239030] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, + ACTIONS(11412), 1, + aux_sym_shebang_token1, STATE(7400), 1, sym_comment, - [239916] = 4, + [239040] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6783), 1, - sym_block, + ACTIONS(11414), 1, + anon_sym_RBRACE, STATE(7401), 1, sym_comment, - [239929] = 4, + [239050] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, + ACTIONS(11416), 1, + anon_sym_RBRACE, STATE(7402), 1, sym_comment, - STATE(7411), 1, - sym__expr_parenthesized_immediate, - [239942] = 4, - ACTIONS(3), 1, + [239060] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11470), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11418), 1, + anon_sym_RPAREN, STATE(7403), 1, sym_comment, - STATE(7408), 1, - aux_sym__unquoted_with_expr_repeat1, - [239955] = 4, + [239070] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6522), 1, - sym_block, + ACTIONS(11420), 1, + anon_sym_LBRACE, STATE(7404), 1, sym_comment, - [239968] = 4, - ACTIONS(3), 1, + [239080] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11472), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11422), 1, + anon_sym_RPAREN, STATE(7405), 1, sym_comment, - STATE(7417), 1, - aux_sym__unquoted_with_expr_repeat1, - [239981] = 4, + [239090] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, + ACTIONS(667), 1, + ts_builtin_sym_end, STATE(7406), 1, sym_comment, - STATE(7570), 1, - sym__expr_parenthesized_immediate, - [239994] = 4, + [239100] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11474), 1, - sym_identifier, - ACTIONS(11476), 1, - anon_sym_DOLLAR, + ACTIONS(11424), 1, + aux_sym_cmd_identifier_token41, STATE(7407), 1, sym_comment, - [240007] = 4, + [239110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11478), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(2243), 1, + aux_sym_unquoted_token4, STATE(7408), 1, sym_comment, - [240020] = 4, + [239120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - STATE(2625), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11426), 1, + aux_sym_comment_token1, STATE(7409), 1, sym_comment, - [240033] = 4, + [239130] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, + ACTIONS(4572), 1, + aux_sym_record_entry_token1, STATE(7410), 1, sym_comment, - STATE(7469), 1, - sym__expr_parenthesized_immediate, - [240046] = 4, - ACTIONS(3), 1, + [239140] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11480), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11428), 1, + anon_sym_RBRACE, STATE(7411), 1, sym_comment, - STATE(7420), 1, - aux_sym__unquoted_with_expr_repeat1, - [240059] = 4, - ACTIONS(247), 1, + [239150] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(2220), 1, - anon_sym_LPAREN2, + ACTIONS(2029), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7412), 1, sym_comment, - [240072] = 4, - ACTIONS(3), 1, + [239160] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11482), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11430), 1, + anon_sym_EQ, STATE(7413), 1, sym_comment, - STATE(7421), 1, - aux_sym__unquoted_with_expr_repeat1, - [240085] = 4, + [239170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11484), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11432), 1, + sym__space, STATE(7414), 1, sym_comment, - STATE(7436), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240098] = 4, + [239180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__entry_separator, - STATE(2937), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11239), 1, + aux_sym__record_key_token1, STATE(7415), 1, sym_comment, - [240111] = 4, + [239190] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(7371), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11434), 1, + anon_sym_RBRACE, STATE(7416), 1, sym_comment, - [240124] = 4, - ACTIONS(3), 1, + [239200] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11486), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11436), 1, + anon_sym_RBRACE, STATE(7417), 1, sym_comment, - [240137] = 4, - ACTIONS(3), 1, + [239210] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11488), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11438), 1, + anon_sym_RPAREN, STATE(7418), 1, sym_comment, - [240150] = 4, + [239220] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(7339), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11440), 1, + anon_sym_GT, STATE(7419), 1, sym_comment, - [240163] = 4, - ACTIONS(3), 1, + [239230] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11490), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(4520), 1, + aux_sym_unquoted_token2, STATE(7420), 1, sym_comment, - [240176] = 4, - ACTIONS(3), 1, + [239240] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11492), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(589), 1, + anon_sym_RPAREN2, STATE(7421), 1, sym_comment, - [240189] = 4, + [239250] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6952), 1, - sym_block, + ACTIONS(11442), 1, + anon_sym_RBRACK, STATE(7422), 1, sym_comment, - [240202] = 4, - ACTIONS(3), 1, + [239260] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5077), 1, - sym__entry_separator, - ACTIONS(5079), 1, - anon_sym_RBRACK, + ACTIONS(11444), 1, + anon_sym_RPAREN, STATE(7423), 1, sym_comment, - [240215] = 4, - ACTIONS(3), 1, + [239270] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, + ACTIONS(11446), 1, + anon_sym_RBRACE, STATE(7424), 1, sym_comment, - [240228] = 4, - ACTIONS(3), 1, + [239280] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11494), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11148), 1, + anon_sym_EQ_GT, STATE(7425), 1, sym_comment, - [240241] = 4, + [239290] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7108), 1, - sym_block, + ACTIONS(11448), 1, + anon_sym_RBRACK, STATE(7426), 1, sym_comment, - [240254] = 4, - ACTIONS(3), 1, + [239300] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11496), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7425), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11450), 1, + anon_sym_RPAREN, STATE(7427), 1, sym_comment, - [240267] = 4, + [239310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11498), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4946), 1, + aux_sym_cmd_identifier_token37, STATE(7428), 1, sym_comment, - STATE(7431), 1, - aux_sym__unquoted_with_expr_repeat1, - [240280] = 4, + [239320] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6778), 1, - sym_block, + ACTIONS(11452), 1, + anon_sym_RBRACE, STATE(7429), 1, sym_comment, - [240293] = 4, + [239330] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_LPAREN2, + ACTIONS(11454), 1, + anon_sym_RBRACE, STATE(7430), 1, sym_comment, - STATE(7793), 1, - sym__expr_parenthesized_immediate, - [240306] = 4, - ACTIONS(3), 1, + [239340] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11500), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(10308), 1, + anon_sym_LBRACE, STATE(7431), 1, sym_comment, - [240319] = 4, + [239350] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6563), 1, - sym_block, + ACTIONS(11456), 1, + anon_sym_LBRACE, STATE(7432), 1, sym_comment, - [240332] = 4, + [239360] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, + ACTIONS(11458), 1, + sym_identifier, STATE(7433), 1, sym_comment, - [240345] = 4, + [239370] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_LPAREN2, - STATE(7403), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11460), 1, + anon_sym_GT, STATE(7434), 1, sym_comment, - [240358] = 4, + [239380] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6312), 1, - sym_block, + ACTIONS(11462), 1, + anon_sym_RPAREN, STATE(7435), 1, sym_comment, - [240371] = 3, - ACTIONS(3), 1, + [239390] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11502), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7436), 2, + ACTIONS(11464), 1, + anon_sym_GT, + STATE(7436), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240382] = 4, - ACTIONS(3), 1, + [239400] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(11466), 1, + anon_sym_RPAREN, STATE(7437), 1, sym_comment, - [240395] = 4, - ACTIONS(3), 1, + [239410] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - aux_sym_record_entry_token1, - ACTIONS(9978), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(11468), 1, + anon_sym_RBRACE, STATE(7438), 1, sym_comment, - [240408] = 4, - ACTIONS(247), 1, + [239420] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6315), 1, - sym_block, + ACTIONS(2029), 1, + aux_sym__unquoted_with_expr_token1, STATE(7439), 1, sym_comment, - [240421] = 4, + [239430] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6725), 1, - sym_block, + ACTIONS(11470), 1, + anon_sym_RPAREN, STATE(7440), 1, sym_comment, - [240434] = 4, - ACTIONS(3), 1, + [239440] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - sym__entry_separator, - STATE(7087), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11472), 1, + anon_sym_RBRACE, STATE(7441), 1, sym_comment, - [240447] = 4, + [239450] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4914), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11505), 1, - anon_sym_EQ2, + ACTIONS(11474), 1, + sym__table_head_separator, STATE(7442), 1, sym_comment, - [240460] = 4, + [239460] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6528), 1, - sym_block, + ACTIONS(11476), 1, + anon_sym_RPAREN, STATE(7443), 1, sym_comment, - [240473] = 4, + [239470] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11434), 1, - aux_sym_ctrl_match_token1, - STATE(4802), 1, - sym_block, + ACTIONS(11478), 1, + anon_sym_RPAREN, STATE(7444), 1, sym_comment, - [240486] = 4, - ACTIONS(3), 1, + [239480] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11507), 1, - sym__newline, - ACTIONS(11509), 1, - sym__space, + ACTIONS(5077), 1, + anon_sym_LBRACK2, STATE(7445), 1, sym_comment, - [240499] = 4, - ACTIONS(247), 1, + [239490] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, - aux_sym_ctrl_match_token1, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, + ACTIONS(2029), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7446), 1, sym_comment, - [240512] = 4, + [239500] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, - ACTIONS(2222), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11480), 1, + anon_sym_RBRACK, STATE(7447), 1, sym_comment, - [240525] = 4, + [239510] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6628), 1, - sym_block, + ACTIONS(11482), 1, + anon_sym_RPAREN, STATE(7448), 1, sym_comment, - [240538] = 4, - ACTIONS(3), 1, + [239520] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11511), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7436), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3231), 1, + aux_sym_record_entry_token1, STATE(7449), 1, sym_comment, - [240551] = 4, - ACTIONS(3), 1, + [239530] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5118), 1, - sym__entry_separator, - ACTIONS(5120), 1, - anon_sym_RBRACK, + ACTIONS(543), 1, + anon_sym_RPAREN2, STATE(7450), 1, sym_comment, - [240564] = 4, + [239540] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6520), 1, - sym_block, + ACTIONS(11484), 1, + anon_sym_EQ, STATE(7451), 1, sym_comment, - [240577] = 4, + [239550] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6325), 1, - sym_block, + ACTIONS(11486), 1, + anon_sym_RBRACE, STATE(7452), 1, sym_comment, - [240590] = 4, - ACTIONS(3), 1, + [239560] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11513), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11488), 1, + anon_sym_LBRACE, STATE(7453), 1, sym_comment, - STATE(7463), 1, - aux_sym__unquoted_with_expr_repeat1, - [240603] = 4, + [239570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11515), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5588), 1, + aux_sym__unquoted_in_list_token4, STATE(7454), 1, sym_comment, - STATE(7464), 1, - aux_sym__unquoted_with_expr_repeat1, - [240616] = 4, + [239580] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(4731), 1, - sym_block, + ACTIONS(11490), 1, + anon_sym_EQ, STATE(7455), 1, sym_comment, - [240629] = 4, + [239590] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, + ACTIONS(11492), 1, + aux_sym_record_entry_token1, STATE(7456), 1, sym_comment, - [240642] = 4, + [239600] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6521), 1, - sym_block, + ACTIONS(11494), 1, + anon_sym_RBRACE, STATE(7457), 1, sym_comment, - [240655] = 4, + [239610] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym_ctrl_match_token1, - STATE(6199), 1, - sym_block, + ACTIONS(5328), 1, + anon_sym_LBRACK2, STATE(7458), 1, sym_comment, - [240668] = 4, - ACTIONS(3), 1, + [239620] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7805), 1, - anon_sym_RBRACK, - ACTIONS(7807), 1, - sym__entry_separator, + ACTIONS(529), 1, + anon_sym_RPAREN2, STATE(7459), 1, sym_comment, - [240681] = 4, - ACTIONS(3), 1, + [239630] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11517), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11496), 1, + anon_sym_RBRACE, STATE(7460), 1, sym_comment, - [240694] = 4, - ACTIONS(3), 1, + [239640] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11519), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(4169), 1, + aux_sym_unquoted_token2, STATE(7461), 1, sym_comment, - [240707] = 4, - ACTIONS(3), 1, + [239650] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11521), 1, - sym__newline, - ACTIONS(11523), 1, - sym__space, + ACTIONS(11498), 1, + anon_sym_RPAREN2, STATE(7462), 1, sym_comment, - [240720] = 4, - ACTIONS(3), 1, + [239660] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11525), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(4539), 1, + aux_sym_unquoted_token2, STATE(7463), 1, sym_comment, - [240733] = 4, - ACTIONS(3), 1, + [239670] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11527), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7395), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11500), 1, + anon_sym_in, STATE(7464), 1, sym_comment, - [240746] = 4, + [239680] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4914), 1, - anon_sym_in, - ACTIONS(11529), 1, - anon_sym_EQ2, + ACTIONS(549), 1, + anon_sym_RPAREN2, STATE(7465), 1, sym_comment, - [240759] = 4, + [239690] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(6770), 1, - sym_block, + ACTIONS(9962), 1, + anon_sym_LBRACE, STATE(7466), 1, sym_comment, - [240772] = 4, + [239700] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6065), 1, - aux_sym_ctrl_match_token1, - STATE(7122), 1, - sym_block, + ACTIONS(4896), 1, + anon_sym_LBRACK2, STATE(7467), 1, sym_comment, - [240785] = 4, + [239710] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, + ACTIONS(8350), 1, aux_sym_unquoted_token2, STATE(7468), 1, sym_comment, - [240798] = 4, - ACTIONS(3), 1, + [239720] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11531), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7353), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(5451), 1, + aux_sym__unquoted_in_list_token2, STATE(7469), 1, sym_comment, - [240811] = 4, - ACTIONS(247), 1, + [239730] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_LPAREN2, + ACTIONS(9740), 1, + aux_sym_cmd_identifier_token37, STATE(7470), 1, sym_comment, - STATE(7795), 1, - sym__expr_parenthesized_immediate, - [240824] = 3, + [239740] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11533), 1, - anon_sym_RBRACE, + ACTIONS(11502), 1, + anon_sym_RBRACK, STATE(7471), 1, sym_comment, - [240834] = 3, + [239750] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11535), 1, - anon_sym_RBRACK, + ACTIONS(11504), 1, + anon_sym_LBRACE, STATE(7472), 1, sym_comment, - [240844] = 3, + [239760] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11537), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11506), 1, + anon_sym_GT, STATE(7473), 1, sym_comment, - [240854] = 3, + [239770] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11539), 1, - ts_builtin_sym_end, + ACTIONS(11508), 1, + anon_sym_GT, STATE(7474), 1, sym_comment, - [240864] = 3, + [239780] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11541), 1, - sym_identifier, + ACTIONS(11510), 1, + anon_sym_LBRACE, STATE(7475), 1, sym_comment, - [240874] = 3, + [239790] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11543), 1, - aux_sym_env_var_token2, + ACTIONS(11512), 1, + anon_sym_RBRACK, STATE(7476), 1, sym_comment, - [240884] = 3, - ACTIONS(3), 1, + [239800] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym_unquoted_token4, + ACTIONS(11514), 1, + anon_sym_RPAREN, STATE(7477), 1, sym_comment, - [240894] = 3, + [239810] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2230), 1, - aux_sym_unquoted_token2, + ACTIONS(11516), 1, + anon_sym_RBRACE, STATE(7478), 1, sym_comment, - [240904] = 3, + [239820] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11545), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11518), 1, + anon_sym_RBRACE, STATE(7479), 1, sym_comment, - [240914] = 3, + [239830] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11547), 1, - anon_sym_RBRACK, + ACTIONS(4726), 1, + aux_sym_unquoted_token2, STATE(7480), 1, sym_comment, - [240924] = 3, + [239840] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11549), 1, - anon_sym_RPAREN, + ACTIONS(11520), 1, + anon_sym_RBRACE, STATE(7481), 1, sym_comment, - [240934] = 3, + [239850] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11551), 1, - anon_sym_RBRACE, + ACTIONS(11522), 1, + anon_sym_RPAREN, STATE(7482), 1, sym_comment, - [240944] = 3, - ACTIONS(247), 1, + [239860] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11553), 1, - anon_sym_RBRACE, + ACTIONS(5391), 1, + aux_sym_unquoted_token4, STATE(7483), 1, sym_comment, - [240954] = 3, + [239870] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11555), 1, - sym_identifier, + ACTIONS(5048), 1, + anon_sym_LBRACK2, STATE(7484), 1, sym_comment, - [240964] = 3, + [239880] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11557), 1, - anon_sym_RBRACE, + ACTIONS(11524), 1, + anon_sym_LBRACE, STATE(7485), 1, sym_comment, - [240974] = 3, + [239890] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym_unquoted_token2, + ACTIONS(11526), 1, + ts_builtin_sym_end, STATE(7486), 1, sym_comment, - [240984] = 3, + [239900] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11559), 1, - sym_identifier, + ACTIONS(11528), 1, + anon_sym_EQ, STATE(7487), 1, sym_comment, - [240994] = 3, + [239910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym_unquoted_token4, + ACTIONS(11530), 1, + sym__space, STATE(7488), 1, sym_comment, - [241004] = 3, + [239920] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11561), 1, - anon_sym_RBRACK, + ACTIONS(11532), 1, + anon_sym_LBRACE, STATE(7489), 1, sym_comment, - [241014] = 3, + [239930] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11563), 1, + ACTIONS(11534), 1, anon_sym_RBRACE, STATE(7490), 1, sym_comment, - [241024] = 3, + [239940] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11565), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11536), 1, + aux_sym_record_entry_token1, STATE(7491), 1, sym_comment, - [241034] = 3, + [239950] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym_unquoted_token2, + ACTIONS(11538), 1, + sym_identifier, STATE(7492), 1, sym_comment, - [241044] = 3, + [239960] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11567), 1, - anon_sym_in, + ACTIONS(11540), 1, + anon_sym_RPAREN, STATE(7493), 1, sym_comment, - [241054] = 3, + [239970] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_RBRACK, + ACTIONS(1494), 1, + aux_sym_unquoted_token2, STATE(7494), 1, sym_comment, - [241064] = 3, + [239980] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11571), 1, - anon_sym_RPAREN, + ACTIONS(11542), 1, + anon_sym_RBRACE, STATE(7495), 1, sym_comment, - [241074] = 3, - ACTIONS(247), 1, + [239990] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11573), 1, - anon_sym_RPAREN, + ACTIONS(4742), 1, + aux_sym_unquoted_token4, STATE(7496), 1, sym_comment, - [241084] = 3, + [240000] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11575), 1, - aux_sym_ctrl_match_token1, + ACTIONS(8925), 1, + aux_sym_unquoted_token2, STATE(7497), 1, sym_comment, - [241094] = 3, + [240010] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11577), 1, - anon_sym_RPAREN, + ACTIONS(7799), 1, + anon_sym_LBRACK2, STATE(7498), 1, sym_comment, - [241104] = 3, + [240020] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11579), 1, - anon_sym_RBRACE, + ACTIONS(6834), 1, + aux_sym_unquoted_token2, STATE(7499), 1, sym_comment, - [241114] = 3, + [240030] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11376), 1, - anon_sym_make, + ACTIONS(6965), 1, + aux_sym__unquoted_in_list_token2, STATE(7500), 1, sym_comment, - [241124] = 3, + [240040] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_LBRACK2, + ACTIONS(11544), 1, + anon_sym_RBRACK, STATE(7501), 1, sym_comment, - [241134] = 3, - ACTIONS(3), 1, + [240050] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8379), 1, - aux_sym_unquoted_token4, + ACTIONS(11546), 1, + anon_sym_RBRACE, STATE(7502), 1, sym_comment, - [241144] = 3, + [240060] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7005), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(3988), 1, + aux_sym_unquoted_token2, STATE(7503), 1, sym_comment, - [241154] = 3, - ACTIONS(247), 1, + [240070] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11581), 1, - anon_sym_RBRACE, + ACTIONS(6834), 1, + aux_sym_unquoted_token4, STATE(7504), 1, sym_comment, - [241164] = 3, + [240080] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11583), 1, - ts_builtin_sym_end, + ACTIONS(11548), 1, + anon_sym_RPAREN, STATE(7505), 1, sym_comment, - [241174] = 3, + [240090] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11585), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11550), 1, + anon_sym_RBRACK, STATE(7506), 1, sym_comment, - [241184] = 3, + [240100] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_LBRACK2, + ACTIONS(11552), 1, + sym_identifier, STATE(7507), 1, sym_comment, - [241194] = 3, + [240110] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11587), 1, - anon_sym_DASH_GT, + ACTIONS(1574), 1, + aux_sym__unquoted_in_record_token2, STATE(7508), 1, sym_comment, - [241204] = 3, + [240120] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11589), 1, + ACTIONS(11554), 1, anon_sym_RBRACK, STATE(7509), 1, sym_comment, - [241214] = 3, + [240130] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11591), 1, - anon_sym_RBRACK, + ACTIONS(11556), 1, + anon_sym_RPAREN, STATE(7510), 1, sym_comment, - [241224] = 3, + [240140] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11593), 1, - anon_sym_RPAREN, + ACTIONS(5690), 1, + anon_sym_LBRACK2, STATE(7511), 1, sym_comment, - [241234] = 3, + [240150] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11595), 1, + ACTIONS(11558), 1, anon_sym_RPAREN, STATE(7512), 1, sym_comment, - [241244] = 3, + [240160] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11597), 1, - anon_sym_RPAREN, + ACTIONS(11560), 1, + anon_sym_EQ, STATE(7513), 1, sym_comment, - [241254] = 3, + [240170] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11599), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11562), 1, + anon_sym_RBRACE, STATE(7514), 1, sym_comment, - [241264] = 3, - ACTIONS(3), 1, + [240180] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11139), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(11564), 1, + anon_sym_RBRACE, STATE(7515), 1, sym_comment, - [241274] = 3, + [240190] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11601), 1, - anon_sym_RPAREN, + ACTIONS(3229), 1, + aux_sym_record_entry_token1, STATE(7516), 1, sym_comment, - [241284] = 3, + [240200] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym_unquoted_token2, + ACTIONS(11566), 1, + aux_sym_cmd_identifier_token41, STATE(7517), 1, sym_comment, - [241294] = 3, - ACTIONS(247), 1, + [240210] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11603), 1, - anon_sym_RBRACE, + ACTIONS(11027), 1, + aux_sym_cmd_identifier_token37, STATE(7518), 1, sym_comment, - [241304] = 3, + [240220] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11605), 1, + ACTIONS(11568), 1, anon_sym_RBRACE, STATE(7519), 1, sym_comment, - [241314] = 3, + [240230] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11607), 1, - anon_sym_RBRACE, + ACTIONS(11570), 1, + anon_sym_make, STATE(7520), 1, sym_comment, - [241324] = 3, + [240240] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11609), 1, - anon_sym_DASH_GT, + ACTIONS(11572), 1, + anon_sym_RBRACK, STATE(7521), 1, sym_comment, - [241334] = 3, - ACTIONS(3), 1, + [240250] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4894), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(11574), 1, + anon_sym_RBRACE, STATE(7522), 1, sym_comment, - [241344] = 3, + [240260] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11611), 1, + ACTIONS(11576), 1, anon_sym_RBRACE, STATE(7523), 1, sym_comment, - [241354] = 3, + [240270] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11613), 1, - anon_sym_RPAREN, + ACTIONS(7495), 1, + anon_sym_LBRACK2, STATE(7524), 1, sym_comment, - [241364] = 3, + [240280] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11615), 1, - anon_sym_RBRACE, + ACTIONS(11578), 1, + anon_sym_RBRACK, STATE(7525), 1, sym_comment, - [241374] = 3, + [240290] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11617), 1, - anon_sym_RBRACK, + ACTIONS(11580), 1, + anon_sym_RPAREN, STATE(7526), 1, sym_comment, - [241384] = 3, + [240300] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11619), 1, - anon_sym_RPAREN, + ACTIONS(6872), 1, + aux_sym_unquoted_token2, STATE(7527), 1, sym_comment, - [241394] = 3, + [240310] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11621), 1, + ACTIONS(11582), 1, anon_sym_RBRACE, STATE(7528), 1, sym_comment, - [241404] = 3, + [240320] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11623), 1, - anon_sym_EQ, + ACTIONS(11584), 1, + anon_sym_RPAREN, STATE(7529), 1, sym_comment, - [241414] = 3, + [240330] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11625), 1, - anon_sym_RBRACE, + ACTIONS(11586), 1, + anon_sym_EQ, STATE(7530), 1, sym_comment, - [241424] = 3, - ACTIONS(3), 1, + [240340] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token4, + ACTIONS(11588), 1, + anon_sym_RBRACE, STATE(7531), 1, sym_comment, - [241434] = 3, + [240350] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11627), 1, - anon_sym_RBRACK, + ACTIONS(11590), 1, + anon_sym_RBRACE, STATE(7532), 1, sym_comment, - [241444] = 3, + [240360] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11629), 1, - anon_sym_RPAREN, + ACTIONS(11290), 1, + anon_sym_LBRACE, STATE(7533), 1, sym_comment, - [241454] = 3, + [240370] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11631), 1, - anon_sym_RPAREN, + ACTIONS(11592), 1, + anon_sym_RBRACE, STATE(7534), 1, sym_comment, - [241464] = 3, + [240380] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11633), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2346), 1, + aux_sym_record_entry_token1, STATE(7535), 1, sym_comment, - [241474] = 3, + [240390] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11635), 1, + ACTIONS(11594), 1, anon_sym_RPAREN, STATE(7536), 1, sym_comment, - [241484] = 3, + [240400] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11637), 1, - anon_sym_RBRACE, + ACTIONS(7764), 1, + anon_sym_LBRACK2, STATE(7537), 1, sym_comment, - [241494] = 3, - ACTIONS(247), 1, + [240410] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11639), 1, - anon_sym_RBRACE, + ACTIONS(2227), 1, + aux_sym_unquoted_token4, STATE(7538), 1, sym_comment, - [241504] = 3, + [240420] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11641), 1, - anon_sym_RBRACE, + ACTIONS(6355), 1, + aux_sym_unquoted_token2, STATE(7539), 1, sym_comment, - [241514] = 3, - ACTIONS(247), 1, + [240430] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11643), 1, - anon_sym_RPAREN, + ACTIONS(2033), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7540), 1, sym_comment, - [241524] = 3, + [240440] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11645), 1, - anon_sym_LPAREN2, + ACTIONS(11596), 1, + anon_sym_RBRACK, STATE(7541), 1, sym_comment, - [241534] = 3, - ACTIONS(3), 1, + [240450] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2019), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11598), 1, + anon_sym_RPAREN, STATE(7542), 1, sym_comment, - [241544] = 3, + [240460] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11647), 1, + ACTIONS(11600), 1, anon_sym_RBRACE, STATE(7543), 1, sym_comment, - [241554] = 3, - ACTIONS(247), 1, + [240470] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11649), 1, - anon_sym_RPAREN, + ACTIONS(4539), 1, + aux_sym_unquoted_token4, STATE(7544), 1, sym_comment, - [241564] = 3, + [240480] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11651), 1, - anon_sym_RBRACE, + ACTIONS(11602), 1, + anon_sym_RPAREN2, STATE(7545), 1, sym_comment, - [241574] = 3, - ACTIONS(3), 1, + [240490] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11045), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(11604), 1, + sym_identifier, STATE(7546), 1, sym_comment, - [241584] = 3, + [240500] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11653), 1, - anon_sym_RBRACE, + ACTIONS(11606), 1, + anon_sym_RBRACK, STATE(7547), 1, sym_comment, - [241594] = 3, + [240510] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11655), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11608), 1, + ts_builtin_sym_end, STATE(7548), 1, sym_comment, - [241604] = 3, - ACTIONS(247), 1, + [240520] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_LBRACK2, + ACTIONS(6872), 1, + aux_sym_unquoted_token4, STATE(7549), 1, sym_comment, - [241614] = 3, + [240530] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11657), 1, - anon_sym_GT, + ACTIONS(4866), 1, + anon_sym_LBRACK2, STATE(7550), 1, sym_comment, - [241624] = 3, + [240540] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token2, + ACTIONS(11610), 1, + anon_sym_LBRACE, STATE(7551), 1, sym_comment, - [241634] = 3, + [240550] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11659), 1, - anon_sym_RPAREN, + ACTIONS(11612), 1, + sym_long_flag_identifier, STATE(7552), 1, sym_comment, - [241644] = 3, + [240560] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_record_entry_token1, + ACTIONS(11614), 1, + anon_sym_RBRACE, STATE(7553), 1, sym_comment, - [241654] = 3, + [240570] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10502), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11616), 1, + anon_sym_RBRACE, STATE(7554), 1, sym_comment, - [241664] = 3, + [240580] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11661), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11618), 1, + anon_sym_RBRACE, STATE(7555), 1, sym_comment, - [241674] = 3, + [240590] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11663), 1, - aux_sym_record_entry_token1, + ACTIONS(11620), 1, + anon_sym_RPAREN, STATE(7556), 1, sym_comment, - [241684] = 3, + [240600] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11665), 1, - anon_sym_make, + ACTIONS(11622), 1, + anon_sym_RBRACE, STATE(7557), 1, sym_comment, - [241694] = 3, + [240610] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11667), 1, + ACTIONS(11624), 1, anon_sym_RPAREN, STATE(7558), 1, sym_comment, - [241704] = 3, + [240620] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11669), 1, + ACTIONS(11626), 1, anon_sym_RBRACE, STATE(7559), 1, sym_comment, - [241714] = 3, - ACTIONS(247), 1, + [240630] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11671), 1, - anon_sym_RBRACE, + ACTIONS(4520), 1, + aux_sym_unquoted_token4, STATE(7560), 1, sym_comment, - [241724] = 3, + [240640] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11673), 1, - anon_sym_EQ, + ACTIONS(11628), 1, + anon_sym_RBRACK, STATE(7561), 1, sym_comment, - [241734] = 3, + [240650] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11675), 1, - anon_sym_RBRACE, + ACTIONS(6999), 1, + anon_sym_LBRACK2, STATE(7562), 1, sym_comment, - [241744] = 3, + [240660] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11677), 1, - anon_sym_RBRACE, + ACTIONS(11630), 1, + anon_sym_RPAREN, STATE(7563), 1, sym_comment, - [241754] = 3, + [240670] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11679), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11632), 1, + anon_sym_RBRACE, STATE(7564), 1, sym_comment, - [241764] = 3, + [240680] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11681), 1, - anon_sym_RBRACE, + ACTIONS(11634), 1, + aux_sym_cmd_identifier_token41, STATE(7565), 1, sym_comment, - [241774] = 3, + [240690] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3924), 1, - aux_sym_unquoted_token2, + ACTIONS(11636), 1, + anon_sym_RBRACE, STATE(7566), 1, sym_comment, - [241784] = 3, - ACTIONS(247), 1, + [240700] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11683), 1, - anon_sym_RBRACE, + ACTIONS(11638), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7567), 1, sym_comment, - [241794] = 3, + [240710] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4932), 1, - anon_sym_LBRACK2, + ACTIONS(11640), 1, + anon_sym_RBRACK, STATE(7568), 1, sym_comment, - [241804] = 3, + [240720] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4552), 1, - aux_sym_record_entry_token1, + ACTIONS(11642), 1, + anon_sym_RPAREN, STATE(7569), 1, sym_comment, - [241814] = 3, - ACTIONS(3), 1, + [240730] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11685), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11644), 1, + anon_sym_RBRACK, STATE(7570), 1, sym_comment, - [241824] = 3, + [240740] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11687), 1, - anon_sym_RBRACE, + ACTIONS(11646), 1, + sym_param_short_flag_identifier, STATE(7571), 1, sym_comment, - [241834] = 3, + [240750] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11689), 1, + ACTIONS(11648), 1, anon_sym_RBRACE, STATE(7572), 1, sym_comment, - [241844] = 3, + [240760] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11691), 1, - anon_sym_RBRACE, + ACTIONS(6892), 1, + anon_sym_LBRACK2, STATE(7573), 1, sym_comment, - [241854] = 3, + [240770] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11693), 1, - anon_sym_RBRACE, + ACTIONS(11650), 1, + anon_sym_RBRACK, STATE(7574), 1, sym_comment, - [241864] = 3, + [240780] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11695), 1, - anon_sym_RPAREN, + ACTIONS(11652), 1, + anon_sym_RBRACE, STATE(7575), 1, sym_comment, - [241874] = 3, + [240790] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11697), 1, - anon_sym_RBRACK, + ACTIONS(11654), 1, + anon_sym_RBRACE, STATE(7576), 1, sym_comment, - [241884] = 3, + [240800] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11699), 1, + ACTIONS(11656), 1, anon_sym_RPAREN, STATE(7577), 1, sym_comment, - [241894] = 3, + [240810] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11701), 1, - anon_sym_RBRACE, + ACTIONS(11658), 1, + anon_sym_LBRACE, STATE(7578), 1, sym_comment, - [241904] = 3, + [240820] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11703), 1, - aux_sym_record_entry_token1, + ACTIONS(11660), 1, + anon_sym_RBRACE, STATE(7579), 1, sym_comment, - [241914] = 3, + [240830] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11705), 1, - anon_sym_RBRACE, + ACTIONS(4614), 1, + aux_sym_unquoted_token2, STATE(7580), 1, sym_comment, - [241924] = 3, + [240840] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11707), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11662), 1, + anon_sym_LBRACE, STATE(7581), 1, sym_comment, - [241934] = 3, + [240850] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5010), 1, - anon_sym_LBRACK2, + ACTIONS(11664), 1, + aux_sym_cmd_identifier_token41, STATE(7582), 1, sym_comment, - [241944] = 3, + [240860] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11709), 1, - anon_sym_RPAREN, + ACTIONS(11666), 1, + anon_sym_EQ_GT, STATE(7583), 1, sym_comment, - [241954] = 3, + [240870] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11711), 1, + ACTIONS(11668), 1, anon_sym_RPAREN, STATE(7584), 1, sym_comment, - [241964] = 3, + [240880] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11713), 1, - anon_sym_RBRACE, + ACTIONS(6005), 1, + anon_sym_LBRACK2, STATE(7585), 1, sym_comment, - [241974] = 3, + [240890] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11715), 1, + ACTIONS(11670), 1, anon_sym_RPAREN, STATE(7586), 1, sym_comment, - [241984] = 3, - ACTIONS(3), 1, + [240900] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2133), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(11658), 1, + anon_sym_LBRACE, STATE(7587), 1, sym_comment, - [241994] = 3, + [240910] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(563), 1, - anon_sym_RPAREN2, + ACTIONS(11672), 1, + anon_sym_RBRACE, STATE(7588), 1, sym_comment, - [242004] = 3, + [240920] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11717), 1, + ACTIONS(11674), 1, anon_sym_RBRACE, STATE(7589), 1, sym_comment, - [242014] = 3, + [240930] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11719), 1, - anon_sym_in, + ACTIONS(11532), 1, + anon_sym_LBRACE, STATE(7590), 1, sym_comment, - [242024] = 3, - ACTIONS(247), 1, + [240940] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11721), 1, - anon_sym_RBRACE, + ACTIONS(11021), 1, + aux_sym_cmd_identifier_token37, STATE(7591), 1, sym_comment, - [242034] = 3, - ACTIONS(247), 1, + [240950] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_unquoted_token2, + ACTIONS(6355), 1, + aux_sym_unquoted_token4, STATE(7592), 1, sym_comment, - [242044] = 3, + [240960] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11723), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11676), 1, + anon_sym_RBRACE, STATE(7593), 1, sym_comment, - [242054] = 3, + [240970] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7599), 1, - anon_sym_LBRACK2, + ACTIONS(11678), 1, + anon_sym_LPAREN2, STATE(7594), 1, sym_comment, - [242064] = 3, + [240980] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11725), 1, - anon_sym_RPAREN, + ACTIONS(11680), 1, + anon_sym_RBRACK, STATE(7595), 1, sym_comment, - [242074] = 3, + [240990] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11727), 1, - sym_identifier, + ACTIONS(11682), 1, + anon_sym_LBRACE, STATE(7596), 1, sym_comment, - [242084] = 3, + [241000] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11729), 1, - anon_sym_RPAREN, + ACTIONS(6480), 1, + anon_sym_LBRACK2, STATE(7597), 1, sym_comment, - [242094] = 3, + [241010] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11731), 1, - sym_identifier, + ACTIONS(11684), 1, + anon_sym_RPAREN, STATE(7598), 1, sym_comment, - [242104] = 3, + [241020] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11733), 1, + ACTIONS(11686), 1, anon_sym_RBRACE, STATE(7599), 1, sym_comment, - [242114] = 3, + [241030] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(11688), 1, + anon_sym_RBRACE, STATE(7600), 1, sym_comment, - [242124] = 3, + [241040] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1676), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11690), 1, + anon_sym_RBRACE, STATE(7601), 1, sym_comment, - [242134] = 3, + [241050] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11735), 1, + ACTIONS(11692), 1, anon_sym_RBRACE, STATE(7602), 1, sym_comment, - [242144] = 3, + [241060] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11737), 1, + ACTIONS(11694), 1, anon_sym_RBRACE, STATE(7603), 1, sym_comment, - [242154] = 3, + [241070] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11739), 1, - sym_identifier, + ACTIONS(11696), 1, + sym__table_head_separator, STATE(7604), 1, sym_comment, - [242164] = 3, - ACTIONS(247), 1, + [241080] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5659), 1, - anon_sym_LBRACK2, + ACTIONS(8925), 1, + aux_sym_unquoted_token4, STATE(7605), 1, sym_comment, - [242174] = 3, + [241090] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11741), 1, - anon_sym_RBRACK, + ACTIONS(11698), 1, + anon_sym_RPAREN, STATE(7606), 1, sym_comment, - [242184] = 3, - ACTIONS(3), 1, + [241100] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11131), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(11700), 1, + anon_sym_RBRACE, STATE(7607), 1, sym_comment, - [242194] = 3, + [241110] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11743), 1, - anon_sym_RPAREN, + ACTIONS(565), 1, + anon_sym_RPAREN2, STATE(7608), 1, sym_comment, - [242204] = 3, + [241120] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9908), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2529), 1, + anon_sym_LBRACK2, STATE(7609), 1, sym_comment, - [242214] = 3, + [241130] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11745), 1, - anon_sym_RBRACE, + ACTIONS(11702), 1, + anon_sym_RPAREN, STATE(7610), 1, sym_comment, - [242224] = 3, - ACTIONS(247), 1, + [241140] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11747), 1, - anon_sym_RBRACE, + ACTIONS(4816), 1, + aux_sym_cmd_identifier_token37, STATE(7611), 1, sym_comment, - [242234] = 3, + [241150] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11749), 1, - anon_sym_EQ, + ACTIONS(11704), 1, + anon_sym_RPAREN, STATE(7612), 1, sym_comment, - [242244] = 3, + [241160] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11751), 1, + ACTIONS(11706), 1, anon_sym_RBRACE, STATE(7613), 1, sym_comment, - [242254] = 3, + [241170] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11753), 1, - anon_sym_RPAREN, + ACTIONS(6939), 1, + aux_sym_unquoted_token2, STATE(7614), 1, sym_comment, - [242264] = 3, + [241180] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11755), 1, - anon_sym_RPAREN, + ACTIONS(11708), 1, + anon_sym_RBRACK, STATE(7615), 1, sym_comment, - [242274] = 3, + [241190] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7437), 1, - anon_sym_LBRACK2, + ACTIONS(11710), 1, + anon_sym_RPAREN, STATE(7616), 1, sym_comment, - [242284] = 3, + [241200] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11757), 1, - anon_sym_EQ, + ACTIONS(11712), 1, + sym_identifier, STATE(7617), 1, sym_comment, - [242294] = 3, + [241210] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11759), 1, - anon_sym_RBRACK, + ACTIONS(2315), 1, + anon_sym_LBRACK2, STATE(7618), 1, sym_comment, - [242304] = 3, + [241220] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11761), 1, - anon_sym_RPAREN, + ACTIONS(11714), 1, + anon_sym_RBRACE, STATE(7619), 1, sym_comment, - [242314] = 3, - ACTIONS(3), 1, + [241230] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2133), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11716), 1, + aux_sym_env_var_token2, STATE(7620), 1, sym_comment, - [242324] = 3, + [241240] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11763), 1, - anon_sym_RBRACE, + ACTIONS(493), 1, + anon_sym_RPAREN2, STATE(7621), 1, sym_comment, - [242334] = 3, + [241250] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11765), 1, + ACTIONS(11718), 1, anon_sym_RPAREN, STATE(7622), 1, sym_comment, - [242344] = 3, + [241260] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11767), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11720), 1, + anon_sym_RBRACE, STATE(7623), 1, sym_comment, - [242354] = 3, + [241270] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11769), 1, - anon_sym_RBRACK, + ACTIONS(11722), 1, + anon_sym_EQ, STATE(7624), 1, sym_comment, - [242364] = 3, - ACTIONS(247), 1, + [241280] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11771), 1, - anon_sym_RPAREN, + ACTIONS(8350), 1, + aux_sym_unquoted_token4, STATE(7625), 1, sym_comment, - [242374] = 3, - ACTIONS(3), 1, + [241290] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym_unquoted_token4, + ACTIONS(11724), 1, + anon_sym_RBRACK, STATE(7626), 1, sym_comment, - [242384] = 3, + [241300] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7668), 1, - anon_sym_LBRACK2, + ACTIONS(11726), 1, + anon_sym_RPAREN, STATE(7627), 1, sym_comment, - [242394] = 3, + [241310] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11773), 1, - anon_sym_RBRACK, + ACTIONS(11728), 1, + anon_sym_RBRACE, STATE(7628), 1, sym_comment, - [242404] = 3, + [241320] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11775), 1, - anon_sym_GT, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, STATE(7629), 1, sym_comment, - [242414] = 3, + [241330] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11777), 1, - anon_sym_RPAREN, + ACTIONS(11730), 1, + anon_sym_RBRACK, STATE(7630), 1, sym_comment, - [242424] = 3, + [241340] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(539), 1, - anon_sym_RPAREN2, + ACTIONS(11732), 1, + sym_identifier, STATE(7631), 1, sym_comment, - [242434] = 3, + [241350] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11779), 1, - sym_long_flag_identifier, + ACTIONS(11734), 1, + anon_sym_RBRACK, STATE(7632), 1, sym_comment, - [242444] = 3, + [241360] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, + ACTIONS(11736), 1, + anon_sym_RPAREN, STATE(7633), 1, sym_comment, - [242454] = 3, + [241370] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11781), 1, - anon_sym_RBRACK, + ACTIONS(11738), 1, + anon_sym_RBRACE, STATE(7634), 1, sym_comment, - [242464] = 3, + [241380] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11783), 1, - anon_sym_EQ, + ACTIONS(11740), 1, + anon_sym_RPAREN, STATE(7635), 1, sym_comment, - [242474] = 3, + [241390] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11785), 1, - anon_sym_RPAREN, + ACTIONS(11742), 1, + anon_sym_RBRACE, STATE(7636), 1, sym_comment, - [242484] = 3, + [241400] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11787), 1, - anon_sym_RBRACE, + ACTIONS(11744), 1, + anon_sym_RPAREN, STATE(7637), 1, sym_comment, - [242494] = 3, + [241410] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4868), 1, - anon_sym_LBRACK2, + ACTIONS(11746), 1, + anon_sym_RBRACE, STATE(7638), 1, sym_comment, - [242504] = 3, + [241420] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11789), 1, + ACTIONS(11748), 1, anon_sym_RBRACE, STATE(7639), 1, sym_comment, - [242514] = 3, + [241430] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11791), 1, - anon_sym_EQ_GT, + ACTIONS(11750), 1, + anon_sym_RPAREN, STATE(7640), 1, sym_comment, - [242524] = 3, + [241440] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11793), 1, - anon_sym_RBRACE, + ACTIONS(11752), 1, + anon_sym_in, STATE(7641), 1, sym_comment, - [242534] = 3, + [241450] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11795), 1, - anon_sym_RBRACE, + ACTIONS(11754), 1, + anon_sym_RPAREN, STATE(7642), 1, sym_comment, - [242544] = 3, + [241460] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11797), 1, + ACTIONS(11756), 1, anon_sym_RBRACE, STATE(7643), 1, sym_comment, - [242554] = 3, + [241470] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11799), 1, - anon_sym_EQ, + ACTIONS(11758), 1, + sym__table_head_separator, STATE(7644), 1, sym_comment, - [242564] = 3, - ACTIONS(247), 1, + [241480] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11801), 1, - sym_param_short_flag_identifier, + ACTIONS(11128), 1, + aux_sym_cmd_identifier_token37, STATE(7645), 1, sym_comment, - [242574] = 3, + [241490] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11803), 1, - anon_sym_RBRACK, + ACTIONS(11760), 1, + anon_sym_EQ, STATE(7646), 1, sym_comment, - [242584] = 3, + [241500] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2327), 1, - aux_sym_record_entry_token1, + ACTIONS(11762), 1, + anon_sym_RPAREN, STATE(7647), 1, sym_comment, - [242594] = 3, + [241510] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7025), 1, - anon_sym_LBRACK2, + ACTIONS(11764), 1, + anon_sym_RBRACE, STATE(7648), 1, sym_comment, - [242604] = 3, - ACTIONS(3), 1, + [241520] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2133), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11766), 1, + anon_sym_LBRACE, STATE(7649), 1, sym_comment, - [242614] = 3, + [241530] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11805), 1, - anon_sym_GT, + ACTIONS(11768), 1, + anon_sym_EQ_GT, STATE(7650), 1, sym_comment, - [242624] = 3, + [241540] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11807), 1, - sym__table_head_separator, + ACTIONS(11770), 1, + anon_sym_RPAREN, STATE(7651), 1, sym_comment, - [242634] = 3, - ACTIONS(3), 1, + [241550] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2019), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5189), 1, + aux_sym_cmd_identifier_token41, STATE(7652), 1, sym_comment, - [242644] = 3, + [241560] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9418), 1, - aux_sym_unquoted_token2, + ACTIONS(5288), 1, + aux_sym_cmd_identifier_token41, STATE(7653), 1, sym_comment, - [242654] = 3, + [241570] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(675), 1, - ts_builtin_sym_end, + ACTIONS(11772), 1, + anon_sym_RBRACK, STATE(7654), 1, sym_comment, - [242664] = 3, + [241580] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11679), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11774), 1, + anon_sym_RPAREN, STATE(7655), 1, sym_comment, - [242674] = 3, + [241590] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11809), 1, - anon_sym_RBRACK, + ACTIONS(11776), 1, + anon_sym_RPAREN, STATE(7656), 1, sym_comment, - [242684] = 3, + [241600] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11811), 1, + ACTIONS(11778), 1, anon_sym_RPAREN, STATE(7657), 1, sym_comment, - [242694] = 3, + [241610] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6920), 1, - anon_sym_LBRACK2, + ACTIONS(11780), 1, + anon_sym_RPAREN, STATE(7658), 1, sym_comment, - [242704] = 3, + [241620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(2033), 1, + aux_sym__unquoted_with_expr_token1, STATE(7659), 1, sym_comment, - [242714] = 3, - ACTIONS(3), 1, + [241630] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11813), 1, - sym__space, + ACTIONS(11782), 1, + anon_sym_RBRACE, STATE(7660), 1, sym_comment, - [242724] = 3, + [241640] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11815), 1, - anon_sym_RBRACE, + ACTIONS(11784), 1, + sym__table_head_separator, STATE(7661), 1, sym_comment, - [242734] = 3, + [241650] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11817), 1, + ACTIONS(11786), 1, anon_sym_RPAREN, STATE(7662), 1, sym_comment, - [242744] = 3, + [241660] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11819), 1, - anon_sym_RBRACK, + ACTIONS(11788), 1, + anon_sym_RBRACE, STATE(7663), 1, sym_comment, - [242754] = 3, + [241670] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5323), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11790), 1, + anon_sym_GT, STATE(7664), 1, sym_comment, - [242764] = 3, - ACTIONS(3), 1, + [241680] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4785), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(11792), 1, + anon_sym_RBRACE, STATE(7665), 1, sym_comment, - [242774] = 3, + [241690] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(547), 1, - anon_sym_RPAREN2, + ACTIONS(11794), 1, + anon_sym_RBRACE, STATE(7666), 1, sym_comment, - [242784] = 3, + [241700] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_LBRACK2, + ACTIONS(11796), 1, + anon_sym_RPAREN, STATE(7667), 1, sym_comment, - [242794] = 3, + [241710] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11821), 1, - anon_sym_RPAREN, + ACTIONS(11798), 1, + anon_sym_LPAREN2, STATE(7668), 1, sym_comment, - [242804] = 3, - ACTIONS(3), 1, + [241720] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11823), 1, - aux_sym_shebang_token1, + ACTIONS(11800), 1, + anon_sym_RPAREN, STATE(7669), 1, sym_comment, - [242814] = 3, + [241730] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(11802), 1, + anon_sym_EQ, STATE(7670), 1, sym_comment, - [242824] = 3, - ACTIONS(247), 1, + [241740] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11825), 1, - anon_sym_RBRACE, + ACTIONS(11804), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7671), 1, sym_comment, - [242834] = 3, + [241750] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6930), 1, - aux_sym_unquoted_token2, + ACTIONS(11806), 1, + anon_sym_RBRACK, STATE(7672), 1, sym_comment, - [242844] = 3, + [241760] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11827), 1, - anon_sym_RBRACE, + ACTIONS(11808), 1, + anon_sym_RPAREN, STATE(7673), 1, sym_comment, - [242854] = 3, + [241770] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11829), 1, + ACTIONS(11810), 1, anon_sym_RPAREN, STATE(7674), 1, sym_comment, - [242864] = 3, + [241780] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11831), 1, - anon_sym_RBRACK, + ACTIONS(11812), 1, + anon_sym_RBRACE, STATE(7675), 1, sym_comment, - [242874] = 3, - ACTIONS(3), 1, + [241790] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6930), 1, - aux_sym_unquoted_token4, + ACTIONS(11814), 1, + anon_sym_in, STATE(7676), 1, sym_comment, - [242884] = 3, + [241800] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_LBRACK2, + ACTIONS(11816), 1, + anon_sym_RPAREN, STATE(7677), 1, sym_comment, - [242894] = 3, - ACTIONS(3), 1, + [241810] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6874), 1, - aux_sym_unquoted_token4, + ACTIONS(11818), 1, + anon_sym_in, STATE(7678), 1, sym_comment, - [242904] = 3, + [241820] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4299), 1, - aux_sym_unquoted_token2, + ACTIONS(11820), 1, + anon_sym_RBRACK, STATE(7679), 1, sym_comment, - [242914] = 3, + [241830] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11833), 1, - anon_sym_RBRACE, + ACTIONS(11822), 1, + anon_sym_RBRACK, STATE(7680), 1, sym_comment, - [242924] = 3, + [241840] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11835), 1, - anon_sym_RBRACK, + ACTIONS(8395), 1, + aux_sym_unquoted_token2, STATE(7681), 1, sym_comment, - [242934] = 3, - ACTIONS(247), 1, + [241850] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11837), 1, - anon_sym_RBRACE, + ACTIONS(11824), 1, + aux_sym__unquoted_with_expr_token1, STATE(7682), 1, sym_comment, - [242944] = 3, + [241860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8432), 1, - aux_sym_unquoted_token4, + ACTIONS(10968), 1, + aux_sym_cmd_identifier_token37, STATE(7683), 1, sym_comment, - [242954] = 3, + [241870] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11826), 1, + anon_sym_RBRACE, STATE(7684), 1, sym_comment, - [242964] = 3, + [241880] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11839), 1, - aux_sym_ctrl_match_token1, + ACTIONS(553), 1, + anon_sym_RPAREN2, STATE(7685), 1, sym_comment, - [242974] = 3, + [241890] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11841), 1, - sym_identifier, + ACTIONS(11828), 1, + anon_sym_RPAREN, STATE(7686), 1, sym_comment, - [242984] = 3, + [241900] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_LBRACK2, + ACTIONS(5391), 1, + aux_sym_unquoted_token2, STATE(7687), 1, sym_comment, - [242994] = 3, + [241910] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11843), 1, - anon_sym_RBRACK, + ACTIONS(11830), 1, + anon_sym_RBRACE, STATE(7688), 1, sym_comment, - [243004] = 3, + [241920] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11845), 1, - anon_sym_RPAREN, + ACTIONS(11832), 1, + anon_sym_RBRACE, STATE(7689), 1, sym_comment, - [243014] = 3, + [241930] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11847), 1, + ACTIONS(11834), 1, anon_sym_RPAREN, STATE(7690), 1, sym_comment, - [243024] = 3, + [241940] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11849), 1, + ACTIONS(11836), 1, anon_sym_RBRACE, STATE(7691), 1, sym_comment, - [243034] = 3, + [241950] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11851), 1, + ACTIONS(11838), 1, anon_sym_RPAREN, STATE(7692), 1, sym_comment, - [243044] = 3, + [241960] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11853), 1, - anon_sym_RBRACE, + ACTIONS(11840), 1, + anon_sym_RPAREN, STATE(7693), 1, sym_comment, - [243054] = 3, + [241970] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11855), 1, + ACTIONS(11842), 1, anon_sym_RBRACE, STATE(7694), 1, sym_comment, - [243064] = 3, - ACTIONS(247), 1, + [241980] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11857), 1, - anon_sym_RBRACE, + ACTIONS(8395), 1, + aux_sym_unquoted_token4, STATE(7695), 1, sym_comment, - [243074] = 3, + [241990] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11859), 1, + ACTIONS(11844), 1, anon_sym_RPAREN, STATE(7696), 1, sym_comment, - [243084] = 3, - ACTIONS(247), 1, + [242000] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2447), 1, - anon_sym_LBRACK2, + ACTIONS(2033), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7697), 1, sym_comment, - [243094] = 3, + [242010] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11861), 1, - anon_sym_EQ_GT, + ACTIONS(11846), 1, + anon_sym_RBRACK, STATE(7698), 1, sym_comment, - [243104] = 3, - ACTIONS(3), 1, + [242020] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11863), 1, - aux_sym_comment_token1, + ACTIONS(1798), 1, + aux_sym_unquoted_token2, STATE(7699), 1, sym_comment, - [243114] = 3, + [242030] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, + ACTIONS(11848), 1, + anon_sym_RBRACE, STATE(7700), 1, sym_comment, - [243124] = 3, + [242040] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11865), 1, - anon_sym_RBRACK, + ACTIONS(6412), 1, + anon_sym_LPAREN2, STATE(7701), 1, sym_comment, - [243134] = 3, + [242050] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(551), 1, - anon_sym_RPAREN2, + ACTIONS(11850), 1, + anon_sym_RPAREN, STATE(7702), 1, sym_comment, - [243144] = 3, - ACTIONS(3), 1, + [242060] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, - aux_sym_unquoted_token4, + ACTIONS(11852), 1, + anon_sym_LPAREN2, STATE(7703), 1, sym_comment, - [243154] = 3, + [242070] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11867), 1, - anon_sym_RPAREN, + ACTIONS(11854), 1, + anon_sym_DASH_GT, STATE(7704), 1, sym_comment, - [243164] = 3, + [242080] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11869), 1, - anon_sym_GT, + ACTIONS(11856), 1, + anon_sym_LPAREN2, STATE(7705), 1, sym_comment, - [243174] = 3, + [242090] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2305), 1, - anon_sym_LBRACK2, + ACTIONS(4742), 1, + aux_sym_unquoted_token2, STATE(7706), 1, sym_comment, - [243184] = 3, + [242100] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11871), 1, - anon_sym_RBRACE, + ACTIONS(11858), 1, + anon_sym_LBRACE, STATE(7707), 1, sym_comment, - [243194] = 3, + [242110] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11873), 1, - anon_sym_GT, + ACTIONS(11860), 1, + aux_sym_cmd_identifier_token41, STATE(7708), 1, sym_comment, - [243204] = 3, + [242120] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, + ACTIONS(11862), 1, + sym_identifier, STATE(7709), 1, sym_comment, - [243214] = 3, + [242130] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11875), 1, - anon_sym_EQ, + ACTIONS(11864), 1, + anon_sym_RBRACE, STATE(7710), 1, sym_comment, - [243224] = 3, + [242140] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11877), 1, - anon_sym_RBRACK, + ACTIONS(11866), 1, + anon_sym_RPAREN, STATE(7711), 1, sym_comment, - [243234] = 3, + [242150] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11879), 1, - anon_sym_RPAREN2, + ACTIONS(11868), 1, + anon_sym_RPAREN, STATE(7712), 1, sym_comment, - [243244] = 3, - ACTIONS(247), 1, + [242160] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_unquoted_token2, + ACTIONS(6939), 1, + aux_sym_unquoted_token4, STATE(7713), 1, sym_comment, - [243254] = 3, + [242170] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1495), 1, - aux_sym_unquoted_token2, + ACTIONS(11870), 1, + anon_sym_RBRACK, STATE(7714), 1, sym_comment, - [243264] = 3, + [242180] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11872), 1, + anon_sym_RBRACE, STATE(7715), 1, sym_comment, - [243274] = 3, + [242190] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11881), 1, + ACTIONS(11874), 1, anon_sym_RPAREN, STATE(7716), 1, sym_comment, - [243284] = 3, + [242200] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11883), 1, - anon_sym_RBRACE, + ACTIONS(11876), 1, + anon_sym_DASH_GT, STATE(7717), 1, sym_comment, - [243294] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11446), 1, - aux_sym_ctrl_match_token1, - STATE(7718), 1, - sym_comment, - [243304] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11885), 1, - anon_sym_RPAREN, - STATE(7719), 1, - sym_comment, - [243314] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(575), 1, - anon_sym_RPAREN2, - STATE(7720), 1, - sym_comment, - [243324] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11887), 1, - anon_sym_RBRACE, - STATE(7721), 1, - sym_comment, - [243334] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11889), 1, - anon_sym_GT, - STATE(7722), 1, - sym_comment, - [243344] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11891), 1, - anon_sym_RPAREN, - STATE(7723), 1, - sym_comment, - [243354] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9418), 1, - aux_sym_unquoted_token4, - STATE(7724), 1, - sym_comment, - [243364] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11224), 1, - aux_sym_cmd_identifier_token37, - STATE(7725), 1, - sym_comment, - [243374] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11893), 1, - anon_sym_RPAREN, - STATE(7726), 1, - sym_comment, - [243384] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11895), 1, - anon_sym_RBRACE, - STATE(7727), 1, - sym_comment, - [243394] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11897), 1, - aux_sym_ctrl_match_token1, - STATE(7728), 1, - sym_comment, - [243404] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11899), 1, - anon_sym_RBRACE, - STATE(7729), 1, - sym_comment, - [243414] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11901), 1, - anon_sym_RBRACK, - STATE(7730), 1, - sym_comment, - [243424] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11903), 1, - anon_sym_RBRACE, - STATE(7731), 1, - sym_comment, - [243434] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11905), 1, - anon_sym_RPAREN, - STATE(7732), 1, - sym_comment, - [243444] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - STATE(7733), 1, - sym_comment, - [243454] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11907), 1, - sym__table_head_separator, - STATE(7734), 1, - sym_comment, - [243464] = 3, + [242210] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11909), 1, - aux_sym_cmd_identifier_token41, - STATE(7735), 1, - sym_comment, - [243474] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11911), 1, + ACTIONS(11878), 1, anon_sym_RBRACE, - STATE(7736), 1, + STATE(7718), 1, sym_comment, - [243484] = 3, + [242220] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11913), 1, + ACTIONS(11880), 1, anon_sym_RBRACE, - STATE(7737), 1, - sym_comment, - [243494] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11915), 1, - anon_sym_RPAREN, - STATE(7738), 1, - sym_comment, - [243504] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11917), 1, - anon_sym_RPAREN, - STATE(7739), 1, - sym_comment, - [243514] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11919), 1, - anon_sym_EQ, - STATE(7740), 1, - sym_comment, - [243524] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4441), 1, - aux_sym_unquoted_token4, - STATE(7741), 1, - sym_comment, - [243534] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4568), 1, - aux_sym_unquoted_token2, - STATE(7742), 1, - sym_comment, - [243544] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(559), 1, - anon_sym_RPAREN2, - STATE(7743), 1, - sym_comment, - [243554] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11921), 1, - anon_sym_RPAREN, - STATE(7744), 1, - sym_comment, - [243564] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11923), 1, - anon_sym_RPAREN, - STATE(7745), 1, - sym_comment, - [243574] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11925), 1, - anon_sym_EQ, - STATE(7746), 1, - sym_comment, - [243584] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11125), 1, - anon_sym_EQ_GT, - STATE(7747), 1, - sym_comment, - [243594] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11927), 1, - anon_sym_RBRACK, - STATE(7748), 1, + STATE(7719), 1, sym_comment, - [243604] = 3, + [242230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4568), 1, + ACTIONS(6790), 1, aux_sym_unquoted_token4, - STATE(7749), 1, - sym_comment, - [243614] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11929), 1, - anon_sym_RPAREN, - STATE(7750), 1, - sym_comment, - [243624] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11931), 1, - anon_sym_RPAREN, - STATE(7751), 1, - sym_comment, - [243634] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11933), 1, - anon_sym_RBRACK, - STATE(7752), 1, - sym_comment, - [243644] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4441), 1, - aux_sym_unquoted_token2, - STATE(7753), 1, - sym_comment, - [243654] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11935), 1, - aux_sym_ctrl_match_token1, - STATE(7754), 1, - sym_comment, - [243664] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11937), 1, - anon_sym_RBRACK, - STATE(7755), 1, - sym_comment, - [243674] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11939), 1, - anon_sym_LPAREN2, - STATE(7756), 1, - sym_comment, - [243684] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11941), 1, - sym__table_head_separator, - STATE(7757), 1, - sym_comment, - [243694] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11943), 1, - anon_sym_RPAREN, - STATE(7758), 1, - sym_comment, - [243704] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11945), 1, - anon_sym_RPAREN, - STATE(7759), 1, - sym_comment, - [243714] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11947), 1, - anon_sym_RPAREN, - STATE(7760), 1, - sym_comment, - [243724] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11949), 1, - anon_sym_RBRACE, - STATE(7761), 1, - sym_comment, - [243734] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11951), 1, - anon_sym_RBRACE, - STATE(7762), 1, - sym_comment, - [243744] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11953), 1, - anon_sym_RPAREN, - STATE(7763), 1, - sym_comment, - [243754] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11955), 1, - anon_sym_in, - STATE(7764), 1, - sym_comment, - [243764] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10905), 1, - anon_sym_EQ_GT, - STATE(7765), 1, - sym_comment, - [243774] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11957), 1, - anon_sym_in, - STATE(7766), 1, - sym_comment, - [243784] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11959), 1, - anon_sym_RBRACE, - STATE(7767), 1, - sym_comment, - [243794] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11961), 1, - anon_sym_RBRACE, - STATE(7768), 1, - sym_comment, - [243804] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11963), 1, - aux_sym_shebang_token1, - STATE(7769), 1, + STATE(7720), 1, sym_comment, - [243814] = 3, + [242240] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11965), 1, + ACTIONS(11882), 1, anon_sym_RPAREN, - STATE(7770), 1, - sym_comment, - [243824] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - aux_sym_unquoted_token4, - STATE(7771), 1, - sym_comment, - [243834] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8432), 1, - aux_sym_unquoted_token2, - STATE(7772), 1, - sym_comment, - [243844] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11967), 1, - aux_sym_cmd_identifier_token41, - STATE(7773), 1, - sym_comment, - [243854] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8379), 1, - aux_sym_unquoted_token2, - STATE(7774), 1, - sym_comment, - [243864] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11969), 1, - anon_sym_RBRACE, - STATE(7775), 1, - sym_comment, - [243874] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11971), 1, - anon_sym_RBRACK, - STATE(7776), 1, - sym_comment, - [243884] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2019), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7777), 1, - sym_comment, - [243894] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11973), 1, - sym__space, - STATE(7778), 1, - sym_comment, - [243904] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9978), 1, - aux_sym_cmd_identifier_token37, - STATE(7779), 1, + STATE(7721), 1, sym_comment, - [243914] = 3, + [242250] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11975), 1, + ACTIONS(11884), 1, anon_sym_RBRACE, - STATE(7780), 1, + STATE(7722), 1, sym_comment, - [243924] = 3, + [242260] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11977), 1, + ACTIONS(11886), 1, anon_sym_RBRACE, - STATE(7781), 1, - sym_comment, - [243934] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11979), 1, - anon_sym_RPAREN, - STATE(7782), 1, - sym_comment, - [243944] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(521), 1, - anon_sym_RPAREN2, - STATE(7783), 1, - sym_comment, - [243954] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4712), 1, - aux_sym_unquoted_token2, - STATE(7784), 1, - sym_comment, - [243964] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11981), 1, - anon_sym_RPAREN, - STATE(7785), 1, - sym_comment, - [243974] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11983), 1, - anon_sym_RPAREN, - STATE(7786), 1, - sym_comment, - [243984] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11985), 1, - anon_sym_RPAREN, - STATE(7787), 1, - sym_comment, - [243994] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(489), 1, - anon_sym_RPAREN2, - STATE(7788), 1, + STATE(7723), 1, sym_comment, - [244004] = 3, + [242270] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11987), 1, + ACTIONS(11888), 1, sym_identifier, - STATE(7789), 1, - sym_comment, - [244014] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6429), 1, - anon_sym_LPAREN2, - STATE(7790), 1, - sym_comment, - [244024] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11989), 1, - anon_sym_RPAREN, - STATE(7791), 1, - sym_comment, - [244034] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11991), 1, - anon_sym_LPAREN2, - STATE(7792), 1, - sym_comment, - [244044] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11993), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7793), 1, - sym_comment, - [244054] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11995), 1, - anon_sym_LPAREN2, - STATE(7794), 1, - sym_comment, - [244064] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11997), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7795), 1, - sym_comment, - [244074] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11999), 1, - sym__table_head_separator, - STATE(7796), 1, - sym_comment, - [244084] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12001), 1, - anon_sym_RBRACE, - STATE(7797), 1, - sym_comment, - [244094] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12003), 1, - anon_sym_RBRACK, - STATE(7798), 1, - sym_comment, - [244104] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12005), 1, - anon_sym_RBRACE, - STATE(7799), 1, - sym_comment, - [244114] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11537), 1, - aux_sym_ctrl_match_token1, - STATE(7800), 1, - sym_comment, - [244124] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12007), 1, - anon_sym_RBRACK, - STATE(7801), 1, - sym_comment, - [244134] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12009), 1, - anon_sym_RBRACE, - STATE(7802), 1, - sym_comment, - [244144] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12011), 1, - anon_sym_RPAREN, - STATE(7803), 1, - sym_comment, - [244154] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12013), 1, - anon_sym_RBRACE, - STATE(7804), 1, - sym_comment, - [244164] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12015), 1, - anon_sym_RBRACE, - STATE(7805), 1, - sym_comment, - [244174] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11390), 1, - aux_sym__record_key_token1, - STATE(7806), 1, - sym_comment, - [244184] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12017), 1, - anon_sym_RPAREN2, - STATE(7807), 1, - sym_comment, - [244194] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12019), 1, - anon_sym_EQ_GT, - STATE(7808), 1, - sym_comment, - [244204] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12021), 1, - anon_sym_RPAREN, - STATE(7809), 1, - sym_comment, - [244214] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12023), 1, - anon_sym_RBRACE, - STATE(7810), 1, - sym_comment, - [244224] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12025), 1, - anon_sym_RBRACE, - STATE(7811), 1, - sym_comment, - [244234] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12027), 1, - anon_sym_RBRACE, - STATE(7812), 1, + STATE(7724), 1, sym_comment, - [244244] = 3, + [242280] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12029), 1, + ACTIONS(11890), 1, anon_sym_RBRACE, - STATE(7813), 1, - sym_comment, - [244254] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_unquoted_token4, - STATE(7814), 1, - sym_comment, - [244264] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12031), 1, - anon_sym_RPAREN, - STATE(7815), 1, + STATE(7725), 1, sym_comment, - [244274] = 1, - ACTIONS(12033), 1, + [242290] = 1, + ACTIONS(11892), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1474)] = 0, - [SMALL_STATE(1475)] = 75, - [SMALL_STATE(1476)] = 148, - [SMALL_STATE(1477)] = 255, - [SMALL_STATE(1478)] = 332, - [SMALL_STATE(1479)] = 409, - [SMALL_STATE(1480)] = 486, - [SMALL_STATE(1481)] = 563, - [SMALL_STATE(1482)] = 640, - [SMALL_STATE(1483)] = 715, - [SMALL_STATE(1484)] = 790, - [SMALL_STATE(1485)] = 863, - [SMALL_STATE(1486)] = 940, - [SMALL_STATE(1487)] = 1017, - [SMALL_STATE(1488)] = 1092, - [SMALL_STATE(1489)] = 1165, - [SMALL_STATE(1490)] = 1270, - [SMALL_STATE(1491)] = 1343, - [SMALL_STATE(1492)] = 1448, - [SMALL_STATE(1493)] = 1523, - [SMALL_STATE(1494)] = 1596, - [SMALL_STATE(1495)] = 1673, - [SMALL_STATE(1496)] = 1746, - [SMALL_STATE(1497)] = 1819, - [SMALL_STATE(1498)] = 1902, - [SMALL_STATE(1499)] = 1977, - [SMALL_STATE(1500)] = 2054, - [SMALL_STATE(1501)] = 2127, - [SMALL_STATE(1502)] = 2204, - [SMALL_STATE(1503)] = 2277, - [SMALL_STATE(1504)] = 2350, - [SMALL_STATE(1505)] = 2423, - [SMALL_STATE(1506)] = 2500, - [SMALL_STATE(1507)] = 2577, - [SMALL_STATE(1508)] = 2652, - [SMALL_STATE(1509)] = 2725, - [SMALL_STATE(1510)] = 2800, - [SMALL_STATE(1511)] = 2873, - [SMALL_STATE(1512)] = 2950, - [SMALL_STATE(1513)] = 3033, - [SMALL_STATE(1514)] = 3106, - [SMALL_STATE(1515)] = 3179, - [SMALL_STATE(1516)] = 3252, - [SMALL_STATE(1517)] = 3325, - [SMALL_STATE(1518)] = 3432, - [SMALL_STATE(1519)] = 3539, - [SMALL_STATE(1520)] = 3614, - [SMALL_STATE(1521)] = 3689, - [SMALL_STATE(1522)] = 3764, - [SMALL_STATE(1523)] = 3837, - [SMALL_STATE(1524)] = 3912, - [SMALL_STATE(1525)] = 4017, - [SMALL_STATE(1526)] = 4092, - [SMALL_STATE(1527)] = 4165, - [SMALL_STATE(1528)] = 4242, - [SMALL_STATE(1529)] = 4319, - [SMALL_STATE(1530)] = 4396, - [SMALL_STATE(1531)] = 4469, - [SMALL_STATE(1532)] = 4542, - [SMALL_STATE(1533)] = 4615, - [SMALL_STATE(1534)] = 4688, - [SMALL_STATE(1535)] = 4763, - [SMALL_STATE(1536)] = 4840, - [SMALL_STATE(1537)] = 4917, - [SMALL_STATE(1538)] = 4990, - [SMALL_STATE(1539)] = 5063, - [SMALL_STATE(1540)] = 5140, - [SMALL_STATE(1541)] = 5217, - [SMALL_STATE(1542)] = 5297, - [SMALL_STATE(1543)] = 5369, - [SMALL_STATE(1544)] = 5441, - [SMALL_STATE(1545)] = 5513, - [SMALL_STATE(1546)] = 5585, - [SMALL_STATE(1547)] = 5657, - [SMALL_STATE(1548)] = 5729, - [SMALL_STATE(1549)] = 5801, - [SMALL_STATE(1550)] = 5873, - [SMALL_STATE(1551)] = 5945, - [SMALL_STATE(1552)] = 6017, - [SMALL_STATE(1553)] = 6089, - [SMALL_STATE(1554)] = 6161, - [SMALL_STATE(1555)] = 6233, - [SMALL_STATE(1556)] = 6305, - [SMALL_STATE(1557)] = 6377, - [SMALL_STATE(1558)] = 6449, - [SMALL_STATE(1559)] = 6521, - [SMALL_STATE(1560)] = 6593, - [SMALL_STATE(1561)] = 6665, - [SMALL_STATE(1562)] = 6737, - [SMALL_STATE(1563)] = 6809, - [SMALL_STATE(1564)] = 6881, - [SMALL_STATE(1565)] = 6953, - [SMALL_STATE(1566)] = 7025, - [SMALL_STATE(1567)] = 7097, - [SMALL_STATE(1568)] = 7169, - [SMALL_STATE(1569)] = 7241, - [SMALL_STATE(1570)] = 7313, - [SMALL_STATE(1571)] = 7393, - [SMALL_STATE(1572)] = 7465, - [SMALL_STATE(1573)] = 7545, - [SMALL_STATE(1574)] = 7617, - [SMALL_STATE(1575)] = 7689, - [SMALL_STATE(1576)] = 7761, - [SMALL_STATE(1577)] = 7833, - [SMALL_STATE(1578)] = 7905, - [SMALL_STATE(1579)] = 7977, - [SMALL_STATE(1580)] = 8049, - [SMALL_STATE(1581)] = 8121, - [SMALL_STATE(1582)] = 8193, - [SMALL_STATE(1583)] = 8265, - [SMALL_STATE(1584)] = 8337, - [SMALL_STATE(1585)] = 8409, - [SMALL_STATE(1586)] = 8481, - [SMALL_STATE(1587)] = 8553, - [SMALL_STATE(1588)] = 8625, - [SMALL_STATE(1589)] = 8697, - [SMALL_STATE(1590)] = 8769, - [SMALL_STATE(1591)] = 8841, - [SMALL_STATE(1592)] = 8913, - [SMALL_STATE(1593)] = 8985, - [SMALL_STATE(1594)] = 9057, - [SMALL_STATE(1595)] = 9129, - [SMALL_STATE(1596)] = 9201, - [SMALL_STATE(1597)] = 9273, - [SMALL_STATE(1598)] = 9345, - [SMALL_STATE(1599)] = 9425, - [SMALL_STATE(1600)] = 9497, - [SMALL_STATE(1601)] = 9569, - [SMALL_STATE(1602)] = 9641, - [SMALL_STATE(1603)] = 9715, - [SMALL_STATE(1604)] = 9789, - [SMALL_STATE(1605)] = 9861, - [SMALL_STATE(1606)] = 9933, - [SMALL_STATE(1607)] = 10007, - [SMALL_STATE(1608)] = 10113, - [SMALL_STATE(1609)] = 10185, - [SMALL_STATE(1610)] = 10257, - [SMALL_STATE(1611)] = 10331, - [SMALL_STATE(1612)] = 10403, - [SMALL_STATE(1613)] = 10475, - [SMALL_STATE(1614)] = 10549, - [SMALL_STATE(1615)] = 10621, - [SMALL_STATE(1616)] = 10693, - [SMALL_STATE(1617)] = 10765, - [SMALL_STATE(1618)] = 10837, - [SMALL_STATE(1619)] = 10909, - [SMALL_STATE(1620)] = 10981, - [SMALL_STATE(1621)] = 11053, - [SMALL_STATE(1622)] = 11127, - [SMALL_STATE(1623)] = 11199, - [SMALL_STATE(1624)] = 11271, - [SMALL_STATE(1625)] = 11345, - [SMALL_STATE(1626)] = 11419, - [SMALL_STATE(1627)] = 11491, - [SMALL_STATE(1628)] = 11563, - [SMALL_STATE(1629)] = 11635, - [SMALL_STATE(1630)] = 11707, - [SMALL_STATE(1631)] = 11779, - [SMALL_STATE(1632)] = 11851, - [SMALL_STATE(1633)] = 11923, - [SMALL_STATE(1634)] = 11995, - [SMALL_STATE(1635)] = 12139, - [SMALL_STATE(1636)] = 12283, - [SMALL_STATE(1637)] = 12363, - [SMALL_STATE(1638)] = 12443, - [SMALL_STATE(1639)] = 12549, - [SMALL_STATE(1640)] = 12693, - [SMALL_STATE(1641)] = 12765, - [SMALL_STATE(1642)] = 12837, - [SMALL_STATE(1643)] = 12909, - [SMALL_STATE(1644)] = 12981, - [SMALL_STATE(1645)] = 13053, - [SMALL_STATE(1646)] = 13125, - [SMALL_STATE(1647)] = 13197, - [SMALL_STATE(1648)] = 13277, - [SMALL_STATE(1649)] = 13357, - [SMALL_STATE(1650)] = 13429, - [SMALL_STATE(1651)] = 13535, - [SMALL_STATE(1652)] = 13607, - [SMALL_STATE(1653)] = 13687, - [SMALL_STATE(1654)] = 13761, - [SMALL_STATE(1655)] = 13841, - [SMALL_STATE(1656)] = 13921, - [SMALL_STATE(1657)] = 13993, - [SMALL_STATE(1658)] = 14065, - [SMALL_STATE(1659)] = 14145, - [SMALL_STATE(1660)] = 14225, - [SMALL_STATE(1661)] = 14305, - [SMALL_STATE(1662)] = 14385, - [SMALL_STATE(1663)] = 14465, - [SMALL_STATE(1664)] = 14545, - [SMALL_STATE(1665)] = 14625, - [SMALL_STATE(1666)] = 14705, - [SMALL_STATE(1667)] = 14785, - [SMALL_STATE(1668)] = 14865, - [SMALL_STATE(1669)] = 14945, - [SMALL_STATE(1670)] = 15025, - [SMALL_STATE(1671)] = 15105, - [SMALL_STATE(1672)] = 15185, - [SMALL_STATE(1673)] = 15265, - [SMALL_STATE(1674)] = 15345, - [SMALL_STATE(1675)] = 15417, - [SMALL_STATE(1676)] = 15489, - [SMALL_STATE(1677)] = 15561, - [SMALL_STATE(1678)] = 15633, - [SMALL_STATE(1679)] = 15707, - [SMALL_STATE(1680)] = 15779, - [SMALL_STATE(1681)] = 15851, - [SMALL_STATE(1682)] = 15923, - [SMALL_STATE(1683)] = 15995, - [SMALL_STATE(1684)] = 16067, - [SMALL_STATE(1685)] = 16139, - [SMALL_STATE(1686)] = 16211, - [SMALL_STATE(1687)] = 16283, - [SMALL_STATE(1688)] = 16355, - [SMALL_STATE(1689)] = 16427, - [SMALL_STATE(1690)] = 16499, - [SMALL_STATE(1691)] = 16571, - [SMALL_STATE(1692)] = 16643, - [SMALL_STATE(1693)] = 16715, - [SMALL_STATE(1694)] = 16787, - [SMALL_STATE(1695)] = 16859, - [SMALL_STATE(1696)] = 16931, - [SMALL_STATE(1697)] = 17003, - [SMALL_STATE(1698)] = 17075, - [SMALL_STATE(1699)] = 17147, - [SMALL_STATE(1700)] = 17219, - [SMALL_STATE(1701)] = 17291, - [SMALL_STATE(1702)] = 17363, - [SMALL_STATE(1703)] = 17435, - [SMALL_STATE(1704)] = 17507, - [SMALL_STATE(1705)] = 17579, - [SMALL_STATE(1706)] = 17651, - [SMALL_STATE(1707)] = 17725, - [SMALL_STATE(1708)] = 17797, - [SMALL_STATE(1709)] = 17869, - [SMALL_STATE(1710)] = 17941, - [SMALL_STATE(1711)] = 18013, - [SMALL_STATE(1712)] = 18085, - [SMALL_STATE(1713)] = 18157, - [SMALL_STATE(1714)] = 18229, - [SMALL_STATE(1715)] = 18301, - [SMALL_STATE(1716)] = 18373, - [SMALL_STATE(1717)] = 18447, - [SMALL_STATE(1718)] = 18527, - [SMALL_STATE(1719)] = 18599, - [SMALL_STATE(1720)] = 18671, - [SMALL_STATE(1721)] = 18743, - [SMALL_STATE(1722)] = 18815, - [SMALL_STATE(1723)] = 18887, - [SMALL_STATE(1724)] = 18959, - [SMALL_STATE(1725)] = 19039, - [SMALL_STATE(1726)] = 19183, - [SMALL_STATE(1727)] = 19255, - [SMALL_STATE(1728)] = 19327, - [SMALL_STATE(1729)] = 19399, - [SMALL_STATE(1730)] = 19471, - [SMALL_STATE(1731)] = 19615, - [SMALL_STATE(1732)] = 19759, - [SMALL_STATE(1733)] = 19903, - [SMALL_STATE(1734)] = 20047, - [SMALL_STATE(1735)] = 20127, - [SMALL_STATE(1736)] = 20207, - [SMALL_STATE(1737)] = 20287, - [SMALL_STATE(1738)] = 20367, - [SMALL_STATE(1739)] = 20447, - [SMALL_STATE(1740)] = 20527, - [SMALL_STATE(1741)] = 20607, - [SMALL_STATE(1742)] = 20687, - [SMALL_STATE(1743)] = 20767, - [SMALL_STATE(1744)] = 20847, - [SMALL_STATE(1745)] = 20927, - [SMALL_STATE(1746)] = 21007, - [SMALL_STATE(1747)] = 21087, - [SMALL_STATE(1748)] = 21167, - [SMALL_STATE(1749)] = 21247, - [SMALL_STATE(1750)] = 21327, - [SMALL_STATE(1751)] = 21407, - [SMALL_STATE(1752)] = 21487, - [SMALL_STATE(1753)] = 21567, - [SMALL_STATE(1754)] = 21647, - [SMALL_STATE(1755)] = 21727, - [SMALL_STATE(1756)] = 21799, - [SMALL_STATE(1757)] = 21879, - [SMALL_STATE(1758)] = 21950, - [SMALL_STATE(1759)] = 22027, - [SMALL_STATE(1760)] = 22106, - [SMALL_STATE(1761)] = 22183, - [SMALL_STATE(1762)] = 22260, - [SMALL_STATE(1763)] = 22337, - [SMALL_STATE(1764)] = 22414, - [SMALL_STATE(1765)] = 22491, - [SMALL_STATE(1766)] = 22568, - [SMALL_STATE(1767)] = 22645, - [SMALL_STATE(1768)] = 22722, - [SMALL_STATE(1769)] = 22793, - [SMALL_STATE(1770)] = 22870, - [SMALL_STATE(1771)] = 22941, - [SMALL_STATE(1772)] = 23018, - [SMALL_STATE(1773)] = 23089, - [SMALL_STATE(1774)] = 23168, - [SMALL_STATE(1775)] = 23247, - [SMALL_STATE(1776)] = 23324, - [SMALL_STATE(1777)] = 23395, - [SMALL_STATE(1778)] = 23472, - [SMALL_STATE(1779)] = 23543, - [SMALL_STATE(1780)] = 23622, - [SMALL_STATE(1781)] = 23701, - [SMALL_STATE(1782)] = 23780, - [SMALL_STATE(1783)] = 23853, - [SMALL_STATE(1784)] = 23930, - [SMALL_STATE(1785)] = 24001, - [SMALL_STATE(1786)] = 24072, - [SMALL_STATE(1787)] = 24143, - [SMALL_STATE(1788)] = 24214, - [SMALL_STATE(1789)] = 24285, - [SMALL_STATE(1790)] = 24356, - [SMALL_STATE(1791)] = 24427, - [SMALL_STATE(1792)] = 24504, - [SMALL_STATE(1793)] = 24583, - [SMALL_STATE(1794)] = 24654, - [SMALL_STATE(1795)] = 24725, - [SMALL_STATE(1796)] = 24804, - [SMALL_STATE(1797)] = 24883, - [SMALL_STATE(1798)] = 24960, - [SMALL_STATE(1799)] = 25031, - [SMALL_STATE(1800)] = 25102, - [SMALL_STATE(1801)] = 25179, - [SMALL_STATE(1802)] = 25258, - [SMALL_STATE(1803)] = 25337, - [SMALL_STATE(1804)] = 25416, - [SMALL_STATE(1805)] = 25495, - [SMALL_STATE(1806)] = 25574, - [SMALL_STATE(1807)] = 25653, - [SMALL_STATE(1808)] = 25724, - [SMALL_STATE(1809)] = 25795, - [SMALL_STATE(1810)] = 25874, - [SMALL_STATE(1811)] = 25953, - [SMALL_STATE(1812)] = 26024, - [SMALL_STATE(1813)] = 26095, - [SMALL_STATE(1814)] = 26172, - [SMALL_STATE(1815)] = 26243, - [SMALL_STATE(1816)] = 26314, - [SMALL_STATE(1817)] = 26385, - [SMALL_STATE(1818)] = 26462, - [SMALL_STATE(1819)] = 26533, - [SMALL_STATE(1820)] = 26604, - [SMALL_STATE(1821)] = 26675, - [SMALL_STATE(1822)] = 26752, - [SMALL_STATE(1823)] = 26823, - [SMALL_STATE(1824)] = 26894, - [SMALL_STATE(1825)] = 26965, - [SMALL_STATE(1826)] = 27042, - [SMALL_STATE(1827)] = 27113, - [SMALL_STATE(1828)] = 27184, - [SMALL_STATE(1829)] = 27255, - [SMALL_STATE(1830)] = 27332, - [SMALL_STATE(1831)] = 27409, - [SMALL_STATE(1832)] = 27480, - [SMALL_STATE(1833)] = 27551, - [SMALL_STATE(1834)] = 27622, - [SMALL_STATE(1835)] = 27701, - [SMALL_STATE(1836)] = 27780, - [SMALL_STATE(1837)] = 27859, - [SMALL_STATE(1838)] = 27938, - [SMALL_STATE(1839)] = 28015, - [SMALL_STATE(1840)] = 28086, - [SMALL_STATE(1841)] = 28157, - [SMALL_STATE(1842)] = 28228, - [SMALL_STATE(1843)] = 28305, - [SMALL_STATE(1844)] = 28376, - [SMALL_STATE(1845)] = 28447, - [SMALL_STATE(1846)] = 28524, - [SMALL_STATE(1847)] = 28595, - [SMALL_STATE(1848)] = 28666, - [SMALL_STATE(1849)] = 28737, - [SMALL_STATE(1850)] = 28814, - [SMALL_STATE(1851)] = 28885, - [SMALL_STATE(1852)] = 28956, - [SMALL_STATE(1853)] = 29027, - [SMALL_STATE(1854)] = 29098, - [SMALL_STATE(1855)] = 29175, - [SMALL_STATE(1856)] = 29246, - [SMALL_STATE(1857)] = 29317, - [SMALL_STATE(1858)] = 29388, - [SMALL_STATE(1859)] = 29459, - [SMALL_STATE(1860)] = 29530, - [SMALL_STATE(1861)] = 29601, - [SMALL_STATE(1862)] = 29672, - [SMALL_STATE(1863)] = 29743, - [SMALL_STATE(1864)] = 29814, - [SMALL_STATE(1865)] = 29891, - [SMALL_STATE(1866)] = 29962, - [SMALL_STATE(1867)] = 30033, - [SMALL_STATE(1868)] = 30110, - [SMALL_STATE(1869)] = 30189, - [SMALL_STATE(1870)] = 30266, - [SMALL_STATE(1871)] = 30337, - [SMALL_STATE(1872)] = 30414, - [SMALL_STATE(1873)] = 30491, - [SMALL_STATE(1874)] = 30570, - [SMALL_STATE(1875)] = 30641, - [SMALL_STATE(1876)] = 30718, - [SMALL_STATE(1877)] = 30789, - [SMALL_STATE(1878)] = 30868, - [SMALL_STATE(1879)] = 30939, - [SMALL_STATE(1880)] = 31016, - [SMALL_STATE(1881)] = 31093, - [SMALL_STATE(1882)] = 31170, - [SMALL_STATE(1883)] = 31247, - [SMALL_STATE(1884)] = 31318, - [SMALL_STATE(1885)] = 31395, - [SMALL_STATE(1886)] = 31472, - [SMALL_STATE(1887)] = 31549, - [SMALL_STATE(1888)] = 31626, - [SMALL_STATE(1889)] = 31703, - [SMALL_STATE(1890)] = 31774, - [SMALL_STATE(1891)] = 31851, - [SMALL_STATE(1892)] = 31928, - [SMALL_STATE(1893)] = 31999, - [SMALL_STATE(1894)] = 32074, - [SMALL_STATE(1895)] = 32153, - [SMALL_STATE(1896)] = 32232, - [SMALL_STATE(1897)] = 32303, - [SMALL_STATE(1898)] = 32380, - [SMALL_STATE(1899)] = 32451, - [SMALL_STATE(1900)] = 32522, - [SMALL_STATE(1901)] = 32593, - [SMALL_STATE(1902)] = 32670, - [SMALL_STATE(1903)] = 32747, - [SMALL_STATE(1904)] = 32824, - [SMALL_STATE(1905)] = 32895, - [SMALL_STATE(1906)] = 32972, - [SMALL_STATE(1907)] = 33043, - [SMALL_STATE(1908)] = 33120, - [SMALL_STATE(1909)] = 33197, - [SMALL_STATE(1910)] = 33272, - [SMALL_STATE(1911)] = 33343, - [SMALL_STATE(1912)] = 33414, - [SMALL_STATE(1913)] = 33485, - [SMALL_STATE(1914)] = 33556, - [SMALL_STATE(1915)] = 33627, - [SMALL_STATE(1916)] = 33698, - [SMALL_STATE(1917)] = 33769, - [SMALL_STATE(1918)] = 33846, - [SMALL_STATE(1919)] = 33917, - [SMALL_STATE(1920)] = 33988, - [SMALL_STATE(1921)] = 34059, - [SMALL_STATE(1922)] = 34130, - [SMALL_STATE(1923)] = 34201, - [SMALL_STATE(1924)] = 34276, - [SMALL_STATE(1925)] = 34347, - [SMALL_STATE(1926)] = 34418, - [SMALL_STATE(1927)] = 34495, - [SMALL_STATE(1928)] = 34572, - [SMALL_STATE(1929)] = 34642, - [SMALL_STATE(1930)] = 34712, - [SMALL_STATE(1931)] = 34782, - [SMALL_STATE(1932)] = 34856, - [SMALL_STATE(1933)] = 34930, - [SMALL_STATE(1934)] = 35000, - [SMALL_STATE(1935)] = 35074, - [SMALL_STATE(1936)] = 35144, - [SMALL_STATE(1937)] = 35214, - [SMALL_STATE(1938)] = 35284, - [SMALL_STATE(1939)] = 35358, - [SMALL_STATE(1940)] = 35428, - [SMALL_STATE(1941)] = 35506, - [SMALL_STATE(1942)] = 35580, - [SMALL_STATE(1943)] = 35654, - [SMALL_STATE(1944)] = 35728, - [SMALL_STATE(1945)] = 35802, - [SMALL_STATE(1946)] = 35872, - [SMALL_STATE(1947)] = 35942, - [SMALL_STATE(1948)] = 36012, - [SMALL_STATE(1949)] = 36082, - [SMALL_STATE(1950)] = 36152, - [SMALL_STATE(1951)] = 36222, - [SMALL_STATE(1952)] = 36292, - [SMALL_STATE(1953)] = 36362, - [SMALL_STATE(1954)] = 36432, - [SMALL_STATE(1955)] = 36502, - [SMALL_STATE(1956)] = 36572, - [SMALL_STATE(1957)] = 36646, - [SMALL_STATE(1958)] = 36786, - [SMALL_STATE(1959)] = 36856, - [SMALL_STATE(1960)] = 36926, - [SMALL_STATE(1961)] = 36998, - [SMALL_STATE(1962)] = 37076, - [SMALL_STATE(1963)] = 37146, - [SMALL_STATE(1964)] = 37216, - [SMALL_STATE(1965)] = 37286, - [SMALL_STATE(1966)] = 37356, - [SMALL_STATE(1967)] = 37426, - [SMALL_STATE(1968)] = 37498, - [SMALL_STATE(1969)] = 37568, - [SMALL_STATE(1970)] = 37638, - [SMALL_STATE(1971)] = 37712, - [SMALL_STATE(1972)] = 37788, - [SMALL_STATE(1973)] = 37858, - [SMALL_STATE(1974)] = 37928, - [SMALL_STATE(1975)] = 37998, - [SMALL_STATE(1976)] = 38068, - [SMALL_STATE(1977)] = 38138, - [SMALL_STATE(1978)] = 38208, - [SMALL_STATE(1979)] = 38278, - [SMALL_STATE(1980)] = 38348, - [SMALL_STATE(1981)] = 38418, - [SMALL_STATE(1982)] = 38558, - [SMALL_STATE(1983)] = 38628, - [SMALL_STATE(1984)] = 38706, - [SMALL_STATE(1985)] = 38776, - [SMALL_STATE(1986)] = 38854, - [SMALL_STATE(1987)] = 38926, - [SMALL_STATE(1988)] = 38998, - [SMALL_STATE(1989)] = 39068, - [SMALL_STATE(1990)] = 39139, - [SMALL_STATE(1991)] = 39210, - [SMALL_STATE(1992)] = 39281, - [SMALL_STATE(1993)] = 39352, - [SMALL_STATE(1994)] = 39429, - [SMALL_STATE(1995)] = 39500, - [SMALL_STATE(1996)] = 39571, - [SMALL_STATE(1997)] = 39642, - [SMALL_STATE(1998)] = 39713, - [SMALL_STATE(1999)] = 39784, - [SMALL_STATE(2000)] = 39855, - [SMALL_STATE(2001)] = 39926, - [SMALL_STATE(2002)] = 39997, - [SMALL_STATE(2003)] = 40068, - [SMALL_STATE(2004)] = 40137, - [SMALL_STATE(2005)] = 40208, - [SMALL_STATE(2006)] = 40279, - [SMALL_STATE(2007)] = 40350, - [SMALL_STATE(2008)] = 40421, - [SMALL_STATE(2009)] = 40492, - [SMALL_STATE(2010)] = 40563, - [SMALL_STATE(2011)] = 40632, - [SMALL_STATE(2012)] = 40703, - [SMALL_STATE(2013)] = 40774, - [SMALL_STATE(2014)] = 40845, - [SMALL_STATE(2015)] = 40916, - [SMALL_STATE(2016)] = 40987, - [SMALL_STATE(2017)] = 41058, - [SMALL_STATE(2018)] = 41129, - [SMALL_STATE(2019)] = 41200, - [SMALL_STATE(2020)] = 41271, - [SMALL_STATE(2021)] = 41342, - [SMALL_STATE(2022)] = 41413, - [SMALL_STATE(2023)] = 41484, - [SMALL_STATE(2024)] = 41557, - [SMALL_STATE(2025)] = 41628, - [SMALL_STATE(2026)] = 41699, - [SMALL_STATE(2027)] = 41770, - [SMALL_STATE(2028)] = 41841, - [SMALL_STATE(2029)] = 41912, - [SMALL_STATE(2030)] = 41983, - [SMALL_STATE(2031)] = 42054, - [SMALL_STATE(2032)] = 42125, - [SMALL_STATE(2033)] = 42196, - [SMALL_STATE(2034)] = 42267, - [SMALL_STATE(2035)] = 42340, - [SMALL_STATE(2036)] = 42413, - [SMALL_STATE(2037)] = 42484, - [SMALL_STATE(2038)] = 42555, - [SMALL_STATE(2039)] = 42626, - [SMALL_STATE(2040)] = 42697, - [SMALL_STATE(2041)] = 42768, - [SMALL_STATE(2042)] = 42839, - [SMALL_STATE(2043)] = 42910, - [SMALL_STATE(2044)] = 42981, - [SMALL_STATE(2045)] = 43052, - [SMALL_STATE(2046)] = 43123, - [SMALL_STATE(2047)] = 43194, - [SMALL_STATE(2048)] = 43265, - [SMALL_STATE(2049)] = 43338, - [SMALL_STATE(2050)] = 43411, - [SMALL_STATE(2051)] = 43482, - [SMALL_STATE(2052)] = 43553, - [SMALL_STATE(2053)] = 43624, - [SMALL_STATE(2054)] = 43695, - [SMALL_STATE(2055)] = 43766, - [SMALL_STATE(2056)] = 43837, - [SMALL_STATE(2057)] = 43910, - [SMALL_STATE(2058)] = 43983, - [SMALL_STATE(2059)] = 44054, - [SMALL_STATE(2060)] = 44125, - [SMALL_STATE(2061)] = 44198, - [SMALL_STATE(2062)] = 44299, - [SMALL_STATE(2063)] = 44370, - [SMALL_STATE(2064)] = 44441, - [SMALL_STATE(2065)] = 44512, - [SMALL_STATE(2066)] = 44583, - [SMALL_STATE(2067)] = 44654, - [SMALL_STATE(2068)] = 44725, - [SMALL_STATE(2069)] = 44800, - [SMALL_STATE(2070)] = 44871, - [SMALL_STATE(2071)] = 44942, - [SMALL_STATE(2072)] = 45013, - [SMALL_STATE(2073)] = 45086, - [SMALL_STATE(2074)] = 45187, - [SMALL_STATE(2075)] = 45258, - [SMALL_STATE(2076)] = 45329, - [SMALL_STATE(2077)] = 45400, - [SMALL_STATE(2078)] = 45471, - [SMALL_STATE(2079)] = 45540, - [SMALL_STATE(2080)] = 45611, - [SMALL_STATE(2081)] = 45684, - [SMALL_STATE(2082)] = 45753, - [SMALL_STATE(2083)] = 45826, - [SMALL_STATE(2084)] = 45897, - [SMALL_STATE(2085)] = 45968, - [SMALL_STATE(2086)] = 46039, - [SMALL_STATE(2087)] = 46110, - [SMALL_STATE(2088)] = 46181, - [SMALL_STATE(2089)] = 46252, - [SMALL_STATE(2090)] = 46325, - [SMALL_STATE(2091)] = 46398, - [SMALL_STATE(2092)] = 46471, - [SMALL_STATE(2093)] = 46544, - [SMALL_STATE(2094)] = 46617, - [SMALL_STATE(2095)] = 46688, - [SMALL_STATE(2096)] = 46761, - [SMALL_STATE(2097)] = 46834, - [SMALL_STATE(2098)] = 46935, - [SMALL_STATE(2099)] = 47072, - [SMALL_STATE(2100)] = 47209, - [SMALL_STATE(2101)] = 47280, - [SMALL_STATE(2102)] = 47351, - [SMALL_STATE(2103)] = 47424, - [SMALL_STATE(2104)] = 47495, - [SMALL_STATE(2105)] = 47564, - [SMALL_STATE(2106)] = 47637, - [SMALL_STATE(2107)] = 47710, - [SMALL_STATE(2108)] = 47787, - [SMALL_STATE(2109)] = 47860, - [SMALL_STATE(2110)] = 47931, - [SMALL_STATE(2111)] = 48002, - [SMALL_STATE(2112)] = 48073, - [SMALL_STATE(2113)] = 48144, - [SMALL_STATE(2114)] = 48215, - [SMALL_STATE(2115)] = 48286, - [SMALL_STATE(2116)] = 48357, - [SMALL_STATE(2117)] = 48428, - [SMALL_STATE(2118)] = 48499, - [SMALL_STATE(2119)] = 48600, - [SMALL_STATE(2120)] = 48671, - [SMALL_STATE(2121)] = 48742, - [SMALL_STATE(2122)] = 48815, - [SMALL_STATE(2123)] = 48886, - [SMALL_STATE(2124)] = 48959, - [SMALL_STATE(2125)] = 49036, - [SMALL_STATE(2126)] = 49107, - [SMALL_STATE(2127)] = 49176, - [SMALL_STATE(2128)] = 49313, - [SMALL_STATE(2129)] = 49450, - [SMALL_STATE(2130)] = 49521, - [SMALL_STATE(2131)] = 49592, - [SMALL_STATE(2132)] = 49665, - [SMALL_STATE(2133)] = 49738, - [SMALL_STATE(2134)] = 49809, - [SMALL_STATE(2135)] = 49880, - [SMALL_STATE(2136)] = 49951, - [SMALL_STATE(2137)] = 50022, - [SMALL_STATE(2138)] = 50093, - [SMALL_STATE(2139)] = 50164, - [SMALL_STATE(2140)] = 50235, - [SMALL_STATE(2141)] = 50306, - [SMALL_STATE(2142)] = 50375, - [SMALL_STATE(2143)] = 50446, - [SMALL_STATE(2144)] = 50517, - [SMALL_STATE(2145)] = 50588, - [SMALL_STATE(2146)] = 50659, - [SMALL_STATE(2147)] = 50730, - [SMALL_STATE(2148)] = 50801, - [SMALL_STATE(2149)] = 50872, - [SMALL_STATE(2150)] = 50943, - [SMALL_STATE(2151)] = 51014, - [SMALL_STATE(2152)] = 51085, - [SMALL_STATE(2153)] = 51156, - [SMALL_STATE(2154)] = 51225, - [SMALL_STATE(2155)] = 51294, - [SMALL_STATE(2156)] = 51367, - [SMALL_STATE(2157)] = 51440, - [SMALL_STATE(2158)] = 51509, - [SMALL_STATE(2159)] = 51580, - [SMALL_STATE(2160)] = 51650, - [SMALL_STATE(2161)] = 51718, - [SMALL_STATE(2162)] = 51788, - [SMALL_STATE(2163)] = 51886, - [SMALL_STATE(2164)] = 51956, - [SMALL_STATE(2165)] = 52042, - [SMALL_STATE(2166)] = 52112, - [SMALL_STATE(2167)] = 52182, - [SMALL_STATE(2168)] = 52252, - [SMALL_STATE(2169)] = 52320, - [SMALL_STATE(2170)] = 52392, - [SMALL_STATE(2171)] = 52480, - [SMALL_STATE(2172)] = 52554, - [SMALL_STATE(2173)] = 52642, - [SMALL_STATE(2174)] = 52718, - [SMALL_STATE(2175)] = 52808, - [SMALL_STATE(2176)] = 52898, - [SMALL_STATE(2177)] = 52980, - [SMALL_STATE(2178)] = 53064, - [SMALL_STATE(2179)] = 53150, - [SMALL_STATE(2180)] = 53220, - [SMALL_STATE(2181)] = 53290, - [SMALL_STATE(2182)] = 53382, - [SMALL_STATE(2183)] = 53450, - [SMALL_STATE(2184)] = 53538, - [SMALL_STATE(2185)] = 53606, - [SMALL_STATE(2186)] = 53674, - [SMALL_STATE(2187)] = 53764, - [SMALL_STATE(2188)] = 53834, - [SMALL_STATE(2189)] = 53906, - [SMALL_STATE(2190)] = 53980, - [SMALL_STATE(2191)] = 54060, - [SMALL_STATE(2192)] = 54142, - [SMALL_STATE(2193)] = 54226, - [SMALL_STATE(2194)] = 54312, - [SMALL_STATE(2195)] = 54400, - [SMALL_STATE(2196)] = 54490, - [SMALL_STATE(2197)] = 54582, - [SMALL_STATE(2198)] = 54660, - [SMALL_STATE(2199)] = 54736, - [SMALL_STATE(2200)] = 54826, - [SMALL_STATE(2201)] = 54918, - [SMALL_STATE(2202)] = 54986, - [SMALL_STATE(2203)] = 55080, - [SMALL_STATE(2204)] = 55172, - [SMALL_STATE(2205)] = 55252, - [SMALL_STATE(2206)] = 55330, - [SMALL_STATE(2207)] = 55398, - [SMALL_STATE(2208)] = 55466, - [SMALL_STATE(2209)] = 55558, - [SMALL_STATE(2210)] = 55652, - [SMALL_STATE(2211)] = 55746, - [SMALL_STATE(2212)] = 55826, - [SMALL_STATE(2213)] = 55896, - [SMALL_STATE(2214)] = 55994, - [SMALL_STATE(2215)] = 56072, - [SMALL_STATE(2216)] = 56170, - [SMALL_STATE(2217)] = 56242, - [SMALL_STATE(2218)] = 56312, - [SMALL_STATE(2219)] = 56380, - [SMALL_STATE(2220)] = 56448, - [SMALL_STATE(2221)] = 56518, - [SMALL_STATE(2222)] = 56588, - [SMALL_STATE(2223)] = 56658, - [SMALL_STATE(2224)] = 56726, - [SMALL_STATE(2225)] = 56794, - [SMALL_STATE(2226)] = 56864, - [SMALL_STATE(2227)] = 56934, - [SMALL_STATE(2228)] = 57004, - [SMALL_STATE(2229)] = 57098, - [SMALL_STATE(2230)] = 57172, - [SMALL_STATE(2231)] = 57240, - [SMALL_STATE(2232)] = 57308, - [SMALL_STATE(2233)] = 57380, - [SMALL_STATE(2234)] = 57476, - [SMALL_STATE(2235)] = 57574, - [SMALL_STATE(2236)] = 57660, - [SMALL_STATE(2237)] = 57728, - [SMALL_STATE(2238)] = 57800, - [SMALL_STATE(2239)] = 57880, - [SMALL_STATE(2240)] = 57954, - [SMALL_STATE(2241)] = 58036, - [SMALL_STATE(2242)] = 58110, - [SMALL_STATE(2243)] = 58178, - [SMALL_STATE(2244)] = 58246, - [SMALL_STATE(2245)] = 58320, - [SMALL_STATE(2246)] = 58396, - [SMALL_STATE(2247)] = 58470, - [SMALL_STATE(2248)] = 58546, - [SMALL_STATE(2249)] = 58622, - [SMALL_STATE(2250)] = 58700, - [SMALL_STATE(2251)] = 58768, - [SMALL_STATE(2252)] = 58842, - [SMALL_STATE(2253)] = 58918, - [SMALL_STATE(2254)] = 59000, - [SMALL_STATE(2255)] = 59068, - [SMALL_STATE(2256)] = 59152, - [SMALL_STATE(2257)] = 59230, - [SMALL_STATE(2258)] = 59314, - [SMALL_STATE(2259)] = 59400, - [SMALL_STATE(2260)] = 59468, - [SMALL_STATE(2261)] = 59548, - [SMALL_STATE(2262)] = 59624, - [SMALL_STATE(2263)] = 59698, - [SMALL_STATE(2264)] = 59770, - [SMALL_STATE(2265)] = 59838, - [SMALL_STATE(2266)] = 59924, - [SMALL_STATE(2267)] = 59992, - [SMALL_STATE(2268)] = 60068, - [SMALL_STATE(2269)] = 60156, - [SMALL_STATE(2270)] = 60234, - [SMALL_STATE(2271)] = 60312, - [SMALL_STATE(2272)] = 60394, - [SMALL_STATE(2273)] = 60482, - [SMALL_STATE(2274)] = 60564, - [SMALL_STATE(2275)] = 60634, - [SMALL_STATE(2276)] = 60704, - [SMALL_STATE(2277)] = 60794, - [SMALL_STATE(2278)] = 60928, - [SMALL_STATE(2279)] = 61012, - [SMALL_STATE(2280)] = 61102, - [SMALL_STATE(2281)] = 61188, - [SMALL_STATE(2282)] = 61280, - [SMALL_STATE(2283)] = 61368, - [SMALL_STATE(2284)] = 61460, - [SMALL_STATE(2285)] = 61554, - [SMALL_STATE(2286)] = 61638, - [SMALL_STATE(2287)] = 61728, - [SMALL_STATE(2288)] = 61822, - [SMALL_STATE(2289)] = 61914, - [SMALL_STATE(2290)] = 62010, - [SMALL_STATE(2291)] = 62090, - [SMALL_STATE(2292)] = 62172, - [SMALL_STATE(2293)] = 62240, - [SMALL_STATE(2294)] = 62318, - [SMALL_STATE(2295)] = 62412, - [SMALL_STATE(2296)] = 62492, - [SMALL_STATE(2297)] = 62588, - [SMALL_STATE(2298)] = 62722, - [SMALL_STATE(2299)] = 62796, - [SMALL_STATE(2300)] = 62880, - [SMALL_STATE(2301)] = 62956, - [SMALL_STATE(2302)] = 63090, - [SMALL_STATE(2303)] = 63168, - [SMALL_STATE(2304)] = 63250, - [SMALL_STATE(2305)] = 63334, - [SMALL_STATE(2306)] = 63420, - [SMALL_STATE(2307)] = 63490, - [SMALL_STATE(2308)] = 63574, - [SMALL_STATE(2309)] = 63660, - [SMALL_STATE(2310)] = 63748, - [SMALL_STATE(2311)] = 63820, - [SMALL_STATE(2312)] = 63910, - [SMALL_STATE(2313)] = 63990, - [SMALL_STATE(2314)] = 64082, - [SMALL_STATE(2315)] = 64168, - [SMALL_STATE(2316)] = 64262, - [SMALL_STATE(2317)] = 64358, - [SMALL_STATE(2318)] = 64440, - [SMALL_STATE(2319)] = 64528, - [SMALL_STATE(2320)] = 64608, - [SMALL_STATE(2321)] = 64742, - [SMALL_STATE(2322)] = 64876, - [SMALL_STATE(2323)] = 64946, - [SMALL_STATE(2324)] = 65016, - [SMALL_STATE(2325)] = 65150, - [SMALL_STATE(2326)] = 65284, - [SMALL_STATE(2327)] = 65418, - [SMALL_STATE(2328)] = 65488, - [SMALL_STATE(2329)] = 65586, - [SMALL_STATE(2330)] = 65720, - [SMALL_STATE(2331)] = 65854, - [SMALL_STATE(2332)] = 65988, - [SMALL_STATE(2333)] = 66122, - [SMALL_STATE(2334)] = 66192, - [SMALL_STATE(2335)] = 66260, - [SMALL_STATE(2336)] = 66358, - [SMALL_STATE(2337)] = 66492, - [SMALL_STATE(2338)] = 66590, - [SMALL_STATE(2339)] = 66688, - [SMALL_STATE(2340)] = 66786, - [SMALL_STATE(2341)] = 66884, - [SMALL_STATE(2342)] = 66952, - [SMALL_STATE(2343)] = 67020, - [SMALL_STATE(2344)] = 67087, - [SMALL_STATE(2345)] = 67158, - [SMALL_STATE(2346)] = 67225, - [SMALL_STATE(2347)] = 67302, - [SMALL_STATE(2348)] = 67369, - [SMALL_STATE(2349)] = 67436, - [SMALL_STATE(2350)] = 67503, - [SMALL_STATE(2351)] = 67570, - [SMALL_STATE(2352)] = 67657, - [SMALL_STATE(2353)] = 67724, - [SMALL_STATE(2354)] = 67791, - [SMALL_STATE(2355)] = 67876, - [SMALL_STATE(2356)] = 67943, - [SMALL_STATE(2357)] = 68010, - [SMALL_STATE(2358)] = 68077, - [SMALL_STATE(2359)] = 68144, - [SMALL_STATE(2360)] = 68211, - [SMALL_STATE(2361)] = 68278, - [SMALL_STATE(2362)] = 68345, - [SMALL_STATE(2363)] = 68412, - [SMALL_STATE(2364)] = 68479, - [SMALL_STATE(2365)] = 68546, - [SMALL_STATE(2366)] = 68635, - [SMALL_STATE(2367)] = 68702, - [SMALL_STATE(2368)] = 68769, - [SMALL_STATE(2369)] = 68836, - [SMALL_STATE(2370)] = 68903, - [SMALL_STATE(2371)] = 68994, - [SMALL_STATE(2372)] = 69061, - [SMALL_STATE(2373)] = 69128, - [SMALL_STATE(2374)] = 69195, - [SMALL_STATE(2375)] = 69278, - [SMALL_STATE(2376)] = 69345, - [SMALL_STATE(2377)] = 69412, - [SMALL_STATE(2378)] = 69487, - [SMALL_STATE(2379)] = 69554, - [SMALL_STATE(2380)] = 69637, - [SMALL_STATE(2381)] = 69704, - [SMALL_STATE(2382)] = 69773, - [SMALL_STATE(2383)] = 69854, - [SMALL_STATE(2384)] = 69921, - [SMALL_STATE(2385)] = 69988, - [SMALL_STATE(2386)] = 70055, - [SMALL_STATE(2387)] = 70142, - [SMALL_STATE(2388)] = 70225, - [SMALL_STATE(2389)] = 70292, - [SMALL_STATE(2390)] = 70359, - [SMALL_STATE(2391)] = 70426, - [SMALL_STATE(2392)] = 70493, - [SMALL_STATE(2393)] = 70560, - [SMALL_STATE(2394)] = 70627, - [SMALL_STATE(2395)] = 70694, - [SMALL_STATE(2396)] = 70761, - [SMALL_STATE(2397)] = 70828, - [SMALL_STATE(2398)] = 70895, - [SMALL_STATE(2399)] = 70962, - [SMALL_STATE(2400)] = 71029, - [SMALL_STATE(2401)] = 71100, - [SMALL_STATE(2402)] = 71167, - [SMALL_STATE(2403)] = 71234, - [SMALL_STATE(2404)] = 71301, - [SMALL_STATE(2405)] = 71368, - [SMALL_STATE(2406)] = 71435, - [SMALL_STATE(2407)] = 71504, - [SMALL_STATE(2408)] = 71571, - [SMALL_STATE(2409)] = 71638, - [SMALL_STATE(2410)] = 71705, - [SMALL_STATE(2411)] = 71772, - [SMALL_STATE(2412)] = 71843, - [SMALL_STATE(2413)] = 71926, - [SMALL_STATE(2414)] = 71993, - [SMALL_STATE(2415)] = 72066, - [SMALL_STATE(2416)] = 72133, - [SMALL_STATE(2417)] = 72202, - [SMALL_STATE(2418)] = 72269, - [SMALL_STATE(2419)] = 72338, - [SMALL_STATE(2420)] = 72405, - [SMALL_STATE(2421)] = 72482, - [SMALL_STATE(2422)] = 72549, - [SMALL_STATE(2423)] = 72616, - [SMALL_STATE(2424)] = 72695, - [SMALL_STATE(2425)] = 72762, - [SMALL_STATE(2426)] = 72829, - [SMALL_STATE(2427)] = 72896, - [SMALL_STATE(2428)] = 72963, - [SMALL_STATE(2429)] = 73030, - [SMALL_STATE(2430)] = 73097, - [SMALL_STATE(2431)] = 73163, - [SMALL_STATE(2432)] = 73255, - [SMALL_STATE(2433)] = 73321, - [SMALL_STATE(2434)] = 73405, - [SMALL_STATE(2435)] = 73473, - [SMALL_STATE(2436)] = 73553, - [SMALL_STATE(2437)] = 73619, - [SMALL_STATE(2438)] = 73685, - [SMALL_STATE(2439)] = 73751, - [SMALL_STATE(2440)] = 73843, - [SMALL_STATE(2441)] = 73935, - [SMALL_STATE(2442)] = 74027, - [SMALL_STATE(2443)] = 74119, - [SMALL_STATE(2444)] = 74185, - [SMALL_STATE(2445)] = 74251, - [SMALL_STATE(2446)] = 74317, - [SMALL_STATE(2447)] = 74383, - [SMALL_STATE(2448)] = 74475, - [SMALL_STATE(2449)] = 74555, - [SMALL_STATE(2450)] = 74621, - [SMALL_STATE(2451)] = 74713, - [SMALL_STATE(2452)] = 74805, - [SMALL_STATE(2453)] = 74897, - [SMALL_STATE(2454)] = 74977, - [SMALL_STATE(2455)] = 75043, - [SMALL_STATE(2456)] = 75109, - [SMALL_STATE(2457)] = 75199, - [SMALL_STATE(2458)] = 75291, - [SMALL_STATE(2459)] = 75375, - [SMALL_STATE(2460)] = 75443, - [SMALL_STATE(2461)] = 75509, - [SMALL_STATE(2462)] = 75575, - [SMALL_STATE(2463)] = 75641, - [SMALL_STATE(2464)] = 75707, - [SMALL_STATE(2465)] = 75773, - [SMALL_STATE(2466)] = 75857, - [SMALL_STATE(2467)] = 75923, - [SMALL_STATE(2468)] = 76015, - [SMALL_STATE(2469)] = 76095, - [SMALL_STATE(2470)] = 76187, - [SMALL_STATE(2471)] = 76253, - [SMALL_STATE(2472)] = 76333, - [SMALL_STATE(2473)] = 76422, - [SMALL_STATE(2474)] = 76511, - [SMALL_STATE(2475)] = 76600, - [SMALL_STATE(2476)] = 76689, - [SMALL_STATE(2477)] = 76778, - [SMALL_STATE(2478)] = 76843, - [SMALL_STATE(2479)] = 76908, - [SMALL_STATE(2480)] = 76997, - [SMALL_STATE(2481)] = 77062, - [SMALL_STATE(2482)] = 77151, - [SMALL_STATE(2483)] = 77240, - [SMALL_STATE(2484)] = 77329, - [SMALL_STATE(2485)] = 77394, - [SMALL_STATE(2486)] = 77459, - [SMALL_STATE(2487)] = 77524, - [SMALL_STATE(2488)] = 77589, - [SMALL_STATE(2489)] = 77678, - [SMALL_STATE(2490)] = 77743, - [SMALL_STATE(2491)] = 77808, - [SMALL_STATE(2492)] = 77873, - [SMALL_STATE(2493)] = 77962, - [SMALL_STATE(2494)] = 78051, - [SMALL_STATE(2495)] = 78120, - [SMALL_STATE(2496)] = 78209, - [SMALL_STATE(2497)] = 78298, - [SMALL_STATE(2498)] = 78387, - [SMALL_STATE(2499)] = 78452, - [SMALL_STATE(2500)] = 78541, - [SMALL_STATE(2501)] = 78606, - [SMALL_STATE(2502)] = 78671, - [SMALL_STATE(2503)] = 78744, - [SMALL_STATE(2504)] = 78809, - [SMALL_STATE(2505)] = 78898, - [SMALL_STATE(2506)] = 78987, - [SMALL_STATE(2507)] = 79076, - [SMALL_STATE(2508)] = 79149, - [SMALL_STATE(2509)] = 79222, - [SMALL_STATE(2510)] = 79287, - [SMALL_STATE(2511)] = 79360, - [SMALL_STATE(2512)] = 79433, - [SMALL_STATE(2513)] = 79522, - [SMALL_STATE(2514)] = 79611, - [SMALL_STATE(2515)] = 79692, - [SMALL_STATE(2516)] = 79765, - [SMALL_STATE(2517)] = 79838, - [SMALL_STATE(2518)] = 79911, - [SMALL_STATE(2519)] = 79984, - [SMALL_STATE(2520)] = 80057, - [SMALL_STATE(2521)] = 80130, - [SMALL_STATE(2522)] = 80203, - [SMALL_STATE(2523)] = 80276, - [SMALL_STATE(2524)] = 80349, - [SMALL_STATE(2525)] = 80422, - [SMALL_STATE(2526)] = 80495, - [SMALL_STATE(2527)] = 80568, - [SMALL_STATE(2528)] = 80641, - [SMALL_STATE(2529)] = 80714, - [SMALL_STATE(2530)] = 80787, - [SMALL_STATE(2531)] = 80860, - [SMALL_STATE(2532)] = 80933, - [SMALL_STATE(2533)] = 81002, - [SMALL_STATE(2534)] = 81075, - [SMALL_STATE(2535)] = 81164, - [SMALL_STATE(2536)] = 81253, - [SMALL_STATE(2537)] = 81322, - [SMALL_STATE(2538)] = 81411, - [SMALL_STATE(2539)] = 81500, - [SMALL_STATE(2540)] = 81573, - [SMALL_STATE(2541)] = 81646, - [SMALL_STATE(2542)] = 81711, - [SMALL_STATE(2543)] = 81800, - [SMALL_STATE(2544)] = 81889, - [SMALL_STATE(2545)] = 81978, - [SMALL_STATE(2546)] = 82067, - [SMALL_STATE(2547)] = 82156, - [SMALL_STATE(2548)] = 82245, - [SMALL_STATE(2549)] = 82326, - [SMALL_STATE(2550)] = 82395, - [SMALL_STATE(2551)] = 82476, - [SMALL_STATE(2552)] = 82557, - [SMALL_STATE(2553)] = 82630, - [SMALL_STATE(2554)] = 82696, - [SMALL_STATE(2555)] = 82762, - [SMALL_STATE(2556)] = 82830, - [SMALL_STATE(2557)] = 82898, - [SMALL_STATE(2558)] = 82964, - [SMALL_STATE(2559)] = 83028, - [SMALL_STATE(2560)] = 83094, - [SMALL_STATE(2561)] = 83166, - [SMALL_STATE(2562)] = 83236, - [SMALL_STATE(2563)] = 83308, - [SMALL_STATE(2564)] = 83380, - [SMALL_STATE(2565)] = 83450, - [SMALL_STATE(2566)] = 83516, - [SMALL_STATE(2567)] = 83582, - [SMALL_STATE(2568)] = 83645, - [SMALL_STATE(2569)] = 83712, - [SMALL_STATE(2570)] = 83779, - [SMALL_STATE(2571)] = 83842, - [SMALL_STATE(2572)] = 83911, - [SMALL_STATE(2573)] = 83978, - [SMALL_STATE(2574)] = 84041, - [SMALL_STATE(2575)] = 84108, - [SMALL_STATE(2576)] = 84171, - [SMALL_STATE(2577)] = 84238, - [SMALL_STATE(2578)] = 84305, - [SMALL_STATE(2579)] = 84372, - [SMALL_STATE(2580)] = 84439, - [SMALL_STATE(2581)] = 84502, - [SMALL_STATE(2582)] = 84569, - [SMALL_STATE(2583)] = 84632, - [SMALL_STATE(2584)] = 84699, - [SMALL_STATE(2585)] = 84770, - [SMALL_STATE(2586)] = 84833, - [SMALL_STATE(2587)] = 84898, - [SMALL_STATE(2588)] = 84965, - [SMALL_STATE(2589)] = 85032, - [SMALL_STATE(2590)] = 85095, - [SMALL_STATE(2591)] = 85158, - [SMALL_STATE(2592)] = 85225, - [SMALL_STATE(2593)] = 85292, - [SMALL_STATE(2594)] = 85359, - [SMALL_STATE(2595)] = 85426, - [SMALL_STATE(2596)] = 85499, - [SMALL_STATE(2597)] = 85564, - [SMALL_STATE(2598)] = 85629, - [SMALL_STATE(2599)] = 85692, - [SMALL_STATE(2600)] = 85755, - [SMALL_STATE(2601)] = 85822, - [SMALL_STATE(2602)] = 85887, - [SMALL_STATE(2603)] = 85950, - [SMALL_STATE(2604)] = 86013, - [SMALL_STATE(2605)] = 86078, - [SMALL_STATE(2606)] = 86145, - [SMALL_STATE(2607)] = 86218, - [SMALL_STATE(2608)] = 86281, - [SMALL_STATE(2609)] = 86348, - [SMALL_STATE(2610)] = 86411, - [SMALL_STATE(2611)] = 86474, - [SMALL_STATE(2612)] = 86537, - [SMALL_STATE(2613)] = 86608, - [SMALL_STATE(2614)] = 86671, - [SMALL_STATE(2615)] = 86738, - [SMALL_STATE(2616)] = 86801, - [SMALL_STATE(2617)] = 86870, - [SMALL_STATE(2618)] = 86940, - [SMALL_STATE(2619)] = 87002, - [SMALL_STATE(2620)] = 87068, - [SMALL_STATE(2621)] = 87130, - [SMALL_STATE(2622)] = 87192, - [SMALL_STATE(2623)] = 87258, - [SMALL_STATE(2624)] = 87330, - [SMALL_STATE(2625)] = 87394, - [SMALL_STATE(2626)] = 87458, - [SMALL_STATE(2627)] = 87522, - [SMALL_STATE(2628)] = 87584, - [SMALL_STATE(2629)] = 87648, - [SMALL_STATE(2630)] = 87712, - [SMALL_STATE(2631)] = 87774, - [SMALL_STATE(2632)] = 87840, - [SMALL_STATE(2633)] = 87904, - [SMALL_STATE(2634)] = 87968, - [SMALL_STATE(2635)] = 88038, - [SMALL_STATE(2636)] = 88100, - [SMALL_STATE(2637)] = 88164, - [SMALL_STATE(2638)] = 88226, - [SMALL_STATE(2639)] = 88290, - [SMALL_STATE(2640)] = 88352, - [SMALL_STATE(2641)] = 88418, - [SMALL_STATE(2642)] = 88480, - [SMALL_STATE(2643)] = 88544, - [SMALL_STATE(2644)] = 88606, - [SMALL_STATE(2645)] = 88724, - [SMALL_STATE(2646)] = 88794, - [SMALL_STATE(2647)] = 88856, - [SMALL_STATE(2648)] = 88918, - [SMALL_STATE(2649)] = 88980, - [SMALL_STATE(2650)] = 89042, - [SMALL_STATE(2651)] = 89112, - [SMALL_STATE(2652)] = 89182, - [SMALL_STATE(2653)] = 89246, - [SMALL_STATE(2654)] = 89316, - [SMALL_STATE(2655)] = 89378, - [SMALL_STATE(2656)] = 89448, - [SMALL_STATE(2657)] = 89512, - [SMALL_STATE(2658)] = 89582, - [SMALL_STATE(2659)] = 89646, - [SMALL_STATE(2660)] = 89758, - [SMALL_STATE(2661)] = 89820, - [SMALL_STATE(2662)] = 89882, - [SMALL_STATE(2663)] = 89944, - [SMALL_STATE(2664)] = 90062, - [SMALL_STATE(2665)] = 90180, - [SMALL_STATE(2666)] = 90250, - [SMALL_STATE(2667)] = 90312, - [SMALL_STATE(2668)] = 90424, - [SMALL_STATE(2669)] = 90494, - [SMALL_STATE(2670)] = 90608, - [SMALL_STATE(2671)] = 90680, - [SMALL_STATE(2672)] = 90750, - [SMALL_STATE(2673)] = 90820, - [SMALL_STATE(2674)] = 90934, - [SMALL_STATE(2675)] = 91004, - [SMALL_STATE(2676)] = 91066, - [SMALL_STATE(2677)] = 91136, - [SMALL_STATE(2678)] = 91206, - [SMALL_STATE(2679)] = 91276, - [SMALL_STATE(2680)] = 91346, - [SMALL_STATE(2681)] = 91410, - [SMALL_STATE(2682)] = 91472, - [SMALL_STATE(2683)] = 91536, - [SMALL_STATE(2684)] = 91600, - [SMALL_STATE(2685)] = 91670, - [SMALL_STATE(2686)] = 91740, - [SMALL_STATE(2687)] = 91801, - [SMALL_STATE(2688)] = 91862, - [SMALL_STATE(2689)] = 91923, - [SMALL_STATE(2690)] = 91984, - [SMALL_STATE(2691)] = 92045, - [SMALL_STATE(2692)] = 92106, - [SMALL_STATE(2693)] = 92167, - [SMALL_STATE(2694)] = 92236, - [SMALL_STATE(2695)] = 92305, - [SMALL_STATE(2696)] = 92414, - [SMALL_STATE(2697)] = 92475, - [SMALL_STATE(2698)] = 92536, - [SMALL_STATE(2699)] = 92597, - [SMALL_STATE(2700)] = 92658, - [SMALL_STATE(2701)] = 92719, - [SMALL_STATE(2702)] = 92788, - [SMALL_STATE(2703)] = 92849, - [SMALL_STATE(2704)] = 92910, - [SMALL_STATE(2705)] = 93021, - [SMALL_STATE(2706)] = 93130, - [SMALL_STATE(2707)] = 93191, - [SMALL_STATE(2708)] = 93252, - [SMALL_STATE(2709)] = 93313, - [SMALL_STATE(2710)] = 93376, - [SMALL_STATE(2711)] = 93443, - [SMALL_STATE(2712)] = 93504, - [SMALL_STATE(2713)] = 93565, - [SMALL_STATE(2714)] = 93626, - [SMALL_STATE(2715)] = 93687, - [SMALL_STATE(2716)] = 93748, - [SMALL_STATE(2717)] = 93809, - [SMALL_STATE(2718)] = 93870, - [SMALL_STATE(2719)] = 93931, - [SMALL_STATE(2720)] = 93992, - [SMALL_STATE(2721)] = 94053, - [SMALL_STATE(2722)] = 94114, - [SMALL_STATE(2723)] = 94175, - [SMALL_STATE(2724)] = 94236, - [SMALL_STATE(2725)] = 94297, - [SMALL_STATE(2726)] = 94358, - [SMALL_STATE(2727)] = 94419, - [SMALL_STATE(2728)] = 94480, - [SMALL_STATE(2729)] = 94547, - [SMALL_STATE(2730)] = 94658, - [SMALL_STATE(2731)] = 94723, - [SMALL_STATE(2732)] = 94784, - [SMALL_STATE(2733)] = 94853, - [SMALL_STATE(2734)] = 94922, - [SMALL_STATE(2735)] = 94985, - [SMALL_STATE(2736)] = 95046, - [SMALL_STATE(2737)] = 95107, - [SMALL_STATE(2738)] = 95170, - [SMALL_STATE(2739)] = 95239, - [SMALL_STATE(2740)] = 95304, - [SMALL_STATE(2741)] = 95365, - [SMALL_STATE(2742)] = 95426, - [SMALL_STATE(2743)] = 95493, - [SMALL_STATE(2744)] = 95554, - [SMALL_STATE(2745)] = 95617, - [SMALL_STATE(2746)] = 95686, - [SMALL_STATE(2747)] = 95755, - [SMALL_STATE(2748)] = 95816, - [SMALL_STATE(2749)] = 95885, - [SMALL_STATE(2750)] = 95946, - [SMALL_STATE(2751)] = 96015, - [SMALL_STATE(2752)] = 96080, - [SMALL_STATE(2753)] = 96189, - [SMALL_STATE(2754)] = 96256, - [SMALL_STATE(2755)] = 96317, - [SMALL_STATE(2756)] = 96386, - [SMALL_STATE(2757)] = 96451, - [SMALL_STATE(2758)] = 96512, - [SMALL_STATE(2759)] = 96581, - [SMALL_STATE(2760)] = 96644, - [SMALL_STATE(2761)] = 96713, - [SMALL_STATE(2762)] = 96782, - [SMALL_STATE(2763)] = 96847, - [SMALL_STATE(2764)] = 96908, - [SMALL_STATE(2765)] = 96969, - [SMALL_STATE(2766)] = 97030, - [SMALL_STATE(2767)] = 97091, - [SMALL_STATE(2768)] = 97156, - [SMALL_STATE(2769)] = 97217, - [SMALL_STATE(2770)] = 97278, - [SMALL_STATE(2771)] = 97347, - [SMALL_STATE(2772)] = 97416, - [SMALL_STATE(2773)] = 97485, - [SMALL_STATE(2774)] = 97554, - [SMALL_STATE(2775)] = 97615, - [SMALL_STATE(2776)] = 97676, - [SMALL_STATE(2777)] = 97737, - [SMALL_STATE(2778)] = 97798, - [SMALL_STATE(2779)] = 97861, - [SMALL_STATE(2780)] = 97926, - [SMALL_STATE(2781)] = 97995, - [SMALL_STATE(2782)] = 98056, - [SMALL_STATE(2783)] = 98117, - [SMALL_STATE(2784)] = 98178, - [SMALL_STATE(2785)] = 98247, - [SMALL_STATE(2786)] = 98316, - [SMALL_STATE(2787)] = 98425, - [SMALL_STATE(2788)] = 98486, - [SMALL_STATE(2789)] = 98553, - [SMALL_STATE(2790)] = 98613, - [SMALL_STATE(2791)] = 98677, - [SMALL_STATE(2792)] = 98739, - [SMALL_STATE(2793)] = 98799, - [SMALL_STATE(2794)] = 98859, - [SMALL_STATE(2795)] = 98919, - [SMALL_STATE(2796)] = 98983, - [SMALL_STATE(2797)] = 99051, - [SMALL_STATE(2798)] = 99119, - [SMALL_STATE(2799)] = 99185, - [SMALL_STATE(2800)] = 99253, - [SMALL_STATE(2801)] = 99319, - [SMALL_STATE(2802)] = 99387, - [SMALL_STATE(2803)] = 99451, - [SMALL_STATE(2804)] = 99511, - [SMALL_STATE(2805)] = 99571, - [SMALL_STATE(2806)] = 99635, - [SMALL_STATE(2807)] = 99697, - [SMALL_STATE(2808)] = 99757, - [SMALL_STATE(2809)] = 99821, - [SMALL_STATE(2810)] = 99881, - [SMALL_STATE(2811)] = 99945, - [SMALL_STATE(2812)] = 100005, - [SMALL_STATE(2813)] = 100069, - [SMALL_STATE(2814)] = 100129, - [SMALL_STATE(2815)] = 100197, - [SMALL_STATE(2816)] = 100261, - [SMALL_STATE(2817)] = 100325, - [SMALL_STATE(2818)] = 100389, - [SMALL_STATE(2819)] = 100457, - [SMALL_STATE(2820)] = 100517, - [SMALL_STATE(2821)] = 100577, - [SMALL_STATE(2822)] = 100639, - [SMALL_STATE(2823)] = 100703, - [SMALL_STATE(2824)] = 100767, - [SMALL_STATE(2825)] = 100827, - [SMALL_STATE(2826)] = 100895, - [SMALL_STATE(2827)] = 100959, - [SMALL_STATE(2828)] = 101023, - [SMALL_STATE(2829)] = 101091, - [SMALL_STATE(2830)] = 101155, - [SMALL_STATE(2831)] = 101219, - [SMALL_STATE(2832)] = 101279, - [SMALL_STATE(2833)] = 101343, - [SMALL_STATE(2834)] = 101403, - [SMALL_STATE(2835)] = 101467, - [SMALL_STATE(2836)] = 101539, - [SMALL_STATE(2837)] = 101607, - [SMALL_STATE(2838)] = 101675, - [SMALL_STATE(2839)] = 101735, - [SMALL_STATE(2840)] = 101799, - [SMALL_STATE(2841)] = 101867, - [SMALL_STATE(2842)] = 101927, - [SMALL_STATE(2843)] = 101991, - [SMALL_STATE(2844)] = 102055, - [SMALL_STATE(2845)] = 102117, - [SMALL_STATE(2846)] = 102181, - [SMALL_STATE(2847)] = 102249, - [SMALL_STATE(2848)] = 102309, - [SMALL_STATE(2849)] = 102373, - [SMALL_STATE(2850)] = 102437, - [SMALL_STATE(2851)] = 102501, - [SMALL_STATE(2852)] = 102569, - [SMALL_STATE(2853)] = 102637, - [SMALL_STATE(2854)] = 102697, - [SMALL_STATE(2855)] = 102759, - [SMALL_STATE(2856)] = 102818, - [SMALL_STATE(2857)] = 102879, - [SMALL_STATE(2858)] = 102942, - [SMALL_STATE(2859)] = 103001, - [SMALL_STATE(2860)] = 103060, - [SMALL_STATE(2861)] = 103121, - [SMALL_STATE(2862)] = 103182, - [SMALL_STATE(2863)] = 103241, - [SMALL_STATE(2864)] = 103300, - [SMALL_STATE(2865)] = 103361, - [SMALL_STATE(2866)] = 103420, - [SMALL_STATE(2867)] = 103479, - [SMALL_STATE(2868)] = 103538, - [SMALL_STATE(2869)] = 103597, - [SMALL_STATE(2870)] = 103656, - [SMALL_STATE(2871)] = 103717, - [SMALL_STATE(2872)] = 103778, - [SMALL_STATE(2873)] = 103837, - [SMALL_STATE(2874)] = 103896, - [SMALL_STATE(2875)] = 103955, - [SMALL_STATE(2876)] = 104014, - [SMALL_STATE(2877)] = 104073, - [SMALL_STATE(2878)] = 104132, - [SMALL_STATE(2879)] = 104191, - [SMALL_STATE(2880)] = 104254, - [SMALL_STATE(2881)] = 104313, - [SMALL_STATE(2882)] = 104372, - [SMALL_STATE(2883)] = 104431, - [SMALL_STATE(2884)] = 104494, - [SMALL_STATE(2885)] = 104553, - [SMALL_STATE(2886)] = 104614, - [SMALL_STATE(2887)] = 104673, - [SMALL_STATE(2888)] = 104732, - [SMALL_STATE(2889)] = 104803, - [SMALL_STATE(2890)] = 104864, - [SMALL_STATE(2891)] = 104923, - [SMALL_STATE(2892)] = 104982, - [SMALL_STATE(2893)] = 105045, - [SMALL_STATE(2894)] = 105104, - [SMALL_STATE(2895)] = 105165, - [SMALL_STATE(2896)] = 105228, - [SMALL_STATE(2897)] = 105289, - [SMALL_STATE(2898)] = 105348, - [SMALL_STATE(2899)] = 105407, - [SMALL_STATE(2900)] = 105466, - [SMALL_STATE(2901)] = 105525, - [SMALL_STATE(2902)] = 105584, - [SMALL_STATE(2903)] = 105643, - [SMALL_STATE(2904)] = 105704, - [SMALL_STATE(2905)] = 105763, - [SMALL_STATE(2906)] = 105822, - [SMALL_STATE(2907)] = 105881, - [SMALL_STATE(2908)] = 105940, - [SMALL_STATE(2909)] = 105999, - [SMALL_STATE(2910)] = 106062, - [SMALL_STATE(2911)] = 106123, - [SMALL_STATE(2912)] = 106184, - [SMALL_STATE(2913)] = 106243, - [SMALL_STATE(2914)] = 106302, - [SMALL_STATE(2915)] = 106361, - [SMALL_STATE(2916)] = 106420, - [SMALL_STATE(2917)] = 106479, - [SMALL_STATE(2918)] = 106552, - [SMALL_STATE(2919)] = 106611, - [SMALL_STATE(2920)] = 106670, - [SMALL_STATE(2921)] = 106729, - [SMALL_STATE(2922)] = 106788, - [SMALL_STATE(2923)] = 106849, - [SMALL_STATE(2924)] = 106908, - [SMALL_STATE(2925)] = 106967, - [SMALL_STATE(2926)] = 107026, - [SMALL_STATE(2927)] = 107085, - [SMALL_STATE(2928)] = 107144, - [SMALL_STATE(2929)] = 107204, - [SMALL_STATE(2930)] = 107270, - [SMALL_STATE(2931)] = 107328, - [SMALL_STATE(2932)] = 107386, - [SMALL_STATE(2933)] = 107446, - [SMALL_STATE(2934)] = 107506, - [SMALL_STATE(2935)] = 107564, - [SMALL_STATE(2936)] = 107622, - [SMALL_STATE(2937)] = 107680, - [SMALL_STATE(2938)] = 107740, - [SMALL_STATE(2939)] = 107798, - [SMALL_STATE(2940)] = 107856, - [SMALL_STATE(2941)] = 107914, - [SMALL_STATE(2942)] = 107972, - [SMALL_STATE(2943)] = 108032, - [SMALL_STATE(2944)] = 108090, - [SMALL_STATE(2945)] = 108148, - [SMALL_STATE(2946)] = 108206, - [SMALL_STATE(2947)] = 108266, - [SMALL_STATE(2948)] = 108326, - [SMALL_STATE(2949)] = 108384, - [SMALL_STATE(2950)] = 108442, - [SMALL_STATE(2951)] = 108502, - [SMALL_STATE(2952)] = 108562, - [SMALL_STATE(2953)] = 108620, - [SMALL_STATE(2954)] = 108680, - [SMALL_STATE(2955)] = 108738, - [SMALL_STATE(2956)] = 108796, - [SMALL_STATE(2957)] = 108856, - [SMALL_STATE(2958)] = 108916, - [SMALL_STATE(2959)] = 108976, - [SMALL_STATE(2960)] = 109034, - [SMALL_STATE(2961)] = 109092, - [SMALL_STATE(2962)] = 109150, - [SMALL_STATE(2963)] = 109208, - [SMALL_STATE(2964)] = 109266, - [SMALL_STATE(2965)] = 109326, - [SMALL_STATE(2966)] = 109386, - [SMALL_STATE(2967)] = 109446, - [SMALL_STATE(2968)] = 109504, - [SMALL_STATE(2969)] = 109564, - [SMALL_STATE(2970)] = 109622, - [SMALL_STATE(2971)] = 109680, - [SMALL_STATE(2972)] = 109738, - [SMALL_STATE(2973)] = 109796, - [SMALL_STATE(2974)] = 109854, - [SMALL_STATE(2975)] = 109914, - [SMALL_STATE(2976)] = 109972, - [SMALL_STATE(2977)] = 110030, - [SMALL_STATE(2978)] = 110090, - [SMALL_STATE(2979)] = 110148, - [SMALL_STATE(2980)] = 110206, - [SMALL_STATE(2981)] = 110266, - [SMALL_STATE(2982)] = 110326, - [SMALL_STATE(2983)] = 110386, - [SMALL_STATE(2984)] = 110443, - [SMALL_STATE(2985)] = 110500, - [SMALL_STATE(2986)] = 110557, - [SMALL_STATE(2987)] = 110614, - [SMALL_STATE(2988)] = 110671, - [SMALL_STATE(2989)] = 110728, - [SMALL_STATE(2990)] = 110785, - [SMALL_STATE(2991)] = 110842, - [SMALL_STATE(2992)] = 110899, - [SMALL_STATE(2993)] = 110956, - [SMALL_STATE(2994)] = 111013, - [SMALL_STATE(2995)] = 111070, - [SMALL_STATE(2996)] = 111127, - [SMALL_STATE(2997)] = 111184, - [SMALL_STATE(2998)] = 111241, - [SMALL_STATE(2999)] = 111298, - [SMALL_STATE(3000)] = 111355, - [SMALL_STATE(3001)] = 111412, - [SMALL_STATE(3002)] = 111469, - [SMALL_STATE(3003)] = 111526, - [SMALL_STATE(3004)] = 111583, - [SMALL_STATE(3005)] = 111640, - [SMALL_STATE(3006)] = 111697, - [SMALL_STATE(3007)] = 111762, - [SMALL_STATE(3008)] = 111819, - [SMALL_STATE(3009)] = 111876, - [SMALL_STATE(3010)] = 111933, - [SMALL_STATE(3011)] = 111990, - [SMALL_STATE(3012)] = 112047, - [SMALL_STATE(3013)] = 112114, - [SMALL_STATE(3014)] = 112171, - [SMALL_STATE(3015)] = 112228, - [SMALL_STATE(3016)] = 112285, - [SMALL_STATE(3017)] = 112342, - [SMALL_STATE(3018)] = 112399, - [SMALL_STATE(3019)] = 112456, - [SMALL_STATE(3020)] = 112513, - [SMALL_STATE(3021)] = 112570, - [SMALL_STATE(3022)] = 112627, - [SMALL_STATE(3023)] = 112684, - [SMALL_STATE(3024)] = 112741, - [SMALL_STATE(3025)] = 112798, - [SMALL_STATE(3026)] = 112855, - [SMALL_STATE(3027)] = 112912, - [SMALL_STATE(3028)] = 112969, - [SMALL_STATE(3029)] = 113026, - [SMALL_STATE(3030)] = 113083, - [SMALL_STATE(3031)] = 113140, - [SMALL_STATE(3032)] = 113197, - [SMALL_STATE(3033)] = 113254, - [SMALL_STATE(3034)] = 113311, - [SMALL_STATE(3035)] = 113368, - [SMALL_STATE(3036)] = 113425, - [SMALL_STATE(3037)] = 113482, - [SMALL_STATE(3038)] = 113539, - [SMALL_STATE(3039)] = 113596, - [SMALL_STATE(3040)] = 113653, - [SMALL_STATE(3041)] = 113710, - [SMALL_STATE(3042)] = 113767, - [SMALL_STATE(3043)] = 113824, - [SMALL_STATE(3044)] = 113881, - [SMALL_STATE(3045)] = 113938, - [SMALL_STATE(3046)] = 113995, - [SMALL_STATE(3047)] = 114052, - [SMALL_STATE(3048)] = 114109, - [SMALL_STATE(3049)] = 114166, - [SMALL_STATE(3050)] = 114223, - [SMALL_STATE(3051)] = 114280, - [SMALL_STATE(3052)] = 114337, - [SMALL_STATE(3053)] = 114396, - [SMALL_STATE(3054)] = 114453, - [SMALL_STATE(3055)] = 114510, - [SMALL_STATE(3056)] = 114567, - [SMALL_STATE(3057)] = 114643, - [SMALL_STATE(3058)] = 114719, - [SMALL_STATE(3059)] = 114783, - [SMALL_STATE(3060)] = 114839, - [SMALL_STATE(3061)] = 114895, - [SMALL_STATE(3062)] = 114951, - [SMALL_STATE(3063)] = 115027, - [SMALL_STATE(3064)] = 115103, - [SMALL_STATE(3065)] = 115165, - [SMALL_STATE(3066)] = 115241, - [SMALL_STATE(3067)] = 115317, - [SMALL_STATE(3068)] = 115393, - [SMALL_STATE(3069)] = 115469, - [SMALL_STATE(3070)] = 115545, - [SMALL_STATE(3071)] = 115621, - [SMALL_STATE(3072)] = 115693, - [SMALL_STATE(3073)] = 115769, - [SMALL_STATE(3074)] = 115845, - [SMALL_STATE(3075)] = 115921, - [SMALL_STATE(3076)] = 115997, - [SMALL_STATE(3077)] = 116073, - [SMALL_STATE(3078)] = 116149, - [SMALL_STATE(3079)] = 116205, - [SMALL_STATE(3080)] = 116274, - [SMALL_STATE(3081)] = 116339, - [SMALL_STATE(3082)] = 116402, - [SMALL_STATE(3083)] = 116471, - [SMALL_STATE(3084)] = 116540, - [SMALL_STATE(3085)] = 116609, - [SMALL_STATE(3086)] = 116663, - [SMALL_STATE(3087)] = 116723, - [SMALL_STATE(3088)] = 116793, - [SMALL_STATE(3089)] = 116849, - [SMALL_STATE(3090)] = 116905, - [SMALL_STATE(3091)] = 116963, - [SMALL_STATE(3092)] = 117017, - [SMALL_STATE(3093)] = 117073, - [SMALL_STATE(3094)] = 117129, - [SMALL_STATE(3095)] = 117196, - [SMALL_STATE(3096)] = 117253, - [SMALL_STATE(3097)] = 117306, - [SMALL_STATE(3098)] = 117359, - [SMALL_STATE(3099)] = 117414, - [SMALL_STATE(3100)] = 117467, - [SMALL_STATE(3101)] = 117520, - [SMALL_STATE(3102)] = 117577, - [SMALL_STATE(3103)] = 117634, - [SMALL_STATE(3104)] = 117691, - [SMALL_STATE(3105)] = 117744, - [SMALL_STATE(3106)] = 117813, - [SMALL_STATE(3107)] = 117868, - [SMALL_STATE(3108)] = 117929, - [SMALL_STATE(3109)] = 117990, - [SMALL_STATE(3110)] = 118045, - [SMALL_STATE(3111)] = 118102, - [SMALL_STATE(3112)] = 118157, - [SMALL_STATE(3113)] = 118214, - [SMALL_STATE(3114)] = 118269, - [SMALL_STATE(3115)] = 118324, - [SMALL_STATE(3116)] = 118377, - [SMALL_STATE(3117)] = 118430, - [SMALL_STATE(3118)] = 118483, - [SMALL_STATE(3119)] = 118536, - [SMALL_STATE(3120)] = 118589, - [SMALL_STATE(3121)] = 118642, - [SMALL_STATE(3122)] = 118696, - [SMALL_STATE(3123)] = 118748, - [SMALL_STATE(3124)] = 118800, - [SMALL_STATE(3125)] = 118852, - [SMALL_STATE(3126)] = 118906, - [SMALL_STATE(3127)] = 118960, - [SMALL_STATE(3128)] = 119026, - [SMALL_STATE(3129)] = 119080, - [SMALL_STATE(3130)] = 119134, - [SMALL_STATE(3131)] = 119186, - [SMALL_STATE(3132)] = 119240, - [SMALL_STATE(3133)] = 119294, - [SMALL_STATE(3134)] = 119358, - [SMALL_STATE(3135)] = 119408, - [SMALL_STATE(3136)] = 119460, - [SMALL_STATE(3137)] = 119510, - [SMALL_STATE(3138)] = 119574, - [SMALL_STATE(3139)] = 119628, - [SMALL_STATE(3140)] = 119680, - [SMALL_STATE(3141)] = 119734, - [SMALL_STATE(3142)] = 119790, - [SMALL_STATE(3143)] = 119852, - [SMALL_STATE(3144)] = 119916, - [SMALL_STATE(3145)] = 119982, - [SMALL_STATE(3146)] = 120050, - [SMALL_STATE(3147)] = 120120, - [SMALL_STATE(3148)] = 120192, - [SMALL_STATE(3149)] = 120266, - [SMALL_STATE(3150)] = 120326, - [SMALL_STATE(3151)] = 120384, - [SMALL_STATE(3152)] = 120440, - [SMALL_STATE(3153)] = 120498, - [SMALL_STATE(3154)] = 120558, - [SMALL_STATE(3155)] = 120624, - [SMALL_STATE(3156)] = 120692, - [SMALL_STATE(3157)] = 120762, - [SMALL_STATE(3158)] = 120834, - [SMALL_STATE(3159)] = 120908, - [SMALL_STATE(3160)] = 120984, - [SMALL_STATE(3161)] = 121062, - [SMALL_STATE(3162)] = 121126, - [SMALL_STATE(3163)] = 121188, - [SMALL_STATE(3164)] = 121252, - [SMALL_STATE(3165)] = 121308, - [SMALL_STATE(3166)] = 121364, - [SMALL_STATE(3167)] = 121422, - [SMALL_STATE(3168)] = 121480, - [SMALL_STATE(3169)] = 121540, - [SMALL_STATE(3170)] = 121600, - [SMALL_STATE(3171)] = 121666, - [SMALL_STATE(3172)] = 121732, - [SMALL_STATE(3173)] = 121800, - [SMALL_STATE(3174)] = 121868, - [SMALL_STATE(3175)] = 121938, - [SMALL_STATE(3176)] = 122008, - [SMALL_STATE(3177)] = 122080, - [SMALL_STATE(3178)] = 122152, - [SMALL_STATE(3179)] = 122226, - [SMALL_STATE(3180)] = 122300, - [SMALL_STATE(3181)] = 122376, - [SMALL_STATE(3182)] = 122452, - [SMALL_STATE(3183)] = 122530, - [SMALL_STATE(3184)] = 122608, - [SMALL_STATE(3185)] = 122672, - [SMALL_STATE(3186)] = 122736, - [SMALL_STATE(3187)] = 122798, - [SMALL_STATE(3188)] = 122860, - [SMALL_STATE(3189)] = 122916, - [SMALL_STATE(3190)] = 122974, - [SMALL_STATE(3191)] = 123034, - [SMALL_STATE(3192)] = 123100, - [SMALL_STATE(3193)] = 123168, - [SMALL_STATE(3194)] = 123238, - [SMALL_STATE(3195)] = 123310, - [SMALL_STATE(3196)] = 123384, - [SMALL_STATE(3197)] = 123460, - [SMALL_STATE(3198)] = 123512, - [SMALL_STATE(3199)] = 123576, - [SMALL_STATE(3200)] = 123638, - [SMALL_STATE(3201)] = 123694, - [SMALL_STATE(3202)] = 123752, - [SMALL_STATE(3203)] = 123812, - [SMALL_STATE(3204)] = 123878, - [SMALL_STATE(3205)] = 123946, - [SMALL_STATE(3206)] = 124016, - [SMALL_STATE(3207)] = 124088, - [SMALL_STATE(3208)] = 124162, - [SMALL_STATE(3209)] = 124238, - [SMALL_STATE(3210)] = 124316, - [SMALL_STATE(3211)] = 124380, - [SMALL_STATE(3212)] = 124442, - [SMALL_STATE(3213)] = 124498, - [SMALL_STATE(3214)] = 124554, - [SMALL_STATE(3215)] = 124612, - [SMALL_STATE(3216)] = 124670, - [SMALL_STATE(3217)] = 124730, - [SMALL_STATE(3218)] = 124790, - [SMALL_STATE(3219)] = 124856, - [SMALL_STATE(3220)] = 124922, - [SMALL_STATE(3221)] = 124990, - [SMALL_STATE(3222)] = 125058, - [SMALL_STATE(3223)] = 125128, - [SMALL_STATE(3224)] = 125198, - [SMALL_STATE(3225)] = 125270, - [SMALL_STATE(3226)] = 125342, - [SMALL_STATE(3227)] = 125416, - [SMALL_STATE(3228)] = 125490, - [SMALL_STATE(3229)] = 125566, - [SMALL_STATE(3230)] = 125642, - [SMALL_STATE(3231)] = 125720, - [SMALL_STATE(3232)] = 125798, - [SMALL_STATE(3233)] = 125862, - [SMALL_STATE(3234)] = 125926, - [SMALL_STATE(3235)] = 125988, - [SMALL_STATE(3236)] = 126050, - [SMALL_STATE(3237)] = 126106, - [SMALL_STATE(3238)] = 126164, - [SMALL_STATE(3239)] = 126224, - [SMALL_STATE(3240)] = 126290, - [SMALL_STATE(3241)] = 126358, - [SMALL_STATE(3242)] = 126428, - [SMALL_STATE(3243)] = 126500, - [SMALL_STATE(3244)] = 126574, - [SMALL_STATE(3245)] = 126650, - [SMALL_STATE(3246)] = 126728, - [SMALL_STATE(3247)] = 126792, - [SMALL_STATE(3248)] = 126854, - [SMALL_STATE(3249)] = 126920, - [SMALL_STATE(3250)] = 126984, - [SMALL_STATE(3251)] = 127036, - [SMALL_STATE(3252)] = 127088, - [SMALL_STATE(3253)] = 127138, - [SMALL_STATE(3254)] = 127188, - [SMALL_STATE(3255)] = 127240, - [SMALL_STATE(3256)] = 127292, - [SMALL_STATE(3257)] = 127342, - [SMALL_STATE(3258)] = 127392, - [SMALL_STATE(3259)] = 127470, - [SMALL_STATE(3260)] = 127521, - [SMALL_STATE(3261)] = 127582, - [SMALL_STATE(3262)] = 127633, - [SMALL_STATE(3263)] = 127684, - [SMALL_STATE(3264)] = 127739, - [SMALL_STATE(3265)] = 127790, - [SMALL_STATE(3266)] = 127845, - [SMALL_STATE(3267)] = 127906, - [SMALL_STATE(3268)] = 127955, - [SMALL_STATE(3269)] = 128004, - [SMALL_STATE(3270)] = 128065, - [SMALL_STATE(3271)] = 128114, - [SMALL_STATE(3272)] = 128167, - [SMALL_STATE(3273)] = 128218, - [SMALL_STATE(3274)] = 128269, - [SMALL_STATE(3275)] = 128330, - [SMALL_STATE(3276)] = 128391, - [SMALL_STATE(3277)] = 128452, - [SMALL_STATE(3278)] = 128503, - [SMALL_STATE(3279)] = 128556, - [SMALL_STATE(3280)] = 128611, - [SMALL_STATE(3281)] = 128672, - [SMALL_STATE(3282)] = 128735, - [SMALL_STATE(3283)] = 128800, - [SMALL_STATE(3284)] = 128861, - [SMALL_STATE(3285)] = 128928, - [SMALL_STATE(3286)] = 128997, - [SMALL_STATE(3287)] = 129058, - [SMALL_STATE(3288)] = 129129, - [SMALL_STATE(3289)] = 129202, - [SMALL_STATE(3290)] = 129261, - [SMALL_STATE(3291)] = 129320, - [SMALL_STATE(3292)] = 129377, - [SMALL_STATE(3293)] = 129438, - [SMALL_STATE(3294)] = 129489, - [SMALL_STATE(3295)] = 129550, - [SMALL_STATE(3296)] = 129636, - [SMALL_STATE(3297)] = 129690, - [SMALL_STATE(3298)] = 129744, - [SMALL_STATE(3299)] = 129798, - [SMALL_STATE(3300)] = 129852, - [SMALL_STATE(3301)] = 129916, - [SMALL_STATE(3302)] = 129970, - [SMALL_STATE(3303)] = 130056, - [SMALL_STATE(3304)] = 130114, - [SMALL_STATE(3305)] = 130168, - [SMALL_STATE(3306)] = 130220, - [SMALL_STATE(3307)] = 130274, - [SMALL_STATE(3308)] = 130326, - [SMALL_STATE(3309)] = 130384, - [SMALL_STATE(3310)] = 130442, - [SMALL_STATE(3311)] = 130495, - [SMALL_STATE(3312)] = 130560, - [SMALL_STATE(3313)] = 130611, - [SMALL_STATE(3314)] = 130662, - [SMALL_STATE(3315)] = 130725, - [SMALL_STATE(3316)] = 130774, - [SMALL_STATE(3317)] = 130825, - [SMALL_STATE(3318)] = 130880, - [SMALL_STATE(3319)] = 130935, - [SMALL_STATE(3320)] = 130988, - [SMALL_STATE(3321)] = 131043, - [SMALL_STATE(3322)] = 131096, - [SMALL_STATE(3323)] = 131149, - [SMALL_STATE(3324)] = 131200, - [SMALL_STATE(3325)] = 131251, - [SMALL_STATE(3326)] = 131300, - [SMALL_STATE(3327)] = 131351, - [SMALL_STATE(3328)] = 131404, - [SMALL_STATE(3329)] = 131487, - [SMALL_STATE(3330)] = 131570, - [SMALL_STATE(3331)] = 131635, - [SMALL_STATE(3332)] = 131688, - [SMALL_STATE(3333)] = 131741, - [SMALL_STATE(3334)] = 131790, - [SMALL_STATE(3335)] = 131839, - [SMALL_STATE(3336)] = 131894, - [SMALL_STATE(3337)] = 131949, - [SMALL_STATE(3338)] = 132009, - [SMALL_STATE(3339)] = 132057, - [SMALL_STATE(3340)] = 132109, - [SMALL_STATE(3341)] = 132157, - [SMALL_STATE(3342)] = 132205, - [SMALL_STATE(3343)] = 132253, - [SMALL_STATE(3344)] = 132301, - [SMALL_STATE(3345)] = 132349, - [SMALL_STATE(3346)] = 132397, - [SMALL_STATE(3347)] = 132445, - [SMALL_STATE(3348)] = 132493, - [SMALL_STATE(3349)] = 132541, - [SMALL_STATE(3350)] = 132589, - [SMALL_STATE(3351)] = 132639, - [SMALL_STATE(3352)] = 132689, - [SMALL_STATE(3353)] = 132737, - [SMALL_STATE(3354)] = 132785, - [SMALL_STATE(3355)] = 132833, - [SMALL_STATE(3356)] = 132881, - [SMALL_STATE(3357)] = 132929, - [SMALL_STATE(3358)] = 132981, - [SMALL_STATE(3359)] = 133029, - [SMALL_STATE(3360)] = 133077, - [SMALL_STATE(3361)] = 133125, - [SMALL_STATE(3362)] = 133187, - [SMALL_STATE(3363)] = 133249, - [SMALL_STATE(3364)] = 133311, - [SMALL_STATE(3365)] = 133373, - [SMALL_STATE(3366)] = 133421, - [SMALL_STATE(3367)] = 133469, - [SMALL_STATE(3368)] = 133517, - [SMALL_STATE(3369)] = 133565, - [SMALL_STATE(3370)] = 133613, - [SMALL_STATE(3371)] = 133671, - [SMALL_STATE(3372)] = 133721, - [SMALL_STATE(3373)] = 133773, - [SMALL_STATE(3374)] = 133835, - [SMALL_STATE(3375)] = 133887, - [SMALL_STATE(3376)] = 133947, - [SMALL_STATE(3377)] = 133997, - [SMALL_STATE(3378)] = 134059, - [SMALL_STATE(3379)] = 134107, - [SMALL_STATE(3380)] = 134155, - [SMALL_STATE(3381)] = 134203, - [SMALL_STATE(3382)] = 134251, - [SMALL_STATE(3383)] = 134299, - [SMALL_STATE(3384)] = 134347, - [SMALL_STATE(3385)] = 134395, - [SMALL_STATE(3386)] = 134450, - [SMALL_STATE(3387)] = 134497, - [SMALL_STATE(3388)] = 134544, - [SMALL_STATE(3389)] = 134599, - [SMALL_STATE(3390)] = 134646, - [SMALL_STATE(3391)] = 134701, - [SMALL_STATE(3392)] = 134756, - [SMALL_STATE(3393)] = 134811, - [SMALL_STATE(3394)] = 134858, - [SMALL_STATE(3395)] = 134913, - [SMALL_STATE(3396)] = 134968, - [SMALL_STATE(3397)] = 135015, - [SMALL_STATE(3398)] = 135070, - [SMALL_STATE(3399)] = 135125, - [SMALL_STATE(3400)] = 135180, - [SMALL_STATE(3401)] = 135235, - [SMALL_STATE(3402)] = 135282, - [SMALL_STATE(3403)] = 135337, - [SMALL_STATE(3404)] = 135392, - [SMALL_STATE(3405)] = 135447, - [SMALL_STATE(3406)] = 135498, - [SMALL_STATE(3407)] = 135553, - [SMALL_STATE(3408)] = 135604, - [SMALL_STATE(3409)] = 135659, - [SMALL_STATE(3410)] = 135708, - [SMALL_STATE(3411)] = 135763, - [SMALL_STATE(3412)] = 135818, - [SMALL_STATE(3413)] = 135873, - [SMALL_STATE(3414)] = 135920, - [SMALL_STATE(3415)] = 135975, - [SMALL_STATE(3416)] = 136030, - [SMALL_STATE(3417)] = 136085, - [SMALL_STATE(3418)] = 136140, - [SMALL_STATE(3419)] = 136187, - [SMALL_STATE(3420)] = 136242, - [SMALL_STATE(3421)] = 136297, - [SMALL_STATE(3422)] = 136347, - [SMALL_STATE(3423)] = 136401, - [SMALL_STATE(3424)] = 136455, - [SMALL_STATE(3425)] = 136509, - [SMALL_STATE(3426)] = 136563, - [SMALL_STATE(3427)] = 136611, - [SMALL_STATE(3428)] = 136657, - [SMALL_STATE(3429)] = 136711, - [SMALL_STATE(3430)] = 136765, - [SMALL_STATE(3431)] = 136819, - [SMALL_STATE(3432)] = 136873, - [SMALL_STATE(3433)] = 136927, - [SMALL_STATE(3434)] = 136975, - [SMALL_STATE(3435)] = 137029, - [SMALL_STATE(3436)] = 137083, - [SMALL_STATE(3437)] = 137137, - [SMALL_STATE(3438)] = 137183, - [SMALL_STATE(3439)] = 137233, - [SMALL_STATE(3440)] = 137287, - [SMALL_STATE(3441)] = 137333, - [SMALL_STATE(3442)] = 137387, - [SMALL_STATE(3443)] = 137439, - [SMALL_STATE(3444)] = 137493, - [SMALL_STATE(3445)] = 137547, - [SMALL_STATE(3446)] = 137601, - [SMALL_STATE(3447)] = 137655, - [SMALL_STATE(3448)] = 137705, - [SMALL_STATE(3449)] = 137759, - [SMALL_STATE(3450)] = 137813, - [SMALL_STATE(3451)] = 137867, - [SMALL_STATE(3452)] = 137921, - [SMALL_STATE(3453)] = 137975, - [SMALL_STATE(3454)] = 138029, - [SMALL_STATE(3455)] = 138080, - [SMALL_STATE(3456)] = 138131, - [SMALL_STATE(3457)] = 138180, - [SMALL_STATE(3458)] = 138225, - [SMALL_STATE(3459)] = 138270, - [SMALL_STATE(3460)] = 138315, - [SMALL_STATE(3461)] = 138360, - [SMALL_STATE(3462)] = 138405, - [SMALL_STATE(3463)] = 138450, - [SMALL_STATE(3464)] = 138501, - [SMALL_STATE(3465)] = 138552, - [SMALL_STATE(3466)] = 138600, - [SMALL_STATE(3467)] = 138644, - [SMALL_STATE(3468)] = 138692, - [SMALL_STATE(3469)] = 138740, - [SMALL_STATE(3470)] = 138788, - [SMALL_STATE(3471)] = 138836, - [SMALL_STATE(3472)] = 138880, - [SMALL_STATE(3473)] = 138924, - [SMALL_STATE(3474)] = 138968, - [SMALL_STATE(3475)] = 139012, - [SMALL_STATE(3476)] = 139056, - [SMALL_STATE(3477)] = 139102, - [SMALL_STATE(3478)] = 139148, - [SMALL_STATE(3479)] = 139198, - [SMALL_STATE(3480)] = 139242, - [SMALL_STATE(3481)] = 139290, - [SMALL_STATE(3482)] = 139340, - [SMALL_STATE(3483)] = 139388, - [SMALL_STATE(3484)] = 139438, - [SMALL_STATE(3485)] = 139482, - [SMALL_STATE(3486)] = 139526, - [SMALL_STATE(3487)] = 139570, - [SMALL_STATE(3488)] = 139618, - [SMALL_STATE(3489)] = 139663, - [SMALL_STATE(3490)] = 139708, - [SMALL_STATE(3491)] = 139753, - [SMALL_STATE(3492)] = 139796, - [SMALL_STATE(3493)] = 139839, - [SMALL_STATE(3494)] = 139884, - [SMALL_STATE(3495)] = 139927, - [SMALL_STATE(3496)] = 139974, - [SMALL_STATE(3497)] = 140021, - [SMALL_STATE(3498)] = 140068, - [SMALL_STATE(3499)] = 140113, - [SMALL_STATE(3500)] = 140202, - [SMALL_STATE(3501)] = 140249, - [SMALL_STATE(3502)] = 140292, - [SMALL_STATE(3503)] = 140339, - [SMALL_STATE(3504)] = 140386, - [SMALL_STATE(3505)] = 140429, - [SMALL_STATE(3506)] = 140474, - [SMALL_STATE(3507)] = 140525, - [SMALL_STATE(3508)] = 140576, - [SMALL_STATE(3509)] = 140621, - [SMALL_STATE(3510)] = 140664, - [SMALL_STATE(3511)] = 140707, - [SMALL_STATE(3512)] = 140750, - [SMALL_STATE(3513)] = 140797, - [SMALL_STATE(3514)] = 140840, - [SMALL_STATE(3515)] = 140885, - [SMALL_STATE(3516)] = 140930, - [SMALL_STATE(3517)] = 140975, - [SMALL_STATE(3518)] = 141064, - [SMALL_STATE(3519)] = 141111, - [SMALL_STATE(3520)] = 141156, - [SMALL_STATE(3521)] = 141203, - [SMALL_STATE(3522)] = 141248, - [SMALL_STATE(3523)] = 141293, - [SMALL_STATE(3524)] = 141349, - [SMALL_STATE(3525)] = 141393, - [SMALL_STATE(3526)] = 141435, - [SMALL_STATE(3527)] = 141477, - [SMALL_STATE(3528)] = 141519, - [SMALL_STATE(3529)] = 141569, - [SMALL_STATE(3530)] = 141615, - [SMALL_STATE(3531)] = 141661, - [SMALL_STATE(3532)] = 141703, - [SMALL_STATE(3533)] = 141745, - [SMALL_STATE(3534)] = 141787, - [SMALL_STATE(3535)] = 141829, - [SMALL_STATE(3536)] = 141871, - [SMALL_STATE(3537)] = 141917, - [SMALL_STATE(3538)] = 141963, - [SMALL_STATE(3539)] = 142009, - [SMALL_STATE(3540)] = 142055, - [SMALL_STATE(3541)] = 142097, - [SMALL_STATE(3542)] = 142139, - [SMALL_STATE(3543)] = 142181, - [SMALL_STATE(3544)] = 142223, - [SMALL_STATE(3545)] = 142265, - [SMALL_STATE(3546)] = 142307, - [SMALL_STATE(3547)] = 142349, - [SMALL_STATE(3548)] = 142393, - [SMALL_STATE(3549)] = 142437, - [SMALL_STATE(3550)] = 142483, - [SMALL_STATE(3551)] = 142531, - [SMALL_STATE(3552)] = 142581, - [SMALL_STATE(3553)] = 142637, - [SMALL_STATE(3554)] = 142695, - [SMALL_STATE(3555)] = 142755, - [SMALL_STATE(3556)] = 142817, - [SMALL_STATE(3557)] = 142881, - [SMALL_STATE(3558)] = 142947, - [SMALL_STATE(3559)] = 143015, - [SMALL_STATE(3560)] = 143069, - [SMALL_STATE(3561)] = 143121, - [SMALL_STATE(3562)] = 143163, - [SMALL_STATE(3563)] = 143209, - [SMALL_STATE(3564)] = 143255, - [SMALL_STATE(3565)] = 143303, - [SMALL_STATE(3566)] = 143351, - [SMALL_STATE(3567)] = 143401, - [SMALL_STATE(3568)] = 143451, - [SMALL_STATE(3569)] = 143507, - [SMALL_STATE(3570)] = 143563, - [SMALL_STATE(3571)] = 143621, - [SMALL_STATE(3572)] = 143679, - [SMALL_STATE(3573)] = 143739, - [SMALL_STATE(3574)] = 143799, - [SMALL_STATE(3575)] = 143861, - [SMALL_STATE(3576)] = 143923, - [SMALL_STATE(3577)] = 143987, - [SMALL_STATE(3578)] = 144051, - [SMALL_STATE(3579)] = 144117, - [SMALL_STATE(3580)] = 144183, - [SMALL_STATE(3581)] = 144251, - [SMALL_STATE(3582)] = 144319, - [SMALL_STATE(3583)] = 144373, - [SMALL_STATE(3584)] = 144427, - [SMALL_STATE(3585)] = 144479, - [SMALL_STATE(3586)] = 144531, - [SMALL_STATE(3587)] = 144577, - [SMALL_STATE(3588)] = 144625, - [SMALL_STATE(3589)] = 144675, - [SMALL_STATE(3590)] = 144731, - [SMALL_STATE(3591)] = 144789, - [SMALL_STATE(3592)] = 144849, - [SMALL_STATE(3593)] = 144911, - [SMALL_STATE(3594)] = 144975, - [SMALL_STATE(3595)] = 145041, - [SMALL_STATE(3596)] = 145109, - [SMALL_STATE(3597)] = 145163, - [SMALL_STATE(3598)] = 145215, - [SMALL_STATE(3599)] = 145261, - [SMALL_STATE(3600)] = 145309, - [SMALL_STATE(3601)] = 145359, - [SMALL_STATE(3602)] = 145415, - [SMALL_STATE(3603)] = 145473, - [SMALL_STATE(3604)] = 145533, - [SMALL_STATE(3605)] = 145595, - [SMALL_STATE(3606)] = 145659, - [SMALL_STATE(3607)] = 145725, - [SMALL_STATE(3608)] = 145793, - [SMALL_STATE(3609)] = 145847, - [SMALL_STATE(3610)] = 145899, - [SMALL_STATE(3611)] = 145945, - [SMALL_STATE(3612)] = 145991, - [SMALL_STATE(3613)] = 146039, - [SMALL_STATE(3614)] = 146087, - [SMALL_STATE(3615)] = 146137, - [SMALL_STATE(3616)] = 146187, - [SMALL_STATE(3617)] = 146233, - [SMALL_STATE(3618)] = 146289, - [SMALL_STATE(3619)] = 146347, - [SMALL_STATE(3620)] = 146405, - [SMALL_STATE(3621)] = 146465, - [SMALL_STATE(3622)] = 146525, - [SMALL_STATE(3623)] = 146587, - [SMALL_STATE(3624)] = 146649, - [SMALL_STATE(3625)] = 146713, - [SMALL_STATE(3626)] = 146777, - [SMALL_STATE(3627)] = 146843, - [SMALL_STATE(3628)] = 146909, - [SMALL_STATE(3629)] = 146977, - [SMALL_STATE(3630)] = 147045, - [SMALL_STATE(3631)] = 147087, - [SMALL_STATE(3632)] = 147141, - [SMALL_STATE(3633)] = 147193, - [SMALL_STATE(3634)] = 147245, - [SMALL_STATE(3635)] = 147291, - [SMALL_STATE(3636)] = 147339, - [SMALL_STATE(3637)] = 147389, - [SMALL_STATE(3638)] = 147445, - [SMALL_STATE(3639)] = 147503, - [SMALL_STATE(3640)] = 147563, - [SMALL_STATE(3641)] = 147625, - [SMALL_STATE(3642)] = 147689, - [SMALL_STATE(3643)] = 147755, - [SMALL_STATE(3644)] = 147823, - [SMALL_STATE(3645)] = 147877, - [SMALL_STATE(3646)] = 147929, - [SMALL_STATE(3647)] = 147971, - [SMALL_STATE(3648)] = 148013, - [SMALL_STATE(3649)] = 148055, - [SMALL_STATE(3650)] = 148097, - [SMALL_STATE(3651)] = 148139, - [SMALL_STATE(3652)] = 148181, - [SMALL_STATE(3653)] = 148223, - [SMALL_STATE(3654)] = 148265, - [SMALL_STATE(3655)] = 148307, - [SMALL_STATE(3656)] = 148349, - [SMALL_STATE(3657)] = 148391, - [SMALL_STATE(3658)] = 148433, - [SMALL_STATE(3659)] = 148475, - [SMALL_STATE(3660)] = 148517, - [SMALL_STATE(3661)] = 148559, - [SMALL_STATE(3662)] = 148601, - [SMALL_STATE(3663)] = 148643, - [SMALL_STATE(3664)] = 148685, - [SMALL_STATE(3665)] = 148727, - [SMALL_STATE(3666)] = 148769, - [SMALL_STATE(3667)] = 148811, - [SMALL_STATE(3668)] = 148853, - [SMALL_STATE(3669)] = 148895, - [SMALL_STATE(3670)] = 148937, - [SMALL_STATE(3671)] = 148979, - [SMALL_STATE(3672)] = 149021, - [SMALL_STATE(3673)] = 149063, - [SMALL_STATE(3674)] = 149105, - [SMALL_STATE(3675)] = 149147, - [SMALL_STATE(3676)] = 149189, - [SMALL_STATE(3677)] = 149233, - [SMALL_STATE(3678)] = 149279, - [SMALL_STATE(3679)] = 149327, - [SMALL_STATE(3680)] = 149381, - [SMALL_STATE(3681)] = 149437, - [SMALL_STATE(3682)] = 149495, - [SMALL_STATE(3683)] = 149555, - [SMALL_STATE(3684)] = 149617, - [SMALL_STATE(3685)] = 149681, - [SMALL_STATE(3686)] = 149747, - [SMALL_STATE(3687)] = 149799, - [SMALL_STATE(3688)] = 149849, - [SMALL_STATE(3689)] = 149891, - [SMALL_STATE(3690)] = 149933, - [SMALL_STATE(3691)] = 149975, - [SMALL_STATE(3692)] = 150017, - [SMALL_STATE(3693)] = 150067, - [SMALL_STATE(3694)] = 150109, - [SMALL_STATE(3695)] = 150153, - [SMALL_STATE(3696)] = 150195, - [SMALL_STATE(3697)] = 150237, - [SMALL_STATE(3698)] = 150281, - [SMALL_STATE(3699)] = 150335, - [SMALL_STATE(3700)] = 150418, - [SMALL_STATE(3701)] = 150501, - [SMALL_STATE(3702)] = 150584, - [SMALL_STATE(3703)] = 150667, - [SMALL_STATE(3704)] = 150750, - [SMALL_STATE(3705)] = 150833, - [SMALL_STATE(3706)] = 150874, - [SMALL_STATE(3707)] = 150957, - [SMALL_STATE(3708)] = 150998, - [SMALL_STATE(3709)] = 151081, - [SMALL_STATE(3710)] = 151164, - [SMALL_STATE(3711)] = 151247, - [SMALL_STATE(3712)] = 151330, - [SMALL_STATE(3713)] = 151413, - [SMALL_STATE(3714)] = 151496, - [SMALL_STATE(3715)] = 151579, - [SMALL_STATE(3716)] = 151620, - [SMALL_STATE(3717)] = 151661, - [SMALL_STATE(3718)] = 151744, - [SMALL_STATE(3719)] = 151827, - [SMALL_STATE(3720)] = 151910, - [SMALL_STATE(3721)] = 151993, - [SMALL_STATE(3722)] = 152076, - [SMALL_STATE(3723)] = 152159, - [SMALL_STATE(3724)] = 152242, - [SMALL_STATE(3725)] = 152325, - [SMALL_STATE(3726)] = 152370, - [SMALL_STATE(3727)] = 152411, - [SMALL_STATE(3728)] = 152494, - [SMALL_STATE(3729)] = 152561, - [SMALL_STATE(3730)] = 152606, - [SMALL_STATE(3731)] = 152647, - [SMALL_STATE(3732)] = 152714, - [SMALL_STATE(3733)] = 152797, - [SMALL_STATE(3734)] = 152864, - [SMALL_STATE(3735)] = 152931, - [SMALL_STATE(3736)] = 152998, - [SMALL_STATE(3737)] = 153065, - [SMALL_STATE(3738)] = 153106, - [SMALL_STATE(3739)] = 153189, - [SMALL_STATE(3740)] = 153272, - [SMALL_STATE(3741)] = 153324, - [SMALL_STATE(3742)] = 153386, - [SMALL_STATE(3743)] = 153434, - [SMALL_STATE(3744)] = 153480, - [SMALL_STATE(3745)] = 153520, - [SMALL_STATE(3746)] = 153574, - [SMALL_STATE(3747)] = 153626, - [SMALL_STATE(3748)] = 153682, - [SMALL_STATE(3749)] = 153726, - [SMALL_STATE(3750)] = 153776, - [SMALL_STATE(3751)] = 153834, - [SMALL_STATE(3752)] = 153882, - [SMALL_STATE(3753)] = 153942, - [SMALL_STATE(3754)] = 153986, - [SMALL_STATE(3755)] = 154032, - [SMALL_STATE(3756)] = 154072, - [SMALL_STATE(3757)] = 154112, - [SMALL_STATE(3758)] = 154154, - [SMALL_STATE(3759)] = 154198, - [SMALL_STATE(3760)] = 154248, - [SMALL_STATE(3761)] = 154292, - [SMALL_STATE(3762)] = 154354, - [SMALL_STATE(3763)] = 154408, - [SMALL_STATE(3764)] = 154464, - [SMALL_STATE(3765)] = 154522, - [SMALL_STATE(3766)] = 154582, - [SMALL_STATE(3767)] = 154626, - [SMALL_STATE(3768)] = 154668, - [SMALL_STATE(3769)] = 154712, - [SMALL_STATE(3770)] = 154789, - [SMALL_STATE(3771)] = 154866, - [SMALL_STATE(3772)] = 154905, - [SMALL_STATE(3773)] = 154944, - [SMALL_STATE(3774)] = 154983, - [SMALL_STATE(3775)] = 155044, - [SMALL_STATE(3776)] = 155083, - [SMALL_STATE(3777)] = 155144, - [SMALL_STATE(3778)] = 155189, - [SMALL_STATE(3779)] = 155266, - [SMALL_STATE(3780)] = 155343, - [SMALL_STATE(3781)] = 155420, - [SMALL_STATE(3782)] = 155481, - [SMALL_STATE(3783)] = 155558, - [SMALL_STATE(3784)] = 155635, - [SMALL_STATE(3785)] = 155696, - [SMALL_STATE(3786)] = 155757, - [SMALL_STATE(3787)] = 155818, - [SMALL_STATE(3788)] = 155857, - [SMALL_STATE(3789)] = 155918, - [SMALL_STATE(3790)] = 155995, - [SMALL_STATE(3791)] = 156072, - [SMALL_STATE(3792)] = 156149, - [SMALL_STATE(3793)] = 156188, - [SMALL_STATE(3794)] = 156265, - [SMALL_STATE(3795)] = 156342, - [SMALL_STATE(3796)] = 156396, - [SMALL_STATE(3797)] = 156440, - [SMALL_STATE(3798)] = 156491, - [SMALL_STATE(3799)] = 156544, - [SMALL_STATE(3800)] = 156595, - [SMALL_STATE(3801)] = 156645, - [SMALL_STATE(3802)] = 156701, - [SMALL_STATE(3803)] = 156741, - [SMALL_STATE(3804)] = 156791, - [SMALL_STATE(3805)] = 156841, - [SMALL_STATE(3806)] = 156881, - [SMALL_STATE(3807)] = 156920, - [SMALL_STATE(3808)] = 156967, - [SMALL_STATE(3809)] = 157014, - [SMALL_STATE(3810)] = 157053, - [SMALL_STATE(3811)] = 157090, - [SMALL_STATE(3812)] = 157127, - [SMALL_STATE(3813)] = 157174, - [SMALL_STATE(3814)] = 157217, - [SMALL_STATE(3815)] = 157260, - [SMALL_STATE(3816)] = 157303, - [SMALL_STATE(3817)] = 157346, - [SMALL_STATE(3818)] = 157393, - [SMALL_STATE(3819)] = 157446, - [SMALL_STATE(3820)] = 157489, - [SMALL_STATE(3821)] = 157532, - [SMALL_STATE(3822)] = 157575, - [SMALL_STATE(3823)] = 157618, - [SMALL_STATE(3824)] = 157661, - [SMALL_STATE(3825)] = 157704, - [SMALL_STATE(3826)] = 157747, - [SMALL_STATE(3827)] = 157790, - [SMALL_STATE(3828)] = 157833, - [SMALL_STATE(3829)] = 157876, - [SMALL_STATE(3830)] = 157919, - [SMALL_STATE(3831)] = 157962, - [SMALL_STATE(3832)] = 158005, - [SMALL_STATE(3833)] = 158048, - [SMALL_STATE(3834)] = 158091, - [SMALL_STATE(3835)] = 158144, - [SMALL_STATE(3836)] = 158187, - [SMALL_STATE(3837)] = 158240, - [SMALL_STATE(3838)] = 158287, - [SMALL_STATE(3839)] = 158342, - [SMALL_STATE(3840)] = 158385, - [SMALL_STATE(3841)] = 158428, - [SMALL_STATE(3842)] = 158480, - [SMALL_STATE(3843)] = 158530, - [SMALL_STATE(3844)] = 158582, - [SMALL_STATE(3845)] = 158632, - [SMALL_STATE(3846)] = 158666, - [SMALL_STATE(3847)] = 158700, - [SMALL_STATE(3848)] = 158750, - [SMALL_STATE(3849)] = 158788, - [SMALL_STATE(3850)] = 158822, - [SMALL_STATE(3851)] = 158860, - [SMALL_STATE(3852)] = 158896, - [SMALL_STATE(3853)] = 158948, - [SMALL_STATE(3854)] = 158982, - [SMALL_STATE(3855)] = 159032, - [SMALL_STATE(3856)] = 159070, - [SMALL_STATE(3857)] = 159106, - [SMALL_STATE(3858)] = 159144, - [SMALL_STATE(3859)] = 159186, - [SMALL_STATE(3860)] = 159228, - [SMALL_STATE(3861)] = 159274, - [SMALL_STATE(3862)] = 159315, - [SMALL_STATE(3863)] = 159368, - [SMALL_STATE(3864)] = 159401, - [SMALL_STATE(3865)] = 159442, - [SMALL_STATE(3866)] = 159477, - [SMALL_STATE(3867)] = 159526, - [SMALL_STATE(3868)] = 159559, - [SMALL_STATE(3869)] = 159600, - [SMALL_STATE(3870)] = 159647, - [SMALL_STATE(3871)] = 159688, - [SMALL_STATE(3872)] = 159729, - [SMALL_STATE(3873)] = 159778, - [SMALL_STATE(3874)] = 159811, - [SMALL_STATE(3875)] = 159846, - [SMALL_STATE(3876)] = 159887, - [SMALL_STATE(3877)] = 159924, - [SMALL_STATE(3878)] = 159961, - [SMALL_STATE(3879)] = 160002, - [SMALL_STATE(3880)] = 160043, - [SMALL_STATE(3881)] = 160084, - [SMALL_STATE(3882)] = 160125, - [SMALL_STATE(3883)] = 160166, - [SMALL_STATE(3884)] = 160215, - [SMALL_STATE(3885)] = 160256, - [SMALL_STATE(3886)] = 160297, - [SMALL_STATE(3887)] = 160338, - [SMALL_STATE(3888)] = 160379, - [SMALL_STATE(3889)] = 160416, - [SMALL_STATE(3890)] = 160457, - [SMALL_STATE(3891)] = 160498, - [SMALL_STATE(3892)] = 160539, - [SMALL_STATE(3893)] = 160574, - [SMALL_STATE(3894)] = 160615, - [SMALL_STATE(3895)] = 160656, - [SMALL_STATE(3896)] = 160697, - [SMALL_STATE(3897)] = 160738, - [SMALL_STATE(3898)] = 160779, - [SMALL_STATE(3899)] = 160816, - [SMALL_STATE(3900)] = 160857, - [SMALL_STATE(3901)] = 160890, - [SMALL_STATE(3902)] = 160931, - [SMALL_STATE(3903)] = 160972, - [SMALL_STATE(3904)] = 161021, - [SMALL_STATE(3905)] = 161056, - [SMALL_STATE(3906)] = 161088, - [SMALL_STATE(3907)] = 161122, - [SMALL_STATE(3908)] = 161158, - [SMALL_STATE(3909)] = 161192, - [SMALL_STATE(3910)] = 161230, - [SMALL_STATE(3911)] = 161270, - [SMALL_STATE(3912)] = 161302, - [SMALL_STATE(3913)] = 161338, - [SMALL_STATE(3914)] = 161388, - [SMALL_STATE(3915)] = 161422, - [SMALL_STATE(3916)] = 161454, - [SMALL_STATE(3917)] = 161492, - [SMALL_STATE(3918)] = 161524, - [SMALL_STATE(3919)] = 161570, - [SMALL_STATE(3920)] = 161606, - [SMALL_STATE(3921)] = 161642, - [SMALL_STATE(3922)] = 161682, - [SMALL_STATE(3923)] = 161714, - [SMALL_STATE(3924)] = 161764, - [SMALL_STATE(3925)] = 161796, - [SMALL_STATE(3926)] = 161830, - [SMALL_STATE(3927)] = 161870, - [SMALL_STATE(3928)] = 161902, - [SMALL_STATE(3929)] = 161934, - [SMALL_STATE(3930)] = 161966, - [SMALL_STATE(3931)] = 162004, - [SMALL_STATE(3932)] = 162038, - [SMALL_STATE(3933)] = 162074, - [SMALL_STATE(3934)] = 162106, - [SMALL_STATE(3935)] = 162156, - [SMALL_STATE(3936)] = 162188, - [SMALL_STATE(3937)] = 162221, - [SMALL_STATE(3938)] = 162256, - [SMALL_STATE(3939)] = 162287, - [SMALL_STATE(3940)] = 162318, - [SMALL_STATE(3941)] = 162349, - [SMALL_STATE(3942)] = 162382, - [SMALL_STATE(3943)] = 162417, - [SMALL_STATE(3944)] = 162452, - [SMALL_STATE(3945)] = 162483, - [SMALL_STATE(3946)] = 162514, - [SMALL_STATE(3947)] = 162545, - [SMALL_STATE(3948)] = 162582, - [SMALL_STATE(3949)] = 162621, - [SMALL_STATE(3950)] = 162652, - [SMALL_STATE(3951)] = 162683, - [SMALL_STATE(3952)] = 162716, - [SMALL_STATE(3953)] = 162747, - [SMALL_STATE(3954)] = 162778, - [SMALL_STATE(3955)] = 162809, - [SMALL_STATE(3956)] = 162840, - [SMALL_STATE(3957)] = 162871, - [SMALL_STATE(3958)] = 162904, - [SMALL_STATE(3959)] = 162939, - [SMALL_STATE(3960)] = 162970, - [SMALL_STATE(3961)] = 163001, - [SMALL_STATE(3962)] = 163032, - [SMALL_STATE(3963)] = 163063, - [SMALL_STATE(3964)] = 163094, - [SMALL_STATE(3965)] = 163127, - [SMALL_STATE(3966)] = 163158, - [SMALL_STATE(3967)] = 163189, - [SMALL_STATE(3968)] = 163220, - [SMALL_STATE(3969)] = 163251, - [SMALL_STATE(3970)] = 163298, - [SMALL_STATE(3971)] = 163329, - [SMALL_STATE(3972)] = 163360, - [SMALL_STATE(3973)] = 163391, - [SMALL_STATE(3974)] = 163432, - [SMALL_STATE(3975)] = 163463, - [SMALL_STATE(3976)] = 163494, - [SMALL_STATE(3977)] = 163525, - [SMALL_STATE(3978)] = 163556, - [SMALL_STATE(3979)] = 163587, - [SMALL_STATE(3980)] = 163618, - [SMALL_STATE(3981)] = 163649, - [SMALL_STATE(3982)] = 163696, - [SMALL_STATE(3983)] = 163743, - [SMALL_STATE(3984)] = 163774, - [SMALL_STATE(3985)] = 163821, - [SMALL_STATE(3986)] = 163852, - [SMALL_STATE(3987)] = 163883, - [SMALL_STATE(3988)] = 163914, - [SMALL_STATE(3989)] = 163945, - [SMALL_STATE(3990)] = 163976, - [SMALL_STATE(3991)] = 164007, - [SMALL_STATE(3992)] = 164038, - [SMALL_STATE(3993)] = 164075, - [SMALL_STATE(3994)] = 164106, - [SMALL_STATE(3995)] = 164145, - [SMALL_STATE(3996)] = 164178, - [SMALL_STATE(3997)] = 164217, - [SMALL_STATE(3998)] = 164252, - [SMALL_STATE(3999)] = 164289, - [SMALL_STATE(4000)] = 164322, - [SMALL_STATE(4001)] = 164353, - [SMALL_STATE(4002)] = 164384, - [SMALL_STATE(4003)] = 164415, - [SMALL_STATE(4004)] = 164460, - [SMALL_STATE(4005)] = 164491, - [SMALL_STATE(4006)] = 164523, - [SMALL_STATE(4007)] = 164553, - [SMALL_STATE(4008)] = 164587, - [SMALL_STATE(4009)] = 164621, - [SMALL_STATE(4010)] = 164651, - [SMALL_STATE(4011)] = 164689, - [SMALL_STATE(4012)] = 164727, - [SMALL_STATE(4013)] = 164757, - [SMALL_STATE(4014)] = 164795, - [SMALL_STATE(4015)] = 164825, - [SMALL_STATE(4016)] = 164865, - [SMALL_STATE(4017)] = 164895, - [SMALL_STATE(4018)] = 164927, - [SMALL_STATE(4019)] = 164957, - [SMALL_STATE(4020)] = 164989, - [SMALL_STATE(4021)] = 165019, - [SMALL_STATE(4022)] = 165051, - [SMALL_STATE(4023)] = 165081, - [SMALL_STATE(4024)] = 165115, - [SMALL_STATE(4025)] = 165147, - [SMALL_STATE(4026)] = 165181, - [SMALL_STATE(4027)] = 165217, - [SMALL_STATE(4028)] = 165247, - [SMALL_STATE(4029)] = 165281, - [SMALL_STATE(4030)] = 165319, - [SMALL_STATE(4031)] = 165357, - [SMALL_STATE(4032)] = 165389, - [SMALL_STATE(4033)] = 165419, - [SMALL_STATE(4034)] = 165451, - [SMALL_STATE(4035)] = 165481, - [SMALL_STATE(4036)] = 165511, - [SMALL_STATE(4037)] = 165541, - [SMALL_STATE(4038)] = 165573, - [SMALL_STATE(4039)] = 165605, - [SMALL_STATE(4040)] = 165655, - [SMALL_STATE(4041)] = 165685, - [SMALL_STATE(4042)] = 165715, - [SMALL_STATE(4043)] = 165745, - [SMALL_STATE(4044)] = 165777, - [SMALL_STATE(4045)] = 165809, - [SMALL_STATE(4046)] = 165839, - [SMALL_STATE(4047)] = 165876, - [SMALL_STATE(4048)] = 165913, - [SMALL_STATE(4049)] = 165950, - [SMALL_STATE(4050)] = 165987, - [SMALL_STATE(4051)] = 166016, - [SMALL_STATE(4052)] = 166045, - [SMALL_STATE(4053)] = 166074, - [SMALL_STATE(4054)] = 166103, - [SMALL_STATE(4055)] = 166140, - [SMALL_STATE(4056)] = 166171, - [SMALL_STATE(4057)] = 166200, - [SMALL_STATE(4058)] = 166233, - [SMALL_STATE(4059)] = 166262, - [SMALL_STATE(4060)] = 166291, - [SMALL_STATE(4061)] = 166322, - [SMALL_STATE(4062)] = 166353, - [SMALL_STATE(4063)] = 166382, - [SMALL_STATE(4064)] = 166411, - [SMALL_STATE(4065)] = 166442, - [SMALL_STATE(4066)] = 166473, - [SMALL_STATE(4067)] = 166504, - [SMALL_STATE(4068)] = 166533, - [SMALL_STATE(4069)] = 166564, - [SMALL_STATE(4070)] = 166595, - [SMALL_STATE(4071)] = 166632, - [SMALL_STATE(4072)] = 166669, - [SMALL_STATE(4073)] = 166706, - [SMALL_STATE(4074)] = 166737, - [SMALL_STATE(4075)] = 166766, - [SMALL_STATE(4076)] = 166797, - [SMALL_STATE(4077)] = 166828, - [SMALL_STATE(4078)] = 166857, - [SMALL_STATE(4079)] = 166892, - [SMALL_STATE(4080)] = 166925, - [SMALL_STATE(4081)] = 166954, - [SMALL_STATE(4082)] = 166985, - [SMALL_STATE(4083)] = 167016, - [SMALL_STATE(4084)] = 167045, - [SMALL_STATE(4085)] = 167078, - [SMALL_STATE(4086)] = 167115, - [SMALL_STATE(4087)] = 167152, - [SMALL_STATE(4088)] = 167189, - [SMALL_STATE(4089)] = 167218, - [SMALL_STATE(4090)] = 167249, - [SMALL_STATE(4091)] = 167278, - [SMALL_STATE(4092)] = 167309, - [SMALL_STATE(4093)] = 167340, - [SMALL_STATE(4094)] = 167369, - [SMALL_STATE(4095)] = 167398, - [SMALL_STATE(4096)] = 167427, - [SMALL_STATE(4097)] = 167456, - [SMALL_STATE(4098)] = 167485, - [SMALL_STATE(4099)] = 167518, - [SMALL_STATE(4100)] = 167551, - [SMALL_STATE(4101)] = 167584, - [SMALL_STATE(4102)] = 167613, - [SMALL_STATE(4103)] = 167642, - [SMALL_STATE(4104)] = 167671, - [SMALL_STATE(4105)] = 167700, - [SMALL_STATE(4106)] = 167729, - [SMALL_STATE(4107)] = 167766, - [SMALL_STATE(4108)] = 167795, - [SMALL_STATE(4109)] = 167824, - [SMALL_STATE(4110)] = 167855, - [SMALL_STATE(4111)] = 167884, - [SMALL_STATE(4112)] = 167913, - [SMALL_STATE(4113)] = 167942, - [SMALL_STATE(4114)] = 167971, - [SMALL_STATE(4115)] = 168000, - [SMALL_STATE(4116)] = 168029, - [SMALL_STATE(4117)] = 168058, - [SMALL_STATE(4118)] = 168087, - [SMALL_STATE(4119)] = 168116, - [SMALL_STATE(4120)] = 168145, - [SMALL_STATE(4121)] = 168174, - [SMALL_STATE(4122)] = 168203, - [SMALL_STATE(4123)] = 168232, - [SMALL_STATE(4124)] = 168261, - [SMALL_STATE(4125)] = 168298, - [SMALL_STATE(4126)] = 168327, - [SMALL_STATE(4127)] = 168356, - [SMALL_STATE(4128)] = 168385, - [SMALL_STATE(4129)] = 168414, - [SMALL_STATE(4130)] = 168451, - [SMALL_STATE(4131)] = 168480, - [SMALL_STATE(4132)] = 168517, - [SMALL_STATE(4133)] = 168550, - [SMALL_STATE(4134)] = 168579, - [SMALL_STATE(4135)] = 168610, - [SMALL_STATE(4136)] = 168641, - [SMALL_STATE(4137)] = 168678, - [SMALL_STATE(4138)] = 168709, - [SMALL_STATE(4139)] = 168740, - [SMALL_STATE(4140)] = 168771, - [SMALL_STATE(4141)] = 168802, - [SMALL_STATE(4142)] = 168833, - [SMALL_STATE(4143)] = 168870, - [SMALL_STATE(4144)] = 168907, - [SMALL_STATE(4145)] = 168938, - [SMALL_STATE(4146)] = 168975, - [SMALL_STATE(4147)] = 169012, - [SMALL_STATE(4148)] = 169049, - [SMALL_STATE(4149)] = 169086, - [SMALL_STATE(4150)] = 169123, - [SMALL_STATE(4151)] = 169160, - [SMALL_STATE(4152)] = 169197, - [SMALL_STATE(4153)] = 169234, - [SMALL_STATE(4154)] = 169271, - [SMALL_STATE(4155)] = 169308, - [SMALL_STATE(4156)] = 169337, - [SMALL_STATE(4157)] = 169366, - [SMALL_STATE(4158)] = 169403, - [SMALL_STATE(4159)] = 169440, - [SMALL_STATE(4160)] = 169469, - [SMALL_STATE(4161)] = 169498, - [SMALL_STATE(4162)] = 169535, - [SMALL_STATE(4163)] = 169572, - [SMALL_STATE(4164)] = 169603, - [SMALL_STATE(4165)] = 169631, - [SMALL_STATE(4166)] = 169667, - [SMALL_STATE(4167)] = 169697, - [SMALL_STATE(4168)] = 169733, - [SMALL_STATE(4169)] = 169761, - [SMALL_STATE(4170)] = 169789, - [SMALL_STATE(4171)] = 169819, - [SMALL_STATE(4172)] = 169849, - [SMALL_STATE(4173)] = 169885, - [SMALL_STATE(4174)] = 169923, - [SMALL_STATE(4175)] = 169951, - [SMALL_STATE(4176)] = 169987, - [SMALL_STATE(4177)] = 170023, - [SMALL_STATE(4178)] = 170053, - [SMALL_STATE(4179)] = 170089, - [SMALL_STATE(4180)] = 170119, - [SMALL_STATE(4181)] = 170149, - [SMALL_STATE(4182)] = 170193, - [SMALL_STATE(4183)] = 170237, - [SMALL_STATE(4184)] = 170281, - [SMALL_STATE(4185)] = 170309, - [SMALL_STATE(4186)] = 170341, - [SMALL_STATE(4187)] = 170369, - [SMALL_STATE(4188)] = 170401, - [SMALL_STATE(4189)] = 170431, - [SMALL_STATE(4190)] = 170467, - [SMALL_STATE(4191)] = 170499, - [SMALL_STATE(4192)] = 170529, - [SMALL_STATE(4193)] = 170557, - [SMALL_STATE(4194)] = 170589, - [SMALL_STATE(4195)] = 170623, - [SMALL_STATE(4196)] = 170655, - [SMALL_STATE(4197)] = 170691, - [SMALL_STATE(4198)] = 170721, - [SMALL_STATE(4199)] = 170757, - [SMALL_STATE(4200)] = 170789, - [SMALL_STATE(4201)] = 170817, - [SMALL_STATE(4202)] = 170849, - [SMALL_STATE(4203)] = 170885, - [SMALL_STATE(4204)] = 170915, - [SMALL_STATE(4205)] = 170943, - [SMALL_STATE(4206)] = 170971, - [SMALL_STATE(4207)] = 170999, - [SMALL_STATE(4208)] = 171035, - [SMALL_STATE(4209)] = 171071, - [SMALL_STATE(4210)] = 171109, - [SMALL_STATE(4211)] = 171145, - [SMALL_STATE(4212)] = 171173, - [SMALL_STATE(4213)] = 171205, - [SMALL_STATE(4214)] = 171241, - [SMALL_STATE(4215)] = 171277, - [SMALL_STATE(4216)] = 171313, - [SMALL_STATE(4217)] = 171349, - [SMALL_STATE(4218)] = 171377, - [SMALL_STATE(4219)] = 171405, - [SMALL_STATE(4220)] = 171441, - [SMALL_STATE(4221)] = 171477, - [SMALL_STATE(4222)] = 171513, - [SMALL_STATE(4223)] = 171549, - [SMALL_STATE(4224)] = 171577, - [SMALL_STATE(4225)] = 171621, - [SMALL_STATE(4226)] = 171651, - [SMALL_STATE(4227)] = 171687, - [SMALL_STATE(4228)] = 171715, - [SMALL_STATE(4229)] = 171743, - [SMALL_STATE(4230)] = 171773, - [SMALL_STATE(4231)] = 171805, - [SMALL_STATE(4232)] = 171837, - [SMALL_STATE(4233)] = 171873, - [SMALL_STATE(4234)] = 171909, - [SMALL_STATE(4235)] = 171945, - [SMALL_STATE(4236)] = 171981, - [SMALL_STATE(4237)] = 172009, - [SMALL_STATE(4238)] = 172045, - [SMALL_STATE(4239)] = 172081, - [SMALL_STATE(4240)] = 172109, - [SMALL_STATE(4241)] = 172139, - [SMALL_STATE(4242)] = 172169, - [SMALL_STATE(4243)] = 172213, - [SMALL_STATE(4244)] = 172241, - [SMALL_STATE(4245)] = 172277, - [SMALL_STATE(4246)] = 172307, - [SMALL_STATE(4247)] = 172337, - [SMALL_STATE(4248)] = 172373, - [SMALL_STATE(4249)] = 172405, - [SMALL_STATE(4250)] = 172433, - [SMALL_STATE(4251)] = 172469, - [SMALL_STATE(4252)] = 172505, - [SMALL_STATE(4253)] = 172537, - [SMALL_STATE(4254)] = 172569, - [SMALL_STATE(4255)] = 172604, - [SMALL_STATE(4256)] = 172633, - [SMALL_STATE(4257)] = 172664, - [SMALL_STATE(4258)] = 172695, - [SMALL_STATE(4259)] = 172730, - [SMALL_STATE(4260)] = 172755, - [SMALL_STATE(4261)] = 172780, - [SMALL_STATE(4262)] = 172811, - [SMALL_STATE(4263)] = 172846, - [SMALL_STATE(4264)] = 172873, - [SMALL_STATE(4265)] = 172900, - [SMALL_STATE(4266)] = 172935, - [SMALL_STATE(4267)] = 172960, - [SMALL_STATE(4268)] = 172995, - [SMALL_STATE(4269)] = 173030, - [SMALL_STATE(4270)] = 173057, - [SMALL_STATE(4271)] = 173086, - [SMALL_STATE(4272)] = 173117, - [SMALL_STATE(4273)] = 173146, - [SMALL_STATE(4274)] = 173175, - [SMALL_STATE(4275)] = 173200, - [SMALL_STATE(4276)] = 173225, - [SMALL_STATE(4277)] = 173256, - [SMALL_STATE(4278)] = 173287, - [SMALL_STATE(4279)] = 173320, - [SMALL_STATE(4280)] = 173349, - [SMALL_STATE(4281)] = 173378, - [SMALL_STATE(4282)] = 173407, - [SMALL_STATE(4283)] = 173434, - [SMALL_STATE(4284)] = 173461, - [SMALL_STATE(4285)] = 173488, - [SMALL_STATE(4286)] = 173521, - [SMALL_STATE(4287)] = 173550, - [SMALL_STATE(4288)] = 173585, - [SMALL_STATE(4289)] = 173614, - [SMALL_STATE(4290)] = 173641, - [SMALL_STATE(4291)] = 173672, - [SMALL_STATE(4292)] = 173707, - [SMALL_STATE(4293)] = 173738, - [SMALL_STATE(4294)] = 173769, - [SMALL_STATE(4295)] = 173796, - [SMALL_STATE(4296)] = 173827, - [SMALL_STATE(4297)] = 173858, - [SMALL_STATE(4298)] = 173889, - [SMALL_STATE(4299)] = 173916, - [SMALL_STATE(4300)] = 173943, - [SMALL_STATE(4301)] = 173970, - [SMALL_STATE(4302)] = 174001, - [SMALL_STATE(4303)] = 174032, - [SMALL_STATE(4304)] = 174063, - [SMALL_STATE(4305)] = 174094, - [SMALL_STATE(4306)] = 174125, - [SMALL_STATE(4307)] = 174156, - [SMALL_STATE(4308)] = 174189, - [SMALL_STATE(4309)] = 174222, - [SMALL_STATE(4310)] = 174255, - [SMALL_STATE(4311)] = 174290, - [SMALL_STATE(4312)] = 174323, - [SMALL_STATE(4313)] = 174350, - [SMALL_STATE(4314)] = 174381, - [SMALL_STATE(4315)] = 174412, - [SMALL_STATE(4316)] = 174439, - [SMALL_STATE(4317)] = 174466, - [SMALL_STATE(4318)] = 174497, - [SMALL_STATE(4319)] = 174528, - [SMALL_STATE(4320)] = 174561, - [SMALL_STATE(4321)] = 174594, - [SMALL_STATE(4322)] = 174621, - [SMALL_STATE(4323)] = 174648, - [SMALL_STATE(4324)] = 174683, - [SMALL_STATE(4325)] = 174716, - [SMALL_STATE(4326)] = 174747, - [SMALL_STATE(4327)] = 174778, - [SMALL_STATE(4328)] = 174813, - [SMALL_STATE(4329)] = 174848, - [SMALL_STATE(4330)] = 174873, - [SMALL_STATE(4331)] = 174900, - [SMALL_STATE(4332)] = 174931, - [SMALL_STATE(4333)] = 174964, - [SMALL_STATE(4334)] = 174991, - [SMALL_STATE(4335)] = 175024, - [SMALL_STATE(4336)] = 175051, - [SMALL_STATE(4337)] = 175080, - [SMALL_STATE(4338)] = 175109, - [SMALL_STATE(4339)] = 175140, - [SMALL_STATE(4340)] = 175171, - [SMALL_STATE(4341)] = 175198, - [SMALL_STATE(4342)] = 175225, - [SMALL_STATE(4343)] = 175252, - [SMALL_STATE(4344)] = 175279, - [SMALL_STATE(4345)] = 175308, - [SMALL_STATE(4346)] = 175335, - [SMALL_STATE(4347)] = 175366, - [SMALL_STATE(4348)] = 175401, - [SMALL_STATE(4349)] = 175432, - [SMALL_STATE(4350)] = 175459, - [SMALL_STATE(4351)] = 175488, - [SMALL_STATE(4352)] = 175517, - [SMALL_STATE(4353)] = 175548, - [SMALL_STATE(4354)] = 175579, - [SMALL_STATE(4355)] = 175608, - [SMALL_STATE(4356)] = 175633, - [SMALL_STATE(4357)] = 175662, - [SMALL_STATE(4358)] = 175693, - [SMALL_STATE(4359)] = 175728, - [SMALL_STATE(4360)] = 175759, - [SMALL_STATE(4361)] = 175790, - [SMALL_STATE(4362)] = 175825, - [SMALL_STATE(4363)] = 175860, - [SMALL_STATE(4364)] = 175893, - [SMALL_STATE(4365)] = 175920, - [SMALL_STATE(4366)] = 175955, - [SMALL_STATE(4367)] = 175980, - [SMALL_STATE(4368)] = 176007, - [SMALL_STATE(4369)] = 176034, - [SMALL_STATE(4370)] = 176063, - [SMALL_STATE(4371)] = 176092, - [SMALL_STATE(4372)] = 176123, - [SMALL_STATE(4373)] = 176158, - [SMALL_STATE(4374)] = 176189, - [SMALL_STATE(4375)] = 176216, - [SMALL_STATE(4376)] = 176243, - [SMALL_STATE(4377)] = 176270, - [SMALL_STATE(4378)] = 176301, - [SMALL_STATE(4379)] = 176328, - [SMALL_STATE(4380)] = 176359, - [SMALL_STATE(4381)] = 176386, - [SMALL_STATE(4382)] = 176423, - [SMALL_STATE(4383)] = 176454, - [SMALL_STATE(4384)] = 176481, - [SMALL_STATE(4385)] = 176512, - [SMALL_STATE(4386)] = 176539, - [SMALL_STATE(4387)] = 176566, - [SMALL_STATE(4388)] = 176595, - [SMALL_STATE(4389)] = 176620, - [SMALL_STATE(4390)] = 176651, - [SMALL_STATE(4391)] = 176682, - [SMALL_STATE(4392)] = 176717, - [SMALL_STATE(4393)] = 176744, - [SMALL_STATE(4394)] = 176775, - [SMALL_STATE(4395)] = 176808, - [SMALL_STATE(4396)] = 176841, - [SMALL_STATE(4397)] = 176872, - [SMALL_STATE(4398)] = 176903, - [SMALL_STATE(4399)] = 176930, - [SMALL_STATE(4400)] = 176965, - [SMALL_STATE(4401)] = 177000, - [SMALL_STATE(4402)] = 177027, - [SMALL_STATE(4403)] = 177054, - [SMALL_STATE(4404)] = 177081, - [SMALL_STATE(4405)] = 177114, - [SMALL_STATE(4406)] = 177145, - [SMALL_STATE(4407)] = 177180, - [SMALL_STATE(4408)] = 177207, - [SMALL_STATE(4409)] = 177232, - [SMALL_STATE(4410)] = 177263, - [SMALL_STATE(4411)] = 177288, - [SMALL_STATE(4412)] = 177315, - [SMALL_STATE(4413)] = 177346, - [SMALL_STATE(4414)] = 177381, - [SMALL_STATE(4415)] = 177408, - [SMALL_STATE(4416)] = 177439, - [SMALL_STATE(4417)] = 177470, - [SMALL_STATE(4418)] = 177497, - [SMALL_STATE(4419)] = 177524, - [SMALL_STATE(4420)] = 177559, - [SMALL_STATE(4421)] = 177586, - [SMALL_STATE(4422)] = 177619, - [SMALL_STATE(4423)] = 177646, - [SMALL_STATE(4424)] = 177673, - [SMALL_STATE(4425)] = 177704, - [SMALL_STATE(4426)] = 177739, - [SMALL_STATE(4427)] = 177766, - [SMALL_STATE(4428)] = 177797, - [SMALL_STATE(4429)] = 177828, - [SMALL_STATE(4430)] = 177863, - [SMALL_STATE(4431)] = 177896, - [SMALL_STATE(4432)] = 177931, - [SMALL_STATE(4433)] = 177956, - [SMALL_STATE(4434)] = 177989, - [SMALL_STATE(4435)] = 178020, - [SMALL_STATE(4436)] = 178047, - [SMALL_STATE(4437)] = 178074, - [SMALL_STATE(4438)] = 178103, - [SMALL_STATE(4439)] = 178130, - [SMALL_STATE(4440)] = 178165, - [SMALL_STATE(4441)] = 178190, - [SMALL_STATE(4442)] = 178215, - [SMALL_STATE(4443)] = 178250, - [SMALL_STATE(4444)] = 178277, - [SMALL_STATE(4445)] = 178306, - [SMALL_STATE(4446)] = 178337, - [SMALL_STATE(4447)] = 178366, - [SMALL_STATE(4448)] = 178399, - [SMALL_STATE(4449)] = 178430, - [SMALL_STATE(4450)] = 178463, - [SMALL_STATE(4451)] = 178492, - [SMALL_STATE(4452)] = 178527, - [SMALL_STATE(4453)] = 178554, - [SMALL_STATE(4454)] = 178585, - [SMALL_STATE(4455)] = 178616, - [SMALL_STATE(4456)] = 178647, - [SMALL_STATE(4457)] = 178678, - [SMALL_STATE(4458)] = 178709, - [SMALL_STATE(4459)] = 178736, - [SMALL_STATE(4460)] = 178769, - [SMALL_STATE(4461)] = 178798, - [SMALL_STATE(4462)] = 178823, - [SMALL_STATE(4463)] = 178849, - [SMALL_STATE(4464)] = 178879, - [SMALL_STATE(4465)] = 178903, - [SMALL_STATE(4466)] = 178933, - [SMALL_STATE(4467)] = 178959, - [SMALL_STATE(4468)] = 179011, - [SMALL_STATE(4469)] = 179063, - [SMALL_STATE(4470)] = 179093, - [SMALL_STATE(4471)] = 179123, - [SMALL_STATE(4472)] = 179153, - [SMALL_STATE(4473)] = 179183, - [SMALL_STATE(4474)] = 179207, - [SMALL_STATE(4475)] = 179237, - [SMALL_STATE(4476)] = 179263, - [SMALL_STATE(4477)] = 179287, - [SMALL_STATE(4478)] = 179317, - [SMALL_STATE(4479)] = 179343, - [SMALL_STATE(4480)] = 179371, - [SMALL_STATE(4481)] = 179395, - [SMALL_STATE(4482)] = 179423, - [SMALL_STATE(4483)] = 179447, - [SMALL_STATE(4484)] = 179471, - [SMALL_STATE(4485)] = 179495, - [SMALL_STATE(4486)] = 179521, - [SMALL_STATE(4487)] = 179547, - [SMALL_STATE(4488)] = 179571, - [SMALL_STATE(4489)] = 179597, - [SMALL_STATE(4490)] = 179641, - [SMALL_STATE(4491)] = 179665, - [SMALL_STATE(4492)] = 179695, - [SMALL_STATE(4493)] = 179725, - [SMALL_STATE(4494)] = 179755, - [SMALL_STATE(4495)] = 179785, - [SMALL_STATE(4496)] = 179809, - [SMALL_STATE(4497)] = 179833, - [SMALL_STATE(4498)] = 179857, - [SMALL_STATE(4499)] = 179883, - [SMALL_STATE(4500)] = 179909, - [SMALL_STATE(4501)] = 179939, - [SMALL_STATE(4502)] = 179969, - [SMALL_STATE(4503)] = 179993, - [SMALL_STATE(4504)] = 180045, - [SMALL_STATE(4505)] = 180071, - [SMALL_STATE(4506)] = 180099, - [SMALL_STATE(4507)] = 180127, - [SMALL_STATE(4508)] = 180153, - [SMALL_STATE(4509)] = 180197, - [SMALL_STATE(4510)] = 180221, - [SMALL_STATE(4511)] = 180245, - [SMALL_STATE(4512)] = 180271, - [SMALL_STATE(4513)] = 180297, - [SMALL_STATE(4514)] = 180325, - [SMALL_STATE(4515)] = 180353, - [SMALL_STATE(4516)] = 180377, - [SMALL_STATE(4517)] = 180403, - [SMALL_STATE(4518)] = 180431, - [SMALL_STATE(4519)] = 180457, - [SMALL_STATE(4520)] = 180483, - [SMALL_STATE(4521)] = 180513, - [SMALL_STATE(4522)] = 180557, - [SMALL_STATE(4523)] = 180581, - [SMALL_STATE(4524)] = 180605, - [SMALL_STATE(4525)] = 180629, - [SMALL_STATE(4526)] = 180653, - [SMALL_STATE(4527)] = 180685, - [SMALL_STATE(4528)] = 180713, - [SMALL_STATE(4529)] = 180741, - [SMALL_STATE(4530)] = 180765, - [SMALL_STATE(4531)] = 180793, - [SMALL_STATE(4532)] = 180845, - [SMALL_STATE(4533)] = 180869, - [SMALL_STATE(4534)] = 180899, - [SMALL_STATE(4535)] = 180929, - [SMALL_STATE(4536)] = 180955, - [SMALL_STATE(4537)] = 180979, - [SMALL_STATE(4538)] = 181003, - [SMALL_STATE(4539)] = 181055, - [SMALL_STATE(4540)] = 181085, - [SMALL_STATE(4541)] = 181113, - [SMALL_STATE(4542)] = 181143, - [SMALL_STATE(4543)] = 181195, - [SMALL_STATE(4544)] = 181221, - [SMALL_STATE(4545)] = 181251, - [SMALL_STATE(4546)] = 181277, - [SMALL_STATE(4547)] = 181303, - [SMALL_STATE(4548)] = 181333, - [SMALL_STATE(4549)] = 181359, - [SMALL_STATE(4550)] = 181411, - [SMALL_STATE(4551)] = 181439, - [SMALL_STATE(4552)] = 181491, - [SMALL_STATE(4553)] = 181519, - [SMALL_STATE(4554)] = 181549, - [SMALL_STATE(4555)] = 181581, - [SMALL_STATE(4556)] = 181609, - [SMALL_STATE(4557)] = 181633, - [SMALL_STATE(4558)] = 181663, - [SMALL_STATE(4559)] = 181691, - [SMALL_STATE(4560)] = 181721, - [SMALL_STATE(4561)] = 181745, - [SMALL_STATE(4562)] = 181777, - [SMALL_STATE(4563)] = 181807, - [SMALL_STATE(4564)] = 181837, - [SMALL_STATE(4565)] = 181867, - [SMALL_STATE(4566)] = 181897, - [SMALL_STATE(4567)] = 181921, - [SMALL_STATE(4568)] = 181951, - [SMALL_STATE(4569)] = 181977, - [SMALL_STATE(4570)] = 182029, - [SMALL_STATE(4571)] = 182057, - [SMALL_STATE(4572)] = 182081, - [SMALL_STATE(4573)] = 182125, - [SMALL_STATE(4574)] = 182151, - [SMALL_STATE(4575)] = 182179, - [SMALL_STATE(4576)] = 182207, - [SMALL_STATE(4577)] = 182253, - [SMALL_STATE(4578)] = 182305, - [SMALL_STATE(4579)] = 182329, - [SMALL_STATE(4580)] = 182359, - [SMALL_STATE(4581)] = 182389, - [SMALL_STATE(4582)] = 182419, - [SMALL_STATE(4583)] = 182449, - [SMALL_STATE(4584)] = 182473, - [SMALL_STATE(4585)] = 182497, - [SMALL_STATE(4586)] = 182521, - [SMALL_STATE(4587)] = 182546, - [SMALL_STATE(4588)] = 182575, - [SMALL_STATE(4589)] = 182604, - [SMALL_STATE(4590)] = 182635, - [SMALL_STATE(4591)] = 182660, - [SMALL_STATE(4592)] = 182689, - [SMALL_STATE(4593)] = 182716, - [SMALL_STATE(4594)] = 182745, - [SMALL_STATE(4595)] = 182770, - [SMALL_STATE(4596)] = 182799, - [SMALL_STATE(4597)] = 182828, - [SMALL_STATE(4598)] = 182855, - [SMALL_STATE(4599)] = 182884, - [SMALL_STATE(4600)] = 182913, - [SMALL_STATE(4601)] = 182942, - [SMALL_STATE(4602)] = 182971, - [SMALL_STATE(4603)] = 182998, - [SMALL_STATE(4604)] = 183027, - [SMALL_STATE(4605)] = 183052, - [SMALL_STATE(4606)] = 183079, - [SMALL_STATE(4607)] = 183108, - [SMALL_STATE(4608)] = 183133, - [SMALL_STATE(4609)] = 183158, - [SMALL_STATE(4610)] = 183187, - [SMALL_STATE(4611)] = 183228, - [SMALL_STATE(4612)] = 183253, - [SMALL_STATE(4613)] = 183282, - [SMALL_STATE(4614)] = 183311, - [SMALL_STATE(4615)] = 183336, - [SMALL_STATE(4616)] = 183361, - [SMALL_STATE(4617)] = 183390, - [SMALL_STATE(4618)] = 183415, - [SMALL_STATE(4619)] = 183440, - [SMALL_STATE(4620)] = 183465, - [SMALL_STATE(4621)] = 183490, - [SMALL_STATE(4622)] = 183515, - [SMALL_STATE(4623)] = 183540, - [SMALL_STATE(4624)] = 183569, - [SMALL_STATE(4625)] = 183594, - [SMALL_STATE(4626)] = 183623, - [SMALL_STATE(4627)] = 183652, - [SMALL_STATE(4628)] = 183677, - [SMALL_STATE(4629)] = 183706, - [SMALL_STATE(4630)] = 183729, - [SMALL_STATE(4631)] = 183754, - [SMALL_STATE(4632)] = 183779, - [SMALL_STATE(4633)] = 183808, - [SMALL_STATE(4634)] = 183833, - [SMALL_STATE(4635)] = 183862, - [SMALL_STATE(4636)] = 183893, - [SMALL_STATE(4637)] = 183922, - [SMALL_STATE(4638)] = 183947, - [SMALL_STATE(4639)] = 183976, - [SMALL_STATE(4640)] = 184001, - [SMALL_STATE(4641)] = 184026, - [SMALL_STATE(4642)] = 184051, - [SMALL_STATE(4643)] = 184076, - [SMALL_STATE(4644)] = 184101, - [SMALL_STATE(4645)] = 184126, - [SMALL_STATE(4646)] = 184151, - [SMALL_STATE(4647)] = 184176, - [SMALL_STATE(4648)] = 184199, - [SMALL_STATE(4649)] = 184228, - [SMALL_STATE(4650)] = 184253, - [SMALL_STATE(4651)] = 184282, - [SMALL_STATE(4652)] = 184307, - [SMALL_STATE(4653)] = 184336, - [SMALL_STATE(4654)] = 184361, - [SMALL_STATE(4655)] = 184386, - [SMALL_STATE(4656)] = 184411, - [SMALL_STATE(4657)] = 184436, - [SMALL_STATE(4658)] = 184461, - [SMALL_STATE(4659)] = 184486, - [SMALL_STATE(4660)] = 184515, - [SMALL_STATE(4661)] = 184540, - [SMALL_STATE(4662)] = 184569, - [SMALL_STATE(4663)] = 184594, - [SMALL_STATE(4664)] = 184619, - [SMALL_STATE(4665)] = 184646, - [SMALL_STATE(4666)] = 184671, - [SMALL_STATE(4667)] = 184696, - [SMALL_STATE(4668)] = 184725, - [SMALL_STATE(4669)] = 184750, - [SMALL_STATE(4670)] = 184775, - [SMALL_STATE(4671)] = 184798, - [SMALL_STATE(4672)] = 184823, - [SMALL_STATE(4673)] = 184848, - [SMALL_STATE(4674)] = 184873, - [SMALL_STATE(4675)] = 184898, - [SMALL_STATE(4676)] = 184923, - [SMALL_STATE(4677)] = 184948, - [SMALL_STATE(4678)] = 184975, - [SMALL_STATE(4679)] = 185002, - [SMALL_STATE(4680)] = 185033, - [SMALL_STATE(4681)] = 185058, - [SMALL_STATE(4682)] = 185083, - [SMALL_STATE(4683)] = 185112, - [SMALL_STATE(4684)] = 185137, - [SMALL_STATE(4685)] = 185166, - [SMALL_STATE(4686)] = 185191, - [SMALL_STATE(4687)] = 185216, - [SMALL_STATE(4688)] = 185241, - [SMALL_STATE(4689)] = 185266, - [SMALL_STATE(4690)] = 185291, - [SMALL_STATE(4691)] = 185316, - [SMALL_STATE(4692)] = 185347, - [SMALL_STATE(4693)] = 185374, - [SMALL_STATE(4694)] = 185403, - [SMALL_STATE(4695)] = 185432, - [SMALL_STATE(4696)] = 185461, - [SMALL_STATE(4697)] = 185486, - [SMALL_STATE(4698)] = 185515, - [SMALL_STATE(4699)] = 185544, - [SMALL_STATE(4700)] = 185569, - [SMALL_STATE(4701)] = 185596, - [SMALL_STATE(4702)] = 185621, - [SMALL_STATE(4703)] = 185650, - [SMALL_STATE(4704)] = 185679, - [SMALL_STATE(4705)] = 185704, - [SMALL_STATE(4706)] = 185729, - [SMALL_STATE(4707)] = 185758, - [SMALL_STATE(4708)] = 185803, - [SMALL_STATE(4709)] = 185828, - [SMALL_STATE(4710)] = 185857, - [SMALL_STATE(4711)] = 185882, - [SMALL_STATE(4712)] = 185911, - [SMALL_STATE(4713)] = 185940, - [SMALL_STATE(4714)] = 185965, - [SMALL_STATE(4715)] = 185990, - [SMALL_STATE(4716)] = 186015, - [SMALL_STATE(4717)] = 186040, - [SMALL_STATE(4718)] = 186065, - [SMALL_STATE(4719)] = 186094, - [SMALL_STATE(4720)] = 186119, - [SMALL_STATE(4721)] = 186144, - [SMALL_STATE(4722)] = 186167, - [SMALL_STATE(4723)] = 186192, - [SMALL_STATE(4724)] = 186221, - [SMALL_STATE(4725)] = 186246, - [SMALL_STATE(4726)] = 186271, - [SMALL_STATE(4727)] = 186296, - [SMALL_STATE(4728)] = 186321, - [SMALL_STATE(4729)] = 186350, - [SMALL_STATE(4730)] = 186375, - [SMALL_STATE(4731)] = 186398, - [SMALL_STATE(4732)] = 186423, - [SMALL_STATE(4733)] = 186452, - [SMALL_STATE(4734)] = 186479, - [SMALL_STATE(4735)] = 186504, - [SMALL_STATE(4736)] = 186529, - [SMALL_STATE(4737)] = 186558, - [SMALL_STATE(4738)] = 186583, - [SMALL_STATE(4739)] = 186608, - [SMALL_STATE(4740)] = 186635, - [SMALL_STATE(4741)] = 186662, - [SMALL_STATE(4742)] = 186687, - [SMALL_STATE(4743)] = 186716, - [SMALL_STATE(4744)] = 186741, - [SMALL_STATE(4745)] = 186766, - [SMALL_STATE(4746)] = 186811, - [SMALL_STATE(4747)] = 186836, - [SMALL_STATE(4748)] = 186861, - [SMALL_STATE(4749)] = 186886, - [SMALL_STATE(4750)] = 186913, - [SMALL_STATE(4751)] = 186938, - [SMALL_STATE(4752)] = 186963, - [SMALL_STATE(4753)] = 186988, - [SMALL_STATE(4754)] = 187013, - [SMALL_STATE(4755)] = 187038, - [SMALL_STATE(4756)] = 187063, - [SMALL_STATE(4757)] = 187088, - [SMALL_STATE(4758)] = 187113, - [SMALL_STATE(4759)] = 187137, - [SMALL_STATE(4760)] = 187163, - [SMALL_STATE(4761)] = 187187, - [SMALL_STATE(4762)] = 187211, - [SMALL_STATE(4763)] = 187235, - [SMALL_STATE(4764)] = 187279, - [SMALL_STATE(4765)] = 187303, - [SMALL_STATE(4766)] = 187325, - [SMALL_STATE(4767)] = 187363, - [SMALL_STATE(4768)] = 187387, - [SMALL_STATE(4769)] = 187411, - [SMALL_STATE(4770)] = 187435, - [SMALL_STATE(4771)] = 187459, - [SMALL_STATE(4772)] = 187501, - [SMALL_STATE(4773)] = 187525, - [SMALL_STATE(4774)] = 187547, - [SMALL_STATE(4775)] = 187571, - [SMALL_STATE(4776)] = 187595, - [SMALL_STATE(4777)] = 187619, - [SMALL_STATE(4778)] = 187643, - [SMALL_STATE(4779)] = 187667, - [SMALL_STATE(4780)] = 187689, - [SMALL_STATE(4781)] = 187711, - [SMALL_STATE(4782)] = 187735, - [SMALL_STATE(4783)] = 187759, - [SMALL_STATE(4784)] = 187783, - [SMALL_STATE(4785)] = 187807, - [SMALL_STATE(4786)] = 187831, - [SMALL_STATE(4787)] = 187855, - [SMALL_STATE(4788)] = 187879, - [SMALL_STATE(4789)] = 187903, - [SMALL_STATE(4790)] = 187927, - [SMALL_STATE(4791)] = 187951, - [SMALL_STATE(4792)] = 187975, - [SMALL_STATE(4793)] = 187999, - [SMALL_STATE(4794)] = 188021, - [SMALL_STATE(4795)] = 188045, - [SMALL_STATE(4796)] = 188069, - [SMALL_STATE(4797)] = 188091, - [SMALL_STATE(4798)] = 188115, - [SMALL_STATE(4799)] = 188139, - [SMALL_STATE(4800)] = 188161, - [SMALL_STATE(4801)] = 188185, - [SMALL_STATE(4802)] = 188209, - [SMALL_STATE(4803)] = 188233, - [SMALL_STATE(4804)] = 188257, - [SMALL_STATE(4805)] = 188279, - [SMALL_STATE(4806)] = 188303, - [SMALL_STATE(4807)] = 188327, - [SMALL_STATE(4808)] = 188351, - [SMALL_STATE(4809)] = 188375, - [SMALL_STATE(4810)] = 188399, - [SMALL_STATE(4811)] = 188423, - [SMALL_STATE(4812)] = 188447, - [SMALL_STATE(4813)] = 188471, - [SMALL_STATE(4814)] = 188495, - [SMALL_STATE(4815)] = 188519, - [SMALL_STATE(4816)] = 188543, - [SMALL_STATE(4817)] = 188565, - [SMALL_STATE(4818)] = 188589, - [SMALL_STATE(4819)] = 188611, - [SMALL_STATE(4820)] = 188635, - [SMALL_STATE(4821)] = 188659, - [SMALL_STATE(4822)] = 188683, - [SMALL_STATE(4823)] = 188707, - [SMALL_STATE(4824)] = 188731, - [SMALL_STATE(4825)] = 188755, - [SMALL_STATE(4826)] = 188779, - [SMALL_STATE(4827)] = 188803, - [SMALL_STATE(4828)] = 188827, - [SMALL_STATE(4829)] = 188849, - [SMALL_STATE(4830)] = 188873, - [SMALL_STATE(4831)] = 188899, - [SMALL_STATE(4832)] = 188925, - [SMALL_STATE(4833)] = 188971, - [SMALL_STATE(4834)] = 189013, - [SMALL_STATE(4835)] = 189037, - [SMALL_STATE(4836)] = 189061, - [SMALL_STATE(4837)] = 189095, - [SMALL_STATE(4838)] = 189119, - [SMALL_STATE(4839)] = 189143, - [SMALL_STATE(4840)] = 189165, - [SMALL_STATE(4841)] = 189189, - [SMALL_STATE(4842)] = 189215, - [SMALL_STATE(4843)] = 189239, - [SMALL_STATE(4844)] = 189263, - [SMALL_STATE(4845)] = 189305, - [SMALL_STATE(4846)] = 189329, - [SMALL_STATE(4847)] = 189353, - [SMALL_STATE(4848)] = 189377, - [SMALL_STATE(4849)] = 189401, - [SMALL_STATE(4850)] = 189425, - [SMALL_STATE(4851)] = 189447, - [SMALL_STATE(4852)] = 189493, - [SMALL_STATE(4853)] = 189517, - [SMALL_STATE(4854)] = 189541, - [SMALL_STATE(4855)] = 189565, - [SMALL_STATE(4856)] = 189587, - [SMALL_STATE(4857)] = 189625, - [SMALL_STATE(4858)] = 189649, - [SMALL_STATE(4859)] = 189673, - [SMALL_STATE(4860)] = 189695, - [SMALL_STATE(4861)] = 189741, - [SMALL_STATE(4862)] = 189787, - [SMALL_STATE(4863)] = 189811, - [SMALL_STATE(4864)] = 189833, - [SMALL_STATE(4865)] = 189857, - [SMALL_STATE(4866)] = 189881, - [SMALL_STATE(4867)] = 189927, - [SMALL_STATE(4868)] = 189951, - [SMALL_STATE(4869)] = 189989, - [SMALL_STATE(4870)] = 190013, - [SMALL_STATE(4871)] = 190037, - [SMALL_STATE(4872)] = 190061, - [SMALL_STATE(4873)] = 190085, - [SMALL_STATE(4874)] = 190109, - [SMALL_STATE(4875)] = 190131, - [SMALL_STATE(4876)] = 190173, - [SMALL_STATE(4877)] = 190195, - [SMALL_STATE(4878)] = 190217, - [SMALL_STATE(4879)] = 190243, - [SMALL_STATE(4880)] = 190267, - [SMALL_STATE(4881)] = 190291, - [SMALL_STATE(4882)] = 190315, - [SMALL_STATE(4883)] = 190339, - [SMALL_STATE(4884)] = 190363, - [SMALL_STATE(4885)] = 190387, - [SMALL_STATE(4886)] = 190411, - [SMALL_STATE(4887)] = 190435, - [SMALL_STATE(4888)] = 190461, - [SMALL_STATE(4889)] = 190485, - [SMALL_STATE(4890)] = 190531, - [SMALL_STATE(4891)] = 190555, - [SMALL_STATE(4892)] = 190577, - [SMALL_STATE(4893)] = 190601, - [SMALL_STATE(4894)] = 190625, - [SMALL_STATE(4895)] = 190649, - [SMALL_STATE(4896)] = 190695, - [SMALL_STATE(4897)] = 190719, - [SMALL_STATE(4898)] = 190763, - [SMALL_STATE(4899)] = 190787, - [SMALL_STATE(4900)] = 190811, - [SMALL_STATE(4901)] = 190835, - [SMALL_STATE(4902)] = 190859, - [SMALL_STATE(4903)] = 190883, - [SMALL_STATE(4904)] = 190905, - [SMALL_STATE(4905)] = 190927, - [SMALL_STATE(4906)] = 190951, - [SMALL_STATE(4907)] = 190975, - [SMALL_STATE(4908)] = 190999, - [SMALL_STATE(4909)] = 191023, - [SMALL_STATE(4910)] = 191069, - [SMALL_STATE(4911)] = 191115, - [SMALL_STATE(4912)] = 191139, - [SMALL_STATE(4913)] = 191163, - [SMALL_STATE(4914)] = 191187, - [SMALL_STATE(4915)] = 191213, - [SMALL_STATE(4916)] = 191259, - [SMALL_STATE(4917)] = 191281, - [SMALL_STATE(4918)] = 191305, - [SMALL_STATE(4919)] = 191329, - [SMALL_STATE(4920)] = 191353, - [SMALL_STATE(4921)] = 191377, - [SMALL_STATE(4922)] = 191417, - [SMALL_STATE(4923)] = 191441, - [SMALL_STATE(4924)] = 191465, - [SMALL_STATE(4925)] = 191489, - [SMALL_STATE(4926)] = 191513, - [SMALL_STATE(4927)] = 191537, - [SMALL_STATE(4928)] = 191561, - [SMALL_STATE(4929)] = 191585, - [SMALL_STATE(4930)] = 191609, - [SMALL_STATE(4931)] = 191633, - [SMALL_STATE(4932)] = 191675, - [SMALL_STATE(4933)] = 191701, - [SMALL_STATE(4934)] = 191725, - [SMALL_STATE(4935)] = 191749, - [SMALL_STATE(4936)] = 191773, - [SMALL_STATE(4937)] = 191797, - [SMALL_STATE(4938)] = 191821, - [SMALL_STATE(4939)] = 191845, - [SMALL_STATE(4940)] = 191867, - [SMALL_STATE(4941)] = 191891, - [SMALL_STATE(4942)] = 191915, - [SMALL_STATE(4943)] = 191939, - [SMALL_STATE(4944)] = 191963, - [SMALL_STATE(4945)] = 191985, - [SMALL_STATE(4946)] = 192009, - [SMALL_STATE(4947)] = 192033, - [SMALL_STATE(4948)] = 192057, - [SMALL_STATE(4949)] = 192080, - [SMALL_STATE(4950)] = 192101, - [SMALL_STATE(4951)] = 192124, - [SMALL_STATE(4952)] = 192147, - [SMALL_STATE(4953)] = 192170, - [SMALL_STATE(4954)] = 192193, - [SMALL_STATE(4955)] = 192216, - [SMALL_STATE(4956)] = 192239, - [SMALL_STATE(4957)] = 192260, - [SMALL_STATE(4958)] = 192281, - [SMALL_STATE(4959)] = 192302, - [SMALL_STATE(4960)] = 192323, - [SMALL_STATE(4961)] = 192344, - [SMALL_STATE(4962)] = 192365, - [SMALL_STATE(4963)] = 192386, - [SMALL_STATE(4964)] = 192407, - [SMALL_STATE(4965)] = 192428, - [SMALL_STATE(4966)] = 192449, - [SMALL_STATE(4967)] = 192470, - [SMALL_STATE(4968)] = 192511, - [SMALL_STATE(4969)] = 192532, - [SMALL_STATE(4970)] = 192553, - [SMALL_STATE(4971)] = 192574, - [SMALL_STATE(4972)] = 192595, - [SMALL_STATE(4973)] = 192616, - [SMALL_STATE(4974)] = 192637, - [SMALL_STATE(4975)] = 192664, - [SMALL_STATE(4976)] = 192685, - [SMALL_STATE(4977)] = 192706, - [SMALL_STATE(4978)] = 192727, - [SMALL_STATE(4979)] = 192748, - [SMALL_STATE(4980)] = 192775, - [SMALL_STATE(4981)] = 192816, - [SMALL_STATE(4982)] = 192839, - [SMALL_STATE(4983)] = 192876, - [SMALL_STATE(4984)] = 192897, - [SMALL_STATE(4985)] = 192918, - [SMALL_STATE(4986)] = 192939, - [SMALL_STATE(4987)] = 192960, - [SMALL_STATE(4988)] = 192981, - [SMALL_STATE(4989)] = 193002, - [SMALL_STATE(4990)] = 193029, - [SMALL_STATE(4991)] = 193050, - [SMALL_STATE(4992)] = 193071, - [SMALL_STATE(4993)] = 193092, - [SMALL_STATE(4994)] = 193113, - [SMALL_STATE(4995)] = 193134, - [SMALL_STATE(4996)] = 193155, - [SMALL_STATE(4997)] = 193176, - [SMALL_STATE(4998)] = 193199, - [SMALL_STATE(4999)] = 193236, - [SMALL_STATE(5000)] = 193257, - [SMALL_STATE(5001)] = 193280, - [SMALL_STATE(5002)] = 193301, - [SMALL_STATE(5003)] = 193322, - [SMALL_STATE(5004)] = 193343, - [SMALL_STATE(5005)] = 193366, - [SMALL_STATE(5006)] = 193387, - [SMALL_STATE(5007)] = 193408, - [SMALL_STATE(5008)] = 193429, - [SMALL_STATE(5009)] = 193450, - [SMALL_STATE(5010)] = 193473, - [SMALL_STATE(5011)] = 193494, - [SMALL_STATE(5012)] = 193515, - [SMALL_STATE(5013)] = 193536, - [SMALL_STATE(5014)] = 193557, - [SMALL_STATE(5015)] = 193578, - [SMALL_STATE(5016)] = 193599, - [SMALL_STATE(5017)] = 193620, - [SMALL_STATE(5018)] = 193641, - [SMALL_STATE(5019)] = 193662, - [SMALL_STATE(5020)] = 193683, - [SMALL_STATE(5021)] = 193704, - [SMALL_STATE(5022)] = 193743, - [SMALL_STATE(5023)] = 193782, - [SMALL_STATE(5024)] = 193823, - [SMALL_STATE(5025)] = 193864, - [SMALL_STATE(5026)] = 193903, - [SMALL_STATE(5027)] = 193942, - [SMALL_STATE(5028)] = 193981, - [SMALL_STATE(5029)] = 194020, - [SMALL_STATE(5030)] = 194061, - [SMALL_STATE(5031)] = 194100, - [SMALL_STATE(5032)] = 194121, - [SMALL_STATE(5033)] = 194142, - [SMALL_STATE(5034)] = 194183, - [SMALL_STATE(5035)] = 194204, - [SMALL_STATE(5036)] = 194225, - [SMALL_STATE(5037)] = 194266, - [SMALL_STATE(5038)] = 194287, - [SMALL_STATE(5039)] = 194310, - [SMALL_STATE(5040)] = 194333, - [SMALL_STATE(5041)] = 194374, - [SMALL_STATE(5042)] = 194395, - [SMALL_STATE(5043)] = 194418, - [SMALL_STATE(5044)] = 194441, - [SMALL_STATE(5045)] = 194482, - [SMALL_STATE(5046)] = 194521, - [SMALL_STATE(5047)] = 194560, - [SMALL_STATE(5048)] = 194599, - [SMALL_STATE(5049)] = 194638, - [SMALL_STATE(5050)] = 194659, - [SMALL_STATE(5051)] = 194680, - [SMALL_STATE(5052)] = 194703, - [SMALL_STATE(5053)] = 194724, - [SMALL_STATE(5054)] = 194745, - [SMALL_STATE(5055)] = 194766, - [SMALL_STATE(5056)] = 194793, - [SMALL_STATE(5057)] = 194814, - [SMALL_STATE(5058)] = 194841, - [SMALL_STATE(5059)] = 194880, - [SMALL_STATE(5060)] = 194903, - [SMALL_STATE(5061)] = 194926, - [SMALL_STATE(5062)] = 194949, - [SMALL_STATE(5063)] = 194972, - [SMALL_STATE(5064)] = 194999, - [SMALL_STATE(5065)] = 195020, - [SMALL_STATE(5066)] = 195043, - [SMALL_STATE(5067)] = 195066, - [SMALL_STATE(5068)] = 195089, - [SMALL_STATE(5069)] = 195110, - [SMALL_STATE(5070)] = 195149, - [SMALL_STATE(5071)] = 195188, - [SMALL_STATE(5072)] = 195227, - [SMALL_STATE(5073)] = 195250, - [SMALL_STATE(5074)] = 195273, - [SMALL_STATE(5075)] = 195296, - [SMALL_STATE(5076)] = 195319, - [SMALL_STATE(5077)] = 195342, - [SMALL_STATE(5078)] = 195365, - [SMALL_STATE(5079)] = 195388, - [SMALL_STATE(5080)] = 195411, - [SMALL_STATE(5081)] = 195434, - [SMALL_STATE(5082)] = 195455, - [SMALL_STATE(5083)] = 195478, - [SMALL_STATE(5084)] = 195501, - [SMALL_STATE(5085)] = 195522, - [SMALL_STATE(5086)] = 195545, - [SMALL_STATE(5087)] = 195568, - [SMALL_STATE(5088)] = 195591, - [SMALL_STATE(5089)] = 195614, - [SMALL_STATE(5090)] = 195637, - [SMALL_STATE(5091)] = 195664, - [SMALL_STATE(5092)] = 195687, - [SMALL_STATE(5093)] = 195710, - [SMALL_STATE(5094)] = 195737, - [SMALL_STATE(5095)] = 195758, - [SMALL_STATE(5096)] = 195781, - [SMALL_STATE(5097)] = 195802, - [SMALL_STATE(5098)] = 195829, - [SMALL_STATE(5099)] = 195856, - [SMALL_STATE(5100)] = 195879, - [SMALL_STATE(5101)] = 195906, - [SMALL_STATE(5102)] = 195941, - [SMALL_STATE(5103)] = 195978, - [SMALL_STATE(5104)] = 196013, - [SMALL_STATE(5105)] = 196048, - [SMALL_STATE(5106)] = 196083, - [SMALL_STATE(5107)] = 196106, - [SMALL_STATE(5108)] = 196143, - [SMALL_STATE(5109)] = 196164, - [SMALL_STATE(5110)] = 196185, - [SMALL_STATE(5111)] = 196226, - [SMALL_STATE(5112)] = 196259, - [SMALL_STATE(5113)] = 196283, - [SMALL_STATE(5114)] = 196319, - [SMALL_STATE(5115)] = 196351, - [SMALL_STATE(5116)] = 196377, - [SMALL_STATE(5117)] = 196401, - [SMALL_STATE(5118)] = 196427, - [SMALL_STATE(5119)] = 196453, - [SMALL_STATE(5120)] = 196491, - [SMALL_STATE(5121)] = 196523, - [SMALL_STATE(5122)] = 196545, - [SMALL_STATE(5123)] = 196567, - [SMALL_STATE(5124)] = 196599, - [SMALL_STATE(5125)] = 196623, - [SMALL_STATE(5126)] = 196661, - [SMALL_STATE(5127)] = 196693, - [SMALL_STATE(5128)] = 196725, - [SMALL_STATE(5129)] = 196761, - [SMALL_STATE(5130)] = 196789, - [SMALL_STATE(5131)] = 196813, - [SMALL_STATE(5132)] = 196837, - [SMALL_STATE(5133)] = 196863, - [SMALL_STATE(5134)] = 196893, - [SMALL_STATE(5135)] = 196919, - [SMALL_STATE(5136)] = 196955, - [SMALL_STATE(5137)] = 196979, - [SMALL_STATE(5138)] = 197011, - [SMALL_STATE(5139)] = 197049, - [SMALL_STATE(5140)] = 197075, - [SMALL_STATE(5141)] = 197107, - [SMALL_STATE(5142)] = 197133, - [SMALL_STATE(5143)] = 197165, - [SMALL_STATE(5144)] = 197191, - [SMALL_STATE(5145)] = 197217, - [SMALL_STATE(5146)] = 197243, - [SMALL_STATE(5147)] = 197275, - [SMALL_STATE(5148)] = 197313, - [SMALL_STATE(5149)] = 197337, - [SMALL_STATE(5150)] = 197373, - [SMALL_STATE(5151)] = 197399, - [SMALL_STATE(5152)] = 197423, - [SMALL_STATE(5153)] = 197453, - [SMALL_STATE(5154)] = 197483, - [SMALL_STATE(5155)] = 197515, - [SMALL_STATE(5156)] = 197547, - [SMALL_STATE(5157)] = 197581, - [SMALL_STATE(5158)] = 197615, - [SMALL_STATE(5159)] = 197649, - [SMALL_STATE(5160)] = 197683, - [SMALL_STATE(5161)] = 197717, - [SMALL_STATE(5162)] = 197751, - [SMALL_STATE(5163)] = 197787, - [SMALL_STATE(5164)] = 197813, - [SMALL_STATE(5165)] = 197834, - [SMALL_STATE(5166)] = 197867, - [SMALL_STATE(5167)] = 197902, - [SMALL_STATE(5168)] = 197937, - [SMALL_STATE(5169)] = 197972, - [SMALL_STATE(5170)] = 198007, - [SMALL_STATE(5171)] = 198042, - [SMALL_STATE(5172)] = 198077, - [SMALL_STATE(5173)] = 198112, - [SMALL_STATE(5174)] = 198133, - [SMALL_STATE(5175)] = 198154, - [SMALL_STATE(5176)] = 198181, - [SMALL_STATE(5177)] = 198214, - [SMALL_STATE(5178)] = 198247, - [SMALL_STATE(5179)] = 198282, - [SMALL_STATE(5180)] = 198317, - [SMALL_STATE(5181)] = 198350, - [SMALL_STATE(5182)] = 198371, - [SMALL_STATE(5183)] = 198398, - [SMALL_STATE(5184)] = 198433, - [SMALL_STATE(5185)] = 198468, - [SMALL_STATE(5186)] = 198493, - [SMALL_STATE(5187)] = 198528, - [SMALL_STATE(5188)] = 198563, - [SMALL_STATE(5189)] = 198584, - [SMALL_STATE(5190)] = 198609, - [SMALL_STATE(5191)] = 198630, - [SMALL_STATE(5192)] = 198651, - [SMALL_STATE(5193)] = 198672, - [SMALL_STATE(5194)] = 198707, - [SMALL_STATE(5195)] = 198740, - [SMALL_STATE(5196)] = 198771, - [SMALL_STATE(5197)] = 198790, - [SMALL_STATE(5198)] = 198811, - [SMALL_STATE(5199)] = 198834, - [SMALL_STATE(5200)] = 198869, - [SMALL_STATE(5201)] = 198902, - [SMALL_STATE(5202)] = 198921, - [SMALL_STATE(5203)] = 198944, - [SMALL_STATE(5204)] = 198969, - [SMALL_STATE(5205)] = 199004, - [SMALL_STATE(5206)] = 199039, - [SMALL_STATE(5207)] = 199074, - [SMALL_STATE(5208)] = 199109, - [SMALL_STATE(5209)] = 199128, - [SMALL_STATE(5210)] = 199163, - [SMALL_STATE(5211)] = 199188, - [SMALL_STATE(5212)] = 199215, - [SMALL_STATE(5213)] = 199240, - [SMALL_STATE(5214)] = 199275, - [SMALL_STATE(5215)] = 199310, - [SMALL_STATE(5216)] = 199333, - [SMALL_STATE(5217)] = 199364, - [SMALL_STATE(5218)] = 199383, - [SMALL_STATE(5219)] = 199418, - [SMALL_STATE(5220)] = 199453, - [SMALL_STATE(5221)] = 199488, - [SMALL_STATE(5222)] = 199523, - [SMALL_STATE(5223)] = 199546, - [SMALL_STATE(5224)] = 199569, - [SMALL_STATE(5225)] = 199590, - [SMALL_STATE(5226)] = 199615, - [SMALL_STATE(5227)] = 199640, - [SMALL_STATE(5228)] = 199671, - [SMALL_STATE(5229)] = 199706, - [SMALL_STATE(5230)] = 199737, - [SMALL_STATE(5231)] = 199768, - [SMALL_STATE(5232)] = 199803, - [SMALL_STATE(5233)] = 199838, - [SMALL_STATE(5234)] = 199869, - [SMALL_STATE(5235)] = 199888, - [SMALL_STATE(5236)] = 199907, - [SMALL_STATE(5237)] = 199942, - [SMALL_STATE(5238)] = 199977, - [SMALL_STATE(5239)] = 199998, - [SMALL_STATE(5240)] = 200033, - [SMALL_STATE(5241)] = 200068, - [SMALL_STATE(5242)] = 200089, - [SMALL_STATE(5243)] = 200122, - [SMALL_STATE(5244)] = 200155, - [SMALL_STATE(5245)] = 200190, - [SMALL_STATE(5246)] = 200225, - [SMALL_STATE(5247)] = 200260, - [SMALL_STATE(5248)] = 200283, - [SMALL_STATE(5249)] = 200318, - [SMALL_STATE(5250)] = 200339, - [SMALL_STATE(5251)] = 200364, - [SMALL_STATE(5252)] = 200399, - [SMALL_STATE(5253)] = 200434, - [SMALL_STATE(5254)] = 200459, - [SMALL_STATE(5255)] = 200484, - [SMALL_STATE(5256)] = 200503, - [SMALL_STATE(5257)] = 200532, - [SMALL_STATE(5258)] = 200561, - [SMALL_STATE(5259)] = 200590, - [SMALL_STATE(5260)] = 200613, - [SMALL_STATE(5261)] = 200633, - [SMALL_STATE(5262)] = 200663, - [SMALL_STATE(5263)] = 200693, - [SMALL_STATE(5264)] = 200723, - [SMALL_STATE(5265)] = 200747, - [SMALL_STATE(5266)] = 200771, - [SMALL_STATE(5267)] = 200795, - [SMALL_STATE(5268)] = 200817, - [SMALL_STATE(5269)] = 200837, - [SMALL_STATE(5270)] = 200867, - [SMALL_STATE(5271)] = 200897, - [SMALL_STATE(5272)] = 200921, - [SMALL_STATE(5273)] = 200943, - [SMALL_STATE(5274)] = 200973, - [SMALL_STATE(5275)] = 200993, - [SMALL_STATE(5276)] = 201023, - [SMALL_STATE(5277)] = 201043, - [SMALL_STATE(5278)] = 201075, - [SMALL_STATE(5279)] = 201097, - [SMALL_STATE(5280)] = 201127, - [SMALL_STATE(5281)] = 201147, - [SMALL_STATE(5282)] = 201177, - [SMALL_STATE(5283)] = 201197, - [SMALL_STATE(5284)] = 201227, - [SMALL_STATE(5285)] = 201257, - [SMALL_STATE(5286)] = 201287, - [SMALL_STATE(5287)] = 201317, - [SMALL_STATE(5288)] = 201347, - [SMALL_STATE(5289)] = 201377, - [SMALL_STATE(5290)] = 201397, - [SMALL_STATE(5291)] = 201417, - [SMALL_STATE(5292)] = 201447, - [SMALL_STATE(5293)] = 201477, - [SMALL_STATE(5294)] = 201507, - [SMALL_STATE(5295)] = 201537, - [SMALL_STATE(5296)] = 201565, - [SMALL_STATE(5297)] = 201595, - [SMALL_STATE(5298)] = 201625, - [SMALL_STATE(5299)] = 201655, - [SMALL_STATE(5300)] = 201679, - [SMALL_STATE(5301)] = 201709, - [SMALL_STATE(5302)] = 201731, - [SMALL_STATE(5303)] = 201761, - [SMALL_STATE(5304)] = 201791, - [SMALL_STATE(5305)] = 201821, - [SMALL_STATE(5306)] = 201851, - [SMALL_STATE(5307)] = 201873, - [SMALL_STATE(5308)] = 201903, - [SMALL_STATE(5309)] = 201923, - [SMALL_STATE(5310)] = 201947, - [SMALL_STATE(5311)] = 201969, - [SMALL_STATE(5312)] = 201999, - [SMALL_STATE(5313)] = 202023, - [SMALL_STATE(5314)] = 202053, - [SMALL_STATE(5315)] = 202073, - [SMALL_STATE(5316)] = 202103, - [SMALL_STATE(5317)] = 202127, - [SMALL_STATE(5318)] = 202147, - [SMALL_STATE(5319)] = 202169, - [SMALL_STATE(5320)] = 202189, - [SMALL_STATE(5321)] = 202211, - [SMALL_STATE(5322)] = 202235, - [SMALL_STATE(5323)] = 202265, - [SMALL_STATE(5324)] = 202295, - [SMALL_STATE(5325)] = 202315, - [SMALL_STATE(5326)] = 202345, - [SMALL_STATE(5327)] = 202375, - [SMALL_STATE(5328)] = 202395, - [SMALL_STATE(5329)] = 202425, - [SMALL_STATE(5330)] = 202455, - [SMALL_STATE(5331)] = 202487, - [SMALL_STATE(5332)] = 202509, - [SMALL_STATE(5333)] = 202539, - [SMALL_STATE(5334)] = 202561, - [SMALL_STATE(5335)] = 202591, - [SMALL_STATE(5336)] = 202621, - [SMALL_STATE(5337)] = 202651, - [SMALL_STATE(5338)] = 202681, - [SMALL_STATE(5339)] = 202705, - [SMALL_STATE(5340)] = 202735, - [SMALL_STATE(5341)] = 202765, - [SMALL_STATE(5342)] = 202795, - [SMALL_STATE(5343)] = 202817, - [SMALL_STATE(5344)] = 202847, - [SMALL_STATE(5345)] = 202877, - [SMALL_STATE(5346)] = 202897, - [SMALL_STATE(5347)] = 202927, - [SMALL_STATE(5348)] = 202957, - [SMALL_STATE(5349)] = 202979, - [SMALL_STATE(5350)] = 202999, - [SMALL_STATE(5351)] = 203019, - [SMALL_STATE(5352)] = 203049, - [SMALL_STATE(5353)] = 203069, - [SMALL_STATE(5354)] = 203099, - [SMALL_STATE(5355)] = 203129, - [SMALL_STATE(5356)] = 203159, - [SMALL_STATE(5357)] = 203189, - [SMALL_STATE(5358)] = 203219, - [SMALL_STATE(5359)] = 203246, - [SMALL_STATE(5360)] = 203273, - [SMALL_STATE(5361)] = 203300, - [SMALL_STATE(5362)] = 203327, - [SMALL_STATE(5363)] = 203348, - [SMALL_STATE(5364)] = 203375, - [SMALL_STATE(5365)] = 203394, - [SMALL_STATE(5366)] = 203423, - [SMALL_STATE(5367)] = 203448, - [SMALL_STATE(5368)] = 203473, - [SMALL_STATE(5369)] = 203498, - [SMALL_STATE(5370)] = 203523, - [SMALL_STATE(5371)] = 203548, - [SMALL_STATE(5372)] = 203573, - [SMALL_STATE(5373)] = 203598, - [SMALL_STATE(5374)] = 203623, - [SMALL_STATE(5375)] = 203648, - [SMALL_STATE(5376)] = 203673, - [SMALL_STATE(5377)] = 203698, - [SMALL_STATE(5378)] = 203723, - [SMALL_STATE(5379)] = 203748, - [SMALL_STATE(5380)] = 203773, - [SMALL_STATE(5381)] = 203798, - [SMALL_STATE(5382)] = 203823, - [SMALL_STATE(5383)] = 203848, - [SMALL_STATE(5384)] = 203873, - [SMALL_STATE(5385)] = 203898, - [SMALL_STATE(5386)] = 203921, - [SMALL_STATE(5387)] = 203946, - [SMALL_STATE(5388)] = 203973, - [SMALL_STATE(5389)] = 204000, - [SMALL_STATE(5390)] = 204027, - [SMALL_STATE(5391)] = 204054, - [SMALL_STATE(5392)] = 204081, - [SMALL_STATE(5393)] = 204108, - [SMALL_STATE(5394)] = 204135, - [SMALL_STATE(5395)] = 204162, - [SMALL_STATE(5396)] = 204189, - [SMALL_STATE(5397)] = 204216, - [SMALL_STATE(5398)] = 204243, - [SMALL_STATE(5399)] = 204270, - [SMALL_STATE(5400)] = 204297, - [SMALL_STATE(5401)] = 204324, - [SMALL_STATE(5402)] = 204351, - [SMALL_STATE(5403)] = 204378, - [SMALL_STATE(5404)] = 204405, - [SMALL_STATE(5405)] = 204432, - [SMALL_STATE(5406)] = 204459, - [SMALL_STATE(5407)] = 204486, - [SMALL_STATE(5408)] = 204513, - [SMALL_STATE(5409)] = 204540, - [SMALL_STATE(5410)] = 204567, - [SMALL_STATE(5411)] = 204596, - [SMALL_STATE(5412)] = 204615, - [SMALL_STATE(5413)] = 204642, - [SMALL_STATE(5414)] = 204669, - [SMALL_STATE(5415)] = 204696, - [SMALL_STATE(5416)] = 204723, - [SMALL_STATE(5417)] = 204742, - [SMALL_STATE(5418)] = 204769, - [SMALL_STATE(5419)] = 204788, - [SMALL_STATE(5420)] = 204807, - [SMALL_STATE(5421)] = 204826, - [SMALL_STATE(5422)] = 204845, - [SMALL_STATE(5423)] = 204870, - [SMALL_STATE(5424)] = 204889, - [SMALL_STATE(5425)] = 204912, - [SMALL_STATE(5426)] = 204931, - [SMALL_STATE(5427)] = 204950, - [SMALL_STATE(5428)] = 204969, - [SMALL_STATE(5429)] = 204998, - [SMALL_STATE(5430)] = 205019, - [SMALL_STATE(5431)] = 205040, - [SMALL_STATE(5432)] = 205059, - [SMALL_STATE(5433)] = 205078, - [SMALL_STATE(5434)] = 205097, - [SMALL_STATE(5435)] = 205124, - [SMALL_STATE(5436)] = 205147, - [SMALL_STATE(5437)] = 205174, - [SMALL_STATE(5438)] = 205199, - [SMALL_STATE(5439)] = 205220, - [SMALL_STATE(5440)] = 205247, - [SMALL_STATE(5441)] = 205268, - [SMALL_STATE(5442)] = 205291, - [SMALL_STATE(5443)] = 205310, - [SMALL_STATE(5444)] = 205339, - [SMALL_STATE(5445)] = 205366, - [SMALL_STATE(5446)] = 205387, - [SMALL_STATE(5447)] = 205406, - [SMALL_STATE(5448)] = 205425, - [SMALL_STATE(5449)] = 205452, - [SMALL_STATE(5450)] = 205479, - [SMALL_STATE(5451)] = 205506, - [SMALL_STATE(5452)] = 205525, - [SMALL_STATE(5453)] = 205544, - [SMALL_STATE(5454)] = 205563, - [SMALL_STATE(5455)] = 205582, - [SMALL_STATE(5456)] = 205605, - [SMALL_STATE(5457)] = 205626, - [SMALL_STATE(5458)] = 205653, - [SMALL_STATE(5459)] = 205678, - [SMALL_STATE(5460)] = 205705, - [SMALL_STATE(5461)] = 205732, - [SMALL_STATE(5462)] = 205761, - [SMALL_STATE(5463)] = 205784, - [SMALL_STATE(5464)] = 205809, - [SMALL_STATE(5465)] = 205832, - [SMALL_STATE(5466)] = 205851, - [SMALL_STATE(5467)] = 205874, - [SMALL_STATE(5468)] = 205901, - [SMALL_STATE(5469)] = 205920, - [SMALL_STATE(5470)] = 205939, - [SMALL_STATE(5471)] = 205968, - [SMALL_STATE(5472)] = 205987, - [SMALL_STATE(5473)] = 206006, - [SMALL_STATE(5474)] = 206035, - [SMALL_STATE(5475)] = 206062, - [SMALL_STATE(5476)] = 206081, - [SMALL_STATE(5477)] = 206102, - [SMALL_STATE(5478)] = 206129, - [SMALL_STATE(5479)] = 206148, - [SMALL_STATE(5480)] = 206167, - [SMALL_STATE(5481)] = 206188, - [SMALL_STATE(5482)] = 206215, - [SMALL_STATE(5483)] = 206234, - [SMALL_STATE(5484)] = 206261, - [SMALL_STATE(5485)] = 206288, - [SMALL_STATE(5486)] = 206315, - [SMALL_STATE(5487)] = 206334, - [SMALL_STATE(5488)] = 206361, - [SMALL_STATE(5489)] = 206388, - [SMALL_STATE(5490)] = 206409, - [SMALL_STATE(5491)] = 206430, - [SMALL_STATE(5492)] = 206459, - [SMALL_STATE(5493)] = 206480, - [SMALL_STATE(5494)] = 206499, - [SMALL_STATE(5495)] = 206520, - [SMALL_STATE(5496)] = 206541, - [SMALL_STATE(5497)] = 206570, - [SMALL_STATE(5498)] = 206597, - [SMALL_STATE(5499)] = 206618, - [SMALL_STATE(5500)] = 206645, - [SMALL_STATE(5501)] = 206672, - [SMALL_STATE(5502)] = 206691, - [SMALL_STATE(5503)] = 206717, - [SMALL_STATE(5504)] = 206735, - [SMALL_STATE(5505)] = 206761, - [SMALL_STATE(5506)] = 206785, - [SMALL_STATE(5507)] = 206805, - [SMALL_STATE(5508)] = 206831, - [SMALL_STATE(5509)] = 206857, - [SMALL_STATE(5510)] = 206875, - [SMALL_STATE(5511)] = 206901, - [SMALL_STATE(5512)] = 206923, - [SMALL_STATE(5513)] = 206949, - [SMALL_STATE(5514)] = 206967, - [SMALL_STATE(5515)] = 206993, - [SMALL_STATE(5516)] = 207019, - [SMALL_STATE(5517)] = 207045, - [SMALL_STATE(5518)] = 207063, - [SMALL_STATE(5519)] = 207083, - [SMALL_STATE(5520)] = 207101, - [SMALL_STATE(5521)] = 207119, - [SMALL_STATE(5522)] = 207145, - [SMALL_STATE(5523)] = 207171, - [SMALL_STATE(5524)] = 207197, - [SMALL_STATE(5525)] = 207215, - [SMALL_STATE(5526)] = 207241, - [SMALL_STATE(5527)] = 207261, - [SMALL_STATE(5528)] = 207281, - [SMALL_STATE(5529)] = 207307, - [SMALL_STATE(5530)] = 207325, - [SMALL_STATE(5531)] = 207351, - [SMALL_STATE(5532)] = 207377, - [SMALL_STATE(5533)] = 207403, - [SMALL_STATE(5534)] = 207423, - [SMALL_STATE(5535)] = 207441, - [SMALL_STATE(5536)] = 207467, - [SMALL_STATE(5537)] = 207485, - [SMALL_STATE(5538)] = 207511, - [SMALL_STATE(5539)] = 207537, - [SMALL_STATE(5540)] = 207563, - [SMALL_STATE(5541)] = 207589, - [SMALL_STATE(5542)] = 207613, - [SMALL_STATE(5543)] = 207639, - [SMALL_STATE(5544)] = 207667, - [SMALL_STATE(5545)] = 207693, - [SMALL_STATE(5546)] = 207719, - [SMALL_STATE(5547)] = 207745, - [SMALL_STATE(5548)] = 207765, - [SMALL_STATE(5549)] = 207791, - [SMALL_STATE(5550)] = 207817, - [SMALL_STATE(5551)] = 207837, - [SMALL_STATE(5552)] = 207859, - [SMALL_STATE(5553)] = 207885, - [SMALL_STATE(5554)] = 207909, - [SMALL_STATE(5555)] = 207935, - [SMALL_STATE(5556)] = 207961, - [SMALL_STATE(5557)] = 207987, - [SMALL_STATE(5558)] = 208013, - [SMALL_STATE(5559)] = 208039, - [SMALL_STATE(5560)] = 208063, - [SMALL_STATE(5561)] = 208083, - [SMALL_STATE(5562)] = 208109, - [SMALL_STATE(5563)] = 208135, - [SMALL_STATE(5564)] = 208161, - [SMALL_STATE(5565)] = 208187, - [SMALL_STATE(5566)] = 208213, - [SMALL_STATE(5567)] = 208241, - [SMALL_STATE(5568)] = 208261, - [SMALL_STATE(5569)] = 208287, - [SMALL_STATE(5570)] = 208313, - [SMALL_STATE(5571)] = 208339, - [SMALL_STATE(5572)] = 208365, - [SMALL_STATE(5573)] = 208391, - [SMALL_STATE(5574)] = 208407, - [SMALL_STATE(5575)] = 208433, - [SMALL_STATE(5576)] = 208451, - [SMALL_STATE(5577)] = 208473, - [SMALL_STATE(5578)] = 208491, - [SMALL_STATE(5579)] = 208507, - [SMALL_STATE(5580)] = 208533, - [SMALL_STATE(5581)] = 208551, - [SMALL_STATE(5582)] = 208569, - [SMALL_STATE(5583)] = 208587, - [SMALL_STATE(5584)] = 208613, - [SMALL_STATE(5585)] = 208639, - [SMALL_STATE(5586)] = 208665, - [SMALL_STATE(5587)] = 208683, - [SMALL_STATE(5588)] = 208709, - [SMALL_STATE(5589)] = 208731, - [SMALL_STATE(5590)] = 208751, - [SMALL_STATE(5591)] = 208777, - [SMALL_STATE(5592)] = 208795, - [SMALL_STATE(5593)] = 208821, - [SMALL_STATE(5594)] = 208837, - [SMALL_STATE(5595)] = 208863, - [SMALL_STATE(5596)] = 208889, - [SMALL_STATE(5597)] = 208915, - [SMALL_STATE(5598)] = 208941, - [SMALL_STATE(5599)] = 208959, - [SMALL_STATE(5600)] = 208985, - [SMALL_STATE(5601)] = 209005, - [SMALL_STATE(5602)] = 209029, - [SMALL_STATE(5603)] = 209053, - [SMALL_STATE(5604)] = 209075, - [SMALL_STATE(5605)] = 209101, - [SMALL_STATE(5606)] = 209125, - [SMALL_STATE(5607)] = 209141, - [SMALL_STATE(5608)] = 209167, - [SMALL_STATE(5609)] = 209193, - [SMALL_STATE(5610)] = 209219, - [SMALL_STATE(5611)] = 209245, - [SMALL_STATE(5612)] = 209271, - [SMALL_STATE(5613)] = 209291, - [SMALL_STATE(5614)] = 209317, - [SMALL_STATE(5615)] = 209335, - [SMALL_STATE(5616)] = 209361, - [SMALL_STATE(5617)] = 209379, - [SMALL_STATE(5618)] = 209397, - [SMALL_STATE(5619)] = 209415, - [SMALL_STATE(5620)] = 209441, - [SMALL_STATE(5621)] = 209467, - [SMALL_STATE(5622)] = 209487, - [SMALL_STATE(5623)] = 209513, - [SMALL_STATE(5624)] = 209533, - [SMALL_STATE(5625)] = 209559, - [SMALL_STATE(5626)] = 209579, - [SMALL_STATE(5627)] = 209605, - [SMALL_STATE(5628)] = 209631, - [SMALL_STATE(5629)] = 209657, - [SMALL_STATE(5630)] = 209675, - [SMALL_STATE(5631)] = 209699, - [SMALL_STATE(5632)] = 209723, - [SMALL_STATE(5633)] = 209749, - [SMALL_STATE(5634)] = 209774, - [SMALL_STATE(5635)] = 209797, - [SMALL_STATE(5636)] = 209820, - [SMALL_STATE(5637)] = 209845, - [SMALL_STATE(5638)] = 209870, - [SMALL_STATE(5639)] = 209893, - [SMALL_STATE(5640)] = 209918, - [SMALL_STATE(5641)] = 209943, - [SMALL_STATE(5642)] = 209968, - [SMALL_STATE(5643)] = 209991, - [SMALL_STATE(5644)] = 210016, - [SMALL_STATE(5645)] = 210041, - [SMALL_STATE(5646)] = 210066, - [SMALL_STATE(5647)] = 210091, - [SMALL_STATE(5648)] = 210116, - [SMALL_STATE(5649)] = 210141, - [SMALL_STATE(5650)] = 210166, - [SMALL_STATE(5651)] = 210189, - [SMALL_STATE(5652)] = 210214, - [SMALL_STATE(5653)] = 210239, - [SMALL_STATE(5654)] = 210264, - [SMALL_STATE(5655)] = 210287, - [SMALL_STATE(5656)] = 210310, - [SMALL_STATE(5657)] = 210335, - [SMALL_STATE(5658)] = 210360, - [SMALL_STATE(5659)] = 210377, - [SMALL_STATE(5660)] = 210400, - [SMALL_STATE(5661)] = 210417, - [SMALL_STATE(5662)] = 210442, - [SMALL_STATE(5663)] = 210467, - [SMALL_STATE(5664)] = 210492, - [SMALL_STATE(5665)] = 210515, - [SMALL_STATE(5666)] = 210532, - [SMALL_STATE(5667)] = 210557, - [SMALL_STATE(5668)] = 210580, - [SMALL_STATE(5669)] = 210605, - [SMALL_STATE(5670)] = 210630, - [SMALL_STATE(5671)] = 210651, - [SMALL_STATE(5672)] = 210674, - [SMALL_STATE(5673)] = 210699, - [SMALL_STATE(5674)] = 210722, - [SMALL_STATE(5675)] = 210747, - [SMALL_STATE(5676)] = 210772, - [SMALL_STATE(5677)] = 210797, - [SMALL_STATE(5678)] = 210820, - [SMALL_STATE(5679)] = 210839, - [SMALL_STATE(5680)] = 210864, - [SMALL_STATE(5681)] = 210887, - [SMALL_STATE(5682)] = 210906, - [SMALL_STATE(5683)] = 210931, - [SMALL_STATE(5684)] = 210956, - [SMALL_STATE(5685)] = 210979, - [SMALL_STATE(5686)] = 211004, - [SMALL_STATE(5687)] = 211021, - [SMALL_STATE(5688)] = 211042, - [SMALL_STATE(5689)] = 211067, - [SMALL_STATE(5690)] = 211090, - [SMALL_STATE(5691)] = 211109, - [SMALL_STATE(5692)] = 211134, - [SMALL_STATE(5693)] = 211157, - [SMALL_STATE(5694)] = 211182, - [SMALL_STATE(5695)] = 211207, - [SMALL_STATE(5696)] = 211230, - [SMALL_STATE(5697)] = 211255, - [SMALL_STATE(5698)] = 211274, - [SMALL_STATE(5699)] = 211299, - [SMALL_STATE(5700)] = 211322, - [SMALL_STATE(5701)] = 211347, - [SMALL_STATE(5702)] = 211370, - [SMALL_STATE(5703)] = 211393, - [SMALL_STATE(5704)] = 211416, - [SMALL_STATE(5705)] = 211435, - [SMALL_STATE(5706)] = 211458, - [SMALL_STATE(5707)] = 211477, - [SMALL_STATE(5708)] = 211502, - [SMALL_STATE(5709)] = 211525, - [SMALL_STATE(5710)] = 211550, - [SMALL_STATE(5711)] = 211575, - [SMALL_STATE(5712)] = 211600, - [SMALL_STATE(5713)] = 211623, - [SMALL_STATE(5714)] = 211642, - [SMALL_STATE(5715)] = 211667, - [SMALL_STATE(5716)] = 211690, - [SMALL_STATE(5717)] = 211713, - [SMALL_STATE(5718)] = 211736, - [SMALL_STATE(5719)] = 211761, - [SMALL_STATE(5720)] = 211778, - [SMALL_STATE(5721)] = 211795, - [SMALL_STATE(5722)] = 211820, - [SMALL_STATE(5723)] = 211837, - [SMALL_STATE(5724)] = 211860, - [SMALL_STATE(5725)] = 211885, - [SMALL_STATE(5726)] = 211910, - [SMALL_STATE(5727)] = 211931, - [SMALL_STATE(5728)] = 211954, - [SMALL_STATE(5729)] = 211977, - [SMALL_STATE(5730)] = 212002, - [SMALL_STATE(5731)] = 212027, - [SMALL_STATE(5732)] = 212050, - [SMALL_STATE(5733)] = 212073, - [SMALL_STATE(5734)] = 212096, - [SMALL_STATE(5735)] = 212121, - [SMALL_STATE(5736)] = 212146, - [SMALL_STATE(5737)] = 212169, - [SMALL_STATE(5738)] = 212190, - [SMALL_STATE(5739)] = 212207, - [SMALL_STATE(5740)] = 212230, - [SMALL_STATE(5741)] = 212253, - [SMALL_STATE(5742)] = 212278, - [SMALL_STATE(5743)] = 212303, - [SMALL_STATE(5744)] = 212326, - [SMALL_STATE(5745)] = 212349, - [SMALL_STATE(5746)] = 212372, - [SMALL_STATE(5747)] = 212397, - [SMALL_STATE(5748)] = 212422, - [SMALL_STATE(5749)] = 212445, - [SMALL_STATE(5750)] = 212470, - [SMALL_STATE(5751)] = 212495, - [SMALL_STATE(5752)] = 212518, - [SMALL_STATE(5753)] = 212535, - [SMALL_STATE(5754)] = 212552, - [SMALL_STATE(5755)] = 212571, - [SMALL_STATE(5756)] = 212596, - [SMALL_STATE(5757)] = 212621, - [SMALL_STATE(5758)] = 212644, - [SMALL_STATE(5759)] = 212661, - [SMALL_STATE(5760)] = 212682, - [SMALL_STATE(5761)] = 212707, - [SMALL_STATE(5762)] = 212732, - [SMALL_STATE(5763)] = 212755, - [SMALL_STATE(5764)] = 212780, - [SMALL_STATE(5765)] = 212805, - [SMALL_STATE(5766)] = 212828, - [SMALL_STATE(5767)] = 212849, - [SMALL_STATE(5768)] = 212872, - [SMALL_STATE(5769)] = 212897, - [SMALL_STATE(5770)] = 212920, - [SMALL_STATE(5771)] = 212943, - [SMALL_STATE(5772)] = 212966, - [SMALL_STATE(5773)] = 212989, - [SMALL_STATE(5774)] = 213012, - [SMALL_STATE(5775)] = 213035, - [SMALL_STATE(5776)] = 213058, - [SMALL_STATE(5777)] = 213081, - [SMALL_STATE(5778)] = 213104, - [SMALL_STATE(5779)] = 213127, - [SMALL_STATE(5780)] = 213150, - [SMALL_STATE(5781)] = 213173, - [SMALL_STATE(5782)] = 213198, - [SMALL_STATE(5783)] = 213221, - [SMALL_STATE(5784)] = 213244, - [SMALL_STATE(5785)] = 213267, - [SMALL_STATE(5786)] = 213290, - [SMALL_STATE(5787)] = 213313, - [SMALL_STATE(5788)] = 213336, - [SMALL_STATE(5789)] = 213359, - [SMALL_STATE(5790)] = 213382, - [SMALL_STATE(5791)] = 213405, - [SMALL_STATE(5792)] = 213430, - [SMALL_STATE(5793)] = 213451, - [SMALL_STATE(5794)] = 213472, - [SMALL_STATE(5795)] = 213493, - [SMALL_STATE(5796)] = 213510, - [SMALL_STATE(5797)] = 213531, - [SMALL_STATE(5798)] = 213556, - [SMALL_STATE(5799)] = 213581, - [SMALL_STATE(5800)] = 213606, - [SMALL_STATE(5801)] = 213627, - [SMALL_STATE(5802)] = 213644, - [SMALL_STATE(5803)] = 213665, - [SMALL_STATE(5804)] = 213688, - [SMALL_STATE(5805)] = 213707, - [SMALL_STATE(5806)] = 213732, - [SMALL_STATE(5807)] = 213751, - [SMALL_STATE(5808)] = 213776, - [SMALL_STATE(5809)] = 213797, - [SMALL_STATE(5810)] = 213822, - [SMALL_STATE(5811)] = 213845, - [SMALL_STATE(5812)] = 213870, - [SMALL_STATE(5813)] = 213895, - [SMALL_STATE(5814)] = 213920, - [SMALL_STATE(5815)] = 213943, - [SMALL_STATE(5816)] = 213964, - [SMALL_STATE(5817)] = 213985, - [SMALL_STATE(5818)] = 214006, - [SMALL_STATE(5819)] = 214027, - [SMALL_STATE(5820)] = 214048, - [SMALL_STATE(5821)] = 214069, - [SMALL_STATE(5822)] = 214094, - [SMALL_STATE(5823)] = 214119, - [SMALL_STATE(5824)] = 214136, - [SMALL_STATE(5825)] = 214157, - [SMALL_STATE(5826)] = 214178, - [SMALL_STATE(5827)] = 214199, - [SMALL_STATE(5828)] = 214222, - [SMALL_STATE(5829)] = 214243, - [SMALL_STATE(5830)] = 214262, - [SMALL_STATE(5831)] = 214281, - [SMALL_STATE(5832)] = 214306, - [SMALL_STATE(5833)] = 214331, - [SMALL_STATE(5834)] = 214348, - [SMALL_STATE(5835)] = 214373, - [SMALL_STATE(5836)] = 214396, - [SMALL_STATE(5837)] = 214421, - [SMALL_STATE(5838)] = 214438, - [SMALL_STATE(5839)] = 214461, - [SMALL_STATE(5840)] = 214480, - [SMALL_STATE(5841)] = 214505, - [SMALL_STATE(5842)] = 214530, - [SMALL_STATE(5843)] = 214549, - [SMALL_STATE(5844)] = 214574, - [SMALL_STATE(5845)] = 214599, - [SMALL_STATE(5846)] = 214620, - [SMALL_STATE(5847)] = 214645, - [SMALL_STATE(5848)] = 214666, - [SMALL_STATE(5849)] = 214683, - [SMALL_STATE(5850)] = 214708, - [SMALL_STATE(5851)] = 214733, - [SMALL_STATE(5852)] = 214750, - [SMALL_STATE(5853)] = 214767, - [SMALL_STATE(5854)] = 214784, - [SMALL_STATE(5855)] = 214807, - [SMALL_STATE(5856)] = 214824, - [SMALL_STATE(5857)] = 214847, - [SMALL_STATE(5858)] = 214868, - [SMALL_STATE(5859)] = 214891, - [SMALL_STATE(5860)] = 214910, - [SMALL_STATE(5861)] = 214933, - [SMALL_STATE(5862)] = 214956, - [SMALL_STATE(5863)] = 214973, - [SMALL_STATE(5864)] = 214994, - [SMALL_STATE(5865)] = 215019, - [SMALL_STATE(5866)] = 215044, - [SMALL_STATE(5867)] = 215069, - [SMALL_STATE(5868)] = 215094, - [SMALL_STATE(5869)] = 215119, - [SMALL_STATE(5870)] = 215142, - [SMALL_STATE(5871)] = 215167, - [SMALL_STATE(5872)] = 215190, - [SMALL_STATE(5873)] = 215213, - [SMALL_STATE(5874)] = 215236, - [SMALL_STATE(5875)] = 215255, - [SMALL_STATE(5876)] = 215274, - [SMALL_STATE(5877)] = 215295, - [SMALL_STATE(5878)] = 215318, - [SMALL_STATE(5879)] = 215337, - [SMALL_STATE(5880)] = 215356, - [SMALL_STATE(5881)] = 215375, - [SMALL_STATE(5882)] = 215394, - [SMALL_STATE(5883)] = 215411, - [SMALL_STATE(5884)] = 215436, - [SMALL_STATE(5885)] = 215459, - [SMALL_STATE(5886)] = 215484, - [SMALL_STATE(5887)] = 215507, - [SMALL_STATE(5888)] = 215532, - [SMALL_STATE(5889)] = 215557, - [SMALL_STATE(5890)] = 215580, - [SMALL_STATE(5891)] = 215605, - [SMALL_STATE(5892)] = 215622, - [SMALL_STATE(5893)] = 215643, - [SMALL_STATE(5894)] = 215664, - [SMALL_STATE(5895)] = 215687, - [SMALL_STATE(5896)] = 215704, - [SMALL_STATE(5897)] = 215725, - [SMALL_STATE(5898)] = 215748, - [SMALL_STATE(5899)] = 215770, - [SMALL_STATE(5900)] = 215792, - [SMALL_STATE(5901)] = 215808, - [SMALL_STATE(5902)] = 215830, - [SMALL_STATE(5903)] = 215852, - [SMALL_STATE(5904)] = 215870, - [SMALL_STATE(5905)] = 215888, - [SMALL_STATE(5906)] = 215906, - [SMALL_STATE(5907)] = 215924, - [SMALL_STATE(5908)] = 215946, - [SMALL_STATE(5909)] = 215964, - [SMALL_STATE(5910)] = 215986, - [SMALL_STATE(5911)] = 216008, - [SMALL_STATE(5912)] = 216030, - [SMALL_STATE(5913)] = 216052, - [SMALL_STATE(5914)] = 216074, - [SMALL_STATE(5915)] = 216096, - [SMALL_STATE(5916)] = 216118, - [SMALL_STATE(5917)] = 216132, - [SMALL_STATE(5918)] = 216146, - [SMALL_STATE(5919)] = 216168, - [SMALL_STATE(5920)] = 216188, - [SMALL_STATE(5921)] = 216204, - [SMALL_STATE(5922)] = 216218, - [SMALL_STATE(5923)] = 216234, - [SMALL_STATE(5924)] = 216248, - [SMALL_STATE(5925)] = 216266, - [SMALL_STATE(5926)] = 216286, - [SMALL_STATE(5927)] = 216300, - [SMALL_STATE(5928)] = 216322, - [SMALL_STATE(5929)] = 216344, - [SMALL_STATE(5930)] = 216366, - [SMALL_STATE(5931)] = 216388, - [SMALL_STATE(5932)] = 216406, - [SMALL_STATE(5933)] = 216424, - [SMALL_STATE(5934)] = 216442, - [SMALL_STATE(5935)] = 216462, - [SMALL_STATE(5936)] = 216482, - [SMALL_STATE(5937)] = 216502, - [SMALL_STATE(5938)] = 216518, - [SMALL_STATE(5939)] = 216534, - [SMALL_STATE(5940)] = 216552, - [SMALL_STATE(5941)] = 216568, - [SMALL_STATE(5942)] = 216586, - [SMALL_STATE(5943)] = 216608, - [SMALL_STATE(5944)] = 216624, - [SMALL_STATE(5945)] = 216646, - [SMALL_STATE(5946)] = 216668, - [SMALL_STATE(5947)] = 216682, - [SMALL_STATE(5948)] = 216698, - [SMALL_STATE(5949)] = 216714, - [SMALL_STATE(5950)] = 216732, - [SMALL_STATE(5951)] = 216752, - [SMALL_STATE(5952)] = 216772, - [SMALL_STATE(5953)] = 216794, - [SMALL_STATE(5954)] = 216816, - [SMALL_STATE(5955)] = 216838, - [SMALL_STATE(5956)] = 216860, - [SMALL_STATE(5957)] = 216882, - [SMALL_STATE(5958)] = 216904, - [SMALL_STATE(5959)] = 216922, - [SMALL_STATE(5960)] = 216944, - [SMALL_STATE(5961)] = 216966, - [SMALL_STATE(5962)] = 216982, - [SMALL_STATE(5963)] = 217000, - [SMALL_STATE(5964)] = 217020, - [SMALL_STATE(5965)] = 217042, - [SMALL_STATE(5966)] = 217064, - [SMALL_STATE(5967)] = 217086, - [SMALL_STATE(5968)] = 217108, - [SMALL_STATE(5969)] = 217130, - [SMALL_STATE(5970)] = 217152, - [SMALL_STATE(5971)] = 217172, - [SMALL_STATE(5972)] = 217194, - [SMALL_STATE(5973)] = 217216, - [SMALL_STATE(5974)] = 217238, - [SMALL_STATE(5975)] = 217256, - [SMALL_STATE(5976)] = 217278, - [SMALL_STATE(5977)] = 217300, - [SMALL_STATE(5978)] = 217320, - [SMALL_STATE(5979)] = 217336, - [SMALL_STATE(5980)] = 217358, - [SMALL_STATE(5981)] = 217380, - [SMALL_STATE(5982)] = 217402, - [SMALL_STATE(5983)] = 217424, - [SMALL_STATE(5984)] = 217446, - [SMALL_STATE(5985)] = 217468, - [SMALL_STATE(5986)] = 217490, - [SMALL_STATE(5987)] = 217512, - [SMALL_STATE(5988)] = 217534, - [SMALL_STATE(5989)] = 217550, - [SMALL_STATE(5990)] = 217566, - [SMALL_STATE(5991)] = 217588, - [SMALL_STATE(5992)] = 217610, - [SMALL_STATE(5993)] = 217628, - [SMALL_STATE(5994)] = 217650, - [SMALL_STATE(5995)] = 217672, - [SMALL_STATE(5996)] = 217692, - [SMALL_STATE(5997)] = 217714, - [SMALL_STATE(5998)] = 217732, - [SMALL_STATE(5999)] = 217754, - [SMALL_STATE(6000)] = 217776, - [SMALL_STATE(6001)] = 217798, - [SMALL_STATE(6002)] = 217820, - [SMALL_STATE(6003)] = 217842, - [SMALL_STATE(6004)] = 217864, - [SMALL_STATE(6005)] = 217880, - [SMALL_STATE(6006)] = 217902, - [SMALL_STATE(6007)] = 217924, - [SMALL_STATE(6008)] = 217946, - [SMALL_STATE(6009)] = 217962, - [SMALL_STATE(6010)] = 217978, - [SMALL_STATE(6011)] = 218000, - [SMALL_STATE(6012)] = 218022, - [SMALL_STATE(6013)] = 218044, - [SMALL_STATE(6014)] = 218064, - [SMALL_STATE(6015)] = 218082, - [SMALL_STATE(6016)] = 218098, - [SMALL_STATE(6017)] = 218120, - [SMALL_STATE(6018)] = 218142, - [SMALL_STATE(6019)] = 218164, - [SMALL_STATE(6020)] = 218180, - [SMALL_STATE(6021)] = 218202, - [SMALL_STATE(6022)] = 218224, - [SMALL_STATE(6023)] = 218246, - [SMALL_STATE(6024)] = 218268, - [SMALL_STATE(6025)] = 218286, - [SMALL_STATE(6026)] = 218308, - [SMALL_STATE(6027)] = 218330, - [SMALL_STATE(6028)] = 218348, - [SMALL_STATE(6029)] = 218366, - [SMALL_STATE(6030)] = 218388, - [SMALL_STATE(6031)] = 218408, - [SMALL_STATE(6032)] = 218426, - [SMALL_STATE(6033)] = 218446, - [SMALL_STATE(6034)] = 218464, - [SMALL_STATE(6035)] = 218486, - [SMALL_STATE(6036)] = 218508, - [SMALL_STATE(6037)] = 218528, - [SMALL_STATE(6038)] = 218546, - [SMALL_STATE(6039)] = 218568, - [SMALL_STATE(6040)] = 218590, - [SMALL_STATE(6041)] = 218610, - [SMALL_STATE(6042)] = 218628, - [SMALL_STATE(6043)] = 218650, - [SMALL_STATE(6044)] = 218672, - [SMALL_STATE(6045)] = 218694, - [SMALL_STATE(6046)] = 218716, - [SMALL_STATE(6047)] = 218738, - [SMALL_STATE(6048)] = 218760, - [SMALL_STATE(6049)] = 218782, - [SMALL_STATE(6050)] = 218804, - [SMALL_STATE(6051)] = 218826, - [SMALL_STATE(6052)] = 218848, - [SMALL_STATE(6053)] = 218870, - [SMALL_STATE(6054)] = 218892, - [SMALL_STATE(6055)] = 218914, - [SMALL_STATE(6056)] = 218936, - [SMALL_STATE(6057)] = 218958, - [SMALL_STATE(6058)] = 218980, - [SMALL_STATE(6059)] = 219002, - [SMALL_STATE(6060)] = 219022, - [SMALL_STATE(6061)] = 219044, - [SMALL_STATE(6062)] = 219066, - [SMALL_STATE(6063)] = 219088, - [SMALL_STATE(6064)] = 219110, - [SMALL_STATE(6065)] = 219132, - [SMALL_STATE(6066)] = 219154, - [SMALL_STATE(6067)] = 219176, - [SMALL_STATE(6068)] = 219198, - [SMALL_STATE(6069)] = 219220, - [SMALL_STATE(6070)] = 219242, - [SMALL_STATE(6071)] = 219264, - [SMALL_STATE(6072)] = 219286, - [SMALL_STATE(6073)] = 219308, - [SMALL_STATE(6074)] = 219330, - [SMALL_STATE(6075)] = 219352, - [SMALL_STATE(6076)] = 219374, - [SMALL_STATE(6077)] = 219396, - [SMALL_STATE(6078)] = 219418, - [SMALL_STATE(6079)] = 219440, - [SMALL_STATE(6080)] = 219462, - [SMALL_STATE(6081)] = 219484, - [SMALL_STATE(6082)] = 219502, - [SMALL_STATE(6083)] = 219522, - [SMALL_STATE(6084)] = 219540, - [SMALL_STATE(6085)] = 219560, - [SMALL_STATE(6086)] = 219580, - [SMALL_STATE(6087)] = 219598, - [SMALL_STATE(6088)] = 219616, - [SMALL_STATE(6089)] = 219634, - [SMALL_STATE(6090)] = 219652, - [SMALL_STATE(6091)] = 219670, - [SMALL_STATE(6092)] = 219688, - [SMALL_STATE(6093)] = 219710, - [SMALL_STATE(6094)] = 219732, - [SMALL_STATE(6095)] = 219750, - [SMALL_STATE(6096)] = 219772, - [SMALL_STATE(6097)] = 219785, - [SMALL_STATE(6098)] = 219802, - [SMALL_STATE(6099)] = 219817, - [SMALL_STATE(6100)] = 219836, - [SMALL_STATE(6101)] = 219849, - [SMALL_STATE(6102)] = 219868, - [SMALL_STATE(6103)] = 219887, - [SMALL_STATE(6104)] = 219906, - [SMALL_STATE(6105)] = 219925, - [SMALL_STATE(6106)] = 219944, - [SMALL_STATE(6107)] = 219963, - [SMALL_STATE(6108)] = 219982, - [SMALL_STATE(6109)] = 219995, - [SMALL_STATE(6110)] = 220014, - [SMALL_STATE(6111)] = 220033, - [SMALL_STATE(6112)] = 220046, - [SMALL_STATE(6113)] = 220061, - [SMALL_STATE(6114)] = 220074, - [SMALL_STATE(6115)] = 220091, - [SMALL_STATE(6116)] = 220110, - [SMALL_STATE(6117)] = 220123, - [SMALL_STATE(6118)] = 220136, - [SMALL_STATE(6119)] = 220155, - [SMALL_STATE(6120)] = 220170, - [SMALL_STATE(6121)] = 220187, - [SMALL_STATE(6122)] = 220200, - [SMALL_STATE(6123)] = 220213, - [SMALL_STATE(6124)] = 220226, - [SMALL_STATE(6125)] = 220245, - [SMALL_STATE(6126)] = 220258, - [SMALL_STATE(6127)] = 220273, - [SMALL_STATE(6128)] = 220292, - [SMALL_STATE(6129)] = 220309, - [SMALL_STATE(6130)] = 220324, - [SMALL_STATE(6131)] = 220341, - [SMALL_STATE(6132)] = 220358, - [SMALL_STATE(6133)] = 220377, - [SMALL_STATE(6134)] = 220394, - [SMALL_STATE(6135)] = 220407, - [SMALL_STATE(6136)] = 220420, - [SMALL_STATE(6137)] = 220435, - [SMALL_STATE(6138)] = 220448, - [SMALL_STATE(6139)] = 220461, - [SMALL_STATE(6140)] = 220480, - [SMALL_STATE(6141)] = 220499, - [SMALL_STATE(6142)] = 220518, - [SMALL_STATE(6143)] = 220537, - [SMALL_STATE(6144)] = 220556, - [SMALL_STATE(6145)] = 220575, - [SMALL_STATE(6146)] = 220594, - [SMALL_STATE(6147)] = 220613, - [SMALL_STATE(6148)] = 220626, - [SMALL_STATE(6149)] = 220643, - [SMALL_STATE(6150)] = 220660, - [SMALL_STATE(6151)] = 220673, - [SMALL_STATE(6152)] = 220686, - [SMALL_STATE(6153)] = 220703, - [SMALL_STATE(6154)] = 220722, - [SMALL_STATE(6155)] = 220735, - [SMALL_STATE(6156)] = 220748, - [SMALL_STATE(6157)] = 220761, - [SMALL_STATE(6158)] = 220780, - [SMALL_STATE(6159)] = 220799, - [SMALL_STATE(6160)] = 220818, - [SMALL_STATE(6161)] = 220837, - [SMALL_STATE(6162)] = 220856, - [SMALL_STATE(6163)] = 220875, - [SMALL_STATE(6164)] = 220894, - [SMALL_STATE(6165)] = 220913, - [SMALL_STATE(6166)] = 220926, - [SMALL_STATE(6167)] = 220939, - [SMALL_STATE(6168)] = 220952, - [SMALL_STATE(6169)] = 220969, - [SMALL_STATE(6170)] = 220986, - [SMALL_STATE(6171)] = 220999, - [SMALL_STATE(6172)] = 221018, - [SMALL_STATE(6173)] = 221035, - [SMALL_STATE(6174)] = 221054, - [SMALL_STATE(6175)] = 221071, - [SMALL_STATE(6176)] = 221084, - [SMALL_STATE(6177)] = 221099, - [SMALL_STATE(6178)] = 221118, - [SMALL_STATE(6179)] = 221137, - [SMALL_STATE(6180)] = 221156, - [SMALL_STATE(6181)] = 221175, - [SMALL_STATE(6182)] = 221194, - [SMALL_STATE(6183)] = 221213, - [SMALL_STATE(6184)] = 221232, - [SMALL_STATE(6185)] = 221251, - [SMALL_STATE(6186)] = 221270, - [SMALL_STATE(6187)] = 221289, - [SMALL_STATE(6188)] = 221302, - [SMALL_STATE(6189)] = 221315, - [SMALL_STATE(6190)] = 221328, - [SMALL_STATE(6191)] = 221345, - [SMALL_STATE(6192)] = 221364, - [SMALL_STATE(6193)] = 221381, - [SMALL_STATE(6194)] = 221396, - [SMALL_STATE(6195)] = 221413, - [SMALL_STATE(6196)] = 221430, - [SMALL_STATE(6197)] = 221449, - [SMALL_STATE(6198)] = 221466, - [SMALL_STATE(6199)] = 221485, - [SMALL_STATE(6200)] = 221498, - [SMALL_STATE(6201)] = 221511, - [SMALL_STATE(6202)] = 221530, - [SMALL_STATE(6203)] = 221543, - [SMALL_STATE(6204)] = 221562, - [SMALL_STATE(6205)] = 221581, - [SMALL_STATE(6206)] = 221600, - [SMALL_STATE(6207)] = 221619, - [SMALL_STATE(6208)] = 221638, - [SMALL_STATE(6209)] = 221657, - [SMALL_STATE(6210)] = 221676, - [SMALL_STATE(6211)] = 221695, - [SMALL_STATE(6212)] = 221712, - [SMALL_STATE(6213)] = 221725, - [SMALL_STATE(6214)] = 221738, - [SMALL_STATE(6215)] = 221757, - [SMALL_STATE(6216)] = 221774, - [SMALL_STATE(6217)] = 221793, - [SMALL_STATE(6218)] = 221812, - [SMALL_STATE(6219)] = 221829, - [SMALL_STATE(6220)] = 221848, - [SMALL_STATE(6221)] = 221867, - [SMALL_STATE(6222)] = 221886, - [SMALL_STATE(6223)] = 221905, - [SMALL_STATE(6224)] = 221924, - [SMALL_STATE(6225)] = 221943, - [SMALL_STATE(6226)] = 221962, - [SMALL_STATE(6227)] = 221981, - [SMALL_STATE(6228)] = 222000, - [SMALL_STATE(6229)] = 222019, - [SMALL_STATE(6230)] = 222036, - [SMALL_STATE(6231)] = 222049, - [SMALL_STATE(6232)] = 222066, - [SMALL_STATE(6233)] = 222085, - [SMALL_STATE(6234)] = 222100, - [SMALL_STATE(6235)] = 222115, - [SMALL_STATE(6236)] = 222130, - [SMALL_STATE(6237)] = 222147, - [SMALL_STATE(6238)] = 222166, - [SMALL_STATE(6239)] = 222183, - [SMALL_STATE(6240)] = 222200, - [SMALL_STATE(6241)] = 222215, - [SMALL_STATE(6242)] = 222228, - [SMALL_STATE(6243)] = 222247, - [SMALL_STATE(6244)] = 222260, - [SMALL_STATE(6245)] = 222279, - [SMALL_STATE(6246)] = 222298, - [SMALL_STATE(6247)] = 222317, - [SMALL_STATE(6248)] = 222336, - [SMALL_STATE(6249)] = 222355, - [SMALL_STATE(6250)] = 222374, - [SMALL_STATE(6251)] = 222393, - [SMALL_STATE(6252)] = 222412, - [SMALL_STATE(6253)] = 222425, - [SMALL_STATE(6254)] = 222438, - [SMALL_STATE(6255)] = 222451, - [SMALL_STATE(6256)] = 222468, - [SMALL_STATE(6257)] = 222487, - [SMALL_STATE(6258)] = 222500, - [SMALL_STATE(6259)] = 222517, - [SMALL_STATE(6260)] = 222536, - [SMALL_STATE(6261)] = 222549, - [SMALL_STATE(6262)] = 222562, - [SMALL_STATE(6263)] = 222581, - [SMALL_STATE(6264)] = 222600, - [SMALL_STATE(6265)] = 222619, - [SMALL_STATE(6266)] = 222638, - [SMALL_STATE(6267)] = 222657, - [SMALL_STATE(6268)] = 222676, - [SMALL_STATE(6269)] = 222695, - [SMALL_STATE(6270)] = 222714, - [SMALL_STATE(6271)] = 222729, - [SMALL_STATE(6272)] = 222748, - [SMALL_STATE(6273)] = 222761, - [SMALL_STATE(6274)] = 222774, - [SMALL_STATE(6275)] = 222791, - [SMALL_STATE(6276)] = 222806, - [SMALL_STATE(6277)] = 222823, - [SMALL_STATE(6278)] = 222838, - [SMALL_STATE(6279)] = 222853, - [SMALL_STATE(6280)] = 222872, - [SMALL_STATE(6281)] = 222891, - [SMALL_STATE(6282)] = 222910, - [SMALL_STATE(6283)] = 222929, - [SMALL_STATE(6284)] = 222948, - [SMALL_STATE(6285)] = 222967, - [SMALL_STATE(6286)] = 222986, - [SMALL_STATE(6287)] = 223005, - [SMALL_STATE(6288)] = 223024, - [SMALL_STATE(6289)] = 223043, - [SMALL_STATE(6290)] = 223062, - [SMALL_STATE(6291)] = 223075, - [SMALL_STATE(6292)] = 223090, - [SMALL_STATE(6293)] = 223107, - [SMALL_STATE(6294)] = 223126, - [SMALL_STATE(6295)] = 223139, - [SMALL_STATE(6296)] = 223156, - [SMALL_STATE(6297)] = 223171, - [SMALL_STATE(6298)] = 223186, - [SMALL_STATE(6299)] = 223205, - [SMALL_STATE(6300)] = 223224, - [SMALL_STATE(6301)] = 223243, - [SMALL_STATE(6302)] = 223262, - [SMALL_STATE(6303)] = 223281, - [SMALL_STATE(6304)] = 223300, - [SMALL_STATE(6305)] = 223319, - [SMALL_STATE(6306)] = 223338, - [SMALL_STATE(6307)] = 223357, - [SMALL_STATE(6308)] = 223370, - [SMALL_STATE(6309)] = 223383, - [SMALL_STATE(6310)] = 223396, - [SMALL_STATE(6311)] = 223413, - [SMALL_STATE(6312)] = 223428, - [SMALL_STATE(6313)] = 223441, - [SMALL_STATE(6314)] = 223458, - [SMALL_STATE(6315)] = 223471, - [SMALL_STATE(6316)] = 223484, - [SMALL_STATE(6317)] = 223497, - [SMALL_STATE(6318)] = 223516, - [SMALL_STATE(6319)] = 223535, - [SMALL_STATE(6320)] = 223554, - [SMALL_STATE(6321)] = 223573, - [SMALL_STATE(6322)] = 223592, - [SMALL_STATE(6323)] = 223611, - [SMALL_STATE(6324)] = 223630, - [SMALL_STATE(6325)] = 223649, - [SMALL_STATE(6326)] = 223662, - [SMALL_STATE(6327)] = 223675, - [SMALL_STATE(6328)] = 223688, - [SMALL_STATE(6329)] = 223701, - [SMALL_STATE(6330)] = 223718, - [SMALL_STATE(6331)] = 223731, - [SMALL_STATE(6332)] = 223744, - [SMALL_STATE(6333)] = 223761, - [SMALL_STATE(6334)] = 223774, - [SMALL_STATE(6335)] = 223787, - [SMALL_STATE(6336)] = 223800, - [SMALL_STATE(6337)] = 223819, - [SMALL_STATE(6338)] = 223838, - [SMALL_STATE(6339)] = 223857, - [SMALL_STATE(6340)] = 223876, - [SMALL_STATE(6341)] = 223895, - [SMALL_STATE(6342)] = 223914, - [SMALL_STATE(6343)] = 223933, - [SMALL_STATE(6344)] = 223952, - [SMALL_STATE(6345)] = 223965, - [SMALL_STATE(6346)] = 223978, - [SMALL_STATE(6347)] = 223995, - [SMALL_STATE(6348)] = 224012, - [SMALL_STATE(6349)] = 224025, - [SMALL_STATE(6350)] = 224042, - [SMALL_STATE(6351)] = 224057, - [SMALL_STATE(6352)] = 224070, - [SMALL_STATE(6353)] = 224083, - [SMALL_STATE(6354)] = 224102, - [SMALL_STATE(6355)] = 224121, - [SMALL_STATE(6356)] = 224140, - [SMALL_STATE(6357)] = 224159, - [SMALL_STATE(6358)] = 224178, - [SMALL_STATE(6359)] = 224197, - [SMALL_STATE(6360)] = 224216, - [SMALL_STATE(6361)] = 224235, - [SMALL_STATE(6362)] = 224252, - [SMALL_STATE(6363)] = 224265, - [SMALL_STATE(6364)] = 224278, - [SMALL_STATE(6365)] = 224295, - [SMALL_STATE(6366)] = 224308, - [SMALL_STATE(6367)] = 224325, - [SMALL_STATE(6368)] = 224342, - [SMALL_STATE(6369)] = 224357, - [SMALL_STATE(6370)] = 224376, - [SMALL_STATE(6371)] = 224395, - [SMALL_STATE(6372)] = 224414, - [SMALL_STATE(6373)] = 224433, - [SMALL_STATE(6374)] = 224452, - [SMALL_STATE(6375)] = 224471, - [SMALL_STATE(6376)] = 224490, - [SMALL_STATE(6377)] = 224509, - [SMALL_STATE(6378)] = 224522, - [SMALL_STATE(6379)] = 224535, - [SMALL_STATE(6380)] = 224548, - [SMALL_STATE(6381)] = 224565, - [SMALL_STATE(6382)] = 224584, - [SMALL_STATE(6383)] = 224601, - [SMALL_STATE(6384)] = 224620, - [SMALL_STATE(6385)] = 224639, - [SMALL_STATE(6386)] = 224658, - [SMALL_STATE(6387)] = 224677, - [SMALL_STATE(6388)] = 224696, - [SMALL_STATE(6389)] = 224715, - [SMALL_STATE(6390)] = 224734, - [SMALL_STATE(6391)] = 224753, - [SMALL_STATE(6392)] = 224766, - [SMALL_STATE(6393)] = 224783, - [SMALL_STATE(6394)] = 224800, - [SMALL_STATE(6395)] = 224819, - [SMALL_STATE(6396)] = 224838, - [SMALL_STATE(6397)] = 224857, - [SMALL_STATE(6398)] = 224876, - [SMALL_STATE(6399)] = 224895, - [SMALL_STATE(6400)] = 224914, - [SMALL_STATE(6401)] = 224933, - [SMALL_STATE(6402)] = 224952, - [SMALL_STATE(6403)] = 224971, - [SMALL_STATE(6404)] = 224984, - [SMALL_STATE(6405)] = 225001, - [SMALL_STATE(6406)] = 225018, - [SMALL_STATE(6407)] = 225037, - [SMALL_STATE(6408)] = 225056, - [SMALL_STATE(6409)] = 225075, - [SMALL_STATE(6410)] = 225094, - [SMALL_STATE(6411)] = 225113, - [SMALL_STATE(6412)] = 225132, - [SMALL_STATE(6413)] = 225151, - [SMALL_STATE(6414)] = 225170, - [SMALL_STATE(6415)] = 225189, - [SMALL_STATE(6416)] = 225208, - [SMALL_STATE(6417)] = 225221, - [SMALL_STATE(6418)] = 225238, - [SMALL_STATE(6419)] = 225255, - [SMALL_STATE(6420)] = 225274, - [SMALL_STATE(6421)] = 225293, - [SMALL_STATE(6422)] = 225312, - [SMALL_STATE(6423)] = 225331, - [SMALL_STATE(6424)] = 225350, - [SMALL_STATE(6425)] = 225369, - [SMALL_STATE(6426)] = 225388, - [SMALL_STATE(6427)] = 225407, - [SMALL_STATE(6428)] = 225426, - [SMALL_STATE(6429)] = 225443, - [SMALL_STATE(6430)] = 225456, - [SMALL_STATE(6431)] = 225473, - [SMALL_STATE(6432)] = 225490, - [SMALL_STATE(6433)] = 225503, - [SMALL_STATE(6434)] = 225520, - [SMALL_STATE(6435)] = 225537, - [SMALL_STATE(6436)] = 225550, - [SMALL_STATE(6437)] = 225567, - [SMALL_STATE(6438)] = 225584, - [SMALL_STATE(6439)] = 225597, - [SMALL_STATE(6440)] = 225614, - [SMALL_STATE(6441)] = 225631, - [SMALL_STATE(6442)] = 225644, - [SMALL_STATE(6443)] = 225661, - [SMALL_STATE(6444)] = 225678, - [SMALL_STATE(6445)] = 225691, - [SMALL_STATE(6446)] = 225708, - [SMALL_STATE(6447)] = 225725, - [SMALL_STATE(6448)] = 225738, - [SMALL_STATE(6449)] = 225755, - [SMALL_STATE(6450)] = 225772, - [SMALL_STATE(6451)] = 225785, - [SMALL_STATE(6452)] = 225802, - [SMALL_STATE(6453)] = 225819, - [SMALL_STATE(6454)] = 225836, - [SMALL_STATE(6455)] = 225849, - [SMALL_STATE(6456)] = 225866, - [SMALL_STATE(6457)] = 225883, - [SMALL_STATE(6458)] = 225902, - [SMALL_STATE(6459)] = 225915, - [SMALL_STATE(6460)] = 225932, - [SMALL_STATE(6461)] = 225949, - [SMALL_STATE(6462)] = 225962, - [SMALL_STATE(6463)] = 225979, - [SMALL_STATE(6464)] = 225996, - [SMALL_STATE(6465)] = 226009, - [SMALL_STATE(6466)] = 226022, - [SMALL_STATE(6467)] = 226039, - [SMALL_STATE(6468)] = 226056, - [SMALL_STATE(6469)] = 226069, - [SMALL_STATE(6470)] = 226086, - [SMALL_STATE(6471)] = 226103, - [SMALL_STATE(6472)] = 226116, - [SMALL_STATE(6473)] = 226133, - [SMALL_STATE(6474)] = 226150, - [SMALL_STATE(6475)] = 226163, - [SMALL_STATE(6476)] = 226180, - [SMALL_STATE(6477)] = 226197, - [SMALL_STATE(6478)] = 226210, - [SMALL_STATE(6479)] = 226223, - [SMALL_STATE(6480)] = 226240, - [SMALL_STATE(6481)] = 226257, - [SMALL_STATE(6482)] = 226270, - [SMALL_STATE(6483)] = 226287, - [SMALL_STATE(6484)] = 226304, - [SMALL_STATE(6485)] = 226317, - [SMALL_STATE(6486)] = 226334, - [SMALL_STATE(6487)] = 226351, - [SMALL_STATE(6488)] = 226370, - [SMALL_STATE(6489)] = 226383, - [SMALL_STATE(6490)] = 226400, - [SMALL_STATE(6491)] = 226417, - [SMALL_STATE(6492)] = 226432, - [SMALL_STATE(6493)] = 226445, - [SMALL_STATE(6494)] = 226462, - [SMALL_STATE(6495)] = 226479, - [SMALL_STATE(6496)] = 226492, - [SMALL_STATE(6497)] = 226509, - [SMALL_STATE(6498)] = 226526, - [SMALL_STATE(6499)] = 226539, - [SMALL_STATE(6500)] = 226556, - [SMALL_STATE(6501)] = 226573, - [SMALL_STATE(6502)] = 226586, - [SMALL_STATE(6503)] = 226603, - [SMALL_STATE(6504)] = 226620, - [SMALL_STATE(6505)] = 226633, - [SMALL_STATE(6506)] = 226650, - [SMALL_STATE(6507)] = 226667, - [SMALL_STATE(6508)] = 226680, - [SMALL_STATE(6509)] = 226697, - [SMALL_STATE(6510)] = 226714, - [SMALL_STATE(6511)] = 226731, - [SMALL_STATE(6512)] = 226748, - [SMALL_STATE(6513)] = 226765, - [SMALL_STATE(6514)] = 226782, - [SMALL_STATE(6515)] = 226799, - [SMALL_STATE(6516)] = 226816, - [SMALL_STATE(6517)] = 226833, - [SMALL_STATE(6518)] = 226850, - [SMALL_STATE(6519)] = 226867, - [SMALL_STATE(6520)] = 226884, - [SMALL_STATE(6521)] = 226897, - [SMALL_STATE(6522)] = 226910, - [SMALL_STATE(6523)] = 226923, - [SMALL_STATE(6524)] = 226942, - [SMALL_STATE(6525)] = 226955, - [SMALL_STATE(6526)] = 226972, - [SMALL_STATE(6527)] = 226991, - [SMALL_STATE(6528)] = 227004, - [SMALL_STATE(6529)] = 227017, - [SMALL_STATE(6530)] = 227032, - [SMALL_STATE(6531)] = 227045, - [SMALL_STATE(6532)] = 227060, - [SMALL_STATE(6533)] = 227079, - [SMALL_STATE(6534)] = 227098, - [SMALL_STATE(6535)] = 227113, - [SMALL_STATE(6536)] = 227132, - [SMALL_STATE(6537)] = 227147, - [SMALL_STATE(6538)] = 227164, - [SMALL_STATE(6539)] = 227179, - [SMALL_STATE(6540)] = 227194, - [SMALL_STATE(6541)] = 227209, - [SMALL_STATE(6542)] = 227224, - [SMALL_STATE(6543)] = 227241, - [SMALL_STATE(6544)] = 227256, - [SMALL_STATE(6545)] = 227271, - [SMALL_STATE(6546)] = 227288, - [SMALL_STATE(6547)] = 227305, - [SMALL_STATE(6548)] = 227318, - [SMALL_STATE(6549)] = 227333, - [SMALL_STATE(6550)] = 227352, - [SMALL_STATE(6551)] = 227365, - [SMALL_STATE(6552)] = 227378, - [SMALL_STATE(6553)] = 227391, - [SMALL_STATE(6554)] = 227404, - [SMALL_STATE(6555)] = 227417, - [SMALL_STATE(6556)] = 227430, - [SMALL_STATE(6557)] = 227449, - [SMALL_STATE(6558)] = 227462, - [SMALL_STATE(6559)] = 227475, - [SMALL_STATE(6560)] = 227494, - [SMALL_STATE(6561)] = 227511, - [SMALL_STATE(6562)] = 227530, - [SMALL_STATE(6563)] = 227545, - [SMALL_STATE(6564)] = 227558, - [SMALL_STATE(6565)] = 227577, - [SMALL_STATE(6566)] = 227592, - [SMALL_STATE(6567)] = 227611, - [SMALL_STATE(6568)] = 227628, - [SMALL_STATE(6569)] = 227645, - [SMALL_STATE(6570)] = 227662, - [SMALL_STATE(6571)] = 227681, - [SMALL_STATE(6572)] = 227696, - [SMALL_STATE(6573)] = 227715, - [SMALL_STATE(6574)] = 227734, - [SMALL_STATE(6575)] = 227751, - [SMALL_STATE(6576)] = 227768, - [SMALL_STATE(6577)] = 227787, - [SMALL_STATE(6578)] = 227806, - [SMALL_STATE(6579)] = 227825, - [SMALL_STATE(6580)] = 227844, - [SMALL_STATE(6581)] = 227863, - [SMALL_STATE(6582)] = 227882, - [SMALL_STATE(6583)] = 227901, - [SMALL_STATE(6584)] = 227920, - [SMALL_STATE(6585)] = 227933, - [SMALL_STATE(6586)] = 227946, - [SMALL_STATE(6587)] = 227965, - [SMALL_STATE(6588)] = 227984, - [SMALL_STATE(6589)] = 228001, - [SMALL_STATE(6590)] = 228020, - [SMALL_STATE(6591)] = 228039, - [SMALL_STATE(6592)] = 228058, - [SMALL_STATE(6593)] = 228073, - [SMALL_STATE(6594)] = 228090, - [SMALL_STATE(6595)] = 228109, - [SMALL_STATE(6596)] = 228126, - [SMALL_STATE(6597)] = 228143, - [SMALL_STATE(6598)] = 228160, - [SMALL_STATE(6599)] = 228175, - [SMALL_STATE(6600)] = 228192, - [SMALL_STATE(6601)] = 228207, - [SMALL_STATE(6602)] = 228222, - [SMALL_STATE(6603)] = 228235, - [SMALL_STATE(6604)] = 228248, - [SMALL_STATE(6605)] = 228267, - [SMALL_STATE(6606)] = 228286, - [SMALL_STATE(6607)] = 228301, - [SMALL_STATE(6608)] = 228320, - [SMALL_STATE(6609)] = 228333, - [SMALL_STATE(6610)] = 228348, - [SMALL_STATE(6611)] = 228361, - [SMALL_STATE(6612)] = 228374, - [SMALL_STATE(6613)] = 228393, - [SMALL_STATE(6614)] = 228412, - [SMALL_STATE(6615)] = 228431, - [SMALL_STATE(6616)] = 228444, - [SMALL_STATE(6617)] = 228461, - [SMALL_STATE(6618)] = 228478, - [SMALL_STATE(6619)] = 228491, - [SMALL_STATE(6620)] = 228504, - [SMALL_STATE(6621)] = 228519, - [SMALL_STATE(6622)] = 228532, - [SMALL_STATE(6623)] = 228545, - [SMALL_STATE(6624)] = 228558, - [SMALL_STATE(6625)] = 228571, - [SMALL_STATE(6626)] = 228584, - [SMALL_STATE(6627)] = 228603, - [SMALL_STATE(6628)] = 228618, - [SMALL_STATE(6629)] = 228631, - [SMALL_STATE(6630)] = 228644, - [SMALL_STATE(6631)] = 228657, - [SMALL_STATE(6632)] = 228676, - [SMALL_STATE(6633)] = 228691, - [SMALL_STATE(6634)] = 228704, - [SMALL_STATE(6635)] = 228721, - [SMALL_STATE(6636)] = 228738, - [SMALL_STATE(6637)] = 228751, - [SMALL_STATE(6638)] = 228770, - [SMALL_STATE(6639)] = 228789, - [SMALL_STATE(6640)] = 228806, - [SMALL_STATE(6641)] = 228825, - [SMALL_STATE(6642)] = 228840, - [SMALL_STATE(6643)] = 228859, - [SMALL_STATE(6644)] = 228876, - [SMALL_STATE(6645)] = 228893, - [SMALL_STATE(6646)] = 228912, - [SMALL_STATE(6647)] = 228925, - [SMALL_STATE(6648)] = 228944, - [SMALL_STATE(6649)] = 228963, - [SMALL_STATE(6650)] = 228980, - [SMALL_STATE(6651)] = 228999, - [SMALL_STATE(6652)] = 229014, - [SMALL_STATE(6653)] = 229033, - [SMALL_STATE(6654)] = 229052, - [SMALL_STATE(6655)] = 229067, - [SMALL_STATE(6656)] = 229084, - [SMALL_STATE(6657)] = 229101, - [SMALL_STATE(6658)] = 229120, - [SMALL_STATE(6659)] = 229139, - [SMALL_STATE(6660)] = 229154, - [SMALL_STATE(6661)] = 229167, - [SMALL_STATE(6662)] = 229186, - [SMALL_STATE(6663)] = 229205, - [SMALL_STATE(6664)] = 229219, - [SMALL_STATE(6665)] = 229235, - [SMALL_STATE(6666)] = 229251, - [SMALL_STATE(6667)] = 229267, - [SMALL_STATE(6668)] = 229283, - [SMALL_STATE(6669)] = 229299, - [SMALL_STATE(6670)] = 229315, - [SMALL_STATE(6671)] = 229331, - [SMALL_STATE(6672)] = 229347, - [SMALL_STATE(6673)] = 229359, - [SMALL_STATE(6674)] = 229375, - [SMALL_STATE(6675)] = 229391, - [SMALL_STATE(6676)] = 229405, - [SMALL_STATE(6677)] = 229417, - [SMALL_STATE(6678)] = 229433, - [SMALL_STATE(6679)] = 229449, - [SMALL_STATE(6680)] = 229465, - [SMALL_STATE(6681)] = 229477, - [SMALL_STATE(6682)] = 229493, - [SMALL_STATE(6683)] = 229509, - [SMALL_STATE(6684)] = 229523, - [SMALL_STATE(6685)] = 229539, - [SMALL_STATE(6686)] = 229555, - [SMALL_STATE(6687)] = 229571, - [SMALL_STATE(6688)] = 229587, - [SMALL_STATE(6689)] = 229603, - [SMALL_STATE(6690)] = 229619, - [SMALL_STATE(6691)] = 229633, - [SMALL_STATE(6692)] = 229649, - [SMALL_STATE(6693)] = 229665, - [SMALL_STATE(6694)] = 229681, - [SMALL_STATE(6695)] = 229693, - [SMALL_STATE(6696)] = 229705, - [SMALL_STATE(6697)] = 229721, - [SMALL_STATE(6698)] = 229737, - [SMALL_STATE(6699)] = 229749, - [SMALL_STATE(6700)] = 229765, - [SMALL_STATE(6701)] = 229777, - [SMALL_STATE(6702)] = 229793, - [SMALL_STATE(6703)] = 229805, - [SMALL_STATE(6704)] = 229817, - [SMALL_STATE(6705)] = 229833, - [SMALL_STATE(6706)] = 229849, - [SMALL_STATE(6707)] = 229865, - [SMALL_STATE(6708)] = 229877, - [SMALL_STATE(6709)] = 229893, - [SMALL_STATE(6710)] = 229909, - [SMALL_STATE(6711)] = 229925, - [SMALL_STATE(6712)] = 229939, - [SMALL_STATE(6713)] = 229955, - [SMALL_STATE(6714)] = 229969, - [SMALL_STATE(6715)] = 229985, - [SMALL_STATE(6716)] = 230001, - [SMALL_STATE(6717)] = 230015, - [SMALL_STATE(6718)] = 230027, - [SMALL_STATE(6719)] = 230043, - [SMALL_STATE(6720)] = 230055, - [SMALL_STATE(6721)] = 230067, - [SMALL_STATE(6722)] = 230079, - [SMALL_STATE(6723)] = 230091, - [SMALL_STATE(6724)] = 230103, - [SMALL_STATE(6725)] = 230119, - [SMALL_STATE(6726)] = 230131, - [SMALL_STATE(6727)] = 230147, - [SMALL_STATE(6728)] = 230159, - [SMALL_STATE(6729)] = 230171, - [SMALL_STATE(6730)] = 230183, - [SMALL_STATE(6731)] = 230199, - [SMALL_STATE(6732)] = 230215, - [SMALL_STATE(6733)] = 230227, - [SMALL_STATE(6734)] = 230243, - [SMALL_STATE(6735)] = 230255, - [SMALL_STATE(6736)] = 230267, - [SMALL_STATE(6737)] = 230281, - [SMALL_STATE(6738)] = 230297, - [SMALL_STATE(6739)] = 230313, - [SMALL_STATE(6740)] = 230329, - [SMALL_STATE(6741)] = 230345, - [SMALL_STATE(6742)] = 230361, - [SMALL_STATE(6743)] = 230377, - [SMALL_STATE(6744)] = 230393, - [SMALL_STATE(6745)] = 230409, - [SMALL_STATE(6746)] = 230425, - [SMALL_STATE(6747)] = 230441, - [SMALL_STATE(6748)] = 230453, - [SMALL_STATE(6749)] = 230469, - [SMALL_STATE(6750)] = 230481, - [SMALL_STATE(6751)] = 230493, - [SMALL_STATE(6752)] = 230505, - [SMALL_STATE(6753)] = 230521, - [SMALL_STATE(6754)] = 230533, - [SMALL_STATE(6755)] = 230549, - [SMALL_STATE(6756)] = 230565, - [SMALL_STATE(6757)] = 230579, - [SMALL_STATE(6758)] = 230593, - [SMALL_STATE(6759)] = 230609, - [SMALL_STATE(6760)] = 230621, - [SMALL_STATE(6761)] = 230633, - [SMALL_STATE(6762)] = 230649, - [SMALL_STATE(6763)] = 230665, - [SMALL_STATE(6764)] = 230681, - [SMALL_STATE(6765)] = 230697, - [SMALL_STATE(6766)] = 230713, - [SMALL_STATE(6767)] = 230729, - [SMALL_STATE(6768)] = 230745, - [SMALL_STATE(6769)] = 230759, - [SMALL_STATE(6770)] = 230775, - [SMALL_STATE(6771)] = 230787, - [SMALL_STATE(6772)] = 230803, - [SMALL_STATE(6773)] = 230819, - [SMALL_STATE(6774)] = 230831, - [SMALL_STATE(6775)] = 230843, - [SMALL_STATE(6776)] = 230859, - [SMALL_STATE(6777)] = 230871, - [SMALL_STATE(6778)] = 230883, - [SMALL_STATE(6779)] = 230895, - [SMALL_STATE(6780)] = 230909, - [SMALL_STATE(6781)] = 230925, - [SMALL_STATE(6782)] = 230939, - [SMALL_STATE(6783)] = 230955, - [SMALL_STATE(6784)] = 230967, - [SMALL_STATE(6785)] = 230979, - [SMALL_STATE(6786)] = 230993, - [SMALL_STATE(6787)] = 231005, - [SMALL_STATE(6788)] = 231021, - [SMALL_STATE(6789)] = 231033, - [SMALL_STATE(6790)] = 231049, - [SMALL_STATE(6791)] = 231063, - [SMALL_STATE(6792)] = 231075, - [SMALL_STATE(6793)] = 231091, - [SMALL_STATE(6794)] = 231107, - [SMALL_STATE(6795)] = 231123, - [SMALL_STATE(6796)] = 231135, - [SMALL_STATE(6797)] = 231151, - [SMALL_STATE(6798)] = 231163, - [SMALL_STATE(6799)] = 231179, - [SMALL_STATE(6800)] = 231195, - [SMALL_STATE(6801)] = 231211, - [SMALL_STATE(6802)] = 231227, - [SMALL_STATE(6803)] = 231243, - [SMALL_STATE(6804)] = 231255, - [SMALL_STATE(6805)] = 231267, - [SMALL_STATE(6806)] = 231281, - [SMALL_STATE(6807)] = 231297, - [SMALL_STATE(6808)] = 231309, - [SMALL_STATE(6809)] = 231321, - [SMALL_STATE(6810)] = 231337, - [SMALL_STATE(6811)] = 231353, - [SMALL_STATE(6812)] = 231369, - [SMALL_STATE(6813)] = 231381, - [SMALL_STATE(6814)] = 231397, - [SMALL_STATE(6815)] = 231413, - [SMALL_STATE(6816)] = 231429, - [SMALL_STATE(6817)] = 231443, - [SMALL_STATE(6818)] = 231459, - [SMALL_STATE(6819)] = 231475, - [SMALL_STATE(6820)] = 231491, - [SMALL_STATE(6821)] = 231507, - [SMALL_STATE(6822)] = 231521, - [SMALL_STATE(6823)] = 231537, - [SMALL_STATE(6824)] = 231553, - [SMALL_STATE(6825)] = 231567, - [SMALL_STATE(6826)] = 231581, - [SMALL_STATE(6827)] = 231597, - [SMALL_STATE(6828)] = 231613, - [SMALL_STATE(6829)] = 231627, - [SMALL_STATE(6830)] = 231641, - [SMALL_STATE(6831)] = 231653, - [SMALL_STATE(6832)] = 231667, - [SMALL_STATE(6833)] = 231683, - [SMALL_STATE(6834)] = 231699, - [SMALL_STATE(6835)] = 231713, - [SMALL_STATE(6836)] = 231729, - [SMALL_STATE(6837)] = 231743, - [SMALL_STATE(6838)] = 231759, - [SMALL_STATE(6839)] = 231773, - [SMALL_STATE(6840)] = 231785, - [SMALL_STATE(6841)] = 231801, - [SMALL_STATE(6842)] = 231817, - [SMALL_STATE(6843)] = 231833, - [SMALL_STATE(6844)] = 231849, - [SMALL_STATE(6845)] = 231865, - [SMALL_STATE(6846)] = 231879, - [SMALL_STATE(6847)] = 231893, - [SMALL_STATE(6848)] = 231909, - [SMALL_STATE(6849)] = 231925, - [SMALL_STATE(6850)] = 231941, - [SMALL_STATE(6851)] = 231955, - [SMALL_STATE(6852)] = 231969, - [SMALL_STATE(6853)] = 231981, - [SMALL_STATE(6854)] = 231995, - [SMALL_STATE(6855)] = 232011, - [SMALL_STATE(6856)] = 232025, - [SMALL_STATE(6857)] = 232039, - [SMALL_STATE(6858)] = 232051, - [SMALL_STATE(6859)] = 232067, - [SMALL_STATE(6860)] = 232083, - [SMALL_STATE(6861)] = 232099, - [SMALL_STATE(6862)] = 232111, - [SMALL_STATE(6863)] = 232123, - [SMALL_STATE(6864)] = 232137, - [SMALL_STATE(6865)] = 232153, - [SMALL_STATE(6866)] = 232169, - [SMALL_STATE(6867)] = 232185, - [SMALL_STATE(6868)] = 232201, - [SMALL_STATE(6869)] = 232217, - [SMALL_STATE(6870)] = 232231, - [SMALL_STATE(6871)] = 232247, - [SMALL_STATE(6872)] = 232263, - [SMALL_STATE(6873)] = 232279, - [SMALL_STATE(6874)] = 232295, - [SMALL_STATE(6875)] = 232311, - [SMALL_STATE(6876)] = 232327, - [SMALL_STATE(6877)] = 232343, - [SMALL_STATE(6878)] = 232355, - [SMALL_STATE(6879)] = 232369, - [SMALL_STATE(6880)] = 232385, - [SMALL_STATE(6881)] = 232401, - [SMALL_STATE(6882)] = 232417, - [SMALL_STATE(6883)] = 232431, - [SMALL_STATE(6884)] = 232447, - [SMALL_STATE(6885)] = 232463, - [SMALL_STATE(6886)] = 232477, - [SMALL_STATE(6887)] = 232493, - [SMALL_STATE(6888)] = 232509, - [SMALL_STATE(6889)] = 232521, - [SMALL_STATE(6890)] = 232537, - [SMALL_STATE(6891)] = 232553, - [SMALL_STATE(6892)] = 232569, - [SMALL_STATE(6893)] = 232585, - [SMALL_STATE(6894)] = 232599, - [SMALL_STATE(6895)] = 232615, - [SMALL_STATE(6896)] = 232631, - [SMALL_STATE(6897)] = 232647, - [SMALL_STATE(6898)] = 232659, - [SMALL_STATE(6899)] = 232671, - [SMALL_STATE(6900)] = 232687, - [SMALL_STATE(6901)] = 232699, - [SMALL_STATE(6902)] = 232711, - [SMALL_STATE(6903)] = 232723, - [SMALL_STATE(6904)] = 232735, - [SMALL_STATE(6905)] = 232747, - [SMALL_STATE(6906)] = 232763, - [SMALL_STATE(6907)] = 232775, - [SMALL_STATE(6908)] = 232791, - [SMALL_STATE(6909)] = 232807, - [SMALL_STATE(6910)] = 232819, - [SMALL_STATE(6911)] = 232835, - [SMALL_STATE(6912)] = 232851, - [SMALL_STATE(6913)] = 232867, - [SMALL_STATE(6914)] = 232879, - [SMALL_STATE(6915)] = 232895, - [SMALL_STATE(6916)] = 232907, - [SMALL_STATE(6917)] = 232923, - [SMALL_STATE(6918)] = 232939, - [SMALL_STATE(6919)] = 232955, - [SMALL_STATE(6920)] = 232967, - [SMALL_STATE(6921)] = 232983, - [SMALL_STATE(6922)] = 232995, - [SMALL_STATE(6923)] = 233011, - [SMALL_STATE(6924)] = 233025, - [SMALL_STATE(6925)] = 233041, - [SMALL_STATE(6926)] = 233057, - [SMALL_STATE(6927)] = 233073, - [SMALL_STATE(6928)] = 233089, - [SMALL_STATE(6929)] = 233105, - [SMALL_STATE(6930)] = 233121, - [SMALL_STATE(6931)] = 233137, - [SMALL_STATE(6932)] = 233149, - [SMALL_STATE(6933)] = 233165, - [SMALL_STATE(6934)] = 233181, - [SMALL_STATE(6935)] = 233197, - [SMALL_STATE(6936)] = 233213, - [SMALL_STATE(6937)] = 233229, - [SMALL_STATE(6938)] = 233241, - [SMALL_STATE(6939)] = 233253, - [SMALL_STATE(6940)] = 233269, - [SMALL_STATE(6941)] = 233285, - [SMALL_STATE(6942)] = 233301, - [SMALL_STATE(6943)] = 233317, - [SMALL_STATE(6944)] = 233333, - [SMALL_STATE(6945)] = 233349, - [SMALL_STATE(6946)] = 233361, - [SMALL_STATE(6947)] = 233377, - [SMALL_STATE(6948)] = 233391, - [SMALL_STATE(6949)] = 233405, - [SMALL_STATE(6950)] = 233421, - [SMALL_STATE(6951)] = 233437, - [SMALL_STATE(6952)] = 233453, - [SMALL_STATE(6953)] = 233465, - [SMALL_STATE(6954)] = 233479, - [SMALL_STATE(6955)] = 233493, - [SMALL_STATE(6956)] = 233505, - [SMALL_STATE(6957)] = 233517, - [SMALL_STATE(6958)] = 233529, - [SMALL_STATE(6959)] = 233545, - [SMALL_STATE(6960)] = 233561, - [SMALL_STATE(6961)] = 233577, - [SMALL_STATE(6962)] = 233593, - [SMALL_STATE(6963)] = 233607, - [SMALL_STATE(6964)] = 233623, - [SMALL_STATE(6965)] = 233639, - [SMALL_STATE(6966)] = 233655, - [SMALL_STATE(6967)] = 233667, - [SMALL_STATE(6968)] = 233683, - [SMALL_STATE(6969)] = 233695, - [SMALL_STATE(6970)] = 233711, - [SMALL_STATE(6971)] = 233727, - [SMALL_STATE(6972)] = 233743, - [SMALL_STATE(6973)] = 233759, - [SMALL_STATE(6974)] = 233775, - [SMALL_STATE(6975)] = 233791, - [SMALL_STATE(6976)] = 233807, - [SMALL_STATE(6977)] = 233823, - [SMALL_STATE(6978)] = 233839, - [SMALL_STATE(6979)] = 233855, - [SMALL_STATE(6980)] = 233871, - [SMALL_STATE(6981)] = 233887, - [SMALL_STATE(6982)] = 233903, - [SMALL_STATE(6983)] = 233915, - [SMALL_STATE(6984)] = 233927, - [SMALL_STATE(6985)] = 233943, - [SMALL_STATE(6986)] = 233959, - [SMALL_STATE(6987)] = 233975, - [SMALL_STATE(6988)] = 233987, - [SMALL_STATE(6989)] = 234003, - [SMALL_STATE(6990)] = 234015, - [SMALL_STATE(6991)] = 234029, - [SMALL_STATE(6992)] = 234045, - [SMALL_STATE(6993)] = 234061, - [SMALL_STATE(6994)] = 234077, - [SMALL_STATE(6995)] = 234093, - [SMALL_STATE(6996)] = 234109, - [SMALL_STATE(6997)] = 234125, - [SMALL_STATE(6998)] = 234141, - [SMALL_STATE(6999)] = 234157, - [SMALL_STATE(7000)] = 234173, - [SMALL_STATE(7001)] = 234189, - [SMALL_STATE(7002)] = 234201, - [SMALL_STATE(7003)] = 234217, - [SMALL_STATE(7004)] = 234229, - [SMALL_STATE(7005)] = 234241, - [SMALL_STATE(7006)] = 234253, - [SMALL_STATE(7007)] = 234265, - [SMALL_STATE(7008)] = 234277, - [SMALL_STATE(7009)] = 234293, - [SMALL_STATE(7010)] = 234309, - [SMALL_STATE(7011)] = 234321, - [SMALL_STATE(7012)] = 234335, - [SMALL_STATE(7013)] = 234351, - [SMALL_STATE(7014)] = 234367, - [SMALL_STATE(7015)] = 234383, - [SMALL_STATE(7016)] = 234399, - [SMALL_STATE(7017)] = 234413, - [SMALL_STATE(7018)] = 234427, - [SMALL_STATE(7019)] = 234443, - [SMALL_STATE(7020)] = 234459, - [SMALL_STATE(7021)] = 234471, - [SMALL_STATE(7022)] = 234483, - [SMALL_STATE(7023)] = 234497, - [SMALL_STATE(7024)] = 234513, - [SMALL_STATE(7025)] = 234525, - [SMALL_STATE(7026)] = 234541, - [SMALL_STATE(7027)] = 234555, - [SMALL_STATE(7028)] = 234571, - [SMALL_STATE(7029)] = 234585, - [SMALL_STATE(7030)] = 234597, - [SMALL_STATE(7031)] = 234613, - [SMALL_STATE(7032)] = 234627, - [SMALL_STATE(7033)] = 234639, - [SMALL_STATE(7034)] = 234655, - [SMALL_STATE(7035)] = 234669, - [SMALL_STATE(7036)] = 234683, - [SMALL_STATE(7037)] = 234699, - [SMALL_STATE(7038)] = 234711, - [SMALL_STATE(7039)] = 234723, - [SMALL_STATE(7040)] = 234737, - [SMALL_STATE(7041)] = 234753, - [SMALL_STATE(7042)] = 234769, - [SMALL_STATE(7043)] = 234781, - [SMALL_STATE(7044)] = 234793, - [SMALL_STATE(7045)] = 234809, - [SMALL_STATE(7046)] = 234825, - [SMALL_STATE(7047)] = 234841, - [SMALL_STATE(7048)] = 234857, - [SMALL_STATE(7049)] = 234871, - [SMALL_STATE(7050)] = 234887, - [SMALL_STATE(7051)] = 234903, - [SMALL_STATE(7052)] = 234917, - [SMALL_STATE(7053)] = 234929, - [SMALL_STATE(7054)] = 234945, - [SMALL_STATE(7055)] = 234957, - [SMALL_STATE(7056)] = 234971, - [SMALL_STATE(7057)] = 234987, - [SMALL_STATE(7058)] = 235003, - [SMALL_STATE(7059)] = 235017, - [SMALL_STATE(7060)] = 235033, - [SMALL_STATE(7061)] = 235045, - [SMALL_STATE(7062)] = 235061, - [SMALL_STATE(7063)] = 235077, - [SMALL_STATE(7064)] = 235091, - [SMALL_STATE(7065)] = 235107, - [SMALL_STATE(7066)] = 235123, - [SMALL_STATE(7067)] = 235139, - [SMALL_STATE(7068)] = 235153, - [SMALL_STATE(7069)] = 235169, - [SMALL_STATE(7070)] = 235185, - [SMALL_STATE(7071)] = 235199, - [SMALL_STATE(7072)] = 235213, - [SMALL_STATE(7073)] = 235229, - [SMALL_STATE(7074)] = 235245, - [SMALL_STATE(7075)] = 235261, - [SMALL_STATE(7076)] = 235273, - [SMALL_STATE(7077)] = 235289, - [SMALL_STATE(7078)] = 235305, - [SMALL_STATE(7079)] = 235321, - [SMALL_STATE(7080)] = 235337, - [SMALL_STATE(7081)] = 235353, - [SMALL_STATE(7082)] = 235367, - [SMALL_STATE(7083)] = 235381, - [SMALL_STATE(7084)] = 235395, - [SMALL_STATE(7085)] = 235411, - [SMALL_STATE(7086)] = 235427, - [SMALL_STATE(7087)] = 235441, - [SMALL_STATE(7088)] = 235457, - [SMALL_STATE(7089)] = 235473, - [SMALL_STATE(7090)] = 235485, - [SMALL_STATE(7091)] = 235501, - [SMALL_STATE(7092)] = 235517, - [SMALL_STATE(7093)] = 235529, - [SMALL_STATE(7094)] = 235541, - [SMALL_STATE(7095)] = 235553, - [SMALL_STATE(7096)] = 235567, - [SMALL_STATE(7097)] = 235581, - [SMALL_STATE(7098)] = 235595, - [SMALL_STATE(7099)] = 235611, - [SMALL_STATE(7100)] = 235623, - [SMALL_STATE(7101)] = 235639, - [SMALL_STATE(7102)] = 235651, - [SMALL_STATE(7103)] = 235665, - [SMALL_STATE(7104)] = 235679, - [SMALL_STATE(7105)] = 235693, - [SMALL_STATE(7106)] = 235709, - [SMALL_STATE(7107)] = 235721, - [SMALL_STATE(7108)] = 235733, - [SMALL_STATE(7109)] = 235745, - [SMALL_STATE(7110)] = 235759, - [SMALL_STATE(7111)] = 235771, - [SMALL_STATE(7112)] = 235787, - [SMALL_STATE(7113)] = 235803, - [SMALL_STATE(7114)] = 235819, - [SMALL_STATE(7115)] = 235835, - [SMALL_STATE(7116)] = 235851, - [SMALL_STATE(7117)] = 235867, - [SMALL_STATE(7118)] = 235883, - [SMALL_STATE(7119)] = 235895, - [SMALL_STATE(7120)] = 235911, - [SMALL_STATE(7121)] = 235927, - [SMALL_STATE(7122)] = 235941, - [SMALL_STATE(7123)] = 235953, - [SMALL_STATE(7124)] = 235967, - [SMALL_STATE(7125)] = 235983, - [SMALL_STATE(7126)] = 235999, - [SMALL_STATE(7127)] = 236013, - [SMALL_STATE(7128)] = 236027, - [SMALL_STATE(7129)] = 236043, - [SMALL_STATE(7130)] = 236059, - [SMALL_STATE(7131)] = 236075, - [SMALL_STATE(7132)] = 236091, - [SMALL_STATE(7133)] = 236103, - [SMALL_STATE(7134)] = 236117, - [SMALL_STATE(7135)] = 236131, - [SMALL_STATE(7136)] = 236147, - [SMALL_STATE(7137)] = 236161, - [SMALL_STATE(7138)] = 236177, - [SMALL_STATE(7139)] = 236193, - [SMALL_STATE(7140)] = 236209, - [SMALL_STATE(7141)] = 236225, - [SMALL_STATE(7142)] = 236241, - [SMALL_STATE(7143)] = 236253, - [SMALL_STATE(7144)] = 236267, - [SMALL_STATE(7145)] = 236281, - [SMALL_STATE(7146)] = 236295, - [SMALL_STATE(7147)] = 236311, - [SMALL_STATE(7148)] = 236327, - [SMALL_STATE(7149)] = 236343, - [SMALL_STATE(7150)] = 236359, - [SMALL_STATE(7151)] = 236373, - [SMALL_STATE(7152)] = 236387, - [SMALL_STATE(7153)] = 236401, - [SMALL_STATE(7154)] = 236417, - [SMALL_STATE(7155)] = 236433, - [SMALL_STATE(7156)] = 236449, - [SMALL_STATE(7157)] = 236465, - [SMALL_STATE(7158)] = 236481, - [SMALL_STATE(7159)] = 236495, - [SMALL_STATE(7160)] = 236509, - [SMALL_STATE(7161)] = 236523, - [SMALL_STATE(7162)] = 236539, - [SMALL_STATE(7163)] = 236555, - [SMALL_STATE(7164)] = 236571, - [SMALL_STATE(7165)] = 236587, - [SMALL_STATE(7166)] = 236601, - [SMALL_STATE(7167)] = 236615, - [SMALL_STATE(7168)] = 236629, - [SMALL_STATE(7169)] = 236645, - [SMALL_STATE(7170)] = 236661, - [SMALL_STATE(7171)] = 236677, - [SMALL_STATE(7172)] = 236693, - [SMALL_STATE(7173)] = 236709, - [SMALL_STATE(7174)] = 236725, - [SMALL_STATE(7175)] = 236739, - [SMALL_STATE(7176)] = 236755, - [SMALL_STATE(7177)] = 236769, - [SMALL_STATE(7178)] = 236785, - [SMALL_STATE(7179)] = 236801, - [SMALL_STATE(7180)] = 236817, - [SMALL_STATE(7181)] = 236833, - [SMALL_STATE(7182)] = 236849, - [SMALL_STATE(7183)] = 236863, - [SMALL_STATE(7184)] = 236877, - [SMALL_STATE(7185)] = 236889, - [SMALL_STATE(7186)] = 236905, - [SMALL_STATE(7187)] = 236921, - [SMALL_STATE(7188)] = 236937, - [SMALL_STATE(7189)] = 236953, - [SMALL_STATE(7190)] = 236969, - [SMALL_STATE(7191)] = 236983, - [SMALL_STATE(7192)] = 236997, - [SMALL_STATE(7193)] = 237013, - [SMALL_STATE(7194)] = 237029, - [SMALL_STATE(7195)] = 237045, - [SMALL_STATE(7196)] = 237061, - [SMALL_STATE(7197)] = 237075, - [SMALL_STATE(7198)] = 237091, - [SMALL_STATE(7199)] = 237105, - [SMALL_STATE(7200)] = 237121, - [SMALL_STATE(7201)] = 237137, - [SMALL_STATE(7202)] = 237153, - [SMALL_STATE(7203)] = 237169, - [SMALL_STATE(7204)] = 237185, - [SMALL_STATE(7205)] = 237199, - [SMALL_STATE(7206)] = 237215, - [SMALL_STATE(7207)] = 237229, - [SMALL_STATE(7208)] = 237245, - [SMALL_STATE(7209)] = 237261, - [SMALL_STATE(7210)] = 237277, - [SMALL_STATE(7211)] = 237293, - [SMALL_STATE(7212)] = 237309, - [SMALL_STATE(7213)] = 237323, - [SMALL_STATE(7214)] = 237337, - [SMALL_STATE(7215)] = 237353, - [SMALL_STATE(7216)] = 237369, - [SMALL_STATE(7217)] = 237383, - [SMALL_STATE(7218)] = 237399, - [SMALL_STATE(7219)] = 237415, - [SMALL_STATE(7220)] = 237429, - [SMALL_STATE(7221)] = 237443, - [SMALL_STATE(7222)] = 237457, - [SMALL_STATE(7223)] = 237473, - [SMALL_STATE(7224)] = 237489, - [SMALL_STATE(7225)] = 237505, - [SMALL_STATE(7226)] = 237521, - [SMALL_STATE(7227)] = 237535, - [SMALL_STATE(7228)] = 237549, - [SMALL_STATE(7229)] = 237565, - [SMALL_STATE(7230)] = 237581, - [SMALL_STATE(7231)] = 237597, - [SMALL_STATE(7232)] = 237613, - [SMALL_STATE(7233)] = 237627, - [SMALL_STATE(7234)] = 237641, - [SMALL_STATE(7235)] = 237653, - [SMALL_STATE(7236)] = 237669, - [SMALL_STATE(7237)] = 237685, - [SMALL_STATE(7238)] = 237701, - [SMALL_STATE(7239)] = 237717, - [SMALL_STATE(7240)] = 237731, - [SMALL_STATE(7241)] = 237745, - [SMALL_STATE(7242)] = 237761, - [SMALL_STATE(7243)] = 237777, - [SMALL_STATE(7244)] = 237793, - [SMALL_STATE(7245)] = 237809, - [SMALL_STATE(7246)] = 237823, - [SMALL_STATE(7247)] = 237837, - [SMALL_STATE(7248)] = 237853, - [SMALL_STATE(7249)] = 237869, - [SMALL_STATE(7250)] = 237883, - [SMALL_STATE(7251)] = 237899, - [SMALL_STATE(7252)] = 237915, - [SMALL_STATE(7253)] = 237929, - [SMALL_STATE(7254)] = 237943, - [SMALL_STATE(7255)] = 237959, - [SMALL_STATE(7256)] = 237975, - [SMALL_STATE(7257)] = 237991, - [SMALL_STATE(7258)] = 238007, - [SMALL_STATE(7259)] = 238021, - [SMALL_STATE(7260)] = 238035, - [SMALL_STATE(7261)] = 238047, - [SMALL_STATE(7262)] = 238063, - [SMALL_STATE(7263)] = 238079, - [SMALL_STATE(7264)] = 238095, - [SMALL_STATE(7265)] = 238111, - [SMALL_STATE(7266)] = 238125, - [SMALL_STATE(7267)] = 238139, - [SMALL_STATE(7268)] = 238155, - [SMALL_STATE(7269)] = 238171, - [SMALL_STATE(7270)] = 238187, - [SMALL_STATE(7271)] = 238203, - [SMALL_STATE(7272)] = 238217, - [SMALL_STATE(7273)] = 238231, - [SMALL_STATE(7274)] = 238245, - [SMALL_STATE(7275)] = 238257, - [SMALL_STATE(7276)] = 238273, - [SMALL_STATE(7277)] = 238289, - [SMALL_STATE(7278)] = 238305, - [SMALL_STATE(7279)] = 238319, - [SMALL_STATE(7280)] = 238333, - [SMALL_STATE(7281)] = 238347, - [SMALL_STATE(7282)] = 238363, - [SMALL_STATE(7283)] = 238379, - [SMALL_STATE(7284)] = 238395, - [SMALL_STATE(7285)] = 238409, - [SMALL_STATE(7286)] = 238421, - [SMALL_STATE(7287)] = 238437, - [SMALL_STATE(7288)] = 238453, - [SMALL_STATE(7289)] = 238465, - [SMALL_STATE(7290)] = 238479, - [SMALL_STATE(7291)] = 238491, - [SMALL_STATE(7292)] = 238507, - [SMALL_STATE(7293)] = 238523, - [SMALL_STATE(7294)] = 238537, - [SMALL_STATE(7295)] = 238550, - [SMALL_STATE(7296)] = 238561, - [SMALL_STATE(7297)] = 238574, - [SMALL_STATE(7298)] = 238587, - [SMALL_STATE(7299)] = 238600, - [SMALL_STATE(7300)] = 238613, - [SMALL_STATE(7301)] = 238626, - [SMALL_STATE(7302)] = 238639, - [SMALL_STATE(7303)] = 238652, - [SMALL_STATE(7304)] = 238665, - [SMALL_STATE(7305)] = 238678, - [SMALL_STATE(7306)] = 238691, - [SMALL_STATE(7307)] = 238704, - [SMALL_STATE(7308)] = 238717, - [SMALL_STATE(7309)] = 238730, - [SMALL_STATE(7310)] = 238743, - [SMALL_STATE(7311)] = 238756, - [SMALL_STATE(7312)] = 238769, - [SMALL_STATE(7313)] = 238782, - [SMALL_STATE(7314)] = 238795, - [SMALL_STATE(7315)] = 238808, - [SMALL_STATE(7316)] = 238821, - [SMALL_STATE(7317)] = 238834, - [SMALL_STATE(7318)] = 238847, - [SMALL_STATE(7319)] = 238860, - [SMALL_STATE(7320)] = 238873, - [SMALL_STATE(7321)] = 238886, - [SMALL_STATE(7322)] = 238899, - [SMALL_STATE(7323)] = 238912, - [SMALL_STATE(7324)] = 238925, - [SMALL_STATE(7325)] = 238938, - [SMALL_STATE(7326)] = 238951, - [SMALL_STATE(7327)] = 238964, - [SMALL_STATE(7328)] = 238977, - [SMALL_STATE(7329)] = 238990, - [SMALL_STATE(7330)] = 239003, - [SMALL_STATE(7331)] = 239016, - [SMALL_STATE(7332)] = 239029, - [SMALL_STATE(7333)] = 239042, - [SMALL_STATE(7334)] = 239055, - [SMALL_STATE(7335)] = 239068, - [SMALL_STATE(7336)] = 239081, - [SMALL_STATE(7337)] = 239094, - [SMALL_STATE(7338)] = 239107, - [SMALL_STATE(7339)] = 239120, - [SMALL_STATE(7340)] = 239133, - [SMALL_STATE(7341)] = 239146, - [SMALL_STATE(7342)] = 239159, - [SMALL_STATE(7343)] = 239172, - [SMALL_STATE(7344)] = 239185, - [SMALL_STATE(7345)] = 239198, - [SMALL_STATE(7346)] = 239211, - [SMALL_STATE(7347)] = 239224, - [SMALL_STATE(7348)] = 239237, - [SMALL_STATE(7349)] = 239250, - [SMALL_STATE(7350)] = 239263, - [SMALL_STATE(7351)] = 239276, - [SMALL_STATE(7352)] = 239289, - [SMALL_STATE(7353)] = 239302, - [SMALL_STATE(7354)] = 239315, - [SMALL_STATE(7355)] = 239328, - [SMALL_STATE(7356)] = 239341, - [SMALL_STATE(7357)] = 239352, - [SMALL_STATE(7358)] = 239365, - [SMALL_STATE(7359)] = 239378, - [SMALL_STATE(7360)] = 239391, - [SMALL_STATE(7361)] = 239404, - [SMALL_STATE(7362)] = 239417, - [SMALL_STATE(7363)] = 239430, - [SMALL_STATE(7364)] = 239443, - [SMALL_STATE(7365)] = 239456, - [SMALL_STATE(7366)] = 239467, - [SMALL_STATE(7367)] = 239480, - [SMALL_STATE(7368)] = 239493, - [SMALL_STATE(7369)] = 239506, - [SMALL_STATE(7370)] = 239519, - [SMALL_STATE(7371)] = 239532, - [SMALL_STATE(7372)] = 239545, - [SMALL_STATE(7373)] = 239558, - [SMALL_STATE(7374)] = 239571, - [SMALL_STATE(7375)] = 239584, - [SMALL_STATE(7376)] = 239597, - [SMALL_STATE(7377)] = 239610, - [SMALL_STATE(7378)] = 239623, - [SMALL_STATE(7379)] = 239636, - [SMALL_STATE(7380)] = 239647, - [SMALL_STATE(7381)] = 239660, - [SMALL_STATE(7382)] = 239673, - [SMALL_STATE(7383)] = 239686, - [SMALL_STATE(7384)] = 239699, - [SMALL_STATE(7385)] = 239712, - [SMALL_STATE(7386)] = 239725, - [SMALL_STATE(7387)] = 239738, - [SMALL_STATE(7388)] = 239751, - [SMALL_STATE(7389)] = 239764, - [SMALL_STATE(7390)] = 239777, - [SMALL_STATE(7391)] = 239790, - [SMALL_STATE(7392)] = 239803, - [SMALL_STATE(7393)] = 239814, - [SMALL_STATE(7394)] = 239827, - [SMALL_STATE(7395)] = 239840, - [SMALL_STATE(7396)] = 239851, - [SMALL_STATE(7397)] = 239864, - [SMALL_STATE(7398)] = 239877, - [SMALL_STATE(7399)] = 239890, - [SMALL_STATE(7400)] = 239903, - [SMALL_STATE(7401)] = 239916, - [SMALL_STATE(7402)] = 239929, - [SMALL_STATE(7403)] = 239942, - [SMALL_STATE(7404)] = 239955, - [SMALL_STATE(7405)] = 239968, - [SMALL_STATE(7406)] = 239981, - [SMALL_STATE(7407)] = 239994, - [SMALL_STATE(7408)] = 240007, - [SMALL_STATE(7409)] = 240020, - [SMALL_STATE(7410)] = 240033, - [SMALL_STATE(7411)] = 240046, - [SMALL_STATE(7412)] = 240059, - [SMALL_STATE(7413)] = 240072, - [SMALL_STATE(7414)] = 240085, - [SMALL_STATE(7415)] = 240098, - [SMALL_STATE(7416)] = 240111, - [SMALL_STATE(7417)] = 240124, - [SMALL_STATE(7418)] = 240137, - [SMALL_STATE(7419)] = 240150, - [SMALL_STATE(7420)] = 240163, - [SMALL_STATE(7421)] = 240176, - [SMALL_STATE(7422)] = 240189, - [SMALL_STATE(7423)] = 240202, - [SMALL_STATE(7424)] = 240215, - [SMALL_STATE(7425)] = 240228, - [SMALL_STATE(7426)] = 240241, - [SMALL_STATE(7427)] = 240254, - [SMALL_STATE(7428)] = 240267, - [SMALL_STATE(7429)] = 240280, - [SMALL_STATE(7430)] = 240293, - [SMALL_STATE(7431)] = 240306, - [SMALL_STATE(7432)] = 240319, - [SMALL_STATE(7433)] = 240332, - [SMALL_STATE(7434)] = 240345, - [SMALL_STATE(7435)] = 240358, - [SMALL_STATE(7436)] = 240371, - [SMALL_STATE(7437)] = 240382, - [SMALL_STATE(7438)] = 240395, - [SMALL_STATE(7439)] = 240408, - [SMALL_STATE(7440)] = 240421, - [SMALL_STATE(7441)] = 240434, - [SMALL_STATE(7442)] = 240447, - [SMALL_STATE(7443)] = 240460, - [SMALL_STATE(7444)] = 240473, - [SMALL_STATE(7445)] = 240486, - [SMALL_STATE(7446)] = 240499, - [SMALL_STATE(7447)] = 240512, - [SMALL_STATE(7448)] = 240525, - [SMALL_STATE(7449)] = 240538, - [SMALL_STATE(7450)] = 240551, - [SMALL_STATE(7451)] = 240564, - [SMALL_STATE(7452)] = 240577, - [SMALL_STATE(7453)] = 240590, - [SMALL_STATE(7454)] = 240603, - [SMALL_STATE(7455)] = 240616, - [SMALL_STATE(7456)] = 240629, - [SMALL_STATE(7457)] = 240642, - [SMALL_STATE(7458)] = 240655, - [SMALL_STATE(7459)] = 240668, - [SMALL_STATE(7460)] = 240681, - [SMALL_STATE(7461)] = 240694, - [SMALL_STATE(7462)] = 240707, - [SMALL_STATE(7463)] = 240720, - [SMALL_STATE(7464)] = 240733, - [SMALL_STATE(7465)] = 240746, - [SMALL_STATE(7466)] = 240759, - [SMALL_STATE(7467)] = 240772, - [SMALL_STATE(7468)] = 240785, - [SMALL_STATE(7469)] = 240798, - [SMALL_STATE(7470)] = 240811, - [SMALL_STATE(7471)] = 240824, - [SMALL_STATE(7472)] = 240834, - [SMALL_STATE(7473)] = 240844, - [SMALL_STATE(7474)] = 240854, - [SMALL_STATE(7475)] = 240864, - [SMALL_STATE(7476)] = 240874, - [SMALL_STATE(7477)] = 240884, - [SMALL_STATE(7478)] = 240894, - [SMALL_STATE(7479)] = 240904, - [SMALL_STATE(7480)] = 240914, - [SMALL_STATE(7481)] = 240924, - [SMALL_STATE(7482)] = 240934, - [SMALL_STATE(7483)] = 240944, - [SMALL_STATE(7484)] = 240954, - [SMALL_STATE(7485)] = 240964, - [SMALL_STATE(7486)] = 240974, - [SMALL_STATE(7487)] = 240984, - [SMALL_STATE(7488)] = 240994, - [SMALL_STATE(7489)] = 241004, - [SMALL_STATE(7490)] = 241014, - [SMALL_STATE(7491)] = 241024, - [SMALL_STATE(7492)] = 241034, - [SMALL_STATE(7493)] = 241044, - [SMALL_STATE(7494)] = 241054, - [SMALL_STATE(7495)] = 241064, - [SMALL_STATE(7496)] = 241074, - [SMALL_STATE(7497)] = 241084, - [SMALL_STATE(7498)] = 241094, - [SMALL_STATE(7499)] = 241104, - [SMALL_STATE(7500)] = 241114, - [SMALL_STATE(7501)] = 241124, - [SMALL_STATE(7502)] = 241134, - [SMALL_STATE(7503)] = 241144, - [SMALL_STATE(7504)] = 241154, - [SMALL_STATE(7505)] = 241164, - [SMALL_STATE(7506)] = 241174, - [SMALL_STATE(7507)] = 241184, - [SMALL_STATE(7508)] = 241194, - [SMALL_STATE(7509)] = 241204, - [SMALL_STATE(7510)] = 241214, - [SMALL_STATE(7511)] = 241224, - [SMALL_STATE(7512)] = 241234, - [SMALL_STATE(7513)] = 241244, - [SMALL_STATE(7514)] = 241254, - [SMALL_STATE(7515)] = 241264, - [SMALL_STATE(7516)] = 241274, - [SMALL_STATE(7517)] = 241284, - [SMALL_STATE(7518)] = 241294, - [SMALL_STATE(7519)] = 241304, - [SMALL_STATE(7520)] = 241314, - [SMALL_STATE(7521)] = 241324, - [SMALL_STATE(7522)] = 241334, - [SMALL_STATE(7523)] = 241344, - [SMALL_STATE(7524)] = 241354, - [SMALL_STATE(7525)] = 241364, - [SMALL_STATE(7526)] = 241374, - [SMALL_STATE(7527)] = 241384, - [SMALL_STATE(7528)] = 241394, - [SMALL_STATE(7529)] = 241404, - [SMALL_STATE(7530)] = 241414, - [SMALL_STATE(7531)] = 241424, - [SMALL_STATE(7532)] = 241434, - [SMALL_STATE(7533)] = 241444, - [SMALL_STATE(7534)] = 241454, - [SMALL_STATE(7535)] = 241464, - [SMALL_STATE(7536)] = 241474, - [SMALL_STATE(7537)] = 241484, - [SMALL_STATE(7538)] = 241494, - [SMALL_STATE(7539)] = 241504, - [SMALL_STATE(7540)] = 241514, - [SMALL_STATE(7541)] = 241524, - [SMALL_STATE(7542)] = 241534, - [SMALL_STATE(7543)] = 241544, - [SMALL_STATE(7544)] = 241554, - [SMALL_STATE(7545)] = 241564, - [SMALL_STATE(7546)] = 241574, - [SMALL_STATE(7547)] = 241584, - [SMALL_STATE(7548)] = 241594, - [SMALL_STATE(7549)] = 241604, - [SMALL_STATE(7550)] = 241614, - [SMALL_STATE(7551)] = 241624, - [SMALL_STATE(7552)] = 241634, - [SMALL_STATE(7553)] = 241644, - [SMALL_STATE(7554)] = 241654, - [SMALL_STATE(7555)] = 241664, - [SMALL_STATE(7556)] = 241674, - [SMALL_STATE(7557)] = 241684, - [SMALL_STATE(7558)] = 241694, - [SMALL_STATE(7559)] = 241704, - [SMALL_STATE(7560)] = 241714, - [SMALL_STATE(7561)] = 241724, - [SMALL_STATE(7562)] = 241734, - [SMALL_STATE(7563)] = 241744, - [SMALL_STATE(7564)] = 241754, - [SMALL_STATE(7565)] = 241764, - [SMALL_STATE(7566)] = 241774, - [SMALL_STATE(7567)] = 241784, - [SMALL_STATE(7568)] = 241794, - [SMALL_STATE(7569)] = 241804, - [SMALL_STATE(7570)] = 241814, - [SMALL_STATE(7571)] = 241824, - [SMALL_STATE(7572)] = 241834, - [SMALL_STATE(7573)] = 241844, - [SMALL_STATE(7574)] = 241854, - [SMALL_STATE(7575)] = 241864, - [SMALL_STATE(7576)] = 241874, - [SMALL_STATE(7577)] = 241884, - [SMALL_STATE(7578)] = 241894, - [SMALL_STATE(7579)] = 241904, - [SMALL_STATE(7580)] = 241914, - [SMALL_STATE(7581)] = 241924, - [SMALL_STATE(7582)] = 241934, - [SMALL_STATE(7583)] = 241944, - [SMALL_STATE(7584)] = 241954, - [SMALL_STATE(7585)] = 241964, - [SMALL_STATE(7586)] = 241974, - [SMALL_STATE(7587)] = 241984, - [SMALL_STATE(7588)] = 241994, - [SMALL_STATE(7589)] = 242004, - [SMALL_STATE(7590)] = 242014, - [SMALL_STATE(7591)] = 242024, - [SMALL_STATE(7592)] = 242034, - [SMALL_STATE(7593)] = 242044, - [SMALL_STATE(7594)] = 242054, - [SMALL_STATE(7595)] = 242064, - [SMALL_STATE(7596)] = 242074, - [SMALL_STATE(7597)] = 242084, - [SMALL_STATE(7598)] = 242094, - [SMALL_STATE(7599)] = 242104, - [SMALL_STATE(7600)] = 242114, - [SMALL_STATE(7601)] = 242124, - [SMALL_STATE(7602)] = 242134, - [SMALL_STATE(7603)] = 242144, - [SMALL_STATE(7604)] = 242154, - [SMALL_STATE(7605)] = 242164, - [SMALL_STATE(7606)] = 242174, - [SMALL_STATE(7607)] = 242184, - [SMALL_STATE(7608)] = 242194, - [SMALL_STATE(7609)] = 242204, - [SMALL_STATE(7610)] = 242214, - [SMALL_STATE(7611)] = 242224, - [SMALL_STATE(7612)] = 242234, - [SMALL_STATE(7613)] = 242244, - [SMALL_STATE(7614)] = 242254, - [SMALL_STATE(7615)] = 242264, - [SMALL_STATE(7616)] = 242274, - [SMALL_STATE(7617)] = 242284, - [SMALL_STATE(7618)] = 242294, - [SMALL_STATE(7619)] = 242304, - [SMALL_STATE(7620)] = 242314, - [SMALL_STATE(7621)] = 242324, - [SMALL_STATE(7622)] = 242334, - [SMALL_STATE(7623)] = 242344, - [SMALL_STATE(7624)] = 242354, - [SMALL_STATE(7625)] = 242364, - [SMALL_STATE(7626)] = 242374, - [SMALL_STATE(7627)] = 242384, - [SMALL_STATE(7628)] = 242394, - [SMALL_STATE(7629)] = 242404, - [SMALL_STATE(7630)] = 242414, - [SMALL_STATE(7631)] = 242424, - [SMALL_STATE(7632)] = 242434, - [SMALL_STATE(7633)] = 242444, - [SMALL_STATE(7634)] = 242454, - [SMALL_STATE(7635)] = 242464, - [SMALL_STATE(7636)] = 242474, - [SMALL_STATE(7637)] = 242484, - [SMALL_STATE(7638)] = 242494, - [SMALL_STATE(7639)] = 242504, - [SMALL_STATE(7640)] = 242514, - [SMALL_STATE(7641)] = 242524, - [SMALL_STATE(7642)] = 242534, - [SMALL_STATE(7643)] = 242544, - [SMALL_STATE(7644)] = 242554, - [SMALL_STATE(7645)] = 242564, - [SMALL_STATE(7646)] = 242574, - [SMALL_STATE(7647)] = 242584, - [SMALL_STATE(7648)] = 242594, - [SMALL_STATE(7649)] = 242604, - [SMALL_STATE(7650)] = 242614, - [SMALL_STATE(7651)] = 242624, - [SMALL_STATE(7652)] = 242634, - [SMALL_STATE(7653)] = 242644, - [SMALL_STATE(7654)] = 242654, - [SMALL_STATE(7655)] = 242664, - [SMALL_STATE(7656)] = 242674, - [SMALL_STATE(7657)] = 242684, - [SMALL_STATE(7658)] = 242694, - [SMALL_STATE(7659)] = 242704, - [SMALL_STATE(7660)] = 242714, - [SMALL_STATE(7661)] = 242724, - [SMALL_STATE(7662)] = 242734, - [SMALL_STATE(7663)] = 242744, - [SMALL_STATE(7664)] = 242754, - [SMALL_STATE(7665)] = 242764, - [SMALL_STATE(7666)] = 242774, - [SMALL_STATE(7667)] = 242784, - [SMALL_STATE(7668)] = 242794, - [SMALL_STATE(7669)] = 242804, - [SMALL_STATE(7670)] = 242814, - [SMALL_STATE(7671)] = 242824, - [SMALL_STATE(7672)] = 242834, - [SMALL_STATE(7673)] = 242844, - [SMALL_STATE(7674)] = 242854, - [SMALL_STATE(7675)] = 242864, - [SMALL_STATE(7676)] = 242874, - [SMALL_STATE(7677)] = 242884, - [SMALL_STATE(7678)] = 242894, - [SMALL_STATE(7679)] = 242904, - [SMALL_STATE(7680)] = 242914, - [SMALL_STATE(7681)] = 242924, - [SMALL_STATE(7682)] = 242934, - [SMALL_STATE(7683)] = 242944, - [SMALL_STATE(7684)] = 242954, - [SMALL_STATE(7685)] = 242964, - [SMALL_STATE(7686)] = 242974, - [SMALL_STATE(7687)] = 242984, - [SMALL_STATE(7688)] = 242994, - [SMALL_STATE(7689)] = 243004, - [SMALL_STATE(7690)] = 243014, - [SMALL_STATE(7691)] = 243024, - [SMALL_STATE(7692)] = 243034, - [SMALL_STATE(7693)] = 243044, - [SMALL_STATE(7694)] = 243054, - [SMALL_STATE(7695)] = 243064, - [SMALL_STATE(7696)] = 243074, - [SMALL_STATE(7697)] = 243084, - [SMALL_STATE(7698)] = 243094, - [SMALL_STATE(7699)] = 243104, - [SMALL_STATE(7700)] = 243114, - [SMALL_STATE(7701)] = 243124, - [SMALL_STATE(7702)] = 243134, - [SMALL_STATE(7703)] = 243144, - [SMALL_STATE(7704)] = 243154, - [SMALL_STATE(7705)] = 243164, - [SMALL_STATE(7706)] = 243174, - [SMALL_STATE(7707)] = 243184, - [SMALL_STATE(7708)] = 243194, - [SMALL_STATE(7709)] = 243204, - [SMALL_STATE(7710)] = 243214, - [SMALL_STATE(7711)] = 243224, - [SMALL_STATE(7712)] = 243234, - [SMALL_STATE(7713)] = 243244, - [SMALL_STATE(7714)] = 243254, - [SMALL_STATE(7715)] = 243264, - [SMALL_STATE(7716)] = 243274, - [SMALL_STATE(7717)] = 243284, - [SMALL_STATE(7718)] = 243294, - [SMALL_STATE(7719)] = 243304, - [SMALL_STATE(7720)] = 243314, - [SMALL_STATE(7721)] = 243324, - [SMALL_STATE(7722)] = 243334, - [SMALL_STATE(7723)] = 243344, - [SMALL_STATE(7724)] = 243354, - [SMALL_STATE(7725)] = 243364, - [SMALL_STATE(7726)] = 243374, - [SMALL_STATE(7727)] = 243384, - [SMALL_STATE(7728)] = 243394, - [SMALL_STATE(7729)] = 243404, - [SMALL_STATE(7730)] = 243414, - [SMALL_STATE(7731)] = 243424, - [SMALL_STATE(7732)] = 243434, - [SMALL_STATE(7733)] = 243444, - [SMALL_STATE(7734)] = 243454, - [SMALL_STATE(7735)] = 243464, - [SMALL_STATE(7736)] = 243474, - [SMALL_STATE(7737)] = 243484, - [SMALL_STATE(7738)] = 243494, - [SMALL_STATE(7739)] = 243504, - [SMALL_STATE(7740)] = 243514, - [SMALL_STATE(7741)] = 243524, - [SMALL_STATE(7742)] = 243534, - [SMALL_STATE(7743)] = 243544, - [SMALL_STATE(7744)] = 243554, - [SMALL_STATE(7745)] = 243564, - [SMALL_STATE(7746)] = 243574, - [SMALL_STATE(7747)] = 243584, - [SMALL_STATE(7748)] = 243594, - [SMALL_STATE(7749)] = 243604, - [SMALL_STATE(7750)] = 243614, - [SMALL_STATE(7751)] = 243624, - [SMALL_STATE(7752)] = 243634, - [SMALL_STATE(7753)] = 243644, - [SMALL_STATE(7754)] = 243654, - [SMALL_STATE(7755)] = 243664, - [SMALL_STATE(7756)] = 243674, - [SMALL_STATE(7757)] = 243684, - [SMALL_STATE(7758)] = 243694, - [SMALL_STATE(7759)] = 243704, - [SMALL_STATE(7760)] = 243714, - [SMALL_STATE(7761)] = 243724, - [SMALL_STATE(7762)] = 243734, - [SMALL_STATE(7763)] = 243744, - [SMALL_STATE(7764)] = 243754, - [SMALL_STATE(7765)] = 243764, - [SMALL_STATE(7766)] = 243774, - [SMALL_STATE(7767)] = 243784, - [SMALL_STATE(7768)] = 243794, - [SMALL_STATE(7769)] = 243804, - [SMALL_STATE(7770)] = 243814, - [SMALL_STATE(7771)] = 243824, - [SMALL_STATE(7772)] = 243834, - [SMALL_STATE(7773)] = 243844, - [SMALL_STATE(7774)] = 243854, - [SMALL_STATE(7775)] = 243864, - [SMALL_STATE(7776)] = 243874, - [SMALL_STATE(7777)] = 243884, - [SMALL_STATE(7778)] = 243894, - [SMALL_STATE(7779)] = 243904, - [SMALL_STATE(7780)] = 243914, - [SMALL_STATE(7781)] = 243924, - [SMALL_STATE(7782)] = 243934, - [SMALL_STATE(7783)] = 243944, - [SMALL_STATE(7784)] = 243954, - [SMALL_STATE(7785)] = 243964, - [SMALL_STATE(7786)] = 243974, - [SMALL_STATE(7787)] = 243984, - [SMALL_STATE(7788)] = 243994, - [SMALL_STATE(7789)] = 244004, - [SMALL_STATE(7790)] = 244014, - [SMALL_STATE(7791)] = 244024, - [SMALL_STATE(7792)] = 244034, - [SMALL_STATE(7793)] = 244044, - [SMALL_STATE(7794)] = 244054, - [SMALL_STATE(7795)] = 244064, - [SMALL_STATE(7796)] = 244074, - [SMALL_STATE(7797)] = 244084, - [SMALL_STATE(7798)] = 244094, - [SMALL_STATE(7799)] = 244104, - [SMALL_STATE(7800)] = 244114, - [SMALL_STATE(7801)] = 244124, - [SMALL_STATE(7802)] = 244134, - [SMALL_STATE(7803)] = 244144, - [SMALL_STATE(7804)] = 244154, - [SMALL_STATE(7805)] = 244164, - [SMALL_STATE(7806)] = 244174, - [SMALL_STATE(7807)] = 244184, - [SMALL_STATE(7808)] = 244194, - [SMALL_STATE(7809)] = 244204, - [SMALL_STATE(7810)] = 244214, - [SMALL_STATE(7811)] = 244224, - [SMALL_STATE(7812)] = 244234, - [SMALL_STATE(7813)] = 244244, - [SMALL_STATE(7814)] = 244254, - [SMALL_STATE(7815)] = 244264, - [SMALL_STATE(7816)] = 244274, + [SMALL_STATE(1506)] = 0, + [SMALL_STATE(1507)] = 77, + [SMALL_STATE(1508)] = 154, + [SMALL_STATE(1509)] = 227, + [SMALL_STATE(1510)] = 302, + [SMALL_STATE(1511)] = 379, + [SMALL_STATE(1512)] = 456, + [SMALL_STATE(1513)] = 533, + [SMALL_STATE(1514)] = 608, + [SMALL_STATE(1515)] = 681, + [SMALL_STATE(1516)] = 756, + [SMALL_STATE(1517)] = 863, + [SMALL_STATE(1518)] = 936, + [SMALL_STATE(1519)] = 1009, + [SMALL_STATE(1520)] = 1082, + [SMALL_STATE(1521)] = 1187, + [SMALL_STATE(1522)] = 1260, + [SMALL_STATE(1523)] = 1337, + [SMALL_STATE(1524)] = 1410, + [SMALL_STATE(1525)] = 1487, + [SMALL_STATE(1526)] = 1562, + [SMALL_STATE(1527)] = 1637, + [SMALL_STATE(1528)] = 1712, + [SMALL_STATE(1529)] = 1787, + [SMALL_STATE(1530)] = 1864, + [SMALL_STATE(1531)] = 1969, + [SMALL_STATE(1532)] = 2046, + [SMALL_STATE(1533)] = 2129, + [SMALL_STATE(1534)] = 2206, + [SMALL_STATE(1535)] = 2279, + [SMALL_STATE(1536)] = 2356, + [SMALL_STATE(1537)] = 2429, + [SMALL_STATE(1538)] = 2506, + [SMALL_STATE(1539)] = 2581, + [SMALL_STATE(1540)] = 2656, + [SMALL_STATE(1541)] = 2731, + [SMALL_STATE(1542)] = 2804, + [SMALL_STATE(1543)] = 2877, + [SMALL_STATE(1544)] = 2950, + [SMALL_STATE(1545)] = 3057, + [SMALL_STATE(1546)] = 3130, + [SMALL_STATE(1547)] = 3237, + [SMALL_STATE(1548)] = 3314, + [SMALL_STATE(1549)] = 3387, + [SMALL_STATE(1550)] = 3460, + [SMALL_STATE(1551)] = 3535, + [SMALL_STATE(1552)] = 3608, + [SMALL_STATE(1553)] = 3681, + [SMALL_STATE(1554)] = 3758, + [SMALL_STATE(1555)] = 3833, + [SMALL_STATE(1556)] = 3906, + [SMALL_STATE(1557)] = 3979, + [SMALL_STATE(1558)] = 4052, + [SMALL_STATE(1559)] = 4125, + [SMALL_STATE(1560)] = 4200, + [SMALL_STATE(1561)] = 4277, + [SMALL_STATE(1562)] = 4350, + [SMALL_STATE(1563)] = 4427, + [SMALL_STATE(1564)] = 4500, + [SMALL_STATE(1565)] = 4605, + [SMALL_STATE(1566)] = 4682, + [SMALL_STATE(1567)] = 4759, + [SMALL_STATE(1568)] = 4836, + [SMALL_STATE(1569)] = 4919, + [SMALL_STATE(1570)] = 4996, + [SMALL_STATE(1571)] = 5069, + [SMALL_STATE(1572)] = 5144, + [SMALL_STATE(1573)] = 5217, + [SMALL_STATE(1574)] = 5291, + [SMALL_STATE(1575)] = 5363, + [SMALL_STATE(1576)] = 5435, + [SMALL_STATE(1577)] = 5507, + [SMALL_STATE(1578)] = 5579, + [SMALL_STATE(1579)] = 5651, + [SMALL_STATE(1580)] = 5723, + [SMALL_STATE(1581)] = 5795, + [SMALL_STATE(1582)] = 5867, + [SMALL_STATE(1583)] = 5939, + [SMALL_STATE(1584)] = 6011, + [SMALL_STATE(1585)] = 6083, + [SMALL_STATE(1586)] = 6155, + [SMALL_STATE(1587)] = 6227, + [SMALL_STATE(1588)] = 6307, + [SMALL_STATE(1589)] = 6381, + [SMALL_STATE(1590)] = 6453, + [SMALL_STATE(1591)] = 6525, + [SMALL_STATE(1592)] = 6597, + [SMALL_STATE(1593)] = 6669, + [SMALL_STATE(1594)] = 6775, + [SMALL_STATE(1595)] = 6881, + [SMALL_STATE(1596)] = 6953, + [SMALL_STATE(1597)] = 7025, + [SMALL_STATE(1598)] = 7097, + [SMALL_STATE(1599)] = 7169, + [SMALL_STATE(1600)] = 7313, + [SMALL_STATE(1601)] = 7457, + [SMALL_STATE(1602)] = 7537, + [SMALL_STATE(1603)] = 7617, + [SMALL_STATE(1604)] = 7689, + [SMALL_STATE(1605)] = 7761, + [SMALL_STATE(1606)] = 7833, + [SMALL_STATE(1607)] = 7939, + [SMALL_STATE(1608)] = 8013, + [SMALL_STATE(1609)] = 8093, + [SMALL_STATE(1610)] = 8167, + [SMALL_STATE(1611)] = 8239, + [SMALL_STATE(1612)] = 8311, + [SMALL_STATE(1613)] = 8383, + [SMALL_STATE(1614)] = 8463, + [SMALL_STATE(1615)] = 8543, + [SMALL_STATE(1616)] = 8623, + [SMALL_STATE(1617)] = 8703, + [SMALL_STATE(1618)] = 8783, + [SMALL_STATE(1619)] = 8863, + [SMALL_STATE(1620)] = 8943, + [SMALL_STATE(1621)] = 9023, + [SMALL_STATE(1622)] = 9103, + [SMALL_STATE(1623)] = 9183, + [SMALL_STATE(1624)] = 9257, + [SMALL_STATE(1625)] = 9329, + [SMALL_STATE(1626)] = 9401, + [SMALL_STATE(1627)] = 9475, + [SMALL_STATE(1628)] = 9549, + [SMALL_STATE(1629)] = 9629, + [SMALL_STATE(1630)] = 9709, + [SMALL_STATE(1631)] = 9789, + [SMALL_STATE(1632)] = 9861, + [SMALL_STATE(1633)] = 9941, + [SMALL_STATE(1634)] = 10013, + [SMALL_STATE(1635)] = 10093, + [SMALL_STATE(1636)] = 10173, + [SMALL_STATE(1637)] = 10253, + [SMALL_STATE(1638)] = 10325, + [SMALL_STATE(1639)] = 10397, + [SMALL_STATE(1640)] = 10469, + [SMALL_STATE(1641)] = 10541, + [SMALL_STATE(1642)] = 10613, + [SMALL_STATE(1643)] = 10685, + [SMALL_STATE(1644)] = 10757, + [SMALL_STATE(1645)] = 10837, + [SMALL_STATE(1646)] = 10917, + [SMALL_STATE(1647)] = 10989, + [SMALL_STATE(1648)] = 11061, + [SMALL_STATE(1649)] = 11133, + [SMALL_STATE(1650)] = 11213, + [SMALL_STATE(1651)] = 11287, + [SMALL_STATE(1652)] = 11359, + [SMALL_STATE(1653)] = 11431, + [SMALL_STATE(1654)] = 11503, + [SMALL_STATE(1655)] = 11575, + [SMALL_STATE(1656)] = 11647, + [SMALL_STATE(1657)] = 11719, + [SMALL_STATE(1658)] = 11791, + [SMALL_STATE(1659)] = 11863, + [SMALL_STATE(1660)] = 11935, + [SMALL_STATE(1661)] = 12007, + [SMALL_STATE(1662)] = 12079, + [SMALL_STATE(1663)] = 12223, + [SMALL_STATE(1664)] = 12295, + [SMALL_STATE(1665)] = 12367, + [SMALL_STATE(1666)] = 12447, + [SMALL_STATE(1667)] = 12519, + [SMALL_STATE(1668)] = 12591, + [SMALL_STATE(1669)] = 12663, + [SMALL_STATE(1670)] = 12735, + [SMALL_STATE(1671)] = 12807, + [SMALL_STATE(1672)] = 12879, + [SMALL_STATE(1673)] = 12951, + [SMALL_STATE(1674)] = 13023, + [SMALL_STATE(1675)] = 13167, + [SMALL_STATE(1676)] = 13239, + [SMALL_STATE(1677)] = 13311, + [SMALL_STATE(1678)] = 13385, + [SMALL_STATE(1679)] = 13465, + [SMALL_STATE(1680)] = 13537, + [SMALL_STATE(1681)] = 13609, + [SMALL_STATE(1682)] = 13681, + [SMALL_STATE(1683)] = 13753, + [SMALL_STATE(1684)] = 13825, + [SMALL_STATE(1685)] = 13897, + [SMALL_STATE(1686)] = 13969, + [SMALL_STATE(1687)] = 14041, + [SMALL_STATE(1688)] = 14115, + [SMALL_STATE(1689)] = 14187, + [SMALL_STATE(1690)] = 14259, + [SMALL_STATE(1691)] = 14331, + [SMALL_STATE(1692)] = 14403, + [SMALL_STATE(1693)] = 14475, + [SMALL_STATE(1694)] = 14547, + [SMALL_STATE(1695)] = 14619, + [SMALL_STATE(1696)] = 14693, + [SMALL_STATE(1697)] = 14765, + [SMALL_STATE(1698)] = 14837, + [SMALL_STATE(1699)] = 14909, + [SMALL_STATE(1700)] = 14981, + [SMALL_STATE(1701)] = 15053, + [SMALL_STATE(1702)] = 15125, + [SMALL_STATE(1703)] = 15197, + [SMALL_STATE(1704)] = 15269, + [SMALL_STATE(1705)] = 15341, + [SMALL_STATE(1706)] = 15413, + [SMALL_STATE(1707)] = 15485, + [SMALL_STATE(1708)] = 15557, + [SMALL_STATE(1709)] = 15629, + [SMALL_STATE(1710)] = 15701, + [SMALL_STATE(1711)] = 15773, + [SMALL_STATE(1712)] = 15845, + [SMALL_STATE(1713)] = 15917, + [SMALL_STATE(1714)] = 15989, + [SMALL_STATE(1715)] = 16061, + [SMALL_STATE(1716)] = 16133, + [SMALL_STATE(1717)] = 16213, + [SMALL_STATE(1718)] = 16285, + [SMALL_STATE(1719)] = 16357, + [SMALL_STATE(1720)] = 16429, + [SMALL_STATE(1721)] = 16501, + [SMALL_STATE(1722)] = 16573, + [SMALL_STATE(1723)] = 16645, + [SMALL_STATE(1724)] = 16719, + [SMALL_STATE(1725)] = 16791, + [SMALL_STATE(1726)] = 16863, + [SMALL_STATE(1727)] = 16935, + [SMALL_STATE(1728)] = 17007, + [SMALL_STATE(1729)] = 17079, + [SMALL_STATE(1730)] = 17151, + [SMALL_STATE(1731)] = 17223, + [SMALL_STATE(1732)] = 17295, + [SMALL_STATE(1733)] = 17367, + [SMALL_STATE(1734)] = 17439, + [SMALL_STATE(1735)] = 17511, + [SMALL_STATE(1736)] = 17583, + [SMALL_STATE(1737)] = 17663, + [SMALL_STATE(1738)] = 17735, + [SMALL_STATE(1739)] = 17807, + [SMALL_STATE(1740)] = 17879, + [SMALL_STATE(1741)] = 17951, + [SMALL_STATE(1742)] = 18023, + [SMALL_STATE(1743)] = 18095, + [SMALL_STATE(1744)] = 18167, + [SMALL_STATE(1745)] = 18239, + [SMALL_STATE(1746)] = 18383, + [SMALL_STATE(1747)] = 18455, + [SMALL_STATE(1748)] = 18527, + [SMALL_STATE(1749)] = 18671, + [SMALL_STATE(1750)] = 18815, + [SMALL_STATE(1751)] = 18959, + [SMALL_STATE(1752)] = 19039, + [SMALL_STATE(1753)] = 19119, + [SMALL_STATE(1754)] = 19199, + [SMALL_STATE(1755)] = 19279, + [SMALL_STATE(1756)] = 19359, + [SMALL_STATE(1757)] = 19439, + [SMALL_STATE(1758)] = 19519, + [SMALL_STATE(1759)] = 19599, + [SMALL_STATE(1760)] = 19679, + [SMALL_STATE(1761)] = 19759, + [SMALL_STATE(1762)] = 19839, + [SMALL_STATE(1763)] = 19919, + [SMALL_STATE(1764)] = 19999, + [SMALL_STATE(1765)] = 20079, + [SMALL_STATE(1766)] = 20159, + [SMALL_STATE(1767)] = 20239, + [SMALL_STATE(1768)] = 20319, + [SMALL_STATE(1769)] = 20399, + [SMALL_STATE(1770)] = 20479, + [SMALL_STATE(1771)] = 20559, + [SMALL_STATE(1772)] = 20639, + [SMALL_STATE(1773)] = 20719, + [SMALL_STATE(1774)] = 20799, + [SMALL_STATE(1775)] = 20871, + [SMALL_STATE(1776)] = 20943, + [SMALL_STATE(1777)] = 21015, + [SMALL_STATE(1778)] = 21087, + [SMALL_STATE(1779)] = 21159, + [SMALL_STATE(1780)] = 21231, + [SMALL_STATE(1781)] = 21303, + [SMALL_STATE(1782)] = 21375, + [SMALL_STATE(1783)] = 21447, + [SMALL_STATE(1784)] = 21519, + [SMALL_STATE(1785)] = 21591, + [SMALL_STATE(1786)] = 21663, + [SMALL_STATE(1787)] = 21735, + [SMALL_STATE(1788)] = 21807, + [SMALL_STATE(1789)] = 21879, + [SMALL_STATE(1790)] = 21951, + [SMALL_STATE(1791)] = 22023, + [SMALL_STATE(1792)] = 22095, + [SMALL_STATE(1793)] = 22167, + [SMALL_STATE(1794)] = 22246, + [SMALL_STATE(1795)] = 22323, + [SMALL_STATE(1796)] = 22400, + [SMALL_STATE(1797)] = 22477, + [SMALL_STATE(1798)] = 22554, + [SMALL_STATE(1799)] = 22631, + [SMALL_STATE(1800)] = 22708, + [SMALL_STATE(1801)] = 22779, + [SMALL_STATE(1802)] = 22856, + [SMALL_STATE(1803)] = 22933, + [SMALL_STATE(1804)] = 23010, + [SMALL_STATE(1805)] = 23081, + [SMALL_STATE(1806)] = 23152, + [SMALL_STATE(1807)] = 23223, + [SMALL_STATE(1808)] = 23300, + [SMALL_STATE(1809)] = 23371, + [SMALL_STATE(1810)] = 23446, + [SMALL_STATE(1811)] = 23517, + [SMALL_STATE(1812)] = 23594, + [SMALL_STATE(1813)] = 23665, + [SMALL_STATE(1814)] = 23744, + [SMALL_STATE(1815)] = 23823, + [SMALL_STATE(1816)] = 23902, + [SMALL_STATE(1817)] = 23981, + [SMALL_STATE(1818)] = 24060, + [SMALL_STATE(1819)] = 24139, + [SMALL_STATE(1820)] = 24218, + [SMALL_STATE(1821)] = 24295, + [SMALL_STATE(1822)] = 24366, + [SMALL_STATE(1823)] = 24437, + [SMALL_STATE(1824)] = 24514, + [SMALL_STATE(1825)] = 24591, + [SMALL_STATE(1826)] = 24662, + [SMALL_STATE(1827)] = 24733, + [SMALL_STATE(1828)] = 24804, + [SMALL_STATE(1829)] = 24875, + [SMALL_STATE(1830)] = 24946, + [SMALL_STATE(1831)] = 25017, + [SMALL_STATE(1832)] = 25088, + [SMALL_STATE(1833)] = 25159, + [SMALL_STATE(1834)] = 25238, + [SMALL_STATE(1835)] = 25317, + [SMALL_STATE(1836)] = 25396, + [SMALL_STATE(1837)] = 25475, + [SMALL_STATE(1838)] = 25546, + [SMALL_STATE(1839)] = 25625, + [SMALL_STATE(1840)] = 25702, + [SMALL_STATE(1841)] = 25773, + [SMALL_STATE(1842)] = 25852, + [SMALL_STATE(1843)] = 25931, + [SMALL_STATE(1844)] = 26010, + [SMALL_STATE(1845)] = 26081, + [SMALL_STATE(1846)] = 26160, + [SMALL_STATE(1847)] = 26237, + [SMALL_STATE(1848)] = 26316, + [SMALL_STATE(1849)] = 26387, + [SMALL_STATE(1850)] = 26464, + [SMALL_STATE(1851)] = 26537, + [SMALL_STATE(1852)] = 26608, + [SMALL_STATE(1853)] = 26679, + [SMALL_STATE(1854)] = 26750, + [SMALL_STATE(1855)] = 26821, + [SMALL_STATE(1856)] = 26892, + [SMALL_STATE(1857)] = 26969, + [SMALL_STATE(1858)] = 27040, + [SMALL_STATE(1859)] = 27111, + [SMALL_STATE(1860)] = 27182, + [SMALL_STATE(1861)] = 27259, + [SMALL_STATE(1862)] = 27330, + [SMALL_STATE(1863)] = 27401, + [SMALL_STATE(1864)] = 27478, + [SMALL_STATE(1865)] = 27555, + [SMALL_STATE(1866)] = 27626, + [SMALL_STATE(1867)] = 27697, + [SMALL_STATE(1868)] = 27768, + [SMALL_STATE(1869)] = 27845, + [SMALL_STATE(1870)] = 27922, + [SMALL_STATE(1871)] = 27993, + [SMALL_STATE(1872)] = 28064, + [SMALL_STATE(1873)] = 28141, + [SMALL_STATE(1874)] = 28212, + [SMALL_STATE(1875)] = 28283, + [SMALL_STATE(1876)] = 28354, + [SMALL_STATE(1877)] = 28425, + [SMALL_STATE(1878)] = 28502, + [SMALL_STATE(1879)] = 28573, + [SMALL_STATE(1880)] = 28644, + [SMALL_STATE(1881)] = 28715, + [SMALL_STATE(1882)] = 28786, + [SMALL_STATE(1883)] = 28857, + [SMALL_STATE(1884)] = 28934, + [SMALL_STATE(1885)] = 29011, + [SMALL_STATE(1886)] = 29088, + [SMALL_STATE(1887)] = 29159, + [SMALL_STATE(1888)] = 29230, + [SMALL_STATE(1889)] = 29307, + [SMALL_STATE(1890)] = 29378, + [SMALL_STATE(1891)] = 29449, + [SMALL_STATE(1892)] = 29526, + [SMALL_STATE(1893)] = 29605, + [SMALL_STATE(1894)] = 29676, + [SMALL_STATE(1895)] = 29753, + [SMALL_STATE(1896)] = 29824, + [SMALL_STATE(1897)] = 29901, + [SMALL_STATE(1898)] = 29972, + [SMALL_STATE(1899)] = 30043, + [SMALL_STATE(1900)] = 30120, + [SMALL_STATE(1901)] = 30197, + [SMALL_STATE(1902)] = 30268, + [SMALL_STATE(1903)] = 30339, + [SMALL_STATE(1904)] = 30410, + [SMALL_STATE(1905)] = 30481, + [SMALL_STATE(1906)] = 30552, + [SMALL_STATE(1907)] = 30623, + [SMALL_STATE(1908)] = 30700, + [SMALL_STATE(1909)] = 30771, + [SMALL_STATE(1910)] = 30842, + [SMALL_STATE(1911)] = 30921, + [SMALL_STATE(1912)] = 30998, + [SMALL_STATE(1913)] = 31075, + [SMALL_STATE(1914)] = 31152, + [SMALL_STATE(1915)] = 31229, + [SMALL_STATE(1916)] = 31300, + [SMALL_STATE(1917)] = 31371, + [SMALL_STATE(1918)] = 31446, + [SMALL_STATE(1919)] = 31523, + [SMALL_STATE(1920)] = 31600, + [SMALL_STATE(1921)] = 31677, + [SMALL_STATE(1922)] = 31748, + [SMALL_STATE(1923)] = 31825, + [SMALL_STATE(1924)] = 31902, + [SMALL_STATE(1925)] = 31979, + [SMALL_STATE(1926)] = 32056, + [SMALL_STATE(1927)] = 32133, + [SMALL_STATE(1928)] = 32210, + [SMALL_STATE(1929)] = 32287, + [SMALL_STATE(1930)] = 32366, + [SMALL_STATE(1931)] = 32437, + [SMALL_STATE(1932)] = 32508, + [SMALL_STATE(1933)] = 32579, + [SMALL_STATE(1934)] = 32656, + [SMALL_STATE(1935)] = 32727, + [SMALL_STATE(1936)] = 32798, + [SMALL_STATE(1937)] = 32869, + [SMALL_STATE(1938)] = 32940, + [SMALL_STATE(1939)] = 33011, + [SMALL_STATE(1940)] = 33082, + [SMALL_STATE(1941)] = 33153, + [SMALL_STATE(1942)] = 33224, + [SMALL_STATE(1943)] = 33301, + [SMALL_STATE(1944)] = 33376, + [SMALL_STATE(1945)] = 33447, + [SMALL_STATE(1946)] = 33518, + [SMALL_STATE(1947)] = 33589, + [SMALL_STATE(1948)] = 33668, + [SMALL_STATE(1949)] = 33747, + [SMALL_STATE(1950)] = 33826, + [SMALL_STATE(1951)] = 33905, + [SMALL_STATE(1952)] = 33976, + [SMALL_STATE(1953)] = 34047, + [SMALL_STATE(1954)] = 34118, + [SMALL_STATE(1955)] = 34189, + [SMALL_STATE(1956)] = 34260, + [SMALL_STATE(1957)] = 34331, + [SMALL_STATE(1958)] = 34402, + [SMALL_STATE(1959)] = 34473, + [SMALL_STATE(1960)] = 34550, + [SMALL_STATE(1961)] = 34621, + [SMALL_STATE(1962)] = 34698, + [SMALL_STATE(1963)] = 34775, + [SMALL_STATE(1964)] = 34852, + [SMALL_STATE(1965)] = 34923, + [SMALL_STATE(1966)] = 35002, + [SMALL_STATE(1967)] = 35072, + [SMALL_STATE(1968)] = 35146, + [SMALL_STATE(1969)] = 35220, + [SMALL_STATE(1970)] = 35290, + [SMALL_STATE(1971)] = 35360, + [SMALL_STATE(1972)] = 35438, + [SMALL_STATE(1973)] = 35508, + [SMALL_STATE(1974)] = 35578, + [SMALL_STATE(1975)] = 35648, + [SMALL_STATE(1976)] = 35718, + [SMALL_STATE(1977)] = 35788, + [SMALL_STATE(1978)] = 35858, + [SMALL_STATE(1979)] = 35932, + [SMALL_STATE(1980)] = 36010, + [SMALL_STATE(1981)] = 36080, + [SMALL_STATE(1982)] = 36150, + [SMALL_STATE(1983)] = 36220, + [SMALL_STATE(1984)] = 36298, + [SMALL_STATE(1985)] = 36368, + [SMALL_STATE(1986)] = 36438, + [SMALL_STATE(1987)] = 36508, + [SMALL_STATE(1988)] = 36580, + [SMALL_STATE(1989)] = 36652, + [SMALL_STATE(1990)] = 36722, + [SMALL_STATE(1991)] = 36792, + [SMALL_STATE(1992)] = 36862, + [SMALL_STATE(1993)] = 36932, + [SMALL_STATE(1994)] = 37002, + [SMALL_STATE(1995)] = 37076, + [SMALL_STATE(1996)] = 37146, + [SMALL_STATE(1997)] = 37220, + [SMALL_STATE(1998)] = 37290, + [SMALL_STATE(1999)] = 37364, + [SMALL_STATE(2000)] = 37434, + [SMALL_STATE(2001)] = 37504, + [SMALL_STATE(2002)] = 37574, + [SMALL_STATE(2003)] = 37644, + [SMALL_STATE(2004)] = 37714, + [SMALL_STATE(2005)] = 37790, + [SMALL_STATE(2006)] = 37860, + [SMALL_STATE(2007)] = 37930, + [SMALL_STATE(2008)] = 38000, + [SMALL_STATE(2009)] = 38070, + [SMALL_STATE(2010)] = 38140, + [SMALL_STATE(2011)] = 38210, + [SMALL_STATE(2012)] = 38280, + [SMALL_STATE(2013)] = 38350, + [SMALL_STATE(2014)] = 38424, + [SMALL_STATE(2015)] = 38494, + [SMALL_STATE(2016)] = 38566, + [SMALL_STATE(2017)] = 38638, + [SMALL_STATE(2018)] = 38712, + [SMALL_STATE(2019)] = 38782, + [SMALL_STATE(2020)] = 38922, + [SMALL_STATE(2021)] = 38996, + [SMALL_STATE(2022)] = 39136, + [SMALL_STATE(2023)] = 39206, + [SMALL_STATE(2024)] = 39284, + [SMALL_STATE(2025)] = 39358, + [SMALL_STATE(2026)] = 39428, + [SMALL_STATE(2027)] = 39498, + [SMALL_STATE(2028)] = 39569, + [SMALL_STATE(2029)] = 39640, + [SMALL_STATE(2030)] = 39711, + [SMALL_STATE(2031)] = 39782, + [SMALL_STATE(2032)] = 39853, + [SMALL_STATE(2033)] = 39924, + [SMALL_STATE(2034)] = 39995, + [SMALL_STATE(2035)] = 40066, + [SMALL_STATE(2036)] = 40137, + [SMALL_STATE(2037)] = 40208, + [SMALL_STATE(2038)] = 40279, + [SMALL_STATE(2039)] = 40350, + [SMALL_STATE(2040)] = 40421, + [SMALL_STATE(2041)] = 40492, + [SMALL_STATE(2042)] = 40563, + [SMALL_STATE(2043)] = 40632, + [SMALL_STATE(2044)] = 40703, + [SMALL_STATE(2045)] = 40776, + [SMALL_STATE(2046)] = 40847, + [SMALL_STATE(2047)] = 40918, + [SMALL_STATE(2048)] = 40989, + [SMALL_STATE(2049)] = 41060, + [SMALL_STATE(2050)] = 41131, + [SMALL_STATE(2051)] = 41202, + [SMALL_STATE(2052)] = 41273, + [SMALL_STATE(2053)] = 41350, + [SMALL_STATE(2054)] = 41421, + [SMALL_STATE(2055)] = 41492, + [SMALL_STATE(2056)] = 41565, + [SMALL_STATE(2057)] = 41636, + [SMALL_STATE(2058)] = 41707, + [SMALL_STATE(2059)] = 41780, + [SMALL_STATE(2060)] = 41851, + [SMALL_STATE(2061)] = 41922, + [SMALL_STATE(2062)] = 41995, + [SMALL_STATE(2063)] = 42096, + [SMALL_STATE(2064)] = 42167, + [SMALL_STATE(2065)] = 42238, + [SMALL_STATE(2066)] = 42309, + [SMALL_STATE(2067)] = 42380, + [SMALL_STATE(2068)] = 42451, + [SMALL_STATE(2069)] = 42522, + [SMALL_STATE(2070)] = 42593, + [SMALL_STATE(2071)] = 42664, + [SMALL_STATE(2072)] = 42735, + [SMALL_STATE(2073)] = 42806, + [SMALL_STATE(2074)] = 42879, + [SMALL_STATE(2075)] = 42950, + [SMALL_STATE(2076)] = 43051, + [SMALL_STATE(2077)] = 43120, + [SMALL_STATE(2078)] = 43189, + [SMALL_STATE(2079)] = 43260, + [SMALL_STATE(2080)] = 43329, + [SMALL_STATE(2081)] = 43398, + [SMALL_STATE(2082)] = 43471, + [SMALL_STATE(2083)] = 43572, + [SMALL_STATE(2084)] = 43641, + [SMALL_STATE(2085)] = 43712, + [SMALL_STATE(2086)] = 43783, + [SMALL_STATE(2087)] = 43854, + [SMALL_STATE(2088)] = 43925, + [SMALL_STATE(2089)] = 43996, + [SMALL_STATE(2090)] = 44067, + [SMALL_STATE(2091)] = 44138, + [SMALL_STATE(2092)] = 44209, + [SMALL_STATE(2093)] = 44280, + [SMALL_STATE(2094)] = 44351, + [SMALL_STATE(2095)] = 44422, + [SMALL_STATE(2096)] = 44493, + [SMALL_STATE(2097)] = 44564, + [SMALL_STATE(2098)] = 44635, + [SMALL_STATE(2099)] = 44706, + [SMALL_STATE(2100)] = 44777, + [SMALL_STATE(2101)] = 44848, + [SMALL_STATE(2102)] = 44919, + [SMALL_STATE(2103)] = 44990, + [SMALL_STATE(2104)] = 45061, + [SMALL_STATE(2105)] = 45132, + [SMALL_STATE(2106)] = 45269, + [SMALL_STATE(2107)] = 45406, + [SMALL_STATE(2108)] = 45475, + [SMALL_STATE(2109)] = 45546, + [SMALL_STATE(2110)] = 45617, + [SMALL_STATE(2111)] = 45686, + [SMALL_STATE(2112)] = 45757, + [SMALL_STATE(2113)] = 45828, + [SMALL_STATE(2114)] = 45899, + [SMALL_STATE(2115)] = 45970, + [SMALL_STATE(2116)] = 46041, + [SMALL_STATE(2117)] = 46112, + [SMALL_STATE(2118)] = 46183, + [SMALL_STATE(2119)] = 46252, + [SMALL_STATE(2120)] = 46323, + [SMALL_STATE(2121)] = 46394, + [SMALL_STATE(2122)] = 46465, + [SMALL_STATE(2123)] = 46542, + [SMALL_STATE(2124)] = 46613, + [SMALL_STATE(2125)] = 46684, + [SMALL_STATE(2126)] = 46759, + [SMALL_STATE(2127)] = 46830, + [SMALL_STATE(2128)] = 46901, + [SMALL_STATE(2129)] = 46972, + [SMALL_STATE(2130)] = 47043, + [SMALL_STATE(2131)] = 47116, + [SMALL_STATE(2132)] = 47189, + [SMALL_STATE(2133)] = 47260, + [SMALL_STATE(2134)] = 47333, + [SMALL_STATE(2135)] = 47406, + [SMALL_STATE(2136)] = 47477, + [SMALL_STATE(2137)] = 47550, + [SMALL_STATE(2138)] = 47621, + [SMALL_STATE(2139)] = 47692, + [SMALL_STATE(2140)] = 47761, + [SMALL_STATE(2141)] = 47832, + [SMALL_STATE(2142)] = 47903, + [SMALL_STATE(2143)] = 47974, + [SMALL_STATE(2144)] = 48047, + [SMALL_STATE(2145)] = 48120, + [SMALL_STATE(2146)] = 48193, + [SMALL_STATE(2147)] = 48266, + [SMALL_STATE(2148)] = 48343, + [SMALL_STATE(2149)] = 48414, + [SMALL_STATE(2150)] = 48487, + [SMALL_STATE(2151)] = 48558, + [SMALL_STATE(2152)] = 48629, + [SMALL_STATE(2153)] = 48700, + [SMALL_STATE(2154)] = 48773, + [SMALL_STATE(2155)] = 48846, + [SMALL_STATE(2156)] = 48917, + [SMALL_STATE(2157)] = 48988, + [SMALL_STATE(2158)] = 49059, + [SMALL_STATE(2159)] = 49160, + [SMALL_STATE(2160)] = 49297, + [SMALL_STATE(2161)] = 49434, + [SMALL_STATE(2162)] = 49505, + [SMALL_STATE(2163)] = 49578, + [SMALL_STATE(2164)] = 49649, + [SMALL_STATE(2165)] = 49720, + [SMALL_STATE(2166)] = 49791, + [SMALL_STATE(2167)] = 49862, + [SMALL_STATE(2168)] = 49935, + [SMALL_STATE(2169)] = 50006, + [SMALL_STATE(2170)] = 50077, + [SMALL_STATE(2171)] = 50148, + [SMALL_STATE(2172)] = 50219, + [SMALL_STATE(2173)] = 50290, + [SMALL_STATE(2174)] = 50361, + [SMALL_STATE(2175)] = 50432, + [SMALL_STATE(2176)] = 50503, + [SMALL_STATE(2177)] = 50574, + [SMALL_STATE(2178)] = 50645, + [SMALL_STATE(2179)] = 50716, + [SMALL_STATE(2180)] = 50787, + [SMALL_STATE(2181)] = 50858, + [SMALL_STATE(2182)] = 50931, + [SMALL_STATE(2183)] = 51002, + [SMALL_STATE(2184)] = 51073, + [SMALL_STATE(2185)] = 51144, + [SMALL_STATE(2186)] = 51215, + [SMALL_STATE(2187)] = 51286, + [SMALL_STATE(2188)] = 51359, + [SMALL_STATE(2189)] = 51430, + [SMALL_STATE(2190)] = 51503, + [SMALL_STATE(2191)] = 51576, + [SMALL_STATE(2192)] = 51649, + [SMALL_STATE(2193)] = 51722, + [SMALL_STATE(2194)] = 51795, + [SMALL_STATE(2195)] = 51868, + [SMALL_STATE(2196)] = 51939, + [SMALL_STATE(2197)] = 52010, + [SMALL_STATE(2198)] = 52088, + [SMALL_STATE(2199)] = 52172, + [SMALL_STATE(2200)] = 52240, + [SMALL_STATE(2201)] = 52336, + [SMALL_STATE(2202)] = 52410, + [SMALL_STATE(2203)] = 52490, + [SMALL_STATE(2204)] = 52574, + [SMALL_STATE(2205)] = 52666, + [SMALL_STATE(2206)] = 52736, + [SMALL_STATE(2207)] = 52826, + [SMALL_STATE(2208)] = 52896, + [SMALL_STATE(2209)] = 52982, + [SMALL_STATE(2210)] = 53054, + [SMALL_STATE(2211)] = 53134, + [SMALL_STATE(2212)] = 53202, + [SMALL_STATE(2213)] = 53278, + [SMALL_STATE(2214)] = 53362, + [SMALL_STATE(2215)] = 53434, + [SMALL_STATE(2216)] = 53516, + [SMALL_STATE(2217)] = 53608, + [SMALL_STATE(2218)] = 53678, + [SMALL_STATE(2219)] = 53752, + [SMALL_STATE(2220)] = 53840, + [SMALL_STATE(2221)] = 53932, + [SMALL_STATE(2222)] = 54000, + [SMALL_STATE(2223)] = 54070, + [SMALL_STATE(2224)] = 54138, + [SMALL_STATE(2225)] = 54236, + [SMALL_STATE(2226)] = 54330, + [SMALL_STATE(2227)] = 54400, + [SMALL_STATE(2228)] = 54468, + [SMALL_STATE(2229)] = 54538, + [SMALL_STATE(2230)] = 54632, + [SMALL_STATE(2231)] = 54730, + [SMALL_STATE(2232)] = 54798, + [SMALL_STATE(2233)] = 54882, + [SMALL_STATE(2234)] = 54950, + [SMALL_STATE(2235)] = 55036, + [SMALL_STATE(2236)] = 55130, + [SMALL_STATE(2237)] = 55204, + [SMALL_STATE(2238)] = 55272, + [SMALL_STATE(2239)] = 55340, + [SMALL_STATE(2240)] = 55408, + [SMALL_STATE(2241)] = 55478, + [SMALL_STATE(2242)] = 55548, + [SMALL_STATE(2243)] = 55616, + [SMALL_STATE(2244)] = 55684, + [SMALL_STATE(2245)] = 55758, + [SMALL_STATE(2246)] = 55830, + [SMALL_STATE(2247)] = 55920, + [SMALL_STATE(2248)] = 55996, + [SMALL_STATE(2249)] = 56070, + [SMALL_STATE(2250)] = 56140, + [SMALL_STATE(2251)] = 56230, + [SMALL_STATE(2252)] = 56304, + [SMALL_STATE(2253)] = 56400, + [SMALL_STATE(2254)] = 56476, + [SMALL_STATE(2255)] = 56550, + [SMALL_STATE(2256)] = 56628, + [SMALL_STATE(2257)] = 56706, + [SMALL_STATE(2258)] = 56788, + [SMALL_STATE(2259)] = 56874, + [SMALL_STATE(2260)] = 56958, + [SMALL_STATE(2261)] = 57038, + [SMALL_STATE(2262)] = 57114, + [SMALL_STATE(2263)] = 57198, + [SMALL_STATE(2264)] = 57290, + [SMALL_STATE(2265)] = 57358, + [SMALL_STATE(2266)] = 57426, + [SMALL_STATE(2267)] = 57502, + [SMALL_STATE(2268)] = 57570, + [SMALL_STATE(2269)] = 57650, + [SMALL_STATE(2270)] = 57732, + [SMALL_STATE(2271)] = 57800, + [SMALL_STATE(2272)] = 57888, + [SMALL_STATE(2273)] = 57986, + [SMALL_STATE(2274)] = 58072, + [SMALL_STATE(2275)] = 58146, + [SMALL_STATE(2276)] = 58234, + [SMALL_STATE(2277)] = 58320, + [SMALL_STATE(2278)] = 58410, + [SMALL_STATE(2279)] = 58500, + [SMALL_STATE(2280)] = 58578, + [SMALL_STATE(2281)] = 58654, + [SMALL_STATE(2282)] = 58746, + [SMALL_STATE(2283)] = 58818, + [SMALL_STATE(2284)] = 58916, + [SMALL_STATE(2285)] = 58998, + [SMALL_STATE(2286)] = 59076, + [SMALL_STATE(2287)] = 59174, + [SMALL_STATE(2288)] = 59308, + [SMALL_STATE(2289)] = 59442, + [SMALL_STATE(2290)] = 59536, + [SMALL_STATE(2291)] = 59606, + [SMALL_STATE(2292)] = 59740, + [SMALL_STATE(2293)] = 59820, + [SMALL_STATE(2294)] = 59908, + [SMALL_STATE(2295)] = 59992, + [SMALL_STATE(2296)] = 60074, + [SMALL_STATE(2297)] = 60208, + [SMALL_STATE(2298)] = 60280, + [SMALL_STATE(2299)] = 60360, + [SMALL_STATE(2300)] = 60452, + [SMALL_STATE(2301)] = 60536, + [SMALL_STATE(2302)] = 60624, + [SMALL_STATE(2303)] = 60700, + [SMALL_STATE(2304)] = 60798, + [SMALL_STATE(2305)] = 60932, + [SMALL_STATE(2306)] = 61008, + [SMALL_STATE(2307)] = 61098, + [SMALL_STATE(2308)] = 61188, + [SMALL_STATE(2309)] = 61284, + [SMALL_STATE(2310)] = 61378, + [SMALL_STATE(2311)] = 61512, + [SMALL_STATE(2312)] = 61646, + [SMALL_STATE(2313)] = 61780, + [SMALL_STATE(2314)] = 61850, + [SMALL_STATE(2315)] = 61920, + [SMALL_STATE(2316)] = 61990, + [SMALL_STATE(2317)] = 62124, + [SMALL_STATE(2318)] = 62216, + [SMALL_STATE(2319)] = 62300, + [SMALL_STATE(2320)] = 62386, + [SMALL_STATE(2321)] = 62472, + [SMALL_STATE(2322)] = 62566, + [SMALL_STATE(2323)] = 62636, + [SMALL_STATE(2324)] = 62718, + [SMALL_STATE(2325)] = 62804, + [SMALL_STATE(2326)] = 62882, + [SMALL_STATE(2327)] = 62970, + [SMALL_STATE(2328)] = 63066, + [SMALL_STATE(2329)] = 63148, + [SMALL_STATE(2330)] = 63222, + [SMALL_STATE(2331)] = 63292, + [SMALL_STATE(2332)] = 63374, + [SMALL_STATE(2333)] = 63460, + [SMALL_STATE(2334)] = 63530, + [SMALL_STATE(2335)] = 63610, + [SMALL_STATE(2336)] = 63700, + [SMALL_STATE(2337)] = 63790, + [SMALL_STATE(2338)] = 63858, + [SMALL_STATE(2339)] = 63992, + [SMALL_STATE(2340)] = 64126, + [SMALL_STATE(2341)] = 64260, + [SMALL_STATE(2342)] = 64354, + [SMALL_STATE(2343)] = 64430, + [SMALL_STATE(2344)] = 64500, + [SMALL_STATE(2345)] = 64572, + [SMALL_STATE(2346)] = 64650, + [SMALL_STATE(2347)] = 64724, + [SMALL_STATE(2348)] = 64816, + [SMALL_STATE(2349)] = 64884, + [SMALL_STATE(2350)] = 64952, + [SMALL_STATE(2351)] = 65020, + [SMALL_STATE(2352)] = 65154, + [SMALL_STATE(2353)] = 65222, + [SMALL_STATE(2354)] = 65304, + [SMALL_STATE(2355)] = 65382, + [SMALL_STATE(2356)] = 65452, + [SMALL_STATE(2357)] = 65522, + [SMALL_STATE(2358)] = 65592, + [SMALL_STATE(2359)] = 65662, + [SMALL_STATE(2360)] = 65732, + [SMALL_STATE(2361)] = 65820, + [SMALL_STATE(2362)] = 65890, + [SMALL_STATE(2363)] = 65984, + [SMALL_STATE(2364)] = 66062, + [SMALL_STATE(2365)] = 66130, + [SMALL_STATE(2366)] = 66216, + [SMALL_STATE(2367)] = 66296, + [SMALL_STATE(2368)] = 66364, + [SMALL_STATE(2369)] = 66432, + [SMALL_STATE(2370)] = 66500, + [SMALL_STATE(2371)] = 66588, + [SMALL_STATE(2372)] = 66680, + [SMALL_STATE(2373)] = 66778, + [SMALL_STATE(2374)] = 66846, + [SMALL_STATE(2375)] = 66944, + [SMALL_STATE(2376)] = 67042, + [SMALL_STATE(2377)] = 67140, + [SMALL_STATE(2378)] = 67208, + [SMALL_STATE(2379)] = 67288, + [SMALL_STATE(2380)] = 67356, + [SMALL_STATE(2381)] = 67444, + [SMALL_STATE(2382)] = 67516, + [SMALL_STATE(2383)] = 67586, + [SMALL_STATE(2384)] = 67653, + [SMALL_STATE(2385)] = 67720, + [SMALL_STATE(2386)] = 67787, + [SMALL_STATE(2387)] = 67854, + [SMALL_STATE(2388)] = 67941, + [SMALL_STATE(2389)] = 68008, + [SMALL_STATE(2390)] = 68091, + [SMALL_STATE(2391)] = 68158, + [SMALL_STATE(2392)] = 68229, + [SMALL_STATE(2393)] = 68296, + [SMALL_STATE(2394)] = 68367, + [SMALL_STATE(2395)] = 68434, + [SMALL_STATE(2396)] = 68501, + [SMALL_STATE(2397)] = 68568, + [SMALL_STATE(2398)] = 68635, + [SMALL_STATE(2399)] = 68702, + [SMALL_STATE(2400)] = 68769, + [SMALL_STATE(2401)] = 68836, + [SMALL_STATE(2402)] = 68903, + [SMALL_STATE(2403)] = 68970, + [SMALL_STATE(2404)] = 69037, + [SMALL_STATE(2405)] = 69104, + [SMALL_STATE(2406)] = 69171, + [SMALL_STATE(2407)] = 69238, + [SMALL_STATE(2408)] = 69305, + [SMALL_STATE(2409)] = 69372, + [SMALL_STATE(2410)] = 69439, + [SMALL_STATE(2411)] = 69506, + [SMALL_STATE(2412)] = 69573, + [SMALL_STATE(2413)] = 69640, + [SMALL_STATE(2414)] = 69707, + [SMALL_STATE(2415)] = 69774, + [SMALL_STATE(2416)] = 69841, + [SMALL_STATE(2417)] = 69908, + [SMALL_STATE(2418)] = 69975, + [SMALL_STATE(2419)] = 70042, + [SMALL_STATE(2420)] = 70109, + [SMALL_STATE(2421)] = 70176, + [SMALL_STATE(2422)] = 70243, + [SMALL_STATE(2423)] = 70310, + [SMALL_STATE(2424)] = 70377, + [SMALL_STATE(2425)] = 70444, + [SMALL_STATE(2426)] = 70511, + [SMALL_STATE(2427)] = 70578, + [SMALL_STATE(2428)] = 70645, + [SMALL_STATE(2429)] = 70712, + [SMALL_STATE(2430)] = 70779, + [SMALL_STATE(2431)] = 70848, + [SMALL_STATE(2432)] = 70915, + [SMALL_STATE(2433)] = 70982, + [SMALL_STATE(2434)] = 71049, + [SMALL_STATE(2435)] = 71116, + [SMALL_STATE(2436)] = 71183, + [SMALL_STATE(2437)] = 71250, + [SMALL_STATE(2438)] = 71317, + [SMALL_STATE(2439)] = 71384, + [SMALL_STATE(2440)] = 71451, + [SMALL_STATE(2441)] = 71518, + [SMALL_STATE(2442)] = 71587, + [SMALL_STATE(2443)] = 71654, + [SMALL_STATE(2444)] = 71725, + [SMALL_STATE(2445)] = 71792, + [SMALL_STATE(2446)] = 71859, + [SMALL_STATE(2447)] = 71926, + [SMALL_STATE(2448)] = 71999, + [SMALL_STATE(2449)] = 72066, + [SMALL_STATE(2450)] = 72145, + [SMALL_STATE(2451)] = 72212, + [SMALL_STATE(2452)] = 72293, + [SMALL_STATE(2453)] = 72360, + [SMALL_STATE(2454)] = 72443, + [SMALL_STATE(2455)] = 72512, + [SMALL_STATE(2456)] = 72581, + [SMALL_STATE(2457)] = 72648, + [SMALL_STATE(2458)] = 72725, + [SMALL_STATE(2459)] = 72808, + [SMALL_STATE(2460)] = 72893, + [SMALL_STATE(2461)] = 72960, + [SMALL_STATE(2462)] = 73027, + [SMALL_STATE(2463)] = 73114, + [SMALL_STATE(2464)] = 73197, + [SMALL_STATE(2465)] = 73264, + [SMALL_STATE(2466)] = 73339, + [SMALL_STATE(2467)] = 73428, + [SMALL_STATE(2468)] = 73495, + [SMALL_STATE(2469)] = 73586, + [SMALL_STATE(2470)] = 73653, + [SMALL_STATE(2471)] = 73730, + [SMALL_STATE(2472)] = 73797, + [SMALL_STATE(2473)] = 73889, + [SMALL_STATE(2474)] = 73955, + [SMALL_STATE(2475)] = 74021, + [SMALL_STATE(2476)] = 74101, + [SMALL_STATE(2477)] = 74167, + [SMALL_STATE(2478)] = 74259, + [SMALL_STATE(2479)] = 74325, + [SMALL_STATE(2480)] = 74409, + [SMALL_STATE(2481)] = 74475, + [SMALL_STATE(2482)] = 74567, + [SMALL_STATE(2483)] = 74659, + [SMALL_STATE(2484)] = 74725, + [SMALL_STATE(2485)] = 74791, + [SMALL_STATE(2486)] = 74875, + [SMALL_STATE(2487)] = 74941, + [SMALL_STATE(2488)] = 75033, + [SMALL_STATE(2489)] = 75125, + [SMALL_STATE(2490)] = 75217, + [SMALL_STATE(2491)] = 75283, + [SMALL_STATE(2492)] = 75351, + [SMALL_STATE(2493)] = 75443, + [SMALL_STATE(2494)] = 75523, + [SMALL_STATE(2495)] = 75615, + [SMALL_STATE(2496)] = 75707, + [SMALL_STATE(2497)] = 75773, + [SMALL_STATE(2498)] = 75839, + [SMALL_STATE(2499)] = 75905, + [SMALL_STATE(2500)] = 75971, + [SMALL_STATE(2501)] = 76063, + [SMALL_STATE(2502)] = 76129, + [SMALL_STATE(2503)] = 76195, + [SMALL_STATE(2504)] = 76279, + [SMALL_STATE(2505)] = 76345, + [SMALL_STATE(2506)] = 76413, + [SMALL_STATE(2507)] = 76479, + [SMALL_STATE(2508)] = 76571, + [SMALL_STATE(2509)] = 76661, + [SMALL_STATE(2510)] = 76727, + [SMALL_STATE(2511)] = 76807, + [SMALL_STATE(2512)] = 76873, + [SMALL_STATE(2513)] = 76953, + [SMALL_STATE(2514)] = 77033, + [SMALL_STATE(2515)] = 77122, + [SMALL_STATE(2516)] = 77195, + [SMALL_STATE(2517)] = 77284, + [SMALL_STATE(2518)] = 77357, + [SMALL_STATE(2519)] = 77446, + [SMALL_STATE(2520)] = 77511, + [SMALL_STATE(2521)] = 77576, + [SMALL_STATE(2522)] = 77641, + [SMALL_STATE(2523)] = 77730, + [SMALL_STATE(2524)] = 77819, + [SMALL_STATE(2525)] = 77892, + [SMALL_STATE(2526)] = 77965, + [SMALL_STATE(2527)] = 78038, + [SMALL_STATE(2528)] = 78111, + [SMALL_STATE(2529)] = 78200, + [SMALL_STATE(2530)] = 78289, + [SMALL_STATE(2531)] = 78354, + [SMALL_STATE(2532)] = 78419, + [SMALL_STATE(2533)] = 78484, + [SMALL_STATE(2534)] = 78573, + [SMALL_STATE(2535)] = 78646, + [SMALL_STATE(2536)] = 78719, + [SMALL_STATE(2537)] = 78792, + [SMALL_STATE(2538)] = 78865, + [SMALL_STATE(2539)] = 78938, + [SMALL_STATE(2540)] = 79027, + [SMALL_STATE(2541)] = 79116, + [SMALL_STATE(2542)] = 79189, + [SMALL_STATE(2543)] = 79254, + [SMALL_STATE(2544)] = 79327, + [SMALL_STATE(2545)] = 79400, + [SMALL_STATE(2546)] = 79473, + [SMALL_STATE(2547)] = 79546, + [SMALL_STATE(2548)] = 79635, + [SMALL_STATE(2549)] = 79708, + [SMALL_STATE(2550)] = 79797, + [SMALL_STATE(2551)] = 79862, + [SMALL_STATE(2552)] = 79951, + [SMALL_STATE(2553)] = 80016, + [SMALL_STATE(2554)] = 80105, + [SMALL_STATE(2555)] = 80178, + [SMALL_STATE(2556)] = 80251, + [SMALL_STATE(2557)] = 80324, + [SMALL_STATE(2558)] = 80389, + [SMALL_STATE(2559)] = 80454, + [SMALL_STATE(2560)] = 80543, + [SMALL_STATE(2561)] = 80632, + [SMALL_STATE(2562)] = 80721, + [SMALL_STATE(2563)] = 80802, + [SMALL_STATE(2564)] = 80891, + [SMALL_STATE(2565)] = 80980, + [SMALL_STATE(2566)] = 81069, + [SMALL_STATE(2567)] = 81158, + [SMALL_STATE(2568)] = 81247, + [SMALL_STATE(2569)] = 81312, + [SMALL_STATE(2570)] = 81385, + [SMALL_STATE(2571)] = 81474, + [SMALL_STATE(2572)] = 81563, + [SMALL_STATE(2573)] = 81628, + [SMALL_STATE(2574)] = 81717, + [SMALL_STATE(2575)] = 81786, + [SMALL_STATE(2576)] = 81875, + [SMALL_STATE(2577)] = 81956, + [SMALL_STATE(2578)] = 82037, + [SMALL_STATE(2579)] = 82118, + [SMALL_STATE(2580)] = 82187, + [SMALL_STATE(2581)] = 82276, + [SMALL_STATE(2582)] = 82349, + [SMALL_STATE(2583)] = 82414, + [SMALL_STATE(2584)] = 82487, + [SMALL_STATE(2585)] = 82556, + [SMALL_STATE(2586)] = 82629, + [SMALL_STATE(2587)] = 82718, + [SMALL_STATE(2588)] = 82783, + [SMALL_STATE(2589)] = 82852, + [SMALL_STATE(2590)] = 82941, + [SMALL_STATE(2591)] = 83030, + [SMALL_STATE(2592)] = 83119, + [SMALL_STATE(2593)] = 83192, + [SMALL_STATE(2594)] = 83265, + [SMALL_STATE(2595)] = 83330, + [SMALL_STATE(2596)] = 83396, + [SMALL_STATE(2597)] = 83464, + [SMALL_STATE(2598)] = 83530, + [SMALL_STATE(2599)] = 83596, + [SMALL_STATE(2600)] = 83668, + [SMALL_STATE(2601)] = 83734, + [SMALL_STATE(2602)] = 83800, + [SMALL_STATE(2603)] = 83872, + [SMALL_STATE(2604)] = 83938, + [SMALL_STATE(2605)] = 84008, + [SMALL_STATE(2606)] = 84078, + [SMALL_STATE(2607)] = 84146, + [SMALL_STATE(2608)] = 84218, + [SMALL_STATE(2609)] = 84281, + [SMALL_STATE(2610)] = 84344, + [SMALL_STATE(2611)] = 84413, + [SMALL_STATE(2612)] = 84476, + [SMALL_STATE(2613)] = 84539, + [SMALL_STATE(2614)] = 84602, + [SMALL_STATE(2615)] = 84669, + [SMALL_STATE(2616)] = 84736, + [SMALL_STATE(2617)] = 84803, + [SMALL_STATE(2618)] = 84866, + [SMALL_STATE(2619)] = 84933, + [SMALL_STATE(2620)] = 85000, + [SMALL_STATE(2621)] = 85067, + [SMALL_STATE(2622)] = 85134, + [SMALL_STATE(2623)] = 85201, + [SMALL_STATE(2624)] = 85268, + [SMALL_STATE(2625)] = 85331, + [SMALL_STATE(2626)] = 85394, + [SMALL_STATE(2627)] = 85461, + [SMALL_STATE(2628)] = 85534, + [SMALL_STATE(2629)] = 85601, + [SMALL_STATE(2630)] = 85668, + [SMALL_STATE(2631)] = 85735, + [SMALL_STATE(2632)] = 85800, + [SMALL_STATE(2633)] = 85869, + [SMALL_STATE(2634)] = 85932, + [SMALL_STATE(2635)] = 85995, + [SMALL_STATE(2636)] = 86058, + [SMALL_STATE(2637)] = 86121, + [SMALL_STATE(2638)] = 86184, + [SMALL_STATE(2639)] = 86251, + [SMALL_STATE(2640)] = 86318, + [SMALL_STATE(2641)] = 86381, + [SMALL_STATE(2642)] = 86448, + [SMALL_STATE(2643)] = 86515, + [SMALL_STATE(2644)] = 86578, + [SMALL_STATE(2645)] = 86645, + [SMALL_STATE(2646)] = 86708, + [SMALL_STATE(2647)] = 86771, + [SMALL_STATE(2648)] = 86834, + [SMALL_STATE(2649)] = 86901, + [SMALL_STATE(2650)] = 86968, + [SMALL_STATE(2651)] = 87033, + [SMALL_STATE(2652)] = 87098, + [SMALL_STATE(2653)] = 87169, + [SMALL_STATE(2654)] = 87240, + [SMALL_STATE(2655)] = 87313, + [SMALL_STATE(2656)] = 87376, + [SMALL_STATE(2657)] = 87441, + [SMALL_STATE(2658)] = 87508, + [SMALL_STATE(2659)] = 87570, + [SMALL_STATE(2660)] = 87642, + [SMALL_STATE(2661)] = 87704, + [SMALL_STATE(2662)] = 87776, + [SMALL_STATE(2663)] = 87840, + [SMALL_STATE(2664)] = 87902, + [SMALL_STATE(2665)] = 87966, + [SMALL_STATE(2666)] = 88080, + [SMALL_STATE(2667)] = 88142, + [SMALL_STATE(2668)] = 88206, + [SMALL_STATE(2669)] = 88270, + [SMALL_STATE(2670)] = 88388, + [SMALL_STATE(2671)] = 88454, + [SMALL_STATE(2672)] = 88572, + [SMALL_STATE(2673)] = 88634, + [SMALL_STATE(2674)] = 88696, + [SMALL_STATE(2675)] = 88760, + [SMALL_STATE(2676)] = 88824, + [SMALL_STATE(2677)] = 88886, + [SMALL_STATE(2678)] = 88948, + [SMALL_STATE(2679)] = 89014, + [SMALL_STATE(2680)] = 89078, + [SMALL_STATE(2681)] = 89140, + [SMALL_STATE(2682)] = 89204, + [SMALL_STATE(2683)] = 89274, + [SMALL_STATE(2684)] = 89338, + [SMALL_STATE(2685)] = 89402, + [SMALL_STATE(2686)] = 89466, + [SMALL_STATE(2687)] = 89530, + [SMALL_STATE(2688)] = 89594, + [SMALL_STATE(2689)] = 89664, + [SMALL_STATE(2690)] = 89734, + [SMALL_STATE(2691)] = 89804, + [SMALL_STATE(2692)] = 89868, + [SMALL_STATE(2693)] = 89938, + [SMALL_STATE(2694)] = 90008, + [SMALL_STATE(2695)] = 90072, + [SMALL_STATE(2696)] = 90142, + [SMALL_STATE(2697)] = 90212, + [SMALL_STATE(2698)] = 90282, + [SMALL_STATE(2699)] = 90352, + [SMALL_STATE(2700)] = 90422, + [SMALL_STATE(2701)] = 90492, + [SMALL_STATE(2702)] = 90562, + [SMALL_STATE(2703)] = 90632, + [SMALL_STATE(2704)] = 90702, + [SMALL_STATE(2705)] = 90772, + [SMALL_STATE(2706)] = 90842, + [SMALL_STATE(2707)] = 90954, + [SMALL_STATE(2708)] = 91018, + [SMALL_STATE(2709)] = 91084, + [SMALL_STATE(2710)] = 91154, + [SMALL_STATE(2711)] = 91266, + [SMALL_STATE(2712)] = 91328, + [SMALL_STATE(2713)] = 91442, + [SMALL_STATE(2714)] = 91508, + [SMALL_STATE(2715)] = 91570, + [SMALL_STATE(2716)] = 91632, + [SMALL_STATE(2717)] = 91696, + [SMALL_STATE(2718)] = 91758, + [SMALL_STATE(2719)] = 91820, + [SMALL_STATE(2720)] = 91882, + [SMALL_STATE(2721)] = 91944, + [SMALL_STATE(2722)] = 92006, + [SMALL_STATE(2723)] = 92068, + [SMALL_STATE(2724)] = 92130, + [SMALL_STATE(2725)] = 92192, + [SMALL_STATE(2726)] = 92254, + [SMALL_STATE(2727)] = 92324, + [SMALL_STATE(2728)] = 92393, + [SMALL_STATE(2729)] = 92460, + [SMALL_STATE(2730)] = 92521, + [SMALL_STATE(2731)] = 92590, + [SMALL_STATE(2732)] = 92651, + [SMALL_STATE(2733)] = 92720, + [SMALL_STATE(2734)] = 92781, + [SMALL_STATE(2735)] = 92890, + [SMALL_STATE(2736)] = 92951, + [SMALL_STATE(2737)] = 93016, + [SMALL_STATE(2738)] = 93085, + [SMALL_STATE(2739)] = 93146, + [SMALL_STATE(2740)] = 93215, + [SMALL_STATE(2741)] = 93282, + [SMALL_STATE(2742)] = 93343, + [SMALL_STATE(2743)] = 93404, + [SMALL_STATE(2744)] = 93465, + [SMALL_STATE(2745)] = 93526, + [SMALL_STATE(2746)] = 93587, + [SMALL_STATE(2747)] = 93652, + [SMALL_STATE(2748)] = 93713, + [SMALL_STATE(2749)] = 93774, + [SMALL_STATE(2750)] = 93835, + [SMALL_STATE(2751)] = 93904, + [SMALL_STATE(2752)] = 93969, + [SMALL_STATE(2753)] = 94030, + [SMALL_STATE(2754)] = 94091, + [SMALL_STATE(2755)] = 94152, + [SMALL_STATE(2756)] = 94213, + [SMALL_STATE(2757)] = 94274, + [SMALL_STATE(2758)] = 94335, + [SMALL_STATE(2759)] = 94396, + [SMALL_STATE(2760)] = 94457, + [SMALL_STATE(2761)] = 94518, + [SMALL_STATE(2762)] = 94585, + [SMALL_STATE(2763)] = 94648, + [SMALL_STATE(2764)] = 94711, + [SMALL_STATE(2765)] = 94772, + [SMALL_STATE(2766)] = 94833, + [SMALL_STATE(2767)] = 94902, + [SMALL_STATE(2768)] = 94963, + [SMALL_STATE(2769)] = 95026, + [SMALL_STATE(2770)] = 95087, + [SMALL_STATE(2771)] = 95148, + [SMALL_STATE(2772)] = 95257, + [SMALL_STATE(2773)] = 95320, + [SMALL_STATE(2774)] = 95389, + [SMALL_STATE(2775)] = 95458, + [SMALL_STATE(2776)] = 95519, + [SMALL_STATE(2777)] = 95580, + [SMALL_STATE(2778)] = 95641, + [SMALL_STATE(2779)] = 95702, + [SMALL_STATE(2780)] = 95763, + [SMALL_STATE(2781)] = 95824, + [SMALL_STATE(2782)] = 95885, + [SMALL_STATE(2783)] = 95946, + [SMALL_STATE(2784)] = 96013, + [SMALL_STATE(2785)] = 96074, + [SMALL_STATE(2786)] = 96135, + [SMALL_STATE(2787)] = 96196, + [SMALL_STATE(2788)] = 96257, + [SMALL_STATE(2789)] = 96318, + [SMALL_STATE(2790)] = 96379, + [SMALL_STATE(2791)] = 96440, + [SMALL_STATE(2792)] = 96501, + [SMALL_STATE(2793)] = 96562, + [SMALL_STATE(2794)] = 96623, + [SMALL_STATE(2795)] = 96684, + [SMALL_STATE(2796)] = 96745, + [SMALL_STATE(2797)] = 96808, + [SMALL_STATE(2798)] = 96869, + [SMALL_STATE(2799)] = 96938, + [SMALL_STATE(2800)] = 97049, + [SMALL_STATE(2801)] = 97110, + [SMALL_STATE(2802)] = 97171, + [SMALL_STATE(2803)] = 97236, + [SMALL_STATE(2804)] = 97301, + [SMALL_STATE(2805)] = 97362, + [SMALL_STATE(2806)] = 97427, + [SMALL_STATE(2807)] = 97488, + [SMALL_STATE(2808)] = 97549, + [SMALL_STATE(2809)] = 97610, + [SMALL_STATE(2810)] = 97671, + [SMALL_STATE(2811)] = 97740, + [SMALL_STATE(2812)] = 97801, + [SMALL_STATE(2813)] = 97862, + [SMALL_STATE(2814)] = 97931, + [SMALL_STATE(2815)] = 97992, + [SMALL_STATE(2816)] = 98053, + [SMALL_STATE(2817)] = 98122, + [SMALL_STATE(2818)] = 98191, + [SMALL_STATE(2819)] = 98260, + [SMALL_STATE(2820)] = 98327, + [SMALL_STATE(2821)] = 98396, + [SMALL_STATE(2822)] = 98457, + [SMALL_STATE(2823)] = 98566, + [SMALL_STATE(2824)] = 98631, + [SMALL_STATE(2825)] = 98700, + [SMALL_STATE(2826)] = 98811, + [SMALL_STATE(2827)] = 98874, + [SMALL_STATE(2828)] = 98983, + [SMALL_STATE(2829)] = 99044, + [SMALL_STATE(2830)] = 99113, + [SMALL_STATE(2831)] = 99182, + [SMALL_STATE(2832)] = 99251, + [SMALL_STATE(2833)] = 99320, + [SMALL_STATE(2834)] = 99384, + [SMALL_STATE(2835)] = 99448, + [SMALL_STATE(2836)] = 99508, + [SMALL_STATE(2837)] = 99568, + [SMALL_STATE(2838)] = 99628, + [SMALL_STATE(2839)] = 99690, + [SMALL_STATE(2840)] = 99754, + [SMALL_STATE(2841)] = 99814, + [SMALL_STATE(2842)] = 99874, + [SMALL_STATE(2843)] = 99934, + [SMALL_STATE(2844)] = 99998, + [SMALL_STATE(2845)] = 100058, + [SMALL_STATE(2846)] = 100118, + [SMALL_STATE(2847)] = 100186, + [SMALL_STATE(2848)] = 100246, + [SMALL_STATE(2849)] = 100306, + [SMALL_STATE(2850)] = 100366, + [SMALL_STATE(2851)] = 100426, + [SMALL_STATE(2852)] = 100492, + [SMALL_STATE(2853)] = 100552, + [SMALL_STATE(2854)] = 100620, + [SMALL_STATE(2855)] = 100680, + [SMALL_STATE(2856)] = 100744, + [SMALL_STATE(2857)] = 100806, + [SMALL_STATE(2858)] = 100870, + [SMALL_STATE(2859)] = 100930, + [SMALL_STATE(2860)] = 100994, + [SMALL_STATE(2861)] = 101058, + [SMALL_STATE(2862)] = 101124, + [SMALL_STATE(2863)] = 101188, + [SMALL_STATE(2864)] = 101252, + [SMALL_STATE(2865)] = 101314, + [SMALL_STATE(2866)] = 101378, + [SMALL_STATE(2867)] = 101442, + [SMALL_STATE(2868)] = 101506, + [SMALL_STATE(2869)] = 101570, + [SMALL_STATE(2870)] = 101630, + [SMALL_STATE(2871)] = 101690, + [SMALL_STATE(2872)] = 101750, + [SMALL_STATE(2873)] = 101814, + [SMALL_STATE(2874)] = 101886, + [SMALL_STATE(2875)] = 101950, + [SMALL_STATE(2876)] = 102014, + [SMALL_STATE(2877)] = 102078, + [SMALL_STATE(2878)] = 102142, + [SMALL_STATE(2879)] = 102202, + [SMALL_STATE(2880)] = 102266, + [SMALL_STATE(2881)] = 102330, + [SMALL_STATE(2882)] = 102392, + [SMALL_STATE(2883)] = 102456, + [SMALL_STATE(2884)] = 102520, + [SMALL_STATE(2885)] = 102584, + [SMALL_STATE(2886)] = 102648, + [SMALL_STATE(2887)] = 102710, + [SMALL_STATE(2888)] = 102773, + [SMALL_STATE(2889)] = 102832, + [SMALL_STATE(2890)] = 102895, + [SMALL_STATE(2891)] = 102954, + [SMALL_STATE(2892)] = 103017, + [SMALL_STATE(2893)] = 103080, + [SMALL_STATE(2894)] = 103143, + [SMALL_STATE(2895)] = 103206, + [SMALL_STATE(2896)] = 103269, + [SMALL_STATE(2897)] = 103332, + [SMALL_STATE(2898)] = 103391, + [SMALL_STATE(2899)] = 103450, + [SMALL_STATE(2900)] = 103509, + [SMALL_STATE(2901)] = 103568, + [SMALL_STATE(2902)] = 103629, + [SMALL_STATE(2903)] = 103688, + [SMALL_STATE(2904)] = 103747, + [SMALL_STATE(2905)] = 103810, + [SMALL_STATE(2906)] = 103873, + [SMALL_STATE(2907)] = 103932, + [SMALL_STATE(2908)] = 103991, + [SMALL_STATE(2909)] = 104052, + [SMALL_STATE(2910)] = 104113, + [SMALL_STATE(2911)] = 104174, + [SMALL_STATE(2912)] = 104233, + [SMALL_STATE(2913)] = 104294, + [SMALL_STATE(2914)] = 104353, + [SMALL_STATE(2915)] = 104412, + [SMALL_STATE(2916)] = 104471, + [SMALL_STATE(2917)] = 104530, + [SMALL_STATE(2918)] = 104591, + [SMALL_STATE(2919)] = 104652, + [SMALL_STATE(2920)] = 104711, + [SMALL_STATE(2921)] = 104770, + [SMALL_STATE(2922)] = 104829, + [SMALL_STATE(2923)] = 104888, + [SMALL_STATE(2924)] = 104949, + [SMALL_STATE(2925)] = 105008, + [SMALL_STATE(2926)] = 105067, + [SMALL_STATE(2927)] = 105128, + [SMALL_STATE(2928)] = 105187, + [SMALL_STATE(2929)] = 105250, + [SMALL_STATE(2930)] = 105313, + [SMALL_STATE(2931)] = 105372, + [SMALL_STATE(2932)] = 105433, + [SMALL_STATE(2933)] = 105492, + [SMALL_STATE(2934)] = 105551, + [SMALL_STATE(2935)] = 105612, + [SMALL_STATE(2936)] = 105671, + [SMALL_STATE(2937)] = 105730, + [SMALL_STATE(2938)] = 105801, + [SMALL_STATE(2939)] = 105860, + [SMALL_STATE(2940)] = 105921, + [SMALL_STATE(2941)] = 105980, + [SMALL_STATE(2942)] = 106043, + [SMALL_STATE(2943)] = 106102, + [SMALL_STATE(2944)] = 106175, + [SMALL_STATE(2945)] = 106234, + [SMALL_STATE(2946)] = 106293, + [SMALL_STATE(2947)] = 106356, + [SMALL_STATE(2948)] = 106415, + [SMALL_STATE(2949)] = 106474, + [SMALL_STATE(2950)] = 106533, + [SMALL_STATE(2951)] = 106592, + [SMALL_STATE(2952)] = 106651, + [SMALL_STATE(2953)] = 106710, + [SMALL_STATE(2954)] = 106769, + [SMALL_STATE(2955)] = 106828, + [SMALL_STATE(2956)] = 106887, + [SMALL_STATE(2957)] = 106946, + [SMALL_STATE(2958)] = 107005, + [SMALL_STATE(2959)] = 107068, + [SMALL_STATE(2960)] = 107127, + [SMALL_STATE(2961)] = 107186, + [SMALL_STATE(2962)] = 107245, + [SMALL_STATE(2963)] = 107304, + [SMALL_STATE(2964)] = 107367, + [SMALL_STATE(2965)] = 107426, + [SMALL_STATE(2966)] = 107487, + [SMALL_STATE(2967)] = 107550, + [SMALL_STATE(2968)] = 107609, + [SMALL_STATE(2969)] = 107668, + [SMALL_STATE(2970)] = 107727, + [SMALL_STATE(2971)] = 107788, + [SMALL_STATE(2972)] = 107851, + [SMALL_STATE(2973)] = 107911, + [SMALL_STATE(2974)] = 107971, + [SMALL_STATE(2975)] = 108031, + [SMALL_STATE(2976)] = 108091, + [SMALL_STATE(2977)] = 108151, + [SMALL_STATE(2978)] = 108209, + [SMALL_STATE(2979)] = 108267, + [SMALL_STATE(2980)] = 108327, + [SMALL_STATE(2981)] = 108385, + [SMALL_STATE(2982)] = 108445, + [SMALL_STATE(2983)] = 108503, + [SMALL_STATE(2984)] = 108561, + [SMALL_STATE(2985)] = 108621, + [SMALL_STATE(2986)] = 108681, + [SMALL_STATE(2987)] = 108739, + [SMALL_STATE(2988)] = 108797, + [SMALL_STATE(2989)] = 108855, + [SMALL_STATE(2990)] = 108915, + [SMALL_STATE(2991)] = 108973, + [SMALL_STATE(2992)] = 109031, + [SMALL_STATE(2993)] = 109097, + [SMALL_STATE(2994)] = 109157, + [SMALL_STATE(2995)] = 109217, + [SMALL_STATE(2996)] = 109275, + [SMALL_STATE(2997)] = 109333, + [SMALL_STATE(2998)] = 109391, + [SMALL_STATE(2999)] = 109449, + [SMALL_STATE(3000)] = 109509, + [SMALL_STATE(3001)] = 109567, + [SMALL_STATE(3002)] = 109625, + [SMALL_STATE(3003)] = 109683, + [SMALL_STATE(3004)] = 109743, + [SMALL_STATE(3005)] = 109801, + [SMALL_STATE(3006)] = 109859, + [SMALL_STATE(3007)] = 109917, + [SMALL_STATE(3008)] = 109975, + [SMALL_STATE(3009)] = 110035, + [SMALL_STATE(3010)] = 110095, + [SMALL_STATE(3011)] = 110153, + [SMALL_STATE(3012)] = 110213, + [SMALL_STATE(3013)] = 110271, + [SMALL_STATE(3014)] = 110329, + [SMALL_STATE(3015)] = 110387, + [SMALL_STATE(3016)] = 110447, + [SMALL_STATE(3017)] = 110505, + [SMALL_STATE(3018)] = 110565, + [SMALL_STATE(3019)] = 110623, + [SMALL_STATE(3020)] = 110681, + [SMALL_STATE(3021)] = 110741, + [SMALL_STATE(3022)] = 110799, + [SMALL_STATE(3023)] = 110859, + [SMALL_STATE(3024)] = 110917, + [SMALL_STATE(3025)] = 110975, + [SMALL_STATE(3026)] = 111035, + [SMALL_STATE(3027)] = 111093, + [SMALL_STATE(3028)] = 111150, + [SMALL_STATE(3029)] = 111207, + [SMALL_STATE(3030)] = 111264, + [SMALL_STATE(3031)] = 111321, + [SMALL_STATE(3032)] = 111378, + [SMALL_STATE(3033)] = 111435, + [SMALL_STATE(3034)] = 111492, + [SMALL_STATE(3035)] = 111549, + [SMALL_STATE(3036)] = 111606, + [SMALL_STATE(3037)] = 111663, + [SMALL_STATE(3038)] = 111720, + [SMALL_STATE(3039)] = 111777, + [SMALL_STATE(3040)] = 111834, + [SMALL_STATE(3041)] = 111891, + [SMALL_STATE(3042)] = 111948, + [SMALL_STATE(3043)] = 112005, + [SMALL_STATE(3044)] = 112062, + [SMALL_STATE(3045)] = 112119, + [SMALL_STATE(3046)] = 112176, + [SMALL_STATE(3047)] = 112233, + [SMALL_STATE(3048)] = 112290, + [SMALL_STATE(3049)] = 112347, + [SMALL_STATE(3050)] = 112404, + [SMALL_STATE(3051)] = 112461, + [SMALL_STATE(3052)] = 112518, + [SMALL_STATE(3053)] = 112575, + [SMALL_STATE(3054)] = 112632, + [SMALL_STATE(3055)] = 112689, + [SMALL_STATE(3056)] = 112746, + [SMALL_STATE(3057)] = 112803, + [SMALL_STATE(3058)] = 112860, + [SMALL_STATE(3059)] = 112917, + [SMALL_STATE(3060)] = 112974, + [SMALL_STATE(3061)] = 113033, + [SMALL_STATE(3062)] = 113090, + [SMALL_STATE(3063)] = 113147, + [SMALL_STATE(3064)] = 113204, + [SMALL_STATE(3065)] = 113261, + [SMALL_STATE(3066)] = 113318, + [SMALL_STATE(3067)] = 113375, + [SMALL_STATE(3068)] = 113432, + [SMALL_STATE(3069)] = 113489, + [SMALL_STATE(3070)] = 113546, + [SMALL_STATE(3071)] = 113613, + [SMALL_STATE(3072)] = 113670, + [SMALL_STATE(3073)] = 113727, + [SMALL_STATE(3074)] = 113784, + [SMALL_STATE(3075)] = 113841, + [SMALL_STATE(3076)] = 113898, + [SMALL_STATE(3077)] = 113955, + [SMALL_STATE(3078)] = 114012, + [SMALL_STATE(3079)] = 114069, + [SMALL_STATE(3080)] = 114126, + [SMALL_STATE(3081)] = 114183, + [SMALL_STATE(3082)] = 114240, + [SMALL_STATE(3083)] = 114297, + [SMALL_STATE(3084)] = 114354, + [SMALL_STATE(3085)] = 114411, + [SMALL_STATE(3086)] = 114468, + [SMALL_STATE(3087)] = 114525, + [SMALL_STATE(3088)] = 114582, + [SMALL_STATE(3089)] = 114639, + [SMALL_STATE(3090)] = 114696, + [SMALL_STATE(3091)] = 114753, + [SMALL_STATE(3092)] = 114810, + [SMALL_STATE(3093)] = 114867, + [SMALL_STATE(3094)] = 114924, + [SMALL_STATE(3095)] = 114981, + [SMALL_STATE(3096)] = 115038, + [SMALL_STATE(3097)] = 115095, + [SMALL_STATE(3098)] = 115160, + [SMALL_STATE(3099)] = 115217, + [SMALL_STATE(3100)] = 115274, + [SMALL_STATE(3101)] = 115330, + [SMALL_STATE(3102)] = 115406, + [SMALL_STATE(3103)] = 115482, + [SMALL_STATE(3104)] = 115558, + [SMALL_STATE(3105)] = 115634, + [SMALL_STATE(3106)] = 115710, + [SMALL_STATE(3107)] = 115774, + [SMALL_STATE(3108)] = 115830, + [SMALL_STATE(3109)] = 115906, + [SMALL_STATE(3110)] = 115982, + [SMALL_STATE(3111)] = 116044, + [SMALL_STATE(3112)] = 116100, + [SMALL_STATE(3113)] = 116176, + [SMALL_STATE(3114)] = 116252, + [SMALL_STATE(3115)] = 116328, + [SMALL_STATE(3116)] = 116404, + [SMALL_STATE(3117)] = 116476, + [SMALL_STATE(3118)] = 116552, + [SMALL_STATE(3119)] = 116628, + [SMALL_STATE(3120)] = 116704, + [SMALL_STATE(3121)] = 116780, + [SMALL_STATE(3122)] = 116856, + [SMALL_STATE(3123)] = 116912, + [SMALL_STATE(3124)] = 116975, + [SMALL_STATE(3125)] = 117044, + [SMALL_STATE(3126)] = 117109, + [SMALL_STATE(3127)] = 117178, + [SMALL_STATE(3128)] = 117247, + [SMALL_STATE(3129)] = 117316, + [SMALL_STATE(3130)] = 117372, + [SMALL_STATE(3131)] = 117426, + [SMALL_STATE(3132)] = 117484, + [SMALL_STATE(3133)] = 117544, + [SMALL_STATE(3134)] = 117600, + [SMALL_STATE(3135)] = 117656, + [SMALL_STATE(3136)] = 117710, + [SMALL_STATE(3137)] = 117780, + [SMALL_STATE(3138)] = 117836, + [SMALL_STATE(3139)] = 117893, + [SMALL_STATE(3140)] = 117950, + [SMALL_STATE(3141)] = 118007, + [SMALL_STATE(3142)] = 118064, + [SMALL_STATE(3143)] = 118119, + [SMALL_STATE(3144)] = 118174, + [SMALL_STATE(3145)] = 118231, + [SMALL_STATE(3146)] = 118284, + [SMALL_STATE(3147)] = 118337, + [SMALL_STATE(3148)] = 118390, + [SMALL_STATE(3149)] = 118457, + [SMALL_STATE(3150)] = 118510, + [SMALL_STATE(3151)] = 118571, + [SMALL_STATE(3152)] = 118624, + [SMALL_STATE(3153)] = 118681, + [SMALL_STATE(3154)] = 118750, + [SMALL_STATE(3155)] = 118811, + [SMALL_STATE(3156)] = 118864, + [SMALL_STATE(3157)] = 118919, + [SMALL_STATE(3158)] = 118974, + [SMALL_STATE(3159)] = 119027, + [SMALL_STATE(3160)] = 119080, + [SMALL_STATE(3161)] = 119133, + [SMALL_STATE(3162)] = 119188, + [SMALL_STATE(3163)] = 119241, + [SMALL_STATE(3164)] = 119296, + [SMALL_STATE(3165)] = 119349, + [SMALL_STATE(3166)] = 119401, + [SMALL_STATE(3167)] = 119465, + [SMALL_STATE(3168)] = 119527, + [SMALL_STATE(3169)] = 119589, + [SMALL_STATE(3170)] = 119645, + [SMALL_STATE(3171)] = 119699, + [SMALL_STATE(3172)] = 119757, + [SMALL_STATE(3173)] = 119817, + [SMALL_STATE(3174)] = 119883, + [SMALL_STATE(3175)] = 119951, + [SMALL_STATE(3176)] = 120021, + [SMALL_STATE(3177)] = 120085, + [SMALL_STATE(3178)] = 120157, + [SMALL_STATE(3179)] = 120231, + [SMALL_STATE(3180)] = 120293, + [SMALL_STATE(3181)] = 120369, + [SMALL_STATE(3182)] = 120447, + [SMALL_STATE(3183)] = 120511, + [SMALL_STATE(3184)] = 120575, + [SMALL_STATE(3185)] = 120637, + [SMALL_STATE(3186)] = 120703, + [SMALL_STATE(3187)] = 120759, + [SMALL_STATE(3188)] = 120817, + [SMALL_STATE(3189)] = 120877, + [SMALL_STATE(3190)] = 120943, + [SMALL_STATE(3191)] = 121011, + [SMALL_STATE(3192)] = 121081, + [SMALL_STATE(3193)] = 121153, + [SMALL_STATE(3194)] = 121227, + [SMALL_STATE(3195)] = 121303, + [SMALL_STATE(3196)] = 121381, + [SMALL_STATE(3197)] = 121445, + [SMALL_STATE(3198)] = 121507, + [SMALL_STATE(3199)] = 121563, + [SMALL_STATE(3200)] = 121619, + [SMALL_STATE(3201)] = 121677, + [SMALL_STATE(3202)] = 121735, + [SMALL_STATE(3203)] = 121795, + [SMALL_STATE(3204)] = 121855, + [SMALL_STATE(3205)] = 121921, + [SMALL_STATE(3206)] = 121987, + [SMALL_STATE(3207)] = 122055, + [SMALL_STATE(3208)] = 122123, + [SMALL_STATE(3209)] = 122193, + [SMALL_STATE(3210)] = 122263, + [SMALL_STATE(3211)] = 122335, + [SMALL_STATE(3212)] = 122407, + [SMALL_STATE(3213)] = 122481, + [SMALL_STATE(3214)] = 122555, + [SMALL_STATE(3215)] = 122631, + [SMALL_STATE(3216)] = 122707, + [SMALL_STATE(3217)] = 122785, + [SMALL_STATE(3218)] = 122863, + [SMALL_STATE(3219)] = 122927, + [SMALL_STATE(3220)] = 122991, + [SMALL_STATE(3221)] = 123053, + [SMALL_STATE(3222)] = 123115, + [SMALL_STATE(3223)] = 123171, + [SMALL_STATE(3224)] = 123229, + [SMALL_STATE(3225)] = 123289, + [SMALL_STATE(3226)] = 123355, + [SMALL_STATE(3227)] = 123423, + [SMALL_STATE(3228)] = 123493, + [SMALL_STATE(3229)] = 123565, + [SMALL_STATE(3230)] = 123639, + [SMALL_STATE(3231)] = 123715, + [SMALL_STATE(3232)] = 123793, + [SMALL_STATE(3233)] = 123857, + [SMALL_STATE(3234)] = 123919, + [SMALL_STATE(3235)] = 123987, + [SMALL_STATE(3236)] = 124057, + [SMALL_STATE(3237)] = 124129, + [SMALL_STATE(3238)] = 124203, + [SMALL_STATE(3239)] = 124263, + [SMALL_STATE(3240)] = 124321, + [SMALL_STATE(3241)] = 124375, + [SMALL_STATE(3242)] = 124425, + [SMALL_STATE(3243)] = 124477, + [SMALL_STATE(3244)] = 124527, + [SMALL_STATE(3245)] = 124581, + [SMALL_STATE(3246)] = 124635, + [SMALL_STATE(3247)] = 124689, + [SMALL_STATE(3248)] = 124753, + [SMALL_STATE(3249)] = 124819, + [SMALL_STATE(3250)] = 124873, + [SMALL_STATE(3251)] = 124927, + [SMALL_STATE(3252)] = 124983, + [SMALL_STATE(3253)] = 125041, + [SMALL_STATE(3254)] = 125101, + [SMALL_STATE(3255)] = 125167, + [SMALL_STATE(3256)] = 125233, + [SMALL_STATE(3257)] = 125301, + [SMALL_STATE(3258)] = 125371, + [SMALL_STATE(3259)] = 125425, + [SMALL_STATE(3260)] = 125477, + [SMALL_STATE(3261)] = 125529, + [SMALL_STATE(3262)] = 125601, + [SMALL_STATE(3263)] = 125675, + [SMALL_STATE(3264)] = 125751, + [SMALL_STATE(3265)] = 125829, + [SMALL_STATE(3266)] = 125893, + [SMALL_STATE(3267)] = 125943, + [SMALL_STATE(3268)] = 125993, + [SMALL_STATE(3269)] = 126055, + [SMALL_STATE(3270)] = 126107, + [SMALL_STATE(3271)] = 126157, + [SMALL_STATE(3272)] = 126207, + [SMALL_STATE(3273)] = 126271, + [SMALL_STATE(3274)] = 126323, + [SMALL_STATE(3275)] = 126375, + [SMALL_STATE(3276)] = 126427, + [SMALL_STATE(3277)] = 126479, + [SMALL_STATE(3278)] = 126543, + [SMALL_STATE(3279)] = 126595, + [SMALL_STATE(3280)] = 126659, + [SMALL_STATE(3281)] = 126715, + [SMALL_STATE(3282)] = 126771, + [SMALL_STATE(3283)] = 126829, + [SMALL_STATE(3284)] = 126887, + [SMALL_STATE(3285)] = 126947, + [SMALL_STATE(3286)] = 127001, + [SMALL_STATE(3287)] = 127061, + [SMALL_STATE(3288)] = 127127, + [SMALL_STATE(3289)] = 127193, + [SMALL_STATE(3290)] = 127261, + [SMALL_STATE(3291)] = 127329, + [SMALL_STATE(3292)] = 127399, + [SMALL_STATE(3293)] = 127469, + [SMALL_STATE(3294)] = 127541, + [SMALL_STATE(3295)] = 127613, + [SMALL_STATE(3296)] = 127687, + [SMALL_STATE(3297)] = 127761, + [SMALL_STATE(3298)] = 127837, + [SMALL_STATE(3299)] = 127889, + [SMALL_STATE(3300)] = 127965, + [SMALL_STATE(3301)] = 128043, + [SMALL_STATE(3302)] = 128121, + [SMALL_STATE(3303)] = 128177, + [SMALL_STATE(3304)] = 128238, + [SMALL_STATE(3305)] = 128295, + [SMALL_STATE(3306)] = 128356, + [SMALL_STATE(3307)] = 128411, + [SMALL_STATE(3308)] = 128462, + [SMALL_STATE(3309)] = 128523, + [SMALL_STATE(3310)] = 128584, + [SMALL_STATE(3311)] = 128637, + [SMALL_STATE(3312)] = 128698, + [SMALL_STATE(3313)] = 128757, + [SMALL_STATE(3314)] = 128808, + [SMALL_STATE(3315)] = 128859, + [SMALL_STATE(3316)] = 128910, + [SMALL_STATE(3317)] = 128965, + [SMALL_STATE(3318)] = 129016, + [SMALL_STATE(3319)] = 129077, + [SMALL_STATE(3320)] = 129138, + [SMALL_STATE(3321)] = 129189, + [SMALL_STATE(3322)] = 129238, + [SMALL_STATE(3323)] = 129289, + [SMALL_STATE(3324)] = 129342, + [SMALL_STATE(3325)] = 129397, + [SMALL_STATE(3326)] = 129458, + [SMALL_STATE(3327)] = 129519, + [SMALL_STATE(3328)] = 129582, + [SMALL_STATE(3329)] = 129647, + [SMALL_STATE(3330)] = 129714, + [SMALL_STATE(3331)] = 129783, + [SMALL_STATE(3332)] = 129854, + [SMALL_STATE(3333)] = 129905, + [SMALL_STATE(3334)] = 129966, + [SMALL_STATE(3335)] = 130039, + [SMALL_STATE(3336)] = 130088, + [SMALL_STATE(3337)] = 130137, + [SMALL_STATE(3338)] = 130196, + [SMALL_STATE(3339)] = 130257, + [SMALL_STATE(3340)] = 130311, + [SMALL_STATE(3341)] = 130365, + [SMALL_STATE(3342)] = 130451, + [SMALL_STATE(3343)] = 130505, + [SMALL_STATE(3344)] = 130563, + [SMALL_STATE(3345)] = 130649, + [SMALL_STATE(3346)] = 130701, + [SMALL_STATE(3347)] = 130765, + [SMALL_STATE(3348)] = 130817, + [SMALL_STATE(3349)] = 130871, + [SMALL_STATE(3350)] = 130925, + [SMALL_STATE(3351)] = 130979, + [SMALL_STATE(3352)] = 131037, + [SMALL_STATE(3353)] = 131091, + [SMALL_STATE(3354)] = 131149, + [SMALL_STATE(3355)] = 131202, + [SMALL_STATE(3356)] = 131253, + [SMALL_STATE(3357)] = 131308, + [SMALL_STATE(3358)] = 131373, + [SMALL_STATE(3359)] = 131456, + [SMALL_STATE(3360)] = 131505, + [SMALL_STATE(3361)] = 131556, + [SMALL_STATE(3362)] = 131619, + [SMALL_STATE(3363)] = 131684, + [SMALL_STATE(3364)] = 131735, + [SMALL_STATE(3365)] = 131788, + [SMALL_STATE(3366)] = 131837, + [SMALL_STATE(3367)] = 131890, + [SMALL_STATE(3368)] = 131943, + [SMALL_STATE(3369)] = 131994, + [SMALL_STATE(3370)] = 132043, + [SMALL_STATE(3371)] = 132096, + [SMALL_STATE(3372)] = 132151, + [SMALL_STATE(3373)] = 132234, + [SMALL_STATE(3374)] = 132283, + [SMALL_STATE(3375)] = 132338, + [SMALL_STATE(3376)] = 132393, + [SMALL_STATE(3377)] = 132444, + [SMALL_STATE(3378)] = 132497, + [SMALL_STATE(3379)] = 132552, + [SMALL_STATE(3380)] = 132605, + [SMALL_STATE(3381)] = 132656, + [SMALL_STATE(3382)] = 132704, + [SMALL_STATE(3383)] = 132752, + [SMALL_STATE(3384)] = 132812, + [SMALL_STATE(3385)] = 132862, + [SMALL_STATE(3386)] = 132910, + [SMALL_STATE(3387)] = 132958, + [SMALL_STATE(3388)] = 133006, + [SMALL_STATE(3389)] = 133054, + [SMALL_STATE(3390)] = 133116, + [SMALL_STATE(3391)] = 133164, + [SMALL_STATE(3392)] = 133222, + [SMALL_STATE(3393)] = 133270, + [SMALL_STATE(3394)] = 133318, + [SMALL_STATE(3395)] = 133366, + [SMALL_STATE(3396)] = 133414, + [SMALL_STATE(3397)] = 133462, + [SMALL_STATE(3398)] = 133524, + [SMALL_STATE(3399)] = 133572, + [SMALL_STATE(3400)] = 133624, + [SMALL_STATE(3401)] = 133672, + [SMALL_STATE(3402)] = 133720, + [SMALL_STATE(3403)] = 133768, + [SMALL_STATE(3404)] = 133828, + [SMALL_STATE(3405)] = 133876, + [SMALL_STATE(3406)] = 133938, + [SMALL_STATE(3407)] = 133988, + [SMALL_STATE(3408)] = 134038, + [SMALL_STATE(3409)] = 134086, + [SMALL_STATE(3410)] = 134138, + [SMALL_STATE(3411)] = 134190, + [SMALL_STATE(3412)] = 134252, + [SMALL_STATE(3413)] = 134304, + [SMALL_STATE(3414)] = 134366, + [SMALL_STATE(3415)] = 134414, + [SMALL_STATE(3416)] = 134462, + [SMALL_STATE(3417)] = 134524, + [SMALL_STATE(3418)] = 134572, + [SMALL_STATE(3419)] = 134620, + [SMALL_STATE(3420)] = 134668, + [SMALL_STATE(3421)] = 134716, + [SMALL_STATE(3422)] = 134764, + [SMALL_STATE(3423)] = 134814, + [SMALL_STATE(3424)] = 134862, + [SMALL_STATE(3425)] = 134910, + [SMALL_STATE(3426)] = 134958, + [SMALL_STATE(3427)] = 135006, + [SMALL_STATE(3428)] = 135054, + [SMALL_STATE(3429)] = 135102, + [SMALL_STATE(3430)] = 135157, + [SMALL_STATE(3431)] = 135204, + [SMALL_STATE(3432)] = 135251, + [SMALL_STATE(3433)] = 135306, + [SMALL_STATE(3434)] = 135353, + [SMALL_STATE(3435)] = 135400, + [SMALL_STATE(3436)] = 135455, + [SMALL_STATE(3437)] = 135510, + [SMALL_STATE(3438)] = 135565, + [SMALL_STATE(3439)] = 135612, + [SMALL_STATE(3440)] = 135667, + [SMALL_STATE(3441)] = 135722, + [SMALL_STATE(3442)] = 135777, + [SMALL_STATE(3443)] = 135832, + [SMALL_STATE(3444)] = 135887, + [SMALL_STATE(3445)] = 135942, + [SMALL_STATE(3446)] = 135997, + [SMALL_STATE(3447)] = 136048, + [SMALL_STATE(3448)] = 136095, + [SMALL_STATE(3449)] = 136150, + [SMALL_STATE(3450)] = 136205, + [SMALL_STATE(3451)] = 136260, + [SMALL_STATE(3452)] = 136315, + [SMALL_STATE(3453)] = 136370, + [SMALL_STATE(3454)] = 136419, + [SMALL_STATE(3455)] = 136466, + [SMALL_STATE(3456)] = 136521, + [SMALL_STATE(3457)] = 136576, + [SMALL_STATE(3458)] = 136631, + [SMALL_STATE(3459)] = 136686, + [SMALL_STATE(3460)] = 136741, + [SMALL_STATE(3461)] = 136792, + [SMALL_STATE(3462)] = 136847, + [SMALL_STATE(3463)] = 136902, + [SMALL_STATE(3464)] = 136957, + [SMALL_STATE(3465)] = 137004, + [SMALL_STATE(3466)] = 137050, + [SMALL_STATE(3467)] = 137104, + [SMALL_STATE(3468)] = 137158, + [SMALL_STATE(3469)] = 137212, + [SMALL_STATE(3470)] = 137266, + [SMALL_STATE(3471)] = 137320, + [SMALL_STATE(3472)] = 137374, + [SMALL_STATE(3473)] = 137420, + [SMALL_STATE(3474)] = 137474, + [SMALL_STATE(3475)] = 137524, + [SMALL_STATE(3476)] = 137578, + [SMALL_STATE(3477)] = 137630, + [SMALL_STATE(3478)] = 137684, + [SMALL_STATE(3479)] = 137738, + [SMALL_STATE(3480)] = 137792, + [SMALL_STATE(3481)] = 137840, + [SMALL_STATE(3482)] = 137894, + [SMALL_STATE(3483)] = 137948, + [SMALL_STATE(3484)] = 137994, + [SMALL_STATE(3485)] = 138048, + [SMALL_STATE(3486)] = 138102, + [SMALL_STATE(3487)] = 138156, + [SMALL_STATE(3488)] = 138210, + [SMALL_STATE(3489)] = 138264, + [SMALL_STATE(3490)] = 138318, + [SMALL_STATE(3491)] = 138368, + [SMALL_STATE(3492)] = 138418, + [SMALL_STATE(3493)] = 138472, + [SMALL_STATE(3494)] = 138526, + [SMALL_STATE(3495)] = 138580, + [SMALL_STATE(3496)] = 138628, + [SMALL_STATE(3497)] = 138682, + [SMALL_STATE(3498)] = 138736, + [SMALL_STATE(3499)] = 138781, + [SMALL_STATE(3500)] = 138826, + [SMALL_STATE(3501)] = 138877, + [SMALL_STATE(3502)] = 138922, + [SMALL_STATE(3503)] = 138973, + [SMALL_STATE(3504)] = 139018, + [SMALL_STATE(3505)] = 139069, + [SMALL_STATE(3506)] = 139114, + [SMALL_STATE(3507)] = 139163, + [SMALL_STATE(3508)] = 139214, + [SMALL_STATE(3509)] = 139259, + [SMALL_STATE(3510)] = 139303, + [SMALL_STATE(3511)] = 139347, + [SMALL_STATE(3512)] = 139393, + [SMALL_STATE(3513)] = 139437, + [SMALL_STATE(3514)] = 139485, + [SMALL_STATE(3515)] = 139529, + [SMALL_STATE(3516)] = 139577, + [SMALL_STATE(3517)] = 139625, + [SMALL_STATE(3518)] = 139673, + [SMALL_STATE(3519)] = 139723, + [SMALL_STATE(3520)] = 139767, + [SMALL_STATE(3521)] = 139811, + [SMALL_STATE(3522)] = 139859, + [SMALL_STATE(3523)] = 139907, + [SMALL_STATE(3524)] = 139951, + [SMALL_STATE(3525)] = 139995, + [SMALL_STATE(3526)] = 140039, + [SMALL_STATE(3527)] = 140087, + [SMALL_STATE(3528)] = 140131, + [SMALL_STATE(3529)] = 140181, + [SMALL_STATE(3530)] = 140227, + [SMALL_STATE(3531)] = 140275, + [SMALL_STATE(3532)] = 140325, + [SMALL_STATE(3533)] = 140368, + [SMALL_STATE(3534)] = 140413, + [SMALL_STATE(3535)] = 140458, + [SMALL_STATE(3536)] = 140503, + [SMALL_STATE(3537)] = 140548, + [SMALL_STATE(3538)] = 140595, + [SMALL_STATE(3539)] = 140642, + [SMALL_STATE(3540)] = 140689, + [SMALL_STATE(3541)] = 140732, + [SMALL_STATE(3542)] = 140821, + [SMALL_STATE(3543)] = 140868, + [SMALL_STATE(3544)] = 140911, + [SMALL_STATE(3545)] = 140954, + [SMALL_STATE(3546)] = 140997, + [SMALL_STATE(3547)] = 141040, + [SMALL_STATE(3548)] = 141087, + [SMALL_STATE(3549)] = 141132, + [SMALL_STATE(3550)] = 141179, + [SMALL_STATE(3551)] = 141222, + [SMALL_STATE(3552)] = 141265, + [SMALL_STATE(3553)] = 141308, + [SMALL_STATE(3554)] = 141359, + [SMALL_STATE(3555)] = 141410, + [SMALL_STATE(3556)] = 141455, + [SMALL_STATE(3557)] = 141502, + [SMALL_STATE(3558)] = 141547, + [SMALL_STATE(3559)] = 141592, + [SMALL_STATE(3560)] = 141637, + [SMALL_STATE(3561)] = 141682, + [SMALL_STATE(3562)] = 141727, + [SMALL_STATE(3563)] = 141772, + [SMALL_STATE(3564)] = 141861, + [SMALL_STATE(3565)] = 141908, + [SMALL_STATE(3566)] = 141953, + [SMALL_STATE(3567)] = 142000, + [SMALL_STATE(3568)] = 142042, + [SMALL_STATE(3569)] = 142084, + [SMALL_STATE(3570)] = 142130, + [SMALL_STATE(3571)] = 142176, + [SMALL_STATE(3572)] = 142222, + [SMALL_STATE(3573)] = 142268, + [SMALL_STATE(3574)] = 142312, + [SMALL_STATE(3575)] = 142354, + [SMALL_STATE(3576)] = 142400, + [SMALL_STATE(3577)] = 142448, + [SMALL_STATE(3578)] = 142498, + [SMALL_STATE(3579)] = 142554, + [SMALL_STATE(3580)] = 142612, + [SMALL_STATE(3581)] = 142672, + [SMALL_STATE(3582)] = 142734, + [SMALL_STATE(3583)] = 142798, + [SMALL_STATE(3584)] = 142864, + [SMALL_STATE(3585)] = 142932, + [SMALL_STATE(3586)] = 142986, + [SMALL_STATE(3587)] = 143038, + [SMALL_STATE(3588)] = 143084, + [SMALL_STATE(3589)] = 143130, + [SMALL_STATE(3590)] = 143178, + [SMALL_STATE(3591)] = 143226, + [SMALL_STATE(3592)] = 143276, + [SMALL_STATE(3593)] = 143326, + [SMALL_STATE(3594)] = 143382, + [SMALL_STATE(3595)] = 143438, + [SMALL_STATE(3596)] = 143496, + [SMALL_STATE(3597)] = 143554, + [SMALL_STATE(3598)] = 143614, + [SMALL_STATE(3599)] = 143674, + [SMALL_STATE(3600)] = 143736, + [SMALL_STATE(3601)] = 143798, + [SMALL_STATE(3602)] = 143862, + [SMALL_STATE(3603)] = 143926, + [SMALL_STATE(3604)] = 143992, + [SMALL_STATE(3605)] = 144058, + [SMALL_STATE(3606)] = 144126, + [SMALL_STATE(3607)] = 144194, + [SMALL_STATE(3608)] = 144248, + [SMALL_STATE(3609)] = 144302, + [SMALL_STATE(3610)] = 144354, + [SMALL_STATE(3611)] = 144406, + [SMALL_STATE(3612)] = 144452, + [SMALL_STATE(3613)] = 144500, + [SMALL_STATE(3614)] = 144550, + [SMALL_STATE(3615)] = 144606, + [SMALL_STATE(3616)] = 144664, + [SMALL_STATE(3617)] = 144724, + [SMALL_STATE(3618)] = 144786, + [SMALL_STATE(3619)] = 144850, + [SMALL_STATE(3620)] = 144916, + [SMALL_STATE(3621)] = 144984, + [SMALL_STATE(3622)] = 145038, + [SMALL_STATE(3623)] = 145090, + [SMALL_STATE(3624)] = 145136, + [SMALL_STATE(3625)] = 145184, + [SMALL_STATE(3626)] = 145234, + [SMALL_STATE(3627)] = 145290, + [SMALL_STATE(3628)] = 145348, + [SMALL_STATE(3629)] = 145408, + [SMALL_STATE(3630)] = 145470, + [SMALL_STATE(3631)] = 145534, + [SMALL_STATE(3632)] = 145600, + [SMALL_STATE(3633)] = 145668, + [SMALL_STATE(3634)] = 145722, + [SMALL_STATE(3635)] = 145774, + [SMALL_STATE(3636)] = 145820, + [SMALL_STATE(3637)] = 145866, + [SMALL_STATE(3638)] = 145914, + [SMALL_STATE(3639)] = 145962, + [SMALL_STATE(3640)] = 146012, + [SMALL_STATE(3641)] = 146062, + [SMALL_STATE(3642)] = 146118, + [SMALL_STATE(3643)] = 146174, + [SMALL_STATE(3644)] = 146232, + [SMALL_STATE(3645)] = 146290, + [SMALL_STATE(3646)] = 146350, + [SMALL_STATE(3647)] = 146410, + [SMALL_STATE(3648)] = 146472, + [SMALL_STATE(3649)] = 146534, + [SMALL_STATE(3650)] = 146598, + [SMALL_STATE(3651)] = 146662, + [SMALL_STATE(3652)] = 146728, + [SMALL_STATE(3653)] = 146794, + [SMALL_STATE(3654)] = 146862, + [SMALL_STATE(3655)] = 146930, + [SMALL_STATE(3656)] = 146984, + [SMALL_STATE(3657)] = 147038, + [SMALL_STATE(3658)] = 147090, + [SMALL_STATE(3659)] = 147142, + [SMALL_STATE(3660)] = 147188, + [SMALL_STATE(3661)] = 147236, + [SMALL_STATE(3662)] = 147286, + [SMALL_STATE(3663)] = 147342, + [SMALL_STATE(3664)] = 147386, + [SMALL_STATE(3665)] = 147446, + [SMALL_STATE(3666)] = 147508, + [SMALL_STATE(3667)] = 147572, + [SMALL_STATE(3668)] = 147638, + [SMALL_STATE(3669)] = 147706, + [SMALL_STATE(3670)] = 147760, + [SMALL_STATE(3671)] = 147812, + [SMALL_STATE(3672)] = 147854, + [SMALL_STATE(3673)] = 147896, + [SMALL_STATE(3674)] = 147942, + [SMALL_STATE(3675)] = 147984, + [SMALL_STATE(3676)] = 148026, + [SMALL_STATE(3677)] = 148068, + [SMALL_STATE(3678)] = 148110, + [SMALL_STATE(3679)] = 148152, + [SMALL_STATE(3680)] = 148194, + [SMALL_STATE(3681)] = 148236, + [SMALL_STATE(3682)] = 148278, + [SMALL_STATE(3683)] = 148320, + [SMALL_STATE(3684)] = 148362, + [SMALL_STATE(3685)] = 148404, + [SMALL_STATE(3686)] = 148446, + [SMALL_STATE(3687)] = 148488, + [SMALL_STATE(3688)] = 148530, + [SMALL_STATE(3689)] = 148572, + [SMALL_STATE(3690)] = 148614, + [SMALL_STATE(3691)] = 148656, + [SMALL_STATE(3692)] = 148698, + [SMALL_STATE(3693)] = 148740, + [SMALL_STATE(3694)] = 148782, + [SMALL_STATE(3695)] = 148826, + [SMALL_STATE(3696)] = 148870, + [SMALL_STATE(3697)] = 148916, + [SMALL_STATE(3698)] = 148964, + [SMALL_STATE(3699)] = 149018, + [SMALL_STATE(3700)] = 149074, + [SMALL_STATE(3701)] = 149132, + [SMALL_STATE(3702)] = 149192, + [SMALL_STATE(3703)] = 149254, + [SMALL_STATE(3704)] = 149318, + [SMALL_STATE(3705)] = 149384, + [SMALL_STATE(3706)] = 149436, + [SMALL_STATE(3707)] = 149486, + [SMALL_STATE(3708)] = 149530, + [SMALL_STATE(3709)] = 149580, + [SMALL_STATE(3710)] = 149622, + [SMALL_STATE(3711)] = 149664, + [SMALL_STATE(3712)] = 149706, + [SMALL_STATE(3713)] = 149748, + [SMALL_STATE(3714)] = 149790, + [SMALL_STATE(3715)] = 149832, + [SMALL_STATE(3716)] = 149874, + [SMALL_STATE(3717)] = 149916, + [SMALL_STATE(3718)] = 149966, + [SMALL_STATE(3719)] = 150008, + [SMALL_STATE(3720)] = 150054, + [SMALL_STATE(3721)] = 150096, + [SMALL_STATE(3722)] = 150142, + [SMALL_STATE(3723)] = 150184, + [SMALL_STATE(3724)] = 150226, + [SMALL_STATE(3725)] = 150268, + [SMALL_STATE(3726)] = 150310, + [SMALL_STATE(3727)] = 150352, + [SMALL_STATE(3728)] = 150394, + [SMALL_STATE(3729)] = 150436, + [SMALL_STATE(3730)] = 150478, + [SMALL_STATE(3731)] = 150520, + [SMALL_STATE(3732)] = 150562, + [SMALL_STATE(3733)] = 150604, + [SMALL_STATE(3734)] = 150646, + [SMALL_STATE(3735)] = 150688, + [SMALL_STATE(3736)] = 150730, + [SMALL_STATE(3737)] = 150772, + [SMALL_STATE(3738)] = 150814, + [SMALL_STATE(3739)] = 150856, + [SMALL_STATE(3740)] = 150898, + [SMALL_STATE(3741)] = 150940, + [SMALL_STATE(3742)] = 150982, + [SMALL_STATE(3743)] = 151024, + [SMALL_STATE(3744)] = 151068, + [SMALL_STATE(3745)] = 151126, + [SMALL_STATE(3746)] = 151167, + [SMALL_STATE(3747)] = 151234, + [SMALL_STATE(3748)] = 151317, + [SMALL_STATE(3749)] = 151358, + [SMALL_STATE(3750)] = 151425, + [SMALL_STATE(3751)] = 151466, + [SMALL_STATE(3752)] = 151549, + [SMALL_STATE(3753)] = 151632, + [SMALL_STATE(3754)] = 151715, + [SMALL_STATE(3755)] = 151798, + [SMALL_STATE(3756)] = 151881, + [SMALL_STATE(3757)] = 151964, + [SMALL_STATE(3758)] = 152047, + [SMALL_STATE(3759)] = 152130, + [SMALL_STATE(3760)] = 152213, + [SMALL_STATE(3761)] = 152296, + [SMALL_STATE(3762)] = 152379, + [SMALL_STATE(3763)] = 152462, + [SMALL_STATE(3764)] = 152503, + [SMALL_STATE(3765)] = 152586, + [SMALL_STATE(3766)] = 152669, + [SMALL_STATE(3767)] = 152710, + [SMALL_STATE(3768)] = 152793, + [SMALL_STATE(3769)] = 152834, + [SMALL_STATE(3770)] = 152917, + [SMALL_STATE(3771)] = 152958, + [SMALL_STATE(3772)] = 153041, + [SMALL_STATE(3773)] = 153124, + [SMALL_STATE(3774)] = 153169, + [SMALL_STATE(3775)] = 153236, + [SMALL_STATE(3776)] = 153319, + [SMALL_STATE(3777)] = 153402, + [SMALL_STATE(3778)] = 153485, + [SMALL_STATE(3779)] = 153552, + [SMALL_STATE(3780)] = 153635, + [SMALL_STATE(3781)] = 153718, + [SMALL_STATE(3782)] = 153801, + [SMALL_STATE(3783)] = 153846, + [SMALL_STATE(3784)] = 153913, + [SMALL_STATE(3785)] = 153996, + [SMALL_STATE(3786)] = 154063, + [SMALL_STATE(3787)] = 154107, + [SMALL_STATE(3788)] = 154169, + [SMALL_STATE(3789)] = 154209, + [SMALL_STATE(3790)] = 154253, + [SMALL_STATE(3791)] = 154295, + [SMALL_STATE(3792)] = 154353, + [SMALL_STATE(3793)] = 154397, + [SMALL_STATE(3794)] = 154437, + [SMALL_STATE(3795)] = 154487, + [SMALL_STATE(3796)] = 154539, + [SMALL_STATE(3797)] = 154583, + [SMALL_STATE(3798)] = 154637, + [SMALL_STATE(3799)] = 154677, + [SMALL_STATE(3800)] = 154721, + [SMALL_STATE(3801)] = 154775, + [SMALL_STATE(3802)] = 154831, + [SMALL_STATE(3803)] = 154889, + [SMALL_STATE(3804)] = 154937, + [SMALL_STATE(3805)] = 154997, + [SMALL_STATE(3806)] = 155059, + [SMALL_STATE(3807)] = 155107, + [SMALL_STATE(3808)] = 155151, + [SMALL_STATE(3809)] = 155197, + [SMALL_STATE(3810)] = 155249, + [SMALL_STATE(3811)] = 155295, + [SMALL_STATE(3812)] = 155355, + [SMALL_STATE(3813)] = 155397, + [SMALL_STATE(3814)] = 155447, + [SMALL_STATE(3815)] = 155503, + [SMALL_STATE(3816)] = 155542, + [SMALL_STATE(3817)] = 155619, + [SMALL_STATE(3818)] = 155658, + [SMALL_STATE(3819)] = 155697, + [SMALL_STATE(3820)] = 155758, + [SMALL_STATE(3821)] = 155819, + [SMALL_STATE(3822)] = 155858, + [SMALL_STATE(3823)] = 155919, + [SMALL_STATE(3824)] = 155980, + [SMALL_STATE(3825)] = 156057, + [SMALL_STATE(3826)] = 156134, + [SMALL_STATE(3827)] = 156211, + [SMALL_STATE(3828)] = 156288, + [SMALL_STATE(3829)] = 156365, + [SMALL_STATE(3830)] = 156410, + [SMALL_STATE(3831)] = 156449, + [SMALL_STATE(3832)] = 156526, + [SMALL_STATE(3833)] = 156587, + [SMALL_STATE(3834)] = 156648, + [SMALL_STATE(3835)] = 156725, + [SMALL_STATE(3836)] = 156764, + [SMALL_STATE(3837)] = 156825, + [SMALL_STATE(3838)] = 156902, + [SMALL_STATE(3839)] = 156979, + [SMALL_STATE(3840)] = 157056, + [SMALL_STATE(3841)] = 157133, + [SMALL_STATE(3842)] = 157177, + [SMALL_STATE(3843)] = 157231, + [SMALL_STATE(3844)] = 157282, + [SMALL_STATE(3845)] = 157335, + [SMALL_STATE(3846)] = 157386, + [SMALL_STATE(3847)] = 157436, + [SMALL_STATE(3848)] = 157486, + [SMALL_STATE(3849)] = 157542, + [SMALL_STATE(3850)] = 157582, + [SMALL_STATE(3851)] = 157622, + [SMALL_STATE(3852)] = 157672, + [SMALL_STATE(3853)] = 157711, + [SMALL_STATE(3854)] = 157754, + [SMALL_STATE(3855)] = 157797, + [SMALL_STATE(3856)] = 157840, + [SMALL_STATE(3857)] = 157877, + [SMALL_STATE(3858)] = 157930, + [SMALL_STATE(3859)] = 157973, + [SMALL_STATE(3860)] = 158016, + [SMALL_STATE(3861)] = 158059, + [SMALL_STATE(3862)] = 158102, + [SMALL_STATE(3863)] = 158145, + [SMALL_STATE(3864)] = 158188, + [SMALL_STATE(3865)] = 158231, + [SMALL_STATE(3866)] = 158270, + [SMALL_STATE(3867)] = 158313, + [SMALL_STATE(3868)] = 158368, + [SMALL_STATE(3869)] = 158411, + [SMALL_STATE(3870)] = 158458, + [SMALL_STATE(3871)] = 158501, + [SMALL_STATE(3872)] = 158544, + [SMALL_STATE(3873)] = 158587, + [SMALL_STATE(3874)] = 158630, + [SMALL_STATE(3875)] = 158673, + [SMALL_STATE(3876)] = 158716, + [SMALL_STATE(3877)] = 158759, + [SMALL_STATE(3878)] = 158806, + [SMALL_STATE(3879)] = 158849, + [SMALL_STATE(3880)] = 158892, + [SMALL_STATE(3881)] = 158929, + [SMALL_STATE(3882)] = 158976, + [SMALL_STATE(3883)] = 159023, + [SMALL_STATE(3884)] = 159070, + [SMALL_STATE(3885)] = 159123, + [SMALL_STATE(3886)] = 159176, + [SMALL_STATE(3887)] = 159219, + [SMALL_STATE(3888)] = 159257, + [SMALL_STATE(3889)] = 159291, + [SMALL_STATE(3890)] = 159325, + [SMALL_STATE(3891)] = 159363, + [SMALL_STATE(3892)] = 159399, + [SMALL_STATE(3893)] = 159433, + [SMALL_STATE(3894)] = 159469, + [SMALL_STATE(3895)] = 159507, + [SMALL_STATE(3896)] = 159559, + [SMALL_STATE(3897)] = 159593, + [SMALL_STATE(3898)] = 159643, + [SMALL_STATE(3899)] = 159693, + [SMALL_STATE(3900)] = 159743, + [SMALL_STATE(3901)] = 159795, + [SMALL_STATE(3902)] = 159833, + [SMALL_STATE(3903)] = 159885, + [SMALL_STATE(3904)] = 159927, + [SMALL_STATE(3905)] = 159969, + [SMALL_STATE(3906)] = 160019, + [SMALL_STATE(3907)] = 160065, + [SMALL_STATE(3908)] = 160106, + [SMALL_STATE(3909)] = 160147, + [SMALL_STATE(3910)] = 160180, + [SMALL_STATE(3911)] = 160215, + [SMALL_STATE(3912)] = 160248, + [SMALL_STATE(3913)] = 160297, + [SMALL_STATE(3914)] = 160338, + [SMALL_STATE(3915)] = 160379, + [SMALL_STATE(3916)] = 160420, + [SMALL_STATE(3917)] = 160461, + [SMALL_STATE(3918)] = 160502, + [SMALL_STATE(3919)] = 160543, + [SMALL_STATE(3920)] = 160580, + [SMALL_STATE(3921)] = 160615, + [SMALL_STATE(3922)] = 160664, + [SMALL_STATE(3923)] = 160697, + [SMALL_STATE(3924)] = 160738, + [SMALL_STATE(3925)] = 160787, + [SMALL_STATE(3926)] = 160828, + [SMALL_STATE(3927)] = 160869, + [SMALL_STATE(3928)] = 160922, + [SMALL_STATE(3929)] = 160963, + [SMALL_STATE(3930)] = 161004, + [SMALL_STATE(3931)] = 161045, + [SMALL_STATE(3932)] = 161086, + [SMALL_STATE(3933)] = 161127, + [SMALL_STATE(3934)] = 161168, + [SMALL_STATE(3935)] = 161209, + [SMALL_STATE(3936)] = 161256, + [SMALL_STATE(3937)] = 161305, + [SMALL_STATE(3938)] = 161342, + [SMALL_STATE(3939)] = 161379, + [SMALL_STATE(3940)] = 161420, + [SMALL_STATE(3941)] = 161455, + [SMALL_STATE(3942)] = 161496, + [SMALL_STATE(3943)] = 161537, + [SMALL_STATE(3944)] = 161570, + [SMALL_STATE(3945)] = 161611, + [SMALL_STATE(3946)] = 161648, + [SMALL_STATE(3947)] = 161689, + [SMALL_STATE(3948)] = 161730, + [SMALL_STATE(3949)] = 161771, + [SMALL_STATE(3950)] = 161806, + [SMALL_STATE(3951)] = 161847, + [SMALL_STATE(3952)] = 161885, + [SMALL_STATE(3953)] = 161919, + [SMALL_STATE(3954)] = 161951, + [SMALL_STATE(3955)] = 161983, + [SMALL_STATE(3956)] = 162017, + [SMALL_STATE(3957)] = 162053, + [SMALL_STATE(3958)] = 162085, + [SMALL_STATE(3959)] = 162117, + [SMALL_STATE(3960)] = 162149, + [SMALL_STATE(3961)] = 162181, + [SMALL_STATE(3962)] = 162213, + [SMALL_STATE(3963)] = 162247, + [SMALL_STATE(3964)] = 162297, + [SMALL_STATE(3965)] = 162329, + [SMALL_STATE(3966)] = 162365, + [SMALL_STATE(3967)] = 162397, + [SMALL_STATE(3968)] = 162435, + [SMALL_STATE(3969)] = 162475, + [SMALL_STATE(3970)] = 162525, + [SMALL_STATE(3971)] = 162565, + [SMALL_STATE(3972)] = 162601, + [SMALL_STATE(3973)] = 162637, + [SMALL_STATE(3974)] = 162669, + [SMALL_STATE(3975)] = 162703, + [SMALL_STATE(3976)] = 162735, + [SMALL_STATE(3977)] = 162771, + [SMALL_STATE(3978)] = 162821, + [SMALL_STATE(3979)] = 162859, + [SMALL_STATE(3980)] = 162905, + [SMALL_STATE(3981)] = 162945, + [SMALL_STATE(3982)] = 162979, + [SMALL_STATE(3983)] = 163014, + [SMALL_STATE(3984)] = 163045, + [SMALL_STATE(3985)] = 163076, + [SMALL_STATE(3986)] = 163107, + [SMALL_STATE(3987)] = 163146, + [SMALL_STATE(3988)] = 163193, + [SMALL_STATE(3989)] = 163224, + [SMALL_STATE(3990)] = 163255, + [SMALL_STATE(3991)] = 163294, + [SMALL_STATE(3992)] = 163325, + [SMALL_STATE(3993)] = 163356, + [SMALL_STATE(3994)] = 163391, + [SMALL_STATE(3995)] = 163422, + [SMALL_STATE(3996)] = 163453, + [SMALL_STATE(3997)] = 163484, + [SMALL_STATE(3998)] = 163515, + [SMALL_STATE(3999)] = 163546, + [SMALL_STATE(4000)] = 163591, + [SMALL_STATE(4001)] = 163622, + [SMALL_STATE(4002)] = 163653, + [SMALL_STATE(4003)] = 163684, + [SMALL_STATE(4004)] = 163717, + [SMALL_STATE(4005)] = 163748, + [SMALL_STATE(4006)] = 163779, + [SMALL_STATE(4007)] = 163810, + [SMALL_STATE(4008)] = 163857, + [SMALL_STATE(4009)] = 163888, + [SMALL_STATE(4010)] = 163919, + [SMALL_STATE(4011)] = 163956, + [SMALL_STATE(4012)] = 163987, + [SMALL_STATE(4013)] = 164018, + [SMALL_STATE(4014)] = 164055, + [SMALL_STATE(4015)] = 164086, + [SMALL_STATE(4016)] = 164117, + [SMALL_STATE(4017)] = 164148, + [SMALL_STATE(4018)] = 164179, + [SMALL_STATE(4019)] = 164210, + [SMALL_STATE(4020)] = 164241, + [SMALL_STATE(4021)] = 164274, + [SMALL_STATE(4022)] = 164305, + [SMALL_STATE(4023)] = 164336, + [SMALL_STATE(4024)] = 164367, + [SMALL_STATE(4025)] = 164414, + [SMALL_STATE(4026)] = 164445, + [SMALL_STATE(4027)] = 164476, + [SMALL_STATE(4028)] = 164507, + [SMALL_STATE(4029)] = 164538, + [SMALL_STATE(4030)] = 164571, + [SMALL_STATE(4031)] = 164602, + [SMALL_STATE(4032)] = 164639, + [SMALL_STATE(4033)] = 164674, + [SMALL_STATE(4034)] = 164709, + [SMALL_STATE(4035)] = 164742, + [SMALL_STATE(4036)] = 164777, + [SMALL_STATE(4037)] = 164808, + [SMALL_STATE(4038)] = 164841, + [SMALL_STATE(4039)] = 164882, + [SMALL_STATE(4040)] = 164915, + [SMALL_STATE(4041)] = 164946, + [SMALL_STATE(4042)] = 164985, + [SMALL_STATE(4043)] = 165016, + [SMALL_STATE(4044)] = 165063, + [SMALL_STATE(4045)] = 165094, + [SMALL_STATE(4046)] = 165125, + [SMALL_STATE(4047)] = 165156, + [SMALL_STATE(4048)] = 165187, + [SMALL_STATE(4049)] = 165218, + [SMALL_STATE(4050)] = 165251, + [SMALL_STATE(4051)] = 165282, + [SMALL_STATE(4052)] = 165313, + [SMALL_STATE(4053)] = 165344, + [SMALL_STATE(4054)] = 165376, + [SMALL_STATE(4055)] = 165408, + [SMALL_STATE(4056)] = 165440, + [SMALL_STATE(4057)] = 165474, + [SMALL_STATE(4058)] = 165504, + [SMALL_STATE(4059)] = 165534, + [SMALL_STATE(4060)] = 165564, + [SMALL_STATE(4061)] = 165594, + [SMALL_STATE(4062)] = 165626, + [SMALL_STATE(4063)] = 165658, + [SMALL_STATE(4064)] = 165688, + [SMALL_STATE(4065)] = 165722, + [SMALL_STATE(4066)] = 165752, + [SMALL_STATE(4067)] = 165782, + [SMALL_STATE(4068)] = 165832, + [SMALL_STATE(4069)] = 165872, + [SMALL_STATE(4070)] = 165902, + [SMALL_STATE(4071)] = 165934, + [SMALL_STATE(4072)] = 165972, + [SMALL_STATE(4073)] = 166002, + [SMALL_STATE(4074)] = 166040, + [SMALL_STATE(4075)] = 166074, + [SMALL_STATE(4076)] = 166104, + [SMALL_STATE(4077)] = 166142, + [SMALL_STATE(4078)] = 166174, + [SMALL_STATE(4079)] = 166204, + [SMALL_STATE(4080)] = 166236, + [SMALL_STATE(4081)] = 166266, + [SMALL_STATE(4082)] = 166296, + [SMALL_STATE(4083)] = 166326, + [SMALL_STATE(4084)] = 166356, + [SMALL_STATE(4085)] = 166388, + [SMALL_STATE(4086)] = 166426, + [SMALL_STATE(4087)] = 166458, + [SMALL_STATE(4088)] = 166492, + [SMALL_STATE(4089)] = 166522, + [SMALL_STATE(4090)] = 166552, + [SMALL_STATE(4091)] = 166588, + [SMALL_STATE(4092)] = 166622, + [SMALL_STATE(4093)] = 166660, + [SMALL_STATE(4094)] = 166692, + [SMALL_STATE(4095)] = 166721, + [SMALL_STATE(4096)] = 166758, + [SMALL_STATE(4097)] = 166789, + [SMALL_STATE(4098)] = 166818, + [SMALL_STATE(4099)] = 166847, + [SMALL_STATE(4100)] = 166876, + [SMALL_STATE(4101)] = 166913, + [SMALL_STATE(4102)] = 166946, + [SMALL_STATE(4103)] = 166983, + [SMALL_STATE(4104)] = 167014, + [SMALL_STATE(4105)] = 167043, + [SMALL_STATE(4106)] = 167080, + [SMALL_STATE(4107)] = 167109, + [SMALL_STATE(4108)] = 167138, + [SMALL_STATE(4109)] = 167175, + [SMALL_STATE(4110)] = 167212, + [SMALL_STATE(4111)] = 167241, + [SMALL_STATE(4112)] = 167270, + [SMALL_STATE(4113)] = 167307, + [SMALL_STATE(4114)] = 167344, + [SMALL_STATE(4115)] = 167373, + [SMALL_STATE(4116)] = 167402, + [SMALL_STATE(4117)] = 167439, + [SMALL_STATE(4118)] = 167468, + [SMALL_STATE(4119)] = 167497, + [SMALL_STATE(4120)] = 167526, + [SMALL_STATE(4121)] = 167555, + [SMALL_STATE(4122)] = 167584, + [SMALL_STATE(4123)] = 167613, + [SMALL_STATE(4124)] = 167642, + [SMALL_STATE(4125)] = 167671, + [SMALL_STATE(4126)] = 167704, + [SMALL_STATE(4127)] = 167733, + [SMALL_STATE(4128)] = 167770, + [SMALL_STATE(4129)] = 167799, + [SMALL_STATE(4130)] = 167836, + [SMALL_STATE(4131)] = 167865, + [SMALL_STATE(4132)] = 167894, + [SMALL_STATE(4133)] = 167925, + [SMALL_STATE(4134)] = 167962, + [SMALL_STATE(4135)] = 167993, + [SMALL_STATE(4136)] = 168024, + [SMALL_STATE(4137)] = 168053, + [SMALL_STATE(4138)] = 168084, + [SMALL_STATE(4139)] = 168115, + [SMALL_STATE(4140)] = 168152, + [SMALL_STATE(4141)] = 168181, + [SMALL_STATE(4142)] = 168210, + [SMALL_STATE(4143)] = 168239, + [SMALL_STATE(4144)] = 168268, + [SMALL_STATE(4145)] = 168297, + [SMALL_STATE(4146)] = 168326, + [SMALL_STATE(4147)] = 168357, + [SMALL_STATE(4148)] = 168386, + [SMALL_STATE(4149)] = 168415, + [SMALL_STATE(4150)] = 168452, + [SMALL_STATE(4151)] = 168487, + [SMALL_STATE(4152)] = 168524, + [SMALL_STATE(4153)] = 168553, + [SMALL_STATE(4154)] = 168582, + [SMALL_STATE(4155)] = 168619, + [SMALL_STATE(4156)] = 168656, + [SMALL_STATE(4157)] = 168685, + [SMALL_STATE(4158)] = 168714, + [SMALL_STATE(4159)] = 168747, + [SMALL_STATE(4160)] = 168780, + [SMALL_STATE(4161)] = 168811, + [SMALL_STATE(4162)] = 168848, + [SMALL_STATE(4163)] = 168877, + [SMALL_STATE(4164)] = 168906, + [SMALL_STATE(4165)] = 168943, + [SMALL_STATE(4166)] = 168980, + [SMALL_STATE(4167)] = 169011, + [SMALL_STATE(4168)] = 169048, + [SMALL_STATE(4169)] = 169085, + [SMALL_STATE(4170)] = 169118, + [SMALL_STATE(4171)] = 169155, + [SMALL_STATE(4172)] = 169184, + [SMALL_STATE(4173)] = 169213, + [SMALL_STATE(4174)] = 169242, + [SMALL_STATE(4175)] = 169275, + [SMALL_STATE(4176)] = 169308, + [SMALL_STATE(4177)] = 169339, + [SMALL_STATE(4178)] = 169370, + [SMALL_STATE(4179)] = 169401, + [SMALL_STATE(4180)] = 169430, + [SMALL_STATE(4181)] = 169461, + [SMALL_STATE(4182)] = 169492, + [SMALL_STATE(4183)] = 169523, + [SMALL_STATE(4184)] = 169552, + [SMALL_STATE(4185)] = 169581, + [SMALL_STATE(4186)] = 169618, + [SMALL_STATE(4187)] = 169647, + [SMALL_STATE(4188)] = 169678, + [SMALL_STATE(4189)] = 169707, + [SMALL_STATE(4190)] = 169738, + [SMALL_STATE(4191)] = 169767, + [SMALL_STATE(4192)] = 169796, + [SMALL_STATE(4193)] = 169833, + [SMALL_STATE(4194)] = 169870, + [SMALL_STATE(4195)] = 169901, + [SMALL_STATE(4196)] = 169932, + [SMALL_STATE(4197)] = 169963, + [SMALL_STATE(4198)] = 169994, + [SMALL_STATE(4199)] = 170023, + [SMALL_STATE(4200)] = 170052, + [SMALL_STATE(4201)] = 170089, + [SMALL_STATE(4202)] = 170120, + [SMALL_STATE(4203)] = 170151, + [SMALL_STATE(4204)] = 170188, + [SMALL_STATE(4205)] = 170225, + [SMALL_STATE(4206)] = 170254, + [SMALL_STATE(4207)] = 170283, + [SMALL_STATE(4208)] = 170312, + [SMALL_STATE(4209)] = 170349, + [SMALL_STATE(4210)] = 170386, + [SMALL_STATE(4211)] = 170417, + [SMALL_STATE(4212)] = 170454, + [SMALL_STATE(4213)] = 170485, + [SMALL_STATE(4214)] = 170514, + [SMALL_STATE(4215)] = 170546, + [SMALL_STATE(4216)] = 170580, + [SMALL_STATE(4217)] = 170610, + [SMALL_STATE(4218)] = 170642, + [SMALL_STATE(4219)] = 170670, + [SMALL_STATE(4220)] = 170702, + [SMALL_STATE(4221)] = 170738, + [SMALL_STATE(4222)] = 170774, + [SMALL_STATE(4223)] = 170810, + [SMALL_STATE(4224)] = 170840, + [SMALL_STATE(4225)] = 170872, + [SMALL_STATE(4226)] = 170900, + [SMALL_STATE(4227)] = 170928, + [SMALL_STATE(4228)] = 170956, + [SMALL_STATE(4229)] = 170986, + [SMALL_STATE(4230)] = 171022, + [SMALL_STATE(4231)] = 171058, + [SMALL_STATE(4232)] = 171090, + [SMALL_STATE(4233)] = 171122, + [SMALL_STATE(4234)] = 171152, + [SMALL_STATE(4235)] = 171196, + [SMALL_STATE(4236)] = 171232, + [SMALL_STATE(4237)] = 171268, + [SMALL_STATE(4238)] = 171312, + [SMALL_STATE(4239)] = 171356, + [SMALL_STATE(4240)] = 171388, + [SMALL_STATE(4241)] = 171418, + [SMALL_STATE(4242)] = 171462, + [SMALL_STATE(4243)] = 171490, + [SMALL_STATE(4244)] = 171518, + [SMALL_STATE(4245)] = 171546, + [SMALL_STATE(4246)] = 171576, + [SMALL_STATE(4247)] = 171606, + [SMALL_STATE(4248)] = 171642, + [SMALL_STATE(4249)] = 171672, + [SMALL_STATE(4250)] = 171704, + [SMALL_STATE(4251)] = 171732, + [SMALL_STATE(4252)] = 171768, + [SMALL_STATE(4253)] = 171806, + [SMALL_STATE(4254)] = 171838, + [SMALL_STATE(4255)] = 171866, + [SMALL_STATE(4256)] = 171902, + [SMALL_STATE(4257)] = 171930, + [SMALL_STATE(4258)] = 171966, + [SMALL_STATE(4259)] = 172002, + [SMALL_STATE(4260)] = 172038, + [SMALL_STATE(4261)] = 172068, + [SMALL_STATE(4262)] = 172104, + [SMALL_STATE(4263)] = 172132, + [SMALL_STATE(4264)] = 172168, + [SMALL_STATE(4265)] = 172204, + [SMALL_STATE(4266)] = 172240, + [SMALL_STATE(4267)] = 172268, + [SMALL_STATE(4268)] = 172306, + [SMALL_STATE(4269)] = 172342, + [SMALL_STATE(4270)] = 172378, + [SMALL_STATE(4271)] = 172406, + [SMALL_STATE(4272)] = 172442, + [SMALL_STATE(4273)] = 172470, + [SMALL_STATE(4274)] = 172500, + [SMALL_STATE(4275)] = 172532, + [SMALL_STATE(4276)] = 172562, + [SMALL_STATE(4277)] = 172598, + [SMALL_STATE(4278)] = 172634, + [SMALL_STATE(4279)] = 172670, + [SMALL_STATE(4280)] = 172702, + [SMALL_STATE(4281)] = 172730, + [SMALL_STATE(4282)] = 172758, + [SMALL_STATE(4283)] = 172794, + [SMALL_STATE(4284)] = 172830, + [SMALL_STATE(4285)] = 172866, + [SMALL_STATE(4286)] = 172896, + [SMALL_STATE(4287)] = 172926, + [SMALL_STATE(4288)] = 172954, + [SMALL_STATE(4289)] = 172982, + [SMALL_STATE(4290)] = 173010, + [SMALL_STATE(4291)] = 173046, + [SMALL_STATE(4292)] = 173074, + [SMALL_STATE(4293)] = 173106, + [SMALL_STATE(4294)] = 173142, + [SMALL_STATE(4295)] = 173178, + [SMALL_STATE(4296)] = 173214, + [SMALL_STATE(4297)] = 173244, + [SMALL_STATE(4298)] = 173274, + [SMALL_STATE(4299)] = 173310, + [SMALL_STATE(4300)] = 173346, + [SMALL_STATE(4301)] = 173390, + [SMALL_STATE(4302)] = 173420, + [SMALL_STATE(4303)] = 173448, + [SMALL_STATE(4304)] = 173480, + [SMALL_STATE(4305)] = 173515, + [SMALL_STATE(4306)] = 173550, + [SMALL_STATE(4307)] = 173581, + [SMALL_STATE(4308)] = 173616, + [SMALL_STATE(4309)] = 173647, + [SMALL_STATE(4310)] = 173678, + [SMALL_STATE(4311)] = 173709, + [SMALL_STATE(4312)] = 173746, + [SMALL_STATE(4313)] = 173777, + [SMALL_STATE(4314)] = 173808, + [SMALL_STATE(4315)] = 173835, + [SMALL_STATE(4316)] = 173862, + [SMALL_STATE(4317)] = 173889, + [SMALL_STATE(4318)] = 173916, + [SMALL_STATE(4319)] = 173945, + [SMALL_STATE(4320)] = 173972, + [SMALL_STATE(4321)] = 174001, + [SMALL_STATE(4322)] = 174032, + [SMALL_STATE(4323)] = 174059, + [SMALL_STATE(4324)] = 174090, + [SMALL_STATE(4325)] = 174119, + [SMALL_STATE(4326)] = 174146, + [SMALL_STATE(4327)] = 174181, + [SMALL_STATE(4328)] = 174208, + [SMALL_STATE(4329)] = 174237, + [SMALL_STATE(4330)] = 174264, + [SMALL_STATE(4331)] = 174295, + [SMALL_STATE(4332)] = 174322, + [SMALL_STATE(4333)] = 174353, + [SMALL_STATE(4334)] = 174382, + [SMALL_STATE(4335)] = 174411, + [SMALL_STATE(4336)] = 174438, + [SMALL_STATE(4337)] = 174469, + [SMALL_STATE(4338)] = 174500, + [SMALL_STATE(4339)] = 174527, + [SMALL_STATE(4340)] = 174556, + [SMALL_STATE(4341)] = 174585, + [SMALL_STATE(4342)] = 174616, + [SMALL_STATE(4343)] = 174647, + [SMALL_STATE(4344)] = 174680, + [SMALL_STATE(4345)] = 174713, + [SMALL_STATE(4346)] = 174740, + [SMALL_STATE(4347)] = 174767, + [SMALL_STATE(4348)] = 174796, + [SMALL_STATE(4349)] = 174825, + [SMALL_STATE(4350)] = 174856, + [SMALL_STATE(4351)] = 174887, + [SMALL_STATE(4352)] = 174918, + [SMALL_STATE(4353)] = 174945, + [SMALL_STATE(4354)] = 174972, + [SMALL_STATE(4355)] = 174999, + [SMALL_STATE(4356)] = 175026, + [SMALL_STATE(4357)] = 175055, + [SMALL_STATE(4358)] = 175084, + [SMALL_STATE(4359)] = 175109, + [SMALL_STATE(4360)] = 175140, + [SMALL_STATE(4361)] = 175165, + [SMALL_STATE(4362)] = 175196, + [SMALL_STATE(4363)] = 175227, + [SMALL_STATE(4364)] = 175252, + [SMALL_STATE(4365)] = 175277, + [SMALL_STATE(4366)] = 175302, + [SMALL_STATE(4367)] = 175327, + [SMALL_STATE(4368)] = 175354, + [SMALL_STATE(4369)] = 175381, + [SMALL_STATE(4370)] = 175410, + [SMALL_STATE(4371)] = 175439, + [SMALL_STATE(4372)] = 175470, + [SMALL_STATE(4373)] = 175501, + [SMALL_STATE(4374)] = 175532, + [SMALL_STATE(4375)] = 175563, + [SMALL_STATE(4376)] = 175596, + [SMALL_STATE(4377)] = 175629, + [SMALL_STATE(4378)] = 175656, + [SMALL_STATE(4379)] = 175683, + [SMALL_STATE(4380)] = 175708, + [SMALL_STATE(4381)] = 175733, + [SMALL_STATE(4382)] = 175764, + [SMALL_STATE(4383)] = 175795, + [SMALL_STATE(4384)] = 175826, + [SMALL_STATE(4385)] = 175859, + [SMALL_STATE(4386)] = 175884, + [SMALL_STATE(4387)] = 175917, + [SMALL_STATE(4388)] = 175942, + [SMALL_STATE(4389)] = 175969, + [SMALL_STATE(4390)] = 175996, + [SMALL_STATE(4391)] = 176023, + [SMALL_STATE(4392)] = 176050, + [SMALL_STATE(4393)] = 176077, + [SMALL_STATE(4394)] = 176104, + [SMALL_STATE(4395)] = 176133, + [SMALL_STATE(4396)] = 176162, + [SMALL_STATE(4397)] = 176193, + [SMALL_STATE(4398)] = 176222, + [SMALL_STATE(4399)] = 176251, + [SMALL_STATE(4400)] = 176276, + [SMALL_STATE(4401)] = 176307, + [SMALL_STATE(4402)] = 176332, + [SMALL_STATE(4403)] = 176359, + [SMALL_STATE(4404)] = 176386, + [SMALL_STATE(4405)] = 176415, + [SMALL_STATE(4406)] = 176446, + [SMALL_STATE(4407)] = 176481, + [SMALL_STATE(4408)] = 176512, + [SMALL_STATE(4409)] = 176545, + [SMALL_STATE(4410)] = 176574, + [SMALL_STATE(4411)] = 176605, + [SMALL_STATE(4412)] = 176640, + [SMALL_STATE(4413)] = 176673, + [SMALL_STATE(4414)] = 176700, + [SMALL_STATE(4415)] = 176731, + [SMALL_STATE(4416)] = 176758, + [SMALL_STATE(4417)] = 176787, + [SMALL_STATE(4418)] = 176820, + [SMALL_STATE(4419)] = 176855, + [SMALL_STATE(4420)] = 176888, + [SMALL_STATE(4421)] = 176919, + [SMALL_STATE(4422)] = 176950, + [SMALL_STATE(4423)] = 176977, + [SMALL_STATE(4424)] = 177004, + [SMALL_STATE(4425)] = 177037, + [SMALL_STATE(4426)] = 177072, + [SMALL_STATE(4427)] = 177107, + [SMALL_STATE(4428)] = 177140, + [SMALL_STATE(4429)] = 177175, + [SMALL_STATE(4430)] = 177210, + [SMALL_STATE(4431)] = 177245, + [SMALL_STATE(4432)] = 177280, + [SMALL_STATE(4433)] = 177315, + [SMALL_STATE(4434)] = 177350, + [SMALL_STATE(4435)] = 177385, + [SMALL_STATE(4436)] = 177420, + [SMALL_STATE(4437)] = 177455, + [SMALL_STATE(4438)] = 177490, + [SMALL_STATE(4439)] = 177517, + [SMALL_STATE(4440)] = 177552, + [SMALL_STATE(4441)] = 177587, + [SMALL_STATE(4442)] = 177622, + [SMALL_STATE(4443)] = 177657, + [SMALL_STATE(4444)] = 177692, + [SMALL_STATE(4445)] = 177723, + [SMALL_STATE(4446)] = 177754, + [SMALL_STATE(4447)] = 177781, + [SMALL_STATE(4448)] = 177808, + [SMALL_STATE(4449)] = 177841, + [SMALL_STATE(4450)] = 177872, + [SMALL_STATE(4451)] = 177903, + [SMALL_STATE(4452)] = 177934, + [SMALL_STATE(4453)] = 177961, + [SMALL_STATE(4454)] = 177992, + [SMALL_STATE(4455)] = 178017, + [SMALL_STATE(4456)] = 178048, + [SMALL_STATE(4457)] = 178079, + [SMALL_STATE(4458)] = 178110, + [SMALL_STATE(4459)] = 178141, + [SMALL_STATE(4460)] = 178168, + [SMALL_STATE(4461)] = 178199, + [SMALL_STATE(4462)] = 178230, + [SMALL_STATE(4463)] = 178261, + [SMALL_STATE(4464)] = 178288, + [SMALL_STATE(4465)] = 178323, + [SMALL_STATE(4466)] = 178354, + [SMALL_STATE(4467)] = 178387, + [SMALL_STATE(4468)] = 178420, + [SMALL_STATE(4469)] = 178455, + [SMALL_STATE(4470)] = 178482, + [SMALL_STATE(4471)] = 178507, + [SMALL_STATE(4472)] = 178538, + [SMALL_STATE(4473)] = 178569, + [SMALL_STATE(4474)] = 178596, + [SMALL_STATE(4475)] = 178623, + [SMALL_STATE(4476)] = 178650, + [SMALL_STATE(4477)] = 178681, + [SMALL_STATE(4478)] = 178708, + [SMALL_STATE(4479)] = 178739, + [SMALL_STATE(4480)] = 178770, + [SMALL_STATE(4481)] = 178795, + [SMALL_STATE(4482)] = 178822, + [SMALL_STATE(4483)] = 178849, + [SMALL_STATE(4484)] = 178876, + [SMALL_STATE(4485)] = 178907, + [SMALL_STATE(4486)] = 178938, + [SMALL_STATE(4487)] = 178969, + [SMALL_STATE(4488)] = 179002, + [SMALL_STATE(4489)] = 179035, + [SMALL_STATE(4490)] = 179062, + [SMALL_STATE(4491)] = 179097, + [SMALL_STATE(4492)] = 179126, + [SMALL_STATE(4493)] = 179155, + [SMALL_STATE(4494)] = 179182, + [SMALL_STATE(4495)] = 179211, + [SMALL_STATE(4496)] = 179244, + [SMALL_STATE(4497)] = 179271, + [SMALL_STATE(4498)] = 179304, + [SMALL_STATE(4499)] = 179337, + [SMALL_STATE(4500)] = 179372, + [SMALL_STATE(4501)] = 179407, + [SMALL_STATE(4502)] = 179434, + [SMALL_STATE(4503)] = 179469, + [SMALL_STATE(4504)] = 179500, + [SMALL_STATE(4505)] = 179527, + [SMALL_STATE(4506)] = 179558, + [SMALL_STATE(4507)] = 179589, + [SMALL_STATE(4508)] = 179616, + [SMALL_STATE(4509)] = 179643, + [SMALL_STATE(4510)] = 179670, + [SMALL_STATE(4511)] = 179703, + [SMALL_STATE(4512)] = 179734, + [SMALL_STATE(4513)] = 179758, + [SMALL_STATE(4514)] = 179784, + [SMALL_STATE(4515)] = 179812, + [SMALL_STATE(4516)] = 179844, + [SMALL_STATE(4517)] = 179870, + [SMALL_STATE(4518)] = 179900, + [SMALL_STATE(4519)] = 179926, + [SMALL_STATE(4520)] = 179956, + [SMALL_STATE(4521)] = 179982, + [SMALL_STATE(4522)] = 180006, + [SMALL_STATE(4523)] = 180036, + [SMALL_STATE(4524)] = 180064, + [SMALL_STATE(4525)] = 180088, + [SMALL_STATE(4526)] = 180118, + [SMALL_STATE(4527)] = 180142, + [SMALL_STATE(4528)] = 180172, + [SMALL_STATE(4529)] = 180198, + [SMALL_STATE(4530)] = 180228, + [SMALL_STATE(4531)] = 180252, + [SMALL_STATE(4532)] = 180282, + [SMALL_STATE(4533)] = 180310, + [SMALL_STATE(4534)] = 180334, + [SMALL_STATE(4535)] = 180386, + [SMALL_STATE(4536)] = 180410, + [SMALL_STATE(4537)] = 180440, + [SMALL_STATE(4538)] = 180470, + [SMALL_STATE(4539)] = 180496, + [SMALL_STATE(4540)] = 180526, + [SMALL_STATE(4541)] = 180554, + [SMALL_STATE(4542)] = 180598, + [SMALL_STATE(4543)] = 180628, + [SMALL_STATE(4544)] = 180680, + [SMALL_STATE(4545)] = 180732, + [SMALL_STATE(4546)] = 180760, + [SMALL_STATE(4547)] = 180784, + [SMALL_STATE(4548)] = 180808, + [SMALL_STATE(4549)] = 180834, + [SMALL_STATE(4550)] = 180864, + [SMALL_STATE(4551)] = 180894, + [SMALL_STATE(4552)] = 180924, + [SMALL_STATE(4553)] = 180976, + [SMALL_STATE(4554)] = 181000, + [SMALL_STATE(4555)] = 181030, + [SMALL_STATE(4556)] = 181056, + [SMALL_STATE(4557)] = 181086, + [SMALL_STATE(4558)] = 181114, + [SMALL_STATE(4559)] = 181138, + [SMALL_STATE(4560)] = 181162, + [SMALL_STATE(4561)] = 181192, + [SMALL_STATE(4562)] = 181222, + [SMALL_STATE(4563)] = 181252, + [SMALL_STATE(4564)] = 181276, + [SMALL_STATE(4565)] = 181304, + [SMALL_STATE(4566)] = 181330, + [SMALL_STATE(4567)] = 181356, + [SMALL_STATE(4568)] = 181380, + [SMALL_STATE(4569)] = 181404, + [SMALL_STATE(4570)] = 181430, + [SMALL_STATE(4571)] = 181456, + [SMALL_STATE(4572)] = 181484, + [SMALL_STATE(4573)] = 181512, + [SMALL_STATE(4574)] = 181542, + [SMALL_STATE(4575)] = 181568, + [SMALL_STATE(4576)] = 181598, + [SMALL_STATE(4577)] = 181628, + [SMALL_STATE(4578)] = 181652, + [SMALL_STATE(4579)] = 181682, + [SMALL_STATE(4580)] = 181712, + [SMALL_STATE(4581)] = 181764, + [SMALL_STATE(4582)] = 181816, + [SMALL_STATE(4583)] = 181846, + [SMALL_STATE(4584)] = 181876, + [SMALL_STATE(4585)] = 181902, + [SMALL_STATE(4586)] = 181928, + [SMALL_STATE(4587)] = 181974, + [SMALL_STATE(4588)] = 181998, + [SMALL_STATE(4589)] = 182022, + [SMALL_STATE(4590)] = 182066, + [SMALL_STATE(4591)] = 182090, + [SMALL_STATE(4592)] = 182122, + [SMALL_STATE(4593)] = 182174, + [SMALL_STATE(4594)] = 182204, + [SMALL_STATE(4595)] = 182234, + [SMALL_STATE(4596)] = 182264, + [SMALL_STATE(4597)] = 182288, + [SMALL_STATE(4598)] = 182316, + [SMALL_STATE(4599)] = 182340, + [SMALL_STATE(4600)] = 182364, + [SMALL_STATE(4601)] = 182392, + [SMALL_STATE(4602)] = 182420, + [SMALL_STATE(4603)] = 182446, + [SMALL_STATE(4604)] = 182472, + [SMALL_STATE(4605)] = 182496, + [SMALL_STATE(4606)] = 182520, + [SMALL_STATE(4607)] = 182564, + [SMALL_STATE(4608)] = 182594, + [SMALL_STATE(4609)] = 182622, + [SMALL_STATE(4610)] = 182652, + [SMALL_STATE(4611)] = 182676, + [SMALL_STATE(4612)] = 182702, + [SMALL_STATE(4613)] = 182734, + [SMALL_STATE(4614)] = 182762, + [SMALL_STATE(4615)] = 182790, + [SMALL_STATE(4616)] = 182820, + [SMALL_STATE(4617)] = 182844, + [SMALL_STATE(4618)] = 182868, + [SMALL_STATE(4619)] = 182892, + [SMALL_STATE(4620)] = 182916, + [SMALL_STATE(4621)] = 182942, + [SMALL_STATE(4622)] = 182994, + [SMALL_STATE(4623)] = 183024, + [SMALL_STATE(4624)] = 183076, + [SMALL_STATE(4625)] = 183102, + [SMALL_STATE(4626)] = 183154, + [SMALL_STATE(4627)] = 183180, + [SMALL_STATE(4628)] = 183224, + [SMALL_STATE(4629)] = 183252, + [SMALL_STATE(4630)] = 183280, + [SMALL_STATE(4631)] = 183304, + [SMALL_STATE(4632)] = 183328, + [SMALL_STATE(4633)] = 183354, + [SMALL_STATE(4634)] = 183378, + [SMALL_STATE(4635)] = 183404, + [SMALL_STATE(4636)] = 183432, + [SMALL_STATE(4637)] = 183457, + [SMALL_STATE(4638)] = 183484, + [SMALL_STATE(4639)] = 183507, + [SMALL_STATE(4640)] = 183536, + [SMALL_STATE(4641)] = 183561, + [SMALL_STATE(4642)] = 183586, + [SMALL_STATE(4643)] = 183611, + [SMALL_STATE(4644)] = 183640, + [SMALL_STATE(4645)] = 183669, + [SMALL_STATE(4646)] = 183694, + [SMALL_STATE(4647)] = 183719, + [SMALL_STATE(4648)] = 183744, + [SMALL_STATE(4649)] = 183769, + [SMALL_STATE(4650)] = 183798, + [SMALL_STATE(4651)] = 183823, + [SMALL_STATE(4652)] = 183850, + [SMALL_STATE(4653)] = 183877, + [SMALL_STATE(4654)] = 183906, + [SMALL_STATE(4655)] = 183935, + [SMALL_STATE(4656)] = 183964, + [SMALL_STATE(4657)] = 183993, + [SMALL_STATE(4658)] = 184018, + [SMALL_STATE(4659)] = 184047, + [SMALL_STATE(4660)] = 184072, + [SMALL_STATE(4661)] = 184101, + [SMALL_STATE(4662)] = 184130, + [SMALL_STATE(4663)] = 184155, + [SMALL_STATE(4664)] = 184184, + [SMALL_STATE(4665)] = 184207, + [SMALL_STATE(4666)] = 184232, + [SMALL_STATE(4667)] = 184257, + [SMALL_STATE(4668)] = 184282, + [SMALL_STATE(4669)] = 184307, + [SMALL_STATE(4670)] = 184332, + [SMALL_STATE(4671)] = 184361, + [SMALL_STATE(4672)] = 184386, + [SMALL_STATE(4673)] = 184409, + [SMALL_STATE(4674)] = 184434, + [SMALL_STATE(4675)] = 184461, + [SMALL_STATE(4676)] = 184488, + [SMALL_STATE(4677)] = 184513, + [SMALL_STATE(4678)] = 184538, + [SMALL_STATE(4679)] = 184563, + [SMALL_STATE(4680)] = 184588, + [SMALL_STATE(4681)] = 184613, + [SMALL_STATE(4682)] = 184638, + [SMALL_STATE(4683)] = 184663, + [SMALL_STATE(4684)] = 184688, + [SMALL_STATE(4685)] = 184733, + [SMALL_STATE(4686)] = 184758, + [SMALL_STATE(4687)] = 184783, + [SMALL_STATE(4688)] = 184808, + [SMALL_STATE(4689)] = 184837, + [SMALL_STATE(4690)] = 184862, + [SMALL_STATE(4691)] = 184885, + [SMALL_STATE(4692)] = 184914, + [SMALL_STATE(4693)] = 184939, + [SMALL_STATE(4694)] = 184964, + [SMALL_STATE(4695)] = 184993, + [SMALL_STATE(4696)] = 185018, + [SMALL_STATE(4697)] = 185043, + [SMALL_STATE(4698)] = 185072, + [SMALL_STATE(4699)] = 185103, + [SMALL_STATE(4700)] = 185132, + [SMALL_STATE(4701)] = 185157, + [SMALL_STATE(4702)] = 185188, + [SMALL_STATE(4703)] = 185215, + [SMALL_STATE(4704)] = 185240, + [SMALL_STATE(4705)] = 185265, + [SMALL_STATE(4706)] = 185294, + [SMALL_STATE(4707)] = 185319, + [SMALL_STATE(4708)] = 185344, + [SMALL_STATE(4709)] = 185369, + [SMALL_STATE(4710)] = 185398, + [SMALL_STATE(4711)] = 185423, + [SMALL_STATE(4712)] = 185448, + [SMALL_STATE(4713)] = 185477, + [SMALL_STATE(4714)] = 185522, + [SMALL_STATE(4715)] = 185551, + [SMALL_STATE(4716)] = 185576, + [SMALL_STATE(4717)] = 185601, + [SMALL_STATE(4718)] = 185628, + [SMALL_STATE(4719)] = 185655, + [SMALL_STATE(4720)] = 185682, + [SMALL_STATE(4721)] = 185707, + [SMALL_STATE(4722)] = 185738, + [SMALL_STATE(4723)] = 185763, + [SMALL_STATE(4724)] = 185788, + [SMALL_STATE(4725)] = 185815, + [SMALL_STATE(4726)] = 185840, + [SMALL_STATE(4727)] = 185865, + [SMALL_STATE(4728)] = 185890, + [SMALL_STATE(4729)] = 185915, + [SMALL_STATE(4730)] = 185944, + [SMALL_STATE(4731)] = 185969, + [SMALL_STATE(4732)] = 185992, + [SMALL_STATE(4733)] = 186017, + [SMALL_STATE(4734)] = 186042, + [SMALL_STATE(4735)] = 186071, + [SMALL_STATE(4736)] = 186100, + [SMALL_STATE(4737)] = 186125, + [SMALL_STATE(4738)] = 186150, + [SMALL_STATE(4739)] = 186179, + [SMALL_STATE(4740)] = 186208, + [SMALL_STATE(4741)] = 186233, + [SMALL_STATE(4742)] = 186262, + [SMALL_STATE(4743)] = 186287, + [SMALL_STATE(4744)] = 186312, + [SMALL_STATE(4745)] = 186337, + [SMALL_STATE(4746)] = 186362, + [SMALL_STATE(4747)] = 186387, + [SMALL_STATE(4748)] = 186412, + [SMALL_STATE(4749)] = 186437, + [SMALL_STATE(4750)] = 186466, + [SMALL_STATE(4751)] = 186491, + [SMALL_STATE(4752)] = 186516, + [SMALL_STATE(4753)] = 186545, + [SMALL_STATE(4754)] = 186574, + [SMALL_STATE(4755)] = 186603, + [SMALL_STATE(4756)] = 186632, + [SMALL_STATE(4757)] = 186661, + [SMALL_STATE(4758)] = 186690, + [SMALL_STATE(4759)] = 186719, + [SMALL_STATE(4760)] = 186744, + [SMALL_STATE(4761)] = 186769, + [SMALL_STATE(4762)] = 186794, + [SMALL_STATE(4763)] = 186819, + [SMALL_STATE(4764)] = 186844, + [SMALL_STATE(4765)] = 186869, + [SMALL_STATE(4766)] = 186896, + [SMALL_STATE(4767)] = 186925, + [SMALL_STATE(4768)] = 186950, + [SMALL_STATE(4769)] = 186975, + [SMALL_STATE(4770)] = 187000, + [SMALL_STATE(4771)] = 187029, + [SMALL_STATE(4772)] = 187058, + [SMALL_STATE(4773)] = 187083, + [SMALL_STATE(4774)] = 187108, + [SMALL_STATE(4775)] = 187133, + [SMALL_STATE(4776)] = 187164, + [SMALL_STATE(4777)] = 187189, + [SMALL_STATE(4778)] = 187218, + [SMALL_STATE(4779)] = 187245, + [SMALL_STATE(4780)] = 187274, + [SMALL_STATE(4781)] = 187299, + [SMALL_STATE(4782)] = 187324, + [SMALL_STATE(4783)] = 187349, + [SMALL_STATE(4784)] = 187374, + [SMALL_STATE(4785)] = 187399, + [SMALL_STATE(4786)] = 187424, + [SMALL_STATE(4787)] = 187453, + [SMALL_STATE(4788)] = 187482, + [SMALL_STATE(4789)] = 187511, + [SMALL_STATE(4790)] = 187536, + [SMALL_STATE(4791)] = 187561, + [SMALL_STATE(4792)] = 187590, + [SMALL_STATE(4793)] = 187615, + [SMALL_STATE(4794)] = 187640, + [SMALL_STATE(4795)] = 187669, + [SMALL_STATE(4796)] = 187694, + [SMALL_STATE(4797)] = 187719, + [SMALL_STATE(4798)] = 187744, + [SMALL_STATE(4799)] = 187773, + [SMALL_STATE(4800)] = 187798, + [SMALL_STATE(4801)] = 187823, + [SMALL_STATE(4802)] = 187852, + [SMALL_STATE(4803)] = 187877, + [SMALL_STATE(4804)] = 187906, + [SMALL_STATE(4805)] = 187931, + [SMALL_STATE(4806)] = 187956, + [SMALL_STATE(4807)] = 187981, + [SMALL_STATE(4808)] = 188022, + [SMALL_STATE(4809)] = 188047, + [SMALL_STATE(4810)] = 188074, + [SMALL_STATE(4811)] = 188096, + [SMALL_STATE(4812)] = 188120, + [SMALL_STATE(4813)] = 188146, + [SMALL_STATE(4814)] = 188170, + [SMALL_STATE(4815)] = 188194, + [SMALL_STATE(4816)] = 188218, + [SMALL_STATE(4817)] = 188242, + [SMALL_STATE(4818)] = 188266, + [SMALL_STATE(4819)] = 188290, + [SMALL_STATE(4820)] = 188314, + [SMALL_STATE(4821)] = 188338, + [SMALL_STATE(4822)] = 188362, + [SMALL_STATE(4823)] = 188386, + [SMALL_STATE(4824)] = 188410, + [SMALL_STATE(4825)] = 188434, + [SMALL_STATE(4826)] = 188458, + [SMALL_STATE(4827)] = 188482, + [SMALL_STATE(4828)] = 188506, + [SMALL_STATE(4829)] = 188530, + [SMALL_STATE(4830)] = 188570, + [SMALL_STATE(4831)] = 188614, + [SMALL_STATE(4832)] = 188638, + [SMALL_STATE(4833)] = 188662, + [SMALL_STATE(4834)] = 188686, + [SMALL_STATE(4835)] = 188710, + [SMALL_STATE(4836)] = 188734, + [SMALL_STATE(4837)] = 188758, + [SMALL_STATE(4838)] = 188782, + [SMALL_STATE(4839)] = 188806, + [SMALL_STATE(4840)] = 188830, + [SMALL_STATE(4841)] = 188852, + [SMALL_STATE(4842)] = 188876, + [SMALL_STATE(4843)] = 188900, + [SMALL_STATE(4844)] = 188924, + [SMALL_STATE(4845)] = 188948, + [SMALL_STATE(4846)] = 188972, + [SMALL_STATE(4847)] = 188996, + [SMALL_STATE(4848)] = 189034, + [SMALL_STATE(4849)] = 189058, + [SMALL_STATE(4850)] = 189082, + [SMALL_STATE(4851)] = 189106, + [SMALL_STATE(4852)] = 189132, + [SMALL_STATE(4853)] = 189154, + [SMALL_STATE(4854)] = 189178, + [SMALL_STATE(4855)] = 189200, + [SMALL_STATE(4856)] = 189224, + [SMALL_STATE(4857)] = 189250, + [SMALL_STATE(4858)] = 189276, + [SMALL_STATE(4859)] = 189300, + [SMALL_STATE(4860)] = 189342, + [SMALL_STATE(4861)] = 189366, + [SMALL_STATE(4862)] = 189390, + [SMALL_STATE(4863)] = 189414, + [SMALL_STATE(4864)] = 189438, + [SMALL_STATE(4865)] = 189462, + [SMALL_STATE(4866)] = 189486, + [SMALL_STATE(4867)] = 189510, + [SMALL_STATE(4868)] = 189536, + [SMALL_STATE(4869)] = 189560, + [SMALL_STATE(4870)] = 189584, + [SMALL_STATE(4871)] = 189626, + [SMALL_STATE(4872)] = 189650, + [SMALL_STATE(4873)] = 189674, + [SMALL_STATE(4874)] = 189698, + [SMALL_STATE(4875)] = 189744, + [SMALL_STATE(4876)] = 189768, + [SMALL_STATE(4877)] = 189790, + [SMALL_STATE(4878)] = 189816, + [SMALL_STATE(4879)] = 189840, + [SMALL_STATE(4880)] = 189864, + [SMALL_STATE(4881)] = 189888, + [SMALL_STATE(4882)] = 189930, + [SMALL_STATE(4883)] = 189954, + [SMALL_STATE(4884)] = 189978, + [SMALL_STATE(4885)] = 190002, + [SMALL_STATE(4886)] = 190026, + [SMALL_STATE(4887)] = 190050, + [SMALL_STATE(4888)] = 190096, + [SMALL_STATE(4889)] = 190118, + [SMALL_STATE(4890)] = 190142, + [SMALL_STATE(4891)] = 190166, + [SMALL_STATE(4892)] = 190190, + [SMALL_STATE(4893)] = 190214, + [SMALL_STATE(4894)] = 190238, + [SMALL_STATE(4895)] = 190262, + [SMALL_STATE(4896)] = 190308, + [SMALL_STATE(4897)] = 190332, + [SMALL_STATE(4898)] = 190370, + [SMALL_STATE(4899)] = 190394, + [SMALL_STATE(4900)] = 190416, + [SMALL_STATE(4901)] = 190440, + [SMALL_STATE(4902)] = 190464, + [SMALL_STATE(4903)] = 190486, + [SMALL_STATE(4904)] = 190510, + [SMALL_STATE(4905)] = 190532, + [SMALL_STATE(4906)] = 190556, + [SMALL_STATE(4907)] = 190578, + [SMALL_STATE(4908)] = 190604, + [SMALL_STATE(4909)] = 190628, + [SMALL_STATE(4910)] = 190652, + [SMALL_STATE(4911)] = 190676, + [SMALL_STATE(4912)] = 190700, + [SMALL_STATE(4913)] = 190722, + [SMALL_STATE(4914)] = 190746, + [SMALL_STATE(4915)] = 190770, + [SMALL_STATE(4916)] = 190794, + [SMALL_STATE(4917)] = 190818, + [SMALL_STATE(4918)] = 190852, + [SMALL_STATE(4919)] = 190876, + [SMALL_STATE(4920)] = 190898, + [SMALL_STATE(4921)] = 190922, + [SMALL_STATE(4922)] = 190946, + [SMALL_STATE(4923)] = 190970, + [SMALL_STATE(4924)] = 190992, + [SMALL_STATE(4925)] = 191014, + [SMALL_STATE(4926)] = 191060, + [SMALL_STATE(4927)] = 191084, + [SMALL_STATE(4928)] = 191108, + [SMALL_STATE(4929)] = 191132, + [SMALL_STATE(4930)] = 191156, + [SMALL_STATE(4931)] = 191180, + [SMALL_STATE(4932)] = 191204, + [SMALL_STATE(4933)] = 191228, + [SMALL_STATE(4934)] = 191252, + [SMALL_STATE(4935)] = 191276, + [SMALL_STATE(4936)] = 191300, + [SMALL_STATE(4937)] = 191324, + [SMALL_STATE(4938)] = 191348, + [SMALL_STATE(4939)] = 191372, + [SMALL_STATE(4940)] = 191394, + [SMALL_STATE(4941)] = 191418, + [SMALL_STATE(4942)] = 191440, + [SMALL_STATE(4943)] = 191464, + [SMALL_STATE(4944)] = 191486, + [SMALL_STATE(4945)] = 191510, + [SMALL_STATE(4946)] = 191532, + [SMALL_STATE(4947)] = 191556, + [SMALL_STATE(4948)] = 191602, + [SMALL_STATE(4949)] = 191626, + [SMALL_STATE(4950)] = 191672, + [SMALL_STATE(4951)] = 191694, + [SMALL_STATE(4952)] = 191718, + [SMALL_STATE(4953)] = 191742, + [SMALL_STATE(4954)] = 191766, + [SMALL_STATE(4955)] = 191790, + [SMALL_STATE(4956)] = 191814, + [SMALL_STATE(4957)] = 191860, + [SMALL_STATE(4958)] = 191884, + [SMALL_STATE(4959)] = 191908, + [SMALL_STATE(4960)] = 191932, + [SMALL_STATE(4961)] = 191956, + [SMALL_STATE(4962)] = 192002, + [SMALL_STATE(4963)] = 192028, + [SMALL_STATE(4964)] = 192052, + [SMALL_STATE(4965)] = 192098, + [SMALL_STATE(4966)] = 192122, + [SMALL_STATE(4967)] = 192146, + [SMALL_STATE(4968)] = 192170, + [SMALL_STATE(4969)] = 192194, + [SMALL_STATE(4970)] = 192218, + [SMALL_STATE(4971)] = 192242, + [SMALL_STATE(4972)] = 192266, + [SMALL_STATE(4973)] = 192288, + [SMALL_STATE(4974)] = 192312, + [SMALL_STATE(4975)] = 192336, + [SMALL_STATE(4976)] = 192360, + [SMALL_STATE(4977)] = 192382, + [SMALL_STATE(4978)] = 192406, + [SMALL_STATE(4979)] = 192430, + [SMALL_STATE(4980)] = 192452, + [SMALL_STATE(4981)] = 192476, + [SMALL_STATE(4982)] = 192498, + [SMALL_STATE(4983)] = 192522, + [SMALL_STATE(4984)] = 192546, + [SMALL_STATE(4985)] = 192570, + [SMALL_STATE(4986)] = 192594, + [SMALL_STATE(4987)] = 192640, + [SMALL_STATE(4988)] = 192684, + [SMALL_STATE(4989)] = 192708, + [SMALL_STATE(4990)] = 192746, + [SMALL_STATE(4991)] = 192770, + [SMALL_STATE(4992)] = 192794, + [SMALL_STATE(4993)] = 192818, + [SMALL_STATE(4994)] = 192842, + [SMALL_STATE(4995)] = 192866, + [SMALL_STATE(4996)] = 192890, + [SMALL_STATE(4997)] = 192914, + [SMALL_STATE(4998)] = 192938, + [SMALL_STATE(4999)] = 192962, + [SMALL_STATE(5000)] = 192986, + [SMALL_STATE(5001)] = 193009, + [SMALL_STATE(5002)] = 193030, + [SMALL_STATE(5003)] = 193051, + [SMALL_STATE(5004)] = 193072, + [SMALL_STATE(5005)] = 193093, + [SMALL_STATE(5006)] = 193114, + [SMALL_STATE(5007)] = 193135, + [SMALL_STATE(5008)] = 193156, + [SMALL_STATE(5009)] = 193183, + [SMALL_STATE(5010)] = 193206, + [SMALL_STATE(5011)] = 193227, + [SMALL_STATE(5012)] = 193248, + [SMALL_STATE(5013)] = 193275, + [SMALL_STATE(5014)] = 193296, + [SMALL_STATE(5015)] = 193317, + [SMALL_STATE(5016)] = 193358, + [SMALL_STATE(5017)] = 193379, + [SMALL_STATE(5018)] = 193400, + [SMALL_STATE(5019)] = 193421, + [SMALL_STATE(5020)] = 193442, + [SMALL_STATE(5021)] = 193469, + [SMALL_STATE(5022)] = 193490, + [SMALL_STATE(5023)] = 193511, + [SMALL_STATE(5024)] = 193532, + [SMALL_STATE(5025)] = 193553, + [SMALL_STATE(5026)] = 193574, + [SMALL_STATE(5027)] = 193611, + [SMALL_STATE(5028)] = 193632, + [SMALL_STATE(5029)] = 193653, + [SMALL_STATE(5030)] = 193674, + [SMALL_STATE(5031)] = 193695, + [SMALL_STATE(5032)] = 193716, + [SMALL_STATE(5033)] = 193737, + [SMALL_STATE(5034)] = 193758, + [SMALL_STATE(5035)] = 193779, + [SMALL_STATE(5036)] = 193800, + [SMALL_STATE(5037)] = 193821, + [SMALL_STATE(5038)] = 193842, + [SMALL_STATE(5039)] = 193863, + [SMALL_STATE(5040)] = 193884, + [SMALL_STATE(5041)] = 193905, + [SMALL_STATE(5042)] = 193926, + [SMALL_STATE(5043)] = 193947, + [SMALL_STATE(5044)] = 193968, + [SMALL_STATE(5045)] = 193989, + [SMALL_STATE(5046)] = 194010, + [SMALL_STATE(5047)] = 194047, + [SMALL_STATE(5048)] = 194086, + [SMALL_STATE(5049)] = 194113, + [SMALL_STATE(5050)] = 194136, + [SMALL_STATE(5051)] = 194177, + [SMALL_STATE(5052)] = 194200, + [SMALL_STATE(5053)] = 194223, + [SMALL_STATE(5054)] = 194246, + [SMALL_STATE(5055)] = 194285, + [SMALL_STATE(5056)] = 194326, + [SMALL_STATE(5057)] = 194365, + [SMALL_STATE(5058)] = 194386, + [SMALL_STATE(5059)] = 194407, + [SMALL_STATE(5060)] = 194448, + [SMALL_STATE(5061)] = 194489, + [SMALL_STATE(5062)] = 194510, + [SMALL_STATE(5063)] = 194531, + [SMALL_STATE(5064)] = 194552, + [SMALL_STATE(5065)] = 194575, + [SMALL_STATE(5066)] = 194598, + [SMALL_STATE(5067)] = 194637, + [SMALL_STATE(5068)] = 194676, + [SMALL_STATE(5069)] = 194697, + [SMALL_STATE(5070)] = 194720, + [SMALL_STATE(5071)] = 194743, + [SMALL_STATE(5072)] = 194776, + [SMALL_STATE(5073)] = 194797, + [SMALL_STATE(5074)] = 194818, + [SMALL_STATE(5075)] = 194839, + [SMALL_STATE(5076)] = 194860, + [SMALL_STATE(5077)] = 194901, + [SMALL_STATE(5078)] = 194928, + [SMALL_STATE(5079)] = 194949, + [SMALL_STATE(5080)] = 194988, + [SMALL_STATE(5081)] = 195009, + [SMALL_STATE(5082)] = 195030, + [SMALL_STATE(5083)] = 195053, + [SMALL_STATE(5084)] = 195074, + [SMALL_STATE(5085)] = 195115, + [SMALL_STATE(5086)] = 195138, + [SMALL_STATE(5087)] = 195177, + [SMALL_STATE(5088)] = 195216, + [SMALL_STATE(5089)] = 195255, + [SMALL_STATE(5090)] = 195276, + [SMALL_STATE(5091)] = 195299, + [SMALL_STATE(5092)] = 195320, + [SMALL_STATE(5093)] = 195343, + [SMALL_STATE(5094)] = 195366, + [SMALL_STATE(5095)] = 195389, + [SMALL_STATE(5096)] = 195412, + [SMALL_STATE(5097)] = 195435, + [SMALL_STATE(5098)] = 195458, + [SMALL_STATE(5099)] = 195481, + [SMALL_STATE(5100)] = 195504, + [SMALL_STATE(5101)] = 195527, + [SMALL_STATE(5102)] = 195550, + [SMALL_STATE(5103)] = 195573, + [SMALL_STATE(5104)] = 195596, + [SMALL_STATE(5105)] = 195619, + [SMALL_STATE(5106)] = 195642, + [SMALL_STATE(5107)] = 195665, + [SMALL_STATE(5108)] = 195688, + [SMALL_STATE(5109)] = 195711, + [SMALL_STATE(5110)] = 195734, + [SMALL_STATE(5111)] = 195761, + [SMALL_STATE(5112)] = 195788, + [SMALL_STATE(5113)] = 195811, + [SMALL_STATE(5114)] = 195832, + [SMALL_STATE(5115)] = 195855, + [SMALL_STATE(5116)] = 195882, + [SMALL_STATE(5117)] = 195903, + [SMALL_STATE(5118)] = 195926, + [SMALL_STATE(5119)] = 195949, + [SMALL_STATE(5120)] = 195972, + [SMALL_STATE(5121)] = 195993, + [SMALL_STATE(5122)] = 196016, + [SMALL_STATE(5123)] = 196039, + [SMALL_STATE(5124)] = 196060, + [SMALL_STATE(5125)] = 196101, + [SMALL_STATE(5126)] = 196142, + [SMALL_STATE(5127)] = 196163, + [SMALL_STATE(5128)] = 196184, + [SMALL_STATE(5129)] = 196211, + [SMALL_STATE(5130)] = 196234, + [SMALL_STATE(5131)] = 196261, + [SMALL_STATE(5132)] = 196284, + [SMALL_STATE(5133)] = 196307, + [SMALL_STATE(5134)] = 196330, + [SMALL_STATE(5135)] = 196357, + [SMALL_STATE(5136)] = 196378, + [SMALL_STATE(5137)] = 196413, + [SMALL_STATE(5138)] = 196450, + [SMALL_STATE(5139)] = 196485, + [SMALL_STATE(5140)] = 196520, + [SMALL_STATE(5141)] = 196555, + [SMALL_STATE(5142)] = 196576, + [SMALL_STATE(5143)] = 196613, + [SMALL_STATE(5144)] = 196634, + [SMALL_STATE(5145)] = 196655, + [SMALL_STATE(5146)] = 196676, + [SMALL_STATE(5147)] = 196697, + [SMALL_STATE(5148)] = 196718, + [SMALL_STATE(5149)] = 196739, + [SMALL_STATE(5150)] = 196760, + [SMALL_STATE(5151)] = 196781, + [SMALL_STATE(5152)] = 196804, + [SMALL_STATE(5153)] = 196827, + [SMALL_STATE(5154)] = 196868, + [SMALL_STATE(5155)] = 196889, + [SMALL_STATE(5156)] = 196912, + [SMALL_STATE(5157)] = 196948, + [SMALL_STATE(5158)] = 196980, + [SMALL_STATE(5159)] = 197012, + [SMALL_STATE(5160)] = 197038, + [SMALL_STATE(5161)] = 197074, + [SMALL_STATE(5162)] = 197100, + [SMALL_STATE(5163)] = 197138, + [SMALL_STATE(5164)] = 197162, + [SMALL_STATE(5165)] = 197200, + [SMALL_STATE(5166)] = 197226, + [SMALL_STATE(5167)] = 197262, + [SMALL_STATE(5168)] = 197288, + [SMALL_STATE(5169)] = 197312, + [SMALL_STATE(5170)] = 197340, + [SMALL_STATE(5171)] = 197372, + [SMALL_STATE(5172)] = 197396, + [SMALL_STATE(5173)] = 197434, + [SMALL_STATE(5174)] = 197460, + [SMALL_STATE(5175)] = 197492, + [SMALL_STATE(5176)] = 197528, + [SMALL_STATE(5177)] = 197554, + [SMALL_STATE(5178)] = 197592, + [SMALL_STATE(5179)] = 197616, + [SMALL_STATE(5180)] = 197648, + [SMALL_STATE(5181)] = 197680, + [SMALL_STATE(5182)] = 197702, + [SMALL_STATE(5183)] = 197728, + [SMALL_STATE(5184)] = 197750, + [SMALL_STATE(5185)] = 197776, + [SMALL_STATE(5186)] = 197802, + [SMALL_STATE(5187)] = 197828, + [SMALL_STATE(5188)] = 197852, + [SMALL_STATE(5189)] = 197878, + [SMALL_STATE(5190)] = 197910, + [SMALL_STATE(5191)] = 197942, + [SMALL_STATE(5192)] = 197974, + [SMALL_STATE(5193)] = 197998, + [SMALL_STATE(5194)] = 198030, + [SMALL_STATE(5195)] = 198062, + [SMALL_STATE(5196)] = 198098, + [SMALL_STATE(5197)] = 198124, + [SMALL_STATE(5198)] = 198158, + [SMALL_STATE(5199)] = 198192, + [SMALL_STATE(5200)] = 198226, + [SMALL_STATE(5201)] = 198260, + [SMALL_STATE(5202)] = 198294, + [SMALL_STATE(5203)] = 198328, + [SMALL_STATE(5204)] = 198352, + [SMALL_STATE(5205)] = 198376, + [SMALL_STATE(5206)] = 198405, + [SMALL_STATE(5207)] = 198440, + [SMALL_STATE(5208)] = 198471, + [SMALL_STATE(5209)] = 198506, + [SMALL_STATE(5210)] = 198541, + [SMALL_STATE(5211)] = 198560, + [SMALL_STATE(5212)] = 198579, + [SMALL_STATE(5213)] = 198610, + [SMALL_STATE(5214)] = 198645, + [SMALL_STATE(5215)] = 198680, + [SMALL_STATE(5216)] = 198705, + [SMALL_STATE(5217)] = 198740, + [SMALL_STATE(5218)] = 198775, + [SMALL_STATE(5219)] = 198800, + [SMALL_STATE(5220)] = 198825, + [SMALL_STATE(5221)] = 198846, + [SMALL_STATE(5222)] = 198881, + [SMALL_STATE(5223)] = 198904, + [SMALL_STATE(5224)] = 198937, + [SMALL_STATE(5225)] = 198958, + [SMALL_STATE(5226)] = 198991, + [SMALL_STATE(5227)] = 199024, + [SMALL_STATE(5228)] = 199057, + [SMALL_STATE(5229)] = 199078, + [SMALL_STATE(5230)] = 199107, + [SMALL_STATE(5231)] = 199136, + [SMALL_STATE(5232)] = 199171, + [SMALL_STATE(5233)] = 199206, + [SMALL_STATE(5234)] = 199229, + [SMALL_STATE(5235)] = 199264, + [SMALL_STATE(5236)] = 199299, + [SMALL_STATE(5237)] = 199334, + [SMALL_STATE(5238)] = 199369, + [SMALL_STATE(5239)] = 199390, + [SMALL_STATE(5240)] = 199425, + [SMALL_STATE(5241)] = 199460, + [SMALL_STATE(5242)] = 199481, + [SMALL_STATE(5243)] = 199508, + [SMALL_STATE(5244)] = 199543, + [SMALL_STATE(5245)] = 199564, + [SMALL_STATE(5246)] = 199599, + [SMALL_STATE(5247)] = 199634, + [SMALL_STATE(5248)] = 199655, + [SMALL_STATE(5249)] = 199676, + [SMALL_STATE(5250)] = 199711, + [SMALL_STATE(5251)] = 199746, + [SMALL_STATE(5252)] = 199771, + [SMALL_STATE(5253)] = 199790, + [SMALL_STATE(5254)] = 199813, + [SMALL_STATE(5255)] = 199836, + [SMALL_STATE(5256)] = 199859, + [SMALL_STATE(5257)] = 199894, + [SMALL_STATE(5258)] = 199917, + [SMALL_STATE(5259)] = 199948, + [SMALL_STATE(5260)] = 199979, + [SMALL_STATE(5261)] = 200010, + [SMALL_STATE(5262)] = 200033, + [SMALL_STATE(5263)] = 200068, + [SMALL_STATE(5264)] = 200103, + [SMALL_STATE(5265)] = 200138, + [SMALL_STATE(5266)] = 200163, + [SMALL_STATE(5267)] = 200198, + [SMALL_STATE(5268)] = 200233, + [SMALL_STATE(5269)] = 200268, + [SMALL_STATE(5270)] = 200303, + [SMALL_STATE(5271)] = 200338, + [SMALL_STATE(5272)] = 200367, + [SMALL_STATE(5273)] = 200402, + [SMALL_STATE(5274)] = 200437, + [SMALL_STATE(5275)] = 200470, + [SMALL_STATE(5276)] = 200491, + [SMALL_STATE(5277)] = 200512, + [SMALL_STATE(5278)] = 200533, + [SMALL_STATE(5279)] = 200562, + [SMALL_STATE(5280)] = 200583, + [SMALL_STATE(5281)] = 200612, + [SMALL_STATE(5282)] = 200631, + [SMALL_STATE(5283)] = 200650, + [SMALL_STATE(5284)] = 200669, + [SMALL_STATE(5285)] = 200704, + [SMALL_STATE(5286)] = 200729, + [SMALL_STATE(5287)] = 200764, + [SMALL_STATE(5288)] = 200797, + [SMALL_STATE(5289)] = 200830, + [SMALL_STATE(5290)] = 200857, + [SMALL_STATE(5291)] = 200888, + [SMALL_STATE(5292)] = 200913, + [SMALL_STATE(5293)] = 200948, + [SMALL_STATE(5294)] = 200983, + [SMALL_STATE(5295)] = 201004, + [SMALL_STATE(5296)] = 201039, + [SMALL_STATE(5297)] = 201074, + [SMALL_STATE(5298)] = 201109, + [SMALL_STATE(5299)] = 201142, + [SMALL_STATE(5300)] = 201161, + [SMALL_STATE(5301)] = 201183, + [SMALL_STATE(5302)] = 201203, + [SMALL_STATE(5303)] = 201223, + [SMALL_STATE(5304)] = 201253, + [SMALL_STATE(5305)] = 201283, + [SMALL_STATE(5306)] = 201313, + [SMALL_STATE(5307)] = 201343, + [SMALL_STATE(5308)] = 201367, + [SMALL_STATE(5309)] = 201397, + [SMALL_STATE(5310)] = 201427, + [SMALL_STATE(5311)] = 201457, + [SMALL_STATE(5312)] = 201487, + [SMALL_STATE(5313)] = 201517, + [SMALL_STATE(5314)] = 201547, + [SMALL_STATE(5315)] = 201569, + [SMALL_STATE(5316)] = 201591, + [SMALL_STATE(5317)] = 201621, + [SMALL_STATE(5318)] = 201651, + [SMALL_STATE(5319)] = 201675, + [SMALL_STATE(5320)] = 201699, + [SMALL_STATE(5321)] = 201729, + [SMALL_STATE(5322)] = 201753, + [SMALL_STATE(5323)] = 201783, + [SMALL_STATE(5324)] = 201813, + [SMALL_STATE(5325)] = 201843, + [SMALL_STATE(5326)] = 201873, + [SMALL_STATE(5327)] = 201897, + [SMALL_STATE(5328)] = 201927, + [SMALL_STATE(5329)] = 201957, + [SMALL_STATE(5330)] = 201981, + [SMALL_STATE(5331)] = 202011, + [SMALL_STATE(5332)] = 202041, + [SMALL_STATE(5333)] = 202063, + [SMALL_STATE(5334)] = 202093, + [SMALL_STATE(5335)] = 202123, + [SMALL_STATE(5336)] = 202153, + [SMALL_STATE(5337)] = 202183, + [SMALL_STATE(5338)] = 202213, + [SMALL_STATE(5339)] = 202243, + [SMALL_STATE(5340)] = 202263, + [SMALL_STATE(5341)] = 202287, + [SMALL_STATE(5342)] = 202307, + [SMALL_STATE(5343)] = 202329, + [SMALL_STATE(5344)] = 202361, + [SMALL_STATE(5345)] = 202391, + [SMALL_STATE(5346)] = 202421, + [SMALL_STATE(5347)] = 202441, + [SMALL_STATE(5348)] = 202461, + [SMALL_STATE(5349)] = 202491, + [SMALL_STATE(5350)] = 202511, + [SMALL_STATE(5351)] = 202541, + [SMALL_STATE(5352)] = 202571, + [SMALL_STATE(5353)] = 202601, + [SMALL_STATE(5354)] = 202623, + [SMALL_STATE(5355)] = 202643, + [SMALL_STATE(5356)] = 202663, + [SMALL_STATE(5357)] = 202693, + [SMALL_STATE(5358)] = 202723, + [SMALL_STATE(5359)] = 202753, + [SMALL_STATE(5360)] = 202773, + [SMALL_STATE(5361)] = 202795, + [SMALL_STATE(5362)] = 202825, + [SMALL_STATE(5363)] = 202853, + [SMALL_STATE(5364)] = 202875, + [SMALL_STATE(5365)] = 202905, + [SMALL_STATE(5366)] = 202925, + [SMALL_STATE(5367)] = 202945, + [SMALL_STATE(5368)] = 202975, + [SMALL_STATE(5369)] = 203005, + [SMALL_STATE(5370)] = 203035, + [SMALL_STATE(5371)] = 203065, + [SMALL_STATE(5372)] = 203095, + [SMALL_STATE(5373)] = 203125, + [SMALL_STATE(5374)] = 203151, + [SMALL_STATE(5375)] = 203175, + [SMALL_STATE(5376)] = 203195, + [SMALL_STATE(5377)] = 203219, + [SMALL_STATE(5378)] = 203243, + [SMALL_STATE(5379)] = 203273, + [SMALL_STATE(5380)] = 203303, + [SMALL_STATE(5381)] = 203333, + [SMALL_STATE(5382)] = 203363, + [SMALL_STATE(5383)] = 203393, + [SMALL_STATE(5384)] = 203417, + [SMALL_STATE(5385)] = 203447, + [SMALL_STATE(5386)] = 203467, + [SMALL_STATE(5387)] = 203497, + [SMALL_STATE(5388)] = 203529, + [SMALL_STATE(5389)] = 203549, + [SMALL_STATE(5390)] = 203568, + [SMALL_STATE(5391)] = 203587, + [SMALL_STATE(5392)] = 203616, + [SMALL_STATE(5393)] = 203637, + [SMALL_STATE(5394)] = 203666, + [SMALL_STATE(5395)] = 203689, + [SMALL_STATE(5396)] = 203710, + [SMALL_STATE(5397)] = 203739, + [SMALL_STATE(5398)] = 203760, + [SMALL_STATE(5399)] = 203789, + [SMALL_STATE(5400)] = 203812, + [SMALL_STATE(5401)] = 203837, + [SMALL_STATE(5402)] = 203856, + [SMALL_STATE(5403)] = 203875, + [SMALL_STATE(5404)] = 203894, + [SMALL_STATE(5405)] = 203913, + [SMALL_STATE(5406)] = 203942, + [SMALL_STATE(5407)] = 203969, + [SMALL_STATE(5408)] = 203988, + [SMALL_STATE(5409)] = 204009, + [SMALL_STATE(5410)] = 204028, + [SMALL_STATE(5411)] = 204047, + [SMALL_STATE(5412)] = 204066, + [SMALL_STATE(5413)] = 204091, + [SMALL_STATE(5414)] = 204110, + [SMALL_STATE(5415)] = 204131, + [SMALL_STATE(5416)] = 204154, + [SMALL_STATE(5417)] = 204175, + [SMALL_STATE(5418)] = 204196, + [SMALL_STATE(5419)] = 204217, + [SMALL_STATE(5420)] = 204242, + [SMALL_STATE(5421)] = 204267, + [SMALL_STATE(5422)] = 204292, + [SMALL_STATE(5423)] = 204317, + [SMALL_STATE(5424)] = 204342, + [SMALL_STATE(5425)] = 204367, + [SMALL_STATE(5426)] = 204392, + [SMALL_STATE(5427)] = 204417, + [SMALL_STATE(5428)] = 204442, + [SMALL_STATE(5429)] = 204467, + [SMALL_STATE(5430)] = 204492, + [SMALL_STATE(5431)] = 204517, + [SMALL_STATE(5432)] = 204542, + [SMALL_STATE(5433)] = 204567, + [SMALL_STATE(5434)] = 204592, + [SMALL_STATE(5435)] = 204617, + [SMALL_STATE(5436)] = 204642, + [SMALL_STATE(5437)] = 204667, + [SMALL_STATE(5438)] = 204686, + [SMALL_STATE(5439)] = 204713, + [SMALL_STATE(5440)] = 204738, + [SMALL_STATE(5441)] = 204757, + [SMALL_STATE(5442)] = 204782, + [SMALL_STATE(5443)] = 204809, + [SMALL_STATE(5444)] = 204836, + [SMALL_STATE(5445)] = 204863, + [SMALL_STATE(5446)] = 204890, + [SMALL_STATE(5447)] = 204917, + [SMALL_STATE(5448)] = 204944, + [SMALL_STATE(5449)] = 204971, + [SMALL_STATE(5450)] = 204998, + [SMALL_STATE(5451)] = 205025, + [SMALL_STATE(5452)] = 205052, + [SMALL_STATE(5453)] = 205079, + [SMALL_STATE(5454)] = 205106, + [SMALL_STATE(5455)] = 205133, + [SMALL_STATE(5456)] = 205160, + [SMALL_STATE(5457)] = 205189, + [SMALL_STATE(5458)] = 205216, + [SMALL_STATE(5459)] = 205243, + [SMALL_STATE(5460)] = 205270, + [SMALL_STATE(5461)] = 205297, + [SMALL_STATE(5462)] = 205324, + [SMALL_STATE(5463)] = 205351, + [SMALL_STATE(5464)] = 205378, + [SMALL_STATE(5465)] = 205399, + [SMALL_STATE(5466)] = 205426, + [SMALL_STATE(5467)] = 205453, + [SMALL_STATE(5468)] = 205480, + [SMALL_STATE(5469)] = 205507, + [SMALL_STATE(5470)] = 205532, + [SMALL_STATE(5471)] = 205561, + [SMALL_STATE(5472)] = 205580, + [SMALL_STATE(5473)] = 205607, + [SMALL_STATE(5474)] = 205628, + [SMALL_STATE(5475)] = 205647, + [SMALL_STATE(5476)] = 205670, + [SMALL_STATE(5477)] = 205691, + [SMALL_STATE(5478)] = 205714, + [SMALL_STATE(5479)] = 205733, + [SMALL_STATE(5480)] = 205754, + [SMALL_STATE(5481)] = 205783, + [SMALL_STATE(5482)] = 205802, + [SMALL_STATE(5483)] = 205821, + [SMALL_STATE(5484)] = 205842, + [SMALL_STATE(5485)] = 205869, + [SMALL_STATE(5486)] = 205888, + [SMALL_STATE(5487)] = 205915, + [SMALL_STATE(5488)] = 205934, + [SMALL_STATE(5489)] = 205961, + [SMALL_STATE(5490)] = 205988, + [SMALL_STATE(5491)] = 206007, + [SMALL_STATE(5492)] = 206034, + [SMALL_STATE(5493)] = 206061, + [SMALL_STATE(5494)] = 206088, + [SMALL_STATE(5495)] = 206115, + [SMALL_STATE(5496)] = 206134, + [SMALL_STATE(5497)] = 206153, + [SMALL_STATE(5498)] = 206180, + [SMALL_STATE(5499)] = 206207, + [SMALL_STATE(5500)] = 206234, + [SMALL_STATE(5501)] = 206261, + [SMALL_STATE(5502)] = 206288, + [SMALL_STATE(5503)] = 206315, + [SMALL_STATE(5504)] = 206342, + [SMALL_STATE(5505)] = 206361, + [SMALL_STATE(5506)] = 206388, + [SMALL_STATE(5507)] = 206415, + [SMALL_STATE(5508)] = 206442, + [SMALL_STATE(5509)] = 206463, + [SMALL_STATE(5510)] = 206490, + [SMALL_STATE(5511)] = 206511, + [SMALL_STATE(5512)] = 206532, + [SMALL_STATE(5513)] = 206551, + [SMALL_STATE(5514)] = 206570, + [SMALL_STATE(5515)] = 206591, + [SMALL_STATE(5516)] = 206618, + [SMALL_STATE(5517)] = 206643, + [SMALL_STATE(5518)] = 206670, + [SMALL_STATE(5519)] = 206693, + [SMALL_STATE(5520)] = 206712, + [SMALL_STATE(5521)] = 206741, + [SMALL_STATE(5522)] = 206760, + [SMALL_STATE(5523)] = 206779, + [SMALL_STATE(5524)] = 206806, + [SMALL_STATE(5525)] = 206830, + [SMALL_STATE(5526)] = 206856, + [SMALL_STATE(5527)] = 206882, + [SMALL_STATE(5528)] = 206908, + [SMALL_STATE(5529)] = 206932, + [SMALL_STATE(5530)] = 206958, + [SMALL_STATE(5531)] = 206984, + [SMALL_STATE(5532)] = 207002, + [SMALL_STATE(5533)] = 207028, + [SMALL_STATE(5534)] = 207054, + [SMALL_STATE(5535)] = 207074, + [SMALL_STATE(5536)] = 207094, + [SMALL_STATE(5537)] = 207122, + [SMALL_STATE(5538)] = 207148, + [SMALL_STATE(5539)] = 207166, + [SMALL_STATE(5540)] = 207190, + [SMALL_STATE(5541)] = 207210, + [SMALL_STATE(5542)] = 207236, + [SMALL_STATE(5543)] = 207254, + [SMALL_STATE(5544)] = 207282, + [SMALL_STATE(5545)] = 207298, + [SMALL_STATE(5546)] = 207324, + [SMALL_STATE(5547)] = 207348, + [SMALL_STATE(5548)] = 207374, + [SMALL_STATE(5549)] = 207400, + [SMALL_STATE(5550)] = 207426, + [SMALL_STATE(5551)] = 207446, + [SMALL_STATE(5552)] = 207472, + [SMALL_STATE(5553)] = 207496, + [SMALL_STATE(5554)] = 207522, + [SMALL_STATE(5555)] = 207548, + [SMALL_STATE(5556)] = 207570, + [SMALL_STATE(5557)] = 207590, + [SMALL_STATE(5558)] = 207608, + [SMALL_STATE(5559)] = 207626, + [SMALL_STATE(5560)] = 207652, + [SMALL_STATE(5561)] = 207678, + [SMALL_STATE(5562)] = 207704, + [SMALL_STATE(5563)] = 207720, + [SMALL_STATE(5564)] = 207746, + [SMALL_STATE(5565)] = 207766, + [SMALL_STATE(5566)] = 207788, + [SMALL_STATE(5567)] = 207814, + [SMALL_STATE(5568)] = 207840, + [SMALL_STATE(5569)] = 207866, + [SMALL_STATE(5570)] = 207892, + [SMALL_STATE(5571)] = 207910, + [SMALL_STATE(5572)] = 207932, + [SMALL_STATE(5573)] = 207958, + [SMALL_STATE(5574)] = 207984, + [SMALL_STATE(5575)] = 208010, + [SMALL_STATE(5576)] = 208030, + [SMALL_STATE(5577)] = 208056, + [SMALL_STATE(5578)] = 208082, + [SMALL_STATE(5579)] = 208106, + [SMALL_STATE(5580)] = 208132, + [SMALL_STATE(5581)] = 208152, + [SMALL_STATE(5582)] = 208170, + [SMALL_STATE(5583)] = 208188, + [SMALL_STATE(5584)] = 208206, + [SMALL_STATE(5585)] = 208232, + [SMALL_STATE(5586)] = 208256, + [SMALL_STATE(5587)] = 208282, + [SMALL_STATE(5588)] = 208308, + [SMALL_STATE(5589)] = 208334, + [SMALL_STATE(5590)] = 208360, + [SMALL_STATE(5591)] = 208386, + [SMALL_STATE(5592)] = 208406, + [SMALL_STATE(5593)] = 208424, + [SMALL_STATE(5594)] = 208450, + [SMALL_STATE(5595)] = 208470, + [SMALL_STATE(5596)] = 208488, + [SMALL_STATE(5597)] = 208514, + [SMALL_STATE(5598)] = 208534, + [SMALL_STATE(5599)] = 208558, + [SMALL_STATE(5600)] = 208584, + [SMALL_STATE(5601)] = 208602, + [SMALL_STATE(5602)] = 208628, + [SMALL_STATE(5603)] = 208648, + [SMALL_STATE(5604)] = 208666, + [SMALL_STATE(5605)] = 208692, + [SMALL_STATE(5606)] = 208710, + [SMALL_STATE(5607)] = 208736, + [SMALL_STATE(5608)] = 208762, + [SMALL_STATE(5609)] = 208778, + [SMALL_STATE(5610)] = 208804, + [SMALL_STATE(5611)] = 208822, + [SMALL_STATE(5612)] = 208848, + [SMALL_STATE(5613)] = 208874, + [SMALL_STATE(5614)] = 208900, + [SMALL_STATE(5615)] = 208918, + [SMALL_STATE(5616)] = 208944, + [SMALL_STATE(5617)] = 208960, + [SMALL_STATE(5618)] = 208978, + [SMALL_STATE(5619)] = 208996, + [SMALL_STATE(5620)] = 209014, + [SMALL_STATE(5621)] = 209040, + [SMALL_STATE(5622)] = 209066, + [SMALL_STATE(5623)] = 209092, + [SMALL_STATE(5624)] = 209118, + [SMALL_STATE(5625)] = 209136, + [SMALL_STATE(5626)] = 209162, + [SMALL_STATE(5627)] = 209188, + [SMALL_STATE(5628)] = 209206, + [SMALL_STATE(5629)] = 209232, + [SMALL_STATE(5630)] = 209258, + [SMALL_STATE(5631)] = 209278, + [SMALL_STATE(5632)] = 209304, + [SMALL_STATE(5633)] = 209330, + [SMALL_STATE(5634)] = 209352, + [SMALL_STATE(5635)] = 209375, + [SMALL_STATE(5636)] = 209396, + [SMALL_STATE(5637)] = 209413, + [SMALL_STATE(5638)] = 209438, + [SMALL_STATE(5639)] = 209463, + [SMALL_STATE(5640)] = 209484, + [SMALL_STATE(5641)] = 209503, + [SMALL_STATE(5642)] = 209520, + [SMALL_STATE(5643)] = 209545, + [SMALL_STATE(5644)] = 209564, + [SMALL_STATE(5645)] = 209585, + [SMALL_STATE(5646)] = 209606, + [SMALL_STATE(5647)] = 209627, + [SMALL_STATE(5648)] = 209650, + [SMALL_STATE(5649)] = 209669, + [SMALL_STATE(5650)] = 209688, + [SMALL_STATE(5651)] = 209713, + [SMALL_STATE(5652)] = 209730, + [SMALL_STATE(5653)] = 209755, + [SMALL_STATE(5654)] = 209772, + [SMALL_STATE(5655)] = 209797, + [SMALL_STATE(5656)] = 209814, + [SMALL_STATE(5657)] = 209835, + [SMALL_STATE(5658)] = 209860, + [SMALL_STATE(5659)] = 209885, + [SMALL_STATE(5660)] = 209910, + [SMALL_STATE(5661)] = 209935, + [SMALL_STATE(5662)] = 209960, + [SMALL_STATE(5663)] = 209983, + [SMALL_STATE(5664)] = 210006, + [SMALL_STATE(5665)] = 210023, + [SMALL_STATE(5666)] = 210046, + [SMALL_STATE(5667)] = 210067, + [SMALL_STATE(5668)] = 210086, + [SMALL_STATE(5669)] = 210105, + [SMALL_STATE(5670)] = 210128, + [SMALL_STATE(5671)] = 210149, + [SMALL_STATE(5672)] = 210174, + [SMALL_STATE(5673)] = 210197, + [SMALL_STATE(5674)] = 210222, + [SMALL_STATE(5675)] = 210241, + [SMALL_STATE(5676)] = 210264, + [SMALL_STATE(5677)] = 210285, + [SMALL_STATE(5678)] = 210310, + [SMALL_STATE(5679)] = 210335, + [SMALL_STATE(5680)] = 210358, + [SMALL_STATE(5681)] = 210383, + [SMALL_STATE(5682)] = 210408, + [SMALL_STATE(5683)] = 210425, + [SMALL_STATE(5684)] = 210450, + [SMALL_STATE(5685)] = 210475, + [SMALL_STATE(5686)] = 210500, + [SMALL_STATE(5687)] = 210525, + [SMALL_STATE(5688)] = 210546, + [SMALL_STATE(5689)] = 210571, + [SMALL_STATE(5690)] = 210590, + [SMALL_STATE(5691)] = 210609, + [SMALL_STATE(5692)] = 210634, + [SMALL_STATE(5693)] = 210659, + [SMALL_STATE(5694)] = 210680, + [SMALL_STATE(5695)] = 210705, + [SMALL_STATE(5696)] = 210726, + [SMALL_STATE(5697)] = 210743, + [SMALL_STATE(5698)] = 210764, + [SMALL_STATE(5699)] = 210781, + [SMALL_STATE(5700)] = 210804, + [SMALL_STATE(5701)] = 210821, + [SMALL_STATE(5702)] = 210846, + [SMALL_STATE(5703)] = 210871, + [SMALL_STATE(5704)] = 210894, + [SMALL_STATE(5705)] = 210913, + [SMALL_STATE(5706)] = 210934, + [SMALL_STATE(5707)] = 210955, + [SMALL_STATE(5708)] = 210978, + [SMALL_STATE(5709)] = 211003, + [SMALL_STATE(5710)] = 211028, + [SMALL_STATE(5711)] = 211051, + [SMALL_STATE(5712)] = 211076, + [SMALL_STATE(5713)] = 211095, + [SMALL_STATE(5714)] = 211112, + [SMALL_STATE(5715)] = 211131, + [SMALL_STATE(5716)] = 211156, + [SMALL_STATE(5717)] = 211177, + [SMALL_STATE(5718)] = 211200, + [SMALL_STATE(5719)] = 211217, + [SMALL_STATE(5720)] = 211238, + [SMALL_STATE(5721)] = 211255, + [SMALL_STATE(5722)] = 211272, + [SMALL_STATE(5723)] = 211295, + [SMALL_STATE(5724)] = 211320, + [SMALL_STATE(5725)] = 211345, + [SMALL_STATE(5726)] = 211366, + [SMALL_STATE(5727)] = 211389, + [SMALL_STATE(5728)] = 211414, + [SMALL_STATE(5729)] = 211437, + [SMALL_STATE(5730)] = 211462, + [SMALL_STATE(5731)] = 211485, + [SMALL_STATE(5732)] = 211510, + [SMALL_STATE(5733)] = 211533, + [SMALL_STATE(5734)] = 211558, + [SMALL_STATE(5735)] = 211583, + [SMALL_STATE(5736)] = 211606, + [SMALL_STATE(5737)] = 211631, + [SMALL_STATE(5738)] = 211656, + [SMALL_STATE(5739)] = 211681, + [SMALL_STATE(5740)] = 211706, + [SMALL_STATE(5741)] = 211729, + [SMALL_STATE(5742)] = 211750, + [SMALL_STATE(5743)] = 211773, + [SMALL_STATE(5744)] = 211796, + [SMALL_STATE(5745)] = 211821, + [SMALL_STATE(5746)] = 211846, + [SMALL_STATE(5747)] = 211869, + [SMALL_STATE(5748)] = 211894, + [SMALL_STATE(5749)] = 211919, + [SMALL_STATE(5750)] = 211942, + [SMALL_STATE(5751)] = 211965, + [SMALL_STATE(5752)] = 211990, + [SMALL_STATE(5753)] = 212015, + [SMALL_STATE(5754)] = 212038, + [SMALL_STATE(5755)] = 212063, + [SMALL_STATE(5756)] = 212088, + [SMALL_STATE(5757)] = 212111, + [SMALL_STATE(5758)] = 212134, + [SMALL_STATE(5759)] = 212159, + [SMALL_STATE(5760)] = 212184, + [SMALL_STATE(5761)] = 212207, + [SMALL_STATE(5762)] = 212232, + [SMALL_STATE(5763)] = 212257, + [SMALL_STATE(5764)] = 212280, + [SMALL_STATE(5765)] = 212301, + [SMALL_STATE(5766)] = 212324, + [SMALL_STATE(5767)] = 212349, + [SMALL_STATE(5768)] = 212374, + [SMALL_STATE(5769)] = 212397, + [SMALL_STATE(5770)] = 212422, + [SMALL_STATE(5771)] = 212447, + [SMALL_STATE(5772)] = 212470, + [SMALL_STATE(5773)] = 212493, + [SMALL_STATE(5774)] = 212518, + [SMALL_STATE(5775)] = 212543, + [SMALL_STATE(5776)] = 212566, + [SMALL_STATE(5777)] = 212591, + [SMALL_STATE(5778)] = 212616, + [SMALL_STATE(5779)] = 212639, + [SMALL_STATE(5780)] = 212662, + [SMALL_STATE(5781)] = 212685, + [SMALL_STATE(5782)] = 212710, + [SMALL_STATE(5783)] = 212735, + [SMALL_STATE(5784)] = 212758, + [SMALL_STATE(5785)] = 212783, + [SMALL_STATE(5786)] = 212806, + [SMALL_STATE(5787)] = 212829, + [SMALL_STATE(5788)] = 212850, + [SMALL_STATE(5789)] = 212875, + [SMALL_STATE(5790)] = 212900, + [SMALL_STATE(5791)] = 212923, + [SMALL_STATE(5792)] = 212946, + [SMALL_STATE(5793)] = 212969, + [SMALL_STATE(5794)] = 212994, + [SMALL_STATE(5795)] = 213019, + [SMALL_STATE(5796)] = 213042, + [SMALL_STATE(5797)] = 213065, + [SMALL_STATE(5798)] = 213090, + [SMALL_STATE(5799)] = 213113, + [SMALL_STATE(5800)] = 213138, + [SMALL_STATE(5801)] = 213163, + [SMALL_STATE(5802)] = 213186, + [SMALL_STATE(5803)] = 213209, + [SMALL_STATE(5804)] = 213232, + [SMALL_STATE(5805)] = 213257, + [SMALL_STATE(5806)] = 213282, + [SMALL_STATE(5807)] = 213305, + [SMALL_STATE(5808)] = 213322, + [SMALL_STATE(5809)] = 213347, + [SMALL_STATE(5810)] = 213372, + [SMALL_STATE(5811)] = 213395, + [SMALL_STATE(5812)] = 213418, + [SMALL_STATE(5813)] = 213443, + [SMALL_STATE(5814)] = 213468, + [SMALL_STATE(5815)] = 213491, + [SMALL_STATE(5816)] = 213516, + [SMALL_STATE(5817)] = 213541, + [SMALL_STATE(5818)] = 213564, + [SMALL_STATE(5819)] = 213589, + [SMALL_STATE(5820)] = 213614, + [SMALL_STATE(5821)] = 213637, + [SMALL_STATE(5822)] = 213660, + [SMALL_STATE(5823)] = 213683, + [SMALL_STATE(5824)] = 213706, + [SMALL_STATE(5825)] = 213729, + [SMALL_STATE(5826)] = 213752, + [SMALL_STATE(5827)] = 213775, + [SMALL_STATE(5828)] = 213798, + [SMALL_STATE(5829)] = 213821, + [SMALL_STATE(5830)] = 213844, + [SMALL_STATE(5831)] = 213867, + [SMALL_STATE(5832)] = 213890, + [SMALL_STATE(5833)] = 213913, + [SMALL_STATE(5834)] = 213936, + [SMALL_STATE(5835)] = 213959, + [SMALL_STATE(5836)] = 213982, + [SMALL_STATE(5837)] = 214005, + [SMALL_STATE(5838)] = 214028, + [SMALL_STATE(5839)] = 214051, + [SMALL_STATE(5840)] = 214074, + [SMALL_STATE(5841)] = 214097, + [SMALL_STATE(5842)] = 214120, + [SMALL_STATE(5843)] = 214143, + [SMALL_STATE(5844)] = 214166, + [SMALL_STATE(5845)] = 214189, + [SMALL_STATE(5846)] = 214214, + [SMALL_STATE(5847)] = 214239, + [SMALL_STATE(5848)] = 214264, + [SMALL_STATE(5849)] = 214287, + [SMALL_STATE(5850)] = 214304, + [SMALL_STATE(5851)] = 214321, + [SMALL_STATE(5852)] = 214344, + [SMALL_STATE(5853)] = 214361, + [SMALL_STATE(5854)] = 214382, + [SMALL_STATE(5855)] = 214399, + [SMALL_STATE(5856)] = 214416, + [SMALL_STATE(5857)] = 214441, + [SMALL_STATE(5858)] = 214466, + [SMALL_STATE(5859)] = 214487, + [SMALL_STATE(5860)] = 214512, + [SMALL_STATE(5861)] = 214531, + [SMALL_STATE(5862)] = 214548, + [SMALL_STATE(5863)] = 214573, + [SMALL_STATE(5864)] = 214590, + [SMALL_STATE(5865)] = 214613, + [SMALL_STATE(5866)] = 214638, + [SMALL_STATE(5867)] = 214655, + [SMALL_STATE(5868)] = 214680, + [SMALL_STATE(5869)] = 214705, + [SMALL_STATE(5870)] = 214730, + [SMALL_STATE(5871)] = 214755, + [SMALL_STATE(5872)] = 214776, + [SMALL_STATE(5873)] = 214801, + [SMALL_STATE(5874)] = 214824, + [SMALL_STATE(5875)] = 214849, + [SMALL_STATE(5876)] = 214874, + [SMALL_STATE(5877)] = 214893, + [SMALL_STATE(5878)] = 214912, + [SMALL_STATE(5879)] = 214935, + [SMALL_STATE(5880)] = 214954, + [SMALL_STATE(5881)] = 214979, + [SMALL_STATE(5882)] = 214998, + [SMALL_STATE(5883)] = 215017, + [SMALL_STATE(5884)] = 215036, + [SMALL_STATE(5885)] = 215061, + [SMALL_STATE(5886)] = 215083, + [SMALL_STATE(5887)] = 215101, + [SMALL_STATE(5888)] = 215123, + [SMALL_STATE(5889)] = 215145, + [SMALL_STATE(5890)] = 215167, + [SMALL_STATE(5891)] = 215189, + [SMALL_STATE(5892)] = 215203, + [SMALL_STATE(5893)] = 215221, + [SMALL_STATE(5894)] = 215243, + [SMALL_STATE(5895)] = 215261, + [SMALL_STATE(5896)] = 215283, + [SMALL_STATE(5897)] = 215305, + [SMALL_STATE(5898)] = 215327, + [SMALL_STATE(5899)] = 215341, + [SMALL_STATE(5900)] = 215363, + [SMALL_STATE(5901)] = 215379, + [SMALL_STATE(5902)] = 215395, + [SMALL_STATE(5903)] = 215411, + [SMALL_STATE(5904)] = 215431, + [SMALL_STATE(5905)] = 215453, + [SMALL_STATE(5906)] = 215475, + [SMALL_STATE(5907)] = 215497, + [SMALL_STATE(5908)] = 215519, + [SMALL_STATE(5909)] = 215541, + [SMALL_STATE(5910)] = 215559, + [SMALL_STATE(5911)] = 215579, + [SMALL_STATE(5912)] = 215601, + [SMALL_STATE(5913)] = 215623, + [SMALL_STATE(5914)] = 215645, + [SMALL_STATE(5915)] = 215667, + [SMALL_STATE(5916)] = 215689, + [SMALL_STATE(5917)] = 215709, + [SMALL_STATE(5918)] = 215729, + [SMALL_STATE(5919)] = 215749, + [SMALL_STATE(5920)] = 215769, + [SMALL_STATE(5921)] = 215787, + [SMALL_STATE(5922)] = 215809, + [SMALL_STATE(5923)] = 215831, + [SMALL_STATE(5924)] = 215849, + [SMALL_STATE(5925)] = 215865, + [SMALL_STATE(5926)] = 215887, + [SMALL_STATE(5927)] = 215905, + [SMALL_STATE(5928)] = 215919, + [SMALL_STATE(5929)] = 215941, + [SMALL_STATE(5930)] = 215963, + [SMALL_STATE(5931)] = 215981, + [SMALL_STATE(5932)] = 216003, + [SMALL_STATE(5933)] = 216019, + [SMALL_STATE(5934)] = 216041, + [SMALL_STATE(5935)] = 216059, + [SMALL_STATE(5936)] = 216075, + [SMALL_STATE(5937)] = 216095, + [SMALL_STATE(5938)] = 216115, + [SMALL_STATE(5939)] = 216137, + [SMALL_STATE(5940)] = 216153, + [SMALL_STATE(5941)] = 216173, + [SMALL_STATE(5942)] = 216189, + [SMALL_STATE(5943)] = 216207, + [SMALL_STATE(5944)] = 216225, + [SMALL_STATE(5945)] = 216247, + [SMALL_STATE(5946)] = 216269, + [SMALL_STATE(5947)] = 216291, + [SMALL_STATE(5948)] = 216307, + [SMALL_STATE(5949)] = 216323, + [SMALL_STATE(5950)] = 216345, + [SMALL_STATE(5951)] = 216363, + [SMALL_STATE(5952)] = 216377, + [SMALL_STATE(5953)] = 216399, + [SMALL_STATE(5954)] = 216415, + [SMALL_STATE(5955)] = 216431, + [SMALL_STATE(5956)] = 216447, + [SMALL_STATE(5957)] = 216467, + [SMALL_STATE(5958)] = 216489, + [SMALL_STATE(5959)] = 216507, + [SMALL_STATE(5960)] = 216529, + [SMALL_STATE(5961)] = 216551, + [SMALL_STATE(5962)] = 216571, + [SMALL_STATE(5963)] = 216593, + [SMALL_STATE(5964)] = 216611, + [SMALL_STATE(5965)] = 216631, + [SMALL_STATE(5966)] = 216653, + [SMALL_STATE(5967)] = 216673, + [SMALL_STATE(5968)] = 216695, + [SMALL_STATE(5969)] = 216717, + [SMALL_STATE(5970)] = 216739, + [SMALL_STATE(5971)] = 216761, + [SMALL_STATE(5972)] = 216779, + [SMALL_STATE(5973)] = 216797, + [SMALL_STATE(5974)] = 216819, + [SMALL_STATE(5975)] = 216839, + [SMALL_STATE(5976)] = 216861, + [SMALL_STATE(5977)] = 216879, + [SMALL_STATE(5978)] = 216897, + [SMALL_STATE(5979)] = 216917, + [SMALL_STATE(5980)] = 216931, + [SMALL_STATE(5981)] = 216953, + [SMALL_STATE(5982)] = 216973, + [SMALL_STATE(5983)] = 216991, + [SMALL_STATE(5984)] = 217005, + [SMALL_STATE(5985)] = 217021, + [SMALL_STATE(5986)] = 217043, + [SMALL_STATE(5987)] = 217065, + [SMALL_STATE(5988)] = 217083, + [SMALL_STATE(5989)] = 217105, + [SMALL_STATE(5990)] = 217127, + [SMALL_STATE(5991)] = 217149, + [SMALL_STATE(5992)] = 217167, + [SMALL_STATE(5993)] = 217189, + [SMALL_STATE(5994)] = 217211, + [SMALL_STATE(5995)] = 217229, + [SMALL_STATE(5996)] = 217247, + [SMALL_STATE(5997)] = 217269, + [SMALL_STATE(5998)] = 217291, + [SMALL_STATE(5999)] = 217311, + [SMALL_STATE(6000)] = 217329, + [SMALL_STATE(6001)] = 217351, + [SMALL_STATE(6002)] = 217373, + [SMALL_STATE(6003)] = 217395, + [SMALL_STATE(6004)] = 217413, + [SMALL_STATE(6005)] = 217435, + [SMALL_STATE(6006)] = 217457, + [SMALL_STATE(6007)] = 217473, + [SMALL_STATE(6008)] = 217491, + [SMALL_STATE(6009)] = 217507, + [SMALL_STATE(6010)] = 217529, + [SMALL_STATE(6011)] = 217551, + [SMALL_STATE(6012)] = 217573, + [SMALL_STATE(6013)] = 217595, + [SMALL_STATE(6014)] = 217617, + [SMALL_STATE(6015)] = 217639, + [SMALL_STATE(6016)] = 217661, + [SMALL_STATE(6017)] = 217683, + [SMALL_STATE(6018)] = 217705, + [SMALL_STATE(6019)] = 217727, + [SMALL_STATE(6020)] = 217749, + [SMALL_STATE(6021)] = 217771, + [SMALL_STATE(6022)] = 217793, + [SMALL_STATE(6023)] = 217809, + [SMALL_STATE(6024)] = 217831, + [SMALL_STATE(6025)] = 217853, + [SMALL_STATE(6026)] = 217875, + [SMALL_STATE(6027)] = 217897, + [SMALL_STATE(6028)] = 217919, + [SMALL_STATE(6029)] = 217941, + [SMALL_STATE(6030)] = 217963, + [SMALL_STATE(6031)] = 217985, + [SMALL_STATE(6032)] = 218007, + [SMALL_STATE(6033)] = 218029, + [SMALL_STATE(6034)] = 218051, + [SMALL_STATE(6035)] = 218073, + [SMALL_STATE(6036)] = 218095, + [SMALL_STATE(6037)] = 218117, + [SMALL_STATE(6038)] = 218139, + [SMALL_STATE(6039)] = 218161, + [SMALL_STATE(6040)] = 218183, + [SMALL_STATE(6041)] = 218205, + [SMALL_STATE(6042)] = 218227, + [SMALL_STATE(6043)] = 218249, + [SMALL_STATE(6044)] = 218271, + [SMALL_STATE(6045)] = 218293, + [SMALL_STATE(6046)] = 218313, + [SMALL_STATE(6047)] = 218329, + [SMALL_STATE(6048)] = 218351, + [SMALL_STATE(6049)] = 218373, + [SMALL_STATE(6050)] = 218391, + [SMALL_STATE(6051)] = 218413, + [SMALL_STATE(6052)] = 218433, + [SMALL_STATE(6053)] = 218455, + [SMALL_STATE(6054)] = 218473, + [SMALL_STATE(6055)] = 218495, + [SMALL_STATE(6056)] = 218513, + [SMALL_STATE(6057)] = 218533, + [SMALL_STATE(6058)] = 218551, + [SMALL_STATE(6059)] = 218569, + [SMALL_STATE(6060)] = 218587, + [SMALL_STATE(6061)] = 218605, + [SMALL_STATE(6062)] = 218623, + [SMALL_STATE(6063)] = 218645, + [SMALL_STATE(6064)] = 218665, + [SMALL_STATE(6065)] = 218687, + [SMALL_STATE(6066)] = 218709, + [SMALL_STATE(6067)] = 218731, + [SMALL_STATE(6068)] = 218749, + [SMALL_STATE(6069)] = 218767, + [SMALL_STATE(6070)] = 218789, + [SMALL_STATE(6071)] = 218808, + [SMALL_STATE(6072)] = 218827, + [SMALL_STATE(6073)] = 218846, + [SMALL_STATE(6074)] = 218865, + [SMALL_STATE(6075)] = 218884, + [SMALL_STATE(6076)] = 218903, + [SMALL_STATE(6077)] = 218922, + [SMALL_STATE(6078)] = 218935, + [SMALL_STATE(6079)] = 218952, + [SMALL_STATE(6080)] = 218969, + [SMALL_STATE(6081)] = 218984, + [SMALL_STATE(6082)] = 218997, + [SMALL_STATE(6083)] = 219016, + [SMALL_STATE(6084)] = 219029, + [SMALL_STATE(6085)] = 219044, + [SMALL_STATE(6086)] = 219061, + [SMALL_STATE(6087)] = 219078, + [SMALL_STATE(6088)] = 219095, + [SMALL_STATE(6089)] = 219114, + [SMALL_STATE(6090)] = 219133, + [SMALL_STATE(6091)] = 219146, + [SMALL_STATE(6092)] = 219165, + [SMALL_STATE(6093)] = 219184, + [SMALL_STATE(6094)] = 219203, + [SMALL_STATE(6095)] = 219222, + [SMALL_STATE(6096)] = 219241, + [SMALL_STATE(6097)] = 219260, + [SMALL_STATE(6098)] = 219279, + [SMALL_STATE(6099)] = 219298, + [SMALL_STATE(6100)] = 219311, + [SMALL_STATE(6101)] = 219330, + [SMALL_STATE(6102)] = 219343, + [SMALL_STATE(6103)] = 219360, + [SMALL_STATE(6104)] = 219379, + [SMALL_STATE(6105)] = 219398, + [SMALL_STATE(6106)] = 219411, + [SMALL_STATE(6107)] = 219430, + [SMALL_STATE(6108)] = 219447, + [SMALL_STATE(6109)] = 219466, + [SMALL_STATE(6110)] = 219485, + [SMALL_STATE(6111)] = 219498, + [SMALL_STATE(6112)] = 219515, + [SMALL_STATE(6113)] = 219528, + [SMALL_STATE(6114)] = 219547, + [SMALL_STATE(6115)] = 219566, + [SMALL_STATE(6116)] = 219585, + [SMALL_STATE(6117)] = 219604, + [SMALL_STATE(6118)] = 219623, + [SMALL_STATE(6119)] = 219642, + [SMALL_STATE(6120)] = 219661, + [SMALL_STATE(6121)] = 219680, + [SMALL_STATE(6122)] = 219695, + [SMALL_STATE(6123)] = 219708, + [SMALL_STATE(6124)] = 219721, + [SMALL_STATE(6125)] = 219734, + [SMALL_STATE(6126)] = 219751, + [SMALL_STATE(6127)] = 219768, + [SMALL_STATE(6128)] = 219783, + [SMALL_STATE(6129)] = 219798, + [SMALL_STATE(6130)] = 219811, + [SMALL_STATE(6131)] = 219828, + [SMALL_STATE(6132)] = 219843, + [SMALL_STATE(6133)] = 219856, + [SMALL_STATE(6134)] = 219871, + [SMALL_STATE(6135)] = 219890, + [SMALL_STATE(6136)] = 219907, + [SMALL_STATE(6137)] = 219920, + [SMALL_STATE(6138)] = 219939, + [SMALL_STATE(6139)] = 219958, + [SMALL_STATE(6140)] = 219977, + [SMALL_STATE(6141)] = 219996, + [SMALL_STATE(6142)] = 220015, + [SMALL_STATE(6143)] = 220034, + [SMALL_STATE(6144)] = 220053, + [SMALL_STATE(6145)] = 220072, + [SMALL_STATE(6146)] = 220085, + [SMALL_STATE(6147)] = 220098, + [SMALL_STATE(6148)] = 220111, + [SMALL_STATE(6149)] = 220124, + [SMALL_STATE(6150)] = 220141, + [SMALL_STATE(6151)] = 220154, + [SMALL_STATE(6152)] = 220167, + [SMALL_STATE(6153)] = 220180, + [SMALL_STATE(6154)] = 220199, + [SMALL_STATE(6155)] = 220216, + [SMALL_STATE(6156)] = 220231, + [SMALL_STATE(6157)] = 220250, + [SMALL_STATE(6158)] = 220263, + [SMALL_STATE(6159)] = 220276, + [SMALL_STATE(6160)] = 220295, + [SMALL_STATE(6161)] = 220314, + [SMALL_STATE(6162)] = 220333, + [SMALL_STATE(6163)] = 220352, + [SMALL_STATE(6164)] = 220371, + [SMALL_STATE(6165)] = 220390, + [SMALL_STATE(6166)] = 220409, + [SMALL_STATE(6167)] = 220428, + [SMALL_STATE(6168)] = 220441, + [SMALL_STATE(6169)] = 220454, + [SMALL_STATE(6170)] = 220471, + [SMALL_STATE(6171)] = 220484, + [SMALL_STATE(6172)] = 220497, + [SMALL_STATE(6173)] = 220514, + [SMALL_STATE(6174)] = 220527, + [SMALL_STATE(6175)] = 220542, + [SMALL_STATE(6176)] = 220561, + [SMALL_STATE(6177)] = 220580, + [SMALL_STATE(6178)] = 220593, + [SMALL_STATE(6179)] = 220610, + [SMALL_STATE(6180)] = 220629, + [SMALL_STATE(6181)] = 220648, + [SMALL_STATE(6182)] = 220667, + [SMALL_STATE(6183)] = 220686, + [SMALL_STATE(6184)] = 220705, + [SMALL_STATE(6185)] = 220724, + [SMALL_STATE(6186)] = 220743, + [SMALL_STATE(6187)] = 220762, + [SMALL_STATE(6188)] = 220779, + [SMALL_STATE(6189)] = 220792, + [SMALL_STATE(6190)] = 220809, + [SMALL_STATE(6191)] = 220826, + [SMALL_STATE(6192)] = 220839, + [SMALL_STATE(6193)] = 220854, + [SMALL_STATE(6194)] = 220869, + [SMALL_STATE(6195)] = 220886, + [SMALL_STATE(6196)] = 220899, + [SMALL_STATE(6197)] = 220912, + [SMALL_STATE(6198)] = 220925, + [SMALL_STATE(6199)] = 220938, + [SMALL_STATE(6200)] = 220953, + [SMALL_STATE(6201)] = 220970, + [SMALL_STATE(6202)] = 220985, + [SMALL_STATE(6203)] = 221004, + [SMALL_STATE(6204)] = 221023, + [SMALL_STATE(6205)] = 221042, + [SMALL_STATE(6206)] = 221061, + [SMALL_STATE(6207)] = 221080, + [SMALL_STATE(6208)] = 221099, + [SMALL_STATE(6209)] = 221118, + [SMALL_STATE(6210)] = 221137, + [SMALL_STATE(6211)] = 221156, + [SMALL_STATE(6212)] = 221169, + [SMALL_STATE(6213)] = 221186, + [SMALL_STATE(6214)] = 221205, + [SMALL_STATE(6215)] = 221220, + [SMALL_STATE(6216)] = 221239, + [SMALL_STATE(6217)] = 221256, + [SMALL_STATE(6218)] = 221271, + [SMALL_STATE(6219)] = 221290, + [SMALL_STATE(6220)] = 221303, + [SMALL_STATE(6221)] = 221320, + [SMALL_STATE(6222)] = 221339, + [SMALL_STATE(6223)] = 221358, + [SMALL_STATE(6224)] = 221377, + [SMALL_STATE(6225)] = 221396, + [SMALL_STATE(6226)] = 221415, + [SMALL_STATE(6227)] = 221434, + [SMALL_STATE(6228)] = 221453, + [SMALL_STATE(6229)] = 221472, + [SMALL_STATE(6230)] = 221491, + [SMALL_STATE(6231)] = 221504, + [SMALL_STATE(6232)] = 221517, + [SMALL_STATE(6233)] = 221534, + [SMALL_STATE(6234)] = 221553, + [SMALL_STATE(6235)] = 221572, + [SMALL_STATE(6236)] = 221591, + [SMALL_STATE(6237)] = 221608, + [SMALL_STATE(6238)] = 221621, + [SMALL_STATE(6239)] = 221634, + [SMALL_STATE(6240)] = 221647, + [SMALL_STATE(6241)] = 221660, + [SMALL_STATE(6242)] = 221679, + [SMALL_STATE(6243)] = 221698, + [SMALL_STATE(6244)] = 221717, + [SMALL_STATE(6245)] = 221736, + [SMALL_STATE(6246)] = 221755, + [SMALL_STATE(6247)] = 221774, + [SMALL_STATE(6248)] = 221793, + [SMALL_STATE(6249)] = 221812, + [SMALL_STATE(6250)] = 221827, + [SMALL_STATE(6251)] = 221842, + [SMALL_STATE(6252)] = 221855, + [SMALL_STATE(6253)] = 221870, + [SMALL_STATE(6254)] = 221887, + [SMALL_STATE(6255)] = 221904, + [SMALL_STATE(6256)] = 221921, + [SMALL_STATE(6257)] = 221938, + [SMALL_STATE(6258)] = 221951, + [SMALL_STATE(6259)] = 221964, + [SMALL_STATE(6260)] = 221977, + [SMALL_STATE(6261)] = 221990, + [SMALL_STATE(6262)] = 222009, + [SMALL_STATE(6263)] = 222028, + [SMALL_STATE(6264)] = 222047, + [SMALL_STATE(6265)] = 222066, + [SMALL_STATE(6266)] = 222085, + [SMALL_STATE(6267)] = 222104, + [SMALL_STATE(6268)] = 222123, + [SMALL_STATE(6269)] = 222142, + [SMALL_STATE(6270)] = 222155, + [SMALL_STATE(6271)] = 222170, + [SMALL_STATE(6272)] = 222183, + [SMALL_STATE(6273)] = 222196, + [SMALL_STATE(6274)] = 222213, + [SMALL_STATE(6275)] = 222226, + [SMALL_STATE(6276)] = 222243, + [SMALL_STATE(6277)] = 222262, + [SMALL_STATE(6278)] = 222275, + [SMALL_STATE(6279)] = 222294, + [SMALL_STATE(6280)] = 222313, + [SMALL_STATE(6281)] = 222332, + [SMALL_STATE(6282)] = 222351, + [SMALL_STATE(6283)] = 222370, + [SMALL_STATE(6284)] = 222389, + [SMALL_STATE(6285)] = 222408, + [SMALL_STATE(6286)] = 222427, + [SMALL_STATE(6287)] = 222446, + [SMALL_STATE(6288)] = 222459, + [SMALL_STATE(6289)] = 222476, + [SMALL_STATE(6290)] = 222489, + [SMALL_STATE(6291)] = 222506, + [SMALL_STATE(6292)] = 222521, + [SMALL_STATE(6293)] = 222536, + [SMALL_STATE(6294)] = 222555, + [SMALL_STATE(6295)] = 222574, + [SMALL_STATE(6296)] = 222593, + [SMALL_STATE(6297)] = 222612, + [SMALL_STATE(6298)] = 222631, + [SMALL_STATE(6299)] = 222650, + [SMALL_STATE(6300)] = 222669, + [SMALL_STATE(6301)] = 222688, + [SMALL_STATE(6302)] = 222701, + [SMALL_STATE(6303)] = 222714, + [SMALL_STATE(6304)] = 222731, + [SMALL_STATE(6305)] = 222748, + [SMALL_STATE(6306)] = 222761, + [SMALL_STATE(6307)] = 222780, + [SMALL_STATE(6308)] = 222799, + [SMALL_STATE(6309)] = 222818, + [SMALL_STATE(6310)] = 222837, + [SMALL_STATE(6311)] = 222856, + [SMALL_STATE(6312)] = 222875, + [SMALL_STATE(6313)] = 222894, + [SMALL_STATE(6314)] = 222913, + [SMALL_STATE(6315)] = 222932, + [SMALL_STATE(6316)] = 222951, + [SMALL_STATE(6317)] = 222964, + [SMALL_STATE(6318)] = 222981, + [SMALL_STATE(6319)] = 222998, + [SMALL_STATE(6320)] = 223011, + [SMALL_STATE(6321)] = 223024, + [SMALL_STATE(6322)] = 223043, + [SMALL_STATE(6323)] = 223062, + [SMALL_STATE(6324)] = 223081, + [SMALL_STATE(6325)] = 223100, + [SMALL_STATE(6326)] = 223119, + [SMALL_STATE(6327)] = 223138, + [SMALL_STATE(6328)] = 223157, + [SMALL_STATE(6329)] = 223176, + [SMALL_STATE(6330)] = 223189, + [SMALL_STATE(6331)] = 223202, + [SMALL_STATE(6332)] = 223219, + [SMALL_STATE(6333)] = 223236, + [SMALL_STATE(6334)] = 223249, + [SMALL_STATE(6335)] = 223268, + [SMALL_STATE(6336)] = 223281, + [SMALL_STATE(6337)] = 223298, + [SMALL_STATE(6338)] = 223315, + [SMALL_STATE(6339)] = 223334, + [SMALL_STATE(6340)] = 223347, + [SMALL_STATE(6341)] = 223364, + [SMALL_STATE(6342)] = 223381, + [SMALL_STATE(6343)] = 223400, + [SMALL_STATE(6344)] = 223413, + [SMALL_STATE(6345)] = 223430, + [SMALL_STATE(6346)] = 223447, + [SMALL_STATE(6347)] = 223460, + [SMALL_STATE(6348)] = 223473, + [SMALL_STATE(6349)] = 223490, + [SMALL_STATE(6350)] = 223507, + [SMALL_STATE(6351)] = 223520, + [SMALL_STATE(6352)] = 223533, + [SMALL_STATE(6353)] = 223550, + [SMALL_STATE(6354)] = 223567, + [SMALL_STATE(6355)] = 223586, + [SMALL_STATE(6356)] = 223599, + [SMALL_STATE(6357)] = 223616, + [SMALL_STATE(6358)] = 223633, + [SMALL_STATE(6359)] = 223646, + [SMALL_STATE(6360)] = 223659, + [SMALL_STATE(6361)] = 223676, + [SMALL_STATE(6362)] = 223693, + [SMALL_STATE(6363)] = 223710, + [SMALL_STATE(6364)] = 223723, + [SMALL_STATE(6365)] = 223740, + [SMALL_STATE(6366)] = 223757, + [SMALL_STATE(6367)] = 223776, + [SMALL_STATE(6368)] = 223789, + [SMALL_STATE(6369)] = 223806, + [SMALL_STATE(6370)] = 223823, + [SMALL_STATE(6371)] = 223840, + [SMALL_STATE(6372)] = 223853, + [SMALL_STATE(6373)] = 223870, + [SMALL_STATE(6374)] = 223887, + [SMALL_STATE(6375)] = 223906, + [SMALL_STATE(6376)] = 223919, + [SMALL_STATE(6377)] = 223936, + [SMALL_STATE(6378)] = 223953, + [SMALL_STATE(6379)] = 223970, + [SMALL_STATE(6380)] = 223983, + [SMALL_STATE(6381)] = 224000, + [SMALL_STATE(6382)] = 224017, + [SMALL_STATE(6383)] = 224032, + [SMALL_STATE(6384)] = 224045, + [SMALL_STATE(6385)] = 224062, + [SMALL_STATE(6386)] = 224079, + [SMALL_STATE(6387)] = 224098, + [SMALL_STATE(6388)] = 224111, + [SMALL_STATE(6389)] = 224128, + [SMALL_STATE(6390)] = 224145, + [SMALL_STATE(6391)] = 224158, + [SMALL_STATE(6392)] = 224171, + [SMALL_STATE(6393)] = 224188, + [SMALL_STATE(6394)] = 224205, + [SMALL_STATE(6395)] = 224218, + [SMALL_STATE(6396)] = 224231, + [SMALL_STATE(6397)] = 224248, + [SMALL_STATE(6398)] = 224265, + [SMALL_STATE(6399)] = 224284, + [SMALL_STATE(6400)] = 224297, + [SMALL_STATE(6401)] = 224314, + [SMALL_STATE(6402)] = 224331, + [SMALL_STATE(6403)] = 224350, + [SMALL_STATE(6404)] = 224363, + [SMALL_STATE(6405)] = 224380, + [SMALL_STATE(6406)] = 224397, + [SMALL_STATE(6407)] = 224416, + [SMALL_STATE(6408)] = 224429, + [SMALL_STATE(6409)] = 224446, + [SMALL_STATE(6410)] = 224463, + [SMALL_STATE(6411)] = 224478, + [SMALL_STATE(6412)] = 224491, + [SMALL_STATE(6413)] = 224508, + [SMALL_STATE(6414)] = 224525, + [SMALL_STATE(6415)] = 224544, + [SMALL_STATE(6416)] = 224557, + [SMALL_STATE(6417)] = 224574, + [SMALL_STATE(6418)] = 224591, + [SMALL_STATE(6419)] = 224604, + [SMALL_STATE(6420)] = 224617, + [SMALL_STATE(6421)] = 224634, + [SMALL_STATE(6422)] = 224651, + [SMALL_STATE(6423)] = 224664, + [SMALL_STATE(6424)] = 224677, + [SMALL_STATE(6425)] = 224694, + [SMALL_STATE(6426)] = 224711, + [SMALL_STATE(6427)] = 224730, + [SMALL_STATE(6428)] = 224743, + [SMALL_STATE(6429)] = 224760, + [SMALL_STATE(6430)] = 224777, + [SMALL_STATE(6431)] = 224790, + [SMALL_STATE(6432)] = 224807, + [SMALL_STATE(6433)] = 224824, + [SMALL_STATE(6434)] = 224841, + [SMALL_STATE(6435)] = 224858, + [SMALL_STATE(6436)] = 224875, + [SMALL_STATE(6437)] = 224892, + [SMALL_STATE(6438)] = 224909, + [SMALL_STATE(6439)] = 224926, + [SMALL_STATE(6440)] = 224943, + [SMALL_STATE(6441)] = 224960, + [SMALL_STATE(6442)] = 224977, + [SMALL_STATE(6443)] = 224994, + [SMALL_STATE(6444)] = 225007, + [SMALL_STATE(6445)] = 225022, + [SMALL_STATE(6446)] = 225035, + [SMALL_STATE(6447)] = 225054, + [SMALL_STATE(6448)] = 225073, + [SMALL_STATE(6449)] = 225090, + [SMALL_STATE(6450)] = 225103, + [SMALL_STATE(6451)] = 225116, + [SMALL_STATE(6452)] = 225129, + [SMALL_STATE(6453)] = 225146, + [SMALL_STATE(6454)] = 225163, + [SMALL_STATE(6455)] = 225176, + [SMALL_STATE(6456)] = 225193, + [SMALL_STATE(6457)] = 225210, + [SMALL_STATE(6458)] = 225229, + [SMALL_STATE(6459)] = 225246, + [SMALL_STATE(6460)] = 225265, + [SMALL_STATE(6461)] = 225284, + [SMALL_STATE(6462)] = 225303, + [SMALL_STATE(6463)] = 225322, + [SMALL_STATE(6464)] = 225337, + [SMALL_STATE(6465)] = 225350, + [SMALL_STATE(6466)] = 225369, + [SMALL_STATE(6467)] = 225388, + [SMALL_STATE(6468)] = 225407, + [SMALL_STATE(6469)] = 225420, + [SMALL_STATE(6470)] = 225439, + [SMALL_STATE(6471)] = 225456, + [SMALL_STATE(6472)] = 225475, + [SMALL_STATE(6473)] = 225494, + [SMALL_STATE(6474)] = 225507, + [SMALL_STATE(6475)] = 225524, + [SMALL_STATE(6476)] = 225541, + [SMALL_STATE(6477)] = 225556, + [SMALL_STATE(6478)] = 225575, + [SMALL_STATE(6479)] = 225594, + [SMALL_STATE(6480)] = 225607, + [SMALL_STATE(6481)] = 225622, + [SMALL_STATE(6482)] = 225635, + [SMALL_STATE(6483)] = 225654, + [SMALL_STATE(6484)] = 225667, + [SMALL_STATE(6485)] = 225682, + [SMALL_STATE(6486)] = 225699, + [SMALL_STATE(6487)] = 225718, + [SMALL_STATE(6488)] = 225731, + [SMALL_STATE(6489)] = 225750, + [SMALL_STATE(6490)] = 225769, + [SMALL_STATE(6491)] = 225782, + [SMALL_STATE(6492)] = 225795, + [SMALL_STATE(6493)] = 225808, + [SMALL_STATE(6494)] = 225827, + [SMALL_STATE(6495)] = 225840, + [SMALL_STATE(6496)] = 225859, + [SMALL_STATE(6497)] = 225876, + [SMALL_STATE(6498)] = 225893, + [SMALL_STATE(6499)] = 225912, + [SMALL_STATE(6500)] = 225931, + [SMALL_STATE(6501)] = 225950, + [SMALL_STATE(6502)] = 225969, + [SMALL_STATE(6503)] = 225982, + [SMALL_STATE(6504)] = 225995, + [SMALL_STATE(6505)] = 226008, + [SMALL_STATE(6506)] = 226021, + [SMALL_STATE(6507)] = 226034, + [SMALL_STATE(6508)] = 226047, + [SMALL_STATE(6509)] = 226062, + [SMALL_STATE(6510)] = 226075, + [SMALL_STATE(6511)] = 226088, + [SMALL_STATE(6512)] = 226107, + [SMALL_STATE(6513)] = 226126, + [SMALL_STATE(6514)] = 226145, + [SMALL_STATE(6515)] = 226164, + [SMALL_STATE(6516)] = 226183, + [SMALL_STATE(6517)] = 226202, + [SMALL_STATE(6518)] = 226221, + [SMALL_STATE(6519)] = 226240, + [SMALL_STATE(6520)] = 226253, + [SMALL_STATE(6521)] = 226266, + [SMALL_STATE(6522)] = 226279, + [SMALL_STATE(6523)] = 226296, + [SMALL_STATE(6524)] = 226309, + [SMALL_STATE(6525)] = 226324, + [SMALL_STATE(6526)] = 226339, + [SMALL_STATE(6527)] = 226356, + [SMALL_STATE(6528)] = 226375, + [SMALL_STATE(6529)] = 226392, + [SMALL_STATE(6530)] = 226405, + [SMALL_STATE(6531)] = 226418, + [SMALL_STATE(6532)] = 226435, + [SMALL_STATE(6533)] = 226452, + [SMALL_STATE(6534)] = 226471, + [SMALL_STATE(6535)] = 226484, + [SMALL_STATE(6536)] = 226503, + [SMALL_STATE(6537)] = 226518, + [SMALL_STATE(6538)] = 226537, + [SMALL_STATE(6539)] = 226556, + [SMALL_STATE(6540)] = 226573, + [SMALL_STATE(6541)] = 226592, + [SMALL_STATE(6542)] = 226611, + [SMALL_STATE(6543)] = 226630, + [SMALL_STATE(6544)] = 226649, + [SMALL_STATE(6545)] = 226668, + [SMALL_STATE(6546)] = 226683, + [SMALL_STATE(6547)] = 226702, + [SMALL_STATE(6548)] = 226719, + [SMALL_STATE(6549)] = 226734, + [SMALL_STATE(6550)] = 226749, + [SMALL_STATE(6551)] = 226768, + [SMALL_STATE(6552)] = 226787, + [SMALL_STATE(6553)] = 226804, + [SMALL_STATE(6554)] = 226823, + [SMALL_STATE(6555)] = 226842, + [SMALL_STATE(6556)] = 226861, + [SMALL_STATE(6557)] = 226880, + [SMALL_STATE(6558)] = 226899, + [SMALL_STATE(6559)] = 226918, + [SMALL_STATE(6560)] = 226931, + [SMALL_STATE(6561)] = 226950, + [SMALL_STATE(6562)] = 226967, + [SMALL_STATE(6563)] = 226980, + [SMALL_STATE(6564)] = 226993, + [SMALL_STATE(6565)] = 227010, + [SMALL_STATE(6566)] = 227027, + [SMALL_STATE(6567)] = 227042, + [SMALL_STATE(6568)] = 227061, + [SMALL_STATE(6569)] = 227074, + [SMALL_STATE(6570)] = 227091, + [SMALL_STATE(6571)] = 227110, + [SMALL_STATE(6572)] = 227127, + [SMALL_STATE(6573)] = 227146, + [SMALL_STATE(6574)] = 227165, + [SMALL_STATE(6575)] = 227184, + [SMALL_STATE(6576)] = 227199, + [SMALL_STATE(6577)] = 227218, + [SMALL_STATE(6578)] = 227237, + [SMALL_STATE(6579)] = 227256, + [SMALL_STATE(6580)] = 227275, + [SMALL_STATE(6581)] = 227294, + [SMALL_STATE(6582)] = 227313, + [SMALL_STATE(6583)] = 227332, + [SMALL_STATE(6584)] = 227351, + [SMALL_STATE(6585)] = 227370, + [SMALL_STATE(6586)] = 227389, + [SMALL_STATE(6587)] = 227406, + [SMALL_STATE(6588)] = 227423, + [SMALL_STATE(6589)] = 227442, + [SMALL_STATE(6590)] = 227455, + [SMALL_STATE(6591)] = 227468, + [SMALL_STATE(6592)] = 227485, + [SMALL_STATE(6593)] = 227498, + [SMALL_STATE(6594)] = 227511, + [SMALL_STATE(6595)] = 227528, + [SMALL_STATE(6596)] = 227541, + [SMALL_STATE(6597)] = 227560, + [SMALL_STATE(6598)] = 227575, + [SMALL_STATE(6599)] = 227594, + [SMALL_STATE(6600)] = 227611, + [SMALL_STATE(6601)] = 227628, + [SMALL_STATE(6602)] = 227641, + [SMALL_STATE(6603)] = 227656, + [SMALL_STATE(6604)] = 227671, + [SMALL_STATE(6605)] = 227688, + [SMALL_STATE(6606)] = 227701, + [SMALL_STATE(6607)] = 227720, + [SMALL_STATE(6608)] = 227733, + [SMALL_STATE(6609)] = 227748, + [SMALL_STATE(6610)] = 227761, + [SMALL_STATE(6611)] = 227780, + [SMALL_STATE(6612)] = 227799, + [SMALL_STATE(6613)] = 227818, + [SMALL_STATE(6614)] = 227837, + [SMALL_STATE(6615)] = 227850, + [SMALL_STATE(6616)] = 227866, + [SMALL_STATE(6617)] = 227882, + [SMALL_STATE(6618)] = 227894, + [SMALL_STATE(6619)] = 227910, + [SMALL_STATE(6620)] = 227926, + [SMALL_STATE(6621)] = 227942, + [SMALL_STATE(6622)] = 227954, + [SMALL_STATE(6623)] = 227970, + [SMALL_STATE(6624)] = 227986, + [SMALL_STATE(6625)] = 228002, + [SMALL_STATE(6626)] = 228018, + [SMALL_STATE(6627)] = 228032, + [SMALL_STATE(6628)] = 228048, + [SMALL_STATE(6629)] = 228064, + [SMALL_STATE(6630)] = 228080, + [SMALL_STATE(6631)] = 228096, + [SMALL_STATE(6632)] = 228112, + [SMALL_STATE(6633)] = 228128, + [SMALL_STATE(6634)] = 228140, + [SMALL_STATE(6635)] = 228152, + [SMALL_STATE(6636)] = 228164, + [SMALL_STATE(6637)] = 228180, + [SMALL_STATE(6638)] = 228192, + [SMALL_STATE(6639)] = 228208, + [SMALL_STATE(6640)] = 228220, + [SMALL_STATE(6641)] = 228232, + [SMALL_STATE(6642)] = 228244, + [SMALL_STATE(6643)] = 228260, + [SMALL_STATE(6644)] = 228276, + [SMALL_STATE(6645)] = 228292, + [SMALL_STATE(6646)] = 228304, + [SMALL_STATE(6647)] = 228320, + [SMALL_STATE(6648)] = 228336, + [SMALL_STATE(6649)] = 228352, + [SMALL_STATE(6650)] = 228368, + [SMALL_STATE(6651)] = 228384, + [SMALL_STATE(6652)] = 228400, + [SMALL_STATE(6653)] = 228414, + [SMALL_STATE(6654)] = 228426, + [SMALL_STATE(6655)] = 228442, + [SMALL_STATE(6656)] = 228458, + [SMALL_STATE(6657)] = 228472, + [SMALL_STATE(6658)] = 228488, + [SMALL_STATE(6659)] = 228504, + [SMALL_STATE(6660)] = 228516, + [SMALL_STATE(6661)] = 228528, + [SMALL_STATE(6662)] = 228540, + [SMALL_STATE(6663)] = 228556, + [SMALL_STATE(6664)] = 228570, + [SMALL_STATE(6665)] = 228586, + [SMALL_STATE(6666)] = 228602, + [SMALL_STATE(6667)] = 228616, + [SMALL_STATE(6668)] = 228632, + [SMALL_STATE(6669)] = 228646, + [SMALL_STATE(6670)] = 228658, + [SMALL_STATE(6671)] = 228670, + [SMALL_STATE(6672)] = 228686, + [SMALL_STATE(6673)] = 228702, + [SMALL_STATE(6674)] = 228714, + [SMALL_STATE(6675)] = 228730, + [SMALL_STATE(6676)] = 228746, + [SMALL_STATE(6677)] = 228762, + [SMALL_STATE(6678)] = 228778, + [SMALL_STATE(6679)] = 228794, + [SMALL_STATE(6680)] = 228810, + [SMALL_STATE(6681)] = 228826, + [SMALL_STATE(6682)] = 228842, + [SMALL_STATE(6683)] = 228858, + [SMALL_STATE(6684)] = 228872, + [SMALL_STATE(6685)] = 228886, + [SMALL_STATE(6686)] = 228902, + [SMALL_STATE(6687)] = 228914, + [SMALL_STATE(6688)] = 228930, + [SMALL_STATE(6689)] = 228946, + [SMALL_STATE(6690)] = 228962, + [SMALL_STATE(6691)] = 228974, + [SMALL_STATE(6692)] = 228990, + [SMALL_STATE(6693)] = 229006, + [SMALL_STATE(6694)] = 229020, + [SMALL_STATE(6695)] = 229036, + [SMALL_STATE(6696)] = 229052, + [SMALL_STATE(6697)] = 229068, + [SMALL_STATE(6698)] = 229084, + [SMALL_STATE(6699)] = 229100, + [SMALL_STATE(6700)] = 229116, + [SMALL_STATE(6701)] = 229132, + [SMALL_STATE(6702)] = 229144, + [SMALL_STATE(6703)] = 229156, + [SMALL_STATE(6704)] = 229172, + [SMALL_STATE(6705)] = 229188, + [SMALL_STATE(6706)] = 229204, + [SMALL_STATE(6707)] = 229220, + [SMALL_STATE(6708)] = 229232, + [SMALL_STATE(6709)] = 229244, + [SMALL_STATE(6710)] = 229258, + [SMALL_STATE(6711)] = 229274, + [SMALL_STATE(6712)] = 229290, + [SMALL_STATE(6713)] = 229302, + [SMALL_STATE(6714)] = 229318, + [SMALL_STATE(6715)] = 229334, + [SMALL_STATE(6716)] = 229350, + [SMALL_STATE(6717)] = 229366, + [SMALL_STATE(6718)] = 229382, + [SMALL_STATE(6719)] = 229398, + [SMALL_STATE(6720)] = 229414, + [SMALL_STATE(6721)] = 229430, + [SMALL_STATE(6722)] = 229446, + [SMALL_STATE(6723)] = 229462, + [SMALL_STATE(6724)] = 229478, + [SMALL_STATE(6725)] = 229494, + [SMALL_STATE(6726)] = 229510, + [SMALL_STATE(6727)] = 229526, + [SMALL_STATE(6728)] = 229542, + [SMALL_STATE(6729)] = 229554, + [SMALL_STATE(6730)] = 229570, + [SMALL_STATE(6731)] = 229586, + [SMALL_STATE(6732)] = 229602, + [SMALL_STATE(6733)] = 229618, + [SMALL_STATE(6734)] = 229634, + [SMALL_STATE(6735)] = 229646, + [SMALL_STATE(6736)] = 229662, + [SMALL_STATE(6737)] = 229678, + [SMALL_STATE(6738)] = 229694, + [SMALL_STATE(6739)] = 229710, + [SMALL_STATE(6740)] = 229722, + [SMALL_STATE(6741)] = 229738, + [SMALL_STATE(6742)] = 229754, + [SMALL_STATE(6743)] = 229768, + [SMALL_STATE(6744)] = 229784, + [SMALL_STATE(6745)] = 229796, + [SMALL_STATE(6746)] = 229808, + [SMALL_STATE(6747)] = 229820, + [SMALL_STATE(6748)] = 229836, + [SMALL_STATE(6749)] = 229850, + [SMALL_STATE(6750)] = 229866, + [SMALL_STATE(6751)] = 229882, + [SMALL_STATE(6752)] = 229898, + [SMALL_STATE(6753)] = 229914, + [SMALL_STATE(6754)] = 229930, + [SMALL_STATE(6755)] = 229946, + [SMALL_STATE(6756)] = 229958, + [SMALL_STATE(6757)] = 229974, + [SMALL_STATE(6758)] = 229990, + [SMALL_STATE(6759)] = 230002, + [SMALL_STATE(6760)] = 230018, + [SMALL_STATE(6761)] = 230034, + [SMALL_STATE(6762)] = 230050, + [SMALL_STATE(6763)] = 230066, + [SMALL_STATE(6764)] = 230080, + [SMALL_STATE(6765)] = 230096, + [SMALL_STATE(6766)] = 230112, + [SMALL_STATE(6767)] = 230124, + [SMALL_STATE(6768)] = 230140, + [SMALL_STATE(6769)] = 230156, + [SMALL_STATE(6770)] = 230172, + [SMALL_STATE(6771)] = 230184, + [SMALL_STATE(6772)] = 230196, + [SMALL_STATE(6773)] = 230208, + [SMALL_STATE(6774)] = 230224, + [SMALL_STATE(6775)] = 230236, + [SMALL_STATE(6776)] = 230252, + [SMALL_STATE(6777)] = 230264, + [SMALL_STATE(6778)] = 230280, + [SMALL_STATE(6779)] = 230296, + [SMALL_STATE(6780)] = 230312, + [SMALL_STATE(6781)] = 230324, + [SMALL_STATE(6782)] = 230340, + [SMALL_STATE(6783)] = 230356, + [SMALL_STATE(6784)] = 230372, + [SMALL_STATE(6785)] = 230384, + [SMALL_STATE(6786)] = 230400, + [SMALL_STATE(6787)] = 230412, + [SMALL_STATE(6788)] = 230428, + [SMALL_STATE(6789)] = 230444, + [SMALL_STATE(6790)] = 230458, + [SMALL_STATE(6791)] = 230474, + [SMALL_STATE(6792)] = 230486, + [SMALL_STATE(6793)] = 230502, + [SMALL_STATE(6794)] = 230514, + [SMALL_STATE(6795)] = 230526, + [SMALL_STATE(6796)] = 230542, + [SMALL_STATE(6797)] = 230558, + [SMALL_STATE(6798)] = 230574, + [SMALL_STATE(6799)] = 230590, + [SMALL_STATE(6800)] = 230606, + [SMALL_STATE(6801)] = 230622, + [SMALL_STATE(6802)] = 230638, + [SMALL_STATE(6803)] = 230654, + [SMALL_STATE(6804)] = 230670, + [SMALL_STATE(6805)] = 230686, + [SMALL_STATE(6806)] = 230700, + [SMALL_STATE(6807)] = 230716, + [SMALL_STATE(6808)] = 230732, + [SMALL_STATE(6809)] = 230744, + [SMALL_STATE(6810)] = 230760, + [SMALL_STATE(6811)] = 230772, + [SMALL_STATE(6812)] = 230788, + [SMALL_STATE(6813)] = 230800, + [SMALL_STATE(6814)] = 230816, + [SMALL_STATE(6815)] = 230828, + [SMALL_STATE(6816)] = 230844, + [SMALL_STATE(6817)] = 230860, + [SMALL_STATE(6818)] = 230876, + [SMALL_STATE(6819)] = 230892, + [SMALL_STATE(6820)] = 230904, + [SMALL_STATE(6821)] = 230920, + [SMALL_STATE(6822)] = 230936, + [SMALL_STATE(6823)] = 230952, + [SMALL_STATE(6824)] = 230968, + [SMALL_STATE(6825)] = 230984, + [SMALL_STATE(6826)] = 230996, + [SMALL_STATE(6827)] = 231008, + [SMALL_STATE(6828)] = 231024, + [SMALL_STATE(6829)] = 231036, + [SMALL_STATE(6830)] = 231052, + [SMALL_STATE(6831)] = 231068, + [SMALL_STATE(6832)] = 231084, + [SMALL_STATE(6833)] = 231100, + [SMALL_STATE(6834)] = 231112, + [SMALL_STATE(6835)] = 231124, + [SMALL_STATE(6836)] = 231140, + [SMALL_STATE(6837)] = 231156, + [SMALL_STATE(6838)] = 231172, + [SMALL_STATE(6839)] = 231188, + [SMALL_STATE(6840)] = 231202, + [SMALL_STATE(6841)] = 231214, + [SMALL_STATE(6842)] = 231226, + [SMALL_STATE(6843)] = 231238, + [SMALL_STATE(6844)] = 231250, + [SMALL_STATE(6845)] = 231266, + [SMALL_STATE(6846)] = 231278, + [SMALL_STATE(6847)] = 231294, + [SMALL_STATE(6848)] = 231306, + [SMALL_STATE(6849)] = 231322, + [SMALL_STATE(6850)] = 231338, + [SMALL_STATE(6851)] = 231354, + [SMALL_STATE(6852)] = 231370, + [SMALL_STATE(6853)] = 231384, + [SMALL_STATE(6854)] = 231400, + [SMALL_STATE(6855)] = 231416, + [SMALL_STATE(6856)] = 231432, + [SMALL_STATE(6857)] = 231444, + [SMALL_STATE(6858)] = 231456, + [SMALL_STATE(6859)] = 231470, + [SMALL_STATE(6860)] = 231484, + [SMALL_STATE(6861)] = 231500, + [SMALL_STATE(6862)] = 231516, + [SMALL_STATE(6863)] = 231532, + [SMALL_STATE(6864)] = 231548, + [SMALL_STATE(6865)] = 231564, + [SMALL_STATE(6866)] = 231580, + [SMALL_STATE(6867)] = 231596, + [SMALL_STATE(6868)] = 231612, + [SMALL_STATE(6869)] = 231628, + [SMALL_STATE(6870)] = 231644, + [SMALL_STATE(6871)] = 231660, + [SMALL_STATE(6872)] = 231676, + [SMALL_STATE(6873)] = 231692, + [SMALL_STATE(6874)] = 231706, + [SMALL_STATE(6875)] = 231722, + [SMALL_STATE(6876)] = 231738, + [SMALL_STATE(6877)] = 231754, + [SMALL_STATE(6878)] = 231770, + [SMALL_STATE(6879)] = 231786, + [SMALL_STATE(6880)] = 231802, + [SMALL_STATE(6881)] = 231818, + [SMALL_STATE(6882)] = 231834, + [SMALL_STATE(6883)] = 231850, + [SMALL_STATE(6884)] = 231866, + [SMALL_STATE(6885)] = 231882, + [SMALL_STATE(6886)] = 231898, + [SMALL_STATE(6887)] = 231914, + [SMALL_STATE(6888)] = 231930, + [SMALL_STATE(6889)] = 231946, + [SMALL_STATE(6890)] = 231958, + [SMALL_STATE(6891)] = 231970, + [SMALL_STATE(6892)] = 231986, + [SMALL_STATE(6893)] = 232002, + [SMALL_STATE(6894)] = 232014, + [SMALL_STATE(6895)] = 232030, + [SMALL_STATE(6896)] = 232042, + [SMALL_STATE(6897)] = 232054, + [SMALL_STATE(6898)] = 232066, + [SMALL_STATE(6899)] = 232082, + [SMALL_STATE(6900)] = 232096, + [SMALL_STATE(6901)] = 232108, + [SMALL_STATE(6902)] = 232122, + [SMALL_STATE(6903)] = 232136, + [SMALL_STATE(6904)] = 232150, + [SMALL_STATE(6905)] = 232166, + [SMALL_STATE(6906)] = 232182, + [SMALL_STATE(6907)] = 232194, + [SMALL_STATE(6908)] = 232206, + [SMALL_STATE(6909)] = 232218, + [SMALL_STATE(6910)] = 232230, + [SMALL_STATE(6911)] = 232242, + [SMALL_STATE(6912)] = 232258, + [SMALL_STATE(6913)] = 232270, + [SMALL_STATE(6914)] = 232284, + [SMALL_STATE(6915)] = 232296, + [SMALL_STATE(6916)] = 232308, + [SMALL_STATE(6917)] = 232320, + [SMALL_STATE(6918)] = 232336, + [SMALL_STATE(6919)] = 232350, + [SMALL_STATE(6920)] = 232366, + [SMALL_STATE(6921)] = 232382, + [SMALL_STATE(6922)] = 232398, + [SMALL_STATE(6923)] = 232414, + [SMALL_STATE(6924)] = 232430, + [SMALL_STATE(6925)] = 232442, + [SMALL_STATE(6926)] = 232458, + [SMALL_STATE(6927)] = 232472, + [SMALL_STATE(6928)] = 232488, + [SMALL_STATE(6929)] = 232500, + [SMALL_STATE(6930)] = 232516, + [SMALL_STATE(6931)] = 232530, + [SMALL_STATE(6932)] = 232542, + [SMALL_STATE(6933)] = 232558, + [SMALL_STATE(6934)] = 232574, + [SMALL_STATE(6935)] = 232590, + [SMALL_STATE(6936)] = 232606, + [SMALL_STATE(6937)] = 232622, + [SMALL_STATE(6938)] = 232638, + [SMALL_STATE(6939)] = 232654, + [SMALL_STATE(6940)] = 232670, + [SMALL_STATE(6941)] = 232686, + [SMALL_STATE(6942)] = 232698, + [SMALL_STATE(6943)] = 232710, + [SMALL_STATE(6944)] = 232722, + [SMALL_STATE(6945)] = 232734, + [SMALL_STATE(6946)] = 232746, + [SMALL_STATE(6947)] = 232762, + [SMALL_STATE(6948)] = 232778, + [SMALL_STATE(6949)] = 232790, + [SMALL_STATE(6950)] = 232802, + [SMALL_STATE(6951)] = 232816, + [SMALL_STATE(6952)] = 232828, + [SMALL_STATE(6953)] = 232844, + [SMALL_STATE(6954)] = 232860, + [SMALL_STATE(6955)] = 232876, + [SMALL_STATE(6956)] = 232892, + [SMALL_STATE(6957)] = 232904, + [SMALL_STATE(6958)] = 232916, + [SMALL_STATE(6959)] = 232932, + [SMALL_STATE(6960)] = 232948, + [SMALL_STATE(6961)] = 232964, + [SMALL_STATE(6962)] = 232976, + [SMALL_STATE(6963)] = 232992, + [SMALL_STATE(6964)] = 233008, + [SMALL_STATE(6965)] = 233024, + [SMALL_STATE(6966)] = 233036, + [SMALL_STATE(6967)] = 233052, + [SMALL_STATE(6968)] = 233068, + [SMALL_STATE(6969)] = 233084, + [SMALL_STATE(6970)] = 233100, + [SMALL_STATE(6971)] = 233114, + [SMALL_STATE(6972)] = 233128, + [SMALL_STATE(6973)] = 233144, + [SMALL_STATE(6974)] = 233156, + [SMALL_STATE(6975)] = 233170, + [SMALL_STATE(6976)] = 233184, + [SMALL_STATE(6977)] = 233196, + [SMALL_STATE(6978)] = 233212, + [SMALL_STATE(6979)] = 233228, + [SMALL_STATE(6980)] = 233240, + [SMALL_STATE(6981)] = 233252, + [SMALL_STATE(6982)] = 233264, + [SMALL_STATE(6983)] = 233276, + [SMALL_STATE(6984)] = 233288, + [SMALL_STATE(6985)] = 233304, + [SMALL_STATE(6986)] = 233316, + [SMALL_STATE(6987)] = 233332, + [SMALL_STATE(6988)] = 233348, + [SMALL_STATE(6989)] = 233360, + [SMALL_STATE(6990)] = 233372, + [SMALL_STATE(6991)] = 233388, + [SMALL_STATE(6992)] = 233404, + [SMALL_STATE(6993)] = 233420, + [SMALL_STATE(6994)] = 233436, + [SMALL_STATE(6995)] = 233452, + [SMALL_STATE(6996)] = 233468, + [SMALL_STATE(6997)] = 233484, + [SMALL_STATE(6998)] = 233500, + [SMALL_STATE(6999)] = 233516, + [SMALL_STATE(7000)] = 233532, + [SMALL_STATE(7001)] = 233548, + [SMALL_STATE(7002)] = 233562, + [SMALL_STATE(7003)] = 233578, + [SMALL_STATE(7004)] = 233594, + [SMALL_STATE(7005)] = 233610, + [SMALL_STATE(7006)] = 233626, + [SMALL_STATE(7007)] = 233640, + [SMALL_STATE(7008)] = 233656, + [SMALL_STATE(7009)] = 233672, + [SMALL_STATE(7010)] = 233686, + [SMALL_STATE(7011)] = 233700, + [SMALL_STATE(7012)] = 233716, + [SMALL_STATE(7013)] = 233728, + [SMALL_STATE(7014)] = 233744, + [SMALL_STATE(7015)] = 233760, + [SMALL_STATE(7016)] = 233776, + [SMALL_STATE(7017)] = 233792, + [SMALL_STATE(7018)] = 233808, + [SMALL_STATE(7019)] = 233820, + [SMALL_STATE(7020)] = 233836, + [SMALL_STATE(7021)] = 233852, + [SMALL_STATE(7022)] = 233866, + [SMALL_STATE(7023)] = 233878, + [SMALL_STATE(7024)] = 233894, + [SMALL_STATE(7025)] = 233908, + [SMALL_STATE(7026)] = 233922, + [SMALL_STATE(7027)] = 233934, + [SMALL_STATE(7028)] = 233950, + [SMALL_STATE(7029)] = 233964, + [SMALL_STATE(7030)] = 233980, + [SMALL_STATE(7031)] = 233996, + [SMALL_STATE(7032)] = 234012, + [SMALL_STATE(7033)] = 234028, + [SMALL_STATE(7034)] = 234044, + [SMALL_STATE(7035)] = 234058, + [SMALL_STATE(7036)] = 234072, + [SMALL_STATE(7037)] = 234084, + [SMALL_STATE(7038)] = 234100, + [SMALL_STATE(7039)] = 234116, + [SMALL_STATE(7040)] = 234132, + [SMALL_STATE(7041)] = 234148, + [SMALL_STATE(7042)] = 234164, + [SMALL_STATE(7043)] = 234178, + [SMALL_STATE(7044)] = 234192, + [SMALL_STATE(7045)] = 234204, + [SMALL_STATE(7046)] = 234220, + [SMALL_STATE(7047)] = 234236, + [SMALL_STATE(7048)] = 234252, + [SMALL_STATE(7049)] = 234268, + [SMALL_STATE(7050)] = 234282, + [SMALL_STATE(7051)] = 234294, + [SMALL_STATE(7052)] = 234308, + [SMALL_STATE(7053)] = 234324, + [SMALL_STATE(7054)] = 234340, + [SMALL_STATE(7055)] = 234354, + [SMALL_STATE(7056)] = 234370, + [SMALL_STATE(7057)] = 234386, + [SMALL_STATE(7058)] = 234400, + [SMALL_STATE(7059)] = 234416, + [SMALL_STATE(7060)] = 234430, + [SMALL_STATE(7061)] = 234446, + [SMALL_STATE(7062)] = 234462, + [SMALL_STATE(7063)] = 234478, + [SMALL_STATE(7064)] = 234494, + [SMALL_STATE(7065)] = 234508, + [SMALL_STATE(7066)] = 234522, + [SMALL_STATE(7067)] = 234538, + [SMALL_STATE(7068)] = 234554, + [SMALL_STATE(7069)] = 234570, + [SMALL_STATE(7070)] = 234586, + [SMALL_STATE(7071)] = 234600, + [SMALL_STATE(7072)] = 234614, + [SMALL_STATE(7073)] = 234626, + [SMALL_STATE(7074)] = 234640, + [SMALL_STATE(7075)] = 234656, + [SMALL_STATE(7076)] = 234672, + [SMALL_STATE(7077)] = 234688, + [SMALL_STATE(7078)] = 234704, + [SMALL_STATE(7079)] = 234718, + [SMALL_STATE(7080)] = 234730, + [SMALL_STATE(7081)] = 234744, + [SMALL_STATE(7082)] = 234760, + [SMALL_STATE(7083)] = 234776, + [SMALL_STATE(7084)] = 234792, + [SMALL_STATE(7085)] = 234808, + [SMALL_STATE(7086)] = 234824, + [SMALL_STATE(7087)] = 234838, + [SMALL_STATE(7088)] = 234852, + [SMALL_STATE(7089)] = 234868, + [SMALL_STATE(7090)] = 234884, + [SMALL_STATE(7091)] = 234900, + [SMALL_STATE(7092)] = 234916, + [SMALL_STATE(7093)] = 234932, + [SMALL_STATE(7094)] = 234946, + [SMALL_STATE(7095)] = 234960, + [SMALL_STATE(7096)] = 234974, + [SMALL_STATE(7097)] = 234986, + [SMALL_STATE(7098)] = 235002, + [SMALL_STATE(7099)] = 235018, + [SMALL_STATE(7100)] = 235034, + [SMALL_STATE(7101)] = 235050, + [SMALL_STATE(7102)] = 235066, + [SMALL_STATE(7103)] = 235080, + [SMALL_STATE(7104)] = 235094, + [SMALL_STATE(7105)] = 235106, + [SMALL_STATE(7106)] = 235122, + [SMALL_STATE(7107)] = 235138, + [SMALL_STATE(7108)] = 235154, + [SMALL_STATE(7109)] = 235170, + [SMALL_STATE(7110)] = 235184, + [SMALL_STATE(7111)] = 235198, + [SMALL_STATE(7112)] = 235214, + [SMALL_STATE(7113)] = 235230, + [SMALL_STATE(7114)] = 235246, + [SMALL_STATE(7115)] = 235262, + [SMALL_STATE(7116)] = 235278, + [SMALL_STATE(7117)] = 235294, + [SMALL_STATE(7118)] = 235308, + [SMALL_STATE(7119)] = 235322, + [SMALL_STATE(7120)] = 235338, + [SMALL_STATE(7121)] = 235354, + [SMALL_STATE(7122)] = 235370, + [SMALL_STATE(7123)] = 235386, + [SMALL_STATE(7124)] = 235402, + [SMALL_STATE(7125)] = 235416, + [SMALL_STATE(7126)] = 235430, + [SMALL_STATE(7127)] = 235446, + [SMALL_STATE(7128)] = 235462, + [SMALL_STATE(7129)] = 235478, + [SMALL_STATE(7130)] = 235490, + [SMALL_STATE(7131)] = 235506, + [SMALL_STATE(7132)] = 235522, + [SMALL_STATE(7133)] = 235536, + [SMALL_STATE(7134)] = 235550, + [SMALL_STATE(7135)] = 235566, + [SMALL_STATE(7136)] = 235582, + [SMALL_STATE(7137)] = 235598, + [SMALL_STATE(7138)] = 235614, + [SMALL_STATE(7139)] = 235628, + [SMALL_STATE(7140)] = 235642, + [SMALL_STATE(7141)] = 235658, + [SMALL_STATE(7142)] = 235674, + [SMALL_STATE(7143)] = 235690, + [SMALL_STATE(7144)] = 235706, + [SMALL_STATE(7145)] = 235720, + [SMALL_STATE(7146)] = 235734, + [SMALL_STATE(7147)] = 235750, + [SMALL_STATE(7148)] = 235766, + [SMALL_STATE(7149)] = 235782, + [SMALL_STATE(7150)] = 235798, + [SMALL_STATE(7151)] = 235814, + [SMALL_STATE(7152)] = 235828, + [SMALL_STATE(7153)] = 235842, + [SMALL_STATE(7154)] = 235858, + [SMALL_STATE(7155)] = 235874, + [SMALL_STATE(7156)] = 235890, + [SMALL_STATE(7157)] = 235906, + [SMALL_STATE(7158)] = 235922, + [SMALL_STATE(7159)] = 235938, + [SMALL_STATE(7160)] = 235954, + [SMALL_STATE(7161)] = 235970, + [SMALL_STATE(7162)] = 235986, + [SMALL_STATE(7163)] = 236002, + [SMALL_STATE(7164)] = 236018, + [SMALL_STATE(7165)] = 236030, + [SMALL_STATE(7166)] = 236046, + [SMALL_STATE(7167)] = 236058, + [SMALL_STATE(7168)] = 236074, + [SMALL_STATE(7169)] = 236086, + [SMALL_STATE(7170)] = 236098, + [SMALL_STATE(7171)] = 236114, + [SMALL_STATE(7172)] = 236128, + [SMALL_STATE(7173)] = 236144, + [SMALL_STATE(7174)] = 236156, + [SMALL_STATE(7175)] = 236172, + [SMALL_STATE(7176)] = 236184, + [SMALL_STATE(7177)] = 236198, + [SMALL_STATE(7178)] = 236214, + [SMALL_STATE(7179)] = 236230, + [SMALL_STATE(7180)] = 236242, + [SMALL_STATE(7181)] = 236256, + [SMALL_STATE(7182)] = 236272, + [SMALL_STATE(7183)] = 236288, + [SMALL_STATE(7184)] = 236304, + [SMALL_STATE(7185)] = 236316, + [SMALL_STATE(7186)] = 236328, + [SMALL_STATE(7187)] = 236344, + [SMALL_STATE(7188)] = 236357, + [SMALL_STATE(7189)] = 236370, + [SMALL_STATE(7190)] = 236383, + [SMALL_STATE(7191)] = 236396, + [SMALL_STATE(7192)] = 236409, + [SMALL_STATE(7193)] = 236422, + [SMALL_STATE(7194)] = 236435, + [SMALL_STATE(7195)] = 236448, + [SMALL_STATE(7196)] = 236461, + [SMALL_STATE(7197)] = 236474, + [SMALL_STATE(7198)] = 236487, + [SMALL_STATE(7199)] = 236500, + [SMALL_STATE(7200)] = 236513, + [SMALL_STATE(7201)] = 236526, + [SMALL_STATE(7202)] = 236537, + [SMALL_STATE(7203)] = 236550, + [SMALL_STATE(7204)] = 236563, + [SMALL_STATE(7205)] = 236576, + [SMALL_STATE(7206)] = 236589, + [SMALL_STATE(7207)] = 236602, + [SMALL_STATE(7208)] = 236615, + [SMALL_STATE(7209)] = 236628, + [SMALL_STATE(7210)] = 236641, + [SMALL_STATE(7211)] = 236654, + [SMALL_STATE(7212)] = 236667, + [SMALL_STATE(7213)] = 236680, + [SMALL_STATE(7214)] = 236693, + [SMALL_STATE(7215)] = 236706, + [SMALL_STATE(7216)] = 236719, + [SMALL_STATE(7217)] = 236732, + [SMALL_STATE(7218)] = 236745, + [SMALL_STATE(7219)] = 236758, + [SMALL_STATE(7220)] = 236771, + [SMALL_STATE(7221)] = 236784, + [SMALL_STATE(7222)] = 236795, + [SMALL_STATE(7223)] = 236808, + [SMALL_STATE(7224)] = 236821, + [SMALL_STATE(7225)] = 236834, + [SMALL_STATE(7226)] = 236847, + [SMALL_STATE(7227)] = 236860, + [SMALL_STATE(7228)] = 236873, + [SMALL_STATE(7229)] = 236886, + [SMALL_STATE(7230)] = 236899, + [SMALL_STATE(7231)] = 236912, + [SMALL_STATE(7232)] = 236925, + [SMALL_STATE(7233)] = 236938, + [SMALL_STATE(7234)] = 236951, + [SMALL_STATE(7235)] = 236964, + [SMALL_STATE(7236)] = 236975, + [SMALL_STATE(7237)] = 236988, + [SMALL_STATE(7238)] = 237001, + [SMALL_STATE(7239)] = 237014, + [SMALL_STATE(7240)] = 237027, + [SMALL_STATE(7241)] = 237040, + [SMALL_STATE(7242)] = 237053, + [SMALL_STATE(7243)] = 237066, + [SMALL_STATE(7244)] = 237079, + [SMALL_STATE(7245)] = 237092, + [SMALL_STATE(7246)] = 237105, + [SMALL_STATE(7247)] = 237118, + [SMALL_STATE(7248)] = 237131, + [SMALL_STATE(7249)] = 237144, + [SMALL_STATE(7250)] = 237157, + [SMALL_STATE(7251)] = 237170, + [SMALL_STATE(7252)] = 237183, + [SMALL_STATE(7253)] = 237196, + [SMALL_STATE(7254)] = 237209, + [SMALL_STATE(7255)] = 237222, + [SMALL_STATE(7256)] = 237235, + [SMALL_STATE(7257)] = 237248, + [SMALL_STATE(7258)] = 237261, + [SMALL_STATE(7259)] = 237274, + [SMALL_STATE(7260)] = 237287, + [SMALL_STATE(7261)] = 237300, + [SMALL_STATE(7262)] = 237313, + [SMALL_STATE(7263)] = 237326, + [SMALL_STATE(7264)] = 237339, + [SMALL_STATE(7265)] = 237352, + [SMALL_STATE(7266)] = 237365, + [SMALL_STATE(7267)] = 237378, + [SMALL_STATE(7268)] = 237391, + [SMALL_STATE(7269)] = 237402, + [SMALL_STATE(7270)] = 237415, + [SMALL_STATE(7271)] = 237428, + [SMALL_STATE(7272)] = 237441, + [SMALL_STATE(7273)] = 237454, + [SMALL_STATE(7274)] = 237467, + [SMALL_STATE(7275)] = 237480, + [SMALL_STATE(7276)] = 237493, + [SMALL_STATE(7277)] = 237506, + [SMALL_STATE(7278)] = 237519, + [SMALL_STATE(7279)] = 237532, + [SMALL_STATE(7280)] = 237545, + [SMALL_STATE(7281)] = 237558, + [SMALL_STATE(7282)] = 237571, + [SMALL_STATE(7283)] = 237584, + [SMALL_STATE(7284)] = 237597, + [SMALL_STATE(7285)] = 237610, + [SMALL_STATE(7286)] = 237623, + [SMALL_STATE(7287)] = 237636, + [SMALL_STATE(7288)] = 237649, + [SMALL_STATE(7289)] = 237662, + [SMALL_STATE(7290)] = 237675, + [SMALL_STATE(7291)] = 237688, + [SMALL_STATE(7292)] = 237701, + [SMALL_STATE(7293)] = 237714, + [SMALL_STATE(7294)] = 237727, + [SMALL_STATE(7295)] = 237740, + [SMALL_STATE(7296)] = 237753, + [SMALL_STATE(7297)] = 237766, + [SMALL_STATE(7298)] = 237779, + [SMALL_STATE(7299)] = 237792, + [SMALL_STATE(7300)] = 237805, + [SMALL_STATE(7301)] = 237818, + [SMALL_STATE(7302)] = 237831, + [SMALL_STATE(7303)] = 237844, + [SMALL_STATE(7304)] = 237857, + [SMALL_STATE(7305)] = 237870, + [SMALL_STATE(7306)] = 237883, + [SMALL_STATE(7307)] = 237896, + [SMALL_STATE(7308)] = 237909, + [SMALL_STATE(7309)] = 237922, + [SMALL_STATE(7310)] = 237935, + [SMALL_STATE(7311)] = 237948, + [SMALL_STATE(7312)] = 237961, + [SMALL_STATE(7313)] = 237974, + [SMALL_STATE(7314)] = 237987, + [SMALL_STATE(7315)] = 238000, + [SMALL_STATE(7316)] = 238013, + [SMALL_STATE(7317)] = 238026, + [SMALL_STATE(7318)] = 238039, + [SMALL_STATE(7319)] = 238052, + [SMALL_STATE(7320)] = 238065, + [SMALL_STATE(7321)] = 238078, + [SMALL_STATE(7322)] = 238091, + [SMALL_STATE(7323)] = 238104, + [SMALL_STATE(7324)] = 238117, + [SMALL_STATE(7325)] = 238130, + [SMALL_STATE(7326)] = 238141, + [SMALL_STATE(7327)] = 238154, + [SMALL_STATE(7328)] = 238167, + [SMALL_STATE(7329)] = 238180, + [SMALL_STATE(7330)] = 238193, + [SMALL_STATE(7331)] = 238206, + [SMALL_STATE(7332)] = 238219, + [SMALL_STATE(7333)] = 238232, + [SMALL_STATE(7334)] = 238245, + [SMALL_STATE(7335)] = 238258, + [SMALL_STATE(7336)] = 238271, + [SMALL_STATE(7337)] = 238284, + [SMALL_STATE(7338)] = 238297, + [SMALL_STATE(7339)] = 238308, + [SMALL_STATE(7340)] = 238321, + [SMALL_STATE(7341)] = 238334, + [SMALL_STATE(7342)] = 238347, + [SMALL_STATE(7343)] = 238360, + [SMALL_STATE(7344)] = 238373, + [SMALL_STATE(7345)] = 238386, + [SMALL_STATE(7346)] = 238399, + [SMALL_STATE(7347)] = 238412, + [SMALL_STATE(7348)] = 238425, + [SMALL_STATE(7349)] = 238438, + [SMALL_STATE(7350)] = 238451, + [SMALL_STATE(7351)] = 238464, + [SMALL_STATE(7352)] = 238477, + [SMALL_STATE(7353)] = 238490, + [SMALL_STATE(7354)] = 238501, + [SMALL_STATE(7355)] = 238514, + [SMALL_STATE(7356)] = 238527, + [SMALL_STATE(7357)] = 238540, + [SMALL_STATE(7358)] = 238553, + [SMALL_STATE(7359)] = 238566, + [SMALL_STATE(7360)] = 238579, + [SMALL_STATE(7361)] = 238592, + [SMALL_STATE(7362)] = 238605, + [SMALL_STATE(7363)] = 238618, + [SMALL_STATE(7364)] = 238631, + [SMALL_STATE(7365)] = 238644, + [SMALL_STATE(7366)] = 238657, + [SMALL_STATE(7367)] = 238670, + [SMALL_STATE(7368)] = 238683, + [SMALL_STATE(7369)] = 238696, + [SMALL_STATE(7370)] = 238709, + [SMALL_STATE(7371)] = 238722, + [SMALL_STATE(7372)] = 238735, + [SMALL_STATE(7373)] = 238748, + [SMALL_STATE(7374)] = 238761, + [SMALL_STATE(7375)] = 238774, + [SMALL_STATE(7376)] = 238787, + [SMALL_STATE(7377)] = 238800, + [SMALL_STATE(7378)] = 238810, + [SMALL_STATE(7379)] = 238820, + [SMALL_STATE(7380)] = 238830, + [SMALL_STATE(7381)] = 238840, + [SMALL_STATE(7382)] = 238850, + [SMALL_STATE(7383)] = 238860, + [SMALL_STATE(7384)] = 238870, + [SMALL_STATE(7385)] = 238880, + [SMALL_STATE(7386)] = 238890, + [SMALL_STATE(7387)] = 238900, + [SMALL_STATE(7388)] = 238910, + [SMALL_STATE(7389)] = 238920, + [SMALL_STATE(7390)] = 238930, + [SMALL_STATE(7391)] = 238940, + [SMALL_STATE(7392)] = 238950, + [SMALL_STATE(7393)] = 238960, + [SMALL_STATE(7394)] = 238970, + [SMALL_STATE(7395)] = 238980, + [SMALL_STATE(7396)] = 238990, + [SMALL_STATE(7397)] = 239000, + [SMALL_STATE(7398)] = 239010, + [SMALL_STATE(7399)] = 239020, + [SMALL_STATE(7400)] = 239030, + [SMALL_STATE(7401)] = 239040, + [SMALL_STATE(7402)] = 239050, + [SMALL_STATE(7403)] = 239060, + [SMALL_STATE(7404)] = 239070, + [SMALL_STATE(7405)] = 239080, + [SMALL_STATE(7406)] = 239090, + [SMALL_STATE(7407)] = 239100, + [SMALL_STATE(7408)] = 239110, + [SMALL_STATE(7409)] = 239120, + [SMALL_STATE(7410)] = 239130, + [SMALL_STATE(7411)] = 239140, + [SMALL_STATE(7412)] = 239150, + [SMALL_STATE(7413)] = 239160, + [SMALL_STATE(7414)] = 239170, + [SMALL_STATE(7415)] = 239180, + [SMALL_STATE(7416)] = 239190, + [SMALL_STATE(7417)] = 239200, + [SMALL_STATE(7418)] = 239210, + [SMALL_STATE(7419)] = 239220, + [SMALL_STATE(7420)] = 239230, + [SMALL_STATE(7421)] = 239240, + [SMALL_STATE(7422)] = 239250, + [SMALL_STATE(7423)] = 239260, + [SMALL_STATE(7424)] = 239270, + [SMALL_STATE(7425)] = 239280, + [SMALL_STATE(7426)] = 239290, + [SMALL_STATE(7427)] = 239300, + [SMALL_STATE(7428)] = 239310, + [SMALL_STATE(7429)] = 239320, + [SMALL_STATE(7430)] = 239330, + [SMALL_STATE(7431)] = 239340, + [SMALL_STATE(7432)] = 239350, + [SMALL_STATE(7433)] = 239360, + [SMALL_STATE(7434)] = 239370, + [SMALL_STATE(7435)] = 239380, + [SMALL_STATE(7436)] = 239390, + [SMALL_STATE(7437)] = 239400, + [SMALL_STATE(7438)] = 239410, + [SMALL_STATE(7439)] = 239420, + [SMALL_STATE(7440)] = 239430, + [SMALL_STATE(7441)] = 239440, + [SMALL_STATE(7442)] = 239450, + [SMALL_STATE(7443)] = 239460, + [SMALL_STATE(7444)] = 239470, + [SMALL_STATE(7445)] = 239480, + [SMALL_STATE(7446)] = 239490, + [SMALL_STATE(7447)] = 239500, + [SMALL_STATE(7448)] = 239510, + [SMALL_STATE(7449)] = 239520, + [SMALL_STATE(7450)] = 239530, + [SMALL_STATE(7451)] = 239540, + [SMALL_STATE(7452)] = 239550, + [SMALL_STATE(7453)] = 239560, + [SMALL_STATE(7454)] = 239570, + [SMALL_STATE(7455)] = 239580, + [SMALL_STATE(7456)] = 239590, + [SMALL_STATE(7457)] = 239600, + [SMALL_STATE(7458)] = 239610, + [SMALL_STATE(7459)] = 239620, + [SMALL_STATE(7460)] = 239630, + [SMALL_STATE(7461)] = 239640, + [SMALL_STATE(7462)] = 239650, + [SMALL_STATE(7463)] = 239660, + [SMALL_STATE(7464)] = 239670, + [SMALL_STATE(7465)] = 239680, + [SMALL_STATE(7466)] = 239690, + [SMALL_STATE(7467)] = 239700, + [SMALL_STATE(7468)] = 239710, + [SMALL_STATE(7469)] = 239720, + [SMALL_STATE(7470)] = 239730, + [SMALL_STATE(7471)] = 239740, + [SMALL_STATE(7472)] = 239750, + [SMALL_STATE(7473)] = 239760, + [SMALL_STATE(7474)] = 239770, + [SMALL_STATE(7475)] = 239780, + [SMALL_STATE(7476)] = 239790, + [SMALL_STATE(7477)] = 239800, + [SMALL_STATE(7478)] = 239810, + [SMALL_STATE(7479)] = 239820, + [SMALL_STATE(7480)] = 239830, + [SMALL_STATE(7481)] = 239840, + [SMALL_STATE(7482)] = 239850, + [SMALL_STATE(7483)] = 239860, + [SMALL_STATE(7484)] = 239870, + [SMALL_STATE(7485)] = 239880, + [SMALL_STATE(7486)] = 239890, + [SMALL_STATE(7487)] = 239900, + [SMALL_STATE(7488)] = 239910, + [SMALL_STATE(7489)] = 239920, + [SMALL_STATE(7490)] = 239930, + [SMALL_STATE(7491)] = 239940, + [SMALL_STATE(7492)] = 239950, + [SMALL_STATE(7493)] = 239960, + [SMALL_STATE(7494)] = 239970, + [SMALL_STATE(7495)] = 239980, + [SMALL_STATE(7496)] = 239990, + [SMALL_STATE(7497)] = 240000, + [SMALL_STATE(7498)] = 240010, + [SMALL_STATE(7499)] = 240020, + [SMALL_STATE(7500)] = 240030, + [SMALL_STATE(7501)] = 240040, + [SMALL_STATE(7502)] = 240050, + [SMALL_STATE(7503)] = 240060, + [SMALL_STATE(7504)] = 240070, + [SMALL_STATE(7505)] = 240080, + [SMALL_STATE(7506)] = 240090, + [SMALL_STATE(7507)] = 240100, + [SMALL_STATE(7508)] = 240110, + [SMALL_STATE(7509)] = 240120, + [SMALL_STATE(7510)] = 240130, + [SMALL_STATE(7511)] = 240140, + [SMALL_STATE(7512)] = 240150, + [SMALL_STATE(7513)] = 240160, + [SMALL_STATE(7514)] = 240170, + [SMALL_STATE(7515)] = 240180, + [SMALL_STATE(7516)] = 240190, + [SMALL_STATE(7517)] = 240200, + [SMALL_STATE(7518)] = 240210, + [SMALL_STATE(7519)] = 240220, + [SMALL_STATE(7520)] = 240230, + [SMALL_STATE(7521)] = 240240, + [SMALL_STATE(7522)] = 240250, + [SMALL_STATE(7523)] = 240260, + [SMALL_STATE(7524)] = 240270, + [SMALL_STATE(7525)] = 240280, + [SMALL_STATE(7526)] = 240290, + [SMALL_STATE(7527)] = 240300, + [SMALL_STATE(7528)] = 240310, + [SMALL_STATE(7529)] = 240320, + [SMALL_STATE(7530)] = 240330, + [SMALL_STATE(7531)] = 240340, + [SMALL_STATE(7532)] = 240350, + [SMALL_STATE(7533)] = 240360, + [SMALL_STATE(7534)] = 240370, + [SMALL_STATE(7535)] = 240380, + [SMALL_STATE(7536)] = 240390, + [SMALL_STATE(7537)] = 240400, + [SMALL_STATE(7538)] = 240410, + [SMALL_STATE(7539)] = 240420, + [SMALL_STATE(7540)] = 240430, + [SMALL_STATE(7541)] = 240440, + [SMALL_STATE(7542)] = 240450, + [SMALL_STATE(7543)] = 240460, + [SMALL_STATE(7544)] = 240470, + [SMALL_STATE(7545)] = 240480, + [SMALL_STATE(7546)] = 240490, + [SMALL_STATE(7547)] = 240500, + [SMALL_STATE(7548)] = 240510, + [SMALL_STATE(7549)] = 240520, + [SMALL_STATE(7550)] = 240530, + [SMALL_STATE(7551)] = 240540, + [SMALL_STATE(7552)] = 240550, + [SMALL_STATE(7553)] = 240560, + [SMALL_STATE(7554)] = 240570, + [SMALL_STATE(7555)] = 240580, + [SMALL_STATE(7556)] = 240590, + [SMALL_STATE(7557)] = 240600, + [SMALL_STATE(7558)] = 240610, + [SMALL_STATE(7559)] = 240620, + [SMALL_STATE(7560)] = 240630, + [SMALL_STATE(7561)] = 240640, + [SMALL_STATE(7562)] = 240650, + [SMALL_STATE(7563)] = 240660, + [SMALL_STATE(7564)] = 240670, + [SMALL_STATE(7565)] = 240680, + [SMALL_STATE(7566)] = 240690, + [SMALL_STATE(7567)] = 240700, + [SMALL_STATE(7568)] = 240710, + [SMALL_STATE(7569)] = 240720, + [SMALL_STATE(7570)] = 240730, + [SMALL_STATE(7571)] = 240740, + [SMALL_STATE(7572)] = 240750, + [SMALL_STATE(7573)] = 240760, + [SMALL_STATE(7574)] = 240770, + [SMALL_STATE(7575)] = 240780, + [SMALL_STATE(7576)] = 240790, + [SMALL_STATE(7577)] = 240800, + [SMALL_STATE(7578)] = 240810, + [SMALL_STATE(7579)] = 240820, + [SMALL_STATE(7580)] = 240830, + [SMALL_STATE(7581)] = 240840, + [SMALL_STATE(7582)] = 240850, + [SMALL_STATE(7583)] = 240860, + [SMALL_STATE(7584)] = 240870, + [SMALL_STATE(7585)] = 240880, + [SMALL_STATE(7586)] = 240890, + [SMALL_STATE(7587)] = 240900, + [SMALL_STATE(7588)] = 240910, + [SMALL_STATE(7589)] = 240920, + [SMALL_STATE(7590)] = 240930, + [SMALL_STATE(7591)] = 240940, + [SMALL_STATE(7592)] = 240950, + [SMALL_STATE(7593)] = 240960, + [SMALL_STATE(7594)] = 240970, + [SMALL_STATE(7595)] = 240980, + [SMALL_STATE(7596)] = 240990, + [SMALL_STATE(7597)] = 241000, + [SMALL_STATE(7598)] = 241010, + [SMALL_STATE(7599)] = 241020, + [SMALL_STATE(7600)] = 241030, + [SMALL_STATE(7601)] = 241040, + [SMALL_STATE(7602)] = 241050, + [SMALL_STATE(7603)] = 241060, + [SMALL_STATE(7604)] = 241070, + [SMALL_STATE(7605)] = 241080, + [SMALL_STATE(7606)] = 241090, + [SMALL_STATE(7607)] = 241100, + [SMALL_STATE(7608)] = 241110, + [SMALL_STATE(7609)] = 241120, + [SMALL_STATE(7610)] = 241130, + [SMALL_STATE(7611)] = 241140, + [SMALL_STATE(7612)] = 241150, + [SMALL_STATE(7613)] = 241160, + [SMALL_STATE(7614)] = 241170, + [SMALL_STATE(7615)] = 241180, + [SMALL_STATE(7616)] = 241190, + [SMALL_STATE(7617)] = 241200, + [SMALL_STATE(7618)] = 241210, + [SMALL_STATE(7619)] = 241220, + [SMALL_STATE(7620)] = 241230, + [SMALL_STATE(7621)] = 241240, + [SMALL_STATE(7622)] = 241250, + [SMALL_STATE(7623)] = 241260, + [SMALL_STATE(7624)] = 241270, + [SMALL_STATE(7625)] = 241280, + [SMALL_STATE(7626)] = 241290, + [SMALL_STATE(7627)] = 241300, + [SMALL_STATE(7628)] = 241310, + [SMALL_STATE(7629)] = 241320, + [SMALL_STATE(7630)] = 241330, + [SMALL_STATE(7631)] = 241340, + [SMALL_STATE(7632)] = 241350, + [SMALL_STATE(7633)] = 241360, + [SMALL_STATE(7634)] = 241370, + [SMALL_STATE(7635)] = 241380, + [SMALL_STATE(7636)] = 241390, + [SMALL_STATE(7637)] = 241400, + [SMALL_STATE(7638)] = 241410, + [SMALL_STATE(7639)] = 241420, + [SMALL_STATE(7640)] = 241430, + [SMALL_STATE(7641)] = 241440, + [SMALL_STATE(7642)] = 241450, + [SMALL_STATE(7643)] = 241460, + [SMALL_STATE(7644)] = 241470, + [SMALL_STATE(7645)] = 241480, + [SMALL_STATE(7646)] = 241490, + [SMALL_STATE(7647)] = 241500, + [SMALL_STATE(7648)] = 241510, + [SMALL_STATE(7649)] = 241520, + [SMALL_STATE(7650)] = 241530, + [SMALL_STATE(7651)] = 241540, + [SMALL_STATE(7652)] = 241550, + [SMALL_STATE(7653)] = 241560, + [SMALL_STATE(7654)] = 241570, + [SMALL_STATE(7655)] = 241580, + [SMALL_STATE(7656)] = 241590, + [SMALL_STATE(7657)] = 241600, + [SMALL_STATE(7658)] = 241610, + [SMALL_STATE(7659)] = 241620, + [SMALL_STATE(7660)] = 241630, + [SMALL_STATE(7661)] = 241640, + [SMALL_STATE(7662)] = 241650, + [SMALL_STATE(7663)] = 241660, + [SMALL_STATE(7664)] = 241670, + [SMALL_STATE(7665)] = 241680, + [SMALL_STATE(7666)] = 241690, + [SMALL_STATE(7667)] = 241700, + [SMALL_STATE(7668)] = 241710, + [SMALL_STATE(7669)] = 241720, + [SMALL_STATE(7670)] = 241730, + [SMALL_STATE(7671)] = 241740, + [SMALL_STATE(7672)] = 241750, + [SMALL_STATE(7673)] = 241760, + [SMALL_STATE(7674)] = 241770, + [SMALL_STATE(7675)] = 241780, + [SMALL_STATE(7676)] = 241790, + [SMALL_STATE(7677)] = 241800, + [SMALL_STATE(7678)] = 241810, + [SMALL_STATE(7679)] = 241820, + [SMALL_STATE(7680)] = 241830, + [SMALL_STATE(7681)] = 241840, + [SMALL_STATE(7682)] = 241850, + [SMALL_STATE(7683)] = 241860, + [SMALL_STATE(7684)] = 241870, + [SMALL_STATE(7685)] = 241880, + [SMALL_STATE(7686)] = 241890, + [SMALL_STATE(7687)] = 241900, + [SMALL_STATE(7688)] = 241910, + [SMALL_STATE(7689)] = 241920, + [SMALL_STATE(7690)] = 241930, + [SMALL_STATE(7691)] = 241940, + [SMALL_STATE(7692)] = 241950, + [SMALL_STATE(7693)] = 241960, + [SMALL_STATE(7694)] = 241970, + [SMALL_STATE(7695)] = 241980, + [SMALL_STATE(7696)] = 241990, + [SMALL_STATE(7697)] = 242000, + [SMALL_STATE(7698)] = 242010, + [SMALL_STATE(7699)] = 242020, + [SMALL_STATE(7700)] = 242030, + [SMALL_STATE(7701)] = 242040, + [SMALL_STATE(7702)] = 242050, + [SMALL_STATE(7703)] = 242060, + [SMALL_STATE(7704)] = 242070, + [SMALL_STATE(7705)] = 242080, + [SMALL_STATE(7706)] = 242090, + [SMALL_STATE(7707)] = 242100, + [SMALL_STATE(7708)] = 242110, + [SMALL_STATE(7709)] = 242120, + [SMALL_STATE(7710)] = 242130, + [SMALL_STATE(7711)] = 242140, + [SMALL_STATE(7712)] = 242150, + [SMALL_STATE(7713)] = 242160, + [SMALL_STATE(7714)] = 242170, + [SMALL_STATE(7715)] = 242180, + [SMALL_STATE(7716)] = 242190, + [SMALL_STATE(7717)] = 242200, + [SMALL_STATE(7718)] = 242210, + [SMALL_STATE(7719)] = 242220, + [SMALL_STATE(7720)] = 242230, + [SMALL_STATE(7721)] = 242240, + [SMALL_STATE(7722)] = 242250, + [SMALL_STATE(7723)] = 242260, + [SMALL_STATE(7724)] = 242270, + [SMALL_STATE(7725)] = 242280, + [SMALL_STATE(7726)] = 242290, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7467), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5849), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2506), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5928), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5965), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6034), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2217), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2221), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2337), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7432), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2535), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2475), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2695), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(697), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(38), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6123), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7500), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7756), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4966), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4968), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7448), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2325), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5899), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1957), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1046), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5304), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6293), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2704), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3328), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2476), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5231), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6110), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3499), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5146), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1382), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1327), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1935), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1782), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7549), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2168), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6128), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1707), - [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5956), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5810), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5811), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2534), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5955), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5957), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5959), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2142), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2119), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2119), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2337), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7432), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2535), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2475), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2695), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(716), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(36), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6290), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7500), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7790), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4779), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4780), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7448), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2325), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5026), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2326), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1046), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(24), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5304), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7455), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2704), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3328), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2476), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5231), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6110), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3727), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5154), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1251), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1251), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1314), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2264), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1520), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7568), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6190), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1946), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5968), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5861), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), - [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1524), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5787), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5784), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2559), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6050), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5889), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5893), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2085), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2086), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2372), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7243), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2560), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2549), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2822), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(728), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(70), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6188), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7390), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7701), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4924), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4943), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7318), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2287), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5066), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2288), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5364), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7219), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(933), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2825), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3372), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2551), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5292), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6447), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3761), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5371), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1414), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1363), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2237), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1525), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7467), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1643), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6079), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1972), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5888), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5722), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7620), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1530), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5862), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2573), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6025), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6028), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6064), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2355), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2357), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2359), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2359), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2372), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7243), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2560), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2549), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2822), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(737), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6529), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7390), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7668), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5154), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5091), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7318), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2287), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6047), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2021), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5364), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6535), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(933), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2825), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3372), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2551), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5292), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6447), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3563), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5193), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5371), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1420), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1365), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1985), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1850), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7445), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2221), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6532), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6069), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5707), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7620), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1564), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7790), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4779), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4780), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5154), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2264), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6190), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5968), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6123), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7756), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4966), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5899), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6293), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7579), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5593), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7779), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(82), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6471), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7806), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(66), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7686), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6240), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5931), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1674), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6148), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1389), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(168), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7700), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5593), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7779), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(82), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6432), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7806), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(55), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7487), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6240), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5931), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1674), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6148), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1389), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(169), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT(2662), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 238), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 238), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 238), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 238), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 238), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 238), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(598), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1418), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1427), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1474), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(707), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(37), - [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6458), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1379), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1400), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(17), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5205), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5206), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1052), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1052), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1102), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1068), - [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1568), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1482), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7638), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6329), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1657), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5993), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5703), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7424), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7424), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1418), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1427), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1474), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2804), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(707), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(37), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6458), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1379), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1400), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(17), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5205), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5206), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1052), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1052), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1102), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1068), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1568), - [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1482), - [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7638), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1405), - [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6329), - [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1657), - [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5993), - [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5703), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7424), - [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7424), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1496), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1522), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1485), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1610), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(702), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(40), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6403), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1528), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1506), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(12), - [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5171), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5172), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), - [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1200), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1083), - [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1865), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7582), - [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1486), - [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6231), - [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1910), - [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5982), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5667), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1646), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(693), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(689), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6565), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6280), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6699), - [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(701), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(42), - [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6646), - [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), - [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5187), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(55), - [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5228), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7487), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4974), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4974), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5191), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5131), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2908), - [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2821), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7507), - [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6298), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6649), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5345), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5927), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5634), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(717), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7437), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7437), - [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2880), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1029), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1029), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6538), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6542), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6651), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1026), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7302), - [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5245), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5289), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7424), - [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7424), - [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5677), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5751), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5702), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5775), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2976), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2932), - [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2981), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(1027), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(45), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6468), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(176), - [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5193), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5199), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2532), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2532), - [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2602), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2557), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3054), - [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2977), - [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7667), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2974), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6436), - [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3007), - [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7437), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7437), - [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3005), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5769), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6529), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7668), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5154), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5091), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6047), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5364), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6535), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5193), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5371), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7445), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6532), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6069), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5707), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(728), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6188), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7701), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4924), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5066), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5364), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5371), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7467), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6079), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7456), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5562), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7470), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(98), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6387), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7415), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(100), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7631), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6080), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5892), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1639), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6564), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1418), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(198), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7516), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5562), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7470), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(98), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6339), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7415), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7617), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6080), + [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5892), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1639), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6564), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1418), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(200), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5844), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1449), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1481), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1559), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(731), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(58), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6371), + [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1460), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1438), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(19), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5262), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5263), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1116), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1098), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1733), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1513), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7550), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1475), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6232), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5993), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5779), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7371), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7371), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1536), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1449), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1481), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1559), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2835), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(731), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(58), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6371), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1460), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1438), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(19), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5262), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5263), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1076), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1076), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1116), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1098), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1733), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1513), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7550), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1475), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6232), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1675), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5993), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5779), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7371), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7371), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1536), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1556), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1562), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1695), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(725), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(71), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6316), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1553), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1547), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(13), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5216), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5217), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1202), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1931), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1723), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7484), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1510), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5945), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5757), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1658), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(750), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(721), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6536), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6462), + [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6677), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(734), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(63), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6454), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5249), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5250), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7617), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5008), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5008), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5228), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5203), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2913), + [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2864), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7393), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6215), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6458), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5413), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5990), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5675), + [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(732), + [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7207), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7207), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2920), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1070), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1070), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3743] = {.entry = {.count = 1, .reusable = true}}, 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(7620), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6475), + [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6367), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6721), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5206), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5346), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), + [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7445), + [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6532), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), + [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1088), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5763), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5814), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5728), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3004), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2976), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2984), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1066), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(62), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6383), + [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(202), + [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5256), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5286), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2574), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2574), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2633), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2597), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3083), + [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3011), + [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7585), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3015), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6344), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3056), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7207), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7207), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3055), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5829), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5822), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5823), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), - [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5736), - [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5664), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), - [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5757), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(2243), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(2243), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2243), - [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), - [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(2243), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7375), - [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7375), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7515), - [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7515), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5893), - [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6240), - [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5931), - [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6649), - [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5345), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5772), - [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2769), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 201), - [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 201), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), - [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5756), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5665), + [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5817), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(2349), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2349), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(2349), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(2349), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5717), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7245), + [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7245), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7683), + [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7683), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5666), + [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6080), + [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5892), + [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6458), + [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5413), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5826), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5839), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2666), + [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5832), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [5808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5786), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT(7765), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2948), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 197), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 197), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 199), - [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 199), - [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 231), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 231), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 201), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 201), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), - [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5255), - [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5121), - [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5122), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5774), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3393), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5689), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5784), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [6936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [6955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5773), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4012), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [7031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5771), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [7080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [7090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), - [7093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), - [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(693), - [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5840), + [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2991), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3063), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5211), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5181), + [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5183), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5828), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5771), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5838), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5806), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [6922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5827), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [7047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5825), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5821), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [7168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [7214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), + [7217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(693), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), + [7237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(750), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), + [7244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(750), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(750), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(693), - [7281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(693), - [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [7300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5748), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), - [7312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3275), - [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(750), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 232), - [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 232), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 73), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(404), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 36), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(693), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 4), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 37), - [7476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4448), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [7493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 204), - [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 204), - [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(693), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4878), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7596), - [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7407), - [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7632), - [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7645), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(693), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(693), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 36), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(270), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 73), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(693), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [7608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(261), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(693), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(693), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(278), - [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 10, 4), - [7638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(693), - [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(693), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 37), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 37), - [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(693), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(693), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [7701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(456), - [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(456), - [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5836), - [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 10, 73), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(693), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(693), - [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 36), - [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 4), - [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(693), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(693), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(693), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5646), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(420), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 208), - [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 208), - [7817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 236), - [7823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 236), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [7925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 9, 0, 110), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 9, 0, 113), - [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), - [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 212), - [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 212), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), - [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 247), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 262), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 270), - [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), - [8149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5224), - [8267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), - [8304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), - [8404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5435), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5635), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5290), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [8674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5621), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), - [8735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6292), - [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(4704), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5817), - [8758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 234), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5818), - [8804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [8859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5891), - [8862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5891), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5650), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), - [8902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [8917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5731), - [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6040), - [8923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6028), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 175), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 252), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5884), - [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 203), - [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 203), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [9501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(97), - [9504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6659), - [9507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [9513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 202), - [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 234), - [9529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 175), - [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 252), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), - [9604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [9713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(100), - [9716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7063), - [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 164), - [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [9797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5770), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [9868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), - [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 205), - [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 207), - [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), - [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 227), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [10108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), - [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 233), - [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), - [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 249), - [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 263), - [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 5, 0, 0), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [10587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7055), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [10604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [10614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [10632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [10642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [10676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [10702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [10740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [10820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(709), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [10853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [10895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 203), - [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 203), - [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [10917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [10945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [11003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), - [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [11035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [11101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [11121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 4, 10, 202), - [11123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 4, 0, 202), - [11125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [11155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), - [11158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [11174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [11180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [11262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7067), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [11353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [11367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7356), - [11372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 202), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [11398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [11442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), - [11446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [11454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7470), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [11459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7406), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), - [11466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [11502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7430), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [11507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [11521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [11537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [11583] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [11663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [11685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 237), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [11863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [11897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 237), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [11993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [11997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [12019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(750), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), + [7443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4877), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7546), + [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7329), + [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7552), + [7475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7571), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(750), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(400), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [7508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4465), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [7519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(750), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(303), + [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5658), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(750), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(305), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(452), + [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(750), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(750), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(292), + [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(750), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(750), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(750), + [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(750), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(750), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(750), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(750), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(750), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(750), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5870), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(312), + [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), + [7744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(447), + [7751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(447), + [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), + [7762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), + [7780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(750), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [7855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [7893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), + [7929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [7933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), + [7937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), + [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5340), + [8252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5238), + [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5703), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [8423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5518), + [8509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [8590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5740), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5853), + [8698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5741), + [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5597), + [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6190), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(4744), + [8736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5725), + [8739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5676), + [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [8814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), + [8817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5700), + [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5700), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5998), + [8846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [8904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [9150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(124), + [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6201), + [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), + [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(117), + [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6902), + [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), + [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), + [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [9640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [9786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [9852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [9866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [9868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), + [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), + [9972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [10078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [10330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), + [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [10469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5824), + [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6899), + [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [10549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [10559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [10577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [10635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [10638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [10676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [10702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [10712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [10782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [10864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [10950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [10952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [10956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), + [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6903), + [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [11085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7353), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [11190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(746), + [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [11207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [11217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), + [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [11259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [11269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [11283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7189), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [11288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), + [11290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), + [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [11304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [11324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7261), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [11337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7211), + [11340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), + [11342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [11348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [11488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [11524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), + [11526] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [11532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [11572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [11638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [11658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [11662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [11666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [11682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [11804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [11824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [11858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), + [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; #ifdef __cplusplus diff --git a/test/corpus/ctrl/match.nu b/test/corpus/ctrl/match.nu index 4696f85..1d93454 100644 --- a/test/corpus/ctrl/match.nu +++ b/test/corpus/ctrl/match.nu @@ -423,6 +423,8 @@ _ => not true ----- + + ===== match-013-binary-not-allowed :error @@ -433,3 +435,24 @@ _ => 1 + 1 } ----- + + + +===== +match-014-default-only +===== + +match 1 {#comment + _ => 1 +} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_match + (val_number) + (comment) + (default_arm + (val_number)))))) diff --git a/test/corpus/expr/list.nu b/test/corpus/expr/list.nu index 4900512..098cbb4 100644 --- a/test/corpus/expr/list.nu +++ b/test/corpus/expr/list.nu @@ -533,3 +533,20 @@ list-013-unquoted-with-immediate-expr-parenthesized (val_entry (val_string (expr_parenthesized)))))))) + +====== +list-014-dummy-list +====== + +[ +,, + , +] + +----- + +(nu_script + (pipeline + (pipe_element + (val_list + (list_body))))) diff --git a/test/corpus/expr/record.nu b/test/corpus/expr/record.nu index 41f6a01..47b08a7 100644 --- a/test/corpus/expr/record.nu +++ b/test/corpus/expr/record.nu @@ -453,6 +453,7 @@ record-015-separated-colon-vs-closure {echo 1:} {is-empty} { + # comment echo : 1 } @@ -485,6 +486,7 @@ record-015-separated-colon-vs-closure (pipe_element (val_record (record_body + (comment) (record_entry (identifier) (val_number))))))) From c926660414e62accb40da19ec25f0cb063c35be7 Mon Sep 17 00:00:00 2001 From: mrdgo Date: Fri, 22 Nov 2024 13:46:18 +0100 Subject: [PATCH 3/3] chore: migrate to new tree-sitter.json (#152) tree-sitter greeted me with this message: ``` Warning: your package.json's `tree-sitter` field has been automatically migrated to the new `tree-sitter.json` config file For more information, visit https://tree-sitter.github.io/tree-sitter/creating-parsers ``` In this PR, I want to migrate tree-sitter's config to the new format. --- package.json | 12 +----------- tree-sitter.json | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 11 deletions(-) create mode 100644 tree-sitter.json diff --git a/package.json b/package.json index 5c6f536..d6a2654 100644 --- a/package.json +++ b/package.json @@ -29,16 +29,6 @@ "tree-sitter-cli": "^0.22.5", "prebuildify": "^6.0.0" }, - "tree-sitter": [ - { - "scope": "source.nu", - "file-types": [ - "nu" - ], - "highlights": "queries/nu/highlights.scm", - "injections": "queries/nu/injections.scm" - } - ], "files": [ "grammar.js", "binding.gyp", @@ -47,4 +37,4 @@ "queries/*", "src/**" ] -} +} \ No newline at end of file diff --git a/tree-sitter.json b/tree-sitter.json new file mode 100644 index 0000000..9df0dd6 --- /dev/null +++ b/tree-sitter.json @@ -0,0 +1,36 @@ +{ + "grammars": [ + { + "name": "nu", + "camelcase": "Nu", + "scope": "source.nu", + "path": ".", + "file-types": [ + "nu" + ], + "highlights": "queries/nu/highlights.scm", + "injections": "queries/nu/injections.scm" + } + ], + "metadata": { + "version": "0.0.1", + "license": "MIT", + "description": "nu-lang", + "authors": [ + { + "name": "The Nushell Contributors" + } + ], + "links": { + "repository": "https://github.com/tree-sitter/tree-sitter-nu" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} \ No newline at end of file